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: Sat, 03 Jul 2021 06:27:05
Message-Id: 1625293611.d4e559f168c9399ed0876f052e7c6c820b70ca92.mgorny@gentoo
1 commit: d4e559f168c9399ed0876f052e7c6c820b70ca92
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 3 06:25:14 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 3 06:26:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e559f1
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.32.2_p1.ebuild | 41 -----------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/apsw/Manifest b/dev-python/apsw/Manifest
17 index a1fb0606925..c47a63dd74f 100644
18 --- a/dev-python/apsw/Manifest
19 +++ b/dev-python/apsw/Manifest
20 @@ -1,2 +1 @@
21 -DIST apsw-3.32.2_p1.zip 679785 BLAKE2B fb58a60f95a677a805b0347a0d8876e49c657092deeadb60a057f4afc62031313faf5a86b600d1d306e42f305c9af599d2439a7051e400cbba2d9185c213d5d1 SHA512 718de699c43eec139747f63c3c26da206aa20f104ec1c478009d29cedff7a432138726131b2458ecd3a67675254af77e94e50e8e96a208600fe2a94aa9d924c7
22 DIST apsw-3.35.4_p1.zip 685034 BLAKE2B 5845e5fcb286c587367955c33fbee9aa4b0687af666f1d50f35f5dec8e756a0fbcf0fdbd120dd3c7a78df1f05d8eae5a973a8a71fc8a6f4271fff7d83b399013 SHA512 f420560e5821bd6305705ee6c14174f1770f4811edcfe152cb1f2ceae4295f13c82552386a7ef42c5ce88165e88bd2080b4dc2809484598522914d99f2469135
23
24 diff --git a/dev-python/apsw/apsw-3.32.2_p1.ebuild b/dev-python/apsw/apsw-3.32.2_p1.ebuild
25 deleted file mode 100644
26 index 2dcb9f8967c..00000000000
27 --- a/dev-python/apsw/apsw-3.32.2_p1.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_{7..9} )
35 -
36 -inherit distutils-r1 flag-o-matic
37 -
38 -MY_PV=${PV/_p/-r}
39 -MY_P=${PN}-${MY_PV}
40 -
41 -DESCRIPTION="APSW - Another Python SQLite Wrapper"
42 -HOMEPAGE="https://github.com/rogerbinns/apsw/"
43 -SRC_URI="https://github.com/rogerbinns/apsw/releases/download/${MY_PV}/${MY_P}.zip -> ${P}.zip"
44 -
45 -LICENSE="ZLIB"
46 -SLOT="0"
47 -KEYWORDS="amd64 ~arm ~ppc64 x86"
48 -IUSE="doc"
49 -
50 -RDEPEND=">=dev-db/sqlite-${PV%_p*}"
51 -DEPEND="${RDEPEND}
52 - app-arch/unzip"
53 -
54 -S=${WORKDIR}/${MY_P}
55 -
56 -PATCHES=( "${FILESDIR}/${PN}-3.6.20.1-fix_tests.patch" )
57 -
58 -python_compile() {
59 - distutils-r1_python_compile --enable=load_extension
60 -}
61 -
62 -python_test() {
63 - "${PYTHON}" setup.py build_test_extension || die "Building of test loadable extension failed"
64 - "${PYTHON}" tests.py -v || die "Tests failed under ${EPYTHON}"
65 -}
66 -
67 -python_install_all() {
68 - use doc && local HTML_DOCS=( doc/. )
69 - distutils-r1_python_install_all
70 -}