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: Fri, 25 Dec 2020 12:30:40
Message-Id: 1608899427.6b8fb981e3cdfb896488edf146878146dca14003.ulm@gentoo
1 commit: 6b8fb981e3cdfb896488edf146878146dca14003
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 25 12:29:57 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 25 12:30:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b8fb981
7
8 app-admin/eselect: Remove old.
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-admin/eselect/Manifest | 1 -
14 app-admin/eselect/eselect-1.4.15.ebuild | 60 ---------------------------------
15 2 files changed, 61 deletions(-)
16
17 diff --git a/app-admin/eselect/Manifest b/app-admin/eselect/Manifest
18 index ab23e24a614..3450cf5c41c 100644
19 --- a/app-admin/eselect/Manifest
20 +++ b/app-admin/eselect/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST eselect-1.4.15.tar.xz 178996 BLAKE2B 4354d975c8af2e1de0f0c6efe2badc92584e947f9b73c05aac144caf8f9d74c850d366c7c225112322a504262b5f285f6e2e8d32223f1b2d4bac87db740a148c SHA512 ceb55fecc2bf70e816679af9b20653b29aa9ce24ca2d4cd0c6e02ab214689459bc2ccd5b3968ac49249b8fb6613c6055e7e76598b86c6a114a9abf847c4a2b58
23 DIST eselect-1.4.16.tar.xz 178660 BLAKE2B dae97ee324cb67983c5395b5dc54c4b84d2da43f6a0c5c8ab81ff402ab211e9d1f1d3fe5c174b130ac1e11d3dd19e3812056274145415ee029e649cda880cd95 SHA512 264fb6122f5f7c9e73bb2250a94c3c0377e5263e2e5ae653ed58e08ebf6ed1b4aa165ae5c1d70b0156081c4db5672d1ec9d379782919d5b40a2f3e862378ce62
24 DIST eselect-1.4.17.tar.xz 178980 BLAKE2B d905ac88bc009080912af75e64c7920d745788866fa3cb35466d68a652efbbd6984d6e1efeed76d9a344aed94705b74c85aa43e9c037d4d548d2e24afa69bd7a SHA512 35dc4c52f44c4f64db9c0dc2aec57b3055a6d36760b1bbbd094ad11b3f9e71a731444802632817b89c3b511f1dc9bb92046b59322d177e13fdc501ed767b591e
25
26 diff --git a/app-admin/eselect/eselect-1.4.15.ebuild b/app-admin/eselect/eselect-1.4.15.ebuild
27 deleted file mode 100644
28 index 3d5786a4bf1..00000000000
29 --- a/app-admin/eselect/eselect-1.4.15.ebuild
30 +++ /dev/null
31 @@ -1,60 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit bash-completion-r1
38 -
39 -DESCRIPTION="Gentoo's multi-purpose configuration and management tool"
40 -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Eselect"
41 -SRC_URI="https://dev.gentoo.org/~ulm/eselect/${P}.tar.xz"
42 -
43 -LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-3.0 )"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 -IUSE="doc emacs vim-syntax"
47 -
48 -RDEPEND="sys-apps/sed
49 - || (
50 - sys-apps/coreutils
51 - app-misc/realpath
52 - )"
53 -DEPEND="${RDEPEND}
54 - doc? ( dev-python/docutils )"
55 -RDEPEND="${RDEPEND}
56 - sys-apps/file
57 - sys-libs/ncurses:0"
58 -
59 -PDEPEND="emacs? ( app-emacs/eselect-mode )
60 - vim-syntax? ( app-vim/eselect-syntax )"
61 -
62 -src_compile() {
63 - emake
64 - use doc && emake html
65 -}
66 -
67 -src_install() {
68 - emake DESTDIR="${D}" install
69 - newbashcomp misc/${PN}.bashcomp ${PN}
70 - dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt
71 - if use doc; then
72 - docinto html
73 - dodoc *.html doc/*.html doc/*.css
74 - fi
75 -
76 - # needed by news module
77 - keepdir /var/lib/gentoo/news
78 - if ! use prefix; then
79 - fowners root:portage /var/lib/gentoo/news
80 - fperms g+w /var/lib/gentoo/news
81 - fi
82 -}
83 -
84 -pkg_postinst() {
85 - # fowners in src_install doesn't work for the portage group:
86 - # merging changes the group back to root
87 - if ! use prefix; then
88 - chgrp portage "${EROOT}/var/lib/gentoo/news" \
89 - && chmod g+w "${EROOT}/var/lib/gentoo/news"
90 - fi
91 -}