Commit graph

17 commits

Author SHA1 Message Date
nia
495fc76c70 parallel: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
2021-10-26 11:10:35 +00:00
nia
d171eeaf22 parallel: Remove SHA1 hashes for distfiles 2021-10-07 14:46:45 +00:00
cheusov
6c6859bf3b Update to version 1.1.4
Remove local function pr_open and use it from libmaa library.
  So, now paexec requires libmaa.

  "mkcmake help" shows configuring variables and descriptions for
  targets.

  Use mkc's feature "getdelim" instead of local implementation.
  So, we need at least mk-configure 0.33.0

  Optimization flags defaults to "-O2 -g"
2020-06-01 16:18:16 +00:00
cheusov
e91b3b25d1 Update to 1.1.3:
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"
2020-05-15 13:32:19 +00:00
cheusov
dd5eaccf99 Update to paexec-1.1.2
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)
2020-03-30 19:22:57 +00:00
cheusov
be20516bd2 Update to paexec-1.1.1
Fix build using clang
  Verify snprintf didn't truncate the output
2019-02-15 19:31:24 +00:00
cheusov
cad8a40a03 Update paexec to 1.1.0
paexec:
    - add new option -0. It works just like in "xargs -0".
    - add new option -J.
    - add new option -mw=.
    - fix help message display by -h.
    - -md= now allows no delimiter mode in -g mode.
    - -c and -C override each other if one is implied after another.

  Add new tool "paargs". It is a wrapper over paexec(1) that
  simplifies use of paexec.

  Fix transport_broken_rnd test script.

  This fixes regression test on Solaris.

  Update man page for paexec(1).
2018-04-25 21:37:11 +00:00
agc
853757dcb6 Add SHA512 digests for distfiles for parallel category
Existing SHA1 digests verified, all found to be the same on the
machine holding the existing distfiles (morden).  Existing SHA1
digests retained for now as an audit trail.
2015-11-02 23:46:12 +00:00
cheusov
99df11c0d3 Update to version 1.0.1
Unflushed (broken) stdout seen on Darwin was fixes.
2014-08-14 06:15:54 +00:00
cheusov
7e94f0d145 Update to version 1.0.0
mk-configure>=0.27.0 is required for build.

  Option -X was introduced to paexec(1) for ignoring
  calculator's stdout.

  PAEXEC_ENV environment variable sets a list of variables passed to
  the calculator.

  PAEXEC_TRANSPORT environment variable sets the transport unless
  option -t was applied.

  PAEXEC_NODES environment variable sets the nodes unless
  option -n was applied.

  pareorder(1) is a synonym for paexec_reorder(1)
2014-07-13 16:25:28 +00:00
cheusov
fc987613cb Update to version 0.19.1
paexec: Fix for segfault seen on Linux
2013-08-26 16:20:03 +00:00
cheusov
8e5de55c50 Update to 0.19.0
This release of paexec was successfully tested on the following
  platforms: NetBSD-6.1/amd64, OpenBSD-5.3/i386, FreeBSD-8.3/i386,
  Solaris-10/sparc, Solaris-11/amd64 and diverse Linux/{i386,amd64}.

  paexec is now selfcontained, libmaa is not needed anymore.

  Presentation paexec.pdf was added to presentation/. I hope it will
  help easier understand how "paexec" works. It is installed to
  ${DOCDIR}.

  paexec:
    - POSIX-2008 getline(3) is used for reading lines
      instead of home-made function.
    - t '' is equivalent to "no transport", spaces are trimmed.
    - "-n +NNN" has higher priority than -t, i.e. if they both are
      specified, transport is ignored.
    - Fix for -W1.
    - Environment variable PAEXEC_EOT was introduced.
    - Option -y was added to paexec(1) and paexec_reorder(1).
    - Option -C was added to paexec(1).

  paexec_reorder:
    - Option -x was added to paexec_reorder(1).

  A number of fixes and improvements in regression tests.
2013-08-25 14:59:17 +00:00
cheusov
44e237f228 "paexec -t ''" is equivalent to "paexec" with no transport; ++pkgrevision 2013-03-08 14:06:30 +00:00
cheusov
a6252a060d Version 0.18.0, by Aleksey Cheusov, Thu, 7 Mar 2013 15:17:33 +0300
paexec:
    - fixed: NULL dereference when the first line given on input is
      empty.  Thanks to Sergey Revyako for bug report!
    - fixed: entire command passed tp ssh-like transport should be
      shquoted. In particular this fixes -x that didn't work with -t.
      Thanks to Sergey Revyako for bug report!
    - 'paexec -g' accepts empty strings as tasks.
    - More regression tests were added

  paexec_reorder.1:
    - Mistype fix
2013-03-07 13:02:26 +00:00
cheusov
ff7dd60f74 Update to 0.17.0
paexec:
    - Option -x was added. With its help paexec can run one command
      per task.  If -g is also specified, command's exit status is
      analysed. Appropriate task and dependants are marked as "failed"
      if it is non-zero.
    - First character of -n argument must be alphanumeric, `+', `_',
      `:' or `/'.  Other symbols are reserved for future extentions.
    - With '-n :filename' paexec reads a list of nodes from the
      specified file.
    - With a help of new option '-m t=<eot>' end of task string
      may be specified, which is an empty line by default.
    - Option -md=<delim> was added that overrides the default
      delimiter (space character) between tasks in graph mode (-g).
    - Output line that contains failed dependants no longer ends with
      unnecessary space.
    - Long options were completely removed.

  paexec_reorder:
    - Fix. "paexec_reorder -g" now handles correctly failed tasks'
      output.  One extra line after "fatal" is expected.
    - Options -m was added. It does the same things as paexec's -m.

  More examples of use and regression tests.

  Documentation update, clean-ups and improvements.

  Regression tests:
    - Signals handling was fixed in.
    - LC_ALL is always set to C in regression tests, this fixes some
      problems in internationalized environment.

  mk-configure>=0.23.0 is required at build time
2012-09-09 23:30:26 +00:00
gdt
4b104be917 Update to 0.16.1 (via mail from $MAINTAINER)
paexec.1 and paexec_reorder.1 are included in paexec-0.16.1.tgz.
  Just like in paexec<=0.15.1 pod2man is not needed
  for building.
2011-03-23 14:49:47 +00:00
gdt
f2a00b20d4 Import paexec-0.16 as parallel/paexec.
paexec distributes performing the given tasks across several CPUs or
machines on a network and collects the results from those
CPUs/machines.
2011-03-16 11:04:57 +00:00