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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 42307158089 for ; Sat, 11 Dec 2021 23:24:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB1EE2BC009; Sat, 11 Dec 2021 23:24:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 277282BC00D for ; Sat, 11 Dec 2021 23:24:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF4A73432C5 for ; Sat, 11 Dec 2021 23:24:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B942236 for ; Sat, 11 Dec 2021 23:24:53 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1639265082.a064fd1dac12e0d79eb658583faa59635b6aedb8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/logical-unification/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/logical-unification/Manifest dev-python/logical-unification/logical-unification-0.4.4.ebuild dev-python/logical-unification/metadata.xml X-VCS-Directories: dev-python/logical-unification/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a064fd1dac12e0d79eb658583faa59635b6aedb8 X-VCS-Branch: master Date: Sat, 11 Dec 2021 23:24:53 +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: 4c24f027-9b27-4faa-aa65-d8f053e748ee X-Archives-Hash: 5d99f15b507ac443ffaabca05807097f commit: a064fd1dac12e0d79eb658583faa59635b6aedb8 Author: Arthur Zamarin gentoo org> AuthorDate: Sat Dec 11 19:47:34 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 11 23:24:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a064fd1d dev-python/logical-unification: new dep of dev-python/cons, add 0.4.4 Signed-off-by: Arthur Zamarin gentoo.org> Signed-off-by: Michał Górny gentoo.org> dev-python/logical-unification/Manifest | 1 + .../logical-unification-0.4.4.ebuild | 33 ++++++++++++++++++++++ dev-python/logical-unification/metadata.xml | 13 +++++++++ 3 files changed, 47 insertions(+) diff --git a/dev-python/logical-unification/Manifest b/dev-python/logical-unification/Manifest new file mode 100644 index 000000000000..5a65659aa59f --- /dev/null +++ b/dev-python/logical-unification/Manifest @@ -0,0 +1 @@ +DIST logical-unification-0.4.4.gh.tar.gz 44705 BLAKE2B 2a120bd143fba81554a94bea12e007a1a1230f9cb47304e7248acbdbda59666e46bbfcfddf2fa95e422eecd5978a3eec51f1648e995c46e8467b423a96970cf9 SHA512 0742b105702efc9d17b48ce573e02e119adfbc30c0835fe2bae1266193d8e9ecefe0caec691cc214a29ecae6f7051c5b0d2f05f8d3910c29893d1822a97f5d5a diff --git a/dev-python/logical-unification/logical-unification-0.4.4.ebuild b/dev-python/logical-unification/logical-unification-0.4.4.ebuild new file mode 100644 index 000000000000..4e183b8abc4a --- /dev/null +++ b/dev-python/logical-unification/logical-unification-0.4.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Logical unification in Python" +HOMEPAGE=" + https://pypi.org/project/logical-unification/ + https://github.com/pythological/unification/ +" +SRC_URI=" + https://github.com/pythological/unification/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" +S="${WORKDIR}/unification-${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/multipledispatch[${PYTHON_USEDEP}] + dev-python/toolz[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + tests/test_benchmarks.py +) diff --git a/dev-python/logical-unification/metadata.xml b/dev-python/logical-unification/metadata.xml new file mode 100644 index 000000000000..76b0b41c7d50 --- /dev/null +++ b/dev-python/logical-unification/metadata.xml @@ -0,0 +1,13 @@ + + + + + python@gentoo.org + Python + + + + logical-unification + pythological/unification + +