Update to 13.11.4
Add dh_strip_nondeterminism
This commit is contained in:
13
.SRCINFO
13
.SRCINFO
@@ -1,6 +1,6 @@
|
||||
pkgbase = debhelper
|
||||
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
|
||||
url = https://salsa.debian.org/debian/debhelper.git/
|
||||
arch = any
|
||||
@@ -15,11 +15,16 @@ pkgbase = debhelper
|
||||
depends = file>=3.23
|
||||
depends = html2text
|
||||
depends = man-db>=2.5.1
|
||||
depends = perl>=5.6.0
|
||||
depends = perl-pod-parser
|
||||
depends = perl>=5.6.0
|
||||
depends = po-debconf
|
||||
optdepends = dh-make
|
||||
source = git+https://salsa.debian.org/debian//debhelper.git#tag=debian/13.10.1
|
||||
depends = strip-nondeterminism
|
||||
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
|
||||
|
||||
pkgname = debhelper
|
||||
|
||||
9
.gitignore
vendored
9
.gitignore
vendored
@@ -1,5 +1,4 @@
|
||||
debhelper*
|
||||
pkg
|
||||
src
|
||||
*.tar.*
|
||||
*.log
|
||||
*
|
||||
!PKGBUILD
|
||||
!.SRCINFO
|
||||
!.gitignore
|
||||
|
||||
26
PKGBUILD
26
PKGBUILD
@@ -4,11 +4,12 @@
|
||||
# Contributor: Andrei "Garoth" Thorp <garoth "at the nice" gmail "dot" com>
|
||||
|
||||
pkgname=debhelper
|
||||
pkgver=13.10.1
|
||||
pkgver=13.11.4
|
||||
pkgrel=1
|
||||
pkgdesc="A collection of programs that can be used in a debian/rules file to automate common tasks"
|
||||
arch=('any')
|
||||
url="https://salsa.debian.org/debian/debhelper.git/"
|
||||
_url_dh_strip_nondeterminism="https://salsa.debian.org/reproducible-builds/strip-nondeterminism"
|
||||
license=('GPL2' 'GPL3')
|
||||
depends=(
|
||||
'binutils'
|
||||
@@ -16,9 +17,10 @@ depends=(
|
||||
'file>=3.23'
|
||||
'html2text'
|
||||
'man-db>=2.5.1'
|
||||
'perl>=5.6.0'
|
||||
'perl-pod-parser'
|
||||
'perl>=5.6.0'
|
||||
'po-debconf'
|
||||
'strip-nondeterminism'
|
||||
)
|
||||
makedepends=(
|
||||
'file>=3.23'
|
||||
@@ -26,9 +28,21 @@ makedepends=(
|
||||
'man-db>=2.5.1'
|
||||
'po4a>=0.24'
|
||||
)
|
||||
optdepends=('dh-make')
|
||||
source=("git+https://salsa.debian.org/debian//debhelper.git#tag=debian/$pkgver")
|
||||
md5sums=('SKIP')
|
||||
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/$pkgver"
|
||||
dh_strip_nondeterminism::"${_url_dh_strip_nondeterminism}/-/raw/master/bin/dh_strip_nondeterminism?inline=false"
|
||||
)
|
||||
md5sums=(
|
||||
'SKIP'
|
||||
'SKIP'
|
||||
)
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname"
|
||||
@@ -38,6 +52,8 @@ build() {
|
||||
package() {
|
||||
cd "$srcdir/$pkgname"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
|
||||
install -Dm755 "${srcdir}/dh_strip_nondeterminism" -t "${pkgdir}/usr/bin"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
|
||||
Reference in New Issue
Block a user