Hello community,

here is the log from the commit of package rst2html5 for openSUSE:Factory 
checked in at 2017-02-09 11:18:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rst2html5 (Old)
 and      /work/SRC/openSUSE:Factory/.rst2html5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rst2html5"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rst2html5/rst2html5.changes      2017-01-04 
19:36:56.616112759 +0100
+++ /work/SRC/openSUSE:Factory/.rst2html5.new/rst2html5.changes 2017-02-09 
11:18:16.132554460 +0100
@@ -1,0 +2,7 @@
+Tue Feb  7 16:46:37 UTC 2017 - c.b.bak...@carmenbianca.eu
+
+- Added a patch that uses minimal dependency versions instead of
+  exact versions.
+  * rst2html5-minimal_dependencies.patch (boo#1010414)
+
+-------------------------------------------------------------------

New:
----
  rst2html5-minimal_dependencies.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rst2html5.spec ++++++
--- /var/tmp/diff_new_pack.WqoHon/_old  2017-02-09 11:18:16.548495604 +0100
+++ /var/tmp/diff_new_pack.WqoHon/_new  2017-02-09 11:18:16.552495038 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rst2html5
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
 Group:          Development/Languages/Python
 Url:            https://marianoguerra.github.io/rst2html5/
 Source0:        
https://pypi.python.org/packages/8b/57/3b40054908dbad97f515545695e1c92439cd71d294fa03957857c9d89db6/rst2html5-1.9.tar.gz
+Patch1:         rst2html5-minimal_dependencies.patch
 BuildRequires:  fdupes
 BuildRequires:  python3-Genshi >= 0.7
 BuildRequires:  python3-Pygments >= 2.0.2
@@ -45,6 +46,7 @@
 
 %prep
 %setup -q
+%patch1 -p1
 
 %build
 python3 setup.py build

++++++ rst2html5-minimal_dependencies.patch ++++++
From: Carmen Bianca Bakker <c.b.bak...@carmenbianca.eu>
Date: 2017-02-07
Subject: Use minimal dependency versions instead of exact versions
References: boo#1010414
Upstream: to be done

openSUSE Tumbleweed has a more recent version of Pygments than 2.0.2.  This
patch addresses that.

---
 setup.py |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

Index: rst2html5-1.9/setup.py
===================================================================
--- rst2html5-1.9.orig/setup.py 2016-12-21 18:39:01.000000000 +0100
+++ rst2html5-1.9/setup.py      2017-02-07 17:53:16.117542957 +0100
@@ -25,7 +25,11 @@ setup(
     long_description="%s\n%s" % (read("README.rst"),
                                  re.sub(":obj:`~?(.*?)`", r"``\1``", 
read("CHANGELOG.rst"))),
     platforms='any',
-    install_requires=read('requirements.txt').split(),
+    install_requires=[
+        'docutils>=0.12',
+        'Genshi>=0.7',
+        'Pygments>=2.0.2',
+    ],
     classifiers=[
         'Development Status :: 5 - Production/Stable',
         'Environment :: Console',

Reply via email to