commit:     bfbac89685409872e5a779891167392107671ac8
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 16 04:47:35 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct 16 04:54:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfbac896

dev-python/peewee: Bump to 3.17.7

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/peewee/Manifest             |  1 +
 dev-python/peewee/peewee-3.17.7.ebuild | 81 ++++++++++++++++++++++++++++++++++
 2 files changed, 82 insertions(+)

diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest
index 1145ec18e099..4378a1a09d79 100644
--- a/dev-python/peewee/Manifest
+++ b/dev-python/peewee/Manifest
@@ -1 +1,2 @@
 DIST peewee-3.17.6.gh.tar.gz 929364 BLAKE2B 
f7add872316dae1210a4dec4a71cf0b5122010e3da854019887143111cca5ed7f53b48bdf68aaa215097bde8003878e4aae0ddf827fb3fd0ab635345815a0d7a
 SHA512 
7250b931ebaab6f5e1fbc9461cb737e30eef794bbc6a15f6f1ba59e358bd9101c17d31112906d314a12f0a05b4c2112435f90053a866f3b91d0e5a1dc4aba2f8
+DIST peewee-3.17.7.gh.tar.gz 929522 BLAKE2B 
ebbde16c53b7fbc4295adb14e54d2df5b46f11e2aa00248fa753af30b1b029679641f0981c5b71070ea503c61c0658af0341970aa8a74f25f6155d1f94c2d1a0
 SHA512 
5952b7928432599ec2ec6d78023c762d9852e15bdc2e3411d5ea7f9618de107b2d9400d8e921047842a688b4f409d5ea4996651a74983e1ce92380e9f259151d

diff --git a/dev-python/peewee/peewee-3.17.7.ebuild 
b/dev-python/peewee/peewee-3.17.7.ebuild
new file mode 100644
index 000000000000..d4201d49a2c0
--- /dev/null
+++ b/dev-python/peewee/peewee-3.17.7.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Small Python ORM"
+HOMEPAGE="
+       https://github.com/coleifer/peewee/
+       https://pypi.org/project/peewee/
+"
+SRC_URI="
+       https://github.com/coleifer/peewee/archive/${PV}.tar.gz
+               -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+IUSE="examples +native-extensions test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+       native-extensions? ( dev-db/sqlite:3= )
+"
+RDEPEND="
+       ${DEPEND}
+"
+BDEPEND="
+       dev-python/cython[${PYTHON_USEDEP}]
+       test? (
+               dev-db/postgresql
+               dev-python/psycopg:0[${PYTHON_USEDEP}]
+               sys-libs/timezone-data
+       )
+"
+
+distutils_enable_sphinx docs \
+       dev-python/sphinx-rtd-theme
+
+src_prepare() {
+       # disable test failing on postgres 16
+       sed -e 's/test_timeout/_&/' -i tests/sqliteq.py || die
+
+       default
+}
+
+src_compile() {
+       if ! use native-extensions; then
+               local -x NO_SQLITE=1
+       fi
+
+       distutils-r1_src_compile
+}
+
+src_test() {
+       initdb -D "${T}"/pgsql || die
+       pg_ctl -w -D "${T}"/pgsql start -o "-h '' -k '${T}'" || die
+       createdb -h "${T}" peewee_test || die
+       psql -h "${T}" peewee_test -c 'create extension hstore;' || die
+
+       local -x PEEWEE_PSQL_HOST="${T}"
+       distutils-r1_src_test
+
+       pg_ctl -w -D "${T}"/pgsql stop || die
+}
+
+python_test() {
+       "${EPYTHON}" runtests.py -v 2 || die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+       use examples && DOCS=( examples/ )
+       distutils-r1_python_install_all
+}

Reply via email to