From 5aba7981517842b4d74beb2c025b6f531cb7d354 Mon Sep 17 00:00:00 2001 From: Juergen Daubert Date: Tue, 1 Sep 2020 19:03:28 +0200 Subject: [PATCH] subunit: update to 1.4.0 --- subunit/.signature | 6 +++--- subunit/Pkgfile | 22 +++++++++++----------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/subunit/.signature b/subunit/.signature index 4c237fe88..bcbb61c9a 100644 --- a/subunit/.signature +++ b/subunit/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/ei1ggbR7jPZt1De2SH0tVmINIRwvjM2Z5o80PZSYucA/DcyUEBM1Z/SCIsgodh/1R8XP6xIst19IMMwshjTSg8= -SHA256 (Pkgfile) = fac138b011f09a730a818369161eee3211d84b17b7d63f3aa61f9fcace371336 +RWSE3ohX2g5d/cD/Th90Fqbilk59c35ZsYm+Jcy61sCbitjZwclX+gK2mY2VMRQnXL2chK88Z4uvywF8CcxG1hCF7WH67TmLcQo= +SHA256 (Pkgfile) = ae51d7b099157c10b82e88dbee07467f6c87c043261a757dd71262b59957d74a SHA256 (.footprint) = 84a2f1e0f0d3617293ab93f826c4e012bddf11334c6c613cc76b1d0b230ec4c1 -SHA256 (subunit-1.3.0.tar.gz) = 6f234df05fe04f851eb72a3c0ab7e72a4af7b6a956089f4609bafb45e595ba10 +SHA256 (subunit-1.4.0.tar.gz) = 00792096e96cbf1d5f9394dadd0ea73309a4f8b2214822949f1888ce5c2cf1c0 diff --git a/subunit/Pkgfile b/subunit/Pkgfile index 029217868..9f20df6b8 100644 --- a/subunit/Pkgfile +++ b/subunit/Pkgfile @@ -1,25 +1,25 @@ -# Description: Python unit testing library -# URL: https://launchpad.net/subunit -# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve -# Depends on: python check cppunit +# Description: Python unit testing library +# URL: https://launchpad.net/subunit +# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: python3 check cppunit name=subunit -version=1.3.0 +version=1.4.0 release=1 -source=(https://launchpad.net/subunit/trunk/${version%.*}/+download/$name-$version.tar.gz) +source=(https://launchpad.net/subunit/trunk/$version/+download/$name-$version.tar.gz) build () { - autoreconf -i + cd $name-$version - ./configure \ - --prefix=/usr + PYTHON=/usr/bin/python3 \ + ./configure --prefix=/usr make make DESTDIR=$PKG install # Avoid conflict with p5-subunit and py-subunit - rm -rf $PKG/usr/lib/perl* $PKG/usr/lib/python* + rm -r $PKG/usr/lib/perl* $PKG/usr/lib/python* # The binaries are actually python and perl scripts - rm -rf $PKG/usr/bin + rm -r $PKG/usr/bin }