commit paexec for openSUSE:Factory

2020-09-21 Thread root
Hello community,

here is the log from the commit of package paexec for openSUSE:Factory checked 
in at 2020-09-21 17:29:12

Comparing /work/SRC/openSUSE:Factory/paexec (Old)
 and  /work/SRC/openSUSE:Factory/.paexec.new.4249 (New)


Package is "paexec"

Mon Sep 21 17:29:12 2020 rev:4 rq:835415 version:1.1.4

Changes:

--- /work/SRC/openSUSE:Factory/paexec/paexec.changes2020-05-13 
22:56:07.591014184 +0200
+++ /work/SRC/openSUSE:Factory/.paexec.new.4249/paexec.changes  2020-09-21 
17:37:30.520634926 +0200
@@ -1,0 +2,10 @@
+Wed Sep 16 21:44:18 UTC 2020 - Dirk Mueller 
+
+- update to 1.1.4:
+  Fix use of uninitialized array.
+  As a rsult paexec generates incorrect shell command to run
+  on nodes. Seen with "clang-7.0.1" with -O2 and -D_FORTIFY_SOURCE=2
+  Add one line description to projects.
+  So, one can run "mkcmake help"
+
+---

Old:

  paexec-1.1.2.tar.gz

New:

  paexec-1.1.4.tar.gz



Other differences:
--
++ paexec.spec ++
--- /var/tmp/diff_new_pack.7yWpI3/_old  2020-09-21 17:37:33.732637255 +0200
+++ /var/tmp/diff_new_pack.7yWpI3/_new  2020-09-21 17:37:33.732637255 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   paexec
-Version:1.1.2
+Version:1.1.4
 Release:0
 Summary:Utility for task distribution over networks or CPUs
 License:MIT
@@ -25,6 +25,7 @@
 URL:https://paexec.sourceforge.net/
 Source0:
https://sourceforge.net/projects/paexec/files/paexec/paexec-%{version}/%{name}-%{version}.tar.gz
 Source1:%{name}-rpmlintrc
+BuildRequires:  libmaa-devel
 BuildRequires:  mk-configure >= 0.27.0
 BuildRequires:  mk-configure-rpm-macros
 BuildRequires:  runawk

++ paexec-1.1.2.tar.gz -> paexec-1.1.4.tar.gz ++
 4123 lines of diff (skipped)




commit paexec for openSUSE:Factory

2020-05-13 Thread root
Hello community,

here is the log from the commit of package paexec for openSUSE:Factory checked 
in at 2020-05-13 22:56:06

Comparing /work/SRC/openSUSE:Factory/paexec (Old)
 and  /work/SRC/openSUSE:Factory/.paexec.new.2738 (New)


Package is "paexec"

Wed May 13 22:56:06 2020 rev:3 rq:804586 version:1.1.2

Changes:

--- /work/SRC/openSUSE:Factory/paexec/paexec.changes2019-05-03 
22:47:20.471895198 +0200
+++ /work/SRC/openSUSE:Factory/.paexec.new.2738/paexec.changes  2020-05-13 
22:56:07.591014184 +0200
@@ -1,0 +2,5 @@
+Tue May 12 10:15:39 UTC 2020 - Paolo Stivanin 
+
+- Update to 1.1.2 (no changelog) 
+
+---

Old:

  paexec-1.1.1.tar.gz

New:

  paexec-1.1.2.tar.gz



Other differences:
--
++ paexec.spec ++
--- /var/tmp/diff_new_pack.pXE711/_old  2020-05-13 22:56:08.147015268 +0200
+++ /var/tmp/diff_new_pack.pXE711/_new  2020-05-13 22:56:08.151015277 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package paexec
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   paexec
-Version:1.1.1
+Version:1.1.2
 Release:0
 Summary:Utility for task distribution over networks or CPUs
 License:MIT

++ paexec-1.1.1.tar.gz -> paexec-1.1.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/paexec-1.1.1/Makefile.inc 
new/paexec-1.1.2/Makefile.inc
--- old/paexec-1.1.1/Makefile.inc   2019-02-15 20:03:04.0 +0100
+++ new/paexec-1.1.2/Makefile.inc   2020-03-30 21:17:50.0 +0200
@@ -8,7 +8,17 @@
 # Those poor souls who run Solaris can set AWK to gawk
 AWK ?= /usr/bin/awk
 
-MKC_REQUIRE_PROGS +=   ${AWK} runawk
+.ifndef PAEXEC_SH
+.  if exists(/usr/xpg4/bin/sh)
+# Solaris-10's /bin/sh is completely broken,
+# /usr/xpg4/bin/sh sucks too but sucks less.
+PAEXEC_SH =/usr/xpg4/bin/sh
+.  else
+PAEXEC_SH =/bin/sh
+.  endif
+.endif
+
+MKC_REQUIRE_PROGS +=   ${AWK} runawk ${PAEXEC_SH}
 
 .export AWK
 MKC_CHECK_CUSTOM +=awk_fflush
