Hello community, here is the log from the commit of package python-packaging for openSUSE:Factory checked in at 2015-08-21 07:40:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-packaging (Old) and /work/SRC/openSUSE:Factory/.python-packaging.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-packaging" Changes: -------- --- /work/SRC/openSUSE:Factory/python-packaging/python-packaging.changes 2015-07-05 18:02:43.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.python-packaging.new/python-packaging.changes 2015-08-21 07:40:38.000000000 +0200 @@ -1,0 +2,6 @@ +Tue Aug 11 07:05:29 UTC 2015 - [email protected] + +- update to 15.3: + * Normalize post-release spellings for rev/r prefixes. :issue:`35` + +------------------------------------------------------------------- Old: ---- packaging-15.2.tar.gz New: ---- packaging-15.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-packaging.spec ++++++ --- /var/tmp/diff_new_pack.1ikA9p/_old 2015-08-21 07:40:38.000000000 +0200 +++ /var/tmp/diff_new_pack.1ikA9p/_new 2015-08-21 07:40:38.000000000 +0200 @@ -17,7 +17,7 @@ Name: python-packaging -Version: 15.2 +Version: 15.3 Release: 0 Summary: Core utilities for Python packages License: Apache-2.0 ++++++ packaging-15.2.tar.gz -> packaging-15.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/packaging-15.2/CHANGELOG.rst new/packaging-15.3/CHANGELOG.rst --- old/packaging-15.2/CHANGELOG.rst 2015-05-13 23:43:29.000000000 +0200 +++ new/packaging-15.3/CHANGELOG.rst 2015-08-02 02:07:16.000000000 +0200 @@ -1,6 +1,12 @@ Changelog --------- +15.3 - 2015-08-01 +~~~~~~~~~~~~~~~~~ + +* Normalize post-release spellings for rev/r prefixes. :issue:`35` + + 15.2 - 2015-05-13 ~~~~~~~~~~~~~~~~~ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/packaging-15.2/PKG-INFO new/packaging-15.3/PKG-INFO --- old/packaging-15.2/PKG-INFO 2015-05-13 23:43:34.000000000 +0200 +++ new/packaging-15.3/PKG-INFO 2015-08-02 02:07:24.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: packaging -Version: 15.2 +Version: 15.3 Summary: Core utilities for Python packages Home-page: https://github.com/pypa/packaging Author: Donald Stufft @@ -32,6 +32,12 @@ Changelog --------- + 15.3 - 2015-08-01 + ~~~~~~~~~~~~~~~~~ + + * Normalize post-release spellings for rev/r prefixes. :issue:`35` + + 15.2 - 2015-05-13 ~~~~~~~~~~~~~~~~~ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/packaging-15.2/docs/conf.py new/packaging-15.3/docs/conf.py --- old/packaging-15.2/docs/conf.py 2015-05-13 23:43:29.000000000 +0200 +++ new/packaging-15.3/docs/conf.py 2015-08-02 02:07:16.000000000 +0200 @@ -35,6 +35,7 @@ extensions = [ "sphinx.ext.autodoc", "sphinx.ext.doctest", + "sphinx.ext.extlinks", "sphinx.ext.intersphinx", "sphinx.ext.viewcode", ] @@ -71,6 +72,10 @@ # The name of the Pygments (syntax highlighting) style to use. pygments_style = "sphinx" +extlinks = { + 'issue': ('https://github.com/pypa/packaging/issues/%s', '#'), + 'pull': ('https://github.com/pypa/packaging/pull/%s', 'PR #'), +} # -- Options for HTML output -------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/packaging-15.2/packaging/__about__.py new/packaging-15.3/packaging/__about__.py --- old/packaging-15.2/packaging/__about__.py 2015-05-13 23:43:29.000000000 +0200 +++ new/packaging-15.3/packaging/__about__.py 2015-08-02 02:07:16.000000000 +0200 @@ -22,7 +22,7 @@ __summary__ = "Core utilities for Python packages" __uri__ = "https://github.com/pypa/packaging" -__version__ = "15.2" +__version__ = "15.3" __author__ = "Donald Stufft" __email__ = "[email protected]" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/packaging-15.2/packaging/version.py new/packaging-15.3/packaging/version.py --- old/packaging-15.2/packaging/version.py 2015-05-13 23:43:29.000000000 +0200 +++ new/packaging-15.3/packaging/version.py 2015-08-02 02:07:16.000000000 +0200 @@ -324,6 +324,8 @@ letter = "b" elif letter in ["c", "pre", "preview"]: letter = "rc" + elif letter in ["rev", "r"]: + letter = "post" return letter, int(number) if not letter and number: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/packaging-15.2/packaging.egg-info/PKG-INFO new/packaging-15.3/packaging.egg-info/PKG-INFO --- old/packaging-15.2/packaging.egg-info/PKG-INFO 2015-05-13 23:43:34.000000000 +0200 +++ new/packaging-15.3/packaging.egg-info/PKG-INFO 2015-08-02 02:07:24.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: packaging -Version: 15.2 +Version: 15.3 Summary: Core utilities for Python packages Home-page: https://github.com/pypa/packaging Author: Donald Stufft @@ -32,6 +32,12 @@ Changelog --------- + 15.3 - 2015-08-01 + ~~~~~~~~~~~~~~~~~ + + * Normalize post-release spellings for rev/r prefixes. :issue:`35` + + 15.2 - 2015-05-13 ~~~~~~~~~~~~~~~~~ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/packaging-15.2/packaging.egg-info/pbr.json new/packaging-15.3/packaging.egg-info/pbr.json --- old/packaging-15.2/packaging.egg-info/pbr.json 2015-05-13 23:43:34.000000000 +0200 +++ new/packaging-15.3/packaging.egg-info/pbr.json 2015-08-02 02:07:24.000000000 +0200 @@ -1 +1 @@ -{"git_version": "7c7bec5", "is_release": true} \ No newline at end of file +{"git_version": "099fe4e", "is_release": true} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/packaging-15.2/setup.cfg new/packaging-15.3/setup.cfg --- old/packaging-15.2/setup.cfg 2015-05-13 23:43:34.000000000 +0200 +++ new/packaging-15.3/setup.cfg 2015-08-02 02:07:24.000000000 +0200 @@ -2,7 +2,7 @@ universal = 1 [egg_info] -tag_build = tag_date = 0 +tag_build = tag_svn_revision = 0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/packaging-15.2/tests/test_version.py new/packaging-15.3/tests/test_version.py --- old/packaging-15.2/tests/test_version.py 2015-05-13 23:43:29.000000000 +0200 +++ new/packaging-15.3/tests/test_version.py 2015-08-02 02:07:16.000000000 +0200 @@ -41,7 +41,7 @@ "1.0b2-346", "1.0c1.dev456", "1.0c1", "1.0rc2", "1.0c3", "1.0", "1.0.post456.dev34", "1.0.post456", "1.1.dev1", "1.2+123abc", "1.2+123abc456", "1.2+abc", "1.2+abc123", "1.2+abc123def", "1.2+1234.abc", - "1.2+123456", + "1.2+123456", "1.2.r32+123456", "1.2.rev33+123456", # Explicit epoch of 1 "1!1.0.dev456", "1!1.0a1", "1!1.0a2.dev456", "1!1.0a12.dev456", "1!1.0a12", @@ -49,7 +49,8 @@ "1!1.0b2-346", "1!1.0c1.dev456", "1!1.0c1", "1!1.0rc2", "1!1.0c3", "1!1.0", "1!1.0.post456.dev34", "1!1.0.post456", "1!1.1.dev1", "1!1.2+123abc", "1!1.2+123abc456", "1!1.2+abc", "1!1.2+abc123", "1!1.2+abc123def", - "1!1.2+1234.abc", "1!1.2+123456", + "1!1.2+1234.abc", "1!1.2+123456", "1!1.2.r32+123456", "1!1.2.rev33+123456", + ] @@ -172,10 +173,16 @@ ("1.0.POST", "1.0.post0"), ("1.0POST1", "1.0.post1"), ("1.0POST", "1.0.post0"), + ("1.0r", "1.0.post0"), + ("1.0rev", "1.0.post0"), ("1.0.POST1", "1.0.post1"), + ("1.0.r1", "1.0.post1"), + ("1.0.rev1", "1.0.post1"), ("1.0-POST", "1.0.post0"), ("1.0-POST1", "1.0.post1"), ("1.0-5", "1.0.post5"), + ("1.0-r5", "1.0.post5"), + ("1.0-rev5", "1.0.post5"), # Local version case insensitivity ("1.0+AbC", "1.0+abc"),
