diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-03-14 14:29:02 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-03-14 14:30:40 +0100 |
commit | d4257a99e8105fb8df846ee3662cc9897b9134fa (patch) | |
tree | e316d984e019740f5928002c28c35f959d57a3cc /dev-python/lunr | |
parent | games-action/minecraft-launcher: drop version 1093 (diff) | |
download | gentoo-d4257a99e8105fb8df846ee3662cc9897b9134fa.tar.gz gentoo-d4257a99e8105fb8df846ee3662cc9897b9134fa.tar.bz2 gentoo-d4257a99e8105fb8df846ee3662cc9897b9134fa.zip |
dev-python/lunr: add version 0.6.2
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@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.2.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/lunr/Manifest b/dev-python/lunr/Manifest index 85cc7846b39a..9141ce13f96c 100644 --- a/dev-python/lunr/Manifest +++ b/dev-python/lunr/Manifest @@ -1 +1,2 @@ DIST lunr-0.6.1.tar.gz 853421 BLAKE2B 7cc1624c91d07fa4e30ae789cbdffa1d98c011bd17a314bdb498ecfb7941fca7f0b6f36738377d10c17a7e400f8555be52fee8a1e03d3dfd8d931db88c4e25c9 SHA512 991569b6657c4cba653c999aa7610768303d1b184142c7f82a6c8ab44459b01cf7ae7db9f3bc45512161452b73e3b4cfbac3e8f7a0738e1f4b1429a8d8fe73e1 +DIST lunr-0.6.2.tar.gz 45968 BLAKE2B dd9328182f58ff623bf81c5cfdf31e7a8b004f5aa9e64934f09ffda3626143f5dc5ab92339208b886a91e00100cff65295b65d416faa3f38bbe4fe6c39299826 SHA512 6b7c29d30a8a64b71246ff884e473cceeef5e00e382ad54474e7855dcafcf3817dcc14c29c1bb2eb3371f1cb5ab1485a7840dbe41d345a4503294052aa9cd644 diff --git a/dev-python/lunr/lunr-0.6.2.ebuild b/dev-python/lunr/lunr-0.6.2.ebuild new file mode 100644 index 000000000000..26a1fec34654 --- /dev/null +++ b/dev-python/lunr/lunr-0.6.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 + +DESCRIPTION="A Python implementation of Lunr.js" +HOMEPAGE="https://github.com/yeraydiazdiaz/lunr.py" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +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 + tests/test_stemmer +) |