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 03158138D14 for ; Sun, 12 Jul 2015 15:05:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79541E08AA; Sun, 12 Jul 2015 15:05:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 275BBE08AA for ; Sun, 12 Jul 2015 15:05:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C50483407C5 for ; Sun, 12 Jul 2015 15:05:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D20BF738 for ; Sun, 12 Jul 2015 15:05:08 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1436713493.a0a21dbf51f6d6e19e7ac634b84d5502303d5a89.mrueg@gentoo> Subject: [gentoo-commits] dev/mrueg:master commit in: dev-python/pafy/ X-VCS-Repository: dev/mrueg X-VCS-Files: dev-python/pafy/Manifest dev-python/pafy/metadata.xml dev-python/pafy/pafy-0.3.74.ebuild X-VCS-Directories: dev-python/pafy/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: a0a21dbf51f6d6e19e7ac634b84d5502303d5a89 X-VCS-Branch: master Date: Sun, 12 Jul 2015 15:05:08 +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: 8e8d22b5-27d8-4464-81f6-afce96f80543 X-Archives-Hash: 83ef55585c48aab615cb5622230ac95d commit: a0a21dbf51f6d6e19e7ac634b84d5502303d5a89 Author: Manuel Rüger gentoo org> AuthorDate: Sun Jul 12 15:04:53 2015 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sun Jul 12 15:04:53 2015 +0000 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=a0a21dbf [dev-python/pafy] Initial version. Package-Manager: portage-2.2.20 dev-python/pafy/Manifest | 1 + dev-python/pafy/metadata.xml | 8 ++++++++ dev-python/pafy/pafy-0.3.74.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-python/pafy/Manifest b/dev-python/pafy/Manifest new file mode 100644 index 0000000..ef2a8de --- /dev/null +++ b/dev-python/pafy/Manifest @@ -0,0 +1 @@ +DIST pafy-0.3.74.tar.gz 57369 SHA256 affaeb941025beebf1b0dc871b6839ecc62080853be2ed6a28c64bb3148e3d17 SHA512 4aa2b0e1710048d43b3293d096f6696fff7b3500f9c03003038381415a99669dbfb9957c76be7550cfe166276d88bd8547fff771aa928239041befeae87efcc9 WHIRLPOOL 800b16ab8d04d65bcc44e6f5ea778bcca345bd1e0aec1baa886ab370a062677387678b982caae5bb9f37721faf73fb877631557b6db9db77b90ad0bd163a7784 diff --git a/dev-python/pafy/metadata.xml b/dev-python/pafy/metadata.xml new file mode 100644 index 0000000..bfcb697 --- /dev/null +++ b/dev-python/pafy/metadata.xml @@ -0,0 +1,8 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + + diff --git a/dev-python/pafy/pafy-0.3.74.ebuild b/dev-python/pafy/pafy-0.3.74.ebuild new file mode 100644 index 0000000..b6ff849 --- /dev/null +++ b/dev-python/pafy/pafy-0.3.74.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=(python{2_7,3_3}) + +inherit distutils-r1 + +DESCRIPTION="Python library to download YouTube content and retrieve metadata" +HOMEPAGE="https://github.com/mps-youtube/pafy" +SRC_URI="https://github.com/mps-youtube/pafy/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + nosetests || die +}