Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyrqlite/
Date: Sat, 05 Feb 2022 00:53:34
Message-Id: 1644022368.8576faaf8a5592b6205b8a33235cd2eb84b5d1b8.zmedico@gentoo
1 commit: 8576faaf8a5592b6205b8a33235cd2eb84b5d1b8
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 5 00:52:48 2022 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 5 00:52:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8576faaf
7
8 dev-python/pyrqlite: fix test with rqlite-7.2.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 dev-python/pyrqlite/Manifest | 1 +
14 dev-python/pyrqlite/pyrqlite-2.1.1.ebuild | 7 +++++--
15 2 files changed, 6 insertions(+), 2 deletions(-)
16
17 diff --git a/dev-python/pyrqlite/Manifest b/dev-python/pyrqlite/Manifest
18 index 0b40da3fa540..b8d16d384448 100644
19 --- a/dev-python/pyrqlite/Manifest
20 +++ b/dev-python/pyrqlite/Manifest
21 @@ -1 +1,2 @@
22 +DIST pyrqlite-2.1.1-test_cPragmaTableInfo.patch 2601 BLAKE2B 43dce906dea12d6d503ac589990c4688f07cf4186b6b4641534e50aa77e5dacd4f9f286d7707451bc843fb429fec4cdfb887a4922fa48aa9b7d7757bc1ff55bc SHA512 67c8593fd8a437011f9579e6a469323f60a70634469eb42d96b22f3997e48eab42d102013cbf300616fa23e2a0e64e1a0c4b4d7fdd1346402abd34255b252d85
23 DIST pyrqlite-2.1.1.tar.gz 19538 BLAKE2B fba6caa68eb6d806ea807d40f36edafb0872e724a087cdb7736f79699692d0d492e05a8a7407467f92ec8e30df4a6ea1ed44bc12bec35ffc4753878335fa4275 SHA512 9fc404a480f42592ebbedef82f748707741e28de199be9381680db506dac4e3ce757d1058874ca06cf8f0dd1ec0e7b6411a4585f332a9fe7d8977071e492bd31
24
25 diff --git a/dev-python/pyrqlite/pyrqlite-2.1.1.ebuild b/dev-python/pyrqlite/pyrqlite-2.1.1.ebuild
26 index d933752383b0..4d08827d5414 100644
27 --- a/dev-python/pyrqlite/pyrqlite-2.1.1.ebuild
28 +++ b/dev-python/pyrqlite/pyrqlite-2.1.1.ebuild
29 @@ -1,4 +1,4 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 +# Copyright 1999-2022 Gentoo Authors
32 # Distributed under the terms of the GNU General Public License v2
33
34 EAPI=7
35 @@ -8,7 +8,8 @@ inherit distutils-r1
36
37 DESCRIPTION="Python client for rqlite"
38 HOMEPAGE="https://github.com/rqlite/pyrqlite"
39 -SRC_URI="https://github.com/rqlite/pyrqlite/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +SRC_URI="https://github.com/rqlite/pyrqlite/archive/v${PV}.tar.gz -> ${P}.tar.gz
41 + https://github.com/rqlite/pyrqlite/pull/42.patch -> ${P}-test_cPragmaTableInfo.patch"
42
43 LICENSE="MIT"
44 SLOT="0"
45 @@ -17,6 +18,8 @@ KEYWORDS="~amd64 ~x86"
46 BDEPEND="test? ( >=dev-db/rqlite-6.7.0 )"
47 RESTRICT+=" !test? ( test )"
48
49 +PATCHES=("${DISTDIR}/${P}-test_cPragmaTableInfo.patch")
50 +
51 distutils_enable_tests pytest
52
53 src_prepare() {