Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package
python-sphinxcontrib-svg2pdfconverter for openSUSE:Factory checked in at
2021-07-17 23:36:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-svg2pdfconverter (Old)
and
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-svg2pdfconverter.new.2632 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinxcontrib-svg2pdfconverter"
Sat Jul 17 23:36:47 2021 rev:4 rq:906821 version:1.1.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-sphinxcontrib-svg2pdfconverter/python-sphinxcontrib-svg2pdfconverter.changes
2020-07-29 17:20:59.748585995 +0200
+++
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-svg2pdfconverter.new.2632/python-sphinxcontrib-svg2pdfconverter.changes
2021-07-17 23:37:25.729604281 +0200
@@ -1,0 +2,6 @@
+Sat Jul 17 13:34:17 UTC 2021 - Dirk M??ller <[email protected]>
+
+- update to 1.1.1:
+ * Use errno symbols from standard library
+
+-------------------------------------------------------------------
Old:
----
sphinxcontrib-svg2pdfconverter-1.1.0.tar.gz
New:
----
sphinxcontrib-svg2pdfconverter-1.1.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-sphinxcontrib-svg2pdfconverter.spec ++++++
--- /var/tmp/diff_new_pack.U0cf41/_old 2021-07-17 23:37:26.097601444 +0200
+++ /var/tmp/diff_new_pack.U0cf41/_new 2021-07-17 23:37:26.101601413 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-sphinxcontrib-svg2pdfconverter
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-sphinxcontrib-svg2pdfconverter
-Version: 1.1.0
+Version: 1.1.1
Release: 0
Summary: Sphinx SVG to PDF converter extension
License: BSD-2-Clause
++++++ sphinxcontrib-svg2pdfconverter-1.1.0.tar.gz ->
sphinxcontrib-svg2pdfconverter-1.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/sphinxcontrib-svg2pdfconverter-1.1.0/PKG-INFO
new/sphinxcontrib-svg2pdfconverter-1.1.1/PKG-INFO
--- old/sphinxcontrib-svg2pdfconverter-1.1.0/PKG-INFO 2020-06-17
14:55:34.000000000 +0200
+++ new/sphinxcontrib-svg2pdfconverter-1.1.1/PKG-INFO 2021-01-07
08:03:06.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: sphinxcontrib-svg2pdfconverter
-Version: 1.1.0
+Version: 1.1.1
Summary: Sphinx SVG to PDF converter extension
Home-page:
https://github.com/missinglinkelectronics/sphinxcontrib-svg2pdfconverter
Author: Stefan Wiehler
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/sphinxcontrib-svg2pdfconverter-1.1.0/setup.py
new/sphinxcontrib-svg2pdfconverter-1.1.1/setup.py
--- old/sphinxcontrib-svg2pdfconverter-1.1.0/setup.py 2020-06-17
14:43:12.000000000 +0200
+++ new/sphinxcontrib-svg2pdfconverter-1.1.1/setup.py 2021-01-07
07:59:34.000000000 +0100
@@ -13,7 +13,7 @@
setup(
name='sphinxcontrib-svg2pdfconverter',
- version='1.1.0',
+ version='1.1.1',
url='https://github.com/missinglinkelectronics/sphinxcontrib-svg2pdfconverter',
download_url='https://pypi.org/project/sphinxcontrib-svg2pdfconverter',
license='BSD',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sphinxcontrib-svg2pdfconverter-1.1.0/sphinxcontrib/inkscapeconverter.py
new/sphinxcontrib-svg2pdfconverter-1.1.1/sphinxcontrib/inkscapeconverter.py
--- old/sphinxcontrib-svg2pdfconverter-1.1.0/sphinxcontrib/inkscapeconverter.py
2020-05-29 13:46:21.000000000 +0200
+++ new/sphinxcontrib-svg2pdfconverter-1.1.1/sphinxcontrib/inkscapeconverter.py
2020-11-30 12:48:56.000000000 +0100
@@ -17,7 +17,7 @@
from sphinx.locale import __
from sphinx.transforms.post_transforms.images import ImageConverter
from sphinx.util import logging
-from sphinx.util.osutil import ENOENT, EPIPE, EINVAL
+from errno import ENOENT, EPIPE, EINVAL
if False:
# For type annotation
@@ -39,8 +39,9 @@
try:
args = [self.config.inkscape_converter_bin, '--version']
logger.debug('Invoking %r ...', args)
- output = subprocess.check_output(args, stdin=subprocess.PIPE,
- universal_newlines=True)
+ output = subprocess.check_output(
+ args, stdin=subprocess.PIPE, stderr=subprocess.PIPE,
+ universal_newlines=True)
match = re.search('Inkscape (.+) \(.+, .+\)', output)
if not match:
logger.warning(__('Inkscape command %r returned invalid
result: %s\n '
@@ -69,7 +70,9 @@
else:
args += ['--export-pdf=' + _to, _from]
logger.debug('Invoking %r ...', args)
- p = subprocess.Popen(args, stdin=subprocess.PIPE,
stdout=subprocess.PIPE)
+ p = subprocess.Popen(args, stdin=subprocess.PIPE,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE)
except OSError as err:
if err.errno != ENOENT: # No such file or directory
raise
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sphinxcontrib-svg2pdfconverter-1.1.0/sphinxcontrib/rsvgconverter.py
new/sphinxcontrib-svg2pdfconverter-1.1.1/sphinxcontrib/rsvgconverter.py
--- old/sphinxcontrib-svg2pdfconverter-1.1.0/sphinxcontrib/rsvgconverter.py
2019-09-13 10:36:32.000000000 +0200
+++ new/sphinxcontrib-svg2pdfconverter-1.1.1/sphinxcontrib/rsvgconverter.py
2020-11-30 12:50:27.000000000 +0100
@@ -16,7 +16,7 @@
from sphinx.locale import __
from sphinx.transforms.post_transforms.images import ImageConverter
from sphinx.util import logging
-from sphinx.util.osutil import ENOENT, EPIPE, EINVAL
+from errno import ENOENT, EPIPE, EINVAL
if False:
# For type annotation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sphinxcontrib-svg2pdfconverter-1.1.0/sphinxcontrib_svg2pdfconverter.egg-info/PKG-INFO
new/sphinxcontrib-svg2pdfconverter-1.1.1/sphinxcontrib_svg2pdfconverter.egg-info/PKG-INFO
---
old/sphinxcontrib-svg2pdfconverter-1.1.0/sphinxcontrib_svg2pdfconverter.egg-info/PKG-INFO
2020-06-17 14:55:34.000000000 +0200
+++
new/sphinxcontrib-svg2pdfconverter-1.1.1/sphinxcontrib_svg2pdfconverter.egg-info/PKG-INFO
2021-01-07 08:03:06.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: sphinxcontrib-svg2pdfconverter
-Version: 1.1.0
+Version: 1.1.1
Summary: Sphinx SVG to PDF converter extension
Home-page:
https://github.com/missinglinkelectronics/sphinxcontrib-svg2pdfconverter
Author: Stefan Wiehler