From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 946031582EF for ; Mon, 10 Mar 2025 02:54:43 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 80270343138 for ; Mon, 10 Mar 2025 02:54:43 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 1831E1103CB; Mon, 10 Mar 2025 02:54:32 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 11BB51103CB for ; Mon, 10 Mar 2025 02:54:32 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BD80A3430AE for ; Mon, 10 Mar 2025 02:54:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1EF528C0 for ; Mon, 10 Mar 2025 02:54:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1741575056.f6d3f741cbf661f2c40f39d243c1bd306d9536b5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/girara/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/girara/girara-9999.ebuild X-VCS-Directories: dev-libs/girara/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f6d3f741cbf661f2c40f39d243c1bd306d9536b5 X-VCS-Branch: master Date: Mon, 10 Mar 2025 02:54:27 +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: ea2a3117-0098-46de-a98a-66ca0593ee84 X-Archives-Hash: 9fb8c34bf18a6c5a07a6f0ddd9bdd051 commit: f6d3f741cbf661f2c40f39d243c1bd306d9536b5 Author: Filip Kobierski pm me> AuthorDate: Sat Mar 1 11:35:06 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 10 02:50:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6d3f741 dev-libs/girara: sync live ebuild Signed-off-by: Filip Kobierski pm.me> Closes: https://github.com/gentoo/gentoo/pull/40426 Signed-off-by: Sam James gentoo.org> dev-libs/girara/girara-9999.ebuild | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/dev-libs/girara/girara-9999.ebuild b/dev-libs/girara/girara-9999.ebuild index d5d5f640f369..2d8b03eb3759 100644 --- a/dev-libs/girara/girara-9999.ebuild +++ b/dev-libs/girara/girara-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit meson virtualx +inherit meson DESCRIPTION="UI library that focuses on simplicity and minimalism" HOMEPAGE="https://pwmt.org/projects/girara/" @@ -13,49 +13,52 @@ if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://github.com/pwmt/${PN}.git" EGIT_BRANCH="develop" else - SRC_URI="https://pwmt.org/projects/girara/download/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~riscv ~x86" + SRC_URI="https://github.com/pwmt/girara/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" fi LICENSE="ZLIB" -SLOT="0" +SLOT="0/9999" IUSE="doc test" - RESTRICT="!test? ( test )" +# REVIEW: are all those really needed? RDEPEND=" app-accessibility/at-spi2-core - dev-libs/glib:2 + >=dev-libs/glib-2.72:2 dev-libs/json-glib:= media-libs/harfbuzz:= x11-libs/cairo[glib] x11-libs/gdk-pixbuf - >=x11-libs/gtk+-3.20:3 + >=x11-libs/gtk+-3.24:3 x11-libs/pango " -# Tests are run under virtx DEPEND=" ${RDEPEND} test? ( - dev-libs/check x11-base/xorg-proto x11-libs/gtk+:3[X] + x11-misc/xvfb-run ) " BDEPEND=" + sys-devel/gettext virtual/pkgconfig doc? ( app-text/doxygen ) " +DOCS=( AUTHORS README.md ) + src_configure() { local -a emesonargs=( -Djson=enabled $(meson_feature doc docs) + $(meson_feature test tests) ) meson_src_configure } -src_test() { - # TODO: run test on wayland - virtx meson_src_test +src_compile() { + meson_src_compile + use doc && HTML_DOCS=( "${BUILD_DIR}"/doc/html/* ) # BUILD_DIR is set by meson_src_compile }