subunit: update to 1.4.0

This commit is contained in:
Juergen Daubert 2020-09-01 19:03:28 +02:00
parent 173cda8811
commit 5aba798151
2 changed files with 14 additions and 14 deletions

View File

@ -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

View File

@ -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
}