From 28add374cec1624d88a5fa18098dc230fd59c15f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 10 Jan 2015 13:01:21 -0600 Subject: [PATCH] 6:4.14.4-1 - 4.14.4 (with kde-applications-14.12.1) - +macros.kdelibs4 : includes %kde_applications_version, %kde_runtime_requires, %kdelibs_requires --- .gitignore | 2 +- ...uch-signal-org-freedesktop-UPower-De.patch | 57 --- ...ULT_SOURCE-together-with-_BSD_SOURCE.patch | 48 -- kdelibs-4.13.2-glibc_DEFAULT_SOURCE.patch | 30 -- kdelibs.spec | 36 +- ...nces-to-old-uri-style-fake-mimetypes.patch | 437 ------------------ macros.kdelibs4 | 14 + sources | 2 +- 8 files changed, 40 insertions(+), 586 deletions(-) delete mode 100644 0011-Fix-warning-No-such-signal-org-freedesktop-UPower-De.patch delete mode 100644 0019-Define-_DEFAULT_SOURCE-together-with-_BSD_SOURCE.patch delete mode 100644 kdelibs-4.13.2-glibc_DEFAULT_SOURCE.patch delete mode 100644 kill-references-to-old-uri-style-fake-mimetypes.patch create mode 100644 macros.kdelibs4 diff --git a/.gitignore b/.gitignore index 08f32dd..d795c7e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/kdelibs-4.14.3.tar.xz +/kdelibs-4.14.4.tar.xz diff --git a/0011-Fix-warning-No-such-signal-org-freedesktop-UPower-De.patch b/0011-Fix-warning-No-such-signal-org-freedesktop-UPower-De.patch deleted file mode 100644 index 37e44ac..0000000 --- a/0011-Fix-warning-No-such-signal-org-freedesktop-UPower-De.patch +++ /dev/null @@ -1,57 +0,0 @@ -From 9f372807041ec73cfa69017edfdb739485867d26 Mon Sep 17 00:00:00 2001 -From: Milian Wolff -Date: Fri, 14 Nov 2014 16:24:52 +0100 -Subject: [PATCH 11/23] Fix warning: No such signal - org::freedesktop::UPower::Device... - -Backport of commit d5f6f40eb8b6a420520cb7c726959048593d2cab in -the frameworks repository of solid. - -The signature change can be detected at runtime using Qt's QMetaObject -introspection mechanism. That prevents us from emitting the two -pesky warnings at runtime, polluting our konsoles. - -Google is full of that warning, and there is also: -https://bugzilla.redhat.com/show_bug.cgi?id=1056769 - -REVIEW: 121007 ---- - solid/solid/backends/upower/upowermanager.cpp | 22 ++++++++++++---------- - 1 file changed, 12 insertions(+), 10 deletions(-) - -diff --git a/solid/solid/backends/upower/upowermanager.cpp b/solid/solid/backends/upower/upowermanager.cpp -index 1bfd37a..5012f0b 100644 ---- a/solid/solid/backends/upower/upowermanager.cpp -+++ b/solid/solid/backends/upower/upowermanager.cpp -@@ -64,16 +64,18 @@ UPowerManager::UPowerManager(QObject *parent) - } - - if (serviceFound) { -- connect(&m_manager, SIGNAL(DeviceAdded(QString)), -- this, SIGNAL(deviceAdded(QString))); -- connect(&m_manager, SIGNAL(DeviceRemoved(QString)), -- this, SIGNAL(deviceRemoved(QString))); -- -- // for UPower >= 0.99.0, changed signature :o/ -- connect(&m_manager, SIGNAL(DeviceAdded(QDBusObjectPath)), -- this, SLOT(onDeviceAdded(QDBusObjectPath))); -- connect(&m_manager, SIGNAL(DeviceRemoved(QDBusObjectPath)), -- this, SLOT(onDeviceRemoved(QDBusObjectPath))); -+ if (m_manager.metaObject()->indexOfSignal("DeviceAdded(QDBusObjectPath)") != -1) { -+ // for UPower >= 0.99.0, changed signature :o/ -+ connect(&m_manager, SIGNAL(DeviceAdded(QDBusObjectPath)), -+ this, SLOT(onDeviceAdded(QDBusObjectPath))); -+ connect(&m_manager, SIGNAL(DeviceRemoved(QDBusObjectPath)), -+ this, SLOT(onDeviceRemoved(QDBusObjectPath))); -+ } else { -+ connect(&m_manager, SIGNAL(DeviceAdded(QString)), -+ this, SIGNAL(deviceAdded(QString))); -+ connect(&m_manager, SIGNAL(DeviceRemoved(QString)), -+ this, SIGNAL(deviceRemoved(QString))); -+ } - } - } - --- -1.9.3 - diff --git a/0019-Define-_DEFAULT_SOURCE-together-with-_BSD_SOURCE.patch b/0019-Define-_DEFAULT_SOURCE-together-with-_BSD_SOURCE.patch deleted file mode 100644 index b19b102..0000000 --- a/0019-Define-_DEFAULT_SOURCE-together-with-_BSD_SOURCE.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 8510661e0b6e79085997c2c2dc6a406113dc61df Mon Sep 17 00:00:00 2001 -From: Milian Wolff -Date: Mon, 17 Nov 2014 16:13:42 +0100 -Subject: [PATCH 19/23] Define _DEFAULT_SOURCE together with _BSD_SOURCE. - -This silences the following compile warnings with newer GNU libc: - -warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" - -REVIEW: 121147 ---- - cmake/modules/FindKDE4Internal.cmake | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/cmake/modules/FindKDE4Internal.cmake b/cmake/modules/FindKDE4Internal.cmake -index 134d14f..a9aecfd 100644 ---- a/cmake/modules/FindKDE4Internal.cmake -+++ b/cmake/modules/FindKDE4Internal.cmake -@@ -1099,7 +1099,7 @@ endif (APPLE) - - if (CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME STREQUAL GNU) - if (CMAKE_COMPILER_IS_GNUCXX OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") -- set ( _KDE4_PLATFORM_DEFINITIONS -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_GNU_SOURCE) -+ set ( _KDE4_PLATFORM_DEFINITIONS -D_XOPEN_SOURCE=500 -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE) - set ( CMAKE_SHARED_LINKER_FLAGS "-Wl,--fatal-warnings -Wl,--no-undefined -lc ${CMAKE_SHARED_LINKER_FLAGS}") - set ( CMAKE_MODULE_LINKER_FLAGS "-Wl,--fatal-warnings -Wl,--no-undefined -lc ${CMAKE_MODULE_LINKER_FLAGS}") - -@@ -1114,7 +1114,7 @@ if (CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME STREQUAL GNU) - endif(CMAKE_BUILD_TYPE_TOLOWER MATCHES profile) - endif (CMAKE_COMPILER_IS_GNUCXX OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - if (CMAKE_C_COMPILER MATCHES "icc") -- set ( _KDE4_PLATFORM_DEFINITIONS -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_GNU_SOURCE) -+ set ( _KDE4_PLATFORM_DEFINITIONS -D_XOPEN_SOURCE=500 -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE) - set ( CMAKE_SHARED_LINKER_FLAGS "-Wl,--fatal-warnings -Wl,--no-undefined -lc ${CMAKE_SHARED_LINKER_FLAGS}") - set ( CMAKE_MODULE_LINKER_FLAGS "-Wl,--fatal-warnings -Wl,--no-undefined -lc ${CMAKE_MODULE_LINKER_FLAGS}") - endif (CMAKE_C_COMPILER MATCHES "icc") -@@ -1218,7 +1218,7 @@ if (CMAKE_COMPILER_IS_GNUCXX) - # It is kept here nonetheless both for backwards compatibility in case one does not use add_definitions(${KDE4_DEFINITIONS}) - # and also because it is/was needed by glibc for snprintf to be available when building C files. - # See commit 4a44862b2d178c1d2e1eb4da90010d19a1e4a42c. -- add_definitions (-D_BSD_SOURCE) -+ add_definitions (-D_DEFAULT_SOURCE -D_BSD_SOURCE) - endif (CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME STREQUAL GNU) - - if (CMAKE_SYSTEM_NAME STREQUAL GNU) --- -1.9.3 - diff --git a/kdelibs-4.13.2-glibc_DEFAULT_SOURCE.patch b/kdelibs-4.13.2-glibc_DEFAULT_SOURCE.patch deleted file mode 100644 index 666fa1e..0000000 --- a/kdelibs-4.13.2-glibc_DEFAULT_SOURCE.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -up kdelibs-4.13.2/cmake/modules/FindKDE4Internal.cmake._DEFAULT_SOURCE kdelibs-4.13.2/cmake/modules/FindKDE4Internal.cmake ---- kdelibs-4.13.2/cmake/modules/FindKDE4Internal.cmake._DEFAULT_SOURCE 2014-06-08 17:15:31.037189262 -0500 -+++ kdelibs-4.13.2/cmake/modules/FindKDE4Internal.cmake 2014-06-09 08:00:43.074844711 -0500 -@@ -1097,7 +1097,7 @@ endif (APPLE) - - if (CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME STREQUAL GNU) - if (CMAKE_COMPILER_IS_GNUCXX OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") -- set ( _KDE4_PLATFORM_DEFINITIONS -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_GNU_SOURCE) -+ set ( _KDE4_PLATFORM_DEFINITIONS -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_GNU_SOURCE) - set ( CMAKE_SHARED_LINKER_FLAGS "-Wl,--fatal-warnings -Wl,--no-undefined -lc ${CMAKE_SHARED_LINKER_FLAGS}") - set ( CMAKE_MODULE_LINKER_FLAGS "-Wl,--fatal-warnings -Wl,--no-undefined -lc ${CMAKE_MODULE_LINKER_FLAGS}") - -@@ -1112,7 +1112,7 @@ if (CMAKE_SYSTEM_NAME MATCHES Linux OR C - endif(CMAKE_BUILD_TYPE_TOLOWER MATCHES profile) - endif (CMAKE_COMPILER_IS_GNUCXX OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - if (CMAKE_C_COMPILER MATCHES "icc") -- set ( _KDE4_PLATFORM_DEFINITIONS -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_GNU_SOURCE) -+ set ( _KDE4_PLATFORM_DEFINITIONS -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_GNU_SOURCE) - set ( CMAKE_SHARED_LINKER_FLAGS "-Wl,--fatal-warnings -Wl,--no-undefined -lc ${CMAKE_SHARED_LINKER_FLAGS}") - set ( CMAKE_MODULE_LINKER_FLAGS "-Wl,--fatal-warnings -Wl,--no-undefined -lc ${CMAKE_MODULE_LINKER_FLAGS}") - endif (CMAKE_C_COMPILER MATCHES "icc") -@@ -1216,7 +1216,7 @@ if (CMAKE_COMPILER_IS_GNUCXX) - # It is kept here nonetheless both for backwards compatibility in case one does not use add_definitions(${KDE4_DEFINITIONS}) - # and also because it is/was needed by glibc for snprintf to be available when building C files. - # See commit 4a44862b2d178c1d2e1eb4da90010d19a1e4a42c. -- add_definitions (-D_BSD_SOURCE) -+ add_definitions (-D_BSD_SOURCE -D_DEFAULT_SOURCE) - endif (CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME STREQUAL GNU) - - if (CMAKE_SYSTEM_NAME STREQUAL GNU) diff --git a/kdelibs.spec b/kdelibs.spec index 52f4386..eee63c3 100644 --- a/kdelibs.spec +++ b/kdelibs.spec @@ -35,13 +35,16 @@ %global soprano_version %(pkg-config --modversion soprano 2>/dev/null || echo %{soprano_ver}) %global strigi_version %(pkg-config --modversion libstreams 2>/dev/null || echo %{strigi_ver}) %global dbusmenu_qt_version %(pkg-config --modversion dbusmenu-qt 2>/dev/null || echo %{dbusmenu_qt_ver}) +%global rpm_macros_dir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d) # trim changelog included in binary rpms %global _changelog_trimtime %(date +%s -d "1 year ago") Summary: KDE Libraries -Version: 4.14.3 -Release: 8%{?dist} +# shipped with kde applications, version... +%global apps_version 14.12.1 +Version: 4.14.4 +Release: 1%{?dist} Name: kdelibs Epoch: 6 @@ -58,7 +61,9 @@ URL: http://www.kde.org/ %else %global stable stable %endif -Source0: http://download.kde.org/%{stable}/%{version}/src/kdelibs-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/applications/%{apps_version}/src/kdelibs-%{version}.tar.xz + +Source1: macros.kdelibs4 Source10: SOLID_HAL_LEGACY.sh @@ -142,10 +147,6 @@ Patch49: kdelibs-solid_qt_no_debug_output.patch # https://git.reviewboard.kde.org/r/102439/ Patch50: kdelibs-4.7.0-knewstuff2_gpg2.patch -# https://bugs.kde.org/show_bug.cgi?id=269045 -# https://git.reviewboard.kde.org/r/101231/ -Patch51: kill-references-to-old-uri-style-fake-mimetypes.patch - # Toggle solid upnp support at runtime via env var SOLID_UPNP=1 (disabled by default) Patch52: kdelibs-4.10.0-SOLID_UPNP.patch @@ -184,8 +185,6 @@ Patch65: 0001-KRecursiveFilterProxyModel-Fixed-the-model.patch ## upstream # 4.14 branch -Patch111: 0011-Fix-warning-No-such-signal-org-freedesktop-UPower-De.patch -Patch119: 0019-Define-_DEFAULT_SOURCE-together-with-_BSD_SOURCE.patch # revert these commits for #https://bugs.kde.org/315578 @@ -426,7 +425,6 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{version}-%{release}|" kio/kio/kprotocolmanage # upstreamable patches %patch50 -p1 -b .knewstuff2_gpg2 -%patch51 -p1 -b .r101231 %patch52 -p1 -b .SOLID_UPNP %patch53 -p1 -b .kjs-s390 %patch54 -p1 -b .kjs-locale @@ -440,8 +438,6 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{version}-%{release}|" kio/kio/kprotocolmanage %patch65 -p1 -b .KRecursiveFilterProxyModel # upstream patches -%patch111 -p1 -b .0011 -%patch119 -p1 -b .0019 %patch090 -p1 -R -b .return-not-break.-copy-paste-error %patch091 -p1 -R -b .coding-style-fixes.patch @@ -559,6 +555,17 @@ install -p -m644 -D %{SOURCE10} %{buildroot}/etc/kde/env/SOLID_HAL_LEGACY.sh # let's just simplify matters and make it unconditional rm -fv %{buildroot}%{_mandir}/man1/kdecmake.1* +# rpm macros +install -p -m644 -D %{SOURCE1} \ + %{buildroot}%{rpm_macros_dir}/macros.pyqt5 +sed -i \ + -e "s|@@NAME@@|%{name}|g" \ + -e "s|@@EPOCH@@|%{?epoch}%{!?epoch:0}|g" \ + -e "s|@@VERSION@@|%{version}|g" \ + -e "s|@@EVR@@|%{?epoch:%{epoch:}}%{version}-%{release}|g" \ + -e "s|@@KDE_APPLICATIONS_VERSION@@|%{apps_version}|g" \ + %{buildroot}%{rpm_macros_dir}/macros.kdelibs4 + %check %if 0%{?tests} @@ -592,6 +599,7 @@ update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null || : %if 0%{?hal:1} /etc/kde/env/SOLID_HAL_LEGACY.sh %endif +%{rpm_macros_dir}/macros.kdelibs4 %{_kde4_bindir}/checkXML %{_kde4_bindir}/kbuildsycoca4 %{_kde4_bindir}/kcookiejar4 @@ -782,6 +790,10 @@ update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null || : %changelog +* Sat Jan 10 2015 Rex Dieter - 6:4.14.4-1 +- 4.14.4 (with kde-applications-14.12.1) +- +macros.kdelibs4 : includes %%kde_applications_version, %%kde_runtime_requires, %%kdelibs_requires + * Mon Dec 29 2014 Rex Dieter 6:4.14.3-8 - pull in candidate fix for "kde deamon crash on wakeup" (kde#288410) diff --git a/kill-references-to-old-uri-style-fake-mimetypes.patch b/kill-references-to-old-uri-style-fake-mimetypes.patch deleted file mode 100644 index ed3e3b9..0000000 --- a/kill-references-to-old-uri-style-fake-mimetypes.patch +++ /dev/null @@ -1,437 +0,0 @@ -From e3af2cc22efb92e6317856664aadb56e57cc759a Mon Sep 17 00:00:00 2001 -From: Rex Dieter -Date: Thu, 18 Dec 2014 07:58:43 -0600 -Subject: [PATCH] kill references to old uri/ style fake mimetypes - -BUG: 269045 -REVIEW: 101231 ---- - kio/misc/mms.protocol | 1 - - kio/misc/mmst.protocol | 1 - - kio/misc/mmsu.protocol | 1 - - kio/misc/pnm.protocol | 1 - - kio/misc/rtspt.protocol | 1 - - kio/misc/rtspu.protocol | 1 - - mimetypes/kde.xml | 344 ------------------------------------------------ - 7 files changed, 350 deletions(-) - -diff --git a/kio/misc/mms.protocol b/kio/misc/mms.protocol -index ae9e1d9..0215402 100644 ---- a/kio/misc/mms.protocol -+++ b/kio/misc/mms.protocol -@@ -1,7 +1,6 @@ - [Protocol] - helper=true - exec= --defaultMimetype=uri/mms - protocol=mms - input=none - output=none -diff --git a/kio/misc/mmst.protocol b/kio/misc/mmst.protocol -index 1f0f763..782864e 100644 ---- a/kio/misc/mmst.protocol -+++ b/kio/misc/mmst.protocol -@@ -1,5 +1,4 @@ - [Protocol] --defaultMimetype=uri/mmst - exec= - protocol=mmst - input=none -diff --git a/kio/misc/mmsu.protocol b/kio/misc/mmsu.protocol -index deda935..7bf570b 100644 ---- a/kio/misc/mmsu.protocol -+++ b/kio/misc/mmsu.protocol -@@ -1,5 +1,4 @@ - [Protocol] --defaultMimetype=uri/mmsu - exec= - protocol=mmsu - input=none -diff --git a/kio/misc/pnm.protocol b/kio/misc/pnm.protocol -index 3ca3a7d..c359642 100644 ---- a/kio/misc/pnm.protocol -+++ b/kio/misc/pnm.protocol -@@ -1,5 +1,4 @@ - [Protocol] --defaultMimetype=uri/pnm - exec= - protocol=pnm - input=none -diff --git a/kio/misc/rtspt.protocol b/kio/misc/rtspt.protocol -index 9e4fe96..e808910 100644 ---- a/kio/misc/rtspt.protocol -+++ b/kio/misc/rtspt.protocol -@@ -1,5 +1,4 @@ - [Protocol] --defaultMimetype=uri/rtspt - exec= - protocol=rtspt - input=none -diff --git a/kio/misc/rtspu.protocol b/kio/misc/rtspu.protocol -index 9cc9299..2c78181 100644 ---- a/kio/misc/rtspu.protocol -+++ b/kio/misc/rtspu.protocol -@@ -1,5 +1,4 @@ - [Protocol] --defaultMimetype=uri/rtspu - exec= - protocol=rtspu - input=none -diff --git a/mimetypes/kde.xml b/mimetypes/kde.xml -index 9db3af0..d9255f1 100644 ---- a/mimetypes/kde.xml -+++ b/mimetypes/kde.xml -@@ -1902,350 +1902,6 @@ Notes: - 所有檔案 - - -- -- -- mms: URIs -- mms: وصلات -- mms: URIs -- MMS URI‑ji -- mms: URI -- mms: URI -- mms: URI -- mms: URI'er -- mms: URIs -- mms: URIs -- mms: URIs -- mms: URIs -- mms: URI-d -- mms: URIak -- mms: URI:t -- mms : URIs -- mms: URIanna -- mms: Lista de URI -- mms: URI-ovi -- mms: URI-k -- mms: URIs -- mms: slóðir -- mms: URI -- mms: URIs -- mms: URI-лері -- mms: URIs -- mms: URI -- mms: URI -- mms: URIs -- mms: URIs -- mms: URIs -- mms: URI-er -- MMS: URIs -- mms: URI's -- mms:-adresser -- mms: URI -- mms: adresy URI -- URI's 'mms:' -- URIs mms: -- URI-uri mms: -- расположения ресурсов MMS -- mms:-čujuhusat -- mms: adresy URI -- URI-ji za mms: -- mms: URIs -- ММС УРИ‑ји -- ММС УРИ‑ји -- MMS URI‑ji -- MMS URI‑ji -- mms: webbadresser -- mms: Adresleri -- mms: ئادرېسلار -- mms: адреси -- mms: 地址 -- mms: 網址 -- -- -- mmst: URIs -- mmst: وصلات -- mmst: URIs -- MMST URI‑ji -- mmst: URI -- mmst: URI -- mmst: URI -- mmst: URI'er -- mmst: URIs -- mmst: URIs -- mmst: URIs -- mmst: URIs -- mmst: URI-d -- mmst: URIak -- mmst: URI:t -- mmst : URIs -- mmst: URIanna -- mmst: Lista de URI -- mmst: URI-ovi -- mmst: URI-k -- mmst: URIs -- mmst: slóðir -- mmst: URI -- mmst: URIs -- mmst: URI-лері -- mmst: URIs -- mmst: URI -- mmst: URI -- mmst: URIs -- mmst: URIs -- mmst: URIs -- mmst: URI-er -- MMST: URIs -- mmst: URI's -- mmst:-adresser -- mmst: URI -- mmst: adresy URI -- URI's 'mmst:' -- URIs mmst: -- URI-uri mmst: -- расположения ресурсов MMST -- mmst:-čujuhusat -- mmst: adresy URI -- URI-ji za mmst: -- mmst: URIs -- ММСТ УРИ‑ји -- ММСТ УРИ‑ји -- MMST URI‑ji -- MMST URI‑ji -- mmst: webbadresser -- mmst: Adresleri -- mmst: ئادرېسلار -- mmst: адреси -- mmst: 地址 -- mmst: 網址 -- -- -- mmsu: URIs -- mmsu: وصلات -- mmsu: URIs -- MMSU URI‑ji -- mmsu: URI -- mmsu: URI -- mmsu: URI -- mmsu: URI'er -- mmsu: URIs -- mmsu: URIs -- mmsu: URIs -- mmsu: URIs -- mmsu: URI-d -- mmsu: URIak -- mmsu: URI:t -- mmsu : URIs -- mmsu: URIanna -- mmsu: Lista de URI -- mmsu: URI-ovi -- mmsu: URI-k -- mmsu: URIs -- mmsu: slóðir -- mmsu: URI -- mmsu: URIs -- mmsu: URIs -- mmsu: URIs -- mmsu: URI -- mmsu: URI -- mmsu: URIs -- mmsu: URIs -- mmsu: URIs -- mmsu: URI-er -- MMSU: URIs -- mmsu: URI's -- mmsu:-adresser -- mmsu: URI -- mmsu: adresy URI -- URI's 'mmsu:' -- URIs mmsu: -- URI-uri mmsu: -- расположения ресурсов MMSU -- mmsu:-čujuhusat -- mmsu: adresy URI -- URI-ji za mmsu: -- mmsu: URIs -- ММСУ УРИ‑ји -- ММСУ УРИ‑ји -- MMSU URI‑ji -- MMSU URI‑ji -- mmsu: webbadresser -- mmsu: Adresleri -- mmsu: ئادرېسلار -- mmsu: адреси -- mmsu: 地址 -- mmsu: 網址 -- -- -- pnm: URIs -- pnm: وصلات -- pnm: URIs -- PNM URI‑ji -- pnm: URI -- pnm: URI -- pnm: URI -- pnm: URI'er -- pnm: URIs -- pnm: URIs -- pnm: URIs -- pnm: URIs -- pnm: URI-d -- pnm: URIak -- pnm: URI:t -- pnm : URIs -- pnm: URIanna -- pnm: Lista de URI -- pnm: URI-ovi -- pnm: URI-k -- pnm: URIs -- pnm: slóðir -- pnm: URI -- pnm: URIs -- pnm: URI-лері -- pnm: URIs -- pnm: URI -- pnm: URI -- pnm: URIs -- pnm: URIs -- pnm: URIs -- pnm: URI-er -- PNM: URIs -- pnm: URI-adressen -- pnm:-adresser -- pnm: URI -- pnm: adresy URI -- URI's 'pnm:' -- URIs pnm: -- URI-uri pnm: -- расположения ресурсов PNM -- pnm:-čujuhusat -- pnm: adresy URI -- URI-ji za pnm: -- pnm: URIs -- ПНМ УРИ‑ји -- ПНМ УРИ‑ји -- PNM URI‑ji -- PNM URI‑ji -- pnm: webbadresser -- pnm: Adresleri -- pnm: ئادرېسلار -- pnm: адреси -- pnm: 地址 -- pnm: 網址 -- -- -- rtspt: URIs -- rtspt: وصلات -- rtspt: URIs -- RTSPT URI‑ji -- rtspt: URI -- rtspt: URI -- rtspt: URIs -- rtspt: URI'er -- rtspt: URIs -- rtspt: URIs -- rtspt: URIs -- rtspt: URIs -- rtspt: URI-d -- rtspt: URIak -- rtspt: URI:t -- rtspt : URIs -- rtspt: URIanna -- rtspt: Lista de URI -- rtspt: URI-ovi -- rtspt: URI-k -- rtsp: URIs -- rtspt: slóðir -- rtspt: URI -- rtspt: URIs -- rtspt: URI-лері -- rtspt: URIs -- rtspt: URI -- rtspt: URI -- rtspt: URIs -- rtspt: URIs -- rtspt: URIs -- rtspt: URI-er -- RTSPT: URIs -- rtspt: URI-adressen -- rtspt:-adresser -- rtspt: URI -- rtspt: adresy URI -- URI's 'rtspt:' -- URIs rtspt: -- URI-uri rtspt: -- расположения ресурсов RTSPT -- rtspt:-čujuhusat -- rtspt: adresy URI -- URI-ji za rtspt: -- rtspt: URIs -- РТСПТ УРИ‑ји -- РТСПТ УРИ‑ји -- RTSPT URI‑ji -- RTSPT URI‑ji -- rtspt: webbadresser -- rtspt: Adresleri -- rtspt: ئادرېسلار -- rtspt: адреси -- rtspt: 地址 -- rtspt: 網址 -- -- -- rtspu: URIs -- rtspu: وصلات -- rtspu: URIs -- RTSPU URI‑ji -- rtspu: URI -- rtspu: URI -- rtspu: URI -- rtspu: URI'er -- rtspu: URIs -- rtspu: URIs -- rtspu: URIs -- rtspu: URIs -- rtspu: URI-d -- rtspu: URIak -- rtspu: URI:t -- rtspu : URIs -- rtspu: URIanna -- rtspu: Lista de URI -- rtspu: URI-ovi -- rtspu: URI-k -- rtspu: URIs -- rtspu: slóðir -- rtspu: URI -- rtspu: URIs -- rtspu: URI-лері -- rtspu: URIs -- rtspu: URI -- rtspu: URI -- rtspu: URIs -- rtspu: URIs -- rtspu: URIs -- rtspu: URI-er -- RTSPU: URIs -- rtspu: URI-adressen -- rtspu:-adresser -- rtspu: URI -- rtspu: adresy URI -- URI's 'rtspu:' -- URIs rtspu: -- URI-uri rtspu: -- расположения ресурсов RTSPU -- rpspu:-čujuhusat -- rtspu: adresy URI -- URI-ji za rtspu: -- rtspu: URIs -- РТСПУ УРИ‑ји -- РТСПУ УРИ‑ји -- RTSPU URI‑ji -- RTSPU URI‑ji -- rtspu: webbadresser -- rtspu: Adresleri -- rtspu: ئادرېسلار -- rtspu: адреси -- rtspu: 地址 -- rtspu: 網址 -- -- - - - fonts package --- -1.9.3 - diff --git a/macros.kdelibs4 b/macros.kdelibs4 new file mode 100644 index 0000000..49277ed --- /dev/null +++ b/macros.kdelibs4 @@ -0,0 +1,14 @@ +%kdelibs4 @@NAME@@ +%kdelibs4_epoch @@EPOCH@@ +%kdelibs4_version @@VERSION@@ +%kdelibs4_evr @@EVR@@ + +%kdelibs4_requires \ +Requires: kdelibs4%{?_isa} >= %{kdelibs4_version} \ +%{nil} + +%kde_applications_version @@KDE_APPLICATIONS_VERSION@@ + +%kde_runtime_requires \ +Requires: kde-runtime >= %{kde_applications_version} \ +%{nil} diff --git a/sources b/sources index d2bbc47..fd81bea 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ac0e44b2a6a138df56a501581e537615 kdelibs-4.14.3.tar.xz +b83f3b9639c057e264bd65ce733fbaa8 kdelibs-4.14.4.tar.xz