Skip to content
Commits on Source (9)
......@@ -12,9 +12,7 @@ Debhelper add-on.
After releasing, please upload a signed tarball:
$ VERSION=FIXME
$ git archive --format=tar --prefix=strip-nondeterminism-${VERSION}/ ${VERSION} | bzip2 -9 > strip-nondeterminism-${VERSION}.tar.bz2
$ gpg --detach-sig --armor --output=strip-nondeterminism-${VERSION}.tar.bz2.asc < strip-nondeterminism-${VERSION}.tar.bz2
$ scp strip-nondeterminism-${VERSION}* alioth.debian.org:/home/groups/reproducible/htdocs/releases/strip-nondeterminism
And commit them to our LFS repository at https://salsa.debian.org/reproducible-builds/reproducible-lfs
strip-nondeterminism (0.042-1) unstable; urgency=medium
[ Evgueni Souleimanov ]
* Add missing use statements in bflt and uimage handlers
[ Chris Lamb ]
* Respect "nocheck" in DEB_BUILD_OPTIONS.
* Drop trailing whitespace in debian/changelog.
[ Mattia Rizzolo ]
* Update README with updated instructions on how to release the tarball.
-- Chris Lamb <lamby@debian.org> Thu, 14 Jun 2018 22:14:21 +0200
strip-nondeterminism (0.041-2) unstable; urgency=medium
[ Chris Lamb ]
......@@ -545,4 +559,3 @@ strip-nondeterminism (0.002-1) unstable; urgency=low
* Initial release. (Closes: #760803)
-- Andrew Ayer <agwa@andrewayer.name> Thu, 18 Sep 2014 21:19:02 -0700
......@@ -10,4 +10,6 @@ override_dh_auto_clean:
dh_auto_clean
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
cover -test -ignore_re '^t/'
endif
......@@ -25,7 +25,7 @@ use POSIX qw(tzset);
our($VERSION, $canonical_time, $clamp_time);
$VERSION = '0.041'; # 0.041
$VERSION = '0.042'; # 0.042
sub init() {
$ENV{'TZ'} = 'UTC';
......
......@@ -20,6 +20,8 @@ package File::StripNondeterminism::handlers::bflt;
use strict;
use warnings;
use File::StripNondeterminism;
use Fcntl q/SEEK_SET/;
use constant bFLT => 0x62464C54;
......
......@@ -20,6 +20,9 @@ package File::StripNondeterminism::handlers::uimage;
use strict;
use warnings;
use Archive::Zip ();
use File::StripNondeterminism;
use Fcntl q/SEEK_SET/;
# /*
......