Hello community,

here is the log from the commit of package python-gitdb2 for openSUSE:Factory 
checked in at 2018-07-23 18:02:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-gitdb2 (Old)
 and      /work/SRC/openSUSE:Factory/.python-gitdb2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-gitdb2"

Mon Jul 23 18:02:40 2018 rev:2 rq:624706 version:2.0.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-gitdb2/python-gitdb2.changes      
2018-05-15 10:31:15.920896761 +0200
+++ /work/SRC/openSUSE:Factory/.python-gitdb2.new/python-gitdb2.changes 
2018-07-23 18:03:46.536724973 +0200
@@ -1,0 +2,9 @@
+Sat Jul 21 04:31:07 UTC 2018 - [email protected]
+
+- specfile:
+  * be more specific in %file section
+
+- update to version 2.0.4:
+  * Update version just to get a new release signed with valid key
+
+-------------------------------------------------------------------

Old:
----
  gitdb2-2.0.3.tar.gz

New:
----
  gitdb2-2.0.4.tar.gz

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

Other differences:
------------------
++++++ python-gitdb2.spec ++++++
--- /var/tmp/diff_new_pack.ZXDiGF/_old  2018-07-23 18:03:46.948724464 +0200
+++ /var/tmp/diff_new_pack.ZXDiGF/_new  2018-07-23 18:03:46.948724464 +0200
@@ -17,25 +17,20 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%bcond_with     test
 Name:           python-gitdb2
-Version:        2.0.3
+Version:        2.0.4
 Release:        0
 Summary:        Git Object Database
 License:        BSD-3-Clause
 Group:          Development/Languages/Python
-Url:            https://github.com/gitpython-developers/gitdb
+URL:            https://github.com/gitpython-developers/gitdb
 Source:         
https://files.pythonhosted.org/packages/source/g/gitdb2/gitdb2-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools >= 0.8.5}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-%if %{with test}
+Requires:       python-smmap2 >= 2.0.0
 BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module smmap2 >= 2.0.0}
-%endif
-Requires:       python-smmap2 >= 2.0.0
-
 %python_subpackages
 
 %description
@@ -45,21 +40,19 @@
 %setup -q -n gitdb2-%{version}
 
 %build
-export CFLAGS="%{optflags} -fno-strict-aliasing"
 %python_build
 
 %install
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
-%if %{with test}
 %check
-%python_exec setup.py test
-%endif
+# Package requires its own git tree in order to pass tests, no tags in git
+#%%python_exec setup.py test
 
 %files %{python_files}
 %license LICENSE
 %doc AUTHORS
-%{python_sitelib}/*
+%{python_sitelib}/gitdb*
 
 %changelog

++++++ gitdb2-2.0.3.tar.gz -> gitdb2-2.0.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gitdb2-2.0.3/PKG-INFO new/gitdb2-2.0.4/PKG-INFO
--- old/gitdb2-2.0.3/PKG-INFO   2017-09-28 11:05:57.000000000 +0200
+++ new/gitdb2-2.0.4/PKG-INFO   2018-07-15 14:23:16.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: gitdb2
-Version: 2.0.3
+Version: 2.0.4
 Summary: Git Object Database
 Home-page: https://github.com/gitpython-developers/gitdb
 Author: Sebastian Thiel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gitdb2-2.0.3/README.rst new/gitdb2-2.0.4/README.rst
--- old/gitdb2-2.0.3/README.rst 2017-05-28 17:36:48.000000000 +0200
+++ new/gitdb2-2.0.4/README.rst 2018-03-24 13:50:29.000000000 +0100
@@ -6,10 +6,10 @@
 Installation
 ============
 
-.. image:: https://pypip.in/version/gitdb/badge.svg
+.. image:: https://img.shields.io/pypi/v/gitdb.svg
     :target: https://pypi.python.org/pypi/gitdb/
     :alt: Latest Version
-.. image:: https://pypip.in/py_versions/gitdb/badge.svg
+.. image:: https://img.shields.io/pypi/pyversions/gitdb.svg
     :target: https://pypi.python.org/pypi/gitdb/
     :alt: Supported Python versions
 .. image:: https://readthedocs.org/projects/gitdb/badge/?version=latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gitdb2-2.0.3/gitdb/__init__.py 
new/gitdb2-2.0.4/gitdb/__init__.py
--- old/gitdb2-2.0.3/gitdb/__init__.py  2017-09-28 10:57:01.000000000 +0200
+++ new/gitdb2-2.0.4/gitdb/__init__.py  2018-07-15 14:17:44.000000000 +0200
@@ -29,7 +29,7 @@
 __author__ = "Sebastian Thiel"
 __contact__ = "[email protected]"
 __homepage__ = "https://github.com/gitpython-developers/gitdb";
-version_info = (2, 0, 3)
+version_info = (2, 0, 4)
 __version__ = '.'.join(str(i) for i in version_info)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gitdb2-2.0.3/gitdb2.egg-info/PKG-INFO 
new/gitdb2-2.0.4/gitdb2.egg-info/PKG-INFO
--- old/gitdb2-2.0.3/gitdb2.egg-info/PKG-INFO   2017-09-28 11:05:57.000000000 
+0200
+++ new/gitdb2-2.0.4/gitdb2.egg-info/PKG-INFO   2018-07-15 14:23:16.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: gitdb2
-Version: 2.0.3
+Version: 2.0.4
 Summary: Git Object Database
 Home-page: https://github.com/gitpython-developers/gitdb
 Author: Sebastian Thiel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gitdb2-2.0.3/gitdb2.egg-info/requires.txt 
new/gitdb2-2.0.4/gitdb2.egg-info/requires.txt
--- old/gitdb2-2.0.3/gitdb2.egg-info/requires.txt       2017-09-28 
11:05:57.000000000 +0200
+++ new/gitdb2-2.0.4/gitdb2.egg-info/requires.txt       2018-07-15 
14:23:16.000000000 +0200
@@ -1 +1 @@
-smmap2 >= 2.0.0
+smmap2>=2.0.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gitdb2-2.0.3/setup.cfg new/gitdb2-2.0.4/setup.cfg
--- old/gitdb2-2.0.3/setup.cfg  2017-09-28 11:05:57.000000000 +0200
+++ new/gitdb2-2.0.4/setup.cfg  2018-07-15 14:23:16.000000000 +0200
@@ -4,5 +4,4 @@
 [egg_info]
 tag_build = 
 tag_date = 0
-tag_svn_revision = 0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gitdb2-2.0.3/setup.py new/gitdb2-2.0.4/setup.py
--- old/gitdb2-2.0.3/setup.py   2017-09-28 11:01:52.000000000 +0200
+++ new/gitdb2-2.0.4/setup.py   2018-07-15 14:20:06.000000000 +0200
@@ -7,7 +7,7 @@
 __author__ = "Sebastian Thiel"
 __contact__ = "[email protected]"
 __homepage__ = "https://github.com/gitpython-developers/gitdb";
-version_info = (2, 0, 3)
+version_info = (2, 0, 4)
 __version__ = '.'.join(str(i) for i in version_info)
 
 setup(


Reply via email to