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 A38951382C5 for ; Tue, 17 Apr 2018 11:27:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA9C3E095F; Tue, 17 Apr 2018 11:27:45 +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 7B33AE095F for ; Tue, 17 Apr 2018 11:27:45 +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 660B2335C2E for ; Tue, 17 Apr 2018 11:27:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9093F257 for ; Tue, 17 Apr 2018 11:27:42 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1523964446.75383b55eed8ef3ddfc01f2769ef9d0408ea5d5f.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/playerctl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/playerctl/Manifest media-sound/playerctl/playerctl-0.6.0.ebuild X-VCS-Directories: media-sound/playerctl/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 75383b55eed8ef3ddfc01f2769ef9d0408ea5d5f X-VCS-Branch: master Date: Tue, 17 Apr 2018 11:27:42 +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: e10b75ed-b311-43dc-9763-2a5bae1bb8c5 X-Archives-Hash: e9235c1a1f6e709ff2b21b838ac2d8c9 commit: 75383b55eed8ef3ddfc01f2769ef9d0408ea5d5f Author: Göktürk Yüksek gentoo org> AuthorDate: Tue Apr 17 11:26:22 2018 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Tue Apr 17 11:27:26 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75383b55 media-sound/playerctl: bump to 0.6.0 Package-Manager: Portage-2.3.19, Repoman-2.3.6 media-sound/playerctl/Manifest | 1 + media-sound/playerctl/playerctl-0.6.0.ebuild | 51 ++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/media-sound/playerctl/Manifest b/media-sound/playerctl/Manifest index aedd19a08d0..8abb779fa23 100644 --- a/media-sound/playerctl/Manifest +++ b/media-sound/playerctl/Manifest @@ -1 +1,2 @@ DIST playerctl-0.5.0.tar.gz 17015 BLAKE2B 5da1d0fd4e442ac5f124bd693ae14222624c5239c9fad72e57d43977467339522344bc8d8c37b0f2bfda51c61861dc33d7e35e4a730ce59a87b691b5657ec729 SHA512 307cad5eeea7efa0c97c885660f49468f442fe907ef2495b56ac512e0551c7248750897b6d00934cbfcfcb35f486a101a238b276ef71d2ef866132ca3cc0932c +DIST playerctl-0.6.0.tar.gz 22124 BLAKE2B 6bb90586c56e21a00b5e6e1769248b9782a8211b01dacf590857fe4fe199d6d3fa7aa46a36cba9a8e198a1aad0bf17973fc15140db11c484edfb0275971d3d08 SHA512 8023b5704ca2a428510df6228850b616061289764cc3c4190c0c46f79d6a20e499495f2d773bd821357653ba63bca40eac70f7cc3a11251da3c6a4f7781db739 diff --git a/media-sound/playerctl/playerctl-0.6.0.ebuild b/media-sound/playerctl/playerctl-0.6.0.ebuild new file mode 100644 index 00000000000..ae41da21b7d --- /dev/null +++ b/media-sound/playerctl/playerctl-0.6.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools xdg-utils + +DESCRIPTION="A CLI utility to control media players over MPRIS" +HOMEPAGE="https://github.com/acrisci/playerctl" +SRC_URI="https://github.com/acrisci/playerctl/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND=" + dev-libs/glib:2 + dev-libs/gobject-introspection +" +DEPEND="${RDEPEND} + dev-util/gdbus-codegen + dev-util/gtk-doc-am + doc? ( dev-util/gtk-doc ) + virtual/pkgconfig +" + +src_prepare() { + if ! use doc; then + echo 'EXTRA_DIST = ' > gtk-doc.make || die + fi + + default + eautoreconf +} + +src_configure() { + xdg_environment_reset # 596166 + + econf \ + $(use_enable doc gtk-doc) \ + $(use_enable doc gtk-doc-html) +} + +src_compile() { + emake -j1 +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +}