Update to 13.11.4

Add dh_strip_nondeterminism
This commit is contained in:
xiota
2023-01-04 11:58:25 -08:00
parent 9c29aa7946
commit 8ee50bcc65
3 changed files with 34 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
pkgbase = debhelper pkgbase = debhelper
pkgdesc = A collection of programs that can be used in a debian/rules file to automate common tasks pkgdesc = A collection of programs that can be used in a debian/rules file to automate common tasks
pkgver = 13.10.1 pkgver = 13.11.4
pkgrel = 1 pkgrel = 1
url = https://salsa.debian.org/debian/debhelper.git/ url = https://salsa.debian.org/debian/debhelper.git/
arch = any arch = any
@@ -15,11 +15,16 @@ pkgbase = debhelper
depends = file>=3.23 depends = file>=3.23
depends = html2text depends = html2text
depends = man-db>=2.5.1 depends = man-db>=2.5.1
depends = perl>=5.6.0
depends = perl-pod-parser depends = perl-pod-parser
depends = perl>=5.6.0
depends = po-debconf depends = po-debconf
optdepends = dh-make depends = strip-nondeterminism
source = git+https://salsa.debian.org/debian//debhelper.git#tag=debian/13.10.1 optdepends = dh-make: convert source archives into Debian package source
provides = dh-strip-nondeterminism
conflicts = dh-strip-nondeterminism
source = git+https://salsa.debian.org/debian//debhelper.git#tag=debian/13.11.4
source = dh_strip_nondeterminism::https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/raw/master/bin/dh_strip_nondeterminism?inline=false
md5sums = SKIP
md5sums = SKIP md5sums = SKIP
pkgname = debhelper pkgname = debhelper

9
.gitignore vendored
View File

@@ -1,5 +1,4 @@
debhelper* *
pkg !PKGBUILD
src !.SRCINFO
*.tar.* !.gitignore
*.log

View File

@@ -4,11 +4,12 @@
# Contributor: Andrei "Garoth" Thorp <garoth "at the nice" gmail "dot" com> # Contributor: Andrei "Garoth" Thorp <garoth "at the nice" gmail "dot" com>
pkgname=debhelper pkgname=debhelper
pkgver=13.10.1 pkgver=13.11.4
pkgrel=1 pkgrel=1
pkgdesc="A collection of programs that can be used in a debian/rules file to automate common tasks" pkgdesc="A collection of programs that can be used in a debian/rules file to automate common tasks"
arch=('any') arch=('any')
url="https://salsa.debian.org/debian/debhelper.git/" url="https://salsa.debian.org/debian/debhelper.git/"
_url_dh_strip_nondeterminism="https://salsa.debian.org/reproducible-builds/strip-nondeterminism"
license=('GPL2' 'GPL3') license=('GPL2' 'GPL3')
depends=( depends=(
'binutils' 'binutils'
@@ -16,9 +17,10 @@ depends=(
'file>=3.23' 'file>=3.23'
'html2text' 'html2text'
'man-db>=2.5.1' 'man-db>=2.5.1'
'perl>=5.6.0'
'perl-pod-parser' 'perl-pod-parser'
'perl>=5.6.0'
'po-debconf' 'po-debconf'
'strip-nondeterminism'
) )
makedepends=( makedepends=(
'file>=3.23' 'file>=3.23'
@@ -26,9 +28,21 @@ makedepends=(
'man-db>=2.5.1' 'man-db>=2.5.1'
'po4a>=0.24' 'po4a>=0.24'
) )
optdepends=('dh-make') optdepends=(
source=("git+https://salsa.debian.org/debian//debhelper.git#tag=debian/$pkgver") 'dh-make: convert source archives into Debian package source'
md5sums=('SKIP') )
provides=('dh-strip-nondeterminism')
conflicts=('dh-strip-nondeterminism')
source=(
"git+https://salsa.debian.org/debian//debhelper.git#tag=debian/$pkgver"
dh_strip_nondeterminism::"${_url_dh_strip_nondeterminism}/-/raw/master/bin/dh_strip_nondeterminism?inline=false"
)
md5sums=(
'SKIP'
'SKIP'
)
build() { build() {
cd "$srcdir/$pkgname" cd "$srcdir/$pkgname"
@@ -38,6 +52,8 @@ build() {
package() { package() {
cd "$srcdir/$pkgname" cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install make DESTDIR="$pkgdir/" install
install -Dm755 "${srcdir}/dh_strip_nondeterminism" -t "${pkgdir}/usr/bin"
} }
# vim:set ts=2 sw=2 et: # vim:set ts=2 sw=2 et: