Added flexget dependencies

This commit is contained in:
layman
2017-04-23 18:09:06 +02:00
parent bd8e1053e8
commit d41a9a6c0e
31 changed files with 654 additions and 84 deletions
+3
View File
@@ -0,0 +1,3 @@
DIST path.py-10.1.tar.gz 34213 SHA256 8b0ee56f6c1421a9038823926ee8da354ce70933424b408558bc6b48496587f3 SHA512 2ae35fd35b47a771bbbc673113d1e9a5d6e05a758e646fd7cf7cc77b892133669a074566c581f7ab1fe287a6d4d172f2353e7c4c0d02bf378740251710c0d100 WHIRLPOOL 57ded5d82675ed14bbf433dc16abcd61054b86dcdd8704aba96fd82281301e9954bea26ce5a59855c4cdb3785267e41a0cb3e78e15ffac209926535a410523d6
EBUILD path-py-10.1.ebuild 1045 SHA256 63ec6109ba0093835c79eed48cd8de02e789f069e8164207806d38af36902470 SHA512 178ebec8f66ec10b4fabadc23b7a7d07acc06bb79b0b9150ba8fac6779c009f7525c2a123aa831d8fabb54255c7073fa920c1ef2581c6760d69abf82fa275a9a WHIRLPOOL cdb633947092277fb369d410d3ba8085781f2c448a25fd51f6122a0c6ce2d9ffceb8bd9291cf0e0c77ca13b0a948ba7d926b30d4f4169ee596fdc706c913fb8f
MISC metadata.xml 376 SHA256 fcc00f70918f4440a78110995e08277224425d8ce999a6d6fb1906b3c4df23f5 SHA512 6273623109e7f816ecf729a7dd65ae21b0f69049343ad49b6d439312512324aa94f2d5764e2248690718a57a24a50babcf2f29813c4d45f58eef44c9f14cb9bd WHIRLPOOL ccfbc2921a9facbc2fcc5104b6e31af7f67d1b3c1cd24f462297d1224a6c4497a9c8c0e17dd46fbf02717d1fd2cadfca7b0ae0fe8af46721b57b533dc1ddf365
+12
View File
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">path.py</remote-id>
<remote-id type="github">jaraco/path.py</remote-id>
</upstream>
</pkgmetadata>
+42
View File
@@ -0,0 +1,42 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
inherit distutils-r1
MY_P="path.py-${PV}"
DESCRIPTION="A module wrapper for os.path"
HOMEPAGE="http://pythonhosted.org/path.py https://pypi.python.org/pypi/path.py https://github.com/jaraco/path.py"
SRC_URI="mirror://pypi/p/path.py/${MY_P}.tar.gz"
SLOT="0"
LICENSE="MIT"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux"
IUSE="test"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/appdirs[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-runner[${PYTHON_USEDEP}]
)"
S="${WORKDIR}/${MY_P}"
python_prepare_all() {
sed '/setuptools_scm/d' -i setup.py || die
sed -i -e "/name=/a\ version='${PV}'," setup.py || die
distutils-r1_python_prepare_all
}
python_test() {
# https://github.com/jaraco/path.py/issues/122
unset XDG_CONFIG_HOME
esetup.py test
}