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-admin/eselect/
Date: Tue, 29 May 2018 17:09:48
Message-Id: 1527613743.a5da9c7e2bddf23f6451e35029994fddd0b2bf4a.ulm@gentoo
1 commit: a5da9c7e2bddf23f6451e35029994fddd0b2bf4a
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 29 17:01:58 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue May 29 17:09:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5da9c7e
7
8 app-admin/eselect: Remove old.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-admin/eselect/Manifest | 1 -
13 app-admin/eselect/eselect-1.4.11.ebuild | 61 ---------------------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/app-admin/eselect/Manifest b/app-admin/eselect/Manifest
17 index 4381a00d96f..d27de16c8fe 100644
18 --- a/app-admin/eselect/Manifest
19 +++ b/app-admin/eselect/Manifest
20 @@ -1,2 +1 @@
21 -DIST eselect-1.4.11.tar.xz 177444 BLAKE2B e6f758e2acd17cea3ae37af48e4b4327a9c9d74784aa0723b003f2e1d84ec4c13167de33c311b785fddf7b045b3312955c4d84cf6e35ef7ec9265ef5de503670 SHA512 eec3091c5e386e8b7a52cb263e3c5ce6f41e285d2ae7974f4876e2ffa93b00f9f939055d978c6b9032ee1be2561992015560cdfa93a1ff2b1720ea0100fcf96d
22 DIST eselect-1.4.12.tar.xz 177520 BLAKE2B 0938fe9bd8785fe711edc1af63a9c318a4a5fe9141c61d7f1c4da0352242322f1e18e4f68f7e219a1aa2beae5b25ddac58d7c47d4272408fd8fe5207324ef7c7 SHA512 2ea182364dfb2333112e9eebe691e1963e95a4c9ab40945eb2e5bc8c81da76105c1ae6aa3d153b78dea6c1e0cadb9b0237f7556b8ceb9d48e0fba67a642d6081
23
24 diff --git a/app-admin/eselect/eselect-1.4.11.ebuild b/app-admin/eselect/eselect-1.4.11.ebuild
25 deleted file mode 100644
26 index cfe03313642..00000000000
27 --- a/app-admin/eselect/eselect-1.4.11.ebuild
28 +++ /dev/null
29 @@ -1,61 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit bash-completion-r1
36 -
37 -DESCRIPTION="Gentoo's multi-purpose configuration and management tool"
38 -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Eselect"
39 -SRC_URI="https://dev.gentoo.org/~ulm/eselect/${P}.tar.xz"
40 -
41 -LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-3.0 )"
42 -SLOT="0"
43 -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"
44 -IUSE="doc emacs vim-syntax"
45 -
46 -RDEPEND="sys-apps/sed
47 - || (
48 - sys-apps/coreutils
49 - sys-freebsd/freebsd-bin
50 - app-misc/realpath
51 - )"
52 -DEPEND="${RDEPEND}
53 - doc? ( dev-python/docutils )"
54 -RDEPEND="${RDEPEND}
55 - sys-apps/file
56 - sys-libs/ncurses:0"
57 -
58 -PDEPEND="emacs? ( app-emacs/eselect-mode )
59 - vim-syntax? ( app-vim/eselect-syntax )"
60 -
61 -src_compile() {
62 - emake
63 - use doc && emake html
64 -}
65 -
66 -src_install() {
67 - emake DESTDIR="${D}" install
68 - newbashcomp misc/${PN}.bashcomp ${PN}
69 - dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt
70 - if use doc; then
71 - docinto html
72 - dodoc *.html doc/*.html doc/*.css
73 - fi
74 -
75 - # needed by news module
76 - keepdir /var/lib/gentoo/news
77 - if ! use prefix; then
78 - fowners root:portage /var/lib/gentoo/news
79 - fperms g+w /var/lib/gentoo/news
80 - fi
81 -}
82 -
83 -pkg_postinst() {
84 - # fowners in src_install doesn't work for the portage group:
85 - # merging changes the group back to root
86 - if ! use prefix; then
87 - chgrp portage "${EROOT}/var/lib/gentoo/news" \
88 - && chmod g+w "${EROOT}/var/lib/gentoo/news"
89 - fi
90 -}