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/help2man/
Date: Fri, 04 Sep 2020 11:50:27
Message-Id: 1599220220.92c3b3ee71d7d588effae52411f1017f93551dbf.polynomial-c@gentoo
1 commit: 92c3b3ee71d7d588effae52411f1017f93551dbf
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 4 11:50:11 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 4 11:50:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c3b3ee
7
8 sys-apps/help2man: Removed old
9
10 Package-Manager: Portage-3.0.5, Repoman-3.0.1
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-apps/help2man/Manifest | 1 -
14 sys-apps/help2man/help2man-1.47.10.ebuild | 39 -------------------------------
15 2 files changed, 40 deletions(-)
16
17 diff --git a/sys-apps/help2man/Manifest b/sys-apps/help2man/Manifest
18 index bc0068d9132..7fb47fc7336 100644
19 --- a/sys-apps/help2man/Manifest
20 +++ b/sys-apps/help2man/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST help2man-1.47.10.tar.xz 202176 BLAKE2B 57c19072b1fb696b8ae1fc269d4c44672e692b45f1afe91871621dbed008298154d94813711b8ab89a9ad2e9fffa5ba1e738a613e5e50681b0abea4bfcc92677 SHA512 071383f38fb5264137200439a460e70298fc23d88069a96f150bf50a4e2a08d1d5d29555053b0ea36c809eec8484c4432b55d7d0bddd68f33b07b1abb97556ff
23 DIST help2man-1.47.15.tar.xz 202776 BLAKE2B 3f06bc254fc8e0e8884d9b8bd63b53f23ea4f9a9e1d16f7f7f2ba83ee052f35a85489ffad7b59bb41277ef68b22caa35790513115d5af43fb09cc8d5cdf4ebb0 SHA512 2ab835610545f37eef2d77887371378decbac622196426a3444c5fb495596371d0151a92c79d3e3040e93acf3dbeefbc431dac1e76a370fdb5063b43192545ad
24 DIST help2man-1.47.16.tar.xz 203036 BLAKE2B 8e06c2c2e90adfc2ab8345908516b15ae50b02a7a9554d5d9beee4373b71c131aeaa0c148b9a988c531bbfe2149c25069af56a79101a4248b6c1adfeb734a132 SHA512 b427e60a9e3d2e805caf1ae84c337b09c7ca6f92b7ff14771f946c4a1bf7adf177df99b9c1c223ad76df99756005ababf5b548ff8e08d4746702ff7f8150b544
25
26 diff --git a/sys-apps/help2man/help2man-1.47.10.ebuild b/sys-apps/help2man/help2man-1.47.10.ebuild
27 deleted file mode 100644
28 index df194845937..00000000000
29 --- a/sys-apps/help2man/help2man-1.47.10.ebuild
30 +++ /dev/null
31 @@ -1,39 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -DESCRIPTION="GNU utility to convert program --help output to a man page"
38 -HOMEPAGE="https://www.gnu.org/software/help2man/"
39 -SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
44 -IUSE="nls"
45 -
46 -RDEPEND="dev-lang/perl
47 - nls? ( dev-perl/Locale-gettext )"
48 -DEPEND=${RDEPEND}
49 -
50 -DOCS=( debian/changelog NEWS README THANKS ) #385753
51 -
52 -PATCHES=(
53 - "${FILESDIR}"/${PN}-1.46.1-linguas.patch
54 -)
55 -
56 -src_prepare() {
57 - if [[ ${CHOST} == *-darwin* ]] ; then
58 - sed -i \
59 - -e 's/-shared/-bundle/' \
60 - Makefile.in || die
61 - fi
62 - default
63 -}
64 -
65 -src_configure() {
66 - # Disable gettext requirement as the release includes the gmo files #555018
67 - econf \
68 - ac_cv_path_MSGFMT=$(type -P false) \
69 - $(use_enable nls)
70 -}