Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lunr/
Date: Sat, 16 Oct 2021 19:34:49
Message-Id: 1634412557.9f1a7212fba7ed14a9b99dd4763a7b0c6aec9ff0.mgorny@gentoo
1 commit: 9f1a7212fba7ed14a9b99dd4763a7b0c6aec9ff0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 16 19:29:17 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 16 19:29:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f1a7212
7
8 dev-python/lunr: Bump to 0.6.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/lunr/Manifest | 1 +
13 dev-python/lunr/lunr-0.6.1.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/lunr/Manifest b/dev-python/lunr/Manifest
17 index 1d83c31e735..e6d8863902a 100644
18 --- a/dev-python/lunr/Manifest
19 +++ b/dev-python/lunr/Manifest
20 @@ -1 +1,2 @@
21 DIST lunr-0.6.0.tar.gz 839533 BLAKE2B fce81bfe0e12138b8ab335ecec828ac18be13f0d9f823218de11d701c4d44f54c06360c4c8f1c96fd36b634094b6f10bd964c9d4e154dc208cad1f36e4b32f47 SHA512 2067c34c12f77ab0fb32c7f800ea3c647a1073c061a14f2b72b2b95fc8d624429aa37e85992eee5d5b24add179eab1d81af52af09f0db67d6cae459a5faa0925
22 +DIST lunr-0.6.1.tar.gz 853421 BLAKE2B 7cc1624c91d07fa4e30ae789cbdffa1d98c011bd17a314bdb498ecfb7941fca7f0b6f36738377d10c17a7e400f8555be52fee8a1e03d3dfd8d931db88c4e25c9 SHA512 991569b6657c4cba653c999aa7610768303d1b184142c7f82a6c8ab44459b01cf7ae7db9f3bc45512161452b73e3b4cfbac3e8f7a0738e1f4b1429a8d8fe73e1
23
24 diff --git a/dev-python/lunr/lunr-0.6.1.ebuild b/dev-python/lunr/lunr-0.6.1.ebuild
25 new file mode 100644
26 index 00000000000..0aad5e0255c
27 --- /dev/null
28 +++ b/dev-python/lunr/lunr-0.6.1.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +
37 +DOCS_BUILDER="mkdocs"
38 +
39 +inherit distutils-r1 docs
40 +
41 +DESCRIPTION="A Python implementation of Lunr.js"
42 +HOMEPAGE="https://github.com/yeraydiazdiaz/lunr.py"
43 +SRC_URI="https://github.com/yeraydiazdiaz/lunr.py/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +S="${WORKDIR}/${PN}.py-${PV}"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +RDEPEND="dev-python/nltk[${PYTHON_USEDEP}]"
51 +
52 +BDEPEND="
53 + test? (
54 + dev-python/mock[${PYTHON_USEDEP}]
55 + )"
56 +
57 +distutils_enable_tests pytest
58 +
59 +EPYTEST_DESELECT=(
60 + tests/acceptance_tests
61 +)