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/autopage/
Date: Sat, 28 May 2022 05:00:25
Message-Id: 1653714015.cb87d9b0a8b684b136be31d919a9921ed1bad0dd.mgorny@gentoo
1 commit: cb87d9b0a8b684b136be31d919a9921ed1bad0dd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 28 04:47:49 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat May 28 05:00:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb87d9b0
7
8 dev-python/autopage: Bump to 0.5.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/autopage/Manifest | 1 +
13 dev-python/autopage/autopage-0.5.1.ebuild | 36 +++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-python/autopage/Manifest b/dev-python/autopage/Manifest
17 index 32d43131a845..e4205c56a82a 100644
18 --- a/dev-python/autopage/Manifest
19 +++ b/dev-python/autopage/Manifest
20 @@ -1 +1,2 @@
21 DIST autopage-0.5.0.gh.tar.gz 21403 BLAKE2B 1c20123bd7ac9dcfc53d5531ea5cec5dcb2d4b8f4c433ab958b96b769540084989ee841f963d24d1b01c3c4deed9933ab213e3838a898a8fc3261096a272d83d SHA512 b40bf0c432a8ecf82f56cf9679191bf13e5fbf478f1236d197df05e29ac27a1d33bffbf3f66fedbf93548e7314ee1a8f1687fa7c696b35f944f8f5dfd2b2dd19
22 +DIST autopage-0.5.1.gh.tar.gz 21406 BLAKE2B 45d67443fa882d6f824ea71a8f9d20eb1ae789a271d84dc566a2535de631b5ce644aa28f51c5be1db818194e39628b6526ac087cd6eccc425132f15fafda10e9 SHA512 3d6e10c222566fd5f5e07e3247ebe19ce7ffe3b4baf9948741ee9a8aaafbefb0fcfaf4b26f0a4a6392615e73c7e8539c9bcbff1112a291c193c0b653f33e8657
23
24 diff --git a/dev-python/autopage/autopage-0.5.1.ebuild b/dev-python/autopage/autopage-0.5.1.ebuild
25 new file mode 100644
26 index 000000000000..8ee86b0e8ad2
27 --- /dev/null
28 +++ b/dev-python/autopage/autopage-0.5.1.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 2021-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A library to provide automatic paging for console output"
41 +HOMEPAGE="
42 + https://github.com/zaneb/autopage/
43 + https://pypi.org/project/autopage/
44 +"
45 +SRC_URI="
46 + https://github.com/zaneb/autopage/archive/v${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~s390 ~sparc ~x86"
53 +
54 +BDEPEND="
55 + test? (
56 + dev-python/fixtures[${PYTHON_USEDEP}]
57 + )
58 +"
59 +
60 +distutils_enable_tests unittest
61 +
62 +python_test() {
63 + unset LESS PAGER
64 + eunittest
65 +}