Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-user-docs/
Date: Sun, 19 Sep 2021 09:35:15
Message-Id: 1632044102.77df9e04af2fbe5b001f1b0ac1923e4f6c603c53.pacho@gentoo
1 commit: 77df9e04af2fbe5b001f1b0ac1923e4f6c603c53
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 19 09:07:44 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 19 09:35:02 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77df9e04
7
8 gnome-extra/gnome-user-docs: Bump to 40.5
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 gnome-extra/gnome-user-docs/Manifest | 1 +
14 .../gnome-user-docs/gnome-user-docs-40.5.ebuild | 38 ++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/gnome-extra/gnome-user-docs/Manifest b/gnome-extra/gnome-user-docs/Manifest
18 index 2a157738532..46b324c82c1 100644
19 --- a/gnome-extra/gnome-user-docs/Manifest
20 +++ b/gnome-extra/gnome-user-docs/Manifest
21 @@ -1,3 +1,4 @@
22 DIST gnome-user-docs-40.1.tar.xz 9264892 BLAKE2B 3c27662d516839d411444b811d2c60da51b055a7200958ee50908092bd135e182c2b359f47b711b276a6a9b6b029b767b23bd88fecc32f2c80fa2652ace40184 SHA512 a5ebd9bfbdf13c6922db2035c740f729dc89a2dfa991e74cb835d1c8e28ec4d0d08aaf7388d00d6df83f53a6261bebc1ea32e5b57287c13b2237221a56a34332
23 DIST gnome-user-docs-40.3.tar.xz 9141728 BLAKE2B 9634dfa526d7e781400563e0800f25fc8aa520d97fe0e02f3a06a1f82bb0019ff28e9bf0c8a2698c7d081d7b54a1d53be4475db6615d40c3407b632252cc8aae SHA512 e96f4535761c902999b210060f9bbf19384151752315abc7cf20f8b0ef1f599fe132f398db61318ea24eab8e3dc65812fc05a5ed549e4cedabaf809af39f515b
24 DIST gnome-user-docs-40.4.tar.xz 9195696 BLAKE2B 438f52d72a8975125b758acedfbc8c08a36397af6bb0dff01d0c73d517cee67999724e9e29d2731344fbc822309510f36f367052eeff3ba4e1dc36554eb76ffe SHA512 50c8df61a02eaa077ad3faa18d622ead97c7a8926717b2b85d6a9fb86f93e0adb3c9f212f0fbfb4781a35135fc0251d664f793665343b7daaf41a390b10fe868
25 +DIST gnome-user-docs-40.5.tar.xz 9210512 BLAKE2B 0fe638636377d1c392d208c55016cdc346fa1ec64d327ab9ded9b58744d115c74d5a03927836138cb2d58c9df735d8bc032da4a7ff3ef3ffa53a1a59b88a3006 SHA512 dbef51c262862b211304158fd9aa7bf75ab20bbf21ed0bebe0a1c547cb53e580d32062a6f362f0750a8fbe1e93e8987593c80fa7fbb758c1a61827256db69d52
26
27 diff --git a/gnome-extra/gnome-user-docs/gnome-user-docs-40.5.ebuild b/gnome-extra/gnome-user-docs/gnome-user-docs-40.5.ebuild
28 new file mode 100644
29 index 00000000000..aef106ecb64
30 --- /dev/null
31 +++ b/gnome-extra/gnome-user-docs/gnome-user-docs-40.5.ebuild
32 @@ -0,0 +1,38 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +inherit gnome2
38 +
39 +DESCRIPTION="GNOME end user documentation"
40 +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-user-docs"
41 +
42 +LICENSE="CC-BY-3.0"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
45 +IUSE="test"
46 +
47 +BDEPEND="test? ( dev-libs/libxml2 )"
48 +# eautoreconf requires:
49 +# app-text/yelp-tools
50 +# rebuilding translations requires:
51 +# app-text/yelp-tools
52 +# dev-util/gettext
53 +
54 +# This ebuild does not install any binaries
55 +RESTRICT="binchecks strip
56 + !test? ( test )"
57 +
58 +src_configure() {
59 + # itstool is only needed for rebuilding translations
60 + # xmllint is only needed for tests
61 + gnome2_src_configure \
62 + $(usex test "" XMLLINT=$(type -P true)) \
63 + ITSTOOL=$(type -P true)
64 +}
65 +
66 +src_compile() {
67 + # Do not compile; "make all" with unset LINGUAS rebuilds all translations,
68 + # which can take > 2 hours on a Core i7.
69 + return
70 +}