summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-04-30 19:05:20 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2023-04-30 19:05:20 +0200
commitc37790edf38d91e29987b3aea37b8ddbb3ad29a4 (patch)
treeed91b60f03e8532f7e72d7470003a55d584cffaa /kde-misc
parentapp-office/skrooge: drop 2.28.0 (diff)
downloadgentoo-c37790edf38d91e29987b3aea37b8ddbb3ad29a4.tar.gz
gentoo-c37790edf38d91e29987b3aea37b8ddbb3ad29a4.tar.bz2
gentoo-c37790edf38d91e29987b3aea37b8ddbb3ad29a4.zip
kde-misc/plasma-pass: drop 1.2.0-r1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-misc')
-rw-r--r--kde-misc/plasma-pass/Manifest1
-rw-r--r--kde-misc/plasma-pass/files/plasma-pass-1.2.0-fix-loggingcategories-dir.patch31
-rw-r--r--kde-misc/plasma-pass/files/plasma-pass-1.2.0-no-werror.patch31
-rw-r--r--kde-misc/plasma-pass/plasma-pass-1.2.0-r1.ebuild43
4 files changed, 0 insertions, 106 deletions
diff --git a/kde-misc/plasma-pass/Manifest b/kde-misc/plasma-pass/Manifest
index 302bbdde371d..100e0118ea44 100644
--- a/kde-misc/plasma-pass/Manifest
+++ b/kde-misc/plasma-pass/Manifest
@@ -1,2 +1 @@
-DIST plasma-pass-1.2.0.tar.xz 34324 BLAKE2B a6fce04ca5b29066f026e01bb62a2ba4f312795bc4e0676fad82e7a7612ac29386b34047b74cda68ee1cef1fe08cb28ccda6c214565f18573594c281a3dd8658 SHA512 4ac72af97a8026022459c46eb3d8dec1489dedf0ea47ab8c71a5ab92a9c5e2faca92ef2ed512e5cd0cc181a6aa7b6ab802ae98ce525e97818704e0bf58e4603a
DIST plasma-pass-1.2.1.tar.xz 41608 BLAKE2B eb7f73be34bf014f6947029976a2922548ee307356da3f42bbb96ff6b14db91be98df2d0656a4bdc04b5d03d899f6eec06f4de5450f6d9f528a150c88530f670 SHA512 eff989e045ece776a5f2696c09381ecd8f49ba83cf7de89840ab1cad89bd15e33b9b331d9c91d16956a3d5b8e5f67f52a1aa176abf1d8023b57c18573c8ce5f9
diff --git a/kde-misc/plasma-pass/files/plasma-pass-1.2.0-fix-loggingcategories-dir.patch b/kde-misc/plasma-pass/files/plasma-pass-1.2.0-fix-loggingcategories-dir.patch
deleted file mode 100644
index 5131f7dd54b2..000000000000
--- a/kde-misc/plasma-pass/files/plasma-pass-1.2.0-fix-loggingcategories-dir.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 5f62fcc30e7d6c8248dfb6a263ee4a49e7c19e3b Mon Sep 17 00:00:00 2001
-From: Pino Toscano <pino@kde.org>
-Date: Wed, 17 Feb 2021 21:02:08 +0100
-Subject: [PATCH] cmake: install plasma-pass.categories in newer location
-
-Install plasma-pass.categories in the proper location for it, in case
-ECM >= 5.59.0 is used.
----
- CMakeLists.txt | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c0bed60..c32b637 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -53,7 +53,11 @@ add_subdirectory(plugin)
- if (BUILD_TESTING)
- add_subdirectory(tests)
- endif()
--install( FILES plasma-pass.categories DESTINATION ${KDE_INSTALL_CONFDIR} )
-+if(ECM_VERSION VERSION_GREATER_EQUAL 5.59)
-+ install(FILES plasma-pass.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR})
-+else()
-+ install(FILES plasma-pass.categories DESTINATION ${KDE_INSTALL_CONFDIR})
-+endif()
-
- if(ECM_VERSION VERSION_GREATER_EQUAL 5.79)
- kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
---
-GitLab
-
diff --git a/kde-misc/plasma-pass/files/plasma-pass-1.2.0-no-werror.patch b/kde-misc/plasma-pass/files/plasma-pass-1.2.0-no-werror.patch
deleted file mode 100644
index 42c40bfe923a..000000000000
--- a/kde-misc/plasma-pass/files/plasma-pass-1.2.0-no-werror.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 468db75d4a4f2620921c00ebd91fd7d12e7a2bce Mon Sep 17 00:00:00 2001
-From: David Faure <faure@kde.org>
-Date: Sat, 1 May 2021 21:58:56 +0200
-Subject: [PATCH] Remove -Werror, one can't predict what future compilers will
- do
-
-I assume this was supposed to be set only temporarily.
-
-CCMAIL: dvratil@kde.org
----
- CMakeLists.txt | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 8131494..26cea6e 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -46,8 +46,8 @@ find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
- add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
- add_definitions(-DQT_NO_FOREACH)
-
--set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror -pedantic")
--set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror -pedantic")
-+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic")
-+set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic")
-
- # plasmoid
- plasma_install_package(package org.kde.plasma.pass)
---
-GitLab
-
diff --git a/kde-misc/plasma-pass/plasma-pass-1.2.0-r1.ebuild b/kde-misc/plasma-pass/plasma-pass-1.2.0-r1.ebuild
deleted file mode 100644
index e66dbf2a266a..000000000000
--- a/kde-misc/plasma-pass/plasma-pass-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KFMIN=5.82.0
-QTMIN=5.15.5
-inherit ecm kde.org
-
-DESCRIPTION="Plasma applet to access password from pass"
-HOMEPAGE="https://www.dvratil.cz/2018/05/plasma-pass/ https://invent.kde.org/plasma/plasma-pass"
-
-if [[ ${KDE_BUILD_TYPE} != live ]] ; then
- SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
- KEYWORDS="amd64 ~ppc64"
-fi
-
-LICENSE="LGPL-2.1+"
-SLOT="5"
-IUSE=""
-
-DEPEND="
- >=dev-qt/qtconcurrent-${QTMIN}:5
- >=dev-qt/qtdbus-${QTMIN}:5
- >=dev-qt/qtdeclarative-${QTMIN}:5
- >=dev-qt/qtgraphicaleffects-${QTMIN}:5
- >=dev-qt/qtgui-${QTMIN}:5
- >=kde-frameworks/kcoreaddons-${KFMIN}:5
- >=kde-frameworks/ki18n-${KFMIN}:5
- >=kde-frameworks/kitemmodels-${KFMIN}:5
- >=kde-frameworks/plasma-${KFMIN}:5
- sys-auth/oath-toolkit
-"
-RDEPEND="${DEPEND}
- app-crypt/gnupg
- >=dev-qt/qtquickcontrols2-${QTMIN}:5
- >=kde-frameworks/kirigami-${KFMIN}:5
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-fix-loggingcategories-dir.patch
- "${FILESDIR}"/${P}-no-werror.patch # bug 785832
-)