get-moz-build-date 974 B

12345678910111213141516171819202122232425262728
  1. #!/usr/bin/perl -w
  2. # Generate a MOZ_BUILD_DATE based on Tor Browser version number
  3. use strict;
  4. die "wrong number of arguments" unless @ARGV == 2;
  5. my ($year, $version) = @ARGV;
  6. my $date;
  7. if ($version =~ m/^tbb-nightly\.([^\.]+)\.([^\.]+)\.([^\.]+)$/) {
  8. $date = sprintf("%d%02d%02d010101", $1, $2, $3);
  9. } elsif ($version eq 'testbuild') {
  10. # There is no need for an increasing build date in test builds. Just hardcode
  11. # it.
  12. $date = 20010101010101;
  13. } else {
  14. my @v = split(/[\.ab]/, $version);
  15. push @v, '0' if @v < 4;
  16. push @v, '0' if @v < 4;
  17. # When MOZ_BUILD_DATE was based on the firefox version, with
  18. # Tor Browser 8.0.6 and firefox 60.5.1 it was 20190204060201
  19. # We can remove 5 from the month, while keeping it increasing.
  20. my $month = $v[0] - 5;
  21. $date = 1010101 + $year * 10000000000 + $month * 100000000
  22. + $v[1] * 1000000 + $v[2] * 10000 + $v[3];
  23. $date += 1000000 unless $version =~ m/[ab]/;
  24. }
  25. print "export MOZ_BUILD_DATE=$date\n";