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: Thu, 22 Apr 2021 15:07:15
Message-Id: 1619104018.99140f100acb05692b1294612ff4a0a216c26558.mgorny@gentoo
1 commit: 99140f100acb05692b1294612ff4a0a216c26558
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 22 13:00:08 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 22 15:06:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99140f10
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.14.3.ebuild | 35 ----------------------------------
14 2 files changed, 36 deletions(-)
15
16 diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest
17 index 9e20ed17890..ed67a21c31a 100644
18 --- a/dev-python/peewee/Manifest
19 +++ b/dev-python/peewee/Manifest
20 @@ -1,2 +1 @@
21 -DIST peewee-3.14.3.tar.gz 881613 BLAKE2B f64a73c9e8fd94b67023cbb360ce4dabfd373319403a7c942a1f845d962200ff432b4b8d84482c9e42bc5251fbafb05855f308b3aed818c14dc0191ef4e84661 SHA512 e8b3698e5c48e917b7eb4f9572590a66d792abe8ac15157935fbcc9478580f4ca41a0704cdd7412f853e63a8750ac2d5d5075c9a67d0d67d5d32bd5c8048b6b1
22 DIST peewee-3.14.4.tar.gz 882123 BLAKE2B e20848eaa7cd93ea5fcea152ffbfdbab694d9fea7ee8b945c029fee8d6c4a263317fbb0506df31d490611a2b2ac0718b0fdbea875f0013eb1f3f71941f12a26b SHA512 261856f4b691b8f5610d041a049148f213c22348a7e50514f7792932c1f4e8735b4dddb8a29c42e583c38e89551df2f05951d81bda0c47a80dc1eeeb0345f30f
23
24 diff --git a/dev-python/peewee/peewee-3.14.3.ebuild b/dev-python/peewee/peewee-3.14.3.ebuild
25 deleted file mode 100644
26 index 8d21553d141..00000000000
27 --- a/dev-python/peewee/peewee-3.14.3.ebuild
28 +++ /dev/null
29 @@ -1,35 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
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="
51 - dev-python/cython[${PYTHON_USEDEP}]
52 - test? ( dev-python/psycopg[${PYTHON_USEDEP}] )
53 -"
54 -
55 -distutils_enable_sphinx docs
56 -
57 -python_test() {
58 - "${EPYTHON}" ./runtests.py -v 2 || die "tests failed under ${EPYTHON}"
59 -}
60 -
61 -python_install_all() {
62 - use examples && DOCS=( examples/ )
63 - distutils-r1_python_install_all
64 -}