Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ledit/
Date: Thu, 07 Jan 2021 11:33:31
Message-Id: 1610019192.176195451873110aea2013db7bda0f2ecafea697.sam@gentoo
1 commit: 176195451873110aea2013db7bda0f2ecafea697
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 11:17:13 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 11:33:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17619545
7
8 app-misc/ledit: cleanup old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-misc/ledit/Manifest | 1 -
14 app-misc/ledit/ledit-2.03.ebuild | 36 ------------------------------------
15 2 files changed, 37 deletions(-)
16
17 diff --git a/app-misc/ledit/Manifest b/app-misc/ledit/Manifest
18 index f20d2f02f04..8a708e3eb87 100644
19 --- a/app-misc/ledit/Manifest
20 +++ b/app-misc/ledit/Manifest
21 @@ -1,2 +1 @@
22 -DIST ledit-2.03.tgz 24319 BLAKE2B d0a9dfbcb21b54075b61db34035291eaf3df4a337ea9fcf24b8b163d8a45c00b667dd311f39765dc904cbae1ec34e8773dea4c7ec6753796e768a8ee4cbbb927 SHA512 94281ea31d02c046db73bed42a1835826f063ff5d1ff4c374356e37fdf6b1a018f95a6372ece0eec53193aaf2e95c234c509ac178541bfe48dbc6f223f34f661
23 DIST ledit-2.04.tgz 24430 BLAKE2B 782f39606e6151307c30a665cfb6e641647fe861718ae304171db07ac82c27ee5ca9503229a27857723de98c15ac350f60be8df2e4b4fe7dc475ef2271dcf591 SHA512 56fed04fa6306b5550dc6ab4f000553d5b01eddbdeccaafad51160ba9e2c12de5faab08cb8463cad2952501c73dff0e2e214f52a30a74da20f18af153206b807
24
25 diff --git a/app-misc/ledit/ledit-2.03.ebuild b/app-misc/ledit/ledit-2.03.ebuild
26 deleted file mode 100644
27 index 0cc52ce565a..00000000000
28 --- a/app-misc/ledit/ledit-2.03.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -inherit eutils
36 -
37 -DESCRIPTION="A line editor to be used with interactive commands"
38 -SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
39 -HOMEPAGE="http://pauillac.inria.fr/~ddr/ledit/"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="amd64 ppc x86"
44 -IUSE="+ocamlopt"
45 -RESTRICT="installsources !ocamlopt? ( strip )"
46 -
47 -DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?]
48 - dev-ml/camlp5:="
49 -RDEPEND="${DEPEND}"
50 -
51 -src_compile() {
52 - emake -j1 all
53 - if use ocamlopt; then
54 - emake -j1 ledit.opt
55 - fi
56 -}
57 -
58 -src_install() {
59 - if use ocamlopt; then
60 - newbin ledit.opt ledit
61 - else
62 - newbin ledit.out ledit
63 - fi
64 - doman ledit.1
65 - dodoc CHANGES README
66 -}