Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-user-docs/
Date: Thu, 26 Sep 2019 18:35:28
Message-Id: 1569522866.5938c328361df30d0ebe77fcc04880fb53cf85e9.leio@gentoo
1 commit: 5938c328361df30d0ebe77fcc04880fb53cf85e9
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 23 15:11:54 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 26 18:34:26 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5938c328
7
8 gnome-extra/gnome-user-docs: bump to 3.32.3
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 gnome-extra/gnome-user-docs/Manifest | 1 +
14 .../gnome-user-docs/gnome-user-docs-3.32.3.ebuild | 40 ++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/gnome-extra/gnome-user-docs/Manifest b/gnome-extra/gnome-user-docs/Manifest
18 index cb62df90e59..30c14ff3c96 100644
19 --- a/gnome-extra/gnome-user-docs/Manifest
20 +++ b/gnome-extra/gnome-user-docs/Manifest
21 @@ -1 +1,2 @@
22 DIST gnome-user-docs-3.30.2.tar.xz 15707236 BLAKE2B 4a0f83078c8a0360719a89f8a2a0d79d564452fe65e7037479288730c5155be1b26901c10863e9b35727c23458b7015ade326db6a6f78fa95b8f541b3dc5b361 SHA512 43f2d12a1f5ca03e5af24f599f688f1ed849d8466cb12f4b67c36601a1b6e236bd98e505ebcde677ae80be8cca71b32996bcb87715fa50c30cc5729ffc957b33
23 +DIST gnome-user-docs-3.32.3.tar.xz 15861776 BLAKE2B cc4a73319ced02d7e087d2e9e1a70db22fbac3f9bebc34deb029c913573b34b58977007fe274841c6b61d05c3e169f959425c28846f1c741944f61c1c01b53a2 SHA512 4b62be1812ae67283281ec9d5dfd7e694dd01c04ede949cef76ab42dde72b74f90a67bc359e86700f515ddff920fb81a40e91acef56c85b40b49ce0505c1f7ed
24
25 diff --git a/gnome-extra/gnome-user-docs/gnome-user-docs-3.32.3.ebuild b/gnome-extra/gnome-user-docs/gnome-user-docs-3.32.3.ebuild
26 new file mode 100644
27 index 00000000000..3f59c882912
28 --- /dev/null
29 +++ b/gnome-extra/gnome-user-docs/gnome-user-docs-3.32.3.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +inherit gnome2
36 +
37 +DESCRIPTION="GNOME end user documentation"
38 +HOMEPAGE="https://git.gnome.org/browse/gnome-user-docs"
39 +
40 +LICENSE="CC-BY-3.0"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
43 +IUSE="test"
44 +
45 +RDEPEND=""
46 +DEPEND="
47 + test? ( dev-libs/libxml2 )
48 +"
49 +# eautoreconf requires:
50 +# app-text/yelp-tools
51 +# rebuilding translations requires:
52 +# app-text/yelp-tools
53 +# dev-util/gettext
54 +
55 +# This ebuild does not install any binaries
56 +RESTRICT="binchecks strip"
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 +}