app-admin/eselect: Remove old.
authorUlrich Müller <ulm@gentoo.org>
Sat, 21 Apr 2018 18:52:23 +0000 (20:52 +0200)
committerUlrich Müller <ulm@gentoo.org>
Sat, 21 Apr 2018 18:52:23 +0000 (20:52 +0200)
Package-Manager: Portage-2.3.31, Repoman-2.3.9

app-admin/eselect/Manifest
app-admin/eselect/eselect-1.4.8.ebuild [deleted file]

index 88072cbf2935279534384303a7091130ae8cdf58..4381a00d96f28f266a899f0da9a99cee9385d174 100644 (file)
@@ -1,3 +1,2 @@
 DIST eselect-1.4.11.tar.xz 177444 BLAKE2B e6f758e2acd17cea3ae37af48e4b4327a9c9d74784aa0723b003f2e1d84ec4c13167de33c311b785fddf7b045b3312955c4d84cf6e35ef7ec9265ef5de503670 SHA512 eec3091c5e386e8b7a52cb263e3c5ce6f41e285d2ae7974f4876e2ffa93b00f9f939055d978c6b9032ee1be2561992015560cdfa93a1ff2b1720ea0100fcf96d
 DIST eselect-1.4.12.tar.xz 177520 BLAKE2B 0938fe9bd8785fe711edc1af63a9c318a4a5fe9141c61d7f1c4da0352242322f1e18e4f68f7e219a1aa2beae5b25ddac58d7c47d4272408fd8fe5207324ef7c7 SHA512 2ea182364dfb2333112e9eebe691e1963e95a4c9ab40945eb2e5bc8c81da76105c1ae6aa3d153b78dea6c1e0cadb9b0237f7556b8ceb9d48e0fba67a642d6081
-DIST eselect-1.4.8.tar.xz 176692 BLAKE2B d24f87ecd7fed1f23a26f9017ecaecaf5b69c02ffbcf9cf7d7b93fa8cad6364d934de8196aff1af955076c167ac4fa8911be03473c757f6a623c63820f3b8255 SHA512 13faa3b21d352975498eb2ea62dfb8d371f30afd6e283c30ff4e89cef035598a8cfe8fafbc6763f39081c547f6743c7f4731d21170625781b89d64eb46c22194
diff --git a/app-admin/eselect/eselect-1.4.8.ebuild b/app-admin/eselect/eselect-1.4.8.ebuild
deleted file mode 100644 (file)
index c3904da..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils bash-completion-r1
-
-DESCRIPTION="Gentoo's multi-purpose configuration and management tool"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Eselect"
-SRC_URI="https://dev.gentoo.org/~ulm/eselect/${P}.tar.xz"
-
-LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-3.0 )"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc emacs vim-syntax"
-
-RDEPEND="sys-apps/sed
-       || (
-               sys-apps/coreutils
-               sys-freebsd/freebsd-bin
-               app-misc/realpath
-       )"
-DEPEND="${RDEPEND}
-       doc? ( dev-python/docutils )"
-RDEPEND="${RDEPEND}
-       sys-apps/file
-       sys-libs/ncurses:0"
-
-PDEPEND="emacs? ( app-emacs/eselect-mode )
-       vim-syntax? ( app-vim/eselect-syntax )"
-
-src_compile() {
-       emake
-       use doc && emake html
-}
-
-src_install() {
-       emake DESTDIR="${D}" install
-       newbashcomp misc/${PN}.bashcomp ${PN}
-       dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt
-       if use doc; then
-               docinto html
-               dodoc *.html doc/*.html doc/*.css
-       fi
-
-       # needed by news module
-       keepdir /var/lib/gentoo/news
-       if ! use prefix; then
-               fowners root:portage /var/lib/gentoo/news
-               fperms g+w /var/lib/gentoo/news
-       fi
-}
-
-pkg_postinst() {
-       # fowners in src_install doesn't work for the portage group:
-       # merging changes the group back to root
-       if ! use prefix; then
-               chgrp portage "${EROOT}/var/lib/gentoo/news" \
-                       && chmod g+w "${EROOT}/var/lib/gentoo/news"
-       fi
-}