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 0D1071382C5 for ; Sat, 16 Jan 2021 08:05:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3811E0843; Sat, 16 Jan 2021 08:05:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C9E73E0843 for ; Sat, 16 Jan 2021 08:05:09 +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 8E6013406D1 for ; Sat, 16 Jan 2021 08:05:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC57849C for ; Sat, 16 Jan 2021 08:05:06 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1610784178.4c20337ac70623b481ea0eb22fffae0cf6aed5aa.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/abydos/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/abydos/Manifest dev-python/abydos/abydos-0.5.0.ebuild dev-python/abydos/metadata.xml X-VCS-Directories: dev-python/abydos/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 4c20337ac70623b481ea0eb22fffae0cf6aed5aa X-VCS-Branch: master Date: Sat, 16 Jan 2021 08:05:06 +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: 37a7e830-4cd5-4ee6-bc65-0050e57fff3a X-Archives-Hash: 0a432f720e5611ff508a9d22119c5fcf commit: 4c20337ac70623b481ea0eb22fffae0cf6aed5aa Author: Andrew Ammerlaan riseup net> AuthorDate: Sat Dec 19 15:07:18 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Jan 16 08:02:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c20337a dev-python/abydos: new dependency of spyder NLP/IR library. Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> Signed-off-by: Joonas Niilola gentoo.org> dev-python/abydos/Manifest | 1 + dev-python/abydos/abydos-0.5.0.ebuild | 39 +++++++++++++++++++++++++++++++++++ dev-python/abydos/metadata.xml | 16 ++++++++++++++ 3 files changed, 56 insertions(+) diff --git a/dev-python/abydos/Manifest b/dev-python/abydos/Manifest new file mode 100644 index 00000000000..574f09097b0 --- /dev/null +++ b/dev-python/abydos/Manifest @@ -0,0 +1 @@ +DIST abydos-0.5.0.tar.gz 21321759 BLAKE2B 1f14675f42e849e5e1563dd858bfb2bf040e25b0f90cb3da9986492378892bedd0f23eea990cd65d804aececb350b0e90fb27921382a8df8b91e55d7f820c27e SHA512 28aeea4ba16ea88b077e8b9902f5d8b3a650eeced489687daf9af0e4aa437eaee6c8eeb0747dd5a8f95291594064a1221cc1da2dfa989978bcc870045fee3531 diff --git a/dev-python/abydos/abydos-0.5.0.ebuild b/dev-python/abydos/abydos-0.5.0.ebuild new file mode 100644 index 00000000000..deed5082ae1 --- /dev/null +++ b/dev-python/abydos/abydos-0.5.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Abydos NLP/IR library" +HOMEPAGE="https://github.com/chrislit/abydos" +SRC_URI="https://github.com/chrislit/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# Requires access to the internet +RESTRICT="test" + +RDEPEND=" + dev-python/deprecation[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] +" + +BDEPEND="test? ( + dev-python/nltk[${PYTHON_USEDEP}] +)" + +distutils_enable_tests pytest +# Extension error: You must configure the bibtex_bibfiles setting +#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme dev-python/sphinxcontrib-bibtex + +python_prepare_all() { + # do not depend on pytest-cov + sed -i -e '/addopts/d' setup.cfg || die + + distutils-r1_python_prepare_all +} diff --git a/dev-python/abydos/metadata.xml b/dev-python/abydos/metadata.xml new file mode 100644 index 00000000000..79a10a06f44 --- /dev/null +++ b/dev-python/abydos/metadata.xml @@ -0,0 +1,16 @@ + + + + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + + + abydos + chrislit/abydos + +