[arch-commits] Commit in mescc-tools/trunk (PKGBUILD)

2020-02-03 Thread Jelle van der Waa via arch-commits
Date: Monday, February 3, 2020 @ 13:25:11
  Author: jelle
Revision: 374524

upgpkg: mescc-tools 0.7.0-1

Upstream update, switch to git commit which is gpg signed.

Modified:
  mescc-tools/trunk/PKGBUILD

--+
 PKGBUILD |   14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-03 08:54:14 UTC (rev 374523)
+++ PKGBUILD2020-02-03 13:25:11 UTC (rev 374524)
@@ -1,27 +1,29 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=mescc-tools
-pkgver=0.6.1
+pkgver=0.7.0
 pkgrel=1
 pkgdesc="tools for binary bootstrapping"
 arch=(x86_64)
 license=('GPL')
 url="https://github.com/oriansj/mescc-tools";
+makedepends=(git)
 depends=(glibc)
-source=("https://github.com/oriansj/mescc-tools/archive/Release_0.6.1.tar.gz";)
-sha256sums=('56f02bb9c92c6569197ec91246e366048efd47e32d9365a812f64bd70dde571a')
+source=(git+https://github.com/oriansj/mescc-tools.git#commit=3df4848f689bcd4a9f88e17785b6d3e4dc640c01)
+sha256sums=('SKIP')
+validpgpkeys=("CA1132DD2BA1E81AC10C95D35410E91C14959E87")
 
 build() {
-  cd mescc-tools-Release_$pkgver
+  cd mescc-tools
   make
 }
 
 check() {
-  cd mescc-tools-Release_$pkgver
+  cd mescc-tools
   make test
 }
 
 package() {
-  cd mescc-tools-Release_$pkgver
+  cd mescc-tools
   make PREFIX=/usr DESTDIR=$pkgdir install
 }


[arch-commits] Commit in mescc-tools/trunk (PKGBUILD)

2019-12-05 Thread Jelle van der Waa via arch-commits
Date: Thursday, December 5, 2019 @ 17:47:46
  Author: jelle
Revision: 370434

Run test suite!

Modified:
  mescc-tools/trunk/PKGBUILD

--+
 PKGBUILD |5 +
 1 file changed, 5 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-05 15:08:09 UTC (rev 370433)
+++ PKGBUILD2019-12-05 17:47:46 UTC (rev 370434)
@@ -16,6 +16,11 @@
   make
 }
 
+check() {
+  cd mescc-tools-Release_$pkgver
+  make test
+}
+
 package() {
   cd mescc-tools-Release_$pkgver
   make PREFIX=/usr DESTDIR=$pkgdir install


[arch-commits] Commit in mescc-tools/trunk (PKGBUILD)

2019-12-04 Thread Jelle van der Waa via arch-commits
Date: Wednesday, December 4, 2019 @ 16:11:48
  Author: jelle
Revision: 370392

upgpkg: mescc-tools 0.6.1-1

Initial commit

Added:
  mescc-tools/trunk/PKGBUILD

--+
 PKGBUILD |   22 ++
 1 file changed, 22 insertions(+)

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-04 16:11:48 UTC (rev 370392)
@@ -0,0 +1,22 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=mescc-tools
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="tools for binary bootstrapping"
+arch=(x86_64)
+license=('GPL')
+url="https://github.com/oriansj/mescc-tools";
+depends=(glibc)
+source=("https://github.com/oriansj/mescc-tools/archive/Release_0.6.1.tar.gz";)
+sha256sums=('56f02bb9c92c6569197ec91246e366048efd47e32d9365a812f64bd70dde571a')
+
+build() {
+  cd mescc-tools-Release_$pkgver
+  make
+}
+
+package() {
+  cd mescc-tools-Release_$pkgver
+  make PREFIX=/usr DESTDIR=$pkgdir install
+}