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 62301158086 for ; Fri, 22 Oct 2021 08:22:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BD4AE087A; Fri, 22 Oct 2021 08:22:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 769E3E087A for ; Fri, 22 Oct 2021 08:22:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5FE903434E4 for ; Fri, 22 Oct 2021 08:22:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF05D169 for ; Fri, 22 Oct 2021 08:22:49 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1634890876.d36fb3a88b53dbef92d6bf99b41cc8e5eb911298.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/shoutcast2vdr/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/shoutcast2vdr/shoutcast2vdr-0.0.8-r1.ebuild X-VCS-Directories: media-tv/shoutcast2vdr/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: d36fb3a88b53dbef92d6bf99b41cc8e5eb911298 X-VCS-Branch: master Date: Fri, 22 Oct 2021 08:22: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: c4556c33-5e64-4a59-a222-7418527f1359 X-Archives-Hash: f66f785db262cbe971c3b6e107900e3b commit: d36fb3a88b53dbef92d6bf99b41cc8e5eb911298 Author: Jakov Smolić gentoo org> AuthorDate: Fri Oct 22 07:31:46 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Fri Oct 22 08:21:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36fb3a8 media-tv/shoutcast2vdr: Port to EAPI 8 Signed-off-by: Jakov Smolić gentoo.org> media-tv/shoutcast2vdr/shoutcast2vdr-0.0.8-r1.ebuild | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/media-tv/shoutcast2vdr/shoutcast2vdr-0.0.8-r1.ebuild b/media-tv/shoutcast2vdr/shoutcast2vdr-0.0.8-r1.ebuild index 3c2005d2d82..cda850ecea3 100644 --- a/media-tv/shoutcast2vdr/shoutcast2vdr-0.0.8-r1.ebuild +++ b/media-tv/shoutcast2vdr/shoutcast2vdr-0.0.8-r1.ebuild @@ -1,29 +1,27 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 DESCRIPTION="VDR script: generate shoutcast playlists" HOMEPAGE="http://www.vdr-portal.de/board/thread.php?threadid=19478" SRC_URI="http://www.kost.sh/vdr/${P}.gz" +S="${WORKDIR}" -KEYWORDS="amd64 x86" SLOT="0" LICENSE="GPL-2" -IUSE="" - -DEPEND="media-video/vdr" -RDEPEND="" +KEYWORDS="amd64 x86" -S="${WORKDIR}" +RDEPEND="media-video/vdr" PLAYLIST_DIR="/var/cache/vdr/music/playlists" src_prepare() { - sed -i shoutcast2vdr-0.0.8 -e "s:outputdir=/home/volker/vdr/radio:outputdir=${PLAYLIST_DIR}:" + default + sed -i shoutcast2vdr-0.0.8 -e "s:outputdir=/home/volker/vdr/radio:outputdir=${PLAYLIST_DIR}:" || die # wrt bug 520624 - sed -i shoutcast2vdr-0.0.8 -e "s:mkdir:mkdir -p:" + sed -i shoutcast2vdr-0.0.8 -e "s:mkdir:mkdir -p:" || die } src_install() {