# HG changeset patch # User Hans-G?nter Theisgen # Date 1655542133 -3600 # Node ID 22cb2ed9e1dfd1fd27c35b7803a62504e7e08b1f # Parent 92be0e14703a345a6303936d73bbe4f303ea75be updated parallel (20200322 -> 20220522) diff -r 92be0e14703a -r 22cb2ed9e1df parallel/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/parallel/description.txt Sat Jun 18 09:48:53 2022 +0100 @@ -0,0 +1,9 @@ +GNU parallel is a shell tool for executing jobs in parallel +using one or more computers. +A job can be a single command or a small script that has to +be run for each of the lines in the input. +The typical input is a list of files, a list of hosts, a +list of users, a list of URLs, or a list of tables. +A job can also be a command that reads from a pipe. GNU +parallel can then split the input and pipe it into commands +in parallel. diff -r 92be0e14703a -r 22cb2ed9e1df parallel/receipt --- a/parallel/receipt Sat Jun 18 09:41:29 2022 +0100 +++ b/parallel/receipt Sat Jun 18 09:48:53 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="parallel" -VERSION="20200322" +VERSION="20220522" CATEGORY="base-system" TAGS="sync" SHORT_DESC="A tool for executing jobs in parallel using one or more computers." @@ -27,14 +27,13 @@ ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ - $CONFIGURE_ARGS && + $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin }