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-editors/vile/
Date: Tue, 31 Jan 2023 18:43:38
Message-Id: 1675190540.cac2eb399f9f21f8cd58cff547b8ae64841175f5.sam@gentoo
1 commit: cac2eb399f9f21f8cd58cff547b8ae64841175f5
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 31 18:38:52 2023 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 18:42:20 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cac2eb39
7
8 app-editors/vile: drop 9.8w
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-editors/vile/vile-9.8w.ebuild | 51 ---------------------------------------
13 1 file changed, 51 deletions(-)
14
15 diff --git a/app-editors/vile/vile-9.8w.ebuild b/app-editors/vile/vile-9.8w.ebuild
16 deleted file mode 100644
17 index 3243b094a959..000000000000
18 --- a/app-editors/vile/vile-9.8w.ebuild
19 +++ /dev/null
20 @@ -1,51 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -# Bump with app-editors/xvile
27 -
28 -DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone"
29 -HOMEPAGE="https://invisible-island.net/vile/"
30 -SRC_URI="https://invisible-island.net/archives/vile/current/${P}.tgz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~alpha amd64 ~ia64 ppc ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
35 -IUSE="perl iconv"
36 -
37 -RDEPEND=">=sys-libs/ncurses-5.2:=
38 - virtual/libcrypt:=
39 - iconv? ( virtual/libiconv )
40 - perl? ( dev-lang/perl:= )"
41 -DEPEND="${RDEPEND}"
42 -BDEPEND="sys-devel/flex
43 - virtual/pkgconfig"
44 -IDEPEND="app-eselect/eselect-vi"
45 -
46 -src_configure() {
47 - econf \
48 - --disable-stripping \
49 - --with-ncurses \
50 - --with-pkg-config \
51 - $(use_with iconv) \
52 - $(use_with perl)
53 -}
54 -
55 -src_install() {
56 - emake DESTDIR="${D}" install
57 -
58 - dodoc CHANGES* README doc/*.doc
59 - docinto html
60 - dodoc doc/*.html
61 -}
62 -
63 -pkg_postinst() {
64 - einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
65 - eselect vi update --if-unset
66 -}
67 -
68 -pkg_postrm() {
69 - einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
70 - eselect vi update --if-unset
71 -}