diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-19 05:16:35 +0000 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-06-01 16:03:45 +0200 |
commit | d9a349c1d81b3e3d26ccfe377f3ce3a7ba788584 (patch) | |
tree | aef5e1b9cab252969838976da7329a9692326603 | |
parent | 3402732f1c15010f98b90006f2006573a6b36b6b (diff) | |
download | pkgbuilds-d9a349c1d81b3e3d26ccfe377f3ce3a7ba788584.tar.xz |
pacman-git: add --long to git-describe
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -2,7 +2,7 @@ # Mon Jun 1 14:59:48 UTC 2015 pkgbase = pacman-git pkgdesc = A library-based package manager with dependency support. git version. - pkgver = 4.1.2.r475.gbd744d0 + pkgver = 4.2.0.r0.g565c931 pkgrel = 1 url = http://www.archlinux.org/pacman/ arch = x86_64 @@ -17,7 +17,7 @@ pkgbase = pacman-git depends = libarchive depends = pacman-mirrorlist optdepends = fakeroot: for makepkg usage as normal user - provides = pacman=4.1.2.r475.gbd744d0 + provides = pacman=4.2.0.r0.g565c931 provides = pacman-contrib provides = libalpm.so conflicts = pacman @@ -1,5 +1,5 @@ pkgname=pacman-git -pkgver=4.1.2.r475.gbd744d0 +pkgver=4.2.0.r0.g565c931 pkgrel=1 pkgdesc="A library-based package manager with dependency support. git version." @@ -30,7 +30,7 @@ sha1sums=('SKIP' pkgver() { cd pacman - git describe | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g' + git describe --long | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g' } build() { |