summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-02-14 19:11:21 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2021-02-14 20:04:30 +0100
commit7b36c103944def7f1d26083a9bb36377e7421c9a (patch)
tree27ec96432542175b7ac7b2ea6e13457dc86d5296 /x11-misc
parentxfce-extra/xfce4-cpugraph-plugin: Bump to 1.2.2 (diff)
downloadgentoo-7b36c103944def7f1d26083a9bb36377e7421c9a.tar.gz
gentoo-7b36c103944def7f1d26083a9bb36377e7421c9a.tar.bz2
gentoo-7b36c103944def7f1d26083a9bb36377e7421c9a.zip
x11-misc/qlipper: Drop 5.0.0
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/qlipper/Manifest1
-rw-r--r--x11-misc/qlipper/files/qlipper-5.0.0-build.patch54
-rw-r--r--x11-misc/qlipper/qlipper-5.0.0.ebuild40
3 files changed, 0 insertions, 95 deletions
diff --git a/x11-misc/qlipper/Manifest b/x11-misc/qlipper/Manifest
index b79245def69e..1b92b1d7fd0b 100644
--- a/x11-misc/qlipper/Manifest
+++ b/x11-misc/qlipper/Manifest
@@ -1,2 +1 @@
-DIST qlipper-5.0.0.tar.gz 94281 BLAKE2B 04834165a70d71fad2ee945c0b8389ffefef110554d234e0b1f25f02f7b33a0c8cf809cafd7f7a74a2845f949d35a6ad8045d23981efdd9e6c091c5e61ac9367 SHA512 d2bd834f33531a175201244bdd6e9436da16c6f77e1fdc79616c8c3faef531ae50d4cc3b072074fd5efa494cc7be30ffe617912cf54494a66a72420095b0c642
DIST qlipper-5.1.2.tar.gz 104652 BLAKE2B 841b984d4720dfe7d69424a79beee8d84f5d66109ac1afb75c39cf16ff27da309d929f91eab2222e43a547d4d010809f31d59adb321c9f9f0ae19fb580cff0a2 SHA512 1ad49424855abf5f446026856178291b6ed8c1152338013f2228bbe5a923bc2e989754fe41e8b03f069f815c3850073eb1063842b5f40462005693a9029b187b
diff --git a/x11-misc/qlipper/files/qlipper-5.0.0-build.patch b/x11-misc/qlipper/files/qlipper-5.0.0-build.patch
deleted file mode 100644
index 20f6b35c56a1..000000000000
--- a/x11-misc/qlipper/files/qlipper-5.0.0-build.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From b3cb6a08c82deacb905459b66f16eda35f0c3779 Mon Sep 17 00:00:00 2001
-From: Michael Palimaka <kensington@gentoo.org>
-Date: Wed, 9 Nov 2016 21:42:08 +1100
-Subject: [PATCH] Fix build with ENABLE_NETWORK_CLIPBOARD_SHARING enabled.
-
-qlippernetwork.cpp expects network-related variables to be available if
-ENABLE_NETWORK_CLIPBOARD_SHARING is defined, but qlippernetwork.h defined those
-variables if ENABLE_NETWORK_CLIPBOARD_SHARING was *un*defined.
-
-This also adds a missing include that is no longer available transitively via
-QtNetwork/QUdpSocket.
----
- src/qlippernetwork.h | 4 ++--
- src/qlippertypes.h | 2 +-
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/qlippernetwork.h b/src/qlippernetwork.h
-index 9163cf8..ce1ac9a 100644
---- a/src/qlippernetwork.h
-+++ b/src/qlippernetwork.h
-@@ -21,7 +21,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
- #define QLIPPERNETWORK_H
-
- #include <QtCore/QObject>
--#ifndef ENABLE_NETWORK_CLIPBOARD_SHARING
-+#ifdef ENABLE_NETWORK_CLIPBOARD_SHARING
- #include <QtNetwork/QUdpSocket>
- #endif
- #include "qlippertypes.h"
-@@ -38,7 +38,7 @@ public slots:
- void sendData(const ClipboardContent &value);
-
- private:
--#ifndef ENABLE_NETWORK_CLIPBOARD_SHARING
-+#ifdef ENABLE_NETWORK_CLIPBOARD_SHARING
- QUdpSocket *m_socket;
- QString m_id;
- #endif
-diff --git a/src/qlippertypes.h b/src/qlippertypes.h
-index b55f0e1..c97c311 100644
---- a/src/qlippertypes.h
-+++ b/src/qlippertypes.h
-@@ -2,7 +2,7 @@
- #define QLIPPERTYPES_H
-
- #include <QMetaType>
--
-+#include <QHashIterator>
-
- typedef QHash<QString,QByteArray> ClipboardContent;
- typedef QHashIterator<QString,QByteArray> ClipboardContentIterator;
---
-2.7.3
-
diff --git a/x11-misc/qlipper/qlipper-5.0.0.ebuild b/x11-misc/qlipper/qlipper-5.0.0.ebuild
deleted file mode 100644
index ac11c2bd92c9..000000000000
--- a/x11-misc/qlipper/qlipper-5.0.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils gnome2-utils
-
-DESCRIPTION="Lightweight and cross-platform clipboard history applet"
-HOMEPAGE="https://github.com/pvanek/qlipper"
-SRC_URI="https://github.com/pvanek/qlipper/archive/5.0.0.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-# bundles x11-libs/libqxt but no qt5 system version is available yet
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- x11-libs/libX11
-"
-DEPEND="${RDEPEND}
- dev-qt/linguist-tools:5
-"
-
-PATCHES=( "${FILESDIR}/${P}-build.patch" )
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}