From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E85B11382C5 for ; Fri, 8 Jan 2021 00:00:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48297E0874; Fri, 8 Jan 2021 00:00:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 04F36E0874 for ; Fri, 8 Jan 2021 00:00:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 13DB933BE07 for ; Fri, 8 Jan 2021 00:00:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCEE3493 for ; Fri, 8 Jan 2021 00:00:03 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1610063810.e0646fe8cd8102d0c0d2a467c2a6b7018429fbfa.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/kcolorpicker/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/kcolorpicker/Manifest media-libs/kcolorpicker/kcolorpicker-0.1.4.ebuild media-libs/kcolorpicker/metadata.xml X-VCS-Directories: media-libs/kcolorpicker/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e0646fe8cd8102d0c0d2a467c2a6b7018429fbfa X-VCS-Branch: master Date: Fri, 8 Jan 2021 00:00:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 13538796-f5fb-47c0-afe8-983310e24c49 X-Archives-Hash: c8dc3aa4a5f99e64337e341fc76a6c0b commit: e0646fe8cd8102d0c0d2a467c2a6b7018429fbfa Author: David Flogeras gmail com> AuthorDate: Tue Sep 8 21:41:01 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jan 7 23:56:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0646fe8 media-libs/kcolorpicker: New package This package (and media-libs/kimageannotator) will soon be dependencies of kde-apps/spectacle to add annotation capabilities. I have been maintaining both in the GURU overlay since about May 2020. Suggested-by: Andreas Sturmlechner gentoo.org> Bug: https://bugs.gentoo.org/723758 Package-Manager: Portage-3.0.4, Repoman-2.3.23 Signed-off-by: David Flogeras gmail.com> Closes: https://github.com/gentoo/gentoo/pull/17477 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/kcolorpicker/Manifest | 1 + media-libs/kcolorpicker/kcolorpicker-0.1.4.ebuild | 41 +++++++++++++++++++++++ media-libs/kcolorpicker/metadata.xml | 16 +++++++++ 3 files changed, 58 insertions(+) diff --git a/media-libs/kcolorpicker/Manifest b/media-libs/kcolorpicker/Manifest new file mode 100644 index 00000000000..f1b0cd4c0c9 --- /dev/null +++ b/media-libs/kcolorpicker/Manifest @@ -0,0 +1 @@ +DIST kColorPicker-0.1.4.tar.gz 11438 BLAKE2B 407211d5938d78aa8bfe193c037a3224ab51cacec7213e4526689ba38a800db2f5df4b0804cd3cc428765a22f426b50d870a355ce07d3f40ff231b8d4f44bf93 SHA512 135b8e0e189feb724f6a4f6a09b8e18922d294fbb3c80cd8522acec272ad0503eff5bf375ae7d58b1dd2f891dc0df187b2a3442726f8ff980583c475090b8673 diff --git a/media-libs/kcolorpicker/kcolorpicker-0.1.4.ebuild b/media-libs/kcolorpicker/kcolorpicker-0.1.4.ebuild new file mode 100644 index 00000000000..4867e8b9369 --- /dev/null +++ b/media-libs/kcolorpicker/kcolorpicker-0.1.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +VIRTUALX_REQUIRED="test" +inherit cmake virtualx + +MY_PN=kColorPicker +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Qt based color picker with popup menu" +HOMEPAGE="https://github.com/ksnip/kColorPicker" +SRC_URI="https://github.com/ksnip/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5[png] +" +DEPEND="${RDEPEND} + test? ( dev-qt/qttest:5 ) +" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + local mycmakeargs+=( + -DBUILD_TESTS=$(usex test) + ) + cmake_src_configure +} + +src_test() { + virtx cmake_src_test +} diff --git a/media-libs/kcolorpicker/metadata.xml b/media-libs/kcolorpicker/metadata.xml new file mode 100644 index 00000000000..e8952720fce --- /dev/null +++ b/media-libs/kcolorpicker/metadata.xml @@ -0,0 +1,16 @@ + + + + + dflogeras2@gmail.com + David Flogeras + + + proxy-maint@gentoo.org + Proxy Maintainers + + QToolButton with color popup menu with lets you + select a color. The popup features a color dialog button which can be + used to add custom colors to the popup menu. + +