Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
Date: Sat, 20 Apr 2019 23:20:29
Message-Id: 1555710465.55953dc0bd629238edf4a685a238336766d4d523.mgorny@gentoo
1 commit: 55953dc0bd629238edf4a685a238336766d4d523
2 Author: Gino McCarty <onigino <AT> protonmail <DOT> com>
3 AuthorDate: Mon Mar 25 20:48:58 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 19 21:47:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55953dc0
7
8 x11-apps/copyq: Drop Old Version
9
10 * Drop version 2.8.1
11
12 Signed-off-by: Gino McCarty <onigino <AT> protonmail.com>
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 x11-apps/copyq/Manifest | 1 -
16 x11-apps/copyq/copyq-2.8.1.ebuild | 44 ---------------------------------------
17 2 files changed, 45 deletions(-)
18
19 diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
20 index a9dfd0e3a5a..591dd4778a9 100644
21 --- a/x11-apps/copyq/Manifest
22 +++ b/x11-apps/copyq/Manifest
23 @@ -1,2 +1 @@
24 DIST CopyQ-3.7.2.tar.gz 2882944 BLAKE2B 3fd90b719b931ad9d92cca97f3ad284dc454ea5644907fa61b51b70eef5c42f41d52323346c0d24611c99cd2004a0528111125726d5cefe64f2cc9ead22d1f94 SHA512 dff6530375ea674502b754866c0011f3436796fc0535dc9cd317640b8cab4620e821b440df62d229a3d1dba371a7ae0c4a03e5d3366dd845218ab1516196d730
25 -DIST copyq-2.8.1.tar.gz 1573991 BLAKE2B 464c7fb462638ae717ee70dffcf5fb6eaf628dd4640c9db9d757769ac07479424fc953d81c92ed0e11015802432a9e556171994e8e2da7d0ce11868dcdf57cb6 SHA512 77602d39b0cb5fd0c8bd8d6c1ba5079e95ad72dc846c3e273556ffe029732e65bfd0951954de856c894bd7b6ebae816dfe7048040d77f7f3cd07faa922260b57
26
27 diff --git a/x11-apps/copyq/copyq-2.8.1.ebuild b/x11-apps/copyq/copyq-2.8.1.ebuild
28 deleted file mode 100644
29 index 128db7ff345..00000000000
30 --- a/x11-apps/copyq/copyq-2.8.1.ebuild
31 +++ /dev/null
32 @@ -1,44 +0,0 @@
33 -# Copyright 1999-2017 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit cmake-utils multilib
39 -
40 -DESCRIPTION="Clipboard manager with advanced features"
41 -HOMEPAGE="https://github.com/hluk/CopyQ"
42 -SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
47 -IUSE="test webkit"
48 -
49 -RDEPEND="
50 - dev-qt/qtcore:5
51 - dev-qt/qtgui:5
52 - dev-qt/qtnetwork:5
53 - dev-qt/qtscript:5
54 - dev-qt/qtsvg:5
55 - dev-qt/qtwidgets:5
56 - x11-libs/libX11
57 - x11-libs/libXfixes
58 - x11-libs/libXtst
59 - webkit? ( dev-qt/qtwebkit:5 )
60 -"
61 -DEPEND="${RDEPEND}
62 - dev-qt/linguist-tools:5
63 - test? ( dev-qt/qttest:5 )
64 -"
65 -
66 -S=${WORKDIR}/CopyQ-${PV}
67 -
68 -src_configure() {
69 - local mycmakeargs=(
70 - -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
71 - -DWITH_QT5=ON
72 - -DWITH_TESTS=$(usex test)
73 - -DWITH_WEBKIT=$(usex webkit)
74 - )
75 - cmake-utils_src_configure
76 -}