Prune contributor list.  People who never had commit privileges
may not appreciate having their contact info distributed
This commit is contained in:
xiota
2024-02-26 06:05:19 +00:00
parent c33afbc4a8
commit 10ced242ad
2 changed files with 16 additions and 11 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.13 pkgver = 13.14.1
pkgrel = 1 pkgrel = 1
url = https://salsa.debian.org/debian/debhelper url = https://salsa.debian.org/debian/debhelper
arch = any arch = any
@@ -12,8 +12,8 @@ pkgbase = debhelper
optdepends = dh-make: convert source archives into Debian package source optdepends = dh-make: convert source archives into Debian package source
provides = dh-strip-nondeterminism provides = dh-strip-nondeterminism
conflicts = dh-strip-nondeterminism conflicts = dh-strip-nondeterminism
source = git+https://salsa.debian.org/debian/debhelper.git#tag=debian/13.13 source = git+https://salsa.debian.org/debian/debhelper.git#tag=debian/13.14.1
source = dh_strip_nondeterminism::https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/raw/master/bin/dh_strip_nondeterminism source = dh_strip_nondeterminism-dh_13.14.1::https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/raw/master/bin/dh_strip_nondeterminism
sha256sums = SKIP sha256sums = SKIP
sha256sums = SKIP sha256sums = SKIP

View File

@@ -2,7 +2,10 @@
# Contributor: Justin Vreeland <vreeland.justin@gmail.com> # Contributor: Justin Vreeland <vreeland.justin@gmail.com>
# Contributor: Antoine Lubineau <antoine@lubignon.info> # Contributor: Antoine Lubineau <antoine@lubignon.info>
# Contributor: Charles Pigott <charlespigott@googlemail.com> # Contributor: Charles Pigott <charlespigott@googlemail.com>
# Contributor: Andrei "Garoth" Thorp <garoth "at the nice" gmail "dot" com>
## useful links:
# https://salsa.debian.org/debian/debhelper
# https://salsa.debian.org/reproducible-builds/strip-nondeterminism
## options ## options
: ${_build_git:=false} : ${_build_git:=false}
@@ -13,15 +16,14 @@ unset _pkgtype
## basic info ## basic info
_pkgname="debhelper" _pkgname="debhelper"
pkgname="$_pkgname${_pkgtype:-}" pkgname="$_pkgname${_pkgtype:-}"
pkgver=13.13 pkgver=13.14.1
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"
url="https://salsa.debian.org/debian/debhelper" url="https://salsa.debian.org/debian/debhelper"
license=('GPL-2.0-or-later') license=('GPL-2.0-or-later')
arch=('any') arch=('any')
_url_dh_strip_nondeterminism="https://salsa.debian.org/reproducible-builds/strip-nondeterminism" # main package
depends=( depends=(
'dpkg' 'dpkg'
'perl-pod-parser' 'perl-pod-parser'
@@ -45,7 +47,7 @@ if [ "${_build_git::1}" != "t" ] ; then
} }
else else
# git package # git package
provides=("$_pkgname") provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname") conflicts=("$_pkgname")
_pkgsrc="$_pkgname" _pkgsrc="$_pkgname"
@@ -54,14 +56,17 @@ else
pkgver() { pkgver() {
cd "$_pkgsrc" cd "$_pkgsrc"
git describe --long --tags | sed 's/^debian\///;s/\([^-]*-g\)/r\1/;s/-/./g' git describe --long --tags --abbrev=8 | sed 's/^debian\///;s/\([^-]*-g\)/r\1/;s/-/./g'
} }
fi fi
provides+=("dh-strip-nondeterminism") provides+=("dh-strip-nondeterminism")
conflicts+=("dh-strip-nondeterminism") conflicts+=("dh-strip-nondeterminism")
source+=("dh_strip_nondeterminism"::"$_url_dh_strip_nondeterminism/-/raw/master/bin/dh_strip_nondeterminism") # dh_strip_nondeterminism
_dh_strip_nondeterminism_url="https://salsa.debian.org/reproducible-builds/strip-nondeterminism"
_dh_strip_nondeterminism_script="dh_strip_nondeterminism-dh_${pkgver%%.r*}"
source+=("$_dh_strip_nondeterminism_script"::"$_dh_strip_nondeterminism_url/-/raw/master/bin/dh_strip_nondeterminism")
sha256sums+=('SKIP') sha256sums+=('SKIP')
prepare() { prepare() {
@@ -90,7 +95,7 @@ package() {
cd "$_pkgsrc" cd "$_pkgsrc"
make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" install
install -Dm755 "$srcdir/dh_strip_nondeterminism" -t "$pkgdir/usr/bin" install -Dm755 "$srcdir/$_dh_strip_nondeterminism_script" -t "$pkgdir/usr/bin/dh_strip_nondeterminism"
} }
# vim:set ts=2 sw=2 et: # vim:set ts=2 sw=2 et: