==== release 3.7.0_rc1 ====

This commit is contained in:
Natanael Copa 2020-10-29 15:02:23 +00:00
parent c3fb176f24
commit 8ceca11831
2 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,5 @@
PACKAGE := abuild
VERSION := 3.6.0
VERSION := 3.7.0_rc1
prefix ?= /usr
bindir ?= $(prefix)/bin

View File

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