Date: Wednesday, December 19, 2018 @ 18:08:33 Author: demize Revision: 416769
upgpkg: parallel 20181122-1 (Also disable citation nagging) Added: parallel/trunk/remove-citation-nagging.patch Modified: parallel/trunk/PKGBUILD -------------------------------+ PKGBUILD | 20 +++++++++++++------- remove-citation-nagging.patch | 11 +++++++++++ 2 files changed, 24 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-12-19 16:23:48 UTC (rev 416768) +++ PKGBUILD 2018-12-19 18:08:33 UTC (rev 416769) @@ -1,9 +1,10 @@ -# Maintainer: Timothy Redaelli <[email protected]> +# Maintainer: Johannes Löthberg <[email protected]> +# Contributor: Timothy Redaelli <[email protected]> # Contributor: Vianney le Clément <vleclement AT gmail·com> # Contributor: Peter Simons <[email protected]> pkgname=parallel -pkgver=20180822 +pkgver=20181122 pkgrel=1 pkgdesc='A shell tool for executing jobs in parallel' arch=('any') @@ -10,13 +11,18 @@ url='http://www.gnu.org/software/parallel/' license=('GPL3') depends=('perl' 'procps') -source=(https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig}) -md5sums=('268930f1ef472bdd25e9325ee0c46849' - 'SKIP') -sha1sums=('2b2b5c77b75867ea7df7c8f4ae40551aee6c1cf3' - 'SKIP') +source=(https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig} + remove-citation-nagging.patch) +sha1sums=('e5501422315f989f622b564d4b75347abe799422' + 'SKIP' + '118706e9604bbb8de4d27682bb014a0614d6489a') validpgpkeys=('CDA01A4208C4F74506107E7BD1AB451688888888') +prepare() { + cd parallel-$pkgver + patch -p1 <"$srcdir"/remove-citation-nagging.patch +} + build() { cd parallel-$pkgver ./configure --prefix=/usr Added: remove-citation-nagging.patch =================================================================== --- remove-citation-nagging.patch (rev 0) +++ remove-citation-nagging.patch 2018-12-19 18:08:33 UTC (rev 416769) @@ -0,0 +1,11 @@ +--- a/src/parallel 2018-12-19 19:03:15.922924562 +0100 ++++ a/src/parallel 2018-12-19 19:06:12.754363549 +0100 +@@ -1455,7 +1455,7 @@ + # runs. If that is too much trouble for you, why not use one of + # the alternatives instead? + # See a list in: 'man parallel_alternatives' +- citation_notice(); ++ #citation_notice(); + + parse_halt(); +
