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 BF14F13835A for ; Thu, 11 Mar 2021 04:37:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E25AFE08A8; Thu, 11 Mar 2021 04:37:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 CA801E08A8 for ; Thu, 11 Mar 2021 04:37:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 99AB8340D4A for ; Thu, 11 Mar 2021 04:37:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01FAC585 for ; Thu, 11 Mar 2021 04:37:11 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1615437425.33a251e2414eec93a3738a583f83183a7d03a8b4.epsilon-0@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-libs/libcprime/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-libs/libcprime/libcprime-9999.ebuild X-VCS-Directories: gui-libs/libcprime/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 33a251e2414eec93a3738a583f83183a7d03a8b4 X-VCS-Branch: dev Date: Thu, 11 Mar 2021 04:37:11 +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: 06211cea-1e98-4468-83f3-00a3620b7de8 X-Archives-Hash: a5b41b3cd26827a21a2f0a786fe95bec commit: 33a251e2414eec93a3738a583f83183a7d03a8b4 Author: Aisha Tammy aisha cc> AuthorDate: Thu Mar 11 04:17:21 2021 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Thu Mar 11 04:37:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=33a251e2 gui-libs/libcprime: add live ebuild moves to using cmake Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Aisha Tammy aisha.cc> gui-libs/libcprime/libcprime-9999.ebuild | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gui-libs/libcprime/libcprime-9999.ebuild b/gui-libs/libcprime/libcprime-9999.ebuild new file mode 100644 index 00000000..46af395d --- /dev/null +++ b/gui-libs/libcprime/libcprime-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Library for managing settings of CoreApps" +HOMEPAGE="https://gitlab.com/cubocore/libcprime" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/cubocore/libcprime.git" +else + SRC_URI="https://gitlab.com/cubocore/libcprime/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-v${PV}" +fi + +LICENSE="GPL-3" +SLOT="0" + +QTMIN="5.15.1" + +DEPEND=" + x11-libs/libnotify + >=dev-qt/qtcore-${QTMIN}:5 + >=dev-qt/qtdbus-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 +" +RDEPEND=" + ${DEPEND} +"