Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/loguru/
Date: Thu, 22 Aug 2019 01:06:45
Message-Id: 1566435964.6ad93299f63bcc0fdf5d3230254e71ebb7b651eb.gyakovlev@gentoo
1 commit: 6ad93299f63bcc0fdf5d3230254e71ebb7b651eb
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 22 01:06:04 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 22 01:06:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad93299
7
8 dev-python/loguru: drop 0.3.1
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 dev-python/loguru/Manifest | 1 -
14 dev-python/loguru/loguru-0.3.1.ebuild | 47 -----------------------------------
15 2 files changed, 48 deletions(-)
16
17 diff --git a/dev-python/loguru/Manifest b/dev-python/loguru/Manifest
18 index 96970fa6497..1ff209a5d79 100644
19 --- a/dev-python/loguru/Manifest
20 +++ b/dev-python/loguru/Manifest
21 @@ -1,2 +1 @@
22 -DIST loguru-0.3.1.tar.gz 377834 BLAKE2B 4402a6dfd8e36efb966eb0f31ba2161183c03a7072f45ef86110587b1f3653e4711c0461d39d5e0047fb7b84c7da417c011644ffee815f82bf1f4847588b17b8 SHA512 b0b75aa265839be0a522101671bf9992c1fe548439988a5c2feb58702be77944137e4f78920ec5dd4fe5953daf7160714a4de940527d0987dba4907ac27a0e15
23 DIST loguru-0.3.2.tar.gz 378160 BLAKE2B 83301f5bb79d0edb20d211e8ee4d05b3b93a0a9f13f13b2ff103f1e9759f227b80e5571ccda48098a1e45658d99a54768fdf456ffef7a13d08375ce62ad876e1 SHA512 e78f5f43fbf4891ff9b9a21c1a29e4f02877f73a09b7b7df25076bffb25a094eef561c469b22cbb999979de4dbf81df2298681fa219dc684f15fe7c52ecb5359
24
25 diff --git a/dev-python/loguru/loguru-0.3.1.ebuild b/dev-python/loguru/loguru-0.3.1.ebuild
26 deleted file mode 100644
27 index f3f34085887..00000000000
28 --- a/dev-python/loguru/loguru-0.3.1.ebuild
29 +++ /dev/null
30 @@ -1,47 +0,0 @@
31 -# Copyright 2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{5,6,7} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python logging made (stupidly) simple"
41 -HOMEPAGE="https://github.com/Delgan/loguru"
42 -SRC_URI="https://github.com/Delgan/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="doc test"
48 -
49 -RDEPEND=">=dev-python/colorama-0.3.4[${PYTHON_USEDEP}]"
50 -
51 -DEPEND="
52 - doc? (
53 - dev-python/sphinx[${PYTHON_USEDEP}]
54 - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
55 - )
56 - test? (
57 - ${RDEPEND}
58 - >=dev-python/colorama-0.3.4[${PYTHON_USEDEP}]
59 - >=dev-python/pytest-4.5.0[${PYTHON_USEDEP}]
60 - )
61 -"
62 -
63 -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
64 -
65 -python_compile_all() {
66 - use doc && esetup.py build_sphinx
67 -}
68 -
69 -python_install_all() {
70 - use doc && HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
71 - distutils-r1_python_install_all
72 -}
73 -
74 -python_test() {
75 - distutils_install_for_testing
76 - pytest -vv || die "Tests failed with ${EPYTHON}"
77 -}