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 335FB1382C5 for ; Sat, 16 Jan 2021 08:05:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A138E085A; Sat, 16 Jan 2021 08:05:11 +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 38C02E085A for ; Sat, 16 Jan 2021 08:05:11 +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 29C47340562 for ; Sat, 16 Jan 2021 08:05:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 232AB4A0 for ; Sat, 16 Jan 2021 08:05:07 +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: <1610784179.65e5899f5a07f9d7401ecb4ea546e8a7ee05ab7b.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyxDamerauLevenshtein/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyxDamerauLevenshtein/Manifest dev-python/pyxDamerauLevenshtein/metadata.xml dev-python/pyxDamerauLevenshtein/pyxDamerauLevenshtein-1.6.1.ebuild X-VCS-Directories: dev-python/pyxDamerauLevenshtein/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 65e5899f5a07f9d7401ecb4ea546e8a7ee05ab7b X-VCS-Branch: master Date: Sat, 16 Jan 2021 08:05:07 +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: 466e30ec-1da7-4bb4-acaf-cf6a3ea929ac X-Archives-Hash: c1cd93d53cd1dd1c42446ef5a12ac74a commit: 65e5899f5a07f9d7401ecb4ea546e8a7ee05ab7b Author: Andrew Ammerlaan riseup net> AuthorDate: Sat Dec 19 15:13:00 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Jan 16 08:02:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65e5899f dev-python/pyxDamerauLevenshtein: new dependency of spyder Implements the Damerau-Levenshtein edit distance algorithm for Python in Cython. 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/pyxDamerauLevenshtein/Manifest | 1 + dev-python/pyxDamerauLevenshtein/metadata.xml | 16 +++++++++++++++ .../pyxDamerauLevenshtein-1.6.1.ebuild | 23 ++++++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/dev-python/pyxDamerauLevenshtein/Manifest b/dev-python/pyxDamerauLevenshtein/Manifest new file mode 100644 index 00000000000..ac37d80b03b --- /dev/null +++ b/dev-python/pyxDamerauLevenshtein/Manifest @@ -0,0 +1 @@ +DIST pyxDamerauLevenshtein-1.6.1.tar.gz 60737 BLAKE2B b03e80dadd7d748b2788a85b84bc0fe088905ace412b71302176a2cf5a23b1f109af50f7e5393b4dce42bfa99bebb2793376bf40e24b5ac4d3cc5e9076c1e899 SHA512 941c621035719e42402c59d7baa602b3147caf7564a4771e4e301c70e04534f72c21f13eb0e15f4382f5eae1aa149ba09e3223c6292588facce43d6cf4af91c8 diff --git a/dev-python/pyxDamerauLevenshtein/metadata.xml b/dev-python/pyxDamerauLevenshtein/metadata.xml new file mode 100644 index 00000000000..29698d463b0 --- /dev/null +++ b/dev-python/pyxDamerauLevenshtein/metadata.xml @@ -0,0 +1,16 @@ + + + + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + + + pyxDamerauLevenshtein + gfairchild/pyxDamerauLevenshtein + + diff --git a/dev-python/pyxDamerauLevenshtein/pyxDamerauLevenshtein-1.6.1.ebuild b/dev-python/pyxDamerauLevenshtein/pyxDamerauLevenshtein-1.6.1.ebuild new file mode 100644 index 00000000000..39baaccb24d --- /dev/null +++ b/dev-python/pyxDamerauLevenshtein/pyxDamerauLevenshtein-1.6.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="Implements the Damerau-Levenshtein edit distance algorithm for Python in Cython" +HOMEPAGE="https://github.com/gfairchild/pyxDamerauLevenshtein" +SRC_URI="https://github.com/gfairchild/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/cython[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest