From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4407413835A for ; Sat, 5 Dec 2020 13:31:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53B0BE0884; Sat, 5 Dec 2020 13:31:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1BA0BE0884 for ; Sat, 5 Dec 2020 13:31:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C3BE340FDD for ; Sat, 5 Dec 2020 13:31:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B164479 for ; Sat, 5 Dec 2020 13:31:15 +0000 (UTC) From: "Jason A. Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason A. Donenfeld" Message-ID: <1607175064.107702b38e54e9e05eca0d75f6157d09143db683.zx2c4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lunr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lunr/Manifest dev-python/lunr/lunr-0.5.8.ebuild X-VCS-Directories: dev-python/lunr/ X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason A. Donenfeld X-VCS-Revision: 107702b38e54e9e05eca0d75f6157d09143db683 X-VCS-Branch: master Date: Sat, 5 Dec 2020 13:31:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 98ccb4cd-4a23-4065-932d-7700842a2543 X-Archives-Hash: 2024351fe931f4e8e7a70cc1dcf192e6 commit: 107702b38e54e9e05eca0d75f6157d09143db683 Author: Andrew Ammerlaan riseup net> AuthorDate: Sun Jun 21 18:59:55 2020 +0000 Commit: Jason A. Donenfeld gentoo org> CommitDate: Sat Dec 5 13:31:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=107702b3 dev-python/lunr: version bump, add py3_8 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan riseup.net> Signed-off-by: Jason A. Donenfeld gentoo.org> dev-python/lunr/Manifest | 1 + dev-python/lunr/lunr-0.5.8.ebuild | 40 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/dev-python/lunr/Manifest b/dev-python/lunr/Manifest index 61568bfc776..fa9bbe52b31 100644 --- a/dev-python/lunr/Manifest +++ b/dev-python/lunr/Manifest @@ -1 +1,2 @@ DIST lunr-0.5.6.tar.gz 43815 BLAKE2B 0d68dc098a71c1fdaaddee80605fc63a0d30492b6e329cd8f963dc740bc40fc79959bf20b159af6b88c4eb2736db6793c6fea5b74968f74923741f220a372a89 SHA512 48167c90ac1351fd3aeaefbead752d8b96b941e79edb33a4232ac588a2fa54775972c883564ea23e3d58f3f5a94ee448c27049f4410016032f5a8f36aa4c6709 +DIST lunr-0.5.8.tar.gz 834919 BLAKE2B 970cc12fb30bc849d4ef846818f93fa7b7701b1155c9b7880f3a63384a8f353c760be5dc6c37188db656e7424715aa854f20615ae652b0a5c9e656871be490af SHA512 90c279b9e91744f19c4a155947526bff749aee5d727bc38cc36ee05228a6624419a54bef4214e8195a69abcf1a5b40b29c4fa8b14bece0befbde02d13af969ac diff --git a/dev-python/lunr/lunr-0.5.8.ebuild b/dev-python/lunr/lunr-0.5.8.ebuild new file mode 100644 index 00000000000..36c77dcb3bf --- /dev/null +++ b/dev-python/lunr/lunr-0.5.8.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +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" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/future[${PYTHON_USEDEP}] + dev-python/nltk[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" + +BDEPEND="test? ( + dev-python/mock[${PYTHON_USEDEP}] +)" + +S="${WORKDIR}/${PN}.py-${PV}" + +distutils_enable_tests pytest + +python_prepare_all() { + # Tests in this subdir all fail + # Command '['node', '/var/tmp/portage/dev-python/lunr-0.5.8/work/lunr.py-0.5.8/tests/acceptance_tests/javascript/mkdocs_load_serialized_index_and_search.js', '/var/tmp/portage/dev-python/lunr-0.5.8/temp/tmpldbff36d', 'plugins']' returned non-zero exit status 1. + rm -r tests/acceptance_tests || die + + distutils-r1_python_prepare_all +}