From c9ee05bc0646673d9d990d8103b1ae087a58e2b5 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Mar 18 2017 21:46:39 +0000 Subject: 2017-03-18: Retired orphaned package, because it was orphaned for more than six weeks. --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 9d2cad7..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -PyKDE-3.16.6.tar.bz2 -/PyKDE-3.16.7.tar.bz2 diff --git a/PyKDE-3.16.0-kmimetype.patch b/PyKDE-3.16.0-kmimetype.patch deleted file mode 100644 index 8fdc074..0000000 --- a/PyKDE-3.16.0-kmimetype.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- PyKDE-3.16.0/sip/kio/kmimetype.sip 2006-09-22 18:41:53.000000000 +0530 -+++ PyKDE-3.16.0/sip/kio/kmimetype.sip 2006-11-06 05:27:39.000000000 +0530 -@@ -101,7 +101,7 @@ - %If ( KDE_3_2_0 - ) - static KMimeType::Ptr defaultMimeTypePtr (); - QString parentMimeType () const; -- bool is (const QString&) const; -+ bool is (const QString&) const /PyName=is_/; //'is' is a reserved keyword in python - static KMimeType::Ptr diagnoseFileName (const QString&, QString&); - %End - diff --git a/PyKDE-3.16.6-gcc46.patch b/PyKDE-3.16.6-gcc46.patch deleted file mode 100644 index f035c06..0000000 --- a/PyKDE-3.16.6-gcc46.patch +++ /dev/null @@ -1,116 +0,0 @@ -diff -ur PyKDE-3.16.6/sip/kdecore/kmountpoint.sip PyKDE-3.16.6-gcc46/sip/kdecore/kmountpoint.sip ---- PyKDE-3.16.6/sip/kdecore/kmountpoint.sip 2009-06-10 22:52:40.000000000 +0200 -+++ PyKDE-3.16.6-gcc46/sip/kdecore/kmountpoint.sip 2011-02-13 12:19:36.000000000 +0100 -@@ -136,7 +136,10 @@ - KMountPoint::List::Iterator it; - for( it = cList->begin(); it != cList->end(); ++it ) - { -- inst = sipConvertFromType(&(KMountPoint::Ptr)(*it), sipType_KMountPoint_Ptr, sipTransferObj); -+ { -+ KMountPoint::Ptr p = *it; -+ inst = sipConvertFromType(&p, sipType_KMountPoint_Ptr, sipTransferObj); -+ } - - if ((inst == NULL) || (PyList_Append (plist, inst) < 0)) - { -diff -ur PyKDE-3.16.6/sip/kdeui/kkeydialog.sip PyKDE-3.16.6-gcc46/sip/kdeui/kkeydialog.sip ---- PyKDE-3.16.6/sip/kdeui/kkeydialog.sip 2009-06-10 23:40:27.000000000 +0200 -+++ PyKDE-3.16.6-gcc46/sip/kdeui/kkeydialog.sip 2011-02-13 12:39:23.000000000 +0100 -@@ -204,7 +204,8 @@ - - while (it.current ()) - { -- PyObject *a0 = sipConvertFromInstance (&it.currentKey (), sipClass_QCString, sipTransferObj); -+ QString key = it.currentKey (); -+ PyObject *a0 = sipConvertFromInstance (&key, sipClass_QCString, sipTransferObj); - PyObject *a1 = PyInt_FromLong ((long) it.current ()); - - if ((a0 == NULL) || (a1 == NULL) || (PyDict_SetItem (dict, a0, a1) < 0)) -diff -ur PyKDE-3.16.6/sip/kio/kfilemetainfo.sip PyKDE-3.16.6-gcc46/sip/kio/kfilemetainfo.sip ---- PyKDE-3.16.6/sip/kio/kfilemetainfo.sip 2006-09-22 05:11:14.000000000 +0200 -+++ PyKDE-3.16.6-gcc46/sip/kio/kfilemetainfo.sip 2011-02-13 15:04:41.000000000 +0100 -@@ -256,7 +256,8 @@ - %MethodCode - //returns (KFileMetaInfoItem) - //takes key | (QString) -- sipRes = &((*sipCpp) [(const QString&) *a0]); -+ KFileMetaInfoItem item = (*sipCpp) [(const QString&) *a0]; -+ sipRes = &item; - %End - - %End -@@ -339,7 +340,8 @@ - %MethodCode - //returns (KFileMetaInfoGroup) - //takes key | (QString) -- sipRes = &((*sipCpp) [(const QString&)*a0]); -+ KFileMetaInfoGroup group = (*sipCpp) [(const QString&)*a0]; -+ sipRes = &group; - %End - - %End -diff -ur PyKDE-3.16.6/sip/kio/kservicegroup.sip PyKDE-3.16.6-gcc46/sip/kio/kservicegroup.sip ---- PyKDE-3.16.6/sip/kio/kservicegroup.sip 2009-06-10 22:58:33.000000000 +0200 -+++ PyKDE-3.16.6-gcc46/sip/kio/kservicegroup.sip 2011-02-13 13:06:46.000000000 +0100 -@@ -235,7 +235,8 @@ - KServiceGroup::List::Iterator it; - for( it = cList->begin(); it != cList->end(); ++it ) - { -- svcGroupType = &(KServiceGroup::SPtr)(*it); -+ KServiceGroup::SPtr p = *it; -+ svcGroupType = &p; - inst = sipConvertFromType(svcGroupType, sipType_KSycocaEntry_Ptr, sipTransferObj); - - if ((inst == NULL) || (PyList_Append (plist, inst) < 0)) -diff -ur PyKDE-3.16.6/sip/kio/kservice.sip PyKDE-3.16.6-gcc46/sip/kio/kservice.sip ---- PyKDE-3.16.6/sip/kio/kservice.sip 2009-06-10 22:59:28.000000000 +0200 -+++ PyKDE-3.16.6-gcc46/sip/kio/kservice.sip 2011-02-13 14:36:44.000000000 +0100 -@@ -235,7 +235,8 @@ - KService::List::Iterator it; - for( it = cList->begin(); it != cList->end(); ++it ) - { -- svc = &(KService::Ptr)(*it); -+ KService::Ptr p = *it; -+ svc = &p; - inst = sipConvertFromType(svc, sipType_KService_Ptr, sipTransferObj); - - if ((inst == NULL) || (PyList_Append (plist, inst) < 0)) -diff -ur PyKDE-3.16.6/sip/kio/kservicetype.sip PyKDE-3.16.6-gcc46/sip/kio/kservicetype.sip ---- PyKDE-3.16.6/sip/kio/kservicetype.sip 2009-06-10 23:48:24.000000000 +0200 -+++ PyKDE-3.16.6-gcc46/sip/kio/kservicetype.sip 2011-02-13 13:06:13.000000000 +0100 -@@ -240,7 +240,8 @@ - QValueList::Iterator it; - for( it = cList->begin(); it != cList->end(); ++it ) - { -- svc = &(KServiceType::Ptr)(*it); -+ KServiceType::Ptr p = *it; -+ svc = &p; - inst = sipConvertFromType(svc, sipType_KServiceType_Ptr, sipTransferObj); - - if ((inst == NULL) || (PyList_Append (plist, inst) < 0)) -diff -ur PyKDE-3.16.6/sip/kio/ksycocaentry.sip PyKDE-3.16.6-gcc46/sip/kio/ksycocaentry.sip ---- PyKDE-3.16.6/sip/kio/ksycocaentry.sip 2009-06-10 23:01:05.000000000 +0200 -+++ PyKDE-3.16.6-gcc46/sip/kio/ksycocaentry.sip 2011-02-13 14:03:53.000000000 +0100 -@@ -144,7 +144,8 @@ - KSycocaEntry::List::Iterator it; - for( it = cList->begin(); it != cList->end(); ++it ) - { -- svc = &(KSycocaEntry::Ptr)(*it); -+ KSycocaEntry::Ptr p = *it; -+ svc = &p; - if (svc->data ()->sycocaType () == KST_KService) - { - svcType = (KSharedPtr *)svc; -diff -ur PyKDE-3.16.6/sip/kmdi/kmdichildfrm.sip PyKDE-3.16.6-gcc46/sip/kmdi/kmdichildfrm.sip ---- PyKDE-3.16.6/sip/kmdi/kmdichildfrm.sip 2009-06-10 23:49:47.000000000 +0200 -+++ PyKDE-3.16.6-gcc46/sip/kmdi/kmdichildfrm.sip 2011-02-13 15:20:32.000000000 +0100 -@@ -218,7 +218,8 @@ - - while (it.current ()) - { -- PyObject *a0 = sipConvertFromInstance (&it.currentKey (), sipClass_QString, sipTransferObj); -+ QString key = it.currentKey (); -+ PyObject *a0 = sipConvertFromInstance (&key, sipClass_QString, sipTransferObj); - PyObject *a1 = PyInt_FromLong ((long) it.current ()); - - if ((a0 == NULL) || (a1 == NULL) || (PyDict_SetItem (dict, a0, a1) < 0)) diff --git a/PyKDE-3.16.6-gcc47.patch b/PyKDE-3.16.6-gcc47.patch deleted file mode 100644 index 8833766..0000000 --- a/PyKDE-3.16.6-gcc47.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -ur PyKDE-3.16.6/sip/kdecore/kaccel.sip PyKDE-3.16.6-gcc47/sip/kdecore/kaccel.sip ---- PyKDE-3.16.6/sip/kdecore/kaccel.sip 2009-06-10 23:31:39.000000000 +0200 -+++ PyKDE-3.16.6-gcc47/sip/kdecore/kaccel.sip 2012-04-22 00:30:41.000000000 +0200 -@@ -35,7 +35,7 @@ - KAccel (QWidget* /TransferThis/, const char* = 0); - KAccel (QWidget*, QObject* /TransferThis/, const char* = 0); - KAccelActions& actions (); -- bool isEnabled () const; -+ bool isEnabled (); - void setEnabled (bool); - bool setAutoUpdate (bool); - -diff -ur PyKDE-3.16.6/sip/kdecore/kglobalaccel.sip PyKDE-3.16.6-gcc47/sip/kdecore/kglobalaccel.sip ---- PyKDE-3.16.6/sip/kdecore/kglobalaccel.sip 2006-09-22 05:11:16.000000000 +0200 -+++ PyKDE-3.16.6-gcc47/sip/kdecore/kglobalaccel.sip 2012-04-22 00:12:25.000000000 +0200 -@@ -33,7 +33,7 @@ - - public: - KGlobalAccel (QObject*, const char* = 0); -- bool isEnabled () const; -+ bool isEnabled (); - void setEnabled (bool); - KAccelAction* insert (const QString&, const QString&, const QString&, const KShortcut&, const KShortcut&, SIP_RXOBJ_CON, SIP_SLOT_CON (), bool = 1, bool = 1); - diff --git a/PyKDE-3.16.7-private-fix.patch b/PyKDE-3.16.7-private-fix.patch deleted file mode 100644 index 165d1ff..0000000 --- a/PyKDE-3.16.7-private-fix.patch +++ /dev/null @@ -1,63 +0,0 @@ -diff -wruN PyKDE-3.16.7.orig/sip/kdecore/kconfigbase.sip PyKDE-3.16.7/sip/kdecore/kconfigbase.sip ---- PyKDE-3.16.7.orig/sip/kdecore/kconfigbase.sip 2009-06-12 16:32:05.000000000 +0400 -+++ PyKDE-3.16.7/sip/kdecore/kconfigbase.sip 2014-01-15 14:33:00.283274791 +0400 -@@ -153,10 +153,8 @@ - bool deleteGroup (const QString&, bool = 1, bool = 0); - void setDollarExpansion (bool = 1); - bool isDollarExpansion () const; -- virtual void rollback (bool = 1); - virtual void sync (); - bool isDirty () const; -- virtual void setReadOnly (bool); - bool isReadOnly () const; - bool hasKey (const QString&) const; - virtual QMap entryMap (const QString&) const = 0; -@@ -182,6 +180,9 @@ - bool hasDefault (const QString&) const; - %End - -+private: -+ virtual void setReadOnly (bool); -+ virtual void rollback (bool = 1); - - protected: - void setLocale (); -diff -wruN PyKDE-3.16.7.orig/sip/kdeui/kactivelabel.sip PyKDE-3.16.7/sip/kdeui/kactivelabel.sip ---- PyKDE-3.16.7.orig/sip/kdeui/kactivelabel.sip 2006-09-22 07:11:15.000000000 +0400 -+++ PyKDE-3.16.7/sip/kdeui/kactivelabel.sip 2014-01-15 18:00:21.244405286 +0400 -@@ -44,6 +44,9 @@ - public slots: - virtual void openLink (const QString&); - -+private: -+ virtual void setSource(const QString&); -+ - protected: - //igx virtual void virtual_hook (int, void*); - virtual void focusInEvent (QFocusEvent*); -diff -wruN PyKDE-3.16.7.orig/sip/kdeui/kpixmapregionselectorwidget.sip PyKDE-3.16.7/sip/kdeui/kpixmapregionselectorwidget.sip ---- PyKDE-3.16.7.orig/sip/kdeui/kpixmapregionselectorwidget.sip 2006-09-22 07:11:15.000000000 +0400 -+++ PyKDE-3.16.7/sip/kdeui/kpixmapregionselectorwidget.sip 2014-01-15 17:45:52.246466020 +0400 -@@ -51,6 +51,9 @@ - void rotateClockwise (); - void rotateCounterclockwise (); - -+private: -+ virtual bool eventFilter(QObject*, QEvent*); -+ - protected: - virtual KPopupMenu* createPopupMenu (); - -diff -wruN PyKDE-3.16.7.orig/sip/kfile/knotifydialog.sip PyKDE-3.16.7/sip/kfile/knotifydialog.sip ---- PyKDE-3.16.7.orig/sip/kfile/knotifydialog.sip 2009-06-10 23:40:41.000000000 +0400 -+++ PyKDE-3.16.7/sip/kfile/knotifydialog.sip 2014-01-15 18:22:05.300314144 +0400 -@@ -77,6 +77,9 @@ - virtual void addApplicationEvents (const QString&); - virtual void clearApplicationEvents (); - -+private: -+ virtual void slotDefault(); -+ - }; // class KNotifyDialog - - %End diff --git a/PyKDE.spec b/PyKDE.spec deleted file mode 100644 index 2c4d3bd..0000000 --- a/PyKDE.spec +++ /dev/null @@ -1,331 +0,0 @@ - -# Fedora review: http://bugzilla.redhat.com/190367 - -%if 0%{?fedora} > 6 -%define kdelibs3 kdelibs3 -%define PyQt3 PyQt3 -%else -%define kdelibs3 kdelibs -%define PyQt3 PyQt -BuildRequires: libutempter-devel -%endif - -Summary: Python bindings for KDE3 -Name: PyKDE -Version: 3.16.7 -Release: 10%{?dist} - -License: GPLv2 -URL: http://www.riverbankcomputing.com/software/pykde/intro -Source0: http://downloads.sourceforge.net/pyqt/PyKDE3/PyKDE-%{version}.tar.bz2 -Group: Development/Languages -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -# http://mats.imk.fraunhofer.de/pipermail/pykde/2006-November/014627.html -Patch0: PyKDE-3.16.0-kmimetype.patch - -# fix FTBFS with g++ 4.6 (taking address of temporary) -Patch1: PyKDE-3.16.6-gcc46.patch - -# fix FTBFS with g++ 4.7 (spurious const for KAccel::isEnabled in kaccel.sip and -# for KGlobalAccel::isEnabled in kglobalaccel.sip) -Patch2: PyKDE-3.16.6-gcc47.patch - -# fix private functions being declared as public in the bindings -# (patch by Ilya Chernykh from KDE:KDE3 in OBS) -Patch3: PyKDE-3.16.7-private-fix.patch - -## upstream patches - -BuildRequires: python-devel >= 2.3 -%global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)") -BuildRequires: %{PyQt3}-devel >= 3.18 -BuildRequires: sip-devel >= 4.9.2 - -Provides: PyKDE3 = %{version}-%{release} - -Requires: %{PyQt3} - -BuildRequires: %{kdelibs3}-devel -%global kdelibs3_ver %((kde-config --version 2>/dev/null || echo KDE 3.5.10) | grep '^KDE' | cut -d' ' -f2 | cut -d'-' -f1) -Requires: %{kdelibs3} >= %{kdelibs3_ver} -%{?_sip_api:Requires: sip-api(%{_sip_api_major}) >= %{_sip_api}} - -%description -These are the Python bindings for KDE3. - -%package devel -Summary: %{name} SIP files -Group: Development/Languages -Provides: PyKDE3-devel = %{version}-%{release} -Requires: %{name} = %{version}-%{release} -Requires: %{PyQt3}-devel -Requires: sip-devel -#Obsoletes: %{name}-docs < %{version}-%{release} -Provides: %{name}-docs = %{version}-%{release} -%description devel -Sip files and documentation needed for developing with %{name} - - -%prep -%setup -q %{?snapshot:-n %{name}-snapshot%{snapshot}} - -%patch0 -p1 -b .kmimetype -%patch1 -p1 -b .gcc46 -%patch2 -p1 -b .gcc47 -%patch3 -p1 -b .private-fix - - -%build -unset QTDIR || : ; source /etc/profile.d/qt.sh - -%{__python} configure.py \ - -L %{_lib} \ - -d %{python_sitearch} \ - -i - -# hack to fix build with SIP >= 4.15 -# from https://build.opensuse.org/request/show/238556 -sed -i 's|return KFileIconView::selectionMode()|return KFileIconView::KFileView::selectionMode()|g' kfile/sipkfileKFileIconView.cpp -sed -i 's|KFileIconView::clear();|KFileIconView::KFileView::clear();|g' kfile/sipkfileKFileIconView.cpp -sed -i 's|return KFileDetailView::selectionMode()|return KFileDetailView::KFileView::selectionMode()|g' kfile/sipkfileKFileDetailView.cpp -sed -i 's|KFileDetailView::clear();|KFileDetailView::KFileView::clear();|g' kfile/sipkfileKFileDetailView.cpp - -make %{?_smp_mflags} - - -%install -rm -rf $RPM_BUILD_ROOT - -mkdir -p $RPM_BUILD_ROOT%{_libdir} -make install DESTDIR=$RPM_BUILD_ROOT - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -%defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING NEWS README THANKS -%{_bindir}/* -%{python_sitearch}/* - -%files devel -%defattr(-,root,root,-) -%doc doc/* examples -%{_datadir}/sip/* - - -%changelog -* Fri Feb 10 2017 Fedora Release Engineering - 3.16.7-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Tue Jul 19 2016 Fedora Release Engineering - 3.16.7-9 -- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages - -* Wed Feb 03 2016 Fedora Release Engineering - 3.16.7-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Tue Jun 16 2015 Fedora Release Engineering - 3.16.7-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Fri Jun 12 2015 Rex Dieter 3.16.7-6 -- rebuild (sip) - -* Sat May 02 2015 Kalev Lember - 3.16.7-5 -- Rebuilt for GCC 5 C++11 ABI change - -* Thu Sep 04 2014 Kevin Kofler - 3.16.7-4 -- add OBS sed hack to fix build with SIP >= 4.15 (#1067006) - -* Fri Aug 15 2014 Fedora Release Engineering - 3.16.7-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Fri Jun 06 2014 Fedora Release Engineering - 3.16.7-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Feb 16 2014 Kevin Kofler - 3.16.7-1 -- update to 3.16.7 tarball, includes SIP 4.10 fix (but no other fixes) -- add OBS patch to fix private functions being declared public in the bindings - -* Sat Feb 15 2014 Rex Dieter 3.16.6-15 -- rebuild (sip) - -* Fri Aug 02 2013 Fedora Release Engineering - 3.16.6-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Mon Jun 17 2013 Rex Dieter 3.16.6-13 -- rebuild (sip) - -* Wed Feb 13 2013 Fedora Release Engineering - 3.16.6-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Mon Oct 01 2012 Rex Dieter 3.16.6-11 -- rebuild (sip) - -* Wed Jul 18 2012 Fedora Release Engineering - 3.16.6-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Apr 21 2012 Kevin Kofler - 3.16.6-9 -- fix FTBFS with g++ 4.7 (spurious const for K(Global)Accel::isEnabled) - -* Thu Jan 12 2012 Fedora Release Engineering - 3.16.6-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Sun Feb 13 2011 Kevin Kofler - 3.16.6-7 -- fix FTBFS with g++ 4.6 (taking address of temporary) - -* Mon Feb 07 2011 Fedora Release Engineering - 3.16.6-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Thu Sep 09 2010 Rex Dieter - 3.16.6-5 -- rebuild (sip) - -* Wed Jul 21 2010 David Malcolm - 3.16.6-4 -- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild - -* Mon Jan 25 2010 Rex Dieter - 3.16.6-3 -- upstream patch to support newer sip - -* Thu Jan 07 2010 Rex Dieter - 3.16.6-2 -- rebuild (sip) - -* Fri Nov 20 2009 Rex Dieter - 3.16.6-1 -- PyKDE-3.16.6 -- Requires: sip-api(%%_sip_api_major) >= %%_sip_api - -* Fri Jul 24 2009 Fedora Release Engineering - 3.16.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Sat Jun 13 2009 Rex Dieter - 3.16.3-1 -- PyKDE-3.16.3 - -* Fri Jun 05 2009 Rex Dieter - 3.16.2-4 -- respin (sip/PyQt) - -* Mon Feb 23 2009 Fedora Release Engineering - 3.16.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 3.16.2-2 -- Rebuild for Python 2.6 - -* Mon Nov 17 2008 Rex Dieter 3.16.2-1 -- PyKDE-3.16.2 - -* Wed Jun 10 2008 Rex Dieter 3.16.1-2 -- Provides: PyKDE3(-devel) -- Requires: PyQt3(-devel) - -* Fri Mar 07 2008 Rex Dieter 3.16.1-1 -- PyKDE-3.16.1 - -* Mon Feb 11 2008 Rex Dieter 3.16.0-12 -- respin (gcc43) - -* Sat Nov 24 2007 Rex Dieter 3.16.0-11 -- (Build)Requires: s/kdelibs/kdelibs3/, s/kdebase/kdebase3/ - -* Fri Nov 23 2007 Rex Dieter 3.16.0-9 -- sip-4.7 patch (#396441) - -* Sat Aug 25 2007 Rex Dieter 3.16.0-7 -- License: GPLv2 -- respin (BuildID) - -* Thu Feb 15 2007 Rex Dieter 3.16.0-6 -- BR: sip-devel >= 4.5.2 -- patch for python-2.5 - -* Thu Nov 09 2006 Rex Dieter 3.16.0-5 -- kmimetype patch -- devel: Requires: sip-devel - -* Wed Nov 08 2006 Rex Dieter 3.16.0-3 -- (unversioned) Requires: PyQt -- rebuild for PyQt-3.17 (fc7+) - -* Wed Oct 04 2006 Rex Dieter 3.16.0-2 -- respin - -* Mon Sep 25 2006 Rex Dieter 3.16.0-1 -- 3.16.0 -- no longer own %%_datadir/sip, sip-devel does now (#206633) - -* Thu Sep 07 2006 Rex Dieter 3.15.2-0.6.20060422 -- fc6 respin - -* Fri Jul 21 2006 Rex Dieter 3.15.2-0.5.20060422 -- %%doc AUTHORS COPYING -- License: GPL - -* Fri May 12 2006 Rex Dieter 3.15.2-0.4.20060422 -- drop sip-abi crud, rely (only) on - Requires: PyQt - -* Fri Apr 28 2006 Rex Dieter 3.15.2-0.3.20060422 -- fix busted Requires wrt sip-abi - -* Thu Apr 27 2006 Rex Dieter 3.15.2-0.2.20060422 -- respin for sip-4.4.3 -- use sip-abi, sip-abi-min - -* Wed Apr 19 2006 Rex Dieter 3.15.2-0.1.20060422 -- 20060422 snapshot - -* Fri Apr 08 2005 Rex Dieter 3.11.4-0.1.20050316.kde -- 20050316 snapshot - -* Tue Dec 21 2004 Rex Dieter 3.11.3-0.6.kde -- Req: python-abi = %%python_ver - -* Wed Dec 15 2004 Rex Dieter 3.11.3-0.5.kde -- rebuild against 3.3.2 -- cleaner lib64 fix - -* Fri Oct 08 2004 Rex Dieter 3.11.3-0.4.kde -- lib64 fixes (thanks Bryan O'Sullivan ) -- kde-3.3.1 fixes -- sip3: BR: sip-3.11.2 - -* Tue Sep 21 2004 Rex Dieter 3.11.3-0.3.kde -- rebuild against sip-3.11/sip-4.1, PyKDE-3.13 - -* Tue Sep 7 2004 Rex Dieter 3.11.3-0.1 -- -devel: include classref(-docs subpkg?), examples - -* Fri Aug 27 2004 Rex Dieter 3.11.3-0.fdr.1 -- 3.11.3 - -* Tue Jul 20 2004 Rex Dieter 3.11.1-0.fdr.1 -- use/Requires: %%{python_sitearch} - -* Mon Jul 06 2004 Rex Dieter 3.11.1-0.fdr.0 -- 3.11.1 - -* Tue Jun 01 2004 Rex Dieter 3.11-0.fdr.0.1.rc1 -- 3.11rc1 - -* Thu Dec 04 2003 Rex Dieter 3.8.0-0.fdr.0 -- 3.8.0 - -* Wed Dec 03 2003 Rex Dieter 3.7.4-0.fdr.2 -- cleanup -- add Fedora Core support - -* Wed Sep 17 2003 Rex Dieter 3.7.4-0.fdr.1 -- rebuild against newer sip/PyQT/kdelibs - -* Tue Aug 19 2003 Rex Dieter 3.7.4-0.fdr.0 -- 3.7-4 - -* Mon Aug 11 2003 Rex Dieter 3.7.3-0.fdr.0 -- 3.7-3 -- fedora'ize - -* Wed Apr 30 2003 Rex Dieter 3.5-2-0.0 -- NOTE: This version does *not* work with PyQt/sip v3.6. Guess - we'll have to wait fo an updated/fixed version. -- kde-redhat versioning. -- NOTE: rh73 pkg built with/for python2. - diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..de64677 --- /dev/null +++ b/dead.package @@ -0,0 +1,3 @@ +2017-03-18: Retired orphaned package, because it was orphaned for +more than six weeks. + diff --git a/sources b/sources deleted file mode 100644 index 60bbffd..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -745562f0c06948c2fcb56a83c37dab9c PyKDE-3.16.7.tar.bz2