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 BB0B3158018 for ; Sat, 2 Oct 2021 12:36:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1055AE086E; Sat, 2 Oct 2021 12:36:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 DB8AAE086E for ; Sat, 2 Oct 2021 12:36:23 +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 CED8B342B71 for ; Sat, 2 Oct 2021 12:36:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B775114 for ; Sat, 2 Oct 2021 12:36:21 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1633178148.35d81b7f3bd885ec99420d0101811688eff781d8.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mpdscribble/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mpdscribble/mpdscribble-9999.ebuild X-VCS-Directories: media-sound/mpdscribble/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 35d81b7f3bd885ec99420d0101811688eff781d8 X-VCS-Branch: master Date: Sat, 2 Oct 2021 12:36:21 +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: c0758da0-af1f-4f90-8638-7776e4bf0fd8 X-Archives-Hash: a975c88edc6b6a626a82264b843da3ec commit: 35d81b7f3bd885ec99420d0101811688eff781d8 Author: Arsen Arsenović aarsen me> AuthorDate: Thu Sep 9 12:27:59 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Oct 2 12:35:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35d81b7f media-sound/mpdscribble: drop -9999 This ebuild is broken due to upstream changes. Closes: https://bugs.gentoo.org/784398 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Arsen Arsenović aarsen.me> Closes: https://github.com/gentoo/gentoo/pull/22254 Signed-off-by: Joonas Niilola gentoo.org> media-sound/mpdscribble/mpdscribble-9999.ebuild | 38 ------------------------- 1 file changed, 38 deletions(-) diff --git a/media-sound/mpdscribble/mpdscribble-9999.ebuild b/media-sound/mpdscribble/mpdscribble-9999.ebuild deleted file mode 100644 index 639a5eb9e34..00000000000 --- a/media-sound/mpdscribble/mpdscribble-9999.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit git-r3 autotools - -DESCRIPTION="An MPD client that submits information to Audioscrobbler" -HOMEPAGE="https://www.musicpd.org/clients/mpdscribble/" -EGIT_REPO_URI="https://github.com/MusicPlayerDaemon/mpdscribble.git" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="+curl" - -RDEPEND="dev-libs/glib:2 - media-libs/libmpdclient - curl? ( net-misc/curl ) - !curl? ( net-libs/libsoup:2.4 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - --with-http-client=$(usex curl curl soup) -} - -src_install() { - default - newinitd "${FILESDIR}/mpdscribble.rc" mpdscribble - keepdir /var/cache/mpdscribble -}