Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/yle-dl/
Date: Sat, 18 Sep 2021 09:50:18
Message-Id: 1631958597.2d647b11cc61aca19fd5f697dec8c90221b6361b.juippis@gentoo
1 commit: 2d647b11cc61aca19fd5f697dec8c90221b6361b
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 18 05:37:36 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 18 09:49:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d647b11
7
8 media-video/yle-dl: add 20210917
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 media-video/yle-dl/Manifest | 1 +
13 media-video/yle-dl/yle-dl-20210917.ebuild | 54 +++++++++++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/media-video/yle-dl/Manifest b/media-video/yle-dl/Manifest
17 index a496db569ca..532d385d524 100644
18 --- a/media-video/yle-dl/Manifest
19 +++ b/media-video/yle-dl/Manifest
20 @@ -1 +1,2 @@
21 DIST yle-dl-20210808.tar.gz 66360 BLAKE2B 6c6baa1f90dc7f1a58e5883611a61b01f78eee4cf377e1d7a38f88acc966462482daa35e6f87b264bcd34bc6ed4a668377c236ea5660cfc25560aae359013c72 SHA512 38da5d14e9485ada768dd6c05ea93dbfa948b581167029313feb365b89c5f2a81836d5a8739f8a77fe77178c7d9731292578370a868e8c8058a37a98606e6e32
22 +DIST yle-dl-20210917.tar.gz 66746 BLAKE2B 91849a5d88615fc01f12ac19cd6c5bc3acf40548c5c024eff6141b6996d0b7b2c9363d1a2d2820cd61f99105fdd1bca835506ba199bf05d2a3b537dc88f41f10 SHA512 a26d4516f932561fe49da4a2c5e7dbc5eb65bcc4e5a7073f3636b70825c54fa9ba74feea55b3f6fcc538f4a300f99262eb4f26ba1e73efd56ff612a86971ac81
23
24 diff --git a/media-video/yle-dl/yle-dl-20210917.ebuild b/media-video/yle-dl/yle-dl-20210917.ebuild
25 new file mode 100644
26 index 00000000000..5864f840593
27 --- /dev/null
28 +++ b/media-video/yle-dl/yle-dl-20210917.ebuild
29 @@ -0,0 +1,54 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +
37 +inherit distutils-r1 optfeature
38 +
39 +DESCRIPTION="Download media files from Yle Areena"
40 +HOMEPAGE="https://aajanki.github.io/yle-dl/ https://github.com/aajanki/yle-dl"
41 +SRC_URI="https://github.com/aajanki/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +IUSE="test"
48 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 +
50 +# Requires an active internet connection during tests,
51 +PROPERTIES="test_network"
52 +RESTRICT="test"
53 +
54 +RDEPEND="media-video/ffmpeg
55 + net-misc/wget
56 + >=dev-python/attrs-18.1.0[${PYTHON_USEDEP}]
57 + >=dev-python/configargparse-0.13.0[${PYTHON_USEDEP}]
58 + dev-python/lxml[${PYTHON_USEDEP}]
59 + dev-python/progress[${PYTHON_USEDEP}]
60 + dev-python/requests[${PYTHON_USEDEP}]"
61 +BDEPEND="test? (
62 + ${RDEPEND}
63 + media-video/ffmpeg[gnutls]
64 + dev-python/pip[${PYTHON_USEDEP}]
65 + dev-python/pytest[${PYTHON_USEDEP}]
66 + dev-python/wheel[${PYTHON_USEDEP}]
67 + )"
68 +
69 +distutils_enable_tests setup.py
70 +
71 +DOCS=( COPYING ChangeLog README.fi README.md yledl.conf.sample )
72 +
73 +src_install() {
74 + docompress -x "/usr/share/doc/${PF}/yledl.conf.sample"
75 + distutils-r1_src_install
76 +}
77 +
78 +pkg_postinst() {
79 + elog "Sample configuration file has been installed to "
80 + elog " /usr/share/doc/yle-dl-${PVR}/yledl.conf.sample"
81 + elog
82 + optfeature "youtube-dl download engine" net-misc/youtube-dl
83 +}