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 35462138334 for ; Sat, 9 Feb 2019 21:56:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09BD9E0886; Sat, 9 Feb 2019 21:56:52 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6EBFE0886 for ; Sat, 9 Feb 2019 21:56:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 56A41335D50 for ; Sat, 9 Feb 2019 21:56:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 52348539 for ; Sat, 9 Feb 2019 21:56:48 +0000 (UTC) From: "Andreas Sturmlechner" 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" Message-ID: <1549749393.4e1c705812c32f5f617ee8250cc1b63d1499bf06.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mpc/mpc-0.31.ebuild X-VCS-Directories: media-sound/mpc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4e1c705812c32f5f617ee8250cc1b63d1499bf06 X-VCS-Branch: master Date: Sat, 9 Feb 2019 21:56:48 +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: 428087f9-6854-4656-84fd-9d44a2342c2c X-Archives-Hash: 70d4fe9553c75e5a33583b48549129a6 commit: 4e1c705812c32f5f617ee8250cc1b63d1499bf06 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Feb 9 21:56:33 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 9 21:56:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e1c7058 media-sound/mpc: Drop old Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/mpc/mpc-0.31.ebuild | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/media-sound/mpc/mpc-0.31.ebuild b/media-sound/mpc/mpc-0.31.ebuild deleted file mode 100644 index 2429ef0a37b..00000000000 --- a/media-sound/mpc/mpc-0.31.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit bash-completion-r1 meson - -DESCRIPTION="A commandline client for Music Player Daemon (media-sound/mpd)" -HOMEPAGE="https://www.musicpd.org https://github.com/MusicPlayerDaemon/mpc" -SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" -IUSE="iconv test" - -RDEPEND="media-libs/libmpdclient" - -DEPEND="${RDEPEND} - dev-python/sphinx - iconv? ( virtual/libiconv ) - test? ( dev-libs/check )" - -BDEPEND="virtual/pkgconfig" - -RESTRICT="!test? ( test )" - -src_configure() { - local emesonargs=( - -Dtest=$(usex test true false) - -Diconv=$(usex iconv enabled disabled) - ) - meson_src_configure -} - -src_install() { - meson_src_install - newbashcomp contrib/mpc-completion.bash mpc -}