summaryrefslogtreecommitdiff
path: root/parallel
diff options
context:
space:
mode:
authorTim Biermann <tbier@posteo.de>2020-06-07 14:46:24 +0000
committerTim Biermann <tbier@posteo.de>2020-06-07 16:12:35 +0000
commit6a657866d9cfb14c30b1e198f95f2a1c3ebcf580 (patch)
tree12bbf91101fd3c695c04ac5552b21cc59b4f2692 /parallel
parentcc5696b0737cf7a77ed8a5c8d25a572a096b55a8 (diff)
downloadcontrib-6a657866d9cfb14c30b1e198f95f2a1c3ebcf580.tar.gz
contrib-6a657866d9cfb14c30b1e198f95f2a1c3ebcf580.tar.xz
parallel: initial commit, version 20200522
Diffstat (limited to 'parallel')
-rw-r--r--parallel/.footprint37
-rw-r--r--parallel/.signature5
-rw-r--r--parallel/Pkgfile19
3 files changed, 61 insertions, 0 deletions
diff --git a/parallel/.footprint b/parallel/.footprint
new file mode 100644
index 000000000..0addc5a5a
--- /dev/null
+++ b/parallel/.footprint
@@ -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
diff --git a/parallel/.signature b/parallel/.signature
new file mode 100644
index 000000000..4a8e6fd7e
--- /dev/null
+++ b/parallel/.signature
@@ -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
diff --git a/parallel/Pkgfile b/parallel/Pkgfile
new file mode 100644
index 000000000..d05b3d41e
--- /dev/null
+++ b/parallel/Pkgfile
@@ -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
+}

Generated by cgit