summaryrefslogtreecommitdiff
path: root/dev-python/apsw
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-03-16 06:48:32 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-03-16 06:48:32 +0000
commit80ea6e6ea87f4685ceff45cd13dd00d644688cac (patch)
treea114900a44fa7b9b4ed50067d4535d32a20379f8 /dev-python/apsw
parentd522d1ab80efc308821a88512ab6d40850d54cb0 (diff)
gentoo auto-resync : 16:03:2024 - 06:48:31
Diffstat (limited to 'dev-python/apsw')
-rw-r--r--dev-python/apsw/Manifest2
-rw-r--r--dev-python/apsw/apsw-3.44.2.0.ebuild51
2 files changed, 0 insertions, 53 deletions
diff --git a/dev-python/apsw/Manifest b/dev-python/apsw/Manifest
index 75f5ead90393..78dec8cf94a5 100644
--- a/dev-python/apsw/Manifest
+++ b/dev-python/apsw/Manifest
@@ -1,5 +1,3 @@
-DIST apsw-3.44.2.0.gh.tar.gz 902852 BLAKE2B bdaf72ef063d3ddaf46bf403e688ffe5ee657de5a17ca3aba496058d8f244fdfd82b41899f3c944b6d7cdfe5bab0e7608bd26db926016df6af9fa5a950c12415 SHA512 76f8b92feb792c3003d251bcf61dab80bfb34147cfb8512ad6ff1dd1f07b4e7a5c97b98c4bfc7fee179efc7439ea28573552ae25d5bc33e633da0722866fd551
DIST apsw-3.45.1.0.gh.tar.gz 904083 BLAKE2B 4cf397557bfe36e38fd48d124345de395b77a8dd313ebd77f97624d873123d5ecd82e56b6e134849e00a77f94b0c3ee2fa0cfc888b8fbbddc34b99b3274b8dc8 SHA512 5d754c45881db9e299c70bd0c290211f7e30421da258b25b5aa0d8b3c97a10622f0b75735fc84d687f78403fc257139ffc249d926be611a4101b98caf3c60a3a
-EBUILD apsw-3.44.2.0.ebuild 943 BLAKE2B 23509fcab774e0b1f597022be5fe95c4a1a97364f97fd68063bf15b056bbfbf772b8fd8617c7b33b23f122a555ce3b4b49e08a781fa0acbfb3a4e1edc400c16d SHA512 84a60cfda120ddafef9865b36ff576f202a8cbe4cc82d086aa2eb15d085d5a61d27ba1e48b123162dafe315b2abec8b2d953b5051cf4d895c17b38d050afe7ae
EBUILD apsw-3.45.1.0.ebuild 943 BLAKE2B e0acc10026d83c72e85dfe259f8e2d2310e34638ceb5fb0d87779b47e14413c27ec419416a1fdf2fa9a6748046732507533a9645482a05060daac73bbb669c1e SHA512 67e148421dedbad8cdaadf1644abb6696f4fcfb2d90c7206f3c64790778ffb3895f297a97e4fb9128ce9b538a674cebc312103738bcce6e724bff6ba12314fa6
MISC metadata.xml 700 BLAKE2B 258344a1602daf3e081fdb4c94eda8af6e231def3f02fb80d63691b47d0a503c9caad80893386ce7ef42d6be2985906f3fc5cfedfe5a1044aee04c493f3d0683 SHA512 de73b4eb06d0bcf4c81e544a98ad15231b006d62fe22f6bce7e38740b941b98297fa1a38b00060ff83ae9f3259c5020c7071469f2a3f0d9e4f8f0301cb942081
diff --git a/dev-python/apsw/apsw-3.44.2.0.ebuild b/dev-python/apsw/apsw-3.44.2.0.ebuild
deleted file mode 100644
index a137883a92bb..000000000000
--- a/dev-python/apsw/apsw-3.44.2.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2023 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..12} )
-
-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/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
-IUSE="doc"
-
-DEPEND="
- >=dev-db/sqlite-${PV%.*}:3
-"
-RDEPEND="
- ${DEPEND}
-"
-
-src_configure() {
- cat >> setup.cfg <<-EOF || die
- [build_ext]
- enable=load_extension
- 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() {
- use doc && local HTML_DOCS=( doc/. )
- distutils-r1_python_install_all
-}