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 7B28159CA9 for ; Sun, 27 Mar 2016 18:18:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB4B8E0855; Sun, 27 Mar 2016 18:18:22 +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 4F27FE0855 for ; Sun, 27 Mar 2016 18:18:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 47F42340A9D for ; Sun, 27 Mar 2016 18:18:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B046485E for ; Sun, 27 Mar 2016 18:18:19 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1459102639.e59b24d941f48c3a3b3824e79ee94aa8edf9e789.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/you-get/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/you-get/Manifest net-misc/you-get/metadata.xml net-misc/you-get/you-get-0.4.365.ebuild X-VCS-Directories: net-misc/you-get/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: e59b24d941f48c3a3b3824e79ee94aa8edf9e789 X-VCS-Branch: master Date: Sun, 27 Mar 2016 18:18:19 +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: f9a55a61-e155-41c8-a913-a67787192682 X-Archives-Hash: 71c1850ed80fedad9bf22c82bb23dc47 commit: e59b24d941f48c3a3b3824e79ee94aa8edf9e789 Author: Yixun Lan gentoo org> AuthorDate: Sun Mar 27 18:09:38 2016 +0000 Commit: Yixun Lan gentoo org> CommitDate: Sun Mar 27 18:17:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e59b24d9 net-misc/you-get: initial version added Package-Manager: portage-2.2.28 net-misc/you-get/Manifest | 1 + net-misc/you-get/metadata.xml | 8 ++++++++ net-misc/you-get/you-get-0.4.365.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/net-misc/you-get/Manifest b/net-misc/you-get/Manifest new file mode 100644 index 0000000..d5b7c53 --- /dev/null +++ b/net-misc/you-get/Manifest @@ -0,0 +1 @@ +DIST you-get-0.4.365.tar.gz 94300 SHA256 6d13f05e186c7c9b9c712987e89e5b3ce792a2380f3904d5c819a866469b3c26 SHA512 581049f336254a6e2f14c5e3dfede4f14d6fae82783b56ff5dd5b279fe86733627575493ebd75622738add36c5ebef298c97caca6f7fcfd6aadefa05eb08817e WHIRLPOOL f90735880adea39693e7c4859e8b71d4a2650a2a9ea0b39d081c8c77b7aaedb9af54a2151d1b028698dfd144f67f6aa658211c0621f9e648e3f4c2fb21239bca diff --git a/net-misc/you-get/metadata.xml b/net-misc/you-get/metadata.xml new file mode 100644 index 0000000..3398ef8 --- /dev/null +++ b/net-misc/you-get/metadata.xml @@ -0,0 +1,8 @@ + + + + + dlan@gentoo.org + Yixun Lan + + diff --git a/net-misc/you-get/you-get-0.4.365.ebuild b/net-misc/you-get/you-get-0.4.365.ebuild new file mode 100644 index 0000000..1be8390 --- /dev/null +++ b/net-misc/you-get/you-get-0.4.365.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=(python{3_3,3_4,3_5}) +inherit eutils distutils-r1 + +DESCRIPTION="A tiny command-line utility to download media contents from the Web." +HOMEPAGE="http://www.soimort.org/you-get" +SRC_URI="https://github.com/soimort/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +REQUIRED_USE=${PYTHON_REQUIRED_USE} + +RDEPEND=" + ${PYTHON_DEPS} + virtual/ffmpeg +"