Hello community,

here is the log from the commit of package python-pkginfo for openSUSE:Factory 
checked in at 2018-05-29 10:34:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pkginfo (Old)
 and      /work/SRC/openSUSE:Factory/.python-pkginfo.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pkginfo"

Tue May 29 10:34:35 2018 rev:3 rq:610778 version:1.4.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pkginfo/python-pkginfo.changes    
2017-05-03 15:54:30.478944993 +0200
+++ /work/SRC/openSUSE:Factory/.python-pkginfo.new/python-pkginfo.changes       
2018-05-29 10:34:46.910947544 +0200
@@ -1,0 +2,17 @@
+Sun May 20 16:11:28 UTC 2018 - h...@urpla.net
+
+- fix failing tests with sed
+- enable tests
+
+-------------------------------------------------------------------
+Sat May 19 09:48:01 UTC 2018 - h...@urpla.net
+
+- Update to version 1.4.2
+  - Use relative imports in pkginfo modules.  Supports vendoring of the
+    package into setuptools.
+  - Add support for ``Provides-Extra`` and ``Description-Content-Type`` fields.
+    Per https://packaging.python.org/specifications/.  See:  PEP 566.
+  - Remove support for old setuptools leaving ``PKG-INFO`` in the root of
+    the project directory.
+
+-------------------------------------------------------------------

Old:
----
  pkginfo-1.4.1.tar.gz

New:
----
  pkginfo-1.4.2.tar.gz

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

Other differences:
------------------
++++++ python-pkginfo.spec ++++++
--- /var/tmp/diff_new_pack.08nIjV/_old  2018-05-29 10:34:47.374930410 +0200
+++ /var/tmp/diff_new_pack.08nIjV/_new  2018-05-29 10:34:47.378930262 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pkginfo
 #
-# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -17,21 +17,21 @@
 
 
 # Tests are currently broken.
-%bcond_with tests
+%bcond_without tests
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-pkginfo
-Version:        1.4.1
+Version:        1.4.2
 Release:        0
 Summary:        Query metadatdata from sdists / bdists / installed packages
 License:        MIT
 Group:          Development/Languages/Python
 Url:            http://pypi.python.org/pypi/pkginfo/
 Source:         
https://files.pythonhosted.org/packages/source/p/pkginfo/pkginfo-%{version}.tar.gz
-BuildRequires:  fdupes
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 %if %{with tests}
 BuildRequires:  %{python_module nose}
 %endif
@@ -51,6 +51,9 @@
 
 %prep
 %setup -q -n pkginfo-%{version}
+# fix tests until fixed upstream
+sed -i 's|1\.1|2.1|' pkginfo/tests/__init__.py
+sed -i "s|'1\.1'|None|" pkginfo/tests/test_installed.py
 
 %build
 %python_build

++++++ pkginfo-1.4.1.tar.gz -> pkginfo-1.4.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/CHANGES.txt 
new/pkginfo-1.4.2/CHANGES.txt
--- old/pkginfo-1.4.1/CHANGES.txt       2016-11-07 15:37:31.000000000 +0100
+++ new/pkginfo-1.4.2/CHANGES.txt       2018-03-14 18:28:24.000000000 +0100
@@ -1,10 +1,22 @@
 ``pkginfo`` Changelog
 =====================
 
+1.4.2 (2018-03-14)
+------------------
+
+- Use relative imports in pkginfo modules.  Supports vendoring of the
+  package into setuptools.
+
+- Add support for ``Provides-Extra`` and ``Description-Content-Type`` fields.
+  Per https://packaging.python.org/specifications/.  See:  PEP 566.
+
+- Remove support for old setuptools leaving ``PKG-INFO`` in the root of
+  the project directory.
+
 1.4.1 (2016-11-07)
 ------------------
 
-- Packaging only change (invalid sdist bulit for 1.4.0).
+- Packaging only change (invalid sdist built for 1.4.0).
 
 1.4.0 (2016-11-04)
 ------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/PKG-INFO new/pkginfo-1.4.2/PKG-INFO
