upgpkg: devscripts 2.18.3-1

- Version bump
- Consistent identation
This commit is contained in:
Giovanni Santini
2018-05-26 16:20:13 +02:00
parent ea4ec12879
commit 18f777e002
2 changed files with 18 additions and 18 deletions

View File

@@ -1,8 +1,8 @@
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.17.12 pkgver = 2.18.3
pkgrel = 1 pkgrel = 1
url = http://packages.qa.debian.org/d/devscripts.html url = https://tracker.debian.org/pkg/devscripts
arch = i686 arch = i686
arch = x86_64 arch = x86_64
license = GPL2 license = GPL2
@@ -29,7 +29,7 @@ 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 = devscripts::git+https://anonscm.debian.org/git/collab-maint/devscripts.git#tag=v2.17.12 source = devscripts::git+https://anonscm.debian.org/git/collab-maint/devscripts.git#tag=v2.18.3
source = fixes.patch source = fixes.patch
sha256sums = SKIP sha256sums = SKIP
sha256sums = e5fef21e1d8aee3128c6499078bc2f38e8f80189b30882df817637388f1e7717 sha256sums = e5fef21e1d8aee3128c6499078bc2f38e8f80189b30882df817637388f1e7717

View File

@@ -5,11 +5,11 @@
# Contributor: JD Horelick <jdhore1@gmail.com> # Contributor: JD Horelick <jdhore1@gmail.com>
pkgname=devscripts pkgname=devscripts
pkgver=2.17.12 pkgver=2.18.3
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=('i686' 'x86_64') arch=('i686' 'x86_64')
url="http://packages.qa.debian.org/d/devscripts.html" url="https://tracker.debian.org/pkg/devscripts"
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')
@@ -31,30 +31,30 @@ makedepends=(
) )
options=('!makeflags') options=('!makeflags')
source=( source=(
#http://ftp.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_${pkgver}.tar.xz #http://ftp.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_${pkgver}.tar.xz
"${pkgname}::git+https://anonscm.debian.org/git/collab-maint/devscripts.git#tag=v${pkgver}" "${pkgname}::git+https://anonscm.debian.org/git/collab-maint/devscripts.git#tag=v${pkgver}"
fixes.patch fixes.patch
) )
sha256sums=('SKIP' sha256sums=('SKIP'
'e5fef21e1d8aee3128c6499078bc2f38e8f80189b30882df817637388f1e7717') 'e5fef21e1d8aee3128c6499078bc2f38e8f80189b30882df817637388f1e7717')
prepare(){ prepare(){
cd "$pkgname" cd "$pkgname"
patch -p1 -i "$srcdir/fixes.patch" patch -p1 -i "$srcdir/fixes.patch"
} }
build() { build() {
cd "$pkgname" cd "$pkgname"
make make
} }
package() { package() {
cd "$pkgname" cd "$pkgname"
make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" install
# Create dch symlink to debchange # Create dch symlink to debchange
ln -s /usr/bin/debchange "$pkgdir/usr/bin/dch" ln -s /usr/bin/debchange "$pkgdir/usr/bin/dch"
# 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"
} }