diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-27 21:47:53 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-27 21:47:53 +0200 |
commit | 05407af5e19d846aa1fbc6c770f5f5584014e7af (patch) | |
tree | 9ddc30e7d475f03ae54f079e2d149ad05d36a4d5 /dev-python/apsw | |
parent | dev-python/aesara: Remove old (diff) | |
download | gentoo-05407af5e19d846aa1fbc6c770f5f5584014e7af.tar.gz gentoo-05407af5e19d846aa1fbc6c770f5f5584014e7af.tar.bz2 gentoo-05407af5e19d846aa1fbc6c770f5f5584014e7af.zip |
dev-python/apsw: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/apsw')
-rw-r--r-- | dev-python/apsw/Manifest | 1 | ||||
-rw-r--r-- | dev-python/apsw/apsw-3.35.4_p1.ebuild | 46 |
2 files changed, 0 insertions, 47 deletions
diff --git a/dev-python/apsw/Manifest b/dev-python/apsw/Manifest index 1a87533fa152..515a5c8add95 100644 --- a/dev-python/apsw/Manifest +++ b/dev-python/apsw/Manifest @@ -1,2 +1 @@ -DIST apsw-3.35.4_p1.zip 685034 BLAKE2B 5845e5fcb286c587367955c33fbee9aa4b0687af666f1d50f35f5dec8e756a0fbcf0fdbd120dd3c7a78df1f05d8eae5a973a8a71fc8a6f4271fff7d83b399013 SHA512 f420560e5821bd6305705ee6c14174f1770f4811edcfe152cb1f2ceae4295f13c82552386a7ef42c5ce88165e88bd2080b4dc2809484598522914d99f2469135 DIST apsw-3.38.1-r1.gh.tar.gz 338985 BLAKE2B aa0ef335bd3abc708b41a92959f98b4fd3961168feacb9ca6d382e0279c46d4227a8e09373721ae1361fcc38181376664130b3623b2f36e1596467b99959ecb8 SHA512 4d161641d7bf7f933507e7d7e71d437d9db95f7327e29cf34848d9b741e2711dafbefbf19cb34d78d83b4e69115acad855f924fdf80de1cea4c9d61fe0f2b670 diff --git a/dev-python/apsw/apsw-3.35.4_p1.ebuild b/dev-python/apsw/apsw-3.35.4_p1.ebuild deleted file mode 100644 index a98b052e48b8..000000000000 --- a/dev-python/apsw/apsw-3.35.4_p1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..10} ) - -inherit distutils-r1 - -MY_PV=${PV/_p/-r} -MY_P=${PN}-${MY_PV} - -DESCRIPTION="APSW - Another Python SQLite Wrapper" -HOMEPAGE="https://github.com/rogerbinns/apsw/" -SRC_URI="https://github.com/rogerbinns/apsw/releases/download/${MY_PV}/${MY_P}.zip -> ${P}.zip" -S="${WORKDIR}/${MY_P}" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="amd64 ~arm ~ppc64 x86" -IUSE="doc" - -RDEPEND=">=dev-db/sqlite-${PV%_p*}" -DEPEND="${RDEPEND}" -BDEPEND="app-arch/unzip" - -PATCHES=( "${FILESDIR}/${PN}-3.6.20.1-fix_tests.patch" ) - -python_prepare_all() { - sed -e 's/"gcc/os.environ.get("CC", "gcc") + "/' -i setup.py || die - distutils-r1_python_prepare_all -} - -python_compile() { - distutils-r1_python_compile --enable=load_extension -} - -python_test() { - esetup.py build_test_extension - "${EPYTHON}" tests.py -v || die "Tests failed under ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( doc/. ) - distutils-r1_python_install_all -} |