commit: 1b13ad5a5959acff68e1e89a3f221e90b78615ab Author: Mason Rocha <turret <AT> turret <DOT> cyou> AuthorDate: Wed Feb 18 22:35:59 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Mar 11 14:55:38 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b13ad5a
dev-libs/girara: version bump 2026.02.04 Signed-off-by: Mason Rocha <turret <AT> turret.cyou> Part-of: https://github.com/gentoo/gentoo/pull/45840 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-libs/girara/Manifest | 1 + dev-libs/girara/girara-2026.02.04.ebuild | 66 ++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) diff --git a/dev-libs/girara/Manifest b/dev-libs/girara/Manifest index 1fd5950635ab..554629734ac0 100644 --- a/dev-libs/girara/Manifest +++ b/dev-libs/girara/Manifest @@ -1 +1,2 @@ DIST girara-0.4.5.tar.gz 73664 BLAKE2B 91f4ae0e2538d035fbf7816de336584f3c96202c4a4c824147b8cfddb6324d3966fd57bbd083cda7a4ed6859177ceb3240cd5cd1f874c67f4fabc79b5b687532 SHA512 38fc0f9b9c232e93786130986e53cbcc83bbcb02575bdbd799026d2dd2f46684c8fe2ac5ea7b1b46012a48f92d78537b50a7e9ac42b036cbbf06eda06de00117 +DIST girara-2026.02.04.tar.gz 21784 BLAKE2B de860ecb1b735f47e6e968b8477e2435c387b55db07d1d92473230644e3bb426d76968b2fb6976b22d39ec336a0ce28e095f38c1a07d4326637736d10b27ee64 SHA512 65b68f5e36b872cd4310e89aabee08344921759804770a0e3a3e9e1717044e871840fe967e28ef6aa5ff971492b38d27448ff44a8f01bee69b60266bab927b76 diff --git a/dev-libs/girara/girara-2026.02.04.ebuild b/dev-libs/girara/girara-2026.02.04.ebuild new file mode 100644 index 000000000000..6e03fffc528f --- /dev/null +++ b/dev-libs/girara/girara-2026.02.04.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic meson + +DESCRIPTION="UI library that focuses on simplicity and minimalism" +HOMEPAGE="https://pwmt.org/projects/girara/" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/pwmt/${PN}.git" + EGIT_BRANCH="develop" +else + 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/9999" +IUSE="doc test X" +RESTRICT="!test? ( test )" + +# REVIEW: are all those really needed? +RDEPEND=" + app-accessibility/at-spi2-core + >=dev-libs/glib-2.72:2 + media-libs/harfbuzz:= + x11-libs/cairo[glib] + x11-libs/gdk-pixbuf + >=x11-libs/gtk+-3.24:3[X?] + x11-libs/pango +" +DEPEND=" + ${RDEPEND} + test? ( + 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() { + # defang automagic dependencies + # Currently only needed for X11-specific workarounds + use X || append-flags -DGENTOO_GTK_HIDE_X11 + + local emesonargs=( + $(meson_feature doc docs) + $(meson_feature test tests) + ) + meson_src_configure +} + +src_compile() { + meson_src_compile + use doc && HTML_DOCS=( "${BUILD_DIR}"/doc/html/. ) # BUILD_DIR is set by meson_src_compile +}
