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 2533813835A for ; Sun, 7 Mar 2021 08:40:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E37FE084A; Sun, 7 Mar 2021 08:40:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 56622E084A for ; Sun, 7 Mar 2021 08:40:48 +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 6041C340B9B for ; Sun, 7 Mar 2021 08:40:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2DA8567 for ; Sun, 7 Mar 2021 08:40:44 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1615106439.406bc13f4c8b280472fc430c6e047a8c13394976.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-cdparanoia/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-eselect/eselect-cdparanoia/eselect-cdparanoia-0.1-r1.ebuild X-VCS-Directories: app-eselect/eselect-cdparanoia/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 406bc13f4c8b280472fc430c6e047a8c13394976 X-VCS-Branch: master Date: Sun, 7 Mar 2021 08:40:44 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 11a9e0ec-a168-4635-a945-99aaf11624d2 X-Archives-Hash: 7833eb53ec6162b392a3f876a36d1d96 commit: 406bc13f4c8b280472fc430c6e047a8c13394976 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sun Feb 28 07:21:50 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sun Mar 7 08:40:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=406bc13f app-eselect/eselect-cdparanoia: EAPI 7 Bug: https://bugs.gentoo.org/757549 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/19703 Signed-off-by: Miroslav Šulc gentoo.org> .../eselect-cdparanoia-0.1-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app-eselect/eselect-cdparanoia/eselect-cdparanoia-0.1-r1.ebuild b/app-eselect/eselect-cdparanoia/eselect-cdparanoia-0.1-r1.ebuild new file mode 100644 index 00000000000..34b13e4b257 --- /dev/null +++ b/app-eselect/eselect-cdparanoia/eselect-cdparanoia-0.1-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Manage /usr/bin/cdparanoia symlink" +HOMEPAGE="https://www.gentoo.org/proj/en/eselect/" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" + +RDEPEND=">=app-eselect/eselect-lib-bin-symlink-0.1.1" +DEPEND="${RDEPEND}" + +S="${FILESDIR}" + +src_install() { + insinto /usr/share/eselect/modules + newins cdparanoia.eselect-${PV} cdparanoia.eselect +}