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, 09 Jan 2018 09:07:43
Message-Id: 1515488753.fd6bc0a8f5fa550a26afc480361bd95aac3481d0.ulm@gentoo
1 commit: fd6bc0a8f5fa550a26afc480361bd95aac3481d0
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 9 08:55:44 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 9 09:05:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd6bc0a8
7
8 app-admin/eselect: Version bump.
9
10 Bug: https://bugs.gentoo.org/643864
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 app-admin/eselect/Manifest | 1 +
14 app-admin/eselect/eselect-1.4.11.ebuild | 61 +++++++++++++++++++++++++++++++++
15 2 files changed, 62 insertions(+)
16
17 diff --git a/app-admin/eselect/Manifest b/app-admin/eselect/Manifest
18 index 3fca0ec263c..fb3981cb407 100644
19 --- a/app-admin/eselect/Manifest
20 +++ b/app-admin/eselect/Manifest
21 @@ -1,3 +1,4 @@
22 DIST eselect-1.4.10.tar.xz 177212 BLAKE2B 25f548d56ecfdc5ccf18167ebdeb50cccc77fbdc65ab8683e293242de0083e6036714ae9d173f507da0404dbad0e48f2ac09d542dbdf92d8a5d7e9868b31fa07 SHA512 09e4196959cfb42e0fe4536939ad8e0d1a49d500e3d42634cd959c544f2ed5beaa006100fffaf10eaba121901d36a42721da42504d496de8d157690b7ab7f9fb
23 +DIST eselect-1.4.11.tar.xz 177444 BLAKE2B e6f758e2acd17cea3ae37af48e4b4327a9c9d74784aa0723b003f2e1d84ec4c13167de33c311b785fddf7b045b3312955c4d84cf6e35ef7ec9265ef5de503670 SHA512 eec3091c5e386e8b7a52cb263e3c5ce6f41e285d2ae7974f4876e2ffa93b00f9f939055d978c6b9032ee1be2561992015560cdfa93a1ff2b1720ea0100fcf96d
24 DIST eselect-1.4.8.tar.xz 176692 BLAKE2B d24f87ecd7fed1f23a26f9017ecaecaf5b69c02ffbcf9cf7d7b93fa8cad6364d934de8196aff1af955076c167ac4fa8911be03473c757f6a623c63820f3b8255 SHA512 13faa3b21d352975498eb2ea62dfb8d371f30afd6e283c30ff4e89cef035598a8cfe8fafbc6763f39081c547f6743c7f4731d21170625781b89d64eb46c22194
25 DIST eselect-1.4.9.tar.xz 176776 BLAKE2B 0e30f1d55470c49ee9c93da294cc66dbfb5638a3aa0677665936a5eb6f1d253c38736b4037c8676da526a01c75dec86f09fe37cebae954d41f2ae9b6955a088d SHA512 88e9d81086596849ef6daf87da3f782886286b1b829d0d6378c3c3c7d9f044a2eb2dc4e1596c2f49eb2ee4e443eebaab3be4bdb223a36bb5f7b66ac0686e2640
26
27 diff --git a/app-admin/eselect/eselect-1.4.11.ebuild b/app-admin/eselect/eselect-1.4.11.ebuild
28 new file mode 100644
29 index 00000000000..16046ac9431
30 --- /dev/null
31 +++ b/app-admin/eselect/eselect-1.4.11.ebuild
32 @@ -0,0 +1,61 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=5
37 +
38 +inherit bash-completion-r1
39 +
40 +DESCRIPTION="Gentoo's multi-purpose configuration and management tool"
41 +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Eselect"
42 +SRC_URI="https://dev.gentoo.org/~ulm/eselect/${P}.tar.xz"
43 +
44 +LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-3.0 )"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-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"
47 +IUSE="doc emacs vim-syntax"
48 +
49 +RDEPEND="sys-apps/sed
50 + || (
51 + sys-apps/coreutils
52 + sys-freebsd/freebsd-bin
53 + app-misc/realpath
54 + )"
55 +DEPEND="${RDEPEND}
56 + doc? ( dev-python/docutils )"
57 +RDEPEND="${RDEPEND}
58 + sys-apps/file
59 + sys-libs/ncurses:0"
60 +
61 +PDEPEND="emacs? ( app-emacs/eselect-mode )
62 + vim-syntax? ( app-vim/eselect-syntax )"
63 +
64 +src_compile() {
65 + emake
66 + use doc && emake html
67 +}
68 +
69 +src_install() {
70 + emake DESTDIR="${D}" install
71 + newbashcomp misc/${PN}.bashcomp ${PN}
72 + dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt
73 + if use doc; then
74 + docinto html
75 + dodoc *.html doc/*.html doc/*.css
76 + fi
77 +
78 + # needed by news module
79 + keepdir /var/lib/gentoo/news
80 + if ! use prefix; then
81 + fowners root:portage /var/lib/gentoo/news
82 + fperms g+w /var/lib/gentoo/news
83 + fi
84 +}
85 +
86 +pkg_postinst() {
87 + # fowners in src_install doesn't work for the portage group:
88 + # merging changes the group back to root
89 + if ! use prefix; then
90 + chgrp portage "${EROOT}/var/lib/gentoo/news" \
91 + && chmod g+w "${EROOT}/var/lib/gentoo/news"
92 + fi
93 +}