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 361AC138351 for ; Wed, 29 Apr 2020 17:10:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71F1BE085A; Wed, 29 Apr 2020 17:10:48 +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 5BFA3E085A for ; Wed, 29 Apr 2020 17:10:48 +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 888E734E847 for ; Wed, 29 Apr 2020 17:10:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 595ED1EE for ; Wed, 29 Apr 2020 17:10:45 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1588180236.a7f15a15a568b0dd88f7c4489f493ef99984ec8d.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/booleanOperations/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/booleanOperations/booleanOperations-0.9.0-r1.ebuild X-VCS-Directories: dev-python/booleanOperations/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: a7f15a15a568b0dd88f7c4489f493ef99984ec8d X-VCS-Branch: master Date: Wed, 29 Apr 2020 17:10:45 +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: 47958628-4334-4036-aacc-57418b4f09da X-Archives-Hash: 335cbca2a2a30bdb2bc1cdbb7a1450da commit: a7f15a15a568b0dd88f7c4489f493ef99984ec8d Author: Pacho Ramos gentoo org> AuthorDate: Wed Apr 29 17:10:13 2020 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed Apr 29 17:10:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7f15a15 dev-python/booleanOperations: Newer pyclipper needed, skip tests for now Bug: https://bugs.gentoo.org/719882 Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Pacho Ramos gentoo.org> .../booleanOperations-0.9.0-r1.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-python/booleanOperations/booleanOperations-0.9.0-r1.ebuild b/dev-python/booleanOperations/booleanOperations-0.9.0-r1.ebuild new file mode 100644 index 00000000000..8904255b627 --- /dev/null +++ b/dev-python/booleanOperations/booleanOperations-0.9.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="Boolean operations on paths" +HOMEPAGE="https://github.com/typemytype/booleanOperations" +SRC_URI="https://github.com/typemytype/booleanOperations/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" +BDEPEND="" +RDEPEND="${DEPEND} + >=dev-python/fonttools-4.0.2[${PYTHON_USEDEP}] + >=dev-python/pyclipper-1.1.0_p3[${PYTHON_USEDEP}] + dev-python/wheel[${PYTHON_USEDEP}] +" + +distutils_enable_tests setup.py + +# tests need fontPens, that is not packaged +RESTRICT="test" + +src_prepare() { + export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}" + distutils-r1_src_prepare +}