Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/apsw/
Date: Fri, 27 May 2022 19:48:27
Message-Id: 1653680873.05407af5e19d846aa1fbc6c770f5f5584014e7af.mgorny@gentoo
1 commit: 05407af5e19d846aa1fbc6c770f5f5584014e7af
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 19:47:53 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 19:47:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05407af5
7
8 dev-python/apsw: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/apsw/Manifest | 1 -
13 dev-python/apsw/apsw-3.35.4_p1.ebuild | 46 -----------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-python/apsw/Manifest b/dev-python/apsw/Manifest
17 index 1a87533fa152..515a5c8add95 100644
18 --- a/dev-python/apsw/Manifest
19 +++ b/dev-python/apsw/Manifest
20 @@ -1,2 +1 @@
21 -DIST apsw-3.35.4_p1.zip 685034 BLAKE2B 5845e5fcb286c587367955c33fbee9aa4b0687af666f1d50f35f5dec8e756a0fbcf0fdbd120dd3c7a78df1f05d8eae5a973a8a71fc8a6f4271fff7d83b399013 SHA512 f420560e5821bd6305705ee6c14174f1770f4811edcfe152cb1f2ceae4295f13c82552386a7ef42c5ce88165e88bd2080b4dc2809484598522914d99f2469135
22 DIST apsw-3.38.1-r1.gh.tar.gz 338985 BLAKE2B aa0ef335bd3abc708b41a92959f98b4fd3961168feacb9ca6d382e0279c46d4227a8e09373721ae1361fcc38181376664130b3623b2f36e1596467b99959ecb8 SHA512 4d161641d7bf7f933507e7d7e71d437d9db95f7327e29cf34848d9b741e2711dafbefbf19cb34d78d83b4e69115acad855f924fdf80de1cea4c9d61fe0f2b670
23
24 diff --git a/dev-python/apsw/apsw-3.35.4_p1.ebuild b/dev-python/apsw/apsw-3.35.4_p1.ebuild
25 deleted file mode 100644
26 index a98b052e48b8..000000000000
27 --- a/dev-python/apsw/apsw-3.35.4_p1.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..10} )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PV=${PV/_p/-r}
40 -MY_P=${PN}-${MY_PV}
41 -
42 -DESCRIPTION="APSW - Another Python SQLite Wrapper"
43 -HOMEPAGE="https://github.com/rogerbinns/apsw/"
44 -SRC_URI="https://github.com/rogerbinns/apsw/releases/download/${MY_PV}/${MY_P}.zip -> ${P}.zip"
45 -S="${WORKDIR}/${MY_P}"
46 -
47 -LICENSE="ZLIB"
48 -SLOT="0"
49 -KEYWORDS="amd64 ~arm ~ppc64 x86"
50 -IUSE="doc"
51 -
52 -RDEPEND=">=dev-db/sqlite-${PV%_p*}"
53 -DEPEND="${RDEPEND}"
54 -BDEPEND="app-arch/unzip"
55 -
56 -PATCHES=( "${FILESDIR}/${PN}-3.6.20.1-fix_tests.patch" )
57 -
58 -python_prepare_all() {
59 - sed -e 's/"gcc/os.environ.get("CC", "gcc") + "/' -i setup.py || die
60 - distutils-r1_python_prepare_all
61 -}
62 -
63 -python_compile() {
64 - distutils-r1_python_compile --enable=load_extension
65 -}
66 -
67 -python_test() {
68 - esetup.py build_test_extension
69 - "${EPYTHON}" tests.py -v || die "Tests failed under ${EPYTHON}"
70 -}
71 -
72 -python_install_all() {
73 - use doc && local HTML_DOCS=( doc/. )
74 - distutils-r1_python_install_all
75 -}