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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7C25D158020 for ; Mon, 19 Dec 2022 09:42:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42FFDE0B29; Mon, 19 Dec 2022 09:41:59 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 216E6E0B29 for ; Mon, 19 Dec 2022 09:41:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C683E341768 for ; Mon, 19 Dec 2022 09:41:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FA287D0 for ; Mon, 19 Dec 2022 09:41:56 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1671442763.c4bd16822090e92e12c1dbdbd3b3b26e9b7ade95.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libayatana-indicator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libayatana-indicator/Manifest dev-libs/libayatana-indicator/libayatana-indicator-0.9.3.ebuild dev-libs/libayatana-indicator/metadata.xml X-VCS-Directories: dev-libs/libayatana-indicator/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: c4bd16822090e92e12c1dbdbd3b3b26e9b7ade95 X-VCS-Branch: master Date: Mon, 19 Dec 2022 09:41:56 +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: ad0b309b-e577-4b76-b7eb-f0aa7472263e X-Archives-Hash: 14900459aaf7baa4798f7c2138906e57 commit: c4bd16822090e92e12c1dbdbd3b3b26e9b7ade95 Author: Pacho Ramos gentoo org> AuthorDate: Mon Dec 19 09:39:23 2022 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Mon Dec 19 09:39:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4bd1682 dev-libs/libayatana-indicator: new package, add 0.9.3 Signed-off-by: Pacho Ramos gentoo.org> dev-libs/libayatana-indicator/Manifest | 1 + .../libayatana-indicator-0.9.3.ebuild | 50 ++++++++++++++++++++++ dev-libs/libayatana-indicator/metadata.xml | 10 +++++ 3 files changed, 61 insertions(+) diff --git a/dev-libs/libayatana-indicator/Manifest b/dev-libs/libayatana-indicator/Manifest new file mode 100644 index 000000000000..ddfbc4da30ca --- /dev/null +++ b/dev-libs/libayatana-indicator/Manifest @@ -0,0 +1 @@ +DIST libayatana-indicator-0.9.3.tar.gz 149890 BLAKE2B c15ec72218814d9a33ab8cf654222ff7e05980de5cb175904041973d1ef9506c56a89e5fa8d41c1eaa2367f93a57e056010e23b87c2533cc7e731fbdfb23ef85 SHA512 cc2dd1e304e657cd8497d3107e7993122db6bbcf28c25dc1b41b250831cb76507226b5673abbd65bc954cbd5c3851df5528135df45d1cbb3de85c0c87c279452 diff --git a/dev-libs/libayatana-indicator/libayatana-indicator-0.9.3.ebuild b/dev-libs/libayatana-indicator/libayatana-indicator-0.9.3.ebuild new file mode 100644 index 000000000000..fefb2d0413db --- /dev/null +++ b/dev-libs/libayatana-indicator/libayatana-indicator-0.9.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +VALA_USE_DEPEND="vapigen" + +inherit cmake vala virtualx + +DESCRIPTION="Ayatana Application Indicators (Shared Library)" +HOMEPAGE="https://github.com/AyatanaIndicators/libayatana-indicator" +SRC_URI="https://github.com/AyatanaIndicators/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="3" +KEYWORDS="~amd64 ~x86" + +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/dbus-glib + >=dev-libs/glib-2.58:2 + >=x11-libs/gtk+-3.24:3[introspection] + >=dev-libs/ayatana-ido-0.8.2 +" +DEPEND="${RDEPEND}" +BDEPEND=" + $(vala_depend) + test? ( dev-util/dbus-test-runner ) +" + +src_prepare() { + cmake_src_prepare + vala_setup +} + +src_configure() { + local mycmakeargs+=( + -DFLAVOUR_GTK2=OFF + -DFLAVOUR_GTK3=ON + -DENABLE_IDO=ON + -DENABLE_LOADER=ON + -DENABLE_TESTS="$(usex test)" + ) + cmake_src_configure +} + +src_test() { + virtx cmake_src_test +} diff --git a/dev-libs/libayatana-indicator/metadata.xml b/dev-libs/libayatana-indicator/metadata.xml new file mode 100644 index 000000000000..91662a44cc6d --- /dev/null +++ b/dev-libs/libayatana-indicator/metadata.xml @@ -0,0 +1,10 @@ + + + + + pacho@gentoo.org + + + AyatanaIndicators/libayatana-indicator + +