Revert "dev-libs/girara: version bump 2026.02.04"

This reverts commit 1b13ad5a59.

The subslot is wrong (0/9999) but quoting IRC:
> broke all zathura plugins, the dev-libs/girara bump removed the girara-gtk3
> pkgconfig file, and the zathura bump triggered a rebuild of all plugins
> causing them all to fail to build bc they can't find girara-gtk3

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2026-03-12 08:00:01 +00:00
parent 8e4bb58d7b
commit 43d5b5160c
2 changed files with 0 additions and 67 deletions

View File

@@ -1,2 +1 @@
DIST girara-0.4.5.tar.gz 73664 BLAKE2B 91f4ae0e2538d035fbf7816de336584f3c96202c4a4c824147b8cfddb6324d3966fd57bbd083cda7a4ed6859177ceb3240cd5cd1f874c67f4fabc79b5b687532 SHA512 38fc0f9b9c232e93786130986e53cbcc83bbcb02575bdbd799026d2dd2f46684c8fe2ac5ea7b1b46012a48f92d78537b50a7e9ac42b036cbbf06eda06de00117
DIST girara-2026.02.04.tar.gz 21784 BLAKE2B de860ecb1b735f47e6e968b8477e2435c387b55db07d1d92473230644e3bb426d76968b2fb6976b22d39ec336a0ce28e095f38c1a07d4326637736d10b27ee64 SHA512 65b68f5e36b872cd4310e89aabee08344921759804770a0e3a3e9e1717044e871840fe967e28ef6aa5ff971492b38d27448ff44a8f01bee69b60266bab927b76

View File

@@ -1,66 +0,0 @@
# 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
}