diff --git a/Makefile b/Makefile index e52c3ca..b526b74 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PACKAGE := abuild -VERSION := 3.6.0 +VERSION := 3.7.0_rc1 prefix ?= /usr bindir ?= $(prefix)/bin diff --git a/tests/abuild.bats b/tests/abuild.bats index 687bc57..d982a89 100644 --- a/tests/abuild.bats +++ b/tests/abuild.bats @@ -41,15 +41,16 @@ teardown() { @test "abuild: verify that packages are reproducible built" { cd testrepo/pkg1 - $ABUILD arch=$($ABUILD -A) pkgs=$($ABUILD listpkg) - checksums=$( cd "$REPODEST"/testrepo/$arch && md5sum $pkgs) + + $ABUILD + checksums=$(cd "$REPODEST"/testrepo/$arch && md5sum $pkgs) echo "$checksums" + $ABUILD cleanpkg all checksums2=$(cd "$REPODEST"/testrepo/$arch && md5sum $pkgs) echo "$checksums2" - [ "$checksums" = "$checksums2" ] - $ABUILD cleanpkg + [ "$checksums" = "$checksums2" ] }