commit:     0d0b7a1e92d1d466e63966d5c34a0446eaa20d99
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  8 03:24:17 2026 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan  8 03:34:42 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d0b7a1e

dev-python/peewee: Bump to 3.19.0

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

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

diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest
index 42f9d7c7cfaa..98228f45bd78 100644
--- a/dev-python/peewee/Manifest
+++ b/dev-python/peewee/Manifest
@@ -1 +1,2 @@
 DIST peewee-3.18.3.gh.tar.gz 931933 BLAKE2B 
e8bc92af4089eda5645ee725c9f6343f8b99622e58a8be5ebf1b8be805b45bbcc46f0260f444000b47dd5425609174d05173d8d81c518f75a6b9c272a0cf5668
 SHA512 
f3665284dc0da1a710f38561d337fbea3e85f6266515bf97be2ff218c0a7614aada9ae25ac9c4a971b72aff8be708647c2d5425635a20bf58b424d99877235fc
+DIST peewee-3.19.0.gh.tar.gz 931867 BLAKE2B 
94456fee11b8e1dc52e30b7d21fe42fecfaacf02e604b3199dc01b42d0fc29ca6027236cc08e584f180cf0b620891e886c00e1afce21548e23c99461c7f41fd0
 SHA512 
2924cbb8009f7523bf78aab2f7cc17ce5abfb5f45fbc25ce074e597934e2bd269e1806672b95c570fb199169fefc8e23551254934d964deb69596b8f3c27e6d3

diff --git a/dev-python/peewee/peewee-3.19.0.ebuild 
b/dev-python/peewee/peewee-3.19.0.ebuild
new file mode 100644
index 000000000000..00f17aeebe7c
--- /dev/null
+++ b/dev-python/peewee/peewee-3.19.0.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2026 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_{11..14} )
+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 ~arm64 ~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() {
+       default
+
+       # disable test failing on postgres 16
+       sed -e 's/test_timeout/_&/' -i tests/sqliteq.py || die
+}
+
+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