Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/hteditor/
Date: Mon, 07 Sep 2020 20:47:00
Message-Id: 1599511613.6a46793b02a6b023e82043d307b2913dd0be4bac.slyfox@gentoo
1 commit: 6a46793b02a6b023e82043d307b2913dd0be4bac
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 7 20:46:27 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 7 20:46:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a46793b
7
8 app-editors/hteditor: drop old
9
10 Package-Manager: Portage-3.0.5, Repoman-3.0.1
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 app-editors/hteditor/Manifest | 1 -
14 app-editors/hteditor/hteditor-2.1.0-r1.ebuild | 64 ---------------------------
15 2 files changed, 65 deletions(-)
16
17 diff --git a/app-editors/hteditor/Manifest b/app-editors/hteditor/Manifest
18 index 269e9e3ca85..54779c7af5c 100644
19 --- a/app-editors/hteditor/Manifest
20 +++ b/app-editors/hteditor/Manifest
21 @@ -1,2 +1 @@
22 -DIST ht-2.1.0.tar.bz2 884139 BLAKE2B c979563cbfc4df7e14f587b250fbf099d9f4683afddb3afc88693284c378c45466dfa3c47555fc69e83e2972cfabab63f3cdd42fd85602842854372131e4063d SHA512 6b5fc5fcbc63b9b7c85721158e044e4578ebfdc38618c760c0e6de06a276bccd3a960ab8bed172de788934515ad94d86349c4abd3228da66b1601deaaa2ce410
23 DIST ht-2.1.1_pre20161206.tar.gz 1082309 BLAKE2B 4fb00b0aa6115da3b561436f9f9905c48d93d6768bcf207931bb46840727c85fb5c9a1afda8ed805f71e9ce242161a2b95e26add02ff5aedc407df7f11c6ddec SHA512 33d681ee8c978568dd0d187d6846994362625d000c316baab10c237175fa6a47dc0e7b61cfd503c4dfad8a01d27af7fc87cbf20109087e1d9280048c898fa621
24
25 diff --git a/app-editors/hteditor/hteditor-2.1.0-r1.ebuild b/app-editors/hteditor/hteditor-2.1.0-r1.ebuild
26 deleted file mode 100644
27 index 1660e108bde..00000000000
28 --- a/app-editors/hteditor/hteditor-2.1.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,64 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit autotools flag-o-matic toolchain-funcs
37 -
38 -MY_P=${P/editor}
39 -
40 -DESCRIPTION="A file viewer, editor and analyzer for text, binary, and executable files"
41 -HOMEPAGE="http://hte.sourceforge.net/ https://github.com/sebastianbiallas/ht/"
42 -SRC_URI="mirror://sourceforge/hte/${MY_P}.tar.bz2"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 ppc ppc64 x86"
47 -IUSE="X"
48 -
49 -RDEPEND="sys-libs/ncurses:0=
50 - X? ( x11-libs/libX11 )
51 - >=dev-libs/lzo-2"
52 -DEPEND="${RDEPEND}
53 - virtual/yacc
54 - sys-devel/flex"
55 -
56 -DOCS=( AUTHORS ChangeLog KNOWNBUGS README TODO )
57 -
58 -S=${WORKDIR}/${MY_P}
59 -
60 -PATCHES=(
61 - "${FILESDIR}"/${P}-gcc-7.patch
62 - "${FILESDIR}"/${P}-tinfo.patch
63 - "${FILESDIR}"/${P}-gcc-6-uchar.patch
64 - "${FILESDIR}"/${P}-format-security.patch
65 - "${FILESDIR}"/${P}-gcc-10.patch
66 - "${FILESDIR}"/${P}-AR.patch
67 -)
68 -
69 -src_prepare() {
70 - default
71 - eautoreconf
72 -
73 - # Many literals are concatenated with macro definitions.
74 - # Instead of patching them all let's pick old c++ standard
75 - # and port to c++11 upstream.
76 - # https://bugs.gentoo.org/729252
77 - append-cxxflags -std=c++98
78 -}
79 -
80 -src_configure() {
81 - econf \
82 - $(use_enable X x11-textmode) \
83 - --enable-maintainermode
84 -}
85 -
86 -src_install() {
87 - #For prefix
88 - chmod u+x "${S}/install-sh"
89 -
90 - local HTML_DOCS="doc/*.html"
91 - doinfo doc/*.info
92 -
93 - default
94 -}