app-editors/bvi: clean old versions.
authorChristopher Head <chead@chead.ca>
Tue, 15 Jan 2019 16:28:33 +0000 (08:28 -0800)
committerPatrice Clement <monsieurp@gentoo.org>
Wed, 16 Jan 2019 22:29:13 +0000 (23:29 +0100)
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Christopher Head <chead@chead.ca>
Closes: https://github.com/gentoo/gentoo/pull/10839
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
app-editors/bvi/Manifest
app-editors/bvi/bvi-1.3.2-r2.ebuild [deleted file]
app-editors/bvi/bvi-1.4.0_alpha.ebuild [deleted file]

index 33ece935ff47a7915aa3f825a8f1783703777479..971a2373f814baf16a14af420e577d41a512859c 100644 (file)
@@ -1,3 +1 @@
-DIST bvi-1.3.2.src.tar.gz 170444 BLAKE2B 5726fe730b6751a768247581cfd4dce0a40a9ce8e8852c977b62ddd72bd8d8db7b66535a7c711b6837e10d63ee7aca9b5bdb6ba3ea0288d823e684fcabbd79b2 SHA512 eb8a01602751b61c471207124c90346375ccf34ba85e661143f6da8f113f48070d132e98213484bd16d0b6b4c8d0fa27776d36f18cac21336076ca35bcfcb58c
 DIST bvi-1.4.0.src.tar.gz 139202 BLAKE2B 151d86214aa93bb0a7f383c8de13b8a15fe2cfe7f5892dff52b80e362c049b49082abe846ffaf68ec69201bbffba2fdcc5d00f744756c49ecb26e16ab93bb13d SHA512 119cfc7350f81c324e77243f948cfb91cd9a3122fef307616e4756a99732f69131aed2a26ebe48048698b9c211a0214255f3e6605ad2cbf479a14a4a0f88923c
-DIST bvi-1.4.0alpha.src.tar.gz 128821 BLAKE2B b285e9aee5c510205684296afd975fdf4f392d9743561aa8c80c69785eb1b431886fb8664adcb1393b514e77b2e3df562d7c253427364891c36e1c56d4313975 SHA512 75cf0ff27809e2c4213da72b022e012003d6ef272d734d0c18f03d5cb49bc891b4d3d40a9e6bfff226906062fcd3e319a7503d09409fa2023f5ba1d434e66217
diff --git a/app-editors/bvi/bvi-1.3.2-r2.ebuild b/app-editors/bvi/bvi-1.3.2-r2.ebuild
deleted file mode 100644 (file)
index 1f7611c..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-AUTOTOOLS_AUTORECONF="1"
-AUTOTOOLS_IN_SOURCE_BUILD="1"
-
-inherit multilib eutils autotools-utils
-
-DESCRIPTION="display-oriented editor for binary files, based on the vi texteditor"
-HOMEPAGE="http://bvi.sourceforge.net/"
-SRC_URI="mirror://sourceforge/bvi/${P}.src.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
-
-DEPEND="sys-libs/ncurses"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-       local PATCHES=(
-               "${FILESDIR}/${P}-fix-buffer-overflow.patch"
-               "${FILESDIR}/${P}-tinfo.patch"
-               )
-       sed -i -e 's:ncurses/term.h:term.h:g' bmore.h || die "sed failed in bmore.h"
-       sed -i -e 's:(INSTALL_PROGRAM) -s:(INSTALL_PROGRAM):g' \
-               Makefile.in || die "sed failed in Makefile.in"
-
-       autotools-utils_src_prepare
-}
-
-src_configure() {
-       local myeconfargs=(--with-ncurses="${EPREFIX}"/usr)
-       autotools-utils_src_configure
-
-}
-
-src_install() {
-       autotools-utils_src_install
-       rm -rf "${ED}"/usr/$(get_libdir)/bmore.help
-       dodoc README CHANGES CREDITS bmore.help
-       dohtml -r html/*
-}
diff --git a/app-editors/bvi/bvi-1.4.0_alpha.ebuild b/app-editors/bvi/bvi-1.4.0_alpha.ebuild
deleted file mode 100644 (file)
index 6c63395..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit multilib eutils versionator
-
-MY_P=$(replace_version_separator 4 '' ${P})
-
-DESCRIPTION="display-oriented editor for binary files, based on the vi texteditor"
-HOMEPAGE="http://bvi.sourceforge.net/"
-SRC_URI="mirror://sourceforge/bvi/$(replace_version_separator 4 '' ${P}).src.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
-
-DEPEND="sys-libs/ncurses"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/$MY_P"
-
-src_prepare() {
-       sed -i -e 's:(INSTALL_PROGRAM) -s:(INSTALL_PROGRAM):g' \
-               Makefile.in || die "sed failed in Makefile.in"
-
-       epatch_user
-}
-
-src_configure() {
-       econf --with-ncurses="${EPREFIX}"/usr
-
-       sed -i -e 's:ncurses/term.h:term.h:g' bmore.h || die "sed failed in bmore.h"
-}
-
-src_install() {
-       emake DESTDIR="${D}" install || die "make install failed"
-       rm -rf "${D}"/usr/$(get_libdir)/bmore.help
-       dodoc README CHANGES CREDITS bmore.help
-}