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/peewee/
Date: Sun, 02 Aug 2020 08:37:02
Message-Id: 1596357405.f71135b1727fec1263a8c8f1f258f2559ebbd859.mgorny@gentoo
1 commit: f71135b1727fec1263a8c8f1f258f2559ebbd859
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 2 08:30:51 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 2 08:36:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f71135b1
7
8 dev-python/peewee: Remove old (py2.7)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/peewee/Manifest | 1 -
13 dev-python/peewee/peewee-3.1.0.ebuild | 48 -----------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest
17 index f0be807095a..770386da5c0 100644
18 --- a/dev-python/peewee/Manifest
19 +++ b/dev-python/peewee/Manifest
20 @@ -1,2 +1 @@
21 -DIST peewee-3.1.0.tar.gz 705099 BLAKE2B 1dc528082337ae509fc9f91c521d7bf036179ad6b1a5a93e113d594ce819d3a9cdbb7e687b51acacdaf242d542dad138ce2a21f9dcc19483c7361788329a53ed SHA512 628eea27d51017a6ab87aae9ae851d749b0f437fe1806957b23408ad3c97bbb93e5b84c66c5e70bfb7b55c9f29a0c517b84e65adc0f979da450987d670661e84
22 DIST peewee-3.13.2.tar.gz 871323 BLAKE2B 18fd9729ddd6ce3fe4a6963b697815d44e91b5078ba0b868e6b4f24f4cec9c5b01239d7f414f4f8c0871d3dc6bd5e0e37e218c9438cf1f7461bf729cb74049e4 SHA512 7304473f8e64df7cb2205900cfbdd52346d89e9639dc79ed6e13d5c4c11cc856e39e366772039097dc5ca86b4768fa4670dccd96a85cabfb522c463b31c40a8b
23
24 diff --git a/dev-python/peewee/peewee-3.1.0.ebuild b/dev-python/peewee/peewee-3.1.0.ebuild
25 deleted file mode 100644
26 index 78dda8ee3b0..00000000000
27 --- a/dev-python/peewee/peewee-3.1.0.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python{2_7,3_6} )
35 -PYTHON_REQ_USE="sqlite(+)"
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Small python ORM"
40 -HOMEPAGE="https://github.com/coleifer/peewee/"
41 -SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="doc examples"
47 -
48 -DEPEND="dev-python/cython[${PYTHON_USEDEP}]
49 - dev-python/setuptools[${PYTHON_USEDEP}]
50 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
51 -# Req'd to ensure a unique tmp.db for each python impl running the testsuite.
52 -DISTUTILS_IN_SOURCE_BUILD=1
53 -
54 -python_prepare_all() {
55 - sed -i -e "s#test_suite='tests',##g;" ./setup.py || die
56 - distutils-r1_python_prepare_all
57 -}
58 -
59 -python_compile() {
60 - python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
61 - distutils-r1_python_compile
62 -}
63 -
64 -python_compile_all() {
65 - use doc && emake -C docs html
66 -}
67 -
68 -python_test() {
69 - # Testsuite run using runtests.py does not require deps listed in previous ebuild
70 - "${PYTHON}" ./runtests.py || die "tests failed under ${EPYTHON}"
71 -}
72 -
73 -python_install_all() {
74 - use doc && local HTML_DOCS=( docs/_build/html/. )
75 - use examples && DOCS=( examples/ )
76 - distutils-r1_python_install_all
77 -}