Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/eix/
Date: Sat, 14 Oct 2017 21:43:18
Message-Id: 1508017352.393761e7afeb26705f164c30a20818f1f951c733.mgorny@gentoo
1 commit: 393761e7afeb26705f164c30a20818f1f951c733
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 14 21:18:27 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 14 21:42:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=393761e7
7
8 app-portage/eix: Fix path to eix-functions
9
10 Closes: https://bugs.gentoo.org/633424
11
12 app-portage/eix/{eix-0.33.0.ebuild => eix-0.33.0-r1.ebuild} | 6 ++----
13 1 file changed, 2 insertions(+), 4 deletions(-)
14
15 diff --git a/app-portage/eix/eix-0.33.0.ebuild b/app-portage/eix/eix-0.33.0-r1.ebuild
16 similarity index 94%
17 rename from app-portage/eix/eix-0.33.0.ebuild
18 rename to app-portage/eix/eix-0.33.0-r1.ebuild
19 index ecc62a0a6c0..f85ffa58d2d 100644
20 --- a/app-portage/eix/eix-0.33.0.ebuild
21 +++ b/app-portage/eix/eix-0.33.0-r1.ebuild
22 @@ -39,7 +39,7 @@ src_prepare() {
23 sed -e "/eixf_source=/s:push.sh:cat \"${EROOT}usr/share/push/push.sh\":" \
24 -e "/eixf_source=/s:quoter_pipe.sh:cat \"${EROOT}usr/share/quoter/quoter_pipe.sh\":" \
25 -i src/eix-functions.sh.in || die
26 - sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EROOT}usr/share/eix/eix-functions.sh\\\\\":" \
27 + sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EROOT}usr/share/eix/eix-functions\\\\\":" \
28 -i src/Makefile.am || die
29 eautoreconf
30 }
31 @@ -85,9 +85,7 @@ src_install() {
32 dobashcomp bash/eix
33 systemd_dotmpfilesd tmpfiles.d/eix.conf
34
35 - insinto /usr/share/${PN}
36 - doins "${ED}"/usr/bin/eix-functions.sh
37 - rm -r "${ED}"/usr/bin/eix-functions.sh || die
38 + rm -r "${ED%/}"/usr/bin/eix-functions.sh || die
39
40 keepdir /var/cache/eix
41 }