diff options
author | Zac Medico <zmedico@gentoo.org> | 2021-10-24 16:49:47 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2021-10-24 17:13:59 -0700 |
commit | c9fd7f9ac3f20f4d787a4116c6fd40d32173ca9e (patch) | |
tree | 31a6fd39f3a48b15cf133a8553022f420a446ae3 /dev-python/pyrqlite | |
parent | app-office/mdbtools: update SRC_URI (github org) (diff) | |
download | gentoo-c9fd7f9ac3f20f4d787a4116c6fd40d32173ca9e.tar.gz gentoo-c9fd7f9ac3f20f4d787a4116c6fd40d32173ca9e.tar.bz2 gentoo-c9fd7f9ac3f20f4d787a4116c6fd40d32173ca9e.zip |
dev-python/pyrqlite: support test with rqlite-6.7.0
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'dev-python/pyrqlite')
-rw-r--r-- | dev-python/pyrqlite/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyrqlite/pyrqlite-2.1-r1.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/pyrqlite/Manifest b/dev-python/pyrqlite/Manifest index ba01ecd9a713..09d1aa5eaa02 100644 --- a/dev-python/pyrqlite/Manifest +++ b/dev-python/pyrqlite/Manifest @@ -1,2 +1,3 @@ DIST pyrqlite-2.1-python3.10-test_support.patch 1017 BLAKE2B 50353be2d15d1a468328c3f7f40c4d8512975b0c8e8e458aac219b4d207cd8819bcd98417585b81322eb9c241adb1d389b7b161c775734db396bcd16dce2886a SHA512 b88a220af27fbedc259f10d6d8af436f2b6d5533f17550c8f90b3bd4a64c81319b4922d748d3b0baa9ae1e1bd1390349fd8b21fc1f8e48b707ee074f93b830f4 +DIST pyrqlite-2.1-rqlite-6.7.0-ephemeral.py 3284 BLAKE2B 97029bf48fe8902909cd463718b64399f6736a09a463233d7a577c6c3afbc8709315364f6c7af90d3d40ebcb2cfcbb8ba7ec2b0589a80bfbc8e7ec130603c4aa SHA512 15c96c52c2528f9ecad8ddd6cff0a05a3684654aff5d99c86615d49279dc43cd0c1dee89b0fac33876e793f54bbb51a403b3678a278dbdd9329fe031156a4576 DIST pyrqlite-2.1.tar.gz 19069 BLAKE2B f5ce9c1201632e81ba6f7f41e3ef54bd5fff354c869e73879e8b324ad12aea6476eb197119a22ba15d58c9ab3503435b0110ce9bfe2c21d16fe10b44afbe486a SHA512 6a63860378021b29ec0e8d81cf2c3534c97cec2c65d60e8ac2ec9b0a7900efb9a9a63546da44d8be89570eae2fd47eca4004167d11438b2dd9eb6bc68e646bad diff --git a/dev-python/pyrqlite/pyrqlite-2.1-r1.ebuild b/dev-python/pyrqlite/pyrqlite-2.1-r1.ebuild new file mode 100644 index 000000000000..9c596d9cb4a2 --- /dev/null +++ b/dev-python/pyrqlite/pyrqlite-2.1-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Python client for rqlite" +HOMEPAGE="https://github.com/rqlite/pyrqlite" +SRC_URI="https://github.com/rqlite/pyrqlite/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://github.com/rqlite/pyrqlite/pull/36.patch -> ${P}-python3.10-test_support.patch + https://github.com/rqlite/pyrqlite/raw/17a22221e4e796a04c28aa578a93821cc3349b41/src/pyrqlite/_ephemeral.py -> ${P}-rqlite-6.7.0-ephemeral.py" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="test? ( >=dev-db/rqlite-6.7.0 )" +RESTRICT+=" !test? ( test )" + +PATCHES=("${DISTDIR}/${P}-python3.10-test_support.patch") + +distutils_enable_tests pytest + +src_prepare() { + sed -e "s:^__version__ = .*:__version__ = '${PV}':" -i src/${PN}/constants.py || die + cp "${DISTDIR}/${P}-rqlite-6.7.0-ephemeral.py" src/pyrqlite/_ephemeral.py || die + distutils-r1_src_prepare +} |