--- old/pkginfo-1.4.1/PKG-INFO  2016-11-07 15:41:39.000000000 +0100
+++ new/pkginfo-1.4.2/PKG-INFO  2018-03-14 18:34:34.000000000 +0100
@@ -1,11 +1,12 @@
 Metadata-Version: 1.1
 Name: pkginfo
-Version: 1.4.1
+Version: 1.4.2
 Summary: Query metadatdata from sdists / bdists / installed packages.
 Home-page: https://code.launchpad.net/~tseaver/pkginfo/trunk
 Author: Tres Seaver, Agendaless Consulting
 Author-email: tsea...@agendaless.com
 License: MIT
+Description-Content-Type: UNKNOWN
 Description: ``pkginfo`` README
         ==================
         
@@ -24,10 +25,22 @@
         ``pkginfo`` Changelog
         =====================
         
+        1.4.2 (2018-03-14)
+        ------------------
+        
+        - Use relative imports in pkginfo modules.  Supports vendoring of the
+          package into setuptools.
+        
+        - Add support for ``Provides-Extra`` and ``Description-Content-Type`` 
fields.
+          Per https://packaging.python.org/specifications/.  See:  PEP 566.
+        
+        - Remove support for old setuptools leaving ``PKG-INFO`` in the root of
+          the project directory.
+        
         1.4.1 (2016-11-07)
         ------------------
         
-        - Packaging only change (invalid sdist bulit for 1.4.0).
+        - Packaging only change (invalid sdist built for 1.4.0).
         
         1.4.0 (2016-11-04)
         ------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/__init__.py 
new/pkginfo-1.4.2/pkginfo/__init__.py
--- old/pkginfo-1.4.1/pkginfo/__init__.py       2013-11-27 23:02:22.000000000 
+0100
+++ new/pkginfo-1.4.2/pkginfo/__init__.py       2018-03-08 21:45:50.000000000 
+0100
@@ -1,9 +1,9 @@
-from pkginfo.bdist import BDist
-from pkginfo.develop import Develop
-from pkginfo.distribution import Distribution
-from pkginfo.index import Index
-from pkginfo.installed import Installed
-from pkginfo.sdist import SDist
-from pkginfo.sdist import UnpackedSDist
-from pkginfo.utils import get_metadata
-from pkginfo.wheel import Wheel
+from .bdist import BDist
+from .develop import Develop
+from .distribution import Distribution
+from .index import Index
+from .installed import Installed
+from .sdist import SDist
+from .sdist import UnpackedSDist
+from .utils import get_metadata
+from .wheel import Wheel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/bdist.py 
new/pkginfo-1.4.2/pkginfo/bdist.py
--- old/pkginfo-1.4.1/pkginfo/bdist.py  2012-12-28 23:01:10.000000000 +0100
+++ new/pkginfo-1.4.2/pkginfo/bdist.py  2018-03-08 21:45:50.000000000 +0100
@@ -1,7 +1,7 @@
 import os
 import zipfile
 
-from pkginfo.distribution import Distribution
+from .distribution import Distribution
 
 class BDist(Distribution):
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/commandline.py 
new/pkginfo-1.4.2/pkginfo/commandline.py
--- old/pkginfo-1.4.1/pkginfo/commandline.py    2015-01-02 18:51:57.000000000 
+0100
+++ new/pkginfo-1.4.2/pkginfo/commandline.py    2018-03-08 21:45:50.000000000 
+0100
@@ -25,7 +25,7 @@
 import os
 import sys
 
-from pkginfo import get_metadata
+from .utils import get_metadata
 
 
 def _parse_options(args=None):
@@ -39,7 +39,7 @@
                       )
 
     parser.add_option("-d", "--download-url-prefix",
-                      dest="download_url_prefix", 
+                      dest="download_url_prefix",
                       help="Download URL prefix",
                       )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/develop.py 
