gnome-extra/gnome-user-docs: add 48.5

Signed-off-by: Lukas Schmelting <lschmelting@posteo.com>
Part-of: https://github.com/gentoo/gentoo/pull/43868
Closes: https://github.com/gentoo/gentoo/pull/43868
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Lukas Schmelting
2025-09-20 15:42:25 +02:00
committed by Pacho Ramos
parent 3c87d81fae
commit 9791fd69db
2 changed files with 39 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST gnome-user-docs-47.6.tar.xz 15443716 BLAKE2B fd80a5b4edb3a5e1570d690563393cd138ab987ff9faef5f6191e432bb17a28e3f102d87b3203fc3f7a61018b8221da3a69454b89df177cb5087d3be124c15d8 SHA512 c24246b211b18bd555c8b878eefd959ec42838dc2c5aff16382553ec182baf18809b34cc204088cfafc7d04f98d2da9ced8c41ce1751a03a1a77972cbf603474
DIST gnome-user-docs-48.2.tar.xz 15524440 BLAKE2B dc4dcd6d5ddc7136b3a6a5e803f3053e8d1e870eb20a515c88f93531b8bca0d193b344331c531e2e1dd59ff2f7873fe28086794c9cb5dd5ade90cb2fbd0bb9ac SHA512 2b755df5a78c6f4c8d00872967242f2bc584cc8d6510c008df748a25c776eeeabda2376cbb206be6d7229e97d1e0c91429e223012ada37de2c6555908f0c70de
DIST gnome-user-docs-48.5.tar.xz 16125704 BLAKE2B af95f2c95bb6c2ecae63d216fa4266e6e8eec67c451b38923d19f9a9e2791e84baf3d36b0c52467a58806be652321f9fda635cbe68d0165f47d379a4cfe0aae1 SHA512 4d9df4cc8086678bcdfb94ddcc28b34ebeae342bc3c7051448279202fcd6c2cbe90b03f1d9eece4628097c5428e92bca7719be682c5a04ad22dfa74bfd5e6680

View File

@@ -0,0 +1,38 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome2
DESCRIPTION="GNOME end user documentation"
HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-user-docs"
LICENSE="CC-BY-3.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="test"
BDEPEND="test? ( dev-libs/libxml2 )"
# eautoreconf requires:
# app-text/yelp-tools
# rebuilding translations requires:
# app-text/yelp-tools
# dev-util/gettext
# This ebuild does not install any binaries
RESTRICT="binchecks strip
!test? ( test )"
src_configure() {
# itstool is only needed for rebuilding translations
# xmllint is only needed for tests
gnome2_src_configure \
$(usex test "" XMLLINT=$(type -P true)) \
ITSTOOL=$(type -P true)
}
src_compile() {
# Do not compile; "make all" with unset LINGUAS rebuilds all translations,
# which can take > 2 hours on a Core i7.
return
}