mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
13.26
This commit is contained in:
parent
e5e56acfaa
commit
d1beeee06b
2 changed files with 14 additions and 23 deletions
7
.SRCINFO
7
.SRCINFO
|
|
@ -1,6 +1,6 @@
|
|||
pkgbase = debhelper
|
||||
pkgdesc = Programs to automate common tasks in debian/rules when building Debian packages
|
||||
pkgver = 13.25
|
||||
pkgver = 13.26
|
||||
pkgrel = 1
|
||||
url = https://salsa.debian.org/debian/debhelper
|
||||
arch = any
|
||||
|
|
@ -10,10 +10,9 @@ pkgbase = debhelper
|
|||
depends = dpkg
|
||||
depends = perl-pod-parser
|
||||
optdepends = dh-make: convert source archives into Debian package source
|
||||
conflicts = dh-strip-nondeterminism
|
||||
source = debhelper::git+https://salsa.debian.org/debian/debhelper.git#tag=debian/13.25
|
||||
source = debhelper::git+https://salsa.debian.org/debian/debhelper.git#tag=debian/13.26
|
||||
source = strip-nondeterminism::git+https://salsa.debian.org/reproducible-builds/strip-nondeterminism.git
|
||||
sha256sums = aea3db39b218623da2e7cf995ed5cb06f8cc28ddcd31fd2818e60d3b11203d0a
|
||||
sha256sums = 5ee8275f007862574bff5655902b8faf1bf834a7ffadb1bb19a508500229c737
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = debhelper
|
||||
|
|
|
|||
30
PKGBUILD
30
PKGBUILD
|
|
@ -3,11 +3,9 @@
|
|||
# Contributor: Antoine Lubineau <antoine@lubignon.info>
|
||||
# Contributor: Charles Pigott <charlespigott@googlemail.com>
|
||||
|
||||
: ${_cksum:=aea3db39b218623da2e7cf995ed5cb06f8cc28ddcd31fd2818e60d3b11203d0a}
|
||||
|
||||
_pkgname="debhelper"
|
||||
pkgname="$_pkgname"
|
||||
pkgver=13.25
|
||||
pkgver=13.26
|
||||
pkgrel=1
|
||||
pkgdesc="Programs to automate common tasks in debian/rules when building Debian packages"
|
||||
url="https://salsa.debian.org/debian/debhelper"
|
||||
|
|
@ -26,22 +24,16 @@ optdepends=(
|
|||
'dh-make: convert source archives into Debian package source'
|
||||
)
|
||||
|
||||
_source_main() {
|
||||
_pkgsrc="$_pkgname"
|
||||
source=("$_pkgsrc"::"git+$url.git#tag=debian/$pkgver")
|
||||
sha256sums=("${_cksum:?}")
|
||||
}
|
||||
|
||||
_source_dh_strip_nd() {
|
||||
conflicts+=("dh-strip-nondeterminism")
|
||||
|
||||
_pkgsrc_dh_strip_nd="strip-nondeterminism"
|
||||
source+=("$_pkgsrc_dh_strip_nd"::"git+https://salsa.debian.org/reproducible-builds/strip-nondeterminism.git")
|
||||
sha256sums+=('SKIP')
|
||||
}
|
||||
|
||||
_source_main
|
||||
_source_dh_strip_nd
|
||||
_pkgsrc="$_pkgname"
|
||||
_pkgsrc_dh_strip_nd="strip-nondeterminism"
|
||||
source=(
|
||||
"$_pkgsrc"::"git+$url.git#tag=debian/$pkgver"
|
||||
"$_pkgsrc_dh_strip_nd"::"git+https://salsa.debian.org/reproducible-builds/strip-nondeterminism.git"
|
||||
)
|
||||
sha256sums=(
|
||||
'5ee8275f007862574bff5655902b8faf1bf834a7ffadb1bb19a508500229c737'
|
||||
'SKIP'
|
||||
)
|
||||
|
||||
build() {
|
||||
cd "$_pkgsrc"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue