* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2015-09-22 9:19 Justin Lecher
0 siblings, 0 replies; 18+ messages in thread
From: Justin Lecher @ 2015-09-22 9:19 UTC (permalink / raw
To: gentoo-commits
commit: bc73443fc9d6d6d3775890225c5f30101121d5a5
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 22 09:18:59 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Sep 22 09:19:08 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc73443f
x11-apps/copyq: New package
initial ebuild written by keenblade and Paul Tobias
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=499350
Package-Manager: portage-2.2.21
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
x11-apps/copyq/Manifest | 1 +
x11-apps/copyq/copyq-2.4.9.ebuild | 51 +++++++++++++++++++++++++++++++++++++++
x11-apps/copyq/metadata.xml | 14 +++++++++++
3 files changed, 66 insertions(+)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
new file mode 100644
index 0000000..db3b0fd
--- /dev/null
+++ b/x11-apps/copyq/Manifest
@@ -0,0 +1 @@
+DIST copyq-2.4.9.tar.gz 1415277 SHA256 0736602eef82bd8ddfb7edb2a4c49b898897f7d25ddc2ae249ed50fd4406a8f4 SHA512 e790b2d7531a3e4eb3b88af720074ba35aedae8ef530ee89c78d798720fcf5668b52f4c7f27ea22828dbfac33dbf22260f69294e3fff587c2d05a36844210421 WHIRLPOOL 0cf03d36a9a7b1f1f62453af30b2301929d0ffc022c7e6290346fe6a9af11cb0a1a7a8128daf10fd73166a9ba4f6c9f2c57899229b1fc404ffe6b81dedfa3b78
diff --git a/x11-apps/copyq/copyq-2.4.9.ebuild b/x11-apps/copyq/copyq-2.4.9.ebuild
new file mode 100644
index 0000000..831a965
--- /dev/null
+++ b/x11-apps/copyq/copyq-2.4.9.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils multilib
+
+DESCRIPTION="Clipboard manager with advanced features"
+HOMEPAGE="https://github.com/hluk/CopyQ"
+SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="qt4 +qt5 test webkit"
+
+REQUIRED_USE="|| ( qt4 qt5 )"
+
+RDEPEND="
+ x11-libs/libX11
+ x11-libs/libXfixes
+ x11-libs/libXtst
+ qt4? (
+ dev-qt/qtcore:4=
+ dev-qt/qtgui:4=
+ dev-qt/qtscript:4=
+ webkit? ( dev-qt/qtwebkit:4= )
+ )
+ qt5? (
+ dev-qt/qtcore:5=
+ dev-qt/qtgui:5=
+ dev-qt/qtnetwork:5=
+ dev-qt/qtscript:5=
+ dev-qt/qtwidgets:5=
+ webkit? ( dev-qt/qtwebkit:5= )
+ )
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}"/CopyQ-${PV}
+
+src_configure() {
+ mycmakeargs=(
+ $(cmake-utils_use_with qt5)
+ $(cmake-utils_use_with webkit)
+ $(cmake-utils_use_with test TESTS)
+ -DPLUGIN_INSTALL_PREFIX=/usr/$(get_libdir)/${PN}/plugins/
+ )
+ cmake-utils_src_configure
+}
diff --git a/x11-apps/copyq/metadata.xml b/x11-apps/copyq/metadata.xml
new file mode 100644
index 0000000..584ed1f
--- /dev/null
+++ b/x11-apps/copyq/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer>
+ <email>jlec@gentoo.org</email>
+ <name>Justin Lecher</name>
+ </maintainer>
+ <use>
+ <flag name="webkit">
+ enables the application to use advanced HTML rendering and fetching
+ remote images and other data
+ </flag>
+ </use>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2015-09-23 11:15 Justin Lecher
0 siblings, 0 replies; 18+ messages in thread
From: Justin Lecher @ 2015-09-23 11:15 UTC (permalink / raw
To: gentoo-commits
commit: 5f7c1c9b85a29b5914791bcdaae9e6070eb0736e
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 23 11:14:25 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Sep 23 11:15:40 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7c1c9b
Add missing remote-id
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
x11-apps/copyq/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/x11-apps/copyq/metadata.xml b/x11-apps/copyq/metadata.xml
index 584ed1f..5b9f2bc 100644
--- a/x11-apps/copyq/metadata.xml
+++ b/x11-apps/copyq/metadata.xml
@@ -11,4 +11,7 @@
remote images and other data
</flag>
</use>
+ <upstream>
+ <remote-id type="github">hluk/CopyQ</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2016-01-14 9:43 Jeroen Roovers
0 siblings, 0 replies; 18+ messages in thread
From: Jeroen Roovers @ 2016-01-14 9:43 UTC (permalink / raw
To: gentoo-commits
commit: 1dd7286acd8513dd07516839aa5e558cabd0bb24
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 14 09:43:02 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Jan 14 09:43:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dd7286a
x11-apps/copyq: Drop desktop-misc.
Package-Manager: portage-2.2.26
x11-apps/copyq/metadata.xml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/x11-apps/copyq/metadata.xml b/x11-apps/copyq/metadata.xml
index 1732d4a..2a98a21 100644
--- a/x11-apps/copyq/metadata.xml
+++ b/x11-apps/copyq/metadata.xml
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>desktop-misc</herd>
+ <maintainer>
+ <email>maintainer-needed@gentoo.org</email>
+ </maintainer>
<use>
<flag name="webkit">
enables the application to use advanced HTML rendering and fetching
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2016-01-14 9:50 Michael Palimaka
0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2016-01-14 9:50 UTC (permalink / raw
To: gentoo-commits
commit: 1ca760da3c7b6934f44758f0f011746802bc20f2
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 14 09:49:07 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Jan 14 09:49:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ca760da
x11-apps/copyq: remove incorrectly used subslot operator
Gentoo-bug: 571816
Package-Manager: portage-2.2.26
x11-apps/copyq/copyq-2.4.9.ebuild | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/x11-apps/copyq/copyq-2.4.9.ebuild b/x11-apps/copyq/copyq-2.4.9.ebuild
index 831a965..e33c6e6 100644
--- a/x11-apps/copyq/copyq-2.4.9.ebuild
+++ b/x11-apps/copyq/copyq-2.4.9.ebuild
@@ -22,18 +22,18 @@ RDEPEND="
x11-libs/libXfixes
x11-libs/libXtst
qt4? (
- dev-qt/qtcore:4=
- dev-qt/qtgui:4=
- dev-qt/qtscript:4=
- webkit? ( dev-qt/qtwebkit:4= )
+ dev-qt/qtcore:4
+ dev-qt/qtgui:4
+ dev-qt/qtscript:4
+ webkit? ( dev-qt/qtwebkit:4 )
)
qt5? (
- dev-qt/qtcore:5=
- dev-qt/qtgui:5=
- dev-qt/qtnetwork:5=
- dev-qt/qtscript:5=
- dev-qt/qtwidgets:5=
- webkit? ( dev-qt/qtwebkit:5= )
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtscript:5
+ dev-qt/qtwidgets:5
+ webkit? ( dev-qt/qtwebkit:5 )
)
"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2016-01-16 11:50 Pacho Ramos
0 siblings, 0 replies; 18+ messages in thread
From: Pacho Ramos @ 2016-01-16 11:50 UTC (permalink / raw
To: gentoo-commits
commit: 9bd0d1714e44d9af3f4b99c6ffed448414a95054
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 16 11:50:10 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jan 16 11:50:39 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd0d171
x11-apps/copyq: Version bump
Package-Manager: portage-2.2.26
x11-apps/copyq/Manifest | 1 +
x11-apps/copyq/copyq-2.5.0.ebuild | 55 +++++++++++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index db3b0fd..5782a50 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1 +1,2 @@
DIST copyq-2.4.9.tar.gz 1415277 SHA256 0736602eef82bd8ddfb7edb2a4c49b898897f7d25ddc2ae249ed50fd4406a8f4 SHA512 e790b2d7531a3e4eb3b88af720074ba35aedae8ef530ee89c78d798720fcf5668b52f4c7f27ea22828dbfac33dbf22260f69294e3fff587c2d05a36844210421 WHIRLPOOL 0cf03d36a9a7b1f1f62453af30b2301929d0ffc022c7e6290346fe6a9af11cb0a1a7a8128daf10fd73166a9ba4f6c9f2c57899229b1fc404ffe6b81dedfa3b78
+DIST copyq-2.5.0.tar.gz 1428790 SHA256 7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1 SHA512 0489c95fe8365ef9d927e14ad42c01ff9533928e403edbb92d0b9935713d7944edab1f939f100f74a0ddb219c4cf57cedf955362f35d23c706e25c64de725cc7 WHIRLPOOL f41d6ee1bf4fea4ab38bb01b4ef26988bb9968f1a8bc6ed21637318e687419853fc406fe688f01bc83cbce90f67bd9f98db2e48cda80afebcb2bb9897b7e63a5
diff --git a/x11-apps/copyq/copyq-2.5.0.ebuild b/x11-apps/copyq/copyq-2.5.0.ebuild
new file mode 100644
index 0000000..0f9fa1d
--- /dev/null
+++ b/x11-apps/copyq/copyq-2.5.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit cmake-utils multilib
+
+DESCRIPTION="Clipboard manager with advanced features"
+HOMEPAGE="https://github.com/hluk/CopyQ"
+SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="qt4 +qt5 test webkit"
+
+REQUIRED_USE="|| ( qt4 qt5 )"
+
+RDEPEND="
+ x11-libs/libX11
+ x11-libs/libXfixes
+ x11-libs/libXtst
+ qt4? (
+ dev-qt/qtcore:4
+ dev-qt/qtgui:4
+ dev-qt/qtscript:4
+ webkit? ( dev-qt/qtwebkit:4 )
+ )
+ qt5? (
+ dev-qt/linguist-tools:5
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtscript:5
+ dev-qt/qtsvg:5
+ dev-qt/qtwidgets:5
+ webkit? ( dev-qt/qtwebkit:5 )
+ )
+"
+DEPEND="${RDEPEND}
+ qt4? ( test? ( dev-qt/qttest:4 ) )
+ qt5? ( test? ( dev-qt/qttest:5 ) )
+"
+
+S="${WORKDIR}"/CopyQ-${PV}
+
+src_configure() {
+ mycmakeargs=(
+ $(cmake-utils_use_with qt5)
+ $(cmake-utils_use_with webkit)
+ $(cmake-utils_use_with test TESTS)
+ -DPLUGIN_INSTALL_PREFIX=/usr/$(get_libdir)/${PN}/plugins/
+ )
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2016-01-16 11:50 Pacho Ramos
0 siblings, 0 replies; 18+ messages in thread
From: Pacho Ramos @ 2016-01-16 11:50 UTC (permalink / raw
To: gentoo-commits
commit: 2195ad682ebf8bc87adb0e0dc0b4cbd8c78f153f
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 16 11:50:22 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jan 16 11:50:42 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2195ad68
x11-apps/copyq: Drop old
Package-Manager: portage-2.2.26
x11-apps/copyq/Manifest | 1 -
x11-apps/copyq/copyq-2.4.9.ebuild | 51 ---------------------------------------
2 files changed, 52 deletions(-)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index 5782a50..e408044 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1,2 +1 @@
-DIST copyq-2.4.9.tar.gz 1415277 SHA256 0736602eef82bd8ddfb7edb2a4c49b898897f7d25ddc2ae249ed50fd4406a8f4 SHA512 e790b2d7531a3e4eb3b88af720074ba35aedae8ef530ee89c78d798720fcf5668b52f4c7f27ea22828dbfac33dbf22260f69294e3fff587c2d05a36844210421 WHIRLPOOL 0cf03d36a9a7b1f1f62453af30b2301929d0ffc022c7e6290346fe6a9af11cb0a1a7a8128daf10fd73166a9ba4f6c9f2c57899229b1fc404ffe6b81dedfa3b78
DIST copyq-2.5.0.tar.gz 1428790 SHA256 7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1 SHA512 0489c95fe8365ef9d927e14ad42c01ff9533928e403edbb92d0b9935713d7944edab1f939f100f74a0ddb219c4cf57cedf955362f35d23c706e25c64de725cc7 WHIRLPOOL f41d6ee1bf4fea4ab38bb01b4ef26988bb9968f1a8bc6ed21637318e687419853fc406fe688f01bc83cbce90f67bd9f98db2e48cda80afebcb2bb9897b7e63a5
diff --git a/x11-apps/copyq/copyq-2.4.9.ebuild b/x11-apps/copyq/copyq-2.4.9.ebuild
deleted file mode 100644
index e33c6e6..0000000
--- a/x11-apps/copyq/copyq-2.4.9.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils multilib
-
-DESCRIPTION="Clipboard manager with advanced features"
-HOMEPAGE="https://github.com/hluk/CopyQ"
-SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="qt4 +qt5 test webkit"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-RDEPEND="
- x11-libs/libX11
- x11-libs/libXfixes
- x11-libs/libXtst
- qt4? (
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- dev-qt/qtscript:4
- webkit? ( dev-qt/qtwebkit:4 )
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtscript:5
- dev-qt/qtwidgets:5
- webkit? ( dev-qt/qtwebkit:5 )
- )
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"/CopyQ-${PV}
-
-src_configure() {
- mycmakeargs=(
- $(cmake-utils_use_with qt5)
- $(cmake-utils_use_with webkit)
- $(cmake-utils_use_with test TESTS)
- -DPLUGIN_INSTALL_PREFIX=/usr/$(get_libdir)/${PN}/plugins/
- )
- cmake-utils_src_configure
-}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2016-04-23 13:50 Davide Pesavento
0 siblings, 0 replies; 18+ messages in thread
From: Davide Pesavento @ 2016-04-23 13:50 UTC (permalink / raw
To: gentoo-commits
commit: 9882f5502a5290c586acdda6a3d5e0c88bfd0d37
Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 23 13:49:59 2016 +0000
Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Sat Apr 23 13:49:59 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9882f550
x11-apps/copyq: linguist-tools is a build-time dep only
Gentoo-Bug: 544938
Package-Manager: portage-2.2.28
x11-apps/copyq/copyq-2.5.0.ebuild | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/x11-apps/copyq/copyq-2.5.0.ebuild b/x11-apps/copyq/copyq-2.5.0.ebuild
index 0f9fa1d..a9e7b65 100644
--- a/x11-apps/copyq/copyq-2.5.0.ebuild
+++ b/x11-apps/copyq/copyq-2.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -27,7 +27,6 @@ RDEPEND="
webkit? ( dev-qt/qtwebkit:4 )
)
qt5? (
- dev-qt/linguist-tools:5
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
@@ -38,18 +37,23 @@ RDEPEND="
)
"
DEPEND="${RDEPEND}
- qt4? ( test? ( dev-qt/qttest:4 ) )
- qt5? ( test? ( dev-qt/qttest:5 ) )
+ qt4? (
+ test? ( dev-qt/qttest:4 )
+ )
+ qt5? (
+ dev-qt/linguist-tools:5
+ test? ( dev-qt/qttest:5 )
+ )
"
-S="${WORKDIR}"/CopyQ-${PV}
+S=${WORKDIR}/CopyQ-${PV}
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with qt5)
$(cmake-utils_use_with webkit)
$(cmake-utils_use_with test TESTS)
- -DPLUGIN_INSTALL_PREFIX=/usr/$(get_libdir)/${PN}/plugins/
+ -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
)
cmake-utils_src_configure
}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2016-12-22 18:16 Michael Palimaka
0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2016-12-22 18:16 UTC (permalink / raw
To: gentoo-commits
commit: e00b841d0a2cbd092c74e25ad41d8c2c667f24e8
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 22 18:14:16 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Dec 22 18:16:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e00b841d
x11-apps/copyq: version bump to 2.8.1
Package-Manager: Portage-2.3.3, Repoman-2.3.1
x11-apps/copyq/Manifest | 1 +
x11-apps/copyq/copyq-2.8.1.ebuild | 45 +++++++++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index e408044..50d78cd 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1 +1,2 @@
DIST copyq-2.5.0.tar.gz 1428790 SHA256 7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1 SHA512 0489c95fe8365ef9d927e14ad42c01ff9533928e403edbb92d0b9935713d7944edab1f939f100f74a0ddb219c4cf57cedf955362f35d23c706e25c64de725cc7 WHIRLPOOL f41d6ee1bf4fea4ab38bb01b4ef26988bb9968f1a8bc6ed21637318e687419853fc406fe688f01bc83cbce90f67bd9f98db2e48cda80afebcb2bb9897b7e63a5
+DIST copyq-2.8.1.tar.gz 1573991 SHA256 83fffc3451973749e4652d28af28f589c0418d1393a4b9121104736d67466f2d SHA512 77602d39b0cb5fd0c8bd8d6c1ba5079e95ad72dc846c3e273556ffe029732e65bfd0951954de856c894bd7b6ebae816dfe7048040d77f7f3cd07faa922260b57 WHIRLPOOL 5a4bbf38e3ed08abf3290dfd299031cf54ffc99449c8e84c0a6ef0d221031104e21553cb9fb6e67ed7ac330d463a40485f2419a03252e4f64934b9fbc5125375
diff --git a/x11-apps/copyq/copyq-2.8.1.ebuild b/x11-apps/copyq/copyq-2.8.1.ebuild
new file mode 100644
index 00000000..d4bd7a0
--- /dev/null
+++ b/x11-apps/copyq/copyq-2.8.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils multilib
+
+DESCRIPTION="Clipboard manager with advanced features"
+HOMEPAGE="https://github.com/hluk/CopyQ"
+SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test webkit"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtscript:5
+ dev-qt/qtsvg:5
+ dev-qt/qtwidgets:5
+ x11-libs/libX11
+ x11-libs/libXfixes
+ x11-libs/libXtst
+ test? ( dev-qt/qttest:5 )
+ webkit? ( dev-qt/qtwebkit:5 )
+"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5
+"
+
+S=${WORKDIR}/CopyQ-${PV}
+
+src_configure() {
+ local mycmakeargs=(
+ -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
+ -DWITH_QT5=ON
+ -DWITH_TESTS=$(usex test)
+ -DWITH_WEBKIT=$(usex webkit)
+ )
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2017-01-12 17:56 Michael Palimaka
0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2017-01-12 17:56 UTC (permalink / raw
To: gentoo-commits
commit: 3fda7e3d4c1a680f11450b4f63fb90e90a98bf65
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 12 17:56:14 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Jan 12 17:56:24 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fda7e3d
x11-apps/copyq: remove 2.5.0
Package-Manager: Portage-2.3.3, Repoman-2.3.1
x11-apps/copyq/Manifest | 1 -
x11-apps/copyq/copyq-2.5.0.ebuild | 59 ---------------------------------------
2 files changed, 60 deletions(-)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index 50d78cd..96527b8 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1,2 +1 @@
-DIST copyq-2.5.0.tar.gz 1428790 SHA256 7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1 SHA512 0489c95fe8365ef9d927e14ad42c01ff9533928e403edbb92d0b9935713d7944edab1f939f100f74a0ddb219c4cf57cedf955362f35d23c706e25c64de725cc7 WHIRLPOOL f41d6ee1bf4fea4ab38bb01b4ef26988bb9968f1a8bc6ed21637318e687419853fc406fe688f01bc83cbce90f67bd9f98db2e48cda80afebcb2bb9897b7e63a5
DIST copyq-2.8.1.tar.gz 1573991 SHA256 83fffc3451973749e4652d28af28f589c0418d1393a4b9121104736d67466f2d SHA512 77602d39b0cb5fd0c8bd8d6c1ba5079e95ad72dc846c3e273556ffe029732e65bfd0951954de856c894bd7b6ebae816dfe7048040d77f7f3cd07faa922260b57 WHIRLPOOL 5a4bbf38e3ed08abf3290dfd299031cf54ffc99449c8e84c0a6ef0d221031104e21553cb9fb6e67ed7ac330d463a40485f2419a03252e4f64934b9fbc5125375
diff --git a/x11-apps/copyq/copyq-2.5.0.ebuild b/x11-apps/copyq/copyq-2.5.0.ebuild
deleted file mode 100644
index a9e7b65..00000000
--- a/x11-apps/copyq/copyq-2.5.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit cmake-utils multilib
-
-DESCRIPTION="Clipboard manager with advanced features"
-HOMEPAGE="https://github.com/hluk/CopyQ"
-SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="qt4 +qt5 test webkit"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-RDEPEND="
- x11-libs/libX11
- x11-libs/libXfixes
- x11-libs/libXtst
- qt4? (
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- dev-qt/qtscript:4
- webkit? ( dev-qt/qtwebkit:4 )
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtscript:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- webkit? ( dev-qt/qtwebkit:5 )
- )
-"
-DEPEND="${RDEPEND}
- qt4? (
- test? ( dev-qt/qttest:4 )
- )
- qt5? (
- dev-qt/linguist-tools:5
- test? ( dev-qt/qttest:5 )
- )
-"
-
-S=${WORKDIR}/CopyQ-${PV}
-
-src_configure() {
- mycmakeargs=(
- $(cmake-utils_use_with qt5)
- $(cmake-utils_use_with webkit)
- $(cmake-utils_use_with test TESTS)
- -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
- )
- cmake-utils_src_configure
-}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2017-05-26 10:00 David Seifert
0 siblings, 0 replies; 18+ messages in thread
From: David Seifert @ 2017-05-26 10:00 UTC (permalink / raw
To: gentoo-commits
commit: f62b7af3e8fcbf5d672a22a83abc21e69d7886fd
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri May 26 09:50:14 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri May 26 09:50:14 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62b7af3
x11-apps/copyq: [QA] Put 'test?' USE conditional in DEPEND
Package-Manager: Portage-2.3.6, Repoman-2.3.2
x11-apps/copyq/copyq-2.8.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-apps/copyq/copyq-2.8.1.ebuild b/x11-apps/copyq/copyq-2.8.1.ebuild
index e740eb96ba6..128db7ff345 100644
--- a/x11-apps/copyq/copyq-2.8.1.ebuild
+++ b/x11-apps/copyq/copyq-2.8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -24,11 +24,11 @@ RDEPEND="
x11-libs/libX11
x11-libs/libXfixes
x11-libs/libXtst
- test? ( dev-qt/qttest:5 )
webkit? ( dev-qt/qtwebkit:5 )
"
DEPEND="${RDEPEND}
dev-qt/linguist-tools:5
+ test? ( dev-qt/qttest:5 )
"
S=${WORKDIR}/CopyQ-${PV}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2018-09-14 22:46 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2018-09-14 22:46 UTC (permalink / raw
To: gentoo-commits
commit: 77fbe85a7a8c331b5286f8e67911bc67ec8cee6a
Author: Gino <onigino <AT> protonmail <DOT> com>
AuthorDate: Mon Aug 20 00:24:08 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep 14 22:46:49 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77fbe85a
x11-apps/copyq: Add new version 3.5.0
Closes: https://github.com/gentoo/gentoo/pull/9259
x11-apps/copyq/Manifest | 1 +
x11-apps/copyq/copyq-3.5.0.ebuild | 47 +++++++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index 75dbe8eb070..bcf3fb2265b 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1 +1,2 @@
+DIST CopyQ-3.5.0.tar.gz 3004460 BLAKE2B 30b2d732e87dd5ffea4d07adec14a377feddf2b7e89caf235e0a6bde5781419ec186bf40c687f14d658603ed3aebe43e5010a062560748a8dc00311f0f52a821 SHA512 9e662c8f80a59d58fbc8c51990682bfe61582ebdeba240e49996aab618b0a118422b0f2023952ef8cdf8e00f50ec4d7c67bd874abacf564226fb096dcc6d944d
DIST copyq-2.8.1.tar.gz 1573991 BLAKE2B 464c7fb462638ae717ee70dffcf5fb6eaf628dd4640c9db9d757769ac07479424fc953d81c92ed0e11015802432a9e556171994e8e2da7d0ce11868dcdf57cb6 SHA512 77602d39b0cb5fd0c8bd8d6c1ba5079e95ad72dc846c3e273556ffe029732e65bfd0951954de856c894bd7b6ebae816dfe7048040d77f7f3cd07faa922260b57
diff --git a/x11-apps/copyq/copyq-3.5.0.ebuild b/x11-apps/copyq/copyq-3.5.0.ebuild
new file mode 100644
index 00000000000..1607b43b019
--- /dev/null
+++ b/x11-apps/copyq/copyq-3.5.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+MY_P=CopyQ-${PV}
+
+DESCRIPTION="Clipboard manager with advanced features"
+HOMEPAGE="https://github.com/hluk/CopyQ"
+SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test webkit"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtscript:5
+ dev-qt/qtsvg:5
+ dev-qt/qtwidgets:5
+ x11-libs/libX11
+ x11-libs/libXfixes
+ x11-libs/libXtst
+ webkit? ( dev-qt/qtwebkit:5 )
+"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5
+ test? ( dev-qt/qttest:5 )
+"
+S=${WORKDIR}/$MY_P
+
+src_configure() {
+ local mycmakeargs=(
+ -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
+ -DWITH_QT5=ON
+ -DWITH_TESTS=$(usex test)
+ -DWITH_WEBKIT=$(usex webkit)
+ )
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2018-09-14 22:46 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2018-09-14 22:46 UTC (permalink / raw
To: gentoo-commits
commit: bcd219425e13aeefbe6febabbff7e0246c80013d
Author: Gino <onigino <AT> protonmail <DOT> com>
AuthorDate: Mon Aug 20 00:18:48 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep 14 22:46:49 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcd21942
x11-apps/copyq: Add proxy maintainer(onigino)
x11-apps/copyq/metadata.xml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/x11-apps/copyq/metadata.xml b/x11-apps/copyq/metadata.xml
index 9a37e5d24d5..d333752428c 100644
--- a/x11-apps/copyq/metadata.xml
+++ b/x11-apps/copyq/metadata.xml
@@ -1,7 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>onigino@protonmail.com</email>
+ <name>Gino</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
<use>
<flag name="webkit">
enables the application to use advanced HTML rendering and fetching
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2019-01-02 15:48 Maxim Koltsov
0 siblings, 0 replies; 18+ messages in thread
From: Maxim Koltsov @ 2019-01-02 15:48 UTC (permalink / raw
To: gentoo-commits
commit: 89df135b62ba273ffbaa8c91391aa27f366b27fa
Author: Maxim Koltsov <maksbotan <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 25 08:56:40 2018 +0000
Commit: Maxim Koltsov <maksbotan <AT> gentoo <DOT> org>
CommitDate: Wed Jan 2 15:48:30 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89df135b
x11-apps/copyq: bump to 3.7.2
- add missing qtx11extras dependency
- update icon cache
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Signed-off-by: Maxim Koltsov <maksbotan <AT> gentoo.org>
x11-apps/copyq/Manifest | 2 +-
x11-apps/copyq/{copyq-3.5.0.ebuild => copyq-3.7.2.ebuild} | 15 +++++++++++++--
2 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index bcf3fb2265b..a9dfd0e3a5a 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1,2 +1,2 @@
-DIST CopyQ-3.5.0.tar.gz 3004460 BLAKE2B 30b2d732e87dd5ffea4d07adec14a377feddf2b7e89caf235e0a6bde5781419ec186bf40c687f14d658603ed3aebe43e5010a062560748a8dc00311f0f52a821 SHA512 9e662c8f80a59d58fbc8c51990682bfe61582ebdeba240e49996aab618b0a118422b0f2023952ef8cdf8e00f50ec4d7c67bd874abacf564226fb096dcc6d944d
+DIST CopyQ-3.7.2.tar.gz 2882944 BLAKE2B 3fd90b719b931ad9d92cca97f3ad284dc454ea5644907fa61b51b70eef5c42f41d52323346c0d24611c99cd2004a0528111125726d5cefe64f2cc9ead22d1f94 SHA512 dff6530375ea674502b754866c0011f3436796fc0535dc9cd317640b8cab4620e821b440df62d229a3d1dba371a7ae0c4a03e5d3366dd845218ab1516196d730
DIST copyq-2.8.1.tar.gz 1573991 BLAKE2B 464c7fb462638ae717ee70dffcf5fb6eaf628dd4640c9db9d757769ac07479424fc953d81c92ed0e11015802432a9e556171994e8e2da7d0ce11868dcdf57cb6 SHA512 77602d39b0cb5fd0c8bd8d6c1ba5079e95ad72dc846c3e273556ffe029732e65bfd0951954de856c894bd7b6ebae816dfe7048040d77f7f3cd07faa922260b57
diff --git a/x11-apps/copyq/copyq-3.5.0.ebuild b/x11-apps/copyq/copyq-3.7.2.ebuild
similarity index 74%
rename from x11-apps/copyq/copyq-3.5.0.ebuild
rename to x11-apps/copyq/copyq-3.7.2.ebuild
index 1607b43b019..0c5b8ccd84f 100644
--- a/x11-apps/copyq/copyq-3.5.0.ebuild
+++ b/x11-apps/copyq/copyq-3.7.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit cmake-utils
+inherit cmake-utils gnome2-utils
MY_P=CopyQ-${PV}
@@ -25,6 +25,7 @@ RDEPEND="
dev-qt/qtscript:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
x11-libs/libX11
x11-libs/libXfixes
x11-libs/libXtst
@@ -37,11 +38,21 @@ DEPEND="${RDEPEND}
S=${WORKDIR}/$MY_P
src_configure() {
+ # CMakeLists.txt concatenates INSTALL_PREFIX with INSTALL_MANDIR leading to /usr/usr
local mycmakeargs=(
-DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
-DWITH_QT5=ON
-DWITH_TESTS=$(usex test)
-DWITH_WEBKIT=$(usex webkit)
+ -DCMAKE_INSTALL_MANDIR="share/man"
)
cmake-utils_src_configure
}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2019-04-19 22:07 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2019-04-19 22:07 UTC (permalink / raw
To: gentoo-commits
commit: 2fa1863cfaf9e50313820c8a2c45fd9d373f2166
Author: Gino McCarty <onigino <AT> protonmail <DOT> com>
AuthorDate: Sun Apr 14 03:04:07 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 22:07:09 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fa1863c
x11-apps/copyq: Bump to 3.8.0
* Another bump to 3.8.0
Signed-off-by: Gino McCarty <onigino <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11538
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
x11-apps/copyq/Manifest | 1 +
x11-apps/copyq/copyq-3.8.0.ebuild | 58 +++++++++++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index 591dd4778a9..cd543f535d1 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1 +1,2 @@
DIST CopyQ-3.7.2.tar.gz 2882944 BLAKE2B 3fd90b719b931ad9d92cca97f3ad284dc454ea5644907fa61b51b70eef5c42f41d52323346c0d24611c99cd2004a0528111125726d5cefe64f2cc9ead22d1f94 SHA512 dff6530375ea674502b754866c0011f3436796fc0535dc9cd317640b8cab4620e821b440df62d229a3d1dba371a7ae0c4a03e5d3366dd845218ab1516196d730
+DIST CopyQ-3.8.0.tar.gz 2909764 BLAKE2B 73b5f1b088bdea6db7a1141d8b029329210c18f980caf8ff52746894d672885c0940b7eeea2e66ed4d7957ea83649780860fd97e93f8eb02aad4cb8d3e687472 SHA512 ae22e5e00a2624b5fb551790ccda82f4a10a026cfd16d6526b370a0a210a939f2a11d0729f2b735e201085083514ff9eff8cda69ee2d360766fbfb7ea49b6c5e
diff --git a/x11-apps/copyq/copyq-3.8.0.ebuild b/x11-apps/copyq/copyq-3.8.0.ebuild
new file mode 100644
index 00000000000..7139966cb74
--- /dev/null
+++ b/x11-apps/copyq/copyq-3.8.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils gnome2-utils
+
+MY_P=CopyQ-${PV}
+
+DESCRIPTION="Clipboard manager with advanced features"
+HOMEPAGE="https://github.com/hluk/CopyQ"
+SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test webkit"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtscript:5
+ dev-qt/qtsvg:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ x11-libs/libX11
+ x11-libs/libXfixes
+ x11-libs/libXtst
+ webkit? ( dev-qt/qtwebkit:5 )
+"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5
+ test? ( dev-qt/qttest:5 )
+"
+S=${WORKDIR}/$MY_P
+
+src_configure() {
+ # CMakeLists.txt concatenates INSTALL_PREFIX with INSTALL_MANDIR leading to /usr/usr
+ local mycmakeargs=(
+ -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
+ -DWITH_QT5=ON
+ -DWITH_TESTS=$(usex test)
+ -DWITH_WEBKIT=$(usex webkit)
+ -DCMAKE_INSTALL_MANDIR="share/man"
+ )
+ cmake-utils_src_configure
+}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2019-04-19 22:07 Michał Górny
0 siblings, 0 replies; 18+ messages in thread
From: Michał Górny @ 2019-04-19 22:07 UTC (permalink / raw
To: gentoo-commits
commit: 55953dc0bd629238edf4a685a238336766d4d523
Author: Gino McCarty <onigino <AT> protonmail <DOT> com>
AuthorDate: Mon Mar 25 20:48:58 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 21:47:45 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55953dc0
x11-apps/copyq: Drop Old Version
* Drop version 2.8.1
Signed-off-by: Gino McCarty <onigino <AT> protonmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
x11-apps/copyq/Manifest | 1 -
x11-apps/copyq/copyq-2.8.1.ebuild | 44 ---------------------------------------
2 files changed, 45 deletions(-)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index a9dfd0e3a5a..591dd4778a9 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1,2 +1 @@
DIST CopyQ-3.7.2.tar.gz 2882944 BLAKE2B 3fd90b719b931ad9d92cca97f3ad284dc454ea5644907fa61b51b70eef5c42f41d52323346c0d24611c99cd2004a0528111125726d5cefe64f2cc9ead22d1f94 SHA512 dff6530375ea674502b754866c0011f3436796fc0535dc9cd317640b8cab4620e821b440df62d229a3d1dba371a7ae0c4a03e5d3366dd845218ab1516196d730
-DIST copyq-2.8.1.tar.gz 1573991 BLAKE2B 464c7fb462638ae717ee70dffcf5fb6eaf628dd4640c9db9d757769ac07479424fc953d81c92ed0e11015802432a9e556171994e8e2da7d0ce11868dcdf57cb6 SHA512 77602d39b0cb5fd0c8bd8d6c1ba5079e95ad72dc846c3e273556ffe029732e65bfd0951954de856c894bd7b6ebae816dfe7048040d77f7f3cd07faa922260b57
diff --git a/x11-apps/copyq/copyq-2.8.1.ebuild b/x11-apps/copyq/copyq-2.8.1.ebuild
deleted file mode 100644
index 128db7ff345..00000000000
--- a/x11-apps/copyq/copyq-2.8.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils multilib
-
-DESCRIPTION="Clipboard manager with advanced features"
-HOMEPAGE="https://github.com/hluk/CopyQ"
-SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test webkit"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtscript:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- x11-libs/libX11
- x11-libs/libXfixes
- x11-libs/libXtst
- webkit? ( dev-qt/qtwebkit:5 )
-"
-DEPEND="${RDEPEND}
- dev-qt/linguist-tools:5
- test? ( dev-qt/qttest:5 )
-"
-
-S=${WORKDIR}/CopyQ-${PV}
-
-src_configure() {
- local mycmakeargs=(
- -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
- -DWITH_QT5=ON
- -DWITH_TESTS=$(usex test)
- -DWITH_WEBKIT=$(usex webkit)
- )
- cmake-utils_src_configure
-}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2020-04-28 7:44 Joonas Niilola
0 siblings, 0 replies; 18+ messages in thread
From: Joonas Niilola @ 2020-04-28 7:44 UTC (permalink / raw
To: gentoo-commits
commit: d5df475dca263c6887bf5914bff5de3771c054f2
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 28 07:40:27 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 07:44:07 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5df475d
x11-apps/copyq: move linguist-tools to BDEPEND
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
x11-apps/copyq/copyq-3.10.0.ebuild | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/x11-apps/copyq/copyq-3.10.0.ebuild b/x11-apps/copyq/copyq-3.10.0.ebuild
index 4bcda78587f..857bb8af4b5 100644
--- a/x11-apps/copyq/copyq-3.10.0.ebuild
+++ b/x11-apps/copyq/copyq-3.10.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -32,10 +32,9 @@ RDEPEND="
webkit? ( dev-qt/qtwebkit:5 )
"
DEPEND="${RDEPEND}
- dev-qt/linguist-tools:5
- test? ( dev-qt/qttest:5 )
-"
-S=${WORKDIR}/$MY_P
+ test? ( dev-qt/qttest:5 )"
+BDEPEND="dev-qt/linguist-tools:5"
+S="${WORKDIR}/$MY_P"
src_configure() {
# CMakeLists.txt concatenates INSTALL_PREFIX with INSTALL_MANDIR leading to /usr/usr
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2020-04-28 7:44 Joonas Niilola
0 siblings, 0 replies; 18+ messages in thread
From: Joonas Niilola @ 2020-04-28 7:44 UTC (permalink / raw
To: gentoo-commits
commit: d8f610333602874d4e00a58a6266ca0699e2ad0f
Author: Gino McCarty <onigino <AT> protonmail <DOT> com>
AuthorDate: Sun Apr 19 22:38:46 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 07:44:07 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f61033
x11-apps/copyq: Drop old versions
Closes: https://bugs.gentoo.org/show_bug.cgi?id=696406
Signed-off-by: Gino McCarty <onigino <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15429
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
x11-apps/copyq/Manifest | 2 --
x11-apps/copyq/copyq-3.7.2.ebuild | 58 ---------------------------------------
x11-apps/copyq/copyq-3.8.0.ebuild | 58 ---------------------------------------
3 files changed, 118 deletions(-)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index bf21a31cf9a..86696b31c9d 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1,3 +1 @@
DIST CopyQ-3.10.0.tar.gz 2832904 BLAKE2B 78866a3ecbd1ed4d1ab06db552ef517234c1354609ef2bc18f8c4d8fa22342c7479a5bde79b9333f896dee4fe18543e47657c780b821f45121e0413c597b45aa SHA512 6cae338a144d7f92850ce88c991ed99222613c57540ced49dab719e43af884bbd9d15e6e8f074c6af94b0ac2ecd1b355eff8b83ec99f688c0f93fa19f253d653
-DIST CopyQ-3.7.2.tar.gz 2882944 BLAKE2B 3fd90b719b931ad9d92cca97f3ad284dc454ea5644907fa61b51b70eef5c42f41d52323346c0d24611c99cd2004a0528111125726d5cefe64f2cc9ead22d1f94 SHA512 dff6530375ea674502b754866c0011f3436796fc0535dc9cd317640b8cab4620e821b440df62d229a3d1dba371a7ae0c4a03e5d3366dd845218ab1516196d730
-DIST CopyQ-3.8.0.tar.gz 2909764 BLAKE2B 73b5f1b088bdea6db7a1141d8b029329210c18f980caf8ff52746894d672885c0940b7eeea2e66ed4d7957ea83649780860fd97e93f8eb02aad4cb8d3e687472 SHA512 ae22e5e00a2624b5fb551790ccda82f4a10a026cfd16d6526b370a0a210a939f2a11d0729f2b735e201085083514ff9eff8cda69ee2d360766fbfb7ea49b6c5e
diff --git a/x11-apps/copyq/copyq-3.7.2.ebuild b/x11-apps/copyq/copyq-3.7.2.ebuild
deleted file mode 100644
index 0c5b8ccd84f..00000000000
--- a/x11-apps/copyq/copyq-3.7.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils gnome2-utils
-
-MY_P=CopyQ-${PV}
-
-DESCRIPTION="Clipboard manager with advanced features"
-HOMEPAGE="https://github.com/hluk/CopyQ"
-SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test webkit"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtscript:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
- x11-libs/libX11
- x11-libs/libXfixes
- x11-libs/libXtst
- webkit? ( dev-qt/qtwebkit:5 )
-"
-DEPEND="${RDEPEND}
- dev-qt/linguist-tools:5
- test? ( dev-qt/qttest:5 )
-"
-S=${WORKDIR}/$MY_P
-
-src_configure() {
- # CMakeLists.txt concatenates INSTALL_PREFIX with INSTALL_MANDIR leading to /usr/usr
- local mycmakeargs=(
- -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
- -DWITH_QT5=ON
- -DWITH_TESTS=$(usex test)
- -DWITH_WEBKIT=$(usex webkit)
- -DCMAKE_INSTALL_MANDIR="share/man"
- )
- cmake-utils_src_configure
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
diff --git a/x11-apps/copyq/copyq-3.8.0.ebuild b/x11-apps/copyq/copyq-3.8.0.ebuild
deleted file mode 100644
index 9f5c1deeaa8..00000000000
--- a/x11-apps/copyq/copyq-3.8.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake gnome2-utils
-
-MY_P=CopyQ-${PV}
-
-DESCRIPTION="Clipboard manager with advanced features"
-HOMEPAGE="https://github.com/hluk/CopyQ"
-SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test webkit"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtscript:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
- x11-libs/libX11
- x11-libs/libXfixes
- x11-libs/libXtst
- webkit? ( dev-qt/qtwebkit:5 )
-"
-DEPEND="${RDEPEND}
- dev-qt/linguist-tools:5
- test? ( dev-qt/qttest:5 )
-"
-S=${WORKDIR}/$MY_P
-
-src_configure() {
- # CMakeLists.txt concatenates INSTALL_PREFIX with INSTALL_MANDIR leading to /usr/usr
- local mycmakeargs=(
- -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
- -DWITH_QT5=ON
- -DWITH_TESTS=$(usex test)
- -DWITH_WEBKIT=$(usex webkit)
- -DCMAKE_INSTALL_MANDIR="share/man"
- )
- cmake_src_configure
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/
@ 2020-04-28 7:44 Joonas Niilola
0 siblings, 0 replies; 18+ messages in thread
From: Joonas Niilola @ 2020-04-28 7:44 UTC (permalink / raw
To: gentoo-commits
commit: d2bc2a37258fca2e0f4eab52cecfc809509f07c0
Author: Gino McCarty <onigino <AT> protonmail <DOT> com>
AuthorDate: Sun Apr 19 22:38:05 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 07:44:06 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2bc2a37
x11-apps/copyq: Version bump to 3.10.0
Closes: https://bugs.gentoo.org/show_bug.cgi?id=696406
Signed-off-by: Gino McCarty <onigino <AT> protonmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
x11-apps/copyq/Manifest | 1 +
x11-apps/copyq/copyq-3.10.0.ebuild | 60 ++++++++++++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index cd543f535d1..bf21a31cf9a 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1,2 +1,3 @@
+DIST CopyQ-3.10.0.tar.gz 2832904 BLAKE2B 78866a3ecbd1ed4d1ab06db552ef517234c1354609ef2bc18f8c4d8fa22342c7479a5bde79b9333f896dee4fe18543e47657c780b821f45121e0413c597b45aa SHA512 6cae338a144d7f92850ce88c991ed99222613c57540ced49dab719e43af884bbd9d15e6e8f074c6af94b0ac2ecd1b355eff8b83ec99f688c0f93fa19f253d653
DIST CopyQ-3.7.2.tar.gz 2882944 BLAKE2B 3fd90b719b931ad9d92cca97f3ad284dc454ea5644907fa61b51b70eef5c42f41d52323346c0d24611c99cd2004a0528111125726d5cefe64f2cc9ead22d1f94 SHA512 dff6530375ea674502b754866c0011f3436796fc0535dc9cd317640b8cab4620e821b440df62d229a3d1dba371a7ae0c4a03e5d3366dd845218ab1516196d730
DIST CopyQ-3.8.0.tar.gz 2909764 BLAKE2B 73b5f1b088bdea6db7a1141d8b029329210c18f980caf8ff52746894d672885c0940b7eeea2e66ed4d7957ea83649780860fd97e93f8eb02aad4cb8d3e687472 SHA512 ae22e5e00a2624b5fb551790ccda82f4a10a026cfd16d6526b370a0a210a939f2a11d0729f2b735e201085083514ff9eff8cda69ee2d360766fbfb7ea49b6c5e
diff --git a/x11-apps/copyq/copyq-3.10.0.ebuild b/x11-apps/copyq/copyq-3.10.0.ebuild
new file mode 100644
index 00000000000..4bcda78587f
--- /dev/null
+++ b/x11-apps/copyq/copyq-3.10.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake xdg-utils
+
+MY_P=CopyQ-${PV}
+
+DESCRIPTION="Clipboard manager with advanced features"
+HOMEPAGE="https://github.com/hluk/CopyQ"
+SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test webkit"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtscript:5
+ dev-qt/qtsvg:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ x11-libs/libX11
+ x11-libs/libXfixes
+ x11-libs/libXtst
+ webkit? ( dev-qt/qtwebkit:5 )
+"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5
+ test? ( dev-qt/qttest:5 )
+"
+S=${WORKDIR}/$MY_P
+
+src_configure() {
+ # CMakeLists.txt concatenates INSTALL_PREFIX with INSTALL_MANDIR leading to /usr/usr
+ local mycmakeargs=(
+ -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
+ -DWITH_QT5=ON
+ -DWITH_TESTS=$(usex test)
+ -DWITH_WEBKIT=$(usex webkit)
+ -DCMAKE_INSTALL_MANDIR="share/man"
+ )
+ cmake_src_configure
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 18+ messages in thread
end of thread, other threads:[~2020-04-28 7:45 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-28 7:44 [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2020-04-28 7:44 Joonas Niilola
2020-04-28 7:44 Joonas Niilola
2019-04-19 22:07 Michał Górny
2019-04-19 22:07 Michał Górny
2019-01-02 15:48 Maxim Koltsov
2018-09-14 22:46 Michał Górny
2018-09-14 22:46 Michał Górny
2017-05-26 10:00 David Seifert
2017-01-12 17:56 Michael Palimaka
2016-12-22 18:16 Michael Palimaka
2016-04-23 13:50 Davide Pesavento
2016-01-16 11:50 Pacho Ramos
2016-01-16 11:50 Pacho Ramos
2016-01-14 9:50 Michael Palimaka
2016-01-14 9:43 Jeroen Roovers
2015-09-23 11:15 Justin Lecher
2015-09-22 9:19 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox