summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-01-14 09:44:03 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2019-01-14 17:03:50 +0100
commit8d20e5533fdb9e64b3822f2618bb199d94004703 (patch)
tree30133f92a845f98774338e7677d1e7bbdada3f3e /kde-frameworks/knotifyconfig
parentdev-util/re2c: amd64 stable wrt bug #675138 (diff)
downloadgentoo-8d20e5533fdb9e64b3822f2618bb199d94004703.tar.gz
gentoo-8d20e5533fdb9e64b3822f2618bb199d94004703.tar.bz2
gentoo-8d20e5533fdb9e64b3822f2618bb199d94004703.zip
kde-frameworks: Drop KDE Frameworks 5.53.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'kde-frameworks/knotifyconfig')
-rw-r--r--kde-frameworks/knotifyconfig/Manifest1
-rw-r--r--kde-frameworks/knotifyconfig/files/knotifyconfig-5.53.0-phonon-optional.patch48
-rw-r--r--kde-frameworks/knotifyconfig/knotifyconfig-5.53.0.ebuild26
3 files changed, 0 insertions, 75 deletions
diff --git a/kde-frameworks/knotifyconfig/Manifest b/kde-frameworks/knotifyconfig/Manifest
index 35879bd5809f..9161df785992 100644
--- a/kde-frameworks/knotifyconfig/Manifest
+++ b/kde-frameworks/knotifyconfig/Manifest
@@ -1,3 +1,2 @@
DIST knotifyconfig-5.52.0.tar.xz 83572 BLAKE2B c1cfaeb01460005592b2efccd4623249dded6e5d629f9287d99fef224f47e9c903cb6f4c29110a45795597aa5fd425e8d5d4a83926753dece7ef847c7e2e7aa5 SHA512 ee02d6d54b4f35d6142b742397962d9d64925893da69d41b5faa2f9993fbddcf438e11a54417fc55f9e3f0ee4177559ef55817eaa860c4dccfce86ed6b481e58
-DIST knotifyconfig-5.53.0.tar.xz 83544 BLAKE2B 5788992eb5ef448c40ad21b9b628e02f0516719a97431b28374b65845350047b4a00fad03a40278718a26d1ae3f02b33f072d95ca8f1ada92187c195ec325176 SHA512 5f54556c57559707905f5e7ef684004dce7354bb11387bc19e38da91bcfd6ea1edbf65b97b31926f3613e9db98efc013987daaa74a821564f57cbb91a88f1c36
DIST knotifyconfig-5.54.0.tar.xz 83564 BLAKE2B 9d509549ac3ac45fcda5fa1143e5ee81af093cce5ef08f90b8717472b6163f7c363034f3a6f4f7a5e1b48ccdc74ef7082a85fc3100b296d6d03ff854d93d4c6f SHA512 f9ae7eab977be273ed12a56e903b324986794d286409aed657af22c09ba7e623f3590779916481a4c80f606abeb9ab37cf544e74a9254290b10b89abb43c7573
diff --git a/kde-frameworks/knotifyconfig/files/knotifyconfig-5.53.0-phonon-optional.patch b/kde-frameworks/knotifyconfig/files/knotifyconfig-5.53.0-phonon-optional.patch
deleted file mode 100644
index 0854b76da840..000000000000
--- a/kde-frameworks/knotifyconfig/files/knotifyconfig-5.53.0-phonon-optional.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 78a1dcc794f57be993ada7c6f129586ebb6b181e Mon Sep 17 00:00:00 2001
-From: Heiko Becker <heirecka@exherbo.org>
-Date: Mon, 10 Dec 2018 16:15:08 +0100
-Subject: Fix build without Phonon
-
-Summary:
-f6d55baf5aa88eaab6b2f96c025064f081d13cea replaced ${PHONON_LIBS} with
-Phonon's imported target. This breaks in the case when Phonon isn't
-found or disabled via -DCMAKE_DISABLE_FIND_PACKAGES_Phonon4Qt5=TRUE
-because the imported target isn't known. It worked previously because
-${PHONON_LIBS} was just empty when Phonon wasn't available.
-
-Test Plan:
-Building without phonon works now and and it still builds
-with phonon available and successfully links to it.
-
-Subscribers: kde-frameworks-devel
-
-Tags: #frameworks
-
-Differential Revision: https://phabricator.kde.org/D17479
----
- src/CMakeLists.txt | 8 +++++++-
- 1 file changed, 7 insertions(+), 1 deletion(-)
-
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index 3dd0039..b93cabc 100644
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -27,9 +27,15 @@ target_link_libraries(KF5NotifyConfig
- PRIVATE
- KF5::I18n
- KF5::KIOWidgets # KUrlRequester
-- Phonon::phonon4qt5
- Qt5::DBus)
-
-+if(HAVE_PHONON)
-+ target_link_libraries(KF5NotifyConfig
-+ PRIVATE
-+ Phonon::phonon4qt5
-+ )
-+endif()
-+
- set_target_properties(KF5NotifyConfig PROPERTIES
- VERSION ${KNOTIFYCONFIG_VERSION_STRING}
- SOVERSION ${KNOTIFYCONFIG_SOVERSION}
---
-cgit v1.1
diff --git a/kde-frameworks/knotifyconfig/knotifyconfig-5.53.0.ebuild b/kde-frameworks/knotifyconfig/knotifyconfig-5.53.0.ebuild
deleted file mode 100644
index 65aca3a9a07b..000000000000
--- a/kde-frameworks/knotifyconfig/knotifyconfig-5.53.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_TEST="false"
-inherit kde5
-
-DESCRIPTION="Framework for configuring desktop notifications"
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="phonon"
-
-RDEPEND="
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kio)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtwidgets)
- phonon? ( media-libs/phonon[qt5(+)] )
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-phonon-optional.patch" )