Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-sh/
Date: Fri, 05 May 2017 18:21:36
Message-Id: 1494008328.f53a0177bd490b0567604a5d01002fe9c7169dc1.mjo@gentoo
1 commit: f53a0177bd490b0567604a5d01002fe9c7169dc1
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 5 18:17:58 2017 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Fri May 5 18:18:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f53a0177
7
8 dev-vcs/git-sh: new EAPI=6 revision.
9
10 A more-or-less standard revision bump. I've removed the postinst
11 message about bash-completion, because the flag is no longer present
12 in dev-vcs/git.
13
14 Package-Manager: Portage-2.3.3, Repoman-2.3.1
15
16 dev-vcs/git-sh/git-sh-1.3-r1.ebuild | 24 ++++++++++++++++++++++++
17 dev-vcs/git-sh/git-sh-1.3.ebuild | 31 -------------------------------
18 2 files changed, 24 insertions(+), 31 deletions(-)
19
20 diff --git a/dev-vcs/git-sh/git-sh-1.3-r1.ebuild b/dev-vcs/git-sh/git-sh-1.3-r1.ebuild
21 new file mode 100644
22 index 00000000000..54b92f1a878
23 --- /dev/null
24 +++ b/dev-vcs/git-sh/git-sh-1.3-r1.ebuild
25 @@ -0,0 +1,24 @@
26 +# Copyright 1999-2017 Gentoo Foundation
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=6
30 +
31 +DESCRIPTION="A customized bash environment suitable for git work"
32 +HOMEPAGE="https://github.com/rtomayko/git-sh"
33 +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE=""
39 +
40 +DEPEND=""
41 +RDEPEND="dev-vcs/git"
42 +
43 +src_prepare() {
44 + default
45 + sed -e 's/git-completion\.bash //' \
46 + -e 's:/local::' \
47 + -i Makefile \
48 + || die "sed failed"
49 +}
50
51 diff --git a/dev-vcs/git-sh/git-sh-1.3.ebuild b/dev-vcs/git-sh/git-sh-1.3.ebuild
52 deleted file mode 100644
53 index 39b2f16b8bb..00000000000
54 --- a/dev-vcs/git-sh/git-sh-1.3.ebuild
55 +++ /dev/null
56 @@ -1,31 +0,0 @@
57 -# Copyright 1999-2013 Gentoo Foundation
58 -# Distributed under the terms of the GNU General Public License v2
59 -
60 -EAPI=5
61 -
62 -inherit vcs-snapshot
63 -
64 -DESCRIPTION="A customized bash environment suitable for git work"
65 -HOMEPAGE="https://github.com/rtomayko/git-sh"
66 -SRC_URI="https://github.com/rtomayko/git-sh/archive/${PV}.tar.gz -> ${P}.tar.gz"
67 -
68 -LICENSE="GPL-2"
69 -SLOT="0"
70 -KEYWORDS="~amd64 ~x86"
71 -IUSE=""
72 -
73 -DEPEND=""
74 -RDEPEND="dev-vcs/git"
75 -
76 -src_prepare() {
77 - sed \
78 - -e 's/git-completion\.bash //' \
79 - -e 's:/local::' -i Makefile || die "sed failed"
80 -}
81 -
82 -pkg_postinst() {
83 - echo
84 - einfo "For bash completion in git commands emerge dev-vcs/git"
85 - einfo "with bash-completion USE flag."
86 - echo
87 -}