diff options
author | Jeroen Roovers <jer@gentoo.org> | 2019-12-25 12:46:10 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2019-12-25 12:47:17 +0100 |
commit | 354e050c9c802d45ad23a0e810327fb68d3b428c (patch) | |
tree | d62fff166e5428a153eecaf8cf2fe85535dcceec /net-misc | |
parent | net-misc/youtube-dl: Version 2019.12.25 (diff) | |
download | gentoo-354e050c9c802d45ad23a0e810327fb68d3b428c.tar.gz gentoo-354e050c9c802d45ad23a0e810327fb68d3b428c.tar.bz2 gentoo-354e050c9c802d45ad23a0e810327fb68d3b428c.zip |
net-misc/youtube-dl: Update live ebuild
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Bug: https://bugs.gentoo.org/703168
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/youtube-dl/youtube-dl-99999999.ebuild | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/net-misc/youtube-dl/youtube-dl-99999999.ebuild b/net-misc/youtube-dl/youtube-dl-99999999.ebuild index f30b1cfa0a04..6e0139001167 100644 --- a/net-misc/youtube-dl/youtube-dl-99999999.ebuild +++ b/net-misc/youtube-dl/youtube-dl-99999999.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" -PYTHON_COMPAT=(python{2_7,3_5,3_6,3_7}) +EAPI=7 +PYTHON_COMPAT=(python{2_7,3_{5,6,7,8}}) inherit bash-completion-r1 distutils-r1 git-r3 readme.gentoo-r1 DESCRIPTION="Download videos from YouTube.com (and more sites...)" @@ -11,18 +11,22 @@ EGIT_REPO_URI="${HOMEPAGE}" LICENSE="public-domain" KEYWORDS="" -RESTRICT="test" SLOT="0" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] -" +IUSE="test" RDEPEND=" - ${DEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] || ( dev-python/pycryptodome[${PYTHON_USEDEP}] dev-python/pycrypto[${PYTHON_USEDEP}] ) " +DEPEND=" + ${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/flake8[${PYTHON_USEDEP}] + ) +" src_compile() { distutils-r1_src_compile @@ -30,6 +34,10 @@ src_compile() { emake ${PN}.{bash-completion,fish,zsh} } +python_test() { + emake offlinetest +} + python_install_all() { dodoc README.md |