Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/apsw/
Date: Tue, 06 Sep 2022 21:55:02
Message-Id: 1662501285.6f184c3a08706e44f848ef7428adf3315a4e2999.sam@gentoo
1 commit: 6f184c3a08706e44f848ef7428adf3315a4e2999
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 21:54:45 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 21:54:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f184c3a
7
8 dev-python/apsw: fix --enable for extensions syntax
9
10 Needs to be comma separated. Not adding the whole list right now as upstream are
11 working on autodetection?
12
13 Bug: https://bugs.gentoo.org/851741
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 dev-python/apsw/{apsw-3.39.2.1.ebuild => apsw-3.39.2.1-r1.ebuild} | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/dev-python/apsw/apsw-3.39.2.1.ebuild b/dev-python/apsw/apsw-3.39.2.1-r1.ebuild
20 similarity index 91%
21 rename from dev-python/apsw/apsw-3.39.2.1.ebuild
22 rename to dev-python/apsw/apsw-3.39.2.1-r1.ebuild
23 index 05e81a686821..a8edc30d8529 100644
24 --- a/dev-python/apsw/apsw-3.39.2.1.ebuild
25 +++ b/dev-python/apsw/apsw-3.39.2.1-r1.ebuild
26 @@ -33,7 +33,7 @@ RDEPEND="
27 python_compile() {
28 # Needed for e.g. bug #851741
29 # Enable column-metadata to match dev-db/sqlite
30 - distutils-r1_python_compile --enable=load_extension --enable=column_metadata
31 + distutils-r1_python_compile --enable=load_extension,column_metadata
32 }
33
34 python_test() {