diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /media-video/subliminal | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
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 <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'media-video/subliminal')
-rw-r--r-- | media-video/subliminal/Manifest | 1 | ||||
-rw-r--r-- | media-video/subliminal/metadata.xml | 13 | ||||
-rw-r--r-- | media-video/subliminal/subliminal-0.7.4.ebuild | 41 | ||||
-rw-r--r-- | media-video/subliminal/subliminal-9999.ebuild | 39 |
4 files changed, 94 insertions, 0 deletions
diff --git a/media-video/subliminal/Manifest b/media-video/subliminal/Manifest new file mode 100644 index 000000000000..3d85d36bb377 --- /dev/null +++ b/media-video/subliminal/Manifest @@ -0,0 +1 @@ +DIST subliminal-0.7.4.tar.gz 27913 SHA256 b3ac61e8a915dc089356771637a38e4a155cf45ddd1f96a24adce8cbebc8e522 SHA512 1a7cbade7d895a6decf9abd30dc7c51f4104a91e3e01d3d600a97113dc5c8589c5957fad49e5ff537ea0cdb11d982e77c68a7566bf62455d842ab3afa64d2d47 WHIRLPOOL 72a68e58285e27580c3f19dab1c608de5aa1f3d11e90974602a589d33cd96d90da61ab35c8aa3ea32d418320d7707fb11c2aee3c8d885e4c6f4032918ef6f3e7 diff --git a/media-video/subliminal/metadata.xml b/media-video/subliminal/metadata.xml new file mode 100644 index 000000000000..edcbae0dde7c --- /dev/null +++ b/media-video/subliminal/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proxy-maintainers</herd> + <maintainer> + <email>nikoli@gmx.us</email> + <name>Nikoli</name> + </maintainer> + <upstream> + <remote-id type="pypi">subliminal</remote-id> + <remote-id type="github">Diaoul/subliminal</remote-id> + </upstream> +</pkgmetadata> diff --git a/media-video/subliminal/subliminal-0.7.4.ebuild b/media-video/subliminal/subliminal-0.7.4.ebuild new file mode 100644 index 000000000000..7b7d69dcd4ef --- /dev/null +++ b/media-video/subliminal/subliminal-0.7.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +# setup.py declares support for python3.3, but it does not work +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Python library to search and download subtitles" +HOMEPAGE="http://subliminal.readthedocs.org https://github.com/Diaoul/subliminal https://pypi.python.org/pypi/subliminal" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + >=dev-python/beautifulsoup-4.3.2:4[${PYTHON_USEDEP}] + >=dev-python/guessit-0.6.2[${PYTHON_USEDEP}] + <dev-python/guessit-0.7[${PYTHON_USEDEP}] + >=dev-python/requests-2.0.1[${PYTHON_USEDEP}] + >=dev-python/enzyme-0.4[${PYTHON_USEDEP}] + >=dev-python/html5lib-0.99[${PYTHON_USEDEP}] + >=dev-python/dogpile-cache-0.5.2[${PYTHON_USEDEP}] + >=dev-python/babelfish-0.4.0[${PYTHON_USEDEP}] + <dev-python/babelfish-0.5[${PYTHON_USEDEP}] + >=dev-python/charade-1.0.3[${PYTHON_USEDEP}] + >=dev-python/pysrt-0.5.0[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] +" +# tests need network +RESTRICT="test" + +python_test() { + esetup.py test +} diff --git a/media-video/subliminal/subliminal-9999.ebuild b/media-video/subliminal/subliminal-9999.ebuild new file mode 100644 index 000000000000..1d4be1b3549f --- /dev/null +++ b/media-video/subliminal/subliminal-9999.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 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 git-r3 + +DESCRIPTION="Python library to search and download subtitles" +HOMEPAGE="http://subliminal.readthedocs.org https://github.com/Diaoul/subliminal https://pypi.python.org/pypi/subliminal" +EGIT_REPO_URI="https://github.com/Diaoul/subliminal.git" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND=" + >=dev-python/beautifulsoup-4.3.2:4[${PYTHON_USEDEP}] + >=dev-python/guessit-0.7[${PYTHON_USEDEP}] + >=dev-python/requests-2.0.1[${PYTHON_USEDEP}] + >=dev-python/enzyme-0.4[${PYTHON_USEDEP}] + >=dev-python/html5lib-0.99[${PYTHON_USEDEP}] + >=dev-python/dogpile-cache-0.5.2[${PYTHON_USEDEP}] + >=dev-python/babelfish-0.5.1[${PYTHON_USEDEP}] + >=dev-python/chardet-2.2.1[${PYTHON_USEDEP}] + >=dev-python/pysrt-1.0.1[${PYTHON_USEDEP}] + >=dev-python/pyxdg-0.25[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] +" +# tests need network +RESTRICT="test" + +python_test() { + esetup.py test +} |