Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/, dev-tex/chktex/files/, profiles/
Date: Mon, 12 Oct 2020 08:56:37
Message-Id: 1602492970.ba3e90384bede0a195a6d590c35d1818595bb273.mgorny@gentoo
1 commit: ba3e90384bede0a195a6d590c35d1818595bb273
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 12 08:56:10 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 12 08:56:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba3e9038
7
8 dev-tex/chktex: Remove last-rited pkg
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-tex/chktex/Manifest | 1 -
13 dev-tex/chktex/chktex-1.7.6.ebuild | 58 ------------------------
14 dev-tex/chktex/files/chktex-1.7.1-asneeded.patch | 13 ------
15 dev-tex/chktex/files/tex-inputenc.patch | 14 ------
16 dev-tex/chktex/metadata.xml | 8 ----
17 profiles/package.mask | 5 --
18 6 files changed, 99 deletions(-)
19
20 diff --git a/dev-tex/chktex/Manifest b/dev-tex/chktex/Manifest
21 deleted file mode 100644
22 index 6a2f9a07cab..00000000000
23 --- a/dev-tex/chktex/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST chktex-1.7.6.tar.gz 153071 BLAKE2B 7419b35eb045509ab39983f16d9cc72d1501f3b6781c304ddf8cc91ae1123b132e17e2919f5d2f6c5b6584e91c63651dc819497c2a5945b9debe329c03704256 SHA512 dd5ad2d7fce66eeb8d890bd79d00bdb28d9807539988232a917d6478c204e9a0ab287f2b8baf7977dba374b551609d8951cbf67ad15a793d35cdfe3411e4fe0b
27
28 diff --git a/dev-tex/chktex/chktex-1.7.6.ebuild b/dev-tex/chktex/chktex-1.7.6.ebuild
29 deleted file mode 100644
30 index 722d9e00131..00000000000
31 --- a/dev-tex/chktex/chktex-1.7.6.ebuild
32 +++ /dev/null
33 @@ -1,58 +0,0 @@
34 -# Copyright 1999-2020 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -inherit autotools
40 -
41 -DESCRIPTION="Checks latex source for common mistakes"
42 -HOMEPAGE="http://www.nongnu.org/chktex/"
43 -SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
48 -IUSE="debug doc +pcre test"
49 -RESTRICT="!test? ( test )"
50 -# Tests fail without pcre. Enable pcre by default and make tests depend on it.
51 -REQUIRED_USE="test? ( pcre )"
52 -
53 -RDEPEND="pcre? ( dev-libs/libpcre )"
54 -
55 -DEPEND="${RDEPEND}
56 - sys-apps/groff
57 - dev-texlive/texlive-fontsrecommended
58 - doc? ( dev-tex/latex2html )"
59 -
60 -BDEPEND="virtual/latex-base
61 - dev-lang/perl:="
62 -
63 -PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch"
64 - "${FILESDIR}/tex-inputenc.patch" )
65 -
66 -AT_M4DIR="${S}/m4"
67 -
68 -src_configure() {
69 - export VARTEXFONTS="${T}/fonts" #538672
70 -
71 - local myeconfargs=(
72 - $(use_enable debug debug-info)
73 - $(use_enable pcre)
74 - )
75 - econf ${myconfargs[@]}
76 -}
77 -
78 -src_compile() {
79 - default
80 - emake ChkTeX.dvi
81 - use doc && emake html
82 -}
83 -
84 -src_install() {
85 - default
86 - if use doc ; then
87 - dodoc HTML/ChkTeX.tex
88 - fi
89 - dodoc ChkTeX.dvi NEWS
90 - doman *.1
91 -}
92
93 diff --git a/dev-tex/chktex/files/chktex-1.7.1-asneeded.patch b/dev-tex/chktex/files/chktex-1.7.1-asneeded.patch
94 deleted file mode 100644
95 index 7862a3534b9..00000000000
96 --- a/dev-tex/chktex/files/chktex-1.7.1-asneeded.patch
97 +++ /dev/null
98 @@ -1,13 +0,0 @@
99 -Index: chktex-1.7.1/configure.in
100 -===================================================================
101 ---- chktex-1.7.1.orig/configure.in
102 -+++ chktex-1.7.1/configure.in
103 -@@ -173,7 +173,7 @@ if test "$enable_pcre" = "yes"; then
104 - if test "$WITH_PCRE" = "yes"; then
105 - AC_DEFINE(HAVE_PCRE, 1, "Whether PCRE can be used for user warnings.")
106 - CFLAGS="${CFLAGS} $(pcre-config --cflags-posix)"
107 -- LDFLAGS="${LDFLAGS} $(pcre-config --libs-posix)"
108 -+ LIBS="${LIBS} $(pcre-config --libs-posix)"
109 - else
110 - AC_DEFINE(HAVE_PCRE, 0, "Whether PCRE can be used for user warnings.")
111 - AC_MSG_WARN(PCRE library not found.)
112
113 diff --git a/dev-tex/chktex/files/tex-inputenc.patch b/dev-tex/chktex/files/tex-inputenc.patch
114 deleted file mode 100644
115 index 76cd5c156d1..00000000000
116 --- a/dev-tex/chktex/files/tex-inputenc.patch
117 +++ /dev/null
118 @@ -1,14 +0,0 @@
119 -Description: Specify the input encoding, fixing FTBFS with TeX Live 2018
120 -Author: Adrian Bunk <bunk@××××××.org>
121 -Bug-Debian: https://bugs.debian.org/896178
122 -
123 ---- chktex-1.7.6.orig/ChkTeX.tex.in
124 -+++ chktex-1.7.6/ChkTeX.tex.in
125 -@@ -37,6 +37,7 @@
126 -
127 - \documentclass[a4paper]{article}
128 - %latex
129 -+\usepackage[latin1]{inputenc}
130 - \usepackage{array, tabularx, verbatim, multicol}
131 - \usepackage[T1]{fontenc}
132 - \nonfrenchspacing
133
134 diff --git a/dev-tex/chktex/metadata.xml b/dev-tex/chktex/metadata.xml
135 deleted file mode 100644
136 index 13170c3184d..00000000000
137 --- a/dev-tex/chktex/metadata.xml
138 +++ /dev/null
139 @@ -1,8 +0,0 @@
140 -<?xml version="1.0" encoding="UTF-8"?>
141 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
142 -<pkgmetadata>
143 -<maintainer type="project">
144 - <email>tex@g.o</email>
145 - <name>Gentoo TeX Project</name>
146 -</maintainer>
147 -</pkgmetadata>
148
149 diff --git a/profiles/package.mask b/profiles/package.mask
150 index 25c5dc5171f..857b9d7041e 100644
151 --- a/profiles/package.mask
152 +++ b/profiles/package.mask
153 @@ -451,11 +451,6 @@ dev-python/args
154 # Removal in 30 days
155 net-dialup/tkvoice
156
157 -# Sam James <sam@g.o> (2020-09-12)
158 -# Merged into app-text/texlive-core
159 -# Removal in 30 days
160 -dev-tex/chktex
161 -
162 # Thomas Deutschmann <whissi@g.o> (2020-09-11)
163 # These versions are not compatible with current stable
164 # dev-libs/openssl version, bug #741622.