forked from pool/mvapich2
Accepting request 1040752 from home:StefanBruens:branches:science:HPC
- Reduce constraints to match the actual requirement. Exaggerating the requirements hurts both this package (time until build can start) as well as other OBS users (blocking large workers without need). - Use a reproducible timestamp instead of removing it altogether. OBS-URL: https://build.opensuse.org/request/show/1040752 OBS-URL: https://build.opensuse.org/package/show/science:HPC/mvapich2?expand=0&rev=93
This commit is contained in:
parent
25e067ff15
commit
10504b434a
10
_constraints
10
_constraints
@ -1,11 +1,11 @@
|
||||
<constraints>
|
||||
<hardware>
|
||||
<processors>8</processors>
|
||||
<processors>4</processors>
|
||||
<disk>
|
||||
<size unit="G">10</size>
|
||||
<size unit="G">4</size>
|
||||
</disk>
|
||||
<physicalmemory>
|
||||
<size unit="G">16</size>
|
||||
</physicalmemory>
|
||||
<memory>
|
||||
<size unit="G">6</size>
|
||||
</memory>
|
||||
</hardware>
|
||||
</constraints>
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 5 21:11:29 UTC 2022 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
|
||||
|
||||
- Reduce constraints to match the actual requirement. Exaggerating
|
||||
the requirements hurts both this package (time until build can
|
||||
start) as well as other OBS users (blocking large workers
|
||||
without need).
|
||||
- Use a reproducible timestamp instead of removing it altogether.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 28 08:30:49 UTC 2022 - Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||
|
||||
|
@ -13,6 +13,8 @@ Date: Mon Mar 25 11:12:56 2019 +0100
|
||||
and other output files varied between builds.
|
||||
|
||||
Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||
|
||||
Also remove any unreproducible timestamps from generated files.
|
||||
|
||||
diff --git maint/extractcvars.in maint/extractcvars.in
|
||||
index b627a6f8d937..879de7bf6d5a 100755
|
||||
@ -23,7 +25,7 @@ index b627a6f8d937..879de7bf6d5a 100755
|
||||
print "Cvars include :\n".Dumper(@cvars)."\n" if $debug;
|
||||
|
||||
-my $run_timestamp = localtime();
|
||||
+my $run_timestamp = "openSUSE no date";
|
||||
+my $run_timestamp = localtime($ENV{"SOURCE_DATE_EPOCH"} || time);
|
||||
my $uc_ns = uc($ns);
|
||||
|
||||
# Setup output files
|
||||
|
Loading…
x
Reference in New Issue
Block a user