summaryrefslogtreecommitdiff
path: root/dev-python/apsw
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-07-11 03:04:40 -0500
committerroot <root@alpha.trunkmasters.com>2026-07-11 03:04:40 -0500
commit755ecc63c34034b68719f6dac52aa76ba08bbe5c (patch)
tree54b8b213b345547f9f11cba1eedb2c70282949ec /dev-python/apsw
parented2e0f29bf24219e96271574d9c99c971dff3698 (diff)
downloadbaldeagleos-repo-755ecc63c34034b68719f6dac52aa76ba08bbe5c.tar.gz
baldeagleos-repo-755ecc63c34034b68719f6dac52aa76ba08bbe5c.tar.xz
baldeagleos-repo-755ecc63c34034b68719f6dac52aa76ba08bbe5c.zip
Adding metadata
Diffstat (limited to 'dev-python/apsw')
-rw-r--r--dev-python/apsw/Manifest1
-rw-r--r--dev-python/apsw/apsw-3.53.3.1.ebuild53
2 files changed, 54 insertions, 0 deletions
diff --git a/dev-python/apsw/Manifest b/dev-python/apsw/Manifest
index e195061a848c..ce1b744b9985 100644
--- a/dev-python/apsw/Manifest
+++ b/dev-python/apsw/Manifest
@@ -3,3 +3,4 @@ DIST apsw-3.53.0.0.zip 2862752 BLAKE2B d858e910a0d80417d50a3a9c5e41375dedf7e3533
DIST apsw-3.53.1.0.zip 2864390 BLAKE2B d497cf55ab009ee55e2ea2da7b878e4dfe77c83f94ebbfecb4d4f9530b122fc31ec0ea7397372220097c7cbfb423f89b2bdf35dbca25516bfb9e43db8f123574 SHA512 05f48170c3a30c55fd68251431afd5a945a1c7182537e452ae79bb303316ef8e541db07eb340ea7b6eade795d63308251ac1f85960e50bee26ab0f5f15c9a8da
DIST apsw-3.53.2.0.zip 2869157 BLAKE2B 72800a34a30f5eeb62f4d9f49cabe1d2c8746c41ca01c307130698e497f3bda034c4be84113f9eca1100d4b9f593d7b20c137ffc5ee1fd22dfd34ac1ffb1a8ef SHA512 98226fd20c3f57e14a84418f0af8ab35b7701da9926f6074cd4cc1bc3c5084d7bba081048663687d0c6e19cb11af5815a8bfae1e14f629c89ca82ad80d456c2b
DIST apsw-3.53.3.0.zip 2870330 BLAKE2B 1f20172e8e0e095317cf06c1b4a8aeb8b2562faf64ba37adeac88fb3d04165f23dd2262e7732df6414506e2f562ee9e927a52662727bcc198fb772bc9c024044 SHA512 fd5f8f0a956a4afea20dfb28c7ff8ab3535cf509a107a201b2b0408d70abfee7ecea42f419e622adc608175c8e636ef6c28730dc1327a0a9d9564c590737ad89
+DIST apsw-3.53.3.1.zip 2870366 BLAKE2B 2ac8f16f41348939b99477a85b3d6e6200561f8fdeb0557679dd65020df0cf0e0e0b35b3fbad50e3688bf6d825230b1033f77dc615c2ee560787c941c84f90f4 SHA512 5341ec535a0cb45573fc1a7a0243eb4e9d877f2b0987d68849163939d5babd925b17fc5f7c21741e3bc512b707c7ff4156de34c49a4eb16be914bd87cdf1c6a0
diff --git a/dev-python/apsw/apsw-3.53.3.1.ebuild b/dev-python/apsw/apsw-3.53.3.1.ebuild
new file mode 100644
index 000000000000..b599d40c008d
--- /dev/null
+++ b/dev-python/apsw/apsw-3.53.3.1.ebuild
@@ -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_{13..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
+}