[Reproducible-builds] Bug#787793: libisoburn: new upstream version 1.4.0 available

2015-06-05 Thread Daniel Kahn Gillmor
Source: libisoburn Version: 1.3.2-1.1 Severity: wishlist User: reproducible-builds@lists.alioth.debian.org Usertags: timestamps toolchain libisoburn 1.4.0 is available upstream as of 2015-05-17. This update in particular includes the following changeset that allows for setting of ctime in the

Re: [Reproducible-builds] Bug#787444: help2man: support externally-supplied --date for reproducibility

2015-06-05 Thread Ximin Luo
On 05/06/15 04:19, Daniel Kahn Gillmor wrote: On Thu 2015-06-04 21:51:37 -0400, Brendan O'Dea wrote: Local times, and daylight savings are just too much of a PITA. Just use UTC and if builds on the first of the month are possibly different to the changelog, so be it. I agree with Brendan

Re: [Reproducible-builds] [PATCH] coreboot: fix mistype path of builder script abuild

2015-06-05 Thread Holger Levsen
Hi Alexander, On Freitag, 5. Juni 2015, Alexander Couzens wrote: -bash utils/abuild/abuild +bash util/abuild/abuild thanks! much appreciated! (even though I caught that one myself already.. :) (yet another build has been started too, now with debug around the lines were it (#4) strangely

Re: [Reproducible-builds] generating reproducible ISOs with xorriso

2015-06-05 Thread Thomas Schmitt
Hi, i wrote: md5sum [...] seems surplus. Daniel Kahn Gillmor wrote: Right, but it would seem to fail for hardlinked files or deduped files, because it would weight one of the files in different places than the other. Oh. I misunderstood the md5sum part again. It's for the content indeed -

[Reproducible-builds] [PATCH] reproducible_coreboot: requires an explicit checkout of 3rdparty blobs

2015-06-05 Thread Alexander Couzens
3rdparty/blobs is a binary blob repository for some firmware. T many boards require certain firmwares. The build will fail because of boards which requires those. --- bin/reproducible_coreboot.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/reproducible_coreboot.sh

Re: [Reproducible-builds] Bug#787444: Bug#787444: help2man: support externally-supplied --date for reproducibility

2015-06-05 Thread Daniel Kahn Gillmor
On Fri 2015-06-05 10:55:34 -0400, Brendan O'Dea wrote: Any of UTC_SOURCE_DATE, SOURCE_DATE_UTC My vote is for SOURCE_DATE_UTC, and i agree with Brendan that we should take the opportunity to define this as strictly and narrowly as possible (i.e. end in a 'Z', none of the other offsets), so that

[Reproducible-builds] [PATCH] coreboot: fix mistype path of builder script abuild

2015-06-05 Thread Alexander Couzens
--- bin/reproducible_coreboot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index 44bee1b..1b3f0aa 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -161,7 +161,7 @@ echo

Re: [Reproducible-builds] generating reproducible ISOs with xorriso

2015-06-05 Thread Thomas Schmitt
Hi, About the --sort-weight-list approach which is possible with already released xorriso versions: (find . -type f -print0 | xargs -0 md5sum | sort | cut -f2- -d/ ; find . -mindepth 1 \! -type f | sort | cut -f2- -d/ ) | awk '{ N=N+1; print N $0 }' I misunderstood the role of md5sum here.