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 8D05B138239 for ; Fri, 21 Feb 2020 13:59:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89E21E0938; Fri, 21 Feb 2020 13:59:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 59BA2E0938 for ; Fri, 21 Feb 2020 13:59:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4C1B834EF14 for ; Fri, 21 Feb 2020 13:59:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B94F117 for ; Fri, 21 Feb 2020 13:59:27 +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: <1582293546.4c01163d1616573ba0cfaa626b56a2e4c041e8d7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypeg2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypeg2/pypeg2-2.15.2-r1.ebuild X-VCS-Directories: dev-python/pypeg2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4c01163d1616573ba0cfaa626b56a2e4c041e8d7 X-VCS-Branch: master Date: Fri, 21 Feb 2020 13:59:27 +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: afedd75d-da97-47e6-bf36-8484570b73f9 X-Archives-Hash: c928899ca2adac31fc527bf36286d6d5 commit: 4c01163d1616573ba0cfaa626b56a2e4c041e8d7 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 21 12:05:48 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 21 13:59:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c01163d dev-python/pypeg2: Modernize, EAPI 7, py3.8 Closes: https://bugs.gentoo.org/709970 Signed-off-by: Michał Górny gentoo.org> dev-python/pypeg2/pypeg2-2.15.2-r1.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-python/pypeg2/pypeg2-2.15.2-r1.ebuild b/dev-python/pypeg2/pypeg2-2.15.2-r1.ebuild new file mode 100644 index 00000000000..f4105ac5d90 --- /dev/null +++ b/dev-python/pypeg2/pypeg2-2.15.2-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=no +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +MY_PN=pyPEG2 +MY_P=${MY_PN}-${PV} + +DESCRIPTION="An intrinsic PEG Parser-Interpreter for Python" +HOMEPAGE="https://fdik.org/pyPEG/ + https://bitbucket.org/fdik/pypeg/ + https://pypi.org/project/pyPEG2/" +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]" + +PATCHES=( "${FILESDIR}"/${PN}-2.15.1-test.patch ) + +distutils_enable_tests unittest