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: Fri, 14 Sep 2018 22:47:01
Message-Id: 1536965209.77fbe85a7a8c331b5286f8e67911bc67ec8cee6a.mgorny@gentoo
1 commit: 77fbe85a7a8c331b5286f8e67911bc67ec8cee6a
2 Author: Gino <onigino <AT> protonmail <DOT> com>
3 AuthorDate: Mon Aug 20 00:24:08 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 14 22:46:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77fbe85a
7
8 x11-apps/copyq: Add new version 3.5.0
9
10 Closes: https://github.com/gentoo/gentoo/pull/9259
11
12 x11-apps/copyq/Manifest | 1 +
13 x11-apps/copyq/copyq-3.5.0.ebuild | 47 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
17 index 75dbe8eb070..bcf3fb2265b 100644
18 --- a/x11-apps/copyq/Manifest
19 +++ b/x11-apps/copyq/Manifest
20 @@ -1 +1,2 @@
21 +DIST CopyQ-3.5.0.tar.gz 3004460 BLAKE2B 30b2d732e87dd5ffea4d07adec14a377feddf2b7e89caf235e0a6bde5781419ec186bf40c687f14d658603ed3aebe43e5010a062560748a8dc00311f0f52a821 SHA512 9e662c8f80a59d58fbc8c51990682bfe61582ebdeba240e49996aab618b0a118422b0f2023952ef8cdf8e00f50ec4d7c67bd874abacf564226fb096dcc6d944d
22 DIST copyq-2.8.1.tar.gz 1573991 BLAKE2B 464c7fb462638ae717ee70dffcf5fb6eaf628dd4640c9db9d757769ac07479424fc953d81c92ed0e11015802432a9e556171994e8e2da7d0ce11868dcdf57cb6 SHA512 77602d39b0cb5fd0c8bd8d6c1ba5079e95ad72dc846c3e273556ffe029732e65bfd0951954de856c894bd7b6ebae816dfe7048040d77f7f3cd07faa922260b57
23
24 diff --git a/x11-apps/copyq/copyq-3.5.0.ebuild b/x11-apps/copyq/copyq-3.5.0.ebuild
25 new file mode 100644
26 index 00000000000..1607b43b019
27 --- /dev/null
28 +++ b/x11-apps/copyq/copyq-3.5.0.ebuild
29 @@ -0,0 +1,47 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit cmake-utils
36 +
37 +MY_P=CopyQ-${PV}
38 +
39 +DESCRIPTION="Clipboard manager with advanced features"
40 +HOMEPAGE="https://github.com/hluk/CopyQ"
41 +SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
46 +IUSE="test webkit"
47 +
48 +RESTRICT="!test? ( test )"
49 +
50 +RDEPEND="
51 + dev-qt/qtcore:5
52 + dev-qt/qtgui:5
53 + dev-qt/qtnetwork:5
54 + dev-qt/qtscript:5
55 + dev-qt/qtsvg:5
56 + dev-qt/qtwidgets:5
57 + x11-libs/libX11
58 + x11-libs/libXfixes
59 + x11-libs/libXtst
60 + webkit? ( dev-qt/qtwebkit:5 )
61 +"
62 +DEPEND="${RDEPEND}
63 + dev-qt/linguist-tools:5
64 + test? ( dev-qt/qttest:5 )
65 +"
66 +S=${WORKDIR}/$MY_P
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 +}