From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9961F1382C5 for ; Mon, 2 Apr 2018 09:13:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 629B8E0D77; Mon, 2 Apr 2018 09:13:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34E55E0D77 for ; Mon, 2 Apr 2018 09:13:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 83F1B33BF43 for ; Mon, 2 Apr 2018 09:13:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD48D278 for ; Mon, 2 Apr 2018 09:13:46 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1522660422.214ca47fbbcdeb00e4128b51f1b14398a6d84ba8.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-audicle/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-eselect/eselect-audicle/eselect-audicle-1.0.1-r1.ebuild app-eselect/eselect-audicle/eselect-audicle-1.0.1.ebuild X-VCS-Directories: app-eselect/eselect-audicle/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 214ca47fbbcdeb00e4128b51f1b14398a6d84ba8 X-VCS-Branch: master Date: Mon, 2 Apr 2018 09:13:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 546605d3-eef3-4962-81a8-d49abbb4e24a X-Archives-Hash: 2b1b967be3e8220411cb0f05fabd7a9f commit: 214ca47fbbcdeb00e4128b51f1b14398a6d84ba8 Author: Pacho Ramos gentoo org> AuthorDate: Mon Apr 2 09:08:14 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Mon Apr 2 09:13:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214ca47f app-eselect/eselect-audicle: Fix typo (#491382 by knasan) Package-Manager: Portage-2.3.27, Repoman-2.3.9 ...dicle-1.0.1.ebuild => eselect-audicle-1.0.1-r1.ebuild} | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) 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 similarity index 50% rename from app-eselect/eselect-audicle/eselect-audicle-1.0.1.ebuild rename to app-eselect/eselect-audicle/eselect-audicle-1.0.1-r1.ebuild index 9f8f705bb09..2e286d365dd 100644 --- a/app-eselect/eselect-audicle/eselect-audicle-1.0.1.ebuild +++ b/app-eselect/eselect-audicle/eselect-audicle-1.0.1-r1.ebuild @@ -1,9 +1,11 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI=6 + DESCRIPTION="Manages the /usr/bin/audicle symlink" HOMEPAGE="https://www.gentoo.org/" -SRC_URI="mirror://gentoo/audicle.eselect-${PVR}.bz2" +SRC_URI="mirror://gentoo/audicle.eselect-${PV}.bz2" LICENSE="GPL-2" SLOT="0" @@ -12,7 +14,14 @@ IUSE="" RDEPEND=">=app-admin/eselect-1.2.3" +S="${WORKDIR}" + +src_prepare() { + default + sed -i -e 's/highlight_maker/highlight_marker/' "${WORKDIR}/audicle.eselect-${PV}" || die +} + src_install() { insinto /usr/share/eselect/modules - newins "${WORKDIR}/audicle.eselect-${PVR}" audicle.eselect || die + newins "${WORKDIR}/audicle.eselect-${PV}" audicle.eselect }