Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/peewee/
Date: Fri, 26 Aug 2022 16:01:47
Message-Id: 1661529458.1a7285639f134906c0c3bc50c615a3cb7585adff.arthurzam@gentoo
1 commit: 1a7285639f134906c0c3bc50c615a3cb7585adff
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 26 15:57:38 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 26 15:57:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a728563
7
8 dev-python/peewee: add 3.15.2
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/peewee/Manifest | 1 +
13 dev-python/peewee/peewee-3.15.2.ebuild | 41 ++++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest
17 index de5320c36de3..f4ed9b86087d 100644
18 --- a/dev-python/peewee/Manifest
19 +++ b/dev-python/peewee/Manifest
20 @@ -1 +1,2 @@
21 DIST peewee-3.15.1.gh.tar.gz 903784 BLAKE2B 2570f12089728dd56bbcdf8715b7874fe11bed4790b80780b5850445188305a98695cbaac2e7a9b1cd53d9ae601a6a1be796219386dfa07da45610013151062d SHA512 eabfa7ae532fc6d392c7c89844ac28533787dd1a8e08ba797d6f0c5f70b9e60d74e3ca98e1a1e71e66744a7b48a3544c228289d7ac415619bfd81da15d6cf0fc
22 +DIST peewee-3.15.2.gh.tar.gz 905707 BLAKE2B 7441586c8da5080a50964a4d8e5c73f28b8e1adeb45b4ced675c70f55cb3264460014dbab36f097fbacfc2fce8cf3f42ef36a6c1737a671ecd8bfede6af82c8e SHA512 6fa574161cdd224104bb428b9935574d3dc69ec574e5887ab68c7686d63af856787e3411e27703773c0e2f75f51915da569538662a908c225ace3c14c78892b9
23
24 diff --git a/dev-python/peewee/peewee-3.15.2.ebuild b/dev-python/peewee/peewee-3.15.2.ebuild
25 new file mode 100644
26 index 000000000000..82b01219bc7a
27 --- /dev/null
28 +++ b/dev-python/peewee/peewee-3.15.2.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-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 +PYTHON_REQ_USE="sqlite"
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Small Python ORM"
42 +HOMEPAGE="
43 + https://github.com/coleifer/peewee/
44 + https://pypi.org/project/peewee/
45 +"
46 +SRC_URI="
47 + https://github.com/coleifer/${PN}/archive/${PV}.tar.gz
48 + -> ${P}.gh.tar.gz
49 +"
50 +
51 +LICENSE="BSD"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~riscv ~x86"
54 +IUSE="examples test"
55 +RESTRICT="!test? ( test )"
56 +
57 +BDEPEND="
58 + dev-python/cython[${PYTHON_USEDEP}]
59 +"
60 +
61 +distutils_enable_sphinx docs
62 +
63 +python_test() {
64 + "${EPYTHON}" runtests.py -v 2 || die "tests failed under ${EPYTHON}"
65 +}
66 +
67 +python_install_all() {
68 + use examples && DOCS=( examples/ )
69 + distutils-r1_python_install_all
70 +}