From 463397cf1e064185110fe57c568d73f99a06f5d1 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 17 Feb 2021 10:35:54 +0000 Subject: gentoo resync : 17.02.2021 --- x11-misc/qlipper/Manifest | 3 -- x11-misc/qlipper/files/qlipper-5.0.0-build.patch | 54 ------------------------ x11-misc/qlipper/qlipper-5.0.0.ebuild | 40 ------------------ 3 files changed, 97 deletions(-) delete mode 100644 x11-misc/qlipper/files/qlipper-5.0.0-build.patch delete mode 100644 x11-misc/qlipper/qlipper-5.0.0.ebuild (limited to 'x11-misc/qlipper') diff --git a/x11-misc/qlipper/Manifest b/x11-misc/qlipper/Manifest index 8e5623c833a4..33e30aa855e9 100644 --- a/x11-misc/qlipper/Manifest +++ b/x11-misc/qlipper/Manifest @@ -1,6 +1,3 @@ -AUX qlipper-5.0.0-build.patch 1690 BLAKE2B 904b17740275aba865f5dc619a4dd95862f2c81995016d655b0a34b4cf4b14471ff675876c80e12806ae5136cd094c97b498888a0709421a8c7720250231ea62 SHA512 b3c137e2a5ff8f838f238431f5b187d205937662003004205565e0d7367faf269e01b069428fec64e05a7f955ca55fedd3617f1974fee519ce033af70ea51b4f -DIST qlipper-5.0.0.tar.gz 94281 BLAKE2B 04834165a70d71fad2ee945c0b8389ffefef110554d234e0b1f25f02f7b33a0c8cf809cafd7f7a74a2845f949d35a6ad8045d23981efdd9e6c091c5e61ac9367 SHA512 d2bd834f33531a175201244bdd6e9436da16c6f77e1fdc79616c8c3faef531ae50d4cc3b072074fd5efa494cc7be30ffe617912cf54494a66a72420095b0c642 DIST qlipper-5.1.2.tar.gz 104652 BLAKE2B 841b984d4720dfe7d69424a79beee8d84f5d66109ac1afb75c39cf16ff27da309d929f91eab2222e43a547d4d010809f31d59adb321c9f9f0ae19fb580cff0a2 SHA512 1ad49424855abf5f446026856178291b6ed8c1152338013f2228bbe5a923bc2e989754fe41e8b03f069f815c3850073eb1063842b5f40462005693a9029b187b -EBUILD qlipper-5.0.0.ebuild 774 BLAKE2B d416c001338ac1b644282e4d2ab6c9153030a77c6d73d9ed27c55f98120f11d09a4bfbf6440b64c5352ae58f7b6d59b7d3fb0e9426d6b714d4d7308a8346ec4c SHA512 214ef740bea26e7646f77fee465aba7f25f566783503e5b66556e537cfb29cdca6588614a4de1645c01d84fb7fdfd6830d0285f77d1debf1c6c80e8f6dff0b51 EBUILD qlipper-5.1.2.ebuild 669 BLAKE2B d462649c3b3e35e636293da4d125d08e47b076b6909b01127c7b5a184e23efd2d728870e5713bb7d725b454ddcf21374f9701fe5b58e1ac650abc733a5471390 SHA512 1647756c69566c8b2a75602975a79ddee841f595ad4ce3705efa33d316bee3db73018ec57b1123bf305901103e749d4808a2c30e08274f9f9b421c958b5695bc MISC metadata.xml 326 BLAKE2B 345890725be13fba9c48c60bcdf1be0b14d41d803820fa1d7fa170d44c442a60c50454552697386ddd3732b3d5226f8c96e66fea9bd1b75a1a7c48a08d8e3520 SHA512 5a8bfb530bd363777d529b7b70eec99ba70e6ee41ad9f6fb5ba7fd4c9259ffd381d4343d7a1c6dce34fc1566f5cab4fd474bc3726bbee49edc92d78250d87775 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 -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 --#ifndef ENABLE_NETWORK_CLIPBOARD_SHARING -+#ifdef ENABLE_NETWORK_CLIPBOARD_SHARING - #include - #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 -- -+#include - - typedef QHash ClipboardContent; - typedef QHashIterator 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 -} -- cgit v1.2.3