Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libcomps for openSUSE:Factory checked in at 2021-06-12 20:05:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libcomps (Old) and /work/SRC/openSUSE:Factory/.libcomps.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libcomps" Sat Jun 12 20:05:30 2021 rev:9 rq:898673 version:0.1.16 Changes: -------- --- /work/SRC/openSUSE:Factory/libcomps/libcomps.changes 2021-04-22 18:03:07.310428410 +0200 +++ /work/SRC/openSUSE:Factory/.libcomps.new.32437/libcomps.changes 2021-06-12 20:05:35.596671990 +0200 @@ -1,0 +2,5 @@ +Wed Jun 9 08:47:28 UTC 2021 - Martin Li??ka <mli...@suse.cz> + +- Add upstream patch fix-sphinx.patch which fixes build with Sphinx 4.x. + +------------------------------------------------------------------- New: ---- fix-sphinx.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libcomps.spec ++++++ --- /var/tmp/diff_new_pack.mLr5Nc/_old 2021-06-12 20:05:36.064672804 +0200 +++ /var/tmp/diff_new_pack.mLr5Nc/_new 2021-06-12 20:05:36.068672811 +0200 @@ -1,7 +1,7 @@ # # spec file for package libcomps # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2021 SUSE LLC # Copyright (c) 2020 Neal Gompa <ngomp...@gmail.com>. # # All modifications and additions to the file contributed by third parties @@ -31,6 +31,7 @@ Group: Development/Libraries/C and C++ URL: https://github.com/rpm-software-management/libcomps Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz +Patch0: fix-sphinx.patch BuildRequires: check-devel BuildRequires: cmake ++++++ fix-sphinx.patch ++++++ >From 5eebd94a7ce855979eb014595256eee17ee6b359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Mat=C4=9Bj?= <ama...@redhat.com> Date: Mon, 7 Jun 2021 14:57:35 +0200 Subject: [PATCH] Python2 syntax is deprecated and will be removed in Sphinx 4.0 For: https://github.com/rpm-software-management/libcomps/issues/83 --- libcomps/src/python/docs/doc-sources/conf.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcomps/src/python/docs/doc-sources/conf.py.in b/libcomps/src/python/docs/doc-sources/conf.py.in index 8af14ad..68901f9 100644 --- a/libcomps/src/python/docs/doc-sources/conf.py.in +++ b/libcomps/src/python/docs/doc-sources/conf.py.in @@ -20,7 +20,7 @@ import sys, os import ctypes clibcomps = ctypes.cdll.LoadLibrary("@LIBCOMPS_OUT@/libcomps.so.@libcomps_VERSION_MAJOR@") os.environ['LD_LIBRARY_PATH'] = "%s" % "@LIBCOMPS_OUT@" -print os.environ['LD_LIBRARY_PATH'] +print(os.environ['LD_LIBRARY_PATH']) sys.path.insert(0, os.path.abspath("@PYCOMPS_LIB_PATH@")) import libcomps