new/pkginfo-1.4.2/pkginfo/develop.py
--- old/pkginfo-1.4.1/pkginfo/develop.py        2013-05-05 17:49:07.000000000 
+0200
+++ new/pkginfo-1.4.2/pkginfo/develop.py        2018-03-08 21:45:50.000000000 
+0100
@@ -2,7 +2,7 @@
 import sys
 import warnings
 
-from pkginfo.distribution import Distribution
+from .distribution import Distribution
 
 def _gather_py2(top, candidates): #pragma NO COVER Py3k
     def _filter(candidates, dirname, fnames):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/distribution.py 
new/pkginfo-1.4.2/pkginfo/distribution.py
--- old/pkginfo-1.4.1/pkginfo/distribution.py   2013-11-27 22:57:07.000000000 
+0100
+++ new/pkginfo-1.4.2/pkginfo/distribution.py   2018-03-08 21:46:08.000000000 
+0100
@@ -1,7 +1,7 @@
 from email.parser import Parser
 
-from pkginfo._compat import StringIO
-from pkginfo._compat import must_decode
+from ._compat import StringIO
+from ._compat import must_decode
 
 
 def parse(fp):
@@ -58,11 +58,17 @@
 
 HEADER_ATTRS_2_0 = HEADER_ATTRS_1_2  #XXX PEP 426?
 
+HEADER_ATTRS_2_1 = HEADER_ATTRS_1_2 + ( # PEP 566
+    ('Provides-Extra', 'provides_extras', True),
+    ('Description-Content-Type', 'description_content_type', False)
+)
+
 HEADER_ATTRS = {
     '1.0': HEADER_ATTRS_1_0,
     '1.1': HEADER_ATTRS_1_1,
     '1.2': HEADER_ATTRS_1_2,
     '2.0': HEADER_ATTRS_2_0,
+    '2.1': HEADER_ATTRS_2_1,
 }
 
 class Distribution(object):
@@ -94,6 +100,9 @@
     provides_dist = ()
     obsoletes_dist = ()
     project_urls = ()
+    # version 2.1
+    provides_extras = ()
+    description_content_type = None
 
     def extractMetadata(self):
         data = self.read()
@@ -126,7 +135,11 @@
                     value = get(msg, header_name)
                     if value != 'UNKNOWN':
                         setattr(self, attr_name, value)
-                        
+
+        body = msg.get_payload()
+        if body:
+            setattr(self, 'description', body)
+
     def __iter__(self):
         for header_name, attr_name, multiple in self._getHeaderAttrs():
             yield attr_name
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/index.py 
new/pkginfo-1.4.2/pkginfo/index.py
--- old/pkginfo-1.4.1/pkginfo/index.py  2010-04-08 23:59:50.000000000 +0200
+++ new/pkginfo-1.4.2/pkginfo/index.py  2018-03-08 21:45:50.000000000 +0100
@@ -1,4 +1,4 @@
-from pkginfo.distribution import Distribution
+from .distribution import Distribution
 
 class Index(dict):
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/installed.py 
new/pkginfo-1.4.2/pkginfo/installed.py
--- old/pkginfo-1.4.1/pkginfo/installed.py      2012-12-28 21:31:02.000000000 
+0100
+++ new/pkginfo-1.4.2/pkginfo/installed.py      2018-03-08 21:45:50.000000000 
+0100
@@ -3,8 +3,8 @@
 import sys
 import warnings
 
-from pkginfo.distribution import Distribution
-from pkginfo._compat import STRING_TYPES
+from .distribution import Distribution
+from ._compat import STRING_TYPES
 
 class Installed(Distribution):
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/sdist.py 
new/pkginfo-1.4.2/pkginfo/sdist.py
--- old/pkginfo-1.4.1/pkginfo/sdist.py  2013-05-05 16:59:48.000000000 +0200
+++ new/pkginfo-1.4.2/pkginfo/sdist.py  2018-03-08 21:45:50.000000000 +0100
@@ -2,7 +2,7 @@
 import tarfile
 import zipfile
 
