From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D005059CA3 for ; Fri, 18 Mar 2016 15:25:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3DFCE07E1; Fri, 18 Mar 2016 15:25:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6DB98E07E1 for ; Fri, 18 Mar 2016 15:25:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6C02B340DB0 for ; Fri, 18 Mar 2016 15:25:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5ADDD853 for ; Fri, 18 Mar 2016 15:25:41 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1458314729.c381bb9633fa68b8eabcb1b71e2fc34a8c2e848a.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/podget/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/podget/Manifest media-sound/podget/podget-0.7.10.ebuild X-VCS-Directories: media-sound/podget/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: c381bb9633fa68b8eabcb1b71e2fc34a8c2e848a X-VCS-Branch: master Date: Fri, 18 Mar 2016 15:25:41 +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: 4748f7e6-789e-4ea2-b198-454963d6267b X-Archives-Hash: 61b5c8164610e5a4aa9c10a056b672b5 commit: c381bb9633fa68b8eabcb1b71e2fc34a8c2e848a Author: Ilya Tumaykin gmail com> AuthorDate: Fri Mar 18 11:55:10 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Fri Mar 18 15:25:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c381bb96 media-sound/podget: verbump to 0.7.10 Closes: https://github.com/gentoo/gentoo/pull/1079 Package-Manager: portage-2.2.28 media-sound/podget/Manifest | 1 + media-sound/podget/podget-0.7.10.ebuild | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/media-sound/podget/Manifest b/media-sound/podget/Manifest index f9ddf05..96bd539 100644 --- a/media-sound/podget/Manifest +++ b/media-sound/podget/Manifest @@ -1 +1,2 @@ +DIST podget-0.7.10.tar.gz 61812 SHA256 51018176dab74fb931045ac7169713529d23c39bdfa59e589f894a697a0a8391 SHA512 82cbb21dd7288dc4a2df8a851f25f85e4709cd5c385b1a8df2d9369303e62ead8f7225a65a29c6614660a5d3795f422f786c8be5bb5ca709752fca2d65d84e1f WHIRLPOOL 622094442dc12b2031c60de710867216662c28f8da420b6a272eadbed0e2cc9b093299c0187a48280aed83b68edd02de4615f6976d68ee7906bc23457676f0d9 DIST podget-0.7.9.tar.gz 50898 SHA256 dd866f8a740592b0a6b1e859f73e12691e5a05c6f386006ff2a53e88090d853b SHA512 b67ee7619580ff0acfbe070bd2be4f990e035060740ffe98d5efdd24956c5fa239ac53553bc56afe1a3aaa1e70bee82d58982bbaa1059abef876f3223a473fc1 WHIRLPOOL 7ddbecd7c0dd4c71369fd0bda28e8df7f8812fbea05383b3d188eba08dd4c09b13a62af323f1f88e818519aea0d5d6eec4f78b175bdd5e2264bfca423d744617 diff --git a/media-sound/podget/podget-0.7.10.ebuild b/media-sound/podget/podget-0.7.10.ebuild new file mode 100644 index 0000000..f9f26af --- /dev/null +++ b/media-sound/podget/podget-0.7.10.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A simple podcast aggregator" +HOMEPAGE="http://podget.sourceforge.net/ https://github.com/dvehrs/podget" +SRC_URI="https://github.com/dvehrs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +RDEPEND=" + net-misc/wget + virtual/libiconv +" + +DOCS=( README Changelog ) + +src_compile() { + # There is a Makefile that we don't want to use. + :; +} + +src_install() { + dobin ${PN} + doman DOC/${PN}.7 + einstalldocs +}