Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/guessit/
Date: Sun, 03 May 2020 16:09:31
Message-Id: 1588522162.158eb9410e0a9b325002840a3168454675ed0cd6.mgorny@gentoo
1 commit: 158eb9410e0a9b325002840a3168454675ed0cd6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 3 14:15:00 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun May 3 16:09:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=158eb941
7
8 dev-python/guessit: Remove 9999
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/guessit/guessit-9999.ebuild | 39 ----------------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/guessit/guessit-9999.ebuild b/dev-python/guessit/guessit-9999.ebuild
16 deleted file mode 100644
17 index 150c82479b9..00000000000
18 --- a/dev-python/guessit/guessit-9999.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -DISTUTILS_USE_SETUPTOOLS=rdepend
27 -PYTHON_COMPAT=( python3_6 )
28 -
29 -inherit distutils-r1 git-r3
30 -
31 -DESCRIPTION="Python library for guessing information from video filenames"
32 -HOMEPAGE="https://github.com/guessit-io/guessit https://pypi.org/project/guessit/"
33 -EGIT_REPO_URI="https://github.com/guessit-io/guessit.git"
34 -EGIT_BRANCH="develop"
35 -
36 -LICENSE="LGPL-3"
37 -SLOT="0"
38 -KEYWORDS=""
39 -
40 -RDEPEND="
41 - >=dev-python/babelfish-0.5.5[${PYTHON_USEDEP}]
42 - >=dev-python/rebulk-0.9.0[${PYTHON_USEDEP}]
43 - dev-python/python-dateutil[${PYTHON_USEDEP}]
44 - dev-python/pyyaml[${PYTHON_USEDEP}]
45 - dev-python/six[${PYTHON_USEDEP}]
46 -"
47 -
48 -distutils_enable_tests pytest
49 -
50 -python_prepare_all() {
51 - # Disable benchmarks as they require unavailable pytest-benchmark.
52 - rm guessit/test/test_benchmark.py || die
53 - sed -i -e "s|'pytest-benchmark',||g" setup.py || die
54 -
55 - # Disable unconditional dependency on dev-python/pytest-runner.
56 - sed -i -e "s|'pytest-runner'||g" setup.py || die
57 -
58 - distutils-r1_python_prepare_all
59 -}