-from pkginfo.distribution import Distribution
+from .distribution import Distribution
 
 class SDist(Distribution):
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/tests/sneaky/NOT-A-PACKAGE.txt 
new/pkginfo-1.4.2/pkginfo/tests/sneaky/NOT-A-PACKAGE.txt
--- old/pkginfo-1.4.1/pkginfo/tests/sneaky/NOT-A-PACKAGE.txt    2013-05-05 
17:20:31.000000000 +0200
+++ new/pkginfo-1.4.2/pkginfo/tests/sneaky/NOT-A-PACKAGE.txt    1970-01-01 
01:00:00.000000000 +0100
@@ -1,4 +0,0 @@
-THIS IS NOT A PYTHON PACKAGE!!!!
-
-It is meant to be added to sys.path for testing introspection of namespace
-packages installed via setuptools.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/tests/sneaky/setup.py 
new/pkginfo-1.4.2/pkginfo/tests/sneaky/setup.py
--- old/pkginfo-1.4.1/pkginfo/tests/sneaky/setup.py     2013-05-05 
17:34:56.000000000 +0200
+++ new/pkginfo-1.4.2/pkginfo/tests/sneaky/setup.py     1970-01-01 
01:00:00.000000000 +0100
@@ -1,15 +0,0 @@
-from setuptools import setup, find_packages
-
-setup(
-    name='namespaced.sneaky',
-    version='0.1',
-    description='Test namespaced packages with non-root egg-info.',
-    author='Tres Seaver',
-    author_email='tsea...@palladion.com',
-    long_description='Blah, blah.',
-    packages=find_packages('src'),
-    package_dir={'': 'src'},
-    namespace_packages=['namespaced',],
-    install_requires=['setuptools'],
-    zip_safe=False,
-)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pkginfo-1.4.1/pkginfo/tests/sneaky/src/namespaced/__init__.py 
new/pkginfo-1.4.2/pkginfo/tests/sneaky/src/namespaced/__init__.py
--- old/pkginfo-1.4.1/pkginfo/tests/sneaky/src/namespaced/__init__.py   
2013-05-05 17:20:14.000000000 +0200
+++ new/pkginfo-1.4.2/pkginfo/tests/sneaky/src/namespaced/__init__.py   
1970-01-01 01:00:00.000000000 +0100
@@ -1,7 +0,0 @@
-# this is a namespace package
-try:
-    import pkg_resources
-    pkg_resources.declare_namespace(__name__)
-except ImportError:
-    import pkgutil
-    __path__ = pkgutil.extend_path(__path__, __name__)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pkginfo-1.4.1/pkginfo/tests/sneaky/src/namespaced/sneaky/__init__.py 
new/pkginfo-1.4.2/pkginfo/tests/sneaky/src/namespaced/sneaky/__init__.py
--- old/pkginfo-1.4.1/pkginfo/tests/sneaky/src/namespaced/sneaky/__init__.py    
2013-05-05 17:20:14.000000000 +0200
+++ new/pkginfo-1.4.2/pkginfo/tests/sneaky/src/namespaced/sneaky/__init__.py    
1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-# Dummy package inside the 'namespaced' namespace.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/tests/test_develop.py 
new/pkginfo-1.4.2/pkginfo/tests/test_develop.py
--- old/pkginfo-1.4.1/pkginfo/tests/test_develop.py     2013-05-05 
17:46:33.000000000 +0200
+++ new/pkginfo-1.4.2/pkginfo/tests/test_develop.py     2018-03-08 
21:34:35.000000000 +0100
@@ -14,15 +14,6 @@
         develop = self._makeOne('.')
         _checkSample(self, develop)
 
-    def test_ctor_w_path_nested_egg_info(self):
-        import os
-        dir, name = os.path.split(__file__)
-        subdir = os.path.join(dir, 'sneaky')
-        develop = self._makeOne(subdir)
-        self.assertEqual(develop.metadata_version, '1.0')
-        self.assertEqual(develop.name, 'namespaced.sneaky')
-        self.assertEqual(develop.version, '0.1')
-
     def test_ctor_w_invalid_path(self):
         import warnings 
         old_filters = warnings.filters[:]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/tests/test_distribution.py 
