[neon/forks/sip6/Neon/release] /: New upstream version 6.7.5+dfsg

Dmitry Shachnev null at kde.org
Sat Feb 4 02:04:46 GMT 2023


Git commit 19533704a12d299656fa6a459eb7ce761ff7e900 by Dmitry Shachnev.
Committed on 20/11/2022 at 07:51.
Pushed by carlosdem into branch 'Neon/release'.

New upstream version 6.7.5+dfsg

M  +13   -0    ChangeLog
M  +3    -0    NEWS
M  +1    -1    PKG-INFO
M  +1    -1    sip.egg-info/PKG-INFO
M  +2    -4    sipbuild/generator/outputs/extracts.py
M  +2    -2    sipbuild/version.py

https://invent.kde.org/neon/forks/sip6/commit/19533704a12d299656fa6a459eb7ce761ff7e900

diff --git a/ChangeLog b/ChangeLog
index b5a976b..98554e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2022-11-15  Phil Thompson  <phil at riverbankcomputing.com>
+
+	* NEWS, sipbuild/generator/outputs/extracts.py:
+	Fixed extracts when the extract file name contains a Windows disk
+	specifier.
+	[43c1391748cf] [6.7.5] <6.7-maint>
+
+2022-11-03  Phil Thompson  <phil at riverbankcomputing.com>
+
+	* .hgtags:
+	Added tag 6.7.4 for changeset 2157850bf018
+	[7b7a870a7d35] <6.7-maint>
+
 2022-10-29  Phil Thompson  <phil at riverbankcomputing.com>
 
 	* NEWS, sipbuild/generator/outputs/pyi.py:
diff --git a/NEWS b/NEWS
index 3659097..3009588 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+v6.7.5 15th November 2022
+  - Bug fixes.
+
 v6.7.4 29th October 2022
   - Bug fixes.
 
diff --git a/PKG-INFO b/PKG-INFO
index df4b6dd..9b814a8 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: sip
-Version: 6.7.4
+Version: 6.7.5
 Summary: A Python bindings generator for C/C++ libraries
 Home-page: https://www.riverbankcomputing.com/software/sip/
 Author: Riverbank Computing Limited
diff --git a/sip.egg-info/PKG-INFO b/sip.egg-info/PKG-INFO
index df4b6dd..9b814a8 100644
--- a/sip.egg-info/PKG-INFO
+++ b/sip.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: sip
-Version: 6.7.4
+Version: 6.7.5
 Summary: A Python bindings generator for C/C++ libraries
 Home-page: https://www.riverbankcomputing.com/software/sip/
 Author: Riverbank Computing Limited
diff --git a/sipbuild/generator/outputs/extracts.py b/sipbuild/generator/outputs/extracts.py
index bdeac44..fa86ef8 100644
--- a/sipbuild/generator/outputs/extracts.py
+++ b/sipbuild/generator/outputs/extracts.py
@@ -28,14 +28,12 @@ def output_extract(spec, extract_ref):
     """ Output an extract. """
 
     # Get the id and file name from the reference.
-    parts = extract_ref.split(':')
-    if len(parts) != 2:
+    extract_id, _, extract_file = extract_ref.partition(':')
+    if not extract_file:
         raise UserException(
                 "an extract must be in the form 'id:file', not '{0}'".format(
                         extract_ref))
 
-    extract_id, extract_file = parts
-
     # Get all the parts of this extract.
     ordered_parts = []
     appended_parts = []
diff --git a/sipbuild/version.py b/sipbuild/version.py
index b3f6b4c..ad361fa 100644
--- a/sipbuild/version.py
+++ b/sipbuild/version.py
@@ -1,2 +1,2 @@
-SIP_VERSION = 0x060704
-SIP_VERSION_STR = '6.7.4'
+SIP_VERSION = 0x060705
+SIP_VERSION_STR = '6.7.5'



More information about the Neon-commits mailing list