From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- net-p2p/torrentinfo/Manifest | 1 + net-p2p/torrentinfo/metadata.xml | 17 +++++++++++++++++ net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild | 26 ++++++++++++++++++++++++++ 3 files changed, 44 insertions(+) create mode 100644 net-p2p/torrentinfo/Manifest create mode 100644 net-p2p/torrentinfo/metadata.xml create mode 100644 net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild (limited to 'net-p2p/torrentinfo') diff --git a/net-p2p/torrentinfo/Manifest b/net-p2p/torrentinfo/Manifest new file mode 100644 index 000000000000..e9683c5a8ff2 --- /dev/null +++ b/net-p2p/torrentinfo/Manifest @@ -0,0 +1 @@ +DIST torrentinfo-1.8.6.tar.gz 22232 SHA256 8008d4933ba7e9f75a34318caeaceb58b56d7fd6c7d75fff70acea2716447582 SHA512 7f36f6c80876cbd70ea9e1331195c8a30a6546406f345402d4bec5c58afb9b03a3b60189b8d177a63a7047c3ede7fc18d8fc47ecb1bcbb726dd01b7cb2a6efb2 WHIRLPOOL 9a2acb0a979f518a94e6210cdcf9694b3b9e314d1b3dae0faeabb43fa604b1bfcd3fcc14719342b4e1e2b07f5f66cadfec603f52cf43c88fd8bcd11cee84350d diff --git a/net-p2p/torrentinfo/metadata.xml b/net-p2p/torrentinfo/metadata.xml new file mode 100644 index 000000000000..ed25b369cd98 --- /dev/null +++ b/net-p2p/torrentinfo/metadata.xml @@ -0,0 +1,17 @@ + + + + proxy-maintainers + + nikoli@gmx.us + Nikoli + + + + fuuzetsu@fuuzetsu.co.uk + Mateusz Kowalczyk + + https://github.com/ShanaTsunTsunLove/torrentinfo/issues + Fuuzetsu/torrentinfo + + diff --git a/net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild b/net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild new file mode 100644 index 000000000000..6329cf3b8ed2 --- /dev/null +++ b/net-p2p/torrentinfo/torrentinfo-1.8.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="A torrent file parser" +HOMEPAGE="https://github.com/Fuuzetsu/torrentinfo" +SRC_URI="https://github.com/Fuuzetsu/torrentinfo/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="test" + +RDEPEND="" +DEPEND="${RDEPEND} + test? ( dev-python/nose[${PYTHON_USEDEP}] ) +" + +python_test() { + nosetests -v test/tests.py || die "Tests fail with ${EPYTHON}" +} -- cgit v1.2.3-65-gdbad