Fix pkgver to ignore weird upstream "Staging" tag
https://github.com/FreeCAD/FreeCAD/releases/tag/Staging
This commit is contained in:
parent
17758fac7f
commit
7562f5e671
2 changed files with 3 additions and 3 deletions
2
.SRCINFO
2
.SRCINFO
|
@ -1,6 +1,6 @@
|
|||
pkgbase = freecad-git
|
||||
pkgdesc = A general purpose 3D CAD modeler - git checkout
|
||||
pkgver = 0.19pre.r633.g063582241
|
||||
pkgver = 0.19pre.r1038.g7b315d3a1
|
||||
pkgrel = 1
|
||||
epoch = 1
|
||||
url = https://www.freecadweb.org/
|
||||
|
|
4
PKGBUILD
4
PKGBUILD
|
@ -3,7 +3,7 @@
|
|||
|
||||
_appname=freecad
|
||||
pkgname="${_appname}-git"
|
||||
pkgver=0.19pre.r633.g063582241
|
||||
pkgver=0.19pre.r1038.g7b315d3a1
|
||||
pkgrel=1
|
||||
epoch=1
|
||||
pkgdesc='A general purpose 3D CAD modeler - git checkout'
|
||||
|
@ -28,7 +28,7 @@ md5sums=('SKIP'
|
|||
|
||||
pkgver() {
|
||||
cd "${srcdir}/${pkgname}"
|
||||
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/_//'
|
||||
git describe --long --tags --match '*.*' | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/_//'
|
||||
}
|
||||
|
||||
build() {
|
||||
|
|
Loading…
Reference in a new issue