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: Sun, 23 Feb 2020 07:25:36
Message-Id: 1582442355.c7725aa03b09889f0c6e8c0f7ba1de0aa5d1d065.juippis@gentoo
1 commit: c7725aa03b09889f0c6e8c0f7ba1de0aa5d1d065
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 23 07:19:15 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 23 07:19:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7725aa0
7
8 media-video/yle-dl: remove old
9
10 Closes: https://bugs.gentoo.org/710516
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 media-video/yle-dl/Manifest | 1 -
14 media-video/yle-dl/yle-dl-20191022-r1.ebuild | 68 ----------------------------
15 2 files changed, 69 deletions(-)
16
17 diff --git a/media-video/yle-dl/Manifest b/media-video/yle-dl/Manifest
18 index 6a59018abbb..9cc45c5f58f 100644
19 --- a/media-video/yle-dl/Manifest
20 +++ b/media-video/yle-dl/Manifest
21 @@ -1,2 +1 @@
22 -DIST yle-dl-20191022.tar.gz 84694 BLAKE2B bfeab9c5220931b8af5eae94b0f5377d21f6b6fb7b21c5f7bc5360a69e7185b8f1e052a584460187cfdd04d68295a20cb895e749af43c1de4ffd7fcd7bfc3875 SHA512 2d7c6d7f8e60cb8fd54fc04dcf73caf5022e3c65ab78f002c280950184fb2458f88f6934b62c0afaeaf30864b5cc47b1ef9c2a58d2855c5111a563cd195095be
23 DIST yle-dl-20191231.tar.gz 86479 BLAKE2B 5b39a3e68478fe71ec604f3217a4115ad1ff09fc8913c81acc7108e433349a0c524eebadeb892e01d3ed43ab163421ea59bc4ec486af710f0680107d15d13f35 SHA512 60d7aeab72e3a6c9346a9e569c9de6af154a65b326c7528ceebe3ee33dc1df62764d6f768da160524bf74ab6ad7c238658a58184726cec6b6b46e70b5701437c
24
25 diff --git a/media-video/yle-dl/yle-dl-20191022-r1.ebuild b/media-video/yle-dl/yle-dl-20191022-r1.ebuild
26 deleted file mode 100644
27 index dbdc198ac9a..00000000000
28 --- a/media-video/yle-dl/yle-dl-20191022-r1.ebuild
29 +++ /dev/null
30 @@ -1,68 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_{6..7} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Download media files from Yle Areena"
40 -HOMEPAGE="http://aajanki.github.io/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="libav php test +youtube-dl"
48 -
49 -# Requires an active internet connection during tests
50 -RESTRICT="test"
51 -
52 -RDEPEND="
53 - !libav? ( media-video/ffmpeg )
54 - >=dev-python/attrs-18.1.0[${PYTHON_USEDEP}]
55 - <=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
56 - ~dev-python/configargparse-0.13.0[${PYTHON_USEDEP}]
57 - dev-python/future[${PYTHON_USEDEP}]
58 - dev-python/lxml[${PYTHON_USEDEP}]
59 - dev-python/mini-amf[${PYTHON_USEDEP}]
60 - dev-python/progress[${PYTHON_USEDEP}]
61 - dev-python/pycryptodome[${PYTHON_USEDEP}]
62 - dev-python/requests[${PYTHON_USEDEP}]
63 - dev-python/setuptools[${PYTHON_USEDEP}]
64 - net-misc/wget
65 - php? (
66 - dev-lang/php:*[bcmath,cli,curl,simplexml]
67 - >=dev-libs/openssl-1.0.2:0=
68 - media-video/rtmpdump
69 - )
70 - youtube-dl? ( net-misc/youtube-dl[${PYTHON_USEDEP}] )
71 -"
72 -DEPEND="
73 - test? (
74 - ${RDEPEND}
75 - dev-python/pytest-runner[${PYTHON_USEDEP}]
76 - )
77 -"
78 -
79 -DOCS=( COPYING ChangeLog README.fi README.md yledl.conf.sample )
80 -
81 -src_prepare() {
82 - default
83 -
84 - # Gentoo doesn't ship pycryptodomex with pycryptodome
85 - sed -i 's/pycryptodomex/pycryptodome/g' setup.py || die
86 -}
87 -
88 -python_test() {
89 - # For tests to run succesfully, you need to disable network stricting
90 - # feature first.
91 - # FEATURES="-network-sandbox test" emerge -a yle-dl
92 - esetup.py test
93 -}
94 -
95 -pkg_postinst() {
96 - einfo "Sample configuration file has been installed in "
97 - einfo " /usr/share/doc/yle-dl-2.37/yledl.conf.sample.bz2"
98 -}