Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xboxdrv for openSUSE:Factory checked in at 2022-10-26 15:44:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xboxdrv (Old) and /work/SRC/openSUSE:Factory/.xboxdrv.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xboxdrv" Wed Oct 26 15:44:21 2022 rev:12 rq:1031339 version:0.8.8 Changes: -------- --- /work/SRC/openSUSE:Factory/xboxdrv/xboxdrv.changes 2022-07-09 17:05:46.300941298 +0200 +++ /work/SRC/openSUSE:Factory/.xboxdrv.new.2275/xboxdrv.changes 2022-10-26 15:44:22.487776751 +0200 @@ -1,0 +2,5 @@ +Wed Oct 26 12:32:08 UTC 2022 - Dominique Leuenberger <dims...@opensuse.org> + +- Add xboxdrv-scons-4.2.patch: Fix build with SCons 4.2. + +------------------------------------------------------------------- New: ---- xboxdrv-scons-4.2.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xboxdrv.spec ++++++ --- /var/tmp/diff_new_pack.8qryL4/_old 2022-10-26 15:44:22.995777588 +0200 +++ /var/tmp/diff_new_pack.8qryL4/_new 2022-10-26 15:44:22.999777593 +0200 @@ -39,6 +39,8 @@ Patch1: xboxdrv-scons3.patch #PATCH-FIX-OPENSUSE xboxdrv-add-new-device.patch malcolmle...@opensuse.org -- Add new wireless controller device (0x02a9, "Microsoft X-Box pad v? (?)). Patch2: xboxdrv-add-new-device.patch +# PATCH-FIX-UPSTREAM xboxdrv-scons-4.2.patch dims...@opensuse.org -- Fix build with SCons 4.2; patch taken from Arch +Patch3: xboxdrv-scons-4.2.patch BuildRequires: gcc-c++ BuildRequires: libboost_headers-devel BuildRequires: pkgconfig @@ -61,6 +63,7 @@ %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 cp -f %{SOURCE1} 50-xpad.conf cp -f %{SOURCE2} %{name}.conf ++++++ xboxdrv-scons-4.2.patch ++++++ --- a/SConstruct 2021-10-31 20:42:44.232084185 -0400 +++ b/SConstruct 2021-10-31 20:42:54.063024444 -0400 @@ -36,7 +36,7 @@ with open(target[0].get_path(), "w") as fout: fout.write("// autogenerated by scons Bin2H builder, do not edit by hand!\n\n") - if env.has_key("BIN2H_NAMESPACE"): + if "BIN2H_NAMESPACE" in env: fout.write("namespace %s {\n\n" % env["BIN2H_NAMESPACE"]) # write down data @@ -62,7 +62,7 @@ for src in source], ",\n")) fout.write("\n}\n\n") - if env.has_key("BIN2H_NAMESPACE"): + if "BIN2H_NAMESPACE" in env: fout.write("} // namespace %s\n\n" % env["BIN2H_NAMESPACE"]) fout.write("/* EOF */\n")