[arch-commits] Commit in strip-nondeterminism/repos (2 files)
Evangelos Foutras
foutrelis at gemini.archlinux.org
Sun May 29 11:54:35 UTC 2022
Date: Sunday, May 29, 2022 @ 11:54:35
Author: foutrelis
Revision: 1214524
archrelease: copy trunk to community-staging-any
Added:
strip-nondeterminism/repos/community-staging-any/
strip-nondeterminism/repos/community-staging-any/PKGBUILD
(from rev 1214522, strip-nondeterminism/trunk/PKGBUILD)
----------+
PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
Copied: strip-nondeterminism/repos/community-staging-any/PKGBUILD (from rev 1214522, strip-nondeterminism/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2022-05-29 11:54:35 UTC (rev 1214524)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+
+pkgname=strip-nondeterminism
+pkgver=1.12.1
+pkgrel=2
+pkgdesc='Tool for stripping bits of non-deterministic information from files'
+url='https://salsa.debian.org/reproducible-builds/strip-nondeterminism'
+arch=('any')
+license=('GPL3')
+depends=("perl" 'perl-archive-zip' 'perl-archive-cpio' 'perl-sub-override')
+makedepends=('git')
+options=('!emptydirs')
+source=(https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/archive/${pkgver}/strip-nondeterminism-${pkgver}.tar.bz2
+ https://salsa.debian.org/reproducible-builds/reproducible-lfs/raw/master/releases/strip-nondeterminism/strip-nondeterminism-${pkgver}.tar.bz2.asc)
+sha512sums=('f007bc442adfb1f28d944e1da2b666f9d8405175875158547f9efe7f2190e803ebef7d760b5ad3b65a9149cadc2a577cbe795f030a33d2bee3a80d4cff704aa6'
+ 'SKIP')
+validpgpkeys=('C2FE4BD271C139B86C533E461E953E27D4311E58' # Chris Lamb <lamby at debian.org>
+ 'EF5D84C1838F2EB6D8968C0410378EFC2080080C' # Andrew Ayer <agwa at andrewayer.name>
+ '2F5DAF3FC1F793D94F3D900CA721DA055374AA4F' # Reiner Herrmann <reiner at reiner-h.de>
+ '66AE2B4AFCCF3F52DA184D184B043FCDB9444540') # Mattia Rizzolo <mattia at debian.org>
+
+prepare() {
+ cd ${pkgname}-${pkgver}
+ sed -r 's|bin/dh_strip_nondeterminism ||g' -i Makefile.PL
+}
+
+build() {
+ cd ${pkgname}-${pkgver}
+ PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+ make
+}
+
+check() {
+ make -C ${pkgname}-${pkgver} test
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+ install -Dm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
+ # Don't install the internal handler documentation generated from pod documents
+ # https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/commit/b9b84287c654bd14d6489282475868977dec50c6
+ rm -r "${pkgdir}/usr/share/man/man3"
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list