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: Thu, 14 Nov 2019 04:16:12
Message-Id: 1573703766.4b29409b3918618194b2711648d5b6b1d6f6042b.juippis@gentoo
1 commit: 4b29409b3918618194b2711648d5b6b1d6f6042b
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 14 03:56:06 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 14 03:56:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b29409b
7
8 media-video/yle-dl: drop old
9
10 Package-Manager: Portage-2.3.78, Repoman-2.3.17
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-20190614.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 0d262fba3f1..142434db78c 100644
19 --- a/media-video/yle-dl/Manifest
20 +++ b/media-video/yle-dl/Manifest
21 @@ -1,2 +1 @@
22 -DIST yle-dl-20190614.tar.gz 83579 BLAKE2B 9117ab32d3e037f22cc209d3686e23d14802438f77203f08e102901d825c06e7c332d1f6ca33bce3af3d4042e9c543fec60e261153be8ab738b038cc1cf4069b SHA512 6a4bfdb93229f48580d8acf742e1e253aa3da79f84ecc3886c32757ddc46608795c58cd02cb0aaa2f7d42188456eac50a243b815baa3752ac6a1b12b9632109c
23 DIST yle-dl-20191022.tar.gz 84694 BLAKE2B bfeab9c5220931b8af5eae94b0f5377d21f6b6fb7b21c5f7bc5360a69e7185b8f1e052a584460187cfdd04d68295a20cb895e749af43c1de4ffd7fcd7bfc3875 SHA512 2d7c6d7f8e60cb8fd54fc04dcf73caf5022e3c65ab78f002c280950184fb2458f88f6934b62c0afaeaf30864b5cc47b1ef9c2a58d2855c5111a563cd195095be
24
25 diff --git a/media-video/yle-dl/yle-dl-20190614.ebuild b/media-video/yle-dl/yle-dl-20190614.ebuild
26 deleted file mode 100644
27 index ecd14071a70..00000000000
28 --- a/media-video/yle-dl/yle-dl-20190614.ebuild
29 +++ /dev/null
30 @@ -1,68 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python2_7 python3_{5..6} )
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-18.3.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 -}