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 A92EE138359 for ; Fri, 6 Nov 2020 01:06:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1C27E07A5; Fri, 6 Nov 2020 01:06:52 +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 992CDE07A5 for ; Fri, 6 Nov 2020 01:06:52 +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 17DCE33BE65 for ; Fri, 6 Nov 2020 01:06:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 921993F1 for ; Fri, 6 Nov 2020 01:06:49 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1604624801.be7fdea501e4643fcc5ad4f83164cfd4f27ebdb5.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/livecd-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/livecd-tools/livecd-tools-9999.ebuild X-VCS-Directories: app-misc/livecd-tools/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: be7fdea501e4643fcc5ad4f83164cfd4f27ebdb5 X-VCS-Branch: master Date: Fri, 6 Nov 2020 01:06:49 +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: 3ff59331-895e-4843-b470-7a67afd0c5a7 X-Archives-Hash: 00447571a6c65e5ed03411a55039d1f3 commit: be7fdea501e4643fcc5ad4f83164cfd4f27ebdb5 Author: Matt Turner gentoo org> AuthorDate: Fri Nov 6 01:02:53 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Nov 6 01:06:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be7fdea5 app-misc/livecd-tools: EAPI=7 and other updates - Point HOMEPAGE at gitweb - Check for CONFIG_SND_PROC_FS for the unmute service - Drop gawk/sed dependencies since they're part of the base system - Depend on media-sound/alsa-utils (bug #561498) Closes: https://bugs.gentoo.org/561498 Signed-off-by: Matt Turner gentoo.org> app-misc/livecd-tools/livecd-tools-9999.ebuild | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/app-misc/livecd-tools/livecd-tools-9999.ebuild b/app-misc/livecd-tools/livecd-tools-9999.ebuild index 9f0e8b536c7..0636c87f244 100644 --- a/app-misc/livecd-tools/livecd-tools-9999.ebuild +++ b/app-misc/livecd-tools/livecd-tools-9999.ebuild @@ -1,7 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + +inherit linux-info if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="git://anongit.gentoo.org/proj/livecd-tools.git" @@ -12,25 +14,26 @@ else fi DESCRIPTION="Gentoo LiveCD tools for autoconfiguration of hardware" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +HOMEPAGE="https://gitweb.gentoo.org/proj/livecd-tools.git/" SLOT="0" LICENSE="GPL-2" -IUSE="" -RDEPEND="dev-util/dialog +RDEPEND=" + dev-util/dialog + media-sound/alsa-utils net-dialup/mingetty - >=sys-apps/baselayout-2 - >=sys-apps/openrc-0.8.2-r1 + sys-apps/openrc sys-apps/pciutils - sys-apps/gawk - sys-apps/sed " pkg_setup() { - ewarn "This package is designed for use on the LiveCD only and will do" - ewarn "unspeakably horrible and unexpected things on a normal system." - ewarn "YOU HAVE BEEN WARNED!!!" + ewarn "This package is designed for use on the LiveCD only and will do" + ewarn "unspeakably horrible and unexpected things on a normal system." + ewarn "YOU HAVE BEEN WARNED!!!" + + CONFIG_CHECK="~SND_PROC_FS" + linux-info_pkg_setup } src_install() {