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/flask-paginate/
Date: Mon, 28 Sep 2020 12:59:58
Message-Id: 1601297984.a3d344a93e4413d190d00ca5a04365e235d95696.juippis@gentoo
1 commit: a3d344a93e4413d190d00ca5a04365e235d95696
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Sat Sep 19 13:11:58 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 28 12:59:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3d344a9
7
8 dev-python/flask-paginate: drop old
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Closes: https://github.com/gentoo/gentoo/pull/17598
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 dev-python/flask-paginate/Manifest | 1 -
16 .../flask-paginate/flask-paginate-0.5.3-r1.ebuild | 33 ----------------------
17 2 files changed, 34 deletions(-)
18
19 diff --git a/dev-python/flask-paginate/Manifest b/dev-python/flask-paginate/Manifest
20 index 642213b3e30..3a28f339eaf 100644
21 --- a/dev-python/flask-paginate/Manifest
22 +++ b/dev-python/flask-paginate/Manifest
23 @@ -1,2 +1 @@
24 -DIST flask-paginate-0.5.3.tar.gz 118570 BLAKE2B 0c6d1163dcd8144afa80b217ab3a714a39f4015aa732b4c32cf0feee0d7ee06968bd8549651f2941be9c60d3fd36a18e132dd4c174eb4148e63f83e461cbf519 SHA512 fe3cdc808459528c449611b2411c377d46bdef4995cd2851730e90dc0091da15479022f401e31113c4d39f766841d9701f285c81e0ec6293eddd4c8f0821567e
25 DIST flask-paginate-0.7.0.tar.gz 119358 BLAKE2B 24c1f3bc77853c9c96bb72d3364e73845f8fd0870606dd96b4261861430bef864a6830dd793f4f6e8a9371c89342dda88c5f976d79ff4a1bec7d687614b2014a SHA512 11c335c08c6a9c32999e5b8ba7a76c1fb04769e5ab679b550efc87497446edbaa1e3ccb62a4c238a0b5585f7ba4067e43f158ae123c3b118db84b90cb5d4f219
26
27 diff --git a/dev-python/flask-paginate/flask-paginate-0.5.3-r1.ebuild b/dev-python/flask-paginate/flask-paginate-0.5.3-r1.ebuild
28 deleted file mode 100644
29 index 22d2f703dbb..00000000000
30 --- a/dev-python/flask-paginate/flask-paginate-0.5.3-r1.ebuild
31 +++ /dev/null
32 @@ -1,33 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( pypy3 python3_{6,7} )
39 -
40 -inherit distutils-r1
41 -
42 -MY_COMMIT="510ad833106134711868653fb597bf75ea8ac34f"
43 -
44 -DESCRIPTION="Pagination support for flask"
45 -HOMEPAGE="https://flask-paginate.readthedocs.io"
46 -# https://github.com/lixxu/flask-paginate/issues/68
47 -SRC_URI="https://github.com/lixxu/flask-paginate/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
48 -
49 -LICENSE="BSD"
50 -SLOT="0"
51 -KEYWORDS="~amd64 ~x86"
52 -IUSE="test"
53 -RESTRICT="!test? ( test )"
54 -
55 -RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
56 -BDEPEND="
57 - dev-python/setuptools[${PYTHON_USEDEP}]
58 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
59 -"
60 -
61 -S="${WORKDIR}/${PN}-${MY_COMMIT}"
62 -
63 -python_test() {
64 - pytest -vv tests/tests.py || die "tests failed with ${EPYTHON}"
65 -}