Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-audicle/
Date: Mon, 02 Apr 2018 09:13:52
Message-Id: 1522660422.214ca47fbbcdeb00e4128b51f1b14398a6d84ba8.pacho@gentoo
1 commit: 214ca47fbbcdeb00e4128b51f1b14398a6d84ba8
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 2 09:08:14 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 2 09:13:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214ca47f
7
8 app-eselect/eselect-audicle: Fix typo (#491382 by knasan)
9
10 Package-Manager: Portage-2.3.27, Repoman-2.3.9
11
12 ...dicle-1.0.1.ebuild => eselect-audicle-1.0.1-r1.ebuild} | 15 ++++++++++++---
13 1 file changed, 12 insertions(+), 3 deletions(-)
14
15 diff --git a/app-eselect/eselect-audicle/eselect-audicle-1.0.1.ebuild b/app-eselect/eselect-audicle/eselect-audicle-1.0.1-r1.ebuild
16 similarity index 50%
17 rename from app-eselect/eselect-audicle/eselect-audicle-1.0.1.ebuild
18 rename to app-eselect/eselect-audicle/eselect-audicle-1.0.1-r1.ebuild
19 index 9f8f705bb09..2e286d365dd 100644
20 --- a/app-eselect/eselect-audicle/eselect-audicle-1.0.1.ebuild
21 +++ b/app-eselect/eselect-audicle/eselect-audicle-1.0.1-r1.ebuild
22 @@ -1,9 +1,11 @@
23 -# Copyright 1999-2015 Gentoo Foundation
24 +# Copyright 1999-2018 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26
27 +EAPI=6
28 +
29 DESCRIPTION="Manages the /usr/bin/audicle symlink"
30 HOMEPAGE="https://www.gentoo.org/"
31 -SRC_URI="mirror://gentoo/audicle.eselect-${PVR}.bz2"
32 +SRC_URI="mirror://gentoo/audicle.eselect-${PV}.bz2"
33
34 LICENSE="GPL-2"
35 SLOT="0"
36 @@ -12,7 +14,14 @@ IUSE=""
37
38 RDEPEND=">=app-admin/eselect-1.2.3"
39
40 +S="${WORKDIR}"
41 +
42 +src_prepare() {
43 + default
44 + sed -i -e 's/highlight_maker/highlight_marker/' "${WORKDIR}/audicle.eselect-${PV}" || die
45 +}
46 +
47 src_install() {
48 insinto /usr/share/eselect/modules
49 - newins "${WORKDIR}/audicle.eselect-${PVR}" audicle.eselect || die
50 + newins "${WORKDIR}/audicle.eselect-${PV}" audicle.eselect
51 }