Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/texinfo/
Date: Sun, 17 Feb 2019 12:53:33
Message-Id: 1550407939.b1bb6e39a6b49e61698be3175983c7326193eaef.polynomial-c@gentoo
1 commit: b1bb6e39a6b49e61698be3175983c7326193eaef
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 17 12:52:19 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 17 12:52:19 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1bb6e39
7
8 sys-apps/texinfo: Bump to version 6.6
9
10 Package-Manager: Portage-2.3.60, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-apps/texinfo/Manifest | 1 +
14 sys-apps/texinfo/texinfo-6.6.ebuild | 42 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest
18 index 58915890367..cb108ee5e26 100644
19 --- a/sys-apps/texinfo/Manifest
20 +++ b/sys-apps/texinfo/Manifest
21 @@ -2,3 +2,4 @@ DIST texinfo-6.1.tar.xz 4520376 BLAKE2B 3b96ed431288815df4261fcd0266f2be01d27f82
22 DIST texinfo-6.3.tar.xz 4468048 BLAKE2B ef255225e1f66dc5e6646761d78dcf3e7ba9c79aa2654dbb527ef10db54b8417af9e1a58a270683956624049c2fb624b29bc2f22763c79bab9858cdcf5e2edce SHA512 ef6c5878d9db497d7963bd9138418b30c39a5605c215bf2f4e8f1f083d93c3c99f8c459aa675f7da3b78da6189cb6bbf3cf19a2ee1d52e569de2f6ce82762bf4
23 DIST texinfo-6.4.tar.xz 4497624 BLAKE2B 7081131868f748036c39812674fa8b962144fe6b96445ff72b5a88537a9a044c45cab33bfaf0d3169c0bfb6ce60832c908e49a04ef04d7631ba345002b552f92 SHA512 628e7fb64c4cb6d4ec879d5593e3660dbbbf41915c7aec68b6af209a1c496bee8a3879a69e4e047c3bee0cb476540ffd6ebdef5ec7b712edd191a82ce9ac4006
24 DIST texinfo-6.5.tar.xz 4503048 BLAKE2B 9e194115a252500fe6048614a96c6992b6fbf9f3557265d8bdda143e10f781769ca5e97ded2d330da7c0ae1581bfdebbf2dbde736689412980b098ea935d9580 SHA512 06831b4c74a1ba7a9cff937069e40ab26db1204aa8761d63254651ffacf6b0cb95d7078ba1cc59d95427239ab7e4f4aedf582967854281bfea3850b1ed5b1fdc
25 +DIST texinfo-6.6.tar.xz 4946900 BLAKE2B bd33297549d5285d7a4a65041b6025c489c6b436e9591eaf5187ef34f6e869bf7a2a82a00ebe11adc1c4b2904119e9e3f25d2496b5507f91f4b9ba548ba98604 SHA512 96e0764d0808152d3662e65c3287fb0f86ed918912cdc036380637dbadaacd6a489b516543c07b08105686575e8d495a945f73e23ff0909d5a0f12026e4131e0
26
27 diff --git a/sys-apps/texinfo/texinfo-6.6.ebuild b/sys-apps/texinfo/texinfo-6.6.ebuild
28 new file mode 100644
29 index 00000000000..41f0f7dd61c
30 --- /dev/null
31 +++ b/sys-apps/texinfo/texinfo-6.6.ebuild
32 @@ -0,0 +1,42 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +# Note: if your package uses the texi2dvi utility, it must depend on the
37 +# virtual/texi2dvi package to pull in all the right deps. The tool is not
38 +# usable out-of-the-box because it requires the large tex packages.
39 +
40 +EAPI=6
41 +
42 +inherit flag-o-matic
43 +
44 +DESCRIPTION="The GNU info program and utilities"
45 +HOMEPAGE="https://www.gnu.org/software/texinfo/"
46 +SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
47 +
48 +LICENSE="GPL-3"
49 +SLOT="0"
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
51 +IUSE="nls static"
52 +
53 +RDEPEND="
54 + !=app-text/tetex-2*
55 + >=sys-libs/ncurses-5.2-r2:0=
56 + dev-lang/perl:=
57 + dev-perl/libintl-perl
58 + dev-perl/Unicode-EastAsianWidth
59 + dev-perl/Text-Unidecode
60 + nls? ( virtual/libintl )"
61 +DEPEND="${RDEPEND}
62 + app-arch/xz-utils
63 + nls? ( >=sys-devel/gettext-0.19.6 )"
64 +
65 +src_configure() {
66 + use static && append-ldflags -static
67 + local myeconfargs=(
68 + --with-external-libintl-perl
69 + --with-external-Unicode-EastAsianWidth
70 + --with-external-Text-Unidecode
71 + $(use_enable nls)
72 + )
73 + econf "${myeconfargs[@]}"
74 +}