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: Tue, 02 Mar 2021 09:06:31
Message-Id: 1614675962.800102911880db5e46e9e70669c3b1117a0a13a2.mgorny@gentoo
1 commit: 800102911880db5e46e9e70669c3b1117a0a13a2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 2 09:06:02 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 2 09:06:02 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80010291
7
8 dev-python/peewee: Remove old
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.13.2.ebuild | 32 --------------------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest
17 index bfad22ce4f2..943f699462d 100644
18 --- a/dev-python/peewee/Manifest
19 +++ b/dev-python/peewee/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST peewee-3.13.2.tar.gz 871323 BLAKE2B 18fd9729ddd6ce3fe4a6963b697815d44e91b5078ba0b868e6b4f24f4cec9c5b01239d7f414f4f8c0871d3dc6bd5e0e37e218c9438cf1f7461bf729cb74049e4 SHA512 7304473f8e64df7cb2205900cfbdd52346d89e9639dc79ed6e13d5c4c11cc856e39e366772039097dc5ca86b4768fa4670dccd96a85cabfb522c463b31c40a8b
22 DIST peewee-3.14.0.tar.gz 877299 BLAKE2B 25d0027354258c3b2a4db0765f8dac23527816c24afdaf20252e244cfec383a4ae4f10a29ea0f801d5c38406f8c17bcc6fef881b4bce96ed45920a8865868e80 SHA512 083bb24952a6d05cd6c8376e185e050df0ab5b37bc553241128b0ed3b0ebdd322d9626c32943658324d413cff8ab0bb2ddf6c84d99a0fbe057c0e5c8ec93d7f9
23 DIST peewee-3.14.1.tar.gz 879443 BLAKE2B f7a1967006e517c56a4a2b10bd9c097e87dca4135038676b096431e6927fa6f0a7e2ad13c036a1a7499a9b3a140a4d4796399f9c1e727e7e8a0770ef3483a3ce SHA512 f8b8bddd1e32e05d75a2f1cc5fcc8b9d98397107e4e4d3b19b444f20f4b8243d740643c858d20fd0ceb8b30de859fe17079fc611ac21cf289c417e1f857f1f0f
24
25 diff --git a/dev-python/peewee/peewee-3.13.2.ebuild b/dev-python/peewee/peewee-3.13.2.ebuild
26 deleted file mode 100644
27 index 95c1d782bf6..00000000000
28 --- a/dev-python/peewee/peewee-3.13.2.ebuild
29 +++ /dev/null
30 @@ -1,32 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -PYTHON_REQ_USE="sqlite"
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Small Python ORM"
41 -HOMEPAGE="https://github.com/coleifer/peewee/"
42 -SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="examples test"
48 -RESTRICT="!test? ( test )"
49 -
50 -BDEPEND="test? ( dev-python/psycopg[${PYTHON_USEDEP}] )"
51 -DEPEND="dev-python/cython[${PYTHON_USEDEP}]"
52 -
53 -distutils_enable_sphinx docs
54 -
55 -python_test() {
56 - "${EPYTHON}" ./runtests.py || die "tests failed under ${EPYTHON}"
57 -}
58 -
59 -python_install_all() {
60 - use examples && DOCS=( examples/ )
61 - distutils-r1_python_install_all
62 -}