Gentoo Archives: gentoo-commits

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