From 62bcbc820a9a1a00df4817bc128bc7dc654f9dd356ccda29bfb1d2f092b0b0bb Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 28 Sep 2009 17:03:40 +0000 Subject: [PATCH 1/7] - update to 4.9: * support for __iter__ and __next__ * the %API directive * the /API/ annotation * sipIsAPIEnabled() has been added to the C API * sip.getapi() and sip.setapi() have been added to the Python API * sip.ispyowned() has been added to the Python API * mapped types can now act as a namespace for enums and static methods * the /Array/ annotation can now be applied to classes and mapped types * the /NoArgParser/ annotation can now be applied to methods as well as functions * the --arch flag was added to configure.py to specify which MacOS/X architectures are built * SIP is now also licensed under the GPL v2 and v3. OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=22 --- fix-unresolved-external-types.diff | 76 ------------------------------ python-sip.changes | 16 +++++++ python-sip.spec | 6 +-- sip-4.8.2.tar.bz2 | 3 -- sip-4.9.tar.bz2 | 3 ++ 5 files changed, 21 insertions(+), 83 deletions(-) delete mode 100644 fix-unresolved-external-types.diff delete mode 100644 sip-4.8.2.tar.bz2 create mode 100644 sip-4.9.tar.bz2 diff --git a/fix-unresolved-external-types.diff b/fix-unresolved-external-types.diff deleted file mode 100644 index 0199116..0000000 --- a/fix-unresolved-external-types.diff +++ /dev/null @@ -1,76 +0,0 @@ ---- sip-4.8.2/siplib/siplib.c 2009-07-27 15:26:11.000000000 +0200 -+++ sip-4.8.3-snapshot-20090729/siplib/siplib.c 2009-07-30 04:30:41.000000000 +0200 -@@ -6052,14 +6052,49 @@ int sip_api_get_state(PyObject *transfer - - - /* -+ * This is set by sip_api_find_type() before calling bsearch() on the types -+ * table for the module. This is a hack that works around the problem of -+ * unresolved externally defined types. -+ */ -+static sipExportedModuleDef *module_searched; -+ -+ -+/* - * The bsearch() helper function for searching the types table. - */ - static int compareTypeDef(const void *key, const void *el) - { - const char *s1 = (const char *)key; -- const char *s2 = sipTypeName(*(const sipTypeDef **)el); -+ const char *s2 = NULL; -+ const sipTypeDef *td; - char ch1, ch2; - -+ /* Allow for unresolved externally defined types. */ -+ td = *(const sipTypeDef **)el; -+ -+ if (td != NULL) -+ s2 = sipTypeName(td); -+ else -+ { -+ sipExternalTypeDef *etd = module_searched->em_external; -+ -+ assert(etd != NULL); -+ -+ /* Find which external type it is. */ -+ while (etd->et_nr >= 0) -+ { -+ const sipTypeDef **tdp = &module_searched->em_types[etd->et_nr]; -+ -+ if (tdp == (const sipTypeDef **)el) -+ { -+ s2 = etd->et_name; -+ break; -+ } -+ } -+ -+ assert(s2 != NULL); -+ } -+ - /* - * Compare while ignoring spaces so that we don't impose a rigorous naming - * standard. This only really affects template-based mapped types. -@@ -6092,12 +6127,21 @@ static const sipTypeDef *sip_api_find_ty - { - sipTypeDef **tdp; - -+ /* The backdoor to the comparison helper. */ -+ module_searched = em; -+ - tdp = (sipTypeDef **)bsearch((const void *)type, - (const void *)em->em_types, em->em_nrtypes, - sizeof (sipTypeDef *), compareTypeDef); - - if (tdp != NULL) -+ { -+ /* -+ * Note that this will be NULL for unresolved externally defined -+ * types. -+ */ - return *tdp; -+ } - } - - return NULL; - diff --git a/python-sip.changes b/python-sip.changes index ca8c6bc..113a16c 100644 --- a/python-sip.changes +++ b/python-sip.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Mon Sep 28 19:02:31 CEST 2009 - dmueller@suse.de + +- update to 4.9: + * support for __iter__ and __next__ + * the %API directive + * the /API/ annotation + * sipIsAPIEnabled() has been added to the C API + * sip.getapi() and sip.setapi() have been added to the Python API + * sip.ispyowned() has been added to the Python API + * mapped types can now act as a namespace for enums and static methods + * the /Array/ annotation can now be applied to classes and mapped types + * the /NoArgParser/ annotation can now be applied to methods as well as functions + * the --arch flag was added to configure.py to specify which MacOS/X architectures are built + * SIP is now also licensed under the GPL v2 and v3. + ------------------------------------------------------------------- Mon Aug 31 12:55:45 UTC 2009 - beineri@opensuse.org diff --git a/python-sip.spec b/python-sip.spec index 5547b1d..f5051c5 100644 --- a/python-sip.spec +++ b/python-sip.spec @@ -23,14 +23,13 @@ BuildRequires: c++_compiler python python-devel License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to use python sip bindings -Version: 4.8.2 -Release: 3 +Version: 4.9 +Release: 1 %define rversion %version Url: http://www.riverbankcomputing.com/software/sip/intro BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: sip-%{rversion}.tar.bz2 Patch0: disable-rpaths.diff -Patch1: fix-unresolved-external-types.diff Patch2: fix-linking.diff Patch3: fix-linking25.diff %py_requires @@ -72,7 +71,6 @@ Authors: %prep %setup -q -n sip-%{rversion} %patch0 -%patch1 -p1 %if %suse_version >1100 %patch2 %else diff --git a/sip-4.8.2.tar.bz2 b/sip-4.8.2.tar.bz2 deleted file mode 100644 index 289af82..0000000 --- a/sip-4.8.2.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b92a10a1c1baa3ad60feacacaa5e07140de2ccd3935c36e4be7d6b54bb43304 -size 450013 diff --git a/sip-4.9.tar.bz2 b/sip-4.9.tar.bz2 new file mode 100644 index 0000000..be3aba5 --- /dev/null +++ b/sip-4.9.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc6acbaa2c28088081ed0ee39706924132458a9d4213c3753161fd6c8319863 +size 493140 From eb88be1bb1473cc3a4a7e5e076274080784164a296fa7e512ccaed841c86f187 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 24 Oct 2009 10:29:21 +0000 Subject: [PATCH 2/7] - update to 4.9.1: * A bug fix release. OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=23 --- python-sip.changes | 6 ++++++ python-sip.spec | 2 +- sip-4.9.1.tar.bz2 | 3 +++ sip-4.9.tar.bz2 | 3 --- 4 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 sip-4.9.1.tar.bz2 delete mode 100644 sip-4.9.tar.bz2 diff --git a/python-sip.changes b/python-sip.changes index 113a16c..ce379e0 100644 --- a/python-sip.changes +++ b/python-sip.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Sat Oct 24 12:26:45 CEST 2009 - dmueller@suse.de + +- update to 4.9.1: + * A bug fix release. + ------------------------------------------------------------------- Mon Sep 28 19:02:31 CEST 2009 - dmueller@suse.de diff --git a/python-sip.spec b/python-sip.spec index f5051c5..9ed74eb 100644 --- a/python-sip.spec +++ b/python-sip.spec @@ -23,7 +23,7 @@ BuildRequires: c++_compiler python python-devel License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to use python sip bindings -Version: 4.9 +Version: 4.9.1 Release: 1 %define rversion %version Url: http://www.riverbankcomputing.com/software/sip/intro diff --git a/sip-4.9.1.tar.bz2 b/sip-4.9.1.tar.bz2 new file mode 100644 index 0000000..fc18063 --- /dev/null +++ b/sip-4.9.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b552702a11749b40ce04178559962187a67182182625ced3e12d31511960ad80 +size 494356 diff --git a/sip-4.9.tar.bz2 b/sip-4.9.tar.bz2 deleted file mode 100644 index be3aba5..0000000 --- a/sip-4.9.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4bc6acbaa2c28088081ed0ee39706924132458a9d4213c3753161fd6c8319863 -size 493140 From 205fe90c30ea2860fec62b91bd8b5f47fe3e7467e1bd4044d78f0226f592cd92 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Mon, 26 Oct 2009 16:07:14 +0000 Subject: [PATCH 3/7] checked in OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=24 --- fix-unresolved-external-types.diff | 76 ++++++++++++++++++++++++++++++ python-sip.changes | 22 --------- python-sip.spec | 6 ++- sip-4.8.2.tar.bz2 | 3 ++ sip-4.9.1.tar.bz2 | 3 -- 5 files changed, 83 insertions(+), 27 deletions(-) create mode 100644 fix-unresolved-external-types.diff create mode 100644 sip-4.8.2.tar.bz2 delete mode 100644 sip-4.9.1.tar.bz2 diff --git a/fix-unresolved-external-types.diff b/fix-unresolved-external-types.diff new file mode 100644 index 0000000..0199116 --- /dev/null +++ b/fix-unresolved-external-types.diff @@ -0,0 +1,76 @@ +--- sip-4.8.2/siplib/siplib.c 2009-07-27 15:26:11.000000000 +0200 ++++ sip-4.8.3-snapshot-20090729/siplib/siplib.c 2009-07-30 04:30:41.000000000 +0200 +@@ -6052,14 +6052,49 @@ int sip_api_get_state(PyObject *transfer + + + /* ++ * This is set by sip_api_find_type() before calling bsearch() on the types ++ * table for the module. This is a hack that works around the problem of ++ * unresolved externally defined types. ++ */ ++static sipExportedModuleDef *module_searched; ++ ++ ++/* + * The bsearch() helper function for searching the types table. + */ + static int compareTypeDef(const void *key, const void *el) + { + const char *s1 = (const char *)key; +- const char *s2 = sipTypeName(*(const sipTypeDef **)el); ++ const char *s2 = NULL; ++ const sipTypeDef *td; + char ch1, ch2; + ++ /* Allow for unresolved externally defined types. */ ++ td = *(const sipTypeDef **)el; ++ ++ if (td != NULL) ++ s2 = sipTypeName(td); ++ else ++ { ++ sipExternalTypeDef *etd = module_searched->em_external; ++ ++ assert(etd != NULL); ++ ++ /* Find which external type it is. */ ++ while (etd->et_nr >= 0) ++ { ++ const sipTypeDef **tdp = &module_searched->em_types[etd->et_nr]; ++ ++ if (tdp == (const sipTypeDef **)el) ++ { ++ s2 = etd->et_name; ++ break; ++ } ++ } ++ ++ assert(s2 != NULL); ++ } ++ + /* + * Compare while ignoring spaces so that we don't impose a rigorous naming + * standard. This only really affects template-based mapped types. +@@ -6092,12 +6127,21 @@ static const sipTypeDef *sip_api_find_ty + { + sipTypeDef **tdp; + ++ /* The backdoor to the comparison helper. */ ++ module_searched = em; ++ + tdp = (sipTypeDef **)bsearch((const void *)type, + (const void *)em->em_types, em->em_nrtypes, + sizeof (sipTypeDef *), compareTypeDef); + + if (tdp != NULL) ++ { ++ /* ++ * Note that this will be NULL for unresolved externally defined ++ * types. ++ */ + return *tdp; ++ } + } + + return NULL; + diff --git a/python-sip.changes b/python-sip.changes index ce379e0..ca8c6bc 100644 --- a/python-sip.changes +++ b/python-sip.changes @@ -1,25 +1,3 @@ -------------------------------------------------------------------- -Sat Oct 24 12:26:45 CEST 2009 - dmueller@suse.de - -- update to 4.9.1: - * A bug fix release. - -------------------------------------------------------------------- -Mon Sep 28 19:02:31 CEST 2009 - dmueller@suse.de - -- update to 4.9: - * support for __iter__ and __next__ - * the %API directive - * the /API/ annotation - * sipIsAPIEnabled() has been added to the C API - * sip.getapi() and sip.setapi() have been added to the Python API - * sip.ispyowned() has been added to the Python API - * mapped types can now act as a namespace for enums and static methods - * the /Array/ annotation can now be applied to classes and mapped types - * the /NoArgParser/ annotation can now be applied to methods as well as functions - * the --arch flag was added to configure.py to specify which MacOS/X architectures are built - * SIP is now also licensed under the GPL v2 and v3. - ------------------------------------------------------------------- Mon Aug 31 12:55:45 UTC 2009 - beineri@opensuse.org diff --git a/python-sip.spec b/python-sip.spec index 9ed74eb..5547b1d 100644 --- a/python-sip.spec +++ b/python-sip.spec @@ -23,13 +23,14 @@ BuildRequires: c++_compiler python python-devel License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to use python sip bindings -Version: 4.9.1 -Release: 1 +Version: 4.8.2 +Release: 3 %define rversion %version Url: http://www.riverbankcomputing.com/software/sip/intro BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: sip-%{rversion}.tar.bz2 Patch0: disable-rpaths.diff +Patch1: fix-unresolved-external-types.diff Patch2: fix-linking.diff Patch3: fix-linking25.diff %py_requires @@ -71,6 +72,7 @@ Authors: %prep %setup -q -n sip-%{rversion} %patch0 +%patch1 -p1 %if %suse_version >1100 %patch2 %else diff --git a/sip-4.8.2.tar.bz2 b/sip-4.8.2.tar.bz2 new file mode 100644 index 0000000..289af82 --- /dev/null +++ b/sip-4.8.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b92a10a1c1baa3ad60feacacaa5e07140de2ccd3935c36e4be7d6b54bb43304 +size 450013 diff --git a/sip-4.9.1.tar.bz2 b/sip-4.9.1.tar.bz2 deleted file mode 100644 index fc18063..0000000 --- a/sip-4.9.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b552702a11749b40ce04178559962187a67182182625ced3e12d31511960ad80 -size 494356 From 58351be6cc4142854e178b20390d8523249e186604f637b4f40b7a57827add22 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 20 Nov 2009 11:12:28 +0000 Subject: [PATCH 4/7] - add split-provides OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=25 --- fix-unresolved-external-types.diff | 76 ------------------------------ python-sip.changes | 27 +++++++++++ python-sip.spec | 9 ++-- sip-4.8.2.tar.bz2 | 3 -- sip-4.9.1.tar.bz2 | 3 ++ 5 files changed, 34 insertions(+), 84 deletions(-) delete mode 100644 fix-unresolved-external-types.diff delete mode 100644 sip-4.8.2.tar.bz2 create mode 100644 sip-4.9.1.tar.bz2 diff --git a/fix-unresolved-external-types.diff b/fix-unresolved-external-types.diff deleted file mode 100644 index 0199116..0000000 --- a/fix-unresolved-external-types.diff +++ /dev/null @@ -1,76 +0,0 @@ ---- sip-4.8.2/siplib/siplib.c 2009-07-27 15:26:11.000000000 +0200 -+++ sip-4.8.3-snapshot-20090729/siplib/siplib.c 2009-07-30 04:30:41.000000000 +0200 -@@ -6052,14 +6052,49 @@ int sip_api_get_state(PyObject *transfer - - - /* -+ * This is set by sip_api_find_type() before calling bsearch() on the types -+ * table for the module. This is a hack that works around the problem of -+ * unresolved externally defined types. -+ */ -+static sipExportedModuleDef *module_searched; -+ -+ -+/* - * The bsearch() helper function for searching the types table. - */ - static int compareTypeDef(const void *key, const void *el) - { - const char *s1 = (const char *)key; -- const char *s2 = sipTypeName(*(const sipTypeDef **)el); -+ const char *s2 = NULL; -+ const sipTypeDef *td; - char ch1, ch2; - -+ /* Allow for unresolved externally defined types. */ -+ td = *(const sipTypeDef **)el; -+ -+ if (td != NULL) -+ s2 = sipTypeName(td); -+ else -+ { -+ sipExternalTypeDef *etd = module_searched->em_external; -+ -+ assert(etd != NULL); -+ -+ /* Find which external type it is. */ -+ while (etd->et_nr >= 0) -+ { -+ const sipTypeDef **tdp = &module_searched->em_types[etd->et_nr]; -+ -+ if (tdp == (const sipTypeDef **)el) -+ { -+ s2 = etd->et_name; -+ break; -+ } -+ } -+ -+ assert(s2 != NULL); -+ } -+ - /* - * Compare while ignoring spaces so that we don't impose a rigorous naming - * standard. This only really affects template-based mapped types. -@@ -6092,12 +6127,21 @@ static const sipTypeDef *sip_api_find_ty - { - sipTypeDef **tdp; - -+ /* The backdoor to the comparison helper. */ -+ module_searched = em; -+ - tdp = (sipTypeDef **)bsearch((const void *)type, - (const void *)em->em_types, em->em_nrtypes, - sizeof (sipTypeDef *), compareTypeDef); - - if (tdp != NULL) -+ { -+ /* -+ * Note that this will be NULL for unresolved externally defined -+ * types. -+ */ - return *tdp; -+ } - } - - return NULL; - diff --git a/python-sip.changes b/python-sip.changes index ca8c6bc..ff841c6 100644 --- a/python-sip.changes +++ b/python-sip.changes @@ -1,3 +1,30 @@ +------------------------------------------------------------------- +Fri Nov 20 12:11:56 CET 2009 - dmueller@suse.de + +- add split-provides + +------------------------------------------------------------------- +Sat Oct 24 12:26:45 CEST 2009 - dmueller@suse.de + +- update to 4.9.1: + * A bug fix release. + +------------------------------------------------------------------- +Mon Sep 28 19:02:31 CEST 2009 - dmueller@suse.de + +- update to 4.9: + * support for __iter__ and __next__ + * the %API directive + * the /API/ annotation + * sipIsAPIEnabled() has been added to the C API + * sip.getapi() and sip.setapi() have been added to the Python API + * sip.ispyowned() has been added to the Python API + * mapped types can now act as a namespace for enums and static methods + * the /Array/ annotation can now be applied to classes and mapped types + * the /NoArgParser/ annotation can now be applied to methods as well as functions + * the --arch flag was added to configure.py to specify which MacOS/X architectures are built + * SIP is now also licensed under the GPL v2 and v3. + ------------------------------------------------------------------- Mon Aug 31 12:55:45 UTC 2009 - beineri@opensuse.org diff --git a/python-sip.spec b/python-sip.spec index 5547b1d..444666a 100644 --- a/python-sip.spec +++ b/python-sip.spec @@ -1,5 +1,5 @@ # -# spec file for package python-sip (Version 4.8.2) +# spec file for package python-sip (Version 4.9.1) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -23,14 +23,13 @@ BuildRequires: c++_compiler python python-devel License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to use python sip bindings -Version: 4.8.2 -Release: 3 +Version: 4.9.1 +Release: 1 %define rversion %version Url: http://www.riverbankcomputing.com/software/sip/intro BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: sip-%{rversion}.tar.bz2 Patch0: disable-rpaths.diff -Patch1: fix-unresolved-external-types.diff Patch2: fix-linking.diff Patch3: fix-linking25.diff %py_requires @@ -52,6 +51,7 @@ Authors: License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to create python bindings +Provides: python-sip:/usr/bin/sip Requires: %name = %version %description devel @@ -72,7 +72,6 @@ Authors: %prep %setup -q -n sip-%{rversion} %patch0 -%patch1 -p1 %if %suse_version >1100 %patch2 %else diff --git a/sip-4.8.2.tar.bz2 b/sip-4.8.2.tar.bz2 deleted file mode 100644 index 289af82..0000000 --- a/sip-4.8.2.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b92a10a1c1baa3ad60feacacaa5e07140de2ccd3935c36e4be7d6b54bb43304 -size 450013 diff --git a/sip-4.9.1.tar.bz2 b/sip-4.9.1.tar.bz2 new file mode 100644 index 0000000..fc18063 --- /dev/null +++ b/sip-4.9.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b552702a11749b40ce04178559962187a67182182625ced3e12d31511960ad80 +size 494356 From 86c82579715ed84ae1a7edba4f49fd47376456edde6e0c6d1027b015265e7d04 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 20 Nov 2009 11:16:56 +0000 Subject: [PATCH 5/7] - update to 4.9.2: * A bug fix release. OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=26 --- python-sip.changes | 6 ++++++ python-sip.spec | 2 +- sip-4.9.1.tar.bz2 | 3 --- sip-4.9.2.tar.bz2 | 3 +++ 4 files changed, 10 insertions(+), 4 deletions(-) delete mode 100644 sip-4.9.1.tar.bz2 create mode 100644 sip-4.9.2.tar.bz2 diff --git a/python-sip.changes b/python-sip.changes index ff841c6..65082b2 100644 --- a/python-sip.changes +++ b/python-sip.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Nov 20 12:15:54 CET 2009 - dmueller@suse.de + +- update to 4.9.2: + * A bug fix release. + ------------------------------------------------------------------- Fri Nov 20 12:11:56 CET 2009 - dmueller@suse.de diff --git a/python-sip.spec b/python-sip.spec index 444666a..865666a 100644 --- a/python-sip.spec +++ b/python-sip.spec @@ -23,7 +23,7 @@ BuildRequires: c++_compiler python python-devel License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to use python sip bindings -Version: 4.9.1 +Version: 4.9.2 Release: 1 %define rversion %version Url: http://www.riverbankcomputing.com/software/sip/intro diff --git a/sip-4.9.1.tar.bz2 b/sip-4.9.1.tar.bz2 deleted file mode 100644 index fc18063..0000000 --- a/sip-4.9.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b552702a11749b40ce04178559962187a67182182625ced3e12d31511960ad80 -size 494356 diff --git a/sip-4.9.2.tar.bz2 b/sip-4.9.2.tar.bz2 new file mode 100644 index 0000000..8a40a4a --- /dev/null +++ b/sip-4.9.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cbdd165446b5fefe6579ba52754ec968766d0d81983e74c60aba7a32c69d3c3 +size 494064 From 37543381125ae203d0808683a544ff7b5a7599f228a63e11074e1dee2a66a670 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Mon, 23 Nov 2009 12:57:08 +0000 Subject: [PATCH 6/7] checked in OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=27 --- python-sip.changes | 11 ----------- python-sip.spec | 3 +-- sip-4.9.1.tar.bz2 | 3 +++ sip-4.9.2.tar.bz2 | 3 --- 4 files changed, 4 insertions(+), 16 deletions(-) create mode 100644 sip-4.9.1.tar.bz2 delete mode 100644 sip-4.9.2.tar.bz2 diff --git a/python-sip.changes b/python-sip.changes index 65082b2..ce379e0 100644 --- a/python-sip.changes +++ b/python-sip.changes @@ -1,14 +1,3 @@ -------------------------------------------------------------------- -Fri Nov 20 12:15:54 CET 2009 - dmueller@suse.de - -- update to 4.9.2: - * A bug fix release. - -------------------------------------------------------------------- -Fri Nov 20 12:11:56 CET 2009 - dmueller@suse.de - -- add split-provides - ------------------------------------------------------------------- Sat Oct 24 12:26:45 CEST 2009 - dmueller@suse.de diff --git a/python-sip.spec b/python-sip.spec index 865666a..4f9468f 100644 --- a/python-sip.spec +++ b/python-sip.spec @@ -23,7 +23,7 @@ BuildRequires: c++_compiler python python-devel License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to use python sip bindings -Version: 4.9.2 +Version: 4.9.1 Release: 1 %define rversion %version Url: http://www.riverbankcomputing.com/software/sip/intro @@ -51,7 +51,6 @@ Authors: License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to create python bindings -Provides: python-sip:/usr/bin/sip Requires: %name = %version %description devel diff --git a/sip-4.9.1.tar.bz2 b/sip-4.9.1.tar.bz2 new file mode 100644 index 0000000..fc18063 --- /dev/null +++ b/sip-4.9.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b552702a11749b40ce04178559962187a67182182625ced3e12d31511960ad80 +size 494356 diff --git a/sip-4.9.2.tar.bz2 b/sip-4.9.2.tar.bz2 deleted file mode 100644 index 8a40a4a..0000000 --- a/sip-4.9.2.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4cbdd165446b5fefe6579ba52754ec968766d0d81983e74c60aba7a32c69d3c3 -size 494064 From 24e8c74f70a2e5b8e1bfe83068fac8f8826c7fb684e092715a4581988a9c8bce Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Mon, 23 Nov 2009 12:57:09 +0000 Subject: [PATCH 7/7] Updating link to change in openSUSE:Factory/python-sip revision 25.0 OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=0e1be0d60d2aa6be360d3ae585a93c39 --- python-sip.changes | 11 +++++++++++ python-sip.spec | 5 +++-- sip-4.9.1.tar.bz2 | 3 --- sip-4.9.2.tar.bz2 | 3 +++ 4 files changed, 17 insertions(+), 5 deletions(-) delete mode 100644 sip-4.9.1.tar.bz2 create mode 100644 sip-4.9.2.tar.bz2 diff --git a/python-sip.changes b/python-sip.changes index ce379e0..65082b2 100644 --- a/python-sip.changes +++ b/python-sip.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Fri Nov 20 12:15:54 CET 2009 - dmueller@suse.de + +- update to 4.9.2: + * A bug fix release. + +------------------------------------------------------------------- +Fri Nov 20 12:11:56 CET 2009 - dmueller@suse.de + +- add split-provides + ------------------------------------------------------------------- Sat Oct 24 12:26:45 CEST 2009 - dmueller@suse.de diff --git a/python-sip.spec b/python-sip.spec index 4f9468f..0c3c066 100644 --- a/python-sip.spec +++ b/python-sip.spec @@ -1,5 +1,5 @@ # -# spec file for package python-sip (Version 4.9.1) +# spec file for package python-sip (Version 4.9.2) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -23,7 +23,7 @@ BuildRequires: c++_compiler python python-devel License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to use python sip bindings -Version: 4.9.1 +Version: 4.9.2 Release: 1 %define rversion %version Url: http://www.riverbankcomputing.com/software/sip/intro @@ -51,6 +51,7 @@ Authors: License: GPL v2 or later Group: Development/Libraries/Python Summary: SIP tool to create python bindings +Provides: python-sip:/usr/bin/sip Requires: %name = %version %description devel diff --git a/sip-4.9.1.tar.bz2 b/sip-4.9.1.tar.bz2 deleted file mode 100644 index fc18063..0000000 --- a/sip-4.9.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b552702a11749b40ce04178559962187a67182182625ced3e12d31511960ad80 -size 494356 diff --git a/sip-4.9.2.tar.bz2 b/sip-4.9.2.tar.bz2 new file mode 100644 index 0000000..8a40a4a --- /dev/null +++ b/sip-4.9.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cbdd165446b5fefe6579ba52754ec968766d0d81983e74c60aba7a32c69d3c3 +size 494064