diff options
author | Anton Kudelin | 2023-10-22 01:23:46 +0300 |
---|---|---|
committer | Anton Kudelin | 2023-10-22 01:23:46 +0300 |
commit | 2e54dcdae6a310c98c9fc3e70bcc9a5b84ffc61f (patch) | |
tree | baa0322bd09f7e724cf224610846d5430ca9bb9d | |
parent | 2626112911e0bb152e13ca1c8ab95030f77f1bff (diff) | |
download | aur-2e54dcdae6a310c98c9fc3e70bcc9a5b84ffc61f.tar.gz |
updpkg: 7.8.0
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 21 |
2 files changed, 15 insertions, 12 deletions
@@ -1,13 +1,13 @@ pkgbase = java-testng pkgdesc = A testing framework inspired by JUnit and NUnit - pkgver = 7.6.1 + pkgver = 7.8.0 pkgrel = 1 url = http://testng.org arch = any license = Apache makedepends = gradle depends = jdk11-openjdk - source = java-testng-7.6.1.tar.gz::https://github.com/cbeust/testng/archive/7.6.1.tar.gz - sha256sums = 78ccf9122b62a2d4bdff90cab219254997f4120a94da49f72f2df2f2ea65c870 + source = java-testng-7.8.0.tar.gz::https://github.com/cbeust/testng/archive/7.8.0.tar.gz + sha256sums = 94337f64dfc2d461adf9d3a7c6db9d0e4174ae314a061108713b2e8e7f28fe0a pkgname = java-testng @@ -1,25 +1,28 @@ -# Maintainer: Anton Kudelin <kudelin at protonmail dot com> +# Maintainer: Anton Kudelin <kudelin at proton dot me> # Contributor: eolianoe <eolianoe [at] gmail [DoT] com> # Contributor: Daniel Nagy <danielnagy at gmx de> # Contributor: grimsock <lord.grimsock at gmail dot com> # Contributor: Alucryd <alucryd at gmail dot com> _pkgname=testng -pkgname=java-${_pkgname} -pkgver=7.6.1 +pkgname=java-$_pkgname +pkgver=7.8.0 pkgrel=1 +arch=(any) pkgdesc='A testing framework inspired by JUnit and NUnit' -arch=('any') url="http://testng.org" -license=('Apache') -depends=('jdk11-openjdk') -makedepends=('gradle') -source=("$pkgname-$pkgver.tar.gz::https://github.com/cbeust/$_pkgname/archive/$pkgver.tar.gz") -sha256sums=('78ccf9122b62a2d4bdff90cab219254997f4120a94da49f72f2df2f2ea65c870') +license=(Apache) +depends=(jdk11-openjdk) +makedepends=(gradle) +source=($pkgname-$pkgver.tar.gz::https://github.com/cbeust/$_pkgname/archive/$pkgver.tar.gz) +sha256sums=('94337f64dfc2d461adf9d3a7c6db9d0e4174ae314a061108713b2e8e7f28fe0a') prepare() { echo "It's recommended to build in a clean chroot" unset _JAVA_OPTIONS + + cd "$srcdir/$_pkgname-$pkgver" + sed -i '/enableFeaturePreview("VERSION_CATALOGS")/d' settings.gradle.kts } build() { |