[arch-commits] Commit in junit-system-rules/trunk (PKGBUILD)

Jonas Witschel diabonas at archlinux.org
Wed Oct 16 16:23:29 UTC 2019


    Date: Wednesday, October 16, 2019 @ 16:23:28
  Author: diabonas
Revision: 516360

upgpkg: junit-system-rules 1.19.0-4

- Update patch to the latest version of the GitHub pull request
- Simplify PKGBUILD by using "mvn package" instead of "mvn install"

Modified:
  junit-system-rules/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-10-16 16:22:52 UTC (rev 516359)
+++ PKGBUILD	2019-10-16 16:23:28 UTC (rev 516360)
@@ -2,7 +2,7 @@
 pkgname=junit-system-rules
 pkgver=1.19.0
 _commit=f4782ebfd72c08bd3f00aa04ad20fe499c5463b4 # signed commit corresponding to tag system-rules-1.19.0
-pkgrel=3
+pkgrel=4
 pkgdesc='A collection of JUnit rules for testing code that uses java.lang.System'
 arch=('any')
 url='https://stefanbirkner.github.io/system-rules/'
@@ -10,15 +10,15 @@
 depends=('junit')
 makedepends=('git' 'jdk8-openjdk' 'maven' 'strip-nondeterminism')
 source=("$pkgname::git+https://github.com/stefanbirkner/system-rules.git?signed#commit=$_commit"
-        'https://github.com/stefanbirkner/system-rules/commit/f3bdb617cea7ab6663d9ec42d16d5f257b3a3f5c.patch')
+        'junit-system-rules_update-lib-parent.patch::https://github.com/stefanbirkner/system-rules/commit/6a4fe4c8ccaa3f9234b8eec75deeaa42b5154568.patch')
 sha512sums=('SKIP'
-            'c9802bb0cfe5d3e6136f50b6ff43fdf962231571964cd1c69347f4ce025e7e60cfbc8a080f492fd17d29302463b5634fb8f1948a84cff7ed276294ce51be1ebc')
+            '42d4172d32a1376a0cb6a33f5ba150929bd8d11ef3b73b67a3e2a6f12b0b302f991066b2f85bda55d2c2e0e30cb8e6cde0c6067a76cad142da366c78138f0666')
 validpgpkeys=('F4AF40991AECE57728B0034F9ECE1F68817F4996') # Stefan Birkner <mail at stefan-birkner.de>
 
 prepare() {
 	cd "$pkgname"
 	# Update lib-parent to latest version 16 to fix build failure (GitHub PR #76)
-	patch --strip=1 --input="$srcdir/f3bdb617cea7ab6663d9ec42d16d5f257b3a3f5c.patch"
+	patch --strip=1 --input="$srcdir/junit-system-rules_update-lib-parent.patch"
 }
 
 build() {
@@ -28,7 +28,7 @@
 	# (https://github.com/stefanbirkner/system-rules/issues/65#issuecomment-402837535)
 	export PATH="/usr/lib/jvm/java-8-openjdk/bin:$PATH"
 
-	mvn -DskipTests=true -Dfindbugs.skip=true -Dgpg.skip=true install
+	mvn -DskipTests=true clean package
 
 	# Timestamps in JAR files generated by Maven do not honour SOURCE_DATE_EPOCH
 	# (https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=74682318)
@@ -41,7 +41,7 @@
 }
 
 package() {
-	cd "$pkgname/target"
-	install -Dm644 "system-rules-$pkgver.jar" -t "$pkgdir/usr/share/java/junit-system-rules"
+	cd "$pkgname"
+	install -Dm644 "target/system-rules-$pkgver.jar" -t "$pkgdir/usr/share/java/junit-system-rules"
 	ln -s "system-rules-$pkgver.jar" "$pkgdir/usr/share/java/junit-system-rules/system-rules.jar"
 }



More information about the arch-commits mailing list