parallel: initial commit, version 20200522

This commit is contained in:
Tim Biermann 2020-06-07 14:46:24 +00:00
parent cc5696b073
commit 6a657866d9
3 changed files with 61 additions and 0 deletions

37
parallel/.footprint Normal file
View File

@ -0,0 +1,37 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/env_parallel
-rwxr-xr-x root/root usr/bin/env_parallel.ash
-rwxr-xr-x root/root usr/bin/env_parallel.bash
-rwxr-xr-x root/root usr/bin/env_parallel.csh
-rwxr-xr-x root/root usr/bin/env_parallel.dash
-rwxr-xr-x root/root usr/bin/env_parallel.fish
-rwxr-xr-x root/root usr/bin/env_parallel.ksh
-rwxr-xr-x root/root usr/bin/env_parallel.mksh
-rwxr-xr-x root/root usr/bin/env_parallel.pdksh
-rwxr-xr-x root/root usr/bin/env_parallel.sh
-rwxr-xr-x root/root usr/bin/env_parallel.tcsh
-rwxr-xr-x root/root usr/bin/env_parallel.zsh
-rwxr-xr-x root/root usr/bin/niceload
-rwxr-xr-x root/root usr/bin/parallel
-rwxr-xr-x root/root usr/bin/parcat
-rwxr-xr-x root/root usr/bin/parset
-rwxr-xr-x root/root usr/bin/parsort
lrwxrwxrwx root/root usr/bin/sem -> parallel
-rwxr-xr-x root/root usr/bin/sql
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/env_parallel.1.gz
-rw-r--r-- root/root usr/share/man/man1/niceload.1.gz
-rw-r--r-- root/root usr/share/man/man1/parallel.1.gz
-rw-r--r-- root/root usr/share/man/man1/parcat.1.gz
-rw-r--r-- root/root usr/share/man/man1/parset.1.gz
-rw-r--r-- root/root usr/share/man/man1/parsort.1.gz
-rw-r--r-- root/root usr/share/man/man1/sem.1.gz
-rw-r--r-- root/root usr/share/man/man1/sql.1.gz
drwxr-xr-x root/root usr/share/man/man7/
-rw-r--r-- root/root usr/share/man/man7/parallel_alternatives.7.gz
-rw-r--r-- root/root usr/share/man/man7/parallel_book.7.gz
-rw-r--r-- root/root usr/share/man/man7/parallel_design.7.gz
-rw-r--r-- root/root usr/share/man/man7/parallel_tutorial.7.gz

5
parallel/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF31ldsK4WlO8jmrc3x++a5N9+u3UwVQTMq8aDVUaQxeN0fvzZFzIYnGHQ0vXO0yq+UikmwTdTfzYfBvSBRoMOHQs=
SHA256 (Pkgfile) = 76501162d31dcc8fd8ddcc6fb98d8690f91d28b279557617c822eca37ecc6ce2
SHA256 (.footprint) = 23949328a87f5e30127f94173c478683c2fedd0bf5533b4c5b7c7ccab0a7789a
SHA256 (parallel-20200522.tar.bz2) = 49b4685a8b23a9f94d3ab3dff6eae5ad2283c39bf103bf56ec8cdd56b6213a82

19
parallel/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: A shell tool for executing jobs in parallel using one or more computers.
# URL: http://www.gnu.org/software/parallel/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Packager: Danny Rawlins, crux at romster dot me
name=parallel
version=20200522
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}