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 5F6A71382C5 for ; Mon, 29 Jan 2018 12:53:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E782E0BA4; Mon, 29 Jan 2018 12:53:11 +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 27E10E0BA4 for ; Mon, 29 Jan 2018 12:53: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 D4BD4335C4C for ; Mon, 29 Jan 2018 12:53:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90E001C3 for ; Mon, 29 Jan 2018 12:53:06 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1517230370.3c52686e73afe289f971bf0d1731ae5a09b6b9bf.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyfeyn/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyfeyn/pyfeyn-1.0.0-r1.ebuild X-VCS-Directories: dev-python/pyfeyn/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 3c52686e73afe289f971bf0d1731ae5a09b6b9bf X-VCS-Branch: master Date: Mon, 29 Jan 2018 12:53: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-Archives-Salt: 537165d4-8098-429e-962e-e0808bc5d9ef X-Archives-Hash: 910cc79d40e94535aade89c3c3d1f990 commit: 3c52686e73afe289f971bf0d1731ae5a09b6b9bf Author: Andrey Grozin gentoo org> AuthorDate: Mon Jan 29 12:52:50 2018 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Mon Jan 29 12:52:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c52686e dev-python/pyfeyn: add python3_6 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-python/pyfeyn/pyfeyn-1.0.0-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/dev-python/pyfeyn/pyfeyn-1.0.0-r1.ebuild b/dev-python/pyfeyn/pyfeyn-1.0.0-r1.ebuild new file mode 100644 index 00000000000..b99a85fe104 --- /dev/null +++ b/dev-python/pyfeyn/pyfeyn-1.0.0-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="Python package for drawing Feynman diagrams" +HOMEPAGE="http://pyfeyn.hepforge.org/ https://pypi.python.org/pypi/pyfeyn/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="latex" + +DEPEND="" +RDEPEND=">=dev-python/pyx-0.14[${PYTHON_USEDEP}] + latex? ( || ( dev-texlive/texlive-mathscience dev-texlive/texlive-science ) )" + +PATCHES=( "${FILESDIR}"/${P}.patch )