NOTICE: This package has been removed from pkgsrc

./wip/paexec, Distributes tasks over network or CPUs

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 0.16, Package name: paexec-0.16, Maintainer: cheusov

paexec distributes performing the given tasks across several CPUs or
machines on a network and collects the results from those
CPUs/machines.


Required to run:
[devel/libmaa] [lang/runawk]

Required to build:
[devel/mk-configure]

Master sites: (Expand)

SHA1: 8da654edbc9c7e11dda6e52d4e7a161721807a19
RMD160: bd7a35bbe6996985355685c81910302a985fb088
Filesize: 43.094 KB

Version history: (Expand)


CVS history: (Expand)


   2011-03-16 12:58:14 by Aleksey Cheusov | Files touched by this commit (4) | Package removed
Log message:

paexec has been imported to pkgsrc
   2011-03-15 19:28:13 by Aleksey Cheusov | Files touched by this commit (1)
Log message:
AUTO_MKDIRS=yes has been removed

   2011-03-11 16:43:45 by Aleksey Cheusov | Files touched by this commit (1)
Log message:
fix in REPLACE_SH

   2011-03-11 13:24:39 by Aleksey Cheusov | Files touched by this commit (3) | Package updated
Log message:

Update to 0.16

  Project's structure has been reorganized. Now the top-level Makefile
  uses mkc.subprj.mk. This adds a lot of flexibility in building the
  project and development.
  See doc/INSTALL for updated installation instructions.

  New modes for reordering tasks were added: -W0 and -W2
  See the manual page for details about option -W.

  Long options are considered deprecated. They are still supported but
  will be removed in the future. Please use POSIX short options. At
  the moment use of them produces warning message on stderr.

  Fix the compilation bug on old versions of OpenBSD (at least <=3.8)
  and probably other systems where intptr_t is declared in inttypes.h
  but not in stdint.h

  Fix for 'mkcmake test' failure on Solaris and HP-UX because their
  /usr/bin/awk sucks. On these platforms now it is possible to run the
  following command.
    env AWK=/full/path/to/gawk mkcmake all test
   2011-01-21 00:26:23 by Aleksey Cheusov | Files touched by this commit (1)
Log message:

Change dependencies. runawk and mk-configure were imporeted to pkgsrc
++pkgrevision
   2011-01-09 12:36:47 by Aleksey Cheusov | Files touched by this commit (1)
Log message:
fix for pkglint warning

   2010-10-16 22:58:24 by Aleksey Cheusov | Files touched by this commit (1) | Package updated
Log message:
update COMMENT

   2010-10-10 20:20:10 by Aleksey Cheusov | Files touched by this commit (4) | Package updated
Log message:

Update to 0.15.0

  After some thoughts I decided to switch from plain mk-files to
  mk-configure build system. It provides very cool features and makes
  development drammatically easier. It also makes Makefiles much
  cleaner and easier. Installation instructions has been updated in
  README file.

  PAEXEC reads the tasks from stdin and distributes them to all
  available hosts or CPU. If some tasks are easy and can be made
  quickly while others require much more CPU time it makes sense to
  reorder tasks calcultion in order to reduce total calculation time
  and reduce computers/CPUs idle time. For this purpose -W<num> option
  is added to paexec(1) using weights assigned to each tasks. At the
  moment only two values are allowed for <num>: 0 -- do not use
  weights at all, 1 -- run heavier tasks first as soon as possible.

  New tool paexec_reorder(1) for reordering sliced output of
  paexec(1).  It is written in runawk. So, you'll need it at run time.

  FIXED: 1 byte buffer overflow if -d option is applied.

  Documentation update.  Tons of new regression tests.  Regression
  tests framework has been significantly reworked.  Clean-ups.

  README: notes about my Debian/Lenny/x86 repository.

  Minor fixes (warning messages) for different compilers.