From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1522857-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B918415806E for <garchives@archives.gentoo.org>; Mon, 29 May 2023 13:00:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1331E0848; Mon, 29 May 2023 13:00:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4DEBEE0845 for <gentoo-commits@lists.gentoo.org>; Mon, 29 May 2023 13:00:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 60279340D50 for <gentoo-commits@lists.gentoo.org>; Mon, 29 May 2023 13:00:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C39B3A67 for <gentoo-commits@lists.gentoo.org>; Mon, 29 May 2023 13:00:52 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1685365239.1a19a442fb35f660dc268ea588d5303e3430f495.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/fsync-mdc1200-decode/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild X-VCS-Directories: media-radio/fsync-mdc1200-decode/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1a19a442fb35f660dc268ea588d5303e3430f495 X-VCS-Branch: master Date: Mon, 29 May 2023 13:00:52 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0e606f59-4369-4c6f-9f0b-6c4aae2e914a X-Archives-Hash: 3e60b012901dcd729cfea805f08a4f21 commit: 1a19a442fb35f660dc268ea588d5303e3430f495 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Mon May 29 09:44:37 2023 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Mon May 29 13:00:39 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a19a442 media-radio/fsync-mdc1200-decode: EAPI 8 bump, use media-libs/libpulse Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> .../fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild index 050d3b649115..7295b4089511 100644 --- a/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild +++ b/media-radio/fsync-mdc1200-decode/fsync-mdc1200-decode-9999.ebuild @@ -1,17 +1,14 @@ -# Copyright 2019-2021 Gentoo Authors +# Copyright 2019-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit toolchain-funcs DESCRIPTION="Linux Fleetsync / MDC1200 decoder" HOMEPAGE="https://github.com/russinnes/fsync-mdc1200-decode" -LICENSE="GPL-2+" -SLOT="0" - -if [ "${PV}" = 9999 ]; then +if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/russinnes/fsync-mdc1200-decode.git" else @@ -19,9 +16,11 @@ else SRC_URI="https://github.com/russinnes/fsync-mdc1200-decode/archive/${PV}.tar.gz -> ${P}.tar.gz" fi +LICENSE="GPL-2+" +SLOT="0" IUSE="" -DEPEND="media-sound/pulseaudio:=" +DEPEND="media-libs/libpulse" RDEPEND="${DEPEND}" BDEPEND="virtual/pkgconfig"