summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrien Prost-Boucle2019-03-05 20:42:05 +0100
committerAdrien Prost-Boucle2019-03-05 20:42:05 +0100
commitb53d25ecfbcb85ef44bb3e0838c4a3ca91ff2e3b (patch)
tree277fb17ec5a290008bbc407c65a9169549bad394
parent08afc67da974ec4c004a3c341155ca2facad60cd (diff)
downloadaur-b53d25ecfbcb85ef44bb3e0838c4a3ca91ff2e3b.tar.gz
Update for new GHDL git repository
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD10
2 files changed, 7 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9a9baf3dd3dc..88cc20ceafc8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Sat Aug 19 11:22:24 UTC 2017
+# Tue Mar 5 19:41:16 UTC 2019
pkgbase = ghdl-llvm-git
pkgdesc = VHDL simulator - LLVM flavour
- pkgver = 0.35dev.git20170819
+ pkgver = 0.37dev.git20190303
pkgrel = 1
url = https://github.com/tgingold/ghdl
arch = any
@@ -15,7 +15,7 @@ pkgbase = ghdl-llvm-git
conflicts = ghdl
conflicts = ghdl-gcc-git
conflicts = ghdl-mcode-git
- source = ghdl::git://github.com/tgingold/ghdl.git
+ source = ghdl::git://github.com/ghdl/ghdl.git
md5sums = SKIP
pkgname = ghdl-llvm-git
diff --git a/PKGBUILD b/PKGBUILD
index 3b0fa465bf6e..6b0899ebeaa2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Adrien Prost-Boucle <adrien.prost-boucle@laposte.net>
pkgname=ghdl-llvm-git
-pkgver=0.35dev.git20170819
+pkgver=0.37dev.git20190303
pkgrel=1
arch=('any')
pkgdesc='VHDL simulator - LLVM flavour'
@@ -13,7 +13,7 @@ conflicts=('ghdl' 'ghdl-gcc-git' 'ghdl-mcode-git')
makedepends=('gcc-ada' 'git' 'llvm' 'clang')
source=(
- "ghdl::git://github.com/tgingold/ghdl.git"
+ "ghdl::git://github.com/ghdl/ghdl.git"
)
md5sums=(
'SKIP'
@@ -23,7 +23,7 @@ pkgver() {
cd "${srcdir}/ghdl"
# GHDL version (extracted from version.ads)
- _distver=`sed -n -e 's/.*Ghdl_Ver .*"\(.*\)".*/\1/p' src/version.in | tr -d '-'`
+ _distver=`sed -n -e 's/.*Ghdl_Ver .*"\(.*\)".*/\1/p' version.ads | 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 -`
@@ -33,15 +33,13 @@ pkgver() {
build() {
cd "${srcdir}/ghdl"
- ./configure --prefix=/usr/ --with-llvm=/usr/
+ ./configure --prefix=/usr/ --with-llvm-config
make
-
}
package() {
cd "${srcdir}/ghdl"
make DESTDIR="${pkgdir}" install
-
}