[med-svn] [fastqtl] 01/04: Fix patch for reproducible builds
Andreas Tille
tille at debian.org
Fri Dec 16 10:21:44 UTC 2016
This is an automated email from the git hooks/post-receive script.
tille pushed a commit to branch master
in repository fastqtl.
commit 101061b6e798bf9e70f5ce7384ba35360cbcceb5
Author: Andreas Tille <tille at debian.org>
Date: Fri Dec 16 11:15:00 2016 +0100
Fix patch for reproducible builds
---
debian/changelog | 9 +++++++++
debian/patches/03_Reproducible_builds.patch | 12 +++++++-----
2 files changed, 16 insertions(+), 5 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 5bc23bf..82de818 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+fastqtl (2.184+dfsg-5) UNRELEASED; urgency=medium
+
+ * Team upload.
+ * Fix patch for reproducible builds (Thanks to Reiner Herrmann
+ <reiner at reiner-h.de>)
+ Closes: #848292
+
+ -- Andreas Tille <tille at debian.org> Fri, 16 Dec 2016 11:13:23 +0100
+
fastqtl (2.184+dfsg-4) unstable; urgency=low
* Add a patch to fix reproducible builds (stable order for inputs).
diff --git a/debian/patches/03_Reproducible_builds.patch b/debian/patches/03_Reproducible_builds.patch
index bfe3386..0b725e1 100644
--- a/debian/patches/03_Reproducible_builds.patch
+++ b/debian/patches/03_Reproducible_builds.patch
@@ -1,6 +1,8 @@
-Author: Dylan Aïssi <bob.dybian at gmail.com>
+Author: Dylan Aïssi <bob.dybian at gmail.com>,
+ Reiner Herrmann <reiner at reiner-h.de>
Description: Patch the makefile in order to enable reproducible builds (stable order for inputs).
-Last-Update: 2016-08-31
+Last-Update: 2016-12-16
+Bug-Debian: https://bugs.debian.org/848292
Forwarded: TODO
--- a/Makefile
@@ -12,9 +14,9 @@ Forwarded: TODO
-FILE_O=$(shell for file in `find src -name *.cpp`; do echo obj/$$(basename $$file .cpp).o; done)
-FILE_H=$(shell find src -name *.h)
-FILE_CPP=$(shell find src -name *.cpp)
-+FILE_O=$(shell for file in `find src -name *.cpp | LC_ALL=C sort -z`; do echo obj/$$(basename $$file .cpp).o; done)
-+FILE_H=$(shell find src -name *.h | LC_ALL=C sort -z)
-+FILE_CPP=$(shell find src -name *.cpp | LC_ALL=C sort -z)
++FILE_O=$(shell for file in `find src -name *.cpp | LC_ALL=C sort`; do echo obj/$$(basename $$file .cpp).o; done)
++FILE_H=$(shell find src -name *.h | LC_ALL=C sort)
++FILE_CPP=$(shell find src -name *.cpp | LC_ALL=C sort)
#default
all: linux
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/fastqtl.git
More information about the debian-med-commit
mailing list