Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package hwinfo for openSUSE:Factory checked in at 2021-07-29 21:30:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/hwinfo (Old) and /work/SRC/openSUSE:Factory/.hwinfo.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hwinfo" Thu Jul 29 21:30:51 2021 rev:180 rq:907989 version:21.76 Changes: -------- --- /work/SRC/openSUSE:Factory/hwinfo/hwinfo.changes 2021-07-04 22:10:40.481260704 +0200 +++ /work/SRC/openSUSE:Factory/.hwinfo.new.1899/hwinfo.changes 2021-07-29 21:30:56.176846998 +0200 @@ -1,0 +2,7 @@ +Fri Jul 23 13:26:49 UTC 2021 - wfe...@opensuse.org + +- merge gh#openSUSE/hwinfo#104 +- Fix timezone issue in SOURCE_DATE_EPOCH code +- 21.76 + +-------------------------------------------------------------------- Old: ---- hwinfo-21.75.tar.xz New: ---- hwinfo-21.76.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ hwinfo.spec ++++++ --- /var/tmp/diff_new_pack.PKq5KM/_old 2021-07-29 21:30:57.028845949 +0200 +++ /var/tmp/diff_new_pack.PKq5KM/_new 2021-07-29 21:30:57.036845939 +0200 @@ -37,7 +37,7 @@ License: GPL-2.0-or-later Group: Hardware/Other Url: http://gitorious.org/opensuse/hwinfo -Version: 21.75 +Version: 21.76 Release: 0 Source: %{name}-%{version}.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ hwinfo-21.75.tar.xz -> hwinfo-21.76.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hwinfo-21.75/VERSION new/hwinfo-21.76/VERSION --- old/hwinfo-21.75/VERSION 2021-07-02 10:19:13.000000000 +0200 +++ new/hwinfo-21.76/VERSION 2021-07-23 15:26:49.000000000 +0200 @@ -1 +1 @@ -21.75 +21.76 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hwinfo-21.75/changelog new/hwinfo-21.76/changelog --- old/hwinfo-21.75/changelog 2021-07-02 10:19:13.000000000 +0200 +++ new/hwinfo-21.76/changelog 2021-07-23 15:26:49.000000000 +0200 @@ -1,3 +1,7 @@ +2021-07-23: 21.76 + - merge gh#openSUSE/hwinfo#104 + - Fix timezone issue in SOURCE_DATE_EPOCH code + 2021-07-02: 21.75 - merge gh#openSUSE/hwinfo#100 - recognize loongarch64 architecture diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hwinfo-21.75/src/isdn/cdb/mk_isdnhwdb.c new/hwinfo-21.76/src/isdn/cdb/mk_isdnhwdb.c --- old/hwinfo-21.75/src/isdn/cdb/mk_isdnhwdb.c 2021-07-02 10:19:13.000000000 +0200 +++ new/hwinfo-21.76/src/isdn/cdb/mk_isdnhwdb.c 2021-07-23 15:26:49.000000000 +0200 @@ -272,7 +272,7 @@ fprintf(stdout,"$%02d %d\n", IWHREC_TYPE_VERSION, CDB_DATAVERSION + 1); if ((source_date_epoch = getenv("SOURCE_DATE_EPOCH")) == NULL || (tim = (time_t)strtol(source_date_epoch, NULL, 10)) <= 0) time(&tim); - strcpy(line,ctime(&tim)); + strcpy(line,asctime(gmtime(&tim))); l = strlen(line); if (l) line[l-1] = 0;