@@ -21,7 +31,8 @@
 .endif
 
 INTEXTS_REPLS +=   awk ${PROG.${AWK}:U${AWK}}
+INTEXTS_REPLS +=   sh ${PROG.${PAEXEC_SH}:U${PAEXEC_SH}}
 INTEXTS_REPLS +=   version ${VERSION:U}
 
 #
-VERSION=   1.1.1
+VERSION=   1.1.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/paexec-1.1.1/doc/NEWS new/paexec-1.1.2/doc/NEWS
--- old/paexec-1.1.1/doc/NEWS   2019-02-15 20:03:04.0 +0100
+++ new/paexec-1.1.2/doc/NEWS   2020-03-30 21:17:50.0 +0200
@@ -1,4 +1,23 @@
 ==
+Version 1.1.2, by Aleksey Cheusov, Mon, 30 Mar 2020 21:50:03 +0300
+
+  paexec -x:
+* fix handling tasks with leading spaces
+* fix handling tasks with backslashes
+
+  paargs:
+* on SunOS-5.10 use /usr/xpg4/bin/sh
+  instead of horribly broken /bin/sh
+
+  Fix build failure on SunOS-5.10 (getdelim(3) is absent)
+
+  Introduce PAEXEC_SH environment variable
+  for fixing /bin/sh on SunOS-5.10
+
+  Introduce PAEXEC_FIND variable for regression tests (required on
+  SunOS-5.10)
+
+==
 Version 1.1.1, by Aleksey Cheusov, Fri, 15 Feb 2019 21:58:39 +0300
 
   Fix build using clang
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/paexec-1.1.1/paargs/paargs.1 
new/paexec-1.1.2/paargs/paargs.1
--- old/paexec-1.1.1/paargs/paargs.12019-02-15 20:03:08.0 +0100
+++ new/paexec-1.1.2/paargs/paargs.12020-03-30 21:18:16.0 +0200
@@ -1,4 +1,4 @@
-.\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35)
+.\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35)
 .\"
 .\" Standard preamble:
 .\" 
@@ -54,16 +54,20 @@
 .\" Avoid warning from groff about undefined register 'F'.
 .de IX
 ..
-.if !\nF .nr F 0
-.if \nF>0 \{\
-.de IX
-.tm Index:\\$1\t\\n%\t"\\$2"
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{\
+.if \nF \{\
+.de IX
+.tm Index:\\$1\t\\n%\t"\\$2"
 ..
-.if !\nF==2 \{\
-.nr % 0
-.nr F 2
+.if !\nF==2 \{\
+.nr % 0
+.nr F 2
+.\}
 .\}
 .\}
+.rr rF
 .\"
 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
 .\" Fear.  Run.  Save 

commit paexec for openSUSE:Factory

2019-05-03 Thread root
Hello community,

here is the log from the commit of package paexec for openSUSE:Factory checked 
in at 2019-05-03 22:47:16

Comparing /work/SRC/openSUSE:Factory/paexec (Old)
 and  /work/SRC/openSUSE:Factory/.paexec.new.5148 (New)


Package is "paexec"

Fri May  3 22:47:16 2019 rev:2 rq:700239 version:1.1.1

Changes:

--- /work/SRC/openSUSE:Factory/paexec/paexec.changes2019-03-26 
22:31:12.317723408 +0100
+++ /work/SRC/openSUSE:Factory/.paexec.new.5148/paexec.changes  2019-05-03 
22:47:20.471895198 +0200
@@ -1,0 +2,5 @@
+Tue Mar 19 18:04:35 UTC 2019 - Jan Engelhardt 
+
+- Use noun phrase in descriptions.
+
+---



Other differences:
--
++ paexec.spec ++
--- /var/tmp/diff_new_pack.mtXK3r/_old  2019-05-03 22:47:21.187896842 +0200
+++ /var/tmp/diff_new_pack.mtXK3r/_new  2019-05-03 22:47:21.191896851 +0200
@@ -19,7 +19,7 @@
 Name:   paexec
 Version:1.1.1
 Release:0
-Summary:Distributes tasks over network or CPUs
+Summary:Utility for task distribution over networks or CPUs
 License:MIT
 Group:  Productivity/Clustering/Computing
 URL:https://paexec.sourceforge.net/
@@ -31,7 +31,7 @@
 Requires:   runawk
 
 %description
-Small program that processes a list of tasks in parallel
+A program that processes a list of tasks in parallel
 on different CPUs, computers in a network or whatever else.
 
 %package examples
@@ -41,7 +41,7 @@
 BuildArch:  noarch
 
 %description examples
-Small program that processes a list of tasks in parallel
+A program that processes a list of tasks in parallel
 on different CPUs, computers in a network or whatever else.
 
 This package contains examples for paexec.