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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8D756158020 for ; Thu, 13 Oct 2022 00:27:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7902E0874; Thu, 13 Oct 2022 00:27:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 8C926E0874 for ; Thu, 13 Oct 2022 00:27:03 +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 6D363335DAD for ; Thu, 13 Oct 2022 00:27:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B45AD5F7 for ; Thu, 13 Oct 2022 00:27:00 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1665620815.4dcd7d3bf3f4401b035656791fc7bd2128c362c2.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/libpanel/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-libs/libpanel/Manifest gui-libs/libpanel/libpanel-1.0.1.ebuild gui-libs/libpanel/metadata.xml X-VCS-Directories: gui-libs/libpanel/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 4dcd7d3bf3f4401b035656791fc7bd2128c362c2 X-VCS-Branch: master Date: Thu, 13 Oct 2022 00:27:00 +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: 37b3976e-7999-4d38-845a-919b6732d0a0 X-Archives-Hash: b05c0474834e4e6ff016296d5a193cf6 commit: 4dcd7d3bf3f4401b035656791fc7bd2128c362c2 Author: Guillermo Joandet gmail com> AuthorDate: Wed Oct 5 17:14:50 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Oct 13 00:26:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dcd7d3b gui-libs/libpanel: new package, version 1.0.1 Signed-off-by: Guillermo Joandet gmail.com> Signed-off-by: Matt Turner gentoo.org> gui-libs/libpanel/Manifest | 1 + gui-libs/libpanel/libpanel-1.0.1.ebuild | 55 +++++++++++++++++++++++++++++++++ gui-libs/libpanel/metadata.xml | 8 +++++ 3 files changed, 64 insertions(+) diff --git a/gui-libs/libpanel/Manifest b/gui-libs/libpanel/Manifest new file mode 100644 index 000000000000..2ce87bf17d5e --- /dev/null +++ b/gui-libs/libpanel/Manifest @@ -0,0 +1 @@ +DIST libpanel-1.0.1.tar.xz 100852 BLAKE2B a55ac6c7c441f5c487553052dca66dd4c1efe1cc010c7202c3400df1d3fc3cfc8f886afdd796981cf14800ad34e49b8efbd274f2f97bce19600b8935a2f1f595 SHA512 5592b01e3a8c532d40e2190d1b2c332d8a104946c0813156119be98d433cd946ad839308b166ebdc399b853809e2fde90be8ea3acced053c2f11b86807163627 diff --git a/gui-libs/libpanel/libpanel-1.0.1.ebuild b/gui-libs/libpanel/libpanel-1.0.1.ebuild new file mode 100644 index 000000000000..9faf973952bc --- /dev/null +++ b/gui-libs/libpanel/libpanel-1.0.1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org meson vala xdg + +DESCRIPTION="A dock/panel library for GTK 4" +HOMEPAGE="https://gitlab.gnome.org/GNOME/libpanel" + +LICENSE="LGPL-3+" +SLOT="1" +KEYWORDS="~amd64" + +IUSE="examples gtk-doc +introspection +vala" +REQUIRED_USE=" + gtk-doc? ( introspection ) + vala? ( introspection ) +" + +RDEPEND=" + >=dev-libs/glib-2.72:2 + >=gui-libs/gtk-4.6:4[introspection?] + >=gui-libs/libadwaita-1.0:1 + introspection? ( >=dev-libs/gobject-introspection-1.54:= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + gtk-doc? ( >=dev-util/gi-docgen-2021.1 ) + vala? ( $(vala_depend) ) +" + +src_prepare() { + default + use vala && vala_setup + xdg_environment_reset +} + +src_configure() { + local emesonargs=( + $(meson_use examples install-examples) + $(meson_feature introspection) + $(meson_feature gtk-doc docs) + $(meson_use vala vapi) + ) + meson_src_configure +} + +src_install() { + meson_src_install + if use gtk-doc; then + mkdir "${ED}"/usr/share/gtk-doc || die + mv "${ED}"/usr/share/doc/panel-1.0 "${ED}"/usr/share/gtk-doc/ || die + fi +} diff --git a/gui-libs/libpanel/metadata.xml b/gui-libs/libpanel/metadata.xml new file mode 100644 index 000000000000..7b343b06be8a --- /dev/null +++ b/gui-libs/libpanel/metadata.xml @@ -0,0 +1,8 @@ + + + + + gnome@gentoo.org + Gentoo GNOME Desktop + +