upgpkg: devscripts 2.16.8-1
Switching to git for building the package
This commit is contained in:
9
.SRCINFO
9
.SRCINFO
@@ -1,13 +1,14 @@
|
|||||||
# Generated by mksrcinfo v8
|
# Generated by mksrcinfo v8
|
||||||
# Fri Sep 16 13:51:36 UTC 2016
|
# Sat Nov 12 09:48:07 UTC 2016
|
||||||
pkgbase = devscripts
|
pkgbase = devscripts
|
||||||
pkgdesc = Scripts to make the life of a Debian Package maintainer easier
|
pkgdesc = Scripts to make the life of a Debian Package maintainer easier
|
||||||
pkgver = 2.16.7
|
pkgver = 2.16.8
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = http://packages.qa.debian.org/d/devscripts.html
|
url = http://packages.qa.debian.org/d/devscripts.html
|
||||||
install = devscripts.install
|
install = devscripts.install
|
||||||
arch = any
|
arch = any
|
||||||
license = GPL2
|
license = GPL2
|
||||||
|
makedepends = git
|
||||||
makedepends = po4a
|
makedepends = po4a
|
||||||
makedepends = perl-timedate
|
makedepends = perl-timedate
|
||||||
makedepends = perl-libwww
|
makedepends = perl-libwww
|
||||||
@@ -26,9 +27,9 @@ pkgbase = devscripts
|
|||||||
depends = perl-timedate
|
depends = perl-timedate
|
||||||
optdepends = sensible-utils: for sensible alternative selection
|
optdepends = sensible-utils: for sensible alternative selection
|
||||||
options = !makeflags
|
options = !makeflags
|
||||||
source = http://ftp.debian.org/debian/pool/main/d/devscripts/devscripts_2.16.7.tar.xz
|
source = devscripts-2.16.8::git+https://anonscm.debian.org/git/collab-maint/devscripts.git
|
||||||
source = fixes.patch
|
source = fixes.patch
|
||||||
md5sums = ba7491d3e9973d7440c49aefed937fbc
|
md5sums = SKIP
|
||||||
md5sums = 110857b0eb4a9dbf57a8b562d992ab33
|
md5sums = 110857b0eb4a9dbf57a8b562d992ab33
|
||||||
|
|
||||||
pkgname = devscripts
|
pkgname = devscripts
|
||||||
|
|||||||
22
PKGBUILD
22
PKGBUILD
@@ -5,7 +5,7 @@
|
|||||||
# Contributor: JD Horelick <jdhore1@gmail.com>
|
# Contributor: JD Horelick <jdhore1@gmail.com>
|
||||||
|
|
||||||
pkgname=devscripts
|
pkgname=devscripts
|
||||||
pkgver=2.16.7
|
pkgver=2.16.8
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Scripts to make the life of a Debian Package maintainer easier"
|
pkgdesc="Scripts to make the life of a Debian Package maintainer easier"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
@@ -13,23 +13,27 @@ url="http://packages.qa.debian.org/d/devscripts.html"
|
|||||||
license=('GPL2')
|
license=('GPL2')
|
||||||
depends=('dpkg' 'wget' 'sed' 'perl' 'debianutils' 'debhelper' 'perl-timedate')
|
depends=('dpkg' 'wget' 'sed' 'perl' 'debianutils' 'debhelper' 'perl-timedate')
|
||||||
optdepends=('sensible-utils: for sensible alternative selection')
|
optdepends=('sensible-utils: for sensible alternative selection')
|
||||||
makedepends=('po4a' 'perl-timedate' 'perl-libwww' 'docbook-xsl' 'perl-file-desktopentry' 'perl-file-basedir' 'perl-parse-debcontrol' 'python-setuptools' 'bash-completion')
|
makedepends=('git' 'po4a' 'perl-timedate' 'perl-libwww' 'docbook-xsl' 'perl-file-desktopentry' 'perl-file-basedir' 'perl-parse-debcontrol' 'python-setuptools' 'bash-completion')
|
||||||
options=('!makeflags')
|
options=('!makeflags')
|
||||||
source=(http://ftp.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_${pkgver}.tar.xz fixes.patch)
|
source=(
|
||||||
|
#http://ftp.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_${pkgver}.tar.xz
|
||||||
|
${pkgname}-${pkgver}::git+https://anonscm.debian.org/git/collab-maint/devscripts.git
|
||||||
|
fixes.patch
|
||||||
|
)
|
||||||
install='devscripts.install'
|
install='devscripts.install'
|
||||||
md5sums=('ba7491d3e9973d7440c49aefed937fbc'
|
md5sums=('SKIP'
|
||||||
'110857b0eb4a9dbf57a8b562d992ab33')
|
'110857b0eb4a9dbf57a8b562d992ab33')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $srcdir/$pkgname-$pkgver
|
cd "$pkgname-$pkgver"
|
||||||
patch -p0 -i ../fixes.patch
|
patch -p0 -i "$srcdir/fixes.patch"
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd $srcdir/$pkgname-$pkgver
|
cd "$pkgname-$pkgver"
|
||||||
make DESTDIR=$pkgdir install
|
make DESTDIR="$pkgdir" install
|
||||||
|
|
||||||
# bts completion is present already in the official package
|
# bts completion is present already in the official package
|
||||||
rm $pkgdir/usr/share/bash-completion/completions/bts
|
rm "$pkgdir/usr/share/bash-completion/completions/bts"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user