new/pkginfo-1.4.2/pkginfo/tests/test_distribution.py
--- old/pkginfo-1.4.1/pkginfo/tests/test_distribution.py        2013-10-09 
23:35:46.000000000 +0200
+++ new/pkginfo-1.4.2/pkginfo/tests/test_distribution.py        2018-03-08 
21:35:58.000000000 +0100
@@ -74,6 +74,14 @@
         self.assertEqual(list(dist),
                          [x[1] for x in HEADER_ATTRS_1_2])
 
+    def test_parse_Metadata_Version_2_1(self):
+        from pkginfo.distribution import HEADER_ATTRS_2_1
+        dist = self._makeOne(None)
+        dist.parse('Metadata-Version: 2.1')
+        self.assertEqual(dist.metadata_version, '2.1')
+        self.assertEqual(list(dist),
+                         [x[1] for x in HEADER_ATTRS_2_1])
+
     def test_parse_Metadata_Version_unknown(self):
         dist = self._makeOne(None)
         dist.parse('Metadata-Version: 1.3')
@@ -137,6 +145,16 @@
         self.assertEqual(dist.description,
                          'This package enables integration with\n'
                          'foo servers.')
+
+    def test_parse_Description_in_payload(self):
+        dist = self._makeOne()
+        dist.parse('Foo: Bar\n'
+                   '\n'
+                   'This package enables integration with\n'
+                   'foo servers.')
+        self.assertEqual(dist.description,
+                         'This package enables integration with\n'
+                         'foo servers.')
 
     def test_parse_Keywords(self):
         dist = self._makeOne()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/utils.py 
new/pkginfo-1.4.2/pkginfo/utils.py
--- old/pkginfo-1.4.1/pkginfo/utils.py  2013-11-27 23:04:36.000000000 +0100
+++ new/pkginfo-1.4.2/pkginfo/utils.py  2018-03-08 21:45:50.000000000 +0100
@@ -1,21 +1,21 @@
 import os
 from types import ModuleType
 
-from pkginfo.bdist import BDist
-from pkginfo.develop import Develop
-from pkginfo.installed import Installed
-from pkginfo.sdist import SDist
-from pkginfo.wheel import Wheel
+from .bdist import BDist
+from .develop import Develop
+from .installed import Installed
+from .sdist import SDist
+from .wheel import Wheel
 
 def get_metadata(path_or_module, metadata_version=None):
     """ Try to create a Distribution 'path_or_module'.
-    
+
     o 'path_or_module' may be a module object.
 
     o If a string, 'path_or_module' may point to an sdist file, a bdist
       file, an installed package, or a working checkout (if it contains
       PKG-INFO).
-    
+
     o Return None if 'path_or_module' can't be parsed.
     """
     if isinstance(path_or_module, ModuleType):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo/wheel.py 
new/pkginfo-1.4.2/pkginfo/wheel.py
--- old/pkginfo-1.4.1/pkginfo/wheel.py  2013-11-27 23:07:12.000000000 +0100
+++ new/pkginfo-1.4.2/pkginfo/wheel.py  2018-03-08 21:35:58.000000000 +0100
@@ -1,11 +1,8 @@
-from io import StringIO
 import os
 import zipfile
 
 
 from .distribution import Distribution
-from .distribution import must_decode
-from .distribution import parse
 
 
 class Wheel(Distribution):
@@ -41,9 +38,3 @@
             archive.close()
 
         raise ValueError('No METADATA in archive: %s' % fqn)
