Page MenuHomeFreeBSD

Set the timestamp of files in the stage dir to the timestamp of the newest distfile. This is to support reproducable builds. Note, doesn't work on 8.x, need to find a solution to that.
Needs ReviewPublic

Authored by swills on Mar 8 2015, 9:56 PM.
Tags
None
Referenced Files
Unknown Object (File)
Jan 2 2024, 4:30 PM
Unknown Object (File)
Dec 20 2023, 1:28 AM
Unknown Object (File)
Nov 13 2023, 11:02 AM
Unknown Object (File)
Oct 24 2023, 9:20 PM
Unknown Object (File)
Oct 13 2023, 5:00 PM
Unknown Object (File)
Jul 10 2023, 3:21 AM
Unknown Object (File)
Jul 4 2023, 6:54 AM
Unknown Object (File)
Jul 4 2023, 6:52 AM

Details

Reviewers
None
Group Reviewers
portmgr
Test Plan

Already did several poudriere bulk -a on 10.1 with it, no issues, but need to
fix 8.x issue. Perhaps someone with more make(1) knowledge has suggestions.

Diff Detail

Repository
rP FreeBSD ports repository
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

swills retitled this revision from to Set the timestamp of files in the stage dir to the timestamp of the newest distfile. This is to support reproducable builds. Note, doesn't work on 8.x, need to find a solution to that..
swills updated this object.
swills edited the test plan for this revision. (Show Details)
swills added a reviewer: portmgr.
mat added inline comments.
Mk/bsd.port.mk
5037

Is there a chance that a distfile can have it's timestamp in the future ?

In D2032#3, @mat wrote:

Is there a chance that a distfile can have it's timestamp in the future ?

I suppose, if an upstream set the file timestamp in the future, fetch would reproduce it, why?

In D2032#5, @swills wrote:
In D2032#3, @mat wrote:

Is there a chance that a distfile can have it's timestamp in the future ?

I suppose, if an upstream set the file timestamp in the future, fetch would reproduce it, why?

Well, some build systems will base themselves on timestamps to know when to build, or rebuild, Perl, for instance, when using ExtUtils::MakeMaker (at least) will check if the Makefile generated from running perl Makefile.PL is more recent than Makefile.PL, and Perl's Config.pm which is at /usr/local/lib/perl5/${PERL_VER}/mach/Config.pm if this file has a timestamp in the future, you can't ever build anything with ExtUtils::MakeMaker because it'll keep rebuilding the Makefile until it's more recent than Config.pm :-)

bapt added inline comments.
Mk/bsd.port.mk
5037

Taking the timestamp from distfile will work only for ports with distfiles

Mk/bsd.port.mk
5038โ€“5039

what's with the empty else?

Mk/bsd.port.mk
5037

mat: yes, if fetch replicates the timestamp, it will be in the future. bapt: yes, correct. Using the distfile timestamp seemed like the best option, but maybe there is something better?

5038โ€“5039

Just a mistake on my part.