[Git][reproducible-builds/strip-nondeterminism][debian] 9 commits: Update README with updated instructions on how to release the tarball

Chris Lamb gitlab at salsa.debian.org
Thu Jun 14 22:17:35 CEST 2018


Chris Lamb pushed to branch debian at Reproducible Builds / strip-nondeterminism


Commits:
9f1c7569 by Mattia Rizzolo at 2018-06-03T15:52:00+02:00
Update README with updated instructions on how to release the tarball

Signed-off-by: Mattia Rizzolo <mattia at debian.org>

- - - - -
438d95fa by Evgueni Souleimanov at 2018-06-06T19:13:54-04:00
Add missing use statements in uimage handler

Fixes this error:

    $ strip-nondeterminism -T 123123123 Linux-1001.uImage
    strip-nondeterminism: Linux-1001.uImage: Undefined subroutine
    &Archive::Zip::computeCRC32 called at
    /usr/share/perl5/File/StripNondeterminism/handlers/uimage.pm line 50.

Error shows up when trying to use strip-nondeterminism script, but does not
show up in "make test" during build.

Signed-off-by: Evgueni Souleimanov <esoule at 100500.ca>

- - - - -
753a3c5e by Evgueni Souleimanov at 2018-06-06T19:15:52-04:00
Add missing use statements in bflt handler

Signed-off-by: Evgueni Souleimanov <esoule at 100500.ca>

- - - - -
171d65b9 by Chris Lamb at 2018-06-14T20:00:25+00:00
Merge branch 'hotfix-handler-uimage-zip' into 'master'

Add missing use statements in uimage handler (fixes error on use)

See merge request reproducible-builds/strip-nondeterminism!1
- - - - -
0f98d4ba by Chris Lamb at 2018-06-14T22:09:49+02:00
Release 0.042

- - - - -
c76a8cb7 by Chris Lamb at 2018-06-14T22:10:15+02:00
Merge tag '0.042' into debian

Release 0.042

* tag '0.042':
  Release 0.042
  Add missing use statements in bflt handler
  Add missing use statements in uimage handler
  Update README with updated instructions on how to release the tarball

- - - - -
c2cbd9d2 by Chris Lamb at 2018-06-14T22:12:24+02:00
debian/changelog: Drop trailing whitespace.

- - - - -
9e084a01 by Chris Lamb at 2018-06-14T22:13:00+02:00
debian/rules: Respect nocheck in DEB_BUILD_OPTIONS.

- - - - -
110d3a5b by Chris Lamb at 2018-06-14T22:14:23+02:00
Update changelog for 0.042-1 release

- - - - -


6 changed files:

- README
- debian/changelog
- debian/rules
- lib/File/StripNondeterminism.pm
- lib/File/StripNondeterminism/handlers/bflt.pm
- lib/File/StripNondeterminism/handlers/uimage.pm


Changes:

=====================================
README
=====================================
--- a/README
+++ b/README
@@ -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


=====================================
debian/changelog
=====================================
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,17 @@
+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 at 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 at andrewayer.name>  Thu, 18 Sep 2014 21:19:02 -0700
-


=====================================
debian/rules
=====================================
--- a/debian/rules
+++ b/debian/rules
@@ -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


=====================================
lib/File/StripNondeterminism.pm
=====================================
--- a/lib/File/StripNondeterminism.pm
+++ b/lib/File/StripNondeterminism.pm
@@ -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';


=====================================
lib/File/StripNondeterminism/handlers/bflt.pm
=====================================
--- a/lib/File/StripNondeterminism/handlers/bflt.pm
+++ b/lib/File/StripNondeterminism/handlers/bflt.pm
@@ -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;


=====================================
lib/File/StripNondeterminism/handlers/uimage.pm
=====================================
--- a/lib/File/StripNondeterminism/handlers/uimage.pm
+++ b/lib/File/StripNondeterminism/handlers/uimage.pm
@@ -20,6 +20,9 @@ package File::StripNondeterminism::handlers::uimage;
 
 use strict;
 use warnings;
+
+use Archive::Zip ();
+use File::StripNondeterminism;
 use Fcntl q/SEEK_SET/;
 
 # /*



View it on GitLab: https://salsa.debian.org/reproducible-builds/strip-nondeterminism/compare/95f77686f633f20033e0b1540a8b0220174743fa...110d3a5b3ffc6cbde970deed2df98bb1120fa37b

-- 
View it on GitLab: https://salsa.debian.org/reproducible-builds/strip-nondeterminism/compare/95f77686f633f20033e0b1540a8b0220174743fa...110d3a5b3ffc6cbde970deed2df98bb1120fa37b
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.reproducible-builds.org/pipermail/rb-commits/attachments/20180614/8c5a0f59/attachment.html>


More information about the rb-commits mailing list