Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package x86info for openSUSE:Factory checked in at 2022-10-27 13:54:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/x86info (Old) and /work/SRC/openSUSE:Factory/.x86info.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "x86info" Thu Oct 27 13:54:55 2022 rev:27 rq:1031529 version:1.31+git.20200121 Changes: -------- --- /work/SRC/openSUSE:Factory/x86info/x86info.changes 2020-01-29 13:17:57.262156764 +0100 +++ /work/SRC/openSUSE:Factory/.x86info.new.2275/x86info.changes 2022-10-27 13:55:26.112954018 +0200 @@ -1,0 +2,6 @@ +Wed Oct 26 08:26:44 UTC 2022 - Steve Kowalik <steven.kowa...@suse.com> + +- Add patch use-python3.patch: + * Use python3 to create header files. + +------------------------------------------------------------------- New: ---- use-python3.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ x86info.spec ++++++ --- /var/tmp/diff_new_pack.vLklSE/_old 2022-10-27 13:55:26.620956609 +0200 +++ /var/tmp/diff_new_pack.vLklSE/_new 2022-10-27 13:55:26.624956629 +0200 @@ -1,7 +1,7 @@ # # spec file for package x86info # -# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,8 +24,9 @@ Group: System/Monitoring URL: http://www.codemonkey.org.uk/projects/x86info/ Source: %{name}-%{version}.tar.xz +Patch0: use-python3.patch BuildRequires: pkgconfig -BuildRequires: python2 +BuildRequires: python3 BuildRequires: pkgconfig(libpci) ExclusiveArch: %{ix86} x86_64 @@ -36,7 +37,7 @@ revisions, and more. %prep -%setup -q +%autosetup -p1 %build make CFLAGS="%{optflags} -Iinclude -DVERSION=%{version}" %{?_smp_mflags} V=1 ++++++ use-python3.patch ++++++ Index: x86info-1.31+git.20200121/lsmsr/Makefile =================================================================== --- x86info-1.31+git.20200121.orig/lsmsr/Makefile +++ x86info-1.31+git.20200121/lsmsr/Makefile @@ -40,7 +40,7 @@ LSMSR_TMP_HEADERS=AMD_k8.h \ generic_msr.h %.h: %.regs createheader.py - @python createheader.py $< `basename $< .regs` >$@ + @python3 createheader.py $< `basename $< .regs` >$@ LSMSR_SRC = \ lsmsr.c \