Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
Date: Sun, 15 Dec 2019 10:01:38
Message-Id: 1576404083.2bbe0b3f2560747fbed42e2d34897380f50f8b78.zlogene@gentoo
1 commit: 2bbe0b3f2560747fbed42e2d34897380f50f8b78
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 15 10:01:23 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 15 10:01:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bbe0b3f
7
8 dev-tex/chktex: Drop old
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 dev-tex/chktex/Manifest | 1 -
14 dev-tex/chktex/chktex-1.7.1.ebuild | 52 --------------------------------------
15 2 files changed, 53 deletions(-)
16
17 diff --git a/dev-tex/chktex/Manifest b/dev-tex/chktex/Manifest
18 index 2adecdbfebb..6a2f9a07cab 100644
19 --- a/dev-tex/chktex/Manifest
20 +++ b/dev-tex/chktex/Manifest
21 @@ -1,2 +1 @@
22 -DIST chktex-1.7.1.tar.gz 349551 BLAKE2B 00a1aed460fc6b0daae065ee39671104b1c5290df7097cbd75fb8c8406e309c5b950ddb3834325ba579f5870bbcf8a5890bb410c7e7633ae575944b704f738a6 SHA512 88b8b6b20a2242557d253e690ad7a7b5a41497e3c96ee44798997b83ccbfd4e37203aea9c557c7b25fc0b6223bd08a590b464af674f7558547393c2af0a86926
23 DIST chktex-1.7.6.tar.gz 153071 BLAKE2B 7419b35eb045509ab39983f16d9cc72d1501f3b6781c304ddf8cc91ae1123b132e17e2919f5d2f6c5b6584e91c63651dc819497c2a5945b9debe329c03704256 SHA512 dd5ad2d7fce66eeb8d890bd79d00bdb28d9807539988232a917d6478c204e9a0ab287f2b8baf7977dba374b551609d8951cbf67ad15a793d35cdfe3411e4fe0b
24
25 diff --git a/dev-tex/chktex/chktex-1.7.1.ebuild b/dev-tex/chktex/chktex-1.7.1.ebuild
26 deleted file mode 100644
27 index 89403432fd9..00000000000
28 --- a/dev-tex/chktex/chktex-1.7.1.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=4
35 -AUTOTOOLS_AUTORECONF=true
36 -
37 -inherit autotools-utils
38 -
39 -DESCRIPTION="Checks latex source for common mistakes"
40 -HOMEPAGE="http://www.nongnu.org/chktex/"
41 -SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
46 -IUSE="debug doc +pcre test"
47 -RESTRICT="!test? ( test )"
48 -# Tests fail without pcre. Enable pcre by default and make tests depend on it.
49 -REQUIRED_USE="test? ( pcre )"
50 -
51 -RDEPEND="virtual/latex-base
52 - dev-lang/perl
53 - pcre? ( dev-libs/libpcre )"
54 -DEPEND="${RDEPEND}
55 - sys-apps/groff
56 - doc? ( dev-tex/latex2html )"
57 -
58 -PATCHES=( "${FILESDIR}/${P}-asneeded.patch"
59 - "${FILESDIR}/tex-inputenc.patch" )
60 -DOCS=( NEWS )
61 -
62 -src_configure() {
63 - local myeconfargs=(
64 - $(use_enable debug debug-info)
65 - $(use_enable pcre)
66 - )
67 - autotools-utils_src_configure
68 -}
69 -
70 -src_compile() {
71 - autotools-utils_src_compile
72 - use doc && autotools-utils_src_compile html
73 -}
74 -
75 -src_install() {
76 - if use doc ; then
77 - HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
78 - DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
79 - fi
80 - autotools-utils_src_install
81 - doman *.1
82 -}