Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tqdm/
Date: Tue, 13 Aug 2019 04:29:15
Message-Id: 1565670514.01e361c1e902c26c629d0d19eb225336a4ccd9b0.juippis@gentoo
1 commit: 01e361c1e902c26c629d0d19eb225336a4ccd9b0
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Tue Jul 30 23:07:43 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 13 04:28:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e361c1
7
8 dev-python/tqdm: bump to 4.32.2
9
10 Dependency for dev-util/conan-1.17.2
11
12 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
13 Package-Manager: Portage-2.3.66, Repoman-2.3.16
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 dev-python/tqdm/Manifest | 1 +
17 dev-python/tqdm/tqdm-4.32.2.ebuild | 30 ++++++++++++++++++++++++++++++
18 dev-python/tqdm/tqdm-9999.ebuild | 4 ++--
19 3 files changed, 33 insertions(+), 2 deletions(-)
20
21 diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest
22 index fc034c9de4e..9c7f02bad2b 100644
23 --- a/dev-python/tqdm/Manifest
24 +++ b/dev-python/tqdm/Manifest
25 @@ -1 +1,2 @@
26 DIST tqdm-4.23.3.tar.gz 75941 BLAKE2B 9e5810765e8f7ea4f54b0f93f453d278d5ad4b1710f1476a6f00ff2e513789585e97dcd5a8331fe69d3593b18affd50bf9bf51cbaed29ecd68d4efad9318aa31 SHA512 40c853b7cf7611ba2ef7652417c0d42ea4392f5ea9cbe319dbb9e3dd063594e5c637fb5d13f77935fb9a034d395b28fa9480fec1c6cca1852644add4ac18cce8
27 +DIST tqdm-4.32.2.tar.gz 118690 BLAKE2B 21ae94fb1ba3db06f79dba021c5c68b089a64cf3cef94a7eabd30f93403fc99a69b0069d7e730e3cde965219a1762fc1d4a5db4dcf351fbf39c6176fec3caae6 SHA512 60811944f755115fe41e9c6971ee959ceeb9a7f61a4ed7ed5f16b3f2c0bc631448cc05a5f13109eb94b7f01f7bffba6267ab10e56a0f3fcd10f091f186164794
28
29 diff --git a/dev-python/tqdm/tqdm-4.32.2.ebuild b/dev-python/tqdm/tqdm-4.32.2.ebuild
30 new file mode 100644
31 index 00000000000..ae8228c5b05
32 --- /dev/null
33 +++ b/dev-python/tqdm/tqdm-4.32.2.ebuild
34 @@ -0,0 +1,30 @@
35 +# Copyright 1999-2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Add a progress meter to your loops in a second"
45 +HOMEPAGE="https://github.com/tqdm/tqdm"
46 +SRC_URI="https://github.com/tqdm/tqdm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +IUSE="examples"
52 +
53 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
54 +RDEPEND="${DEPEND}"
55 +
56 +src_prepare() {
57 + sed -i -e "s#man/man1#share/man/man1#" setup.py || die
58 + distutils-r1_src_prepare
59 +}
60 +
61 +python_install_all() {
62 + use examples && dodoc -r examples
63 + distutils-r1_python_install_all
64 +}
65
66 diff --git a/dev-python/tqdm/tqdm-9999.ebuild b/dev-python/tqdm/tqdm-9999.ebuild
67 index 8e669e8670d..b269ad3ec5c 100644
68 --- a/dev-python/tqdm/tqdm-9999.ebuild
69 +++ b/dev-python/tqdm/tqdm-9999.ebuild
70 @@ -1,9 +1,9 @@
71 # Copyright 1999-2019 Gentoo Authors
72 # Distributed under the terms of the GNU General Public License v2
73
74 -EAPI=6
75 +EAPI=7
76
77 -PYTHON_COMPAT=( python{2_7,3_5,3_6} )
78 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
79
80 inherit distutils-r1 git-r3