1
0
forked from pool/build-compare

Accepting request 1192562 from openSUSE:Tools

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1192562
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/build-compare?expand=0&rev=127
This commit is contained in:
Dominique Leuenberger 2024-08-09 14:13:39 +00:00 committed by Git OBS Bridge
commit db09b9cf02
4 changed files with 14 additions and 5 deletions

View File

@ -1,12 +1,12 @@
<services>
<service name="tar_scm" mode="disabled">
<service name="tar_scm" mode="manual">
<param name="versionformat">%ci.%h</param>
<param name="url">https://github.com/openSUSE/build-compare.git</param>
<param name="scm">git</param>
</service>
<service name="extract_file" mode="disabled">
<service name="extract_file" mode="manual">
<param name="archive">*.tar</param>
<param name="files">*/build-compare.* */*.sh */COPYING</param>
</service>
<service name="set_version" mode="disabled"/>
<service name="set_version" mode="manual"/>
</services>

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Aug 1 01:01:01 UTC 2024 - olaf@aepfle.de
- Remove also date:timestamp from png files
-------------------------------------------------------------------
Sat Jun 17 17:17:17 UTC 2023 - olaf@aepfle.de

View File

@ -17,7 +17,7 @@
Name: build-compare
Version: 20230617T171717.50241a8
Version: 20240801T083050.024a3a7
Release: 0
Summary: Build Result Compare Script
License: GPL-2.0-or-later

View File

@ -5,6 +5,10 @@
#
# Written by Michael Matz and Stephan Coolo
# Enhanced by Andreas Jaeger
# This value is a guess.
# The real timeout is controlled by buildlog_maxidle, an internal configuration value. Default: 8 hours...
# A prj can define "BuildFlags: logidlelimit:4321" in prjconf to override the global value.
declare -i watchdog_host_timeout_seconds='3600'
declare -i watchdog_touch_percent_prior_timeout='25'
declare -i watchdog_next_touch_seconds=0
@ -125,7 +129,7 @@ filter_png() {
} elsif ($b eq "tEXt") {
$d = read($f, $c, $a);
$b = unpack("Z$a", $c);
if ($b eq "date:create" || $b eq "date:modify") {
if ($b eq "date:create" || $b eq "date:modify" || $b eq "date:timestamp") {
$d = seek($f, -$a, 1);
fn($f, $a);
}