Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/htp/
Date: Sat, 26 Sep 2020 19:40:41
Message-Id: 1601149219.3c336fe5d14f7cafddde7f99b7611bec8a126f3b.bman@gentoo
1 commit: 3c336fe5d14f7cafddde7f99b7611bec8a126f3b
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 19:29:30 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 19:40:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c336fe5
7
8 app-text/htp: drop old EAPI=5
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 app-text/htp/Manifest | 1 -
13 app-text/htp/htp-1.16-r1.ebuild | 48 -----------------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/app-text/htp/Manifest b/app-text/htp/Manifest
17 index 32554a498f6..4542df73951 100644
18 --- a/app-text/htp/Manifest
19 +++ b/app-text/htp/Manifest
20 @@ -1,2 +1 @@
21 -DIST htp-1.16.tar.gz 141133 BLAKE2B 58f0ab7df1400d561ec1994a98ce4fa3acaa3299b51d9382f9baaecbd95a623795d72204617c153fd4e165910fdabd0328e737cccb242be2075edd2573af55c1 SHA512 f33a9497fc3a1d0b95d8e3ee2747583d58626b565644e7c8cc054570458907aac9db42c6fa816b176b0e10db98ec7d1cedb521406035a8e7173e1abd991533a0
22 DIST htp-1.19.tar.gz 208683 BLAKE2B 86837290a2f14b8a0337d9eb6a0fa4ad553c5c51074d5df903ee19aa7ba441898199f0649b39b93c35fa3707e4084a284e02d8802c014bf5c0277e3f18d02c98 SHA512 32d82bb42ef877bd815fe45fa81599a1428ad6d3269cbe53a4e686bcfe6d1c12ac2af280462768d488b1983ca67cc521da4ed78cc82d904575ffeff08c7eec1d
23
24 diff --git a/app-text/htp/htp-1.16-r1.ebuild b/app-text/htp/htp-1.16-r1.ebuild
25 deleted file mode 100644
26 index 6a5c090922d..00000000000
27 --- a/app-text/htp/htp-1.16-r1.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit eutils toolchain-funcs
36 -
37 -DESCRIPTION="An HTML preprocessor"
38 -HOMEPAGE="http://htp.sourceforge.net/"
39 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="Clarified-Artistic"
42 -SLOT="0"
43 -KEYWORDS="~alpha ~ppc ~sparc ~x86"
44 -IUSE=""
45 -
46 -# HTP does not use autoconf, have to set options defined in Makefile.config
47 -
48 -src_prepare() {
49 - epatch "${FILESDIR}"/strip.patch #240110
50 - # let src_test take care of testing
51 - sed -i -e '/SUBDIRS /s:tests::' Makefile || die
52 - # don't install doc files with +x perms
53 - sed -i -e '$aINSTALL += -m644' homepage/ref/{*/,}Makefile || die
54 - # make src_test abort on failure
55 - sed -i -e '/DIFF.*FAILED/s/echo/exit 1; :/' tests/Makefile || die
56 - # the png file in this test isn't fetchable
57 - sed -i -e 's: width="630" height="331"::' tests/png.html.exp || die
58 -}
59 -
60 -src_compile() {
61 - emake \
62 - CCOPT="-c ${CFLAGS} ${CPPFLAGS} -DHAVE_SNPRINTF -DHAVE_VASPRINTF -DHAVE_ASPRINTF" \
63 - CC="$(tc-getCC)" \
64 - LINK='$(CC) $(LDFLAGS)'
65 -}
66 -
67 -src_test() {
68 - emake -C tests
69 -}
70 -
71 -src_install() {
72 - emake \
73 - DESTDIR="${D}" \
74 - prefix='$(DESTDIR)/usr' \
75 - pkgdocdir='$(DESTDIR)/usr/share/doc/${PF}/html' \
76 - install
77 -}