Hello community,
here is the log from the commit of package python-git-url-parse for
openSUSE:Factory checked in at 2019-03-25 09:48:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-git-url-parse (Old)
and /work/SRC/openSUSE:Factory/.python-git-url-parse.new.25356 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-git-url-parse"
Mon Mar 25 09:48:07 2019 rev:3 rq:688061 version:1.2.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-git-url-parse/python-git-url-parse.changes
2019-03-11 11:15:46.817331416 +0100
+++
/work/SRC/openSUSE:Factory/.python-git-url-parse.new.25356/python-git-url-parse.changes
2019-03-25 09:48:07.504006501 +0100
@@ -1,0 +2,6 @@
+Mon Mar 25 02:54:09 UTC 2019 - John Vandenberg <[email protected]>
+
+- Update to v1.2.2
+ * Corrected processing of name with a dot
+
+-------------------------------------------------------------------
Old:
----
git-url-parse-1.2.1.tar.gz
New:
----
git-url-parse-1.2.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-git-url-parse.spec ++++++
--- /var/tmp/diff_new_pack.kScZnf/_old 2019-03-25 09:48:08.068006420 +0100
+++ /var/tmp/diff_new_pack.kScZnf/_new 2019-03-25 09:48:08.072006420 +0100
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-git-url-parse
-Version: 1.2.1
+Version: 1.2.2
Release: 0
Summary: A GIT URL parser for Python
License: MIT
++++++ git-url-parse-1.2.1.tar.gz -> git-url-parse-1.2.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/git-url-parse-1.2.1/CHANGELOG.rst
new/git-url-parse-1.2.2/CHANGELOG.rst
--- old/git-url-parse-1.2.1/CHANGELOG.rst 2019-03-09 08:04:33.000000000
+0100
+++ new/git-url-parse-1.2.2/CHANGELOG.rst 2019-03-23 19:22:56.000000000
+0100
@@ -2,6 +2,11 @@
History
*******
+1.2.2
+=====
+
+* Corrected processing of name with a dot.
+
1.2.1
=====
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/git-url-parse-1.2.1/PKG-INFO
new/git-url-parse-1.2.2/PKG-INFO
--- old/git-url-parse-1.2.1/PKG-INFO 2019-03-09 08:07:38.000000000 +0100
+++ new/git-url-parse-1.2.2/PKG-INFO 2019-03-23 19:29:27.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: git-url-parse
-Version: 1.2.1
+Version: 1.2.2
Summary: git-url-parse - A simple GIT URL parser.
Home-page: https://github.com/retr0h/git-url-parse
Author: John Dewey
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/git-url-parse-1.2.1/git_url_parse.egg-info/PKG-INFO
new/git-url-parse-1.2.2/git_url_parse.egg-info/PKG-INFO
--- old/git-url-parse-1.2.1/git_url_parse.egg-info/PKG-INFO 2019-03-09
08:07:34.000000000 +0100
+++ new/git-url-parse-1.2.2/git_url_parse.egg-info/PKG-INFO 2019-03-23
19:29:24.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: git-url-parse
-Version: 1.2.1
+Version: 1.2.2
Summary: git-url-parse - A simple GIT URL parser.
Home-page: https://github.com/retr0h/git-url-parse
Author: John Dewey
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/git-url-parse-1.2.1/git_url_parse.egg-info/pbr.json
new/git-url-parse-1.2.2/git_url_parse.egg-info/pbr.json
--- old/git-url-parse-1.2.1/git_url_parse.egg-info/pbr.json 2019-03-09
08:07:34.000000000 +0100
+++ new/git-url-parse-1.2.2/git_url_parse.egg-info/pbr.json 2019-03-23
19:29:24.000000000 +0100
@@ -1 +1 @@
-{"git_version": "ba63452", "is_release": false}
\ No newline at end of file
+{"git_version": "a5b7db9", "is_release": false}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/git-url-parse-1.2.1/giturlparse/parser.py
new/git-url-parse-1.2.2/giturlparse/parser.py
--- old/git-url-parse-1.2.1/giturlparse/parser.py 2019-03-09
08:03:03.000000000 +0100
+++ new/git-url-parse-1.2.2/giturlparse/parser.py 2019-03-23
19:15:37.000000000 +0100
@@ -42,7 +42,7 @@
r'[:/]*'
r'(?P<port>[\d]+){0,1}'
r'(?P<pathname>\/((?P<owner>[\w\-]+)\/)?'
- r'((?P<name>[\w\-]+)(\.git)?)?)$'),
+ r'((?P<name>[\w\-\.]+?)(\.git)?)?)$'),
re.compile(r'(git\+)?'
r'((?P<protocol>\w+)://)'
r'((?P<user>\w+)@)?'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/git-url-parse-1.2.1/test/conftest.py
new/git-url-parse-1.2.2/test/conftest.py
--- old/git-url-parse-1.2.1/test/conftest.py 2019-03-09 08:03:03.000000000
+0100
+++ new/git-url-parse-1.2.2/test/conftest.py 2019-03-23 19:16:01.000000000
+0100
@@ -236,6 +236,30 @@
'name': 'sphinx',
'owner': 'sphinx-doc',
},
+ # https://github.com/retr0h/git-url-parse/issues/33
+ 'https://github.com/tterranigma/Stouts.openvpn': {
+ 'pathname': '/tterranigma/Stouts.openvpn',
+ 'protocols': ['https'],
+ 'protocol': 'https',
+ 'href': 'https://github.com/tterranigma/Stouts.openvpn',
+ 'resource': 'github.com',
+ 'user': None,
+ 'port': None,
+ 'name': 'Stouts.openvpn',
+ 'owner': 'tterranigma',
+ },
+ # https://github.com/retr0h/git-url-parse/issues/33
+ 'https://github.com/tterranigma/Stouts.openvpn.git': {
+ 'pathname': '/tterranigma/Stouts.openvpn.git',
+ 'protocols': ['https'],
+ 'protocol': 'https',
+ 'href': 'https://github.com/tterranigma/Stouts.openvpn.git',
+ 'resource': 'github.com',
+ 'user': None,
+ 'port': None,
+ 'name': 'Stouts.openvpn',
+ 'owner': 'tterranigma',
+ },
}