summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD8
2 files changed, 7 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 47c24ef6bed2..52b2b9fc6473 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Sat Aug 19 11:28:24 UTC 2017
+# Tue Mar 5 20:02:12 UTC 2019
pkgbase = ghdl-mcode-git
pkgdesc = VHDL simulator - mcode backend
- pkgver = 0.35dev.git20170819
+ pkgver = 0.37dev.git20190303
pkgrel = 1
url = https://github.com/tgingold/ghdl
arch = i686
@@ -14,7 +14,7 @@ pkgbase = ghdl-mcode-git
conflicts = ghdl
conflicts = ghdl-gcc-git
conflicts = ghdl-llvm-git
- source = ghdl::git://github.com/tgingold/ghdl.git
+ source = ghdl::git://github.com/ghdl/ghdl.git
md5sums = SKIP
pkgname = ghdl-mcode-git
diff --git a/PKGBUILD b/PKGBUILD
index b2fba51edafc..fa4a1c2a02de 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Adrien Prost-Boucle <adrien.prost-boucle@laposte.net>
pkgname=ghdl-mcode-git
-pkgver=0.35dev.git20170819
+pkgver=0.37dev.git20190303
pkgrel=1
arch=('i686' 'x86_64')
pkgdesc='VHDL simulator - mcode backend'
@@ -13,7 +13,7 @@ conflicts=('ghdl' 'ghdl-gcc-git' 'ghdl-llvm-git')
makedepends=('gcc-ada' 'git')
source=(
- "ghdl::git://github.com/tgingold/ghdl.git"
+ "ghdl::git://github.com/ghdl/ghdl.git"
)
md5sums=(
'SKIP'
@@ -22,8 +22,8 @@ md5sums=(
pkgver() {
cd "${srcdir}/ghdl"
- # GHDL version (extracted from version.ads)
- _distver=`sed -n -e 's/.*Ghdl_Ver .*"\(.*\)".*/\1/p' src/version.in | tr -d '-'`
+ # GHDL version (extracted from configure)
+ _distver=`sed -n -e 's/.*ghdl_version=.*"\(.*\)".*/\1/p' configure | tr -d '-'`
# Date of the last git commit
_gitver=`git log -n 1 --date=short | sed -n -e 's/.*Date:\s*\([0-9-]*\).*/\1/p' | tr -d -`