-
-    def parse(self, data):
-        super(Wheel, self).parse(data)
-        fp = StringIO(must_decode(data))
-        msg = parse(fp)
-        self.description = msg.get_payload()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo.egg-info/PKG-INFO 
new/pkginfo-1.4.2/pkginfo.egg-info/PKG-INFO
--- old/pkginfo-1.4.1/pkginfo.egg-info/PKG-INFO 2016-11-07 15:41:38.000000000 
+0100
+++ new/pkginfo-1.4.2/pkginfo.egg-info/PKG-INFO 2018-03-14 18:34:34.000000000 
+0100
@@ -1,11 +1,12 @@
 Metadata-Version: 1.1
 Name: pkginfo
-Version: 1.4.1
+Version: 1.4.2
 Summary: Query metadatdata from sdists / bdists / installed packages.
 Home-page: https://code.launchpad.net/~tseaver/pkginfo/trunk
 Author: Tres Seaver, Agendaless Consulting
 Author-email: tsea...@agendaless.com
 License: MIT
+Description-Content-Type: UNKNOWN
 Description: ``pkginfo`` README
         ==================
         
@@ -24,10 +25,22 @@
         ``pkginfo`` Changelog
         =====================
         
+        1.4.2 (2018-03-14)
+        ------------------
+        
+        - Use relative imports in pkginfo modules.  Supports vendoring of the
+          package into setuptools.
+        
+        - Add support for ``Provides-Extra`` and ``Description-Content-Type`` 
fields.
+          Per https://packaging.python.org/specifications/.  See:  PEP 566.
+        
+        - Remove support for old setuptools leaving ``PKG-INFO`` in the root of
+          the project directory.
+        
         1.4.1 (2016-11-07)
         ------------------
         
-        - Packaging only change (invalid sdist bulit for 1.4.0).
+        - Packaging only change (invalid sdist built for 1.4.0).
         
         1.4.0 (2016-11-04)
         ------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/pkginfo.egg-info/SOURCES.txt 
new/pkginfo-1.4.2/pkginfo.egg-info/SOURCES.txt
--- old/pkginfo-1.4.1/pkginfo.egg-info/SOURCES.txt      2016-11-07 
15:41:39.000000000 +0100
+++ new/pkginfo-1.4.2/pkginfo.egg-info/SOURCES.txt      2018-03-14 
18:34:34.000000000 +0100
@@ -59,10 +59,6 @@
 pkginfo/tests/manky/namespaced.manky-0.1.egg-info/PKG-INFO
 pkginfo/tests/manky/namespaced/manky/__init__.py
 pkginfo/tests/silly/PKG-INFO
-pkginfo/tests/sneaky/NOT-A-PACKAGE.txt
-pkginfo/tests/sneaky/setup.py
-pkginfo/tests/sneaky/src/namespaced/__init__.py
-pkginfo/tests/sneaky/src/namespaced/sneaky/__init__.py
 pkginfo/tests/wonky/NOT-A-PACKAGE.txt
 pkginfo/tests/wonky/EGG-INFO/PKG-INFO
 pkginfo/tests/wonky/namespaced/__init__.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/setup.cfg new/pkginfo-1.4.2/setup.cfg
--- old/pkginfo-1.4.1/setup.cfg 2016-11-07 15:41:39.000000000 +0100
+++ new/pkginfo-1.4.2/setup.cfg 2018-03-14 18:34:34.000000000 +0100
@@ -15,5 +15,4 @@
 [egg_info]
 tag_build = 
 tag_date = 0
-tag_svn_revision = 0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pkginfo-1.4.1/setup.py new/pkginfo-1.4.2/setup.py
--- old/pkginfo-1.4.1/setup.py  2016-11-07 15:37:38.000000000 +0100
+++ new/pkginfo-1.4.2/setup.py  2018-03-14 18:20:54.000000000 +0100
@@ -20,7 +20,7 @@
 
 setup(
     name='pkginfo',
-    version='1.4.1',
+    version='1.4.2',
     description='Query metadatdata from sdists / bdists / installed packages.',
     platforms=['Unix', 'Windows'],
     long_description='\n\n'.join([README, CHANGES]),


Reply via email to