diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-10-16 21:29:17 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-10-16 21:29:17 +0200 |
commit | 9f1a7212fba7ed14a9b99dd4763a7b0c6aec9ff0 (patch) | |
tree | f5f244f81411bb067f5e3a4e3f15551efbb61949 /dev-python/lunr | |
parent | app-editors/xemacs: remove newgc, EAPI 8 (diff) | |
download | gentoo-9f1a7212fba7ed14a9b99dd4763a7b0c6aec9ff0.tar.gz gentoo-9f1a7212fba7ed14a9b99dd4763a7b0c6aec9ff0.tar.bz2 gentoo-9f1a7212fba7ed14a9b99dd4763a7b0c6aec9ff0.zip |
dev-python/lunr: Bump to 0.6.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/lunr')
-rw-r--r-- | dev-python/lunr/Manifest | 1 | ||||
-rw-r--r-- | dev-python/lunr/lunr-0.6.1.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/lunr/Manifest b/dev-python/lunr/Manifest index 1d83c31e7356..e6d8863902a8 100644 --- a/dev-python/lunr/Manifest +++ b/dev-python/lunr/Manifest @@ -1 +1,2 @@ DIST lunr-0.6.0.tar.gz 839533 BLAKE2B fce81bfe0e12138b8ab335ecec828ac18be13f0d9f823218de11d701c4d44f54c06360c4c8f1c96fd36b634094b6f10bd964c9d4e154dc208cad1f36e4b32f47 SHA512 2067c34c12f77ab0fb32c7f800ea3c647a1073c061a14f2b72b2b95fc8d624429aa37e85992eee5d5b24add179eab1d81af52af09f0db67d6cae459a5faa0925 +DIST lunr-0.6.1.tar.gz 853421 BLAKE2B 7cc1624c91d07fa4e30ae789cbdffa1d98c011bd17a314bdb498ecfb7941fca7f0b6f36738377d10c17a7e400f8555be52fee8a1e03d3dfd8d931db88c4e25c9 SHA512 991569b6657c4cba653c999aa7610768303d1b184142c7f82a6c8ab44459b01cf7ae7db9f3bc45512161452b73e3b4cfbac3e8f7a0738e1f4b1429a8d8fe73e1 diff --git a/dev-python/lunr/lunr-0.6.1.ebuild b/dev-python/lunr/lunr-0.6.1.ebuild new file mode 100644 index 000000000000..0aad5e0255cc --- /dev/null +++ b/dev-python/lunr/lunr-0.6.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +DOCS_BUILDER="mkdocs" + +inherit distutils-r1 docs + +DESCRIPTION="A Python implementation of Lunr.js" +HOMEPAGE="https://github.com/yeraydiazdiaz/lunr.py" +SRC_URI="https://github.com/yeraydiazdiaz/lunr.py/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}.py-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/nltk[${PYTHON_USEDEP}]" + +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + tests/acceptance_tests +) |