Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/e3/
Date: Wed, 02 Oct 2019 22:41:18
Message-Id: 1570056059.2b922ff9f5f4a642d28fc040bbe8c1b1cfd0bfd5.ulm@gentoo
1 commit: 2b922ff9f5f4a642d28fc040bbe8c1b1cfd0bfd5
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 22:23:20 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 22:40:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b922ff9
7
8 app-editors/e3: Remove old.
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-editors/e3/Manifest | 1 -
14 app-editors/e3/e3-2.8.2.ebuild | 41 -----------------------------------------
15 2 files changed, 42 deletions(-)
16
17 diff --git a/app-editors/e3/Manifest b/app-editors/e3/Manifest
18 index 67e30520cf1..1d01bc2c47a 100644
19 --- a/app-editors/e3/Manifest
20 +++ b/app-editors/e3/Manifest
21 @@ -1,2 +1 @@
22 DIST e3-2.8.tgz 119939 BLAKE2B b0882a359126d392a3e24971b1f2e39572bbbe0d95f388a4b75e8cc3e4424e798ddc381c9489ca65452668884abbacc2c27c33b6c7f230a6eb4d44986313a42c SHA512 f3443ac558203b6921458761174ebc060936ae9f8a834670044152b9af52e0919075ac8110ba47b4b6f4e8261afa917e9fe49492b8d40d38d69987353ddd5189
23 -DIST e3-2.82.tgz 115504 BLAKE2B 09edea9063657373cf6d7d9d8290dddf17b8fb516538d89b83462176127b8b43832bd81f326eec5504116f05ab780023832b8b5d41d72e3ab8e726d89e364a36 SHA512 07c7e40d26879871b60d7e89839805d779383dbaabe42a6a3a7047fa8a4c501c4cd0cdc828a9d29d4ac1c5b949bda07946d8e71e1320c6c303ffce88a3038547
24
25 diff --git a/app-editors/e3/e3-2.8.2.ebuild b/app-editors/e3/e3-2.8.2.ebuild
26 deleted file mode 100644
27 index 4d675fa1428..00000000000
28 --- a/app-editors/e3/e3-2.8.2.ebuild
29 +++ /dev/null
30 @@ -1,41 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -MY_P="${PN}-$(ver_rs 2 '')"
37 -DESCRIPTION="Very tiny editor in ASM with emacs, pico, wordstar, and vi keybindings"
38 -HOMEPAGE="https://sites.google.com/site/e3editor/"
39 -SRC_URI="https://sites.google.com/site/e3editor/Home/${MY_P}.tgz"
40 -
41 -LICENSE="GPL-2+"
42 -SLOT="0"
43 -KEYWORDS="-* amd64 x86"
44 -RESTRICT="strip"
45 -
46 -BDEPEND=">=dev-lang/nasm-2.09.04"
47 -
48 -S="${WORKDIR}/${MY_P}"
49 -
50 -src_prepare() {
51 - sed -i 's/-D$(EXMODE)//' Makefile || die
52 - eapply_user
53 -}
54 -
55 -src_compile() {
56 - emake -- $(usex amd64 64 32)
57 -}
58 -
59 -src_install() {
60 - dobin e3
61 - dosym e3 /usr/bin/e3em
62 - dosym e3 /usr/bin/e3ne
63 - dosym e3 /usr/bin/e3pi
64 - dosym e3 /usr/bin/e3vi
65 - dosym e3 /usr/bin/e3ws
66 -
67 - newman e3.man e3.1
68 - dodoc ChangeLog README README.v2.7.1
69 - docinto html
70 - dodoc e3.html
71 -}