dev-python/apsw: Bump to 3.53.0.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-05-05 16:19:47 +02:00
parent 8eded76062
commit 57cd26fb23
2 changed files with 54 additions and 0 deletions
+1
View File
@@ -1 +1,2 @@
DIST apsw-3.51.3.0.zip 2851810 BLAKE2B cb43f3425d55f23352aced5e9c07f5feec40d0ea037a2983c91e7c381e71f4ff68fcc0ca83eb444f5b37aced861d14ef6ad0c8ae91b677607ca6543ed3fe18f6 SHA512 8c729e3a4344e7b84139bdc686cb7cbbc31e00d134ac3733a27ab63269c143f79658caa899291b3ff010fa5ef7e42ba38c887e0a41b5bd2aeaabf7fe5a523e7b
DIST apsw-3.53.0.0.zip 2862752 BLAKE2B d858e910a0d80417d50a3a9c5e41375dedf7e353317ba4680db5400d2acc728338e8ff7894ff53769bbddf2a43bbc2997406e6b405a1e314c927b67bfbee7272 SHA512 9d086f80c063bd7faf2a20fd55db0a42fa53ad999ea9bd439f63fcd23cd6be07d573adf6a5274885c45d9877ffbfbad4db2b9342825e7f468367f2ea57c74c21
+53
View File
@@ -0,0 +1,53 @@
# 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} )
inherit distutils-r1
DESCRIPTION="APSW - Another Python SQLite Wrapper"
HOMEPAGE="
https://github.com/rogerbinns/apsw/
https://pypi.org/project/apsw/
"
SRC_URI="
https://github.com/rogerbinns/apsw/releases/download/${PV}/${P}.zip
"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
IUSE="doc"
DEPEND="
>=dev-db/sqlite-${PV%.*}:3
"
RDEPEND="
${DEPEND}
"
BDEPEND="
app-arch/unzip
"
src_configure() {
cat >> setup.apsw <<-EOF || die
[build_ext]
use_system_sqlite_config=True
EOF
}
python_test() {
esetup.py build_test_extension
cd "${T}" || die
"${EPYTHON}" -m apsw.tests -v || die "Tests failed under ${EPYTHON}"
}
python_install_all() {
doman man/apsw.1
use doc && local HTML_DOCS=( doc/. )
distutils-r1_python_install_all
}