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 5B2E1138334 for ; Fri, 7 Sep 2018 17:29:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7162CE084A; Fri, 7 Sep 2018 17:29:55 +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 464A9E085B for ; Fri, 7 Sep 2018 17:29:55 +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 0A0AB335C7D for ; Fri, 7 Sep 2018 17:29:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0D643BC for ; Fri, 7 Sep 2018 17:29:52 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1536341384.88a98adeff58dfc908aa250cfc08e16ebb4a505b.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mpc/Manifest media-sound/mpc/mpc-0.30.ebuild X-VCS-Directories: media-sound/mpc/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 88a98adeff58dfc908aa250cfc08e16ebb4a505b X-VCS-Branch: master Date: Fri, 7 Sep 2018 17:29:52 +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-Archives-Salt: 80578246-bfc0-4031-b1cf-50e181969255 X-Archives-Hash: 1b74b70448b8e42f30726f8b441d90d4 commit: 88a98adeff58dfc908aa250cfc08e16ebb4a505b Author: Mikle Kolyada gentoo org> AuthorDate: Fri Sep 7 17:29:18 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Fri Sep 7 17:29:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88a98ade media-sound/mpc: Version bump - migrate to meson - add test suit Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-sound/mpc/Manifest | 1 + media-sound/mpc/mpc-0.30.ebuild | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/media-sound/mpc/Manifest b/media-sound/mpc/Manifest index b767286b884..a6f5fb1e1ac 100644 --- a/media-sound/mpc/Manifest +++ b/media-sound/mpc/Manifest @@ -1 +1,2 @@ DIST mpc-0.28.tar.xz 109172 BLAKE2B de0155bd1d723c0affc02055fe8923a174d6a393e431bd71399e0c0833dda5488569fa90bbdb0c650a367bbc0c384d91215bc0997f013a372c0eae015d7acc27 SHA512 1d0c96c3c7cee2eac2d3cf25f09d74b5807b8ea56ff7dfc033b8fa690fd4d42de726a641e4f2552550d8a1c1b2840575aec5c595166ca5ae5776fcc93c8fb7cf +DIST mpc-0.30.tar.xz 41968 BLAKE2B e7d1156f4fe933c360196a1fdaadeb7b51f12b3c6d7bd2f98f80359485acb9d55ea7afb98c82696078b325ab3662bf33b20653d5e0edf0f52c64624c679dd0b6 SHA512 72d6f742de87ca1a9a09c73987786fa7c93b2829242135b210a9a2269e0319ba9e37367dae1043461ea870087faf5c349425025ce6c02aa9dd513ae90cbe8221 diff --git a/media-sound/mpc/mpc-0.30.ebuild b/media-sound/mpc/mpc-0.30.ebuild new file mode 100644 index 00000000000..c21d944d3fb --- /dev/null +++ b/media-sound/mpc/mpc-0.30.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit bash-completion-r1 meson + +DESCRIPTION="A commandline client for Music Player Daemon (media-sound/mpd)" +HOMEPAGE="https://www.musicpd.org" +SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="iconv test" + +RDEPEND="media-libs/libmpdclient + iconv? ( virtual/libiconv )" +DEPEND="${RDEPEND} + dev-python/sphinx + virtual/pkgconfig + test? ( dev-libs/check )" + +src_configure() { + local emesonargs=( + -Dtest=$(usex iconv true false) + -Diconv=$(usex test true false) + ) + meson_src_configure +} + +src_install() { + meson_src_install + newbashcomp contrib/mpc-completion.bash mpc +}