Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/gentoo-bashcomp/
Date: Sun, 10 Feb 2019 23:11:47
Message-Id: 1549840287.05b7292e4392abd73086c2e8e631a9dcc043e4a3.monsieurp@gentoo
1 commit: 05b7292e4392abd73086c2e8e631a9dcc043e4a3
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 10 23:08:13 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 10 23:11:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05b7292e
7
8 app-shells/gentoo-bashcomp: version bump.
9
10 Bug: https://bugs.gentoo.org/562626
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12 Package-Manager: Portage-2.3.51, Repoman-2.3.11
13
14 app-shells/gentoo-bashcomp/Manifest | 1 +
15 .../gentoo-bashcomp/gentoo-bashcomp-20190211.ebuild | 21 +++++++++++++++++++++
16 2 files changed, 22 insertions(+)
17
18 diff --git a/app-shells/gentoo-bashcomp/Manifest b/app-shells/gentoo-bashcomp/Manifest
19 index a7cc6a323e5..d4cd8562721 100644
20 --- a/app-shells/gentoo-bashcomp/Manifest
21 +++ b/app-shells/gentoo-bashcomp/Manifest
22 @@ -1 +1,2 @@
23 DIST gentoo-bashcomp-20180302.tar.bz2 21485 BLAKE2B 887ac5cfa8c6ba431a6aa5f5918b8bdfbe6a1ae9a2e7ac21b3c06ec2062b448d924f928b1372e81749ece6d4aa673bbbaaa364ca744124c842e3819349917169 SHA512 6b4551b078505e6348cb10ca2d67faab4d323a0f0ddefc872145314303d6f95fe31f9706d43d9f20c0139610ce47e4cf70ba7516d911dc4927cfbf5d863bc063
24 +DIST gentoo-bashcomp-20190211.tar.bz2 21508 BLAKE2B 410994819f62b0bd105ca398c335d76993fd694b8e7f56c761b94fc1e2f6e90f2010f2f2a88febd71ac0c5643fc0e923c60151fbf9411e8a553b5917d6bcd8db SHA512 4b0a5e79f90ee8122fa8d0a7224fee6472b1762a0dda680ea1c0e8d4069760be9b6472e052b1b166a389c0e779816b98715386dbc62a3574e7ad851b2567a070
25
26 diff --git a/app-shells/gentoo-bashcomp/gentoo-bashcomp-20190211.ebuild b/app-shells/gentoo-bashcomp/gentoo-bashcomp-20190211.ebuild
27 new file mode 100644
28 index 00000000000..645f24d7682
29 --- /dev/null
30 +++ b/app-shells/gentoo-bashcomp/gentoo-bashcomp-20190211.ebuild
31 @@ -0,0 +1,21 @@
32 +# Copyright 1999-2019 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-specific bash command-line completions (emerge, ebuild, equery, etc)"
40 +HOMEPAGE="https://www.gentoo.org/"
41 +SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
46 +
47 +src_install() {
48 + emake DESTDIR="${D}" install \
49 + completionsdir="$(get_bashcompdir)" \
50 + helpersdir="$(get_bashhelpersdir)" \
51 + compatdir="${EPREFIX}/etc/bash_completion.d"
52 +}