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 B6310138334 for ; Sun, 11 Nov 2018 11:54:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91BDDE0B8B; Sun, 11 Nov 2018 11:54:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 6421CE0B8B for ; Sun, 11 Nov 2018 11:54:01 +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 AA573335CF8 for ; Sun, 11 Nov 2018 11:53:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BBDE45E for ; Sun, 11 Nov 2018 11:53:55 +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: <1541937202.5ed49c425b4fcef263c9e1573f2b63f03198aee2.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/speg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/speg/Manifest dev-python/speg/metadata.xml dev-python/speg/speg-0.3.ebuild X-VCS-Directories: dev-python/speg/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 5ed49c425b4fcef263c9e1573f2b63f03198aee2 X-VCS-Branch: master Date: Sun, 11 Nov 2018 11:53:55 +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: 4c94dea6-b121-48c0-8ef6-cebc3e8758e0 X-Archives-Hash: 36d5afc0d578c68470e1bbd4ebe319dc commit: 5ed49c425b4fcef263c9e1573f2b63f03198aee2 Author: Andrey Grozin gentoo org> AuthorDate: Sun Nov 11 11:53:22 2018 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Sun Nov 11 11:53:22 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ed49c42 dev-python/speg: initial import Signed-off-by: Andrey Grozin gentoo.org> Package-Manager: Portage-2.3.41, Repoman-2.3.9 dev-python/speg/Manifest | 1 + dev-python/speg/metadata.xml | 12 ++++++++++++ dev-python/speg/speg-0.3.ebuild | 13 +++++++++++++ 3 files changed, 26 insertions(+) diff --git a/dev-python/speg/Manifest b/dev-python/speg/Manifest new file mode 100644 index 00000000000..5e3a9b8b928 --- /dev/null +++ b/dev-python/speg/Manifest @@ -0,0 +1 @@ +DIST speg-0.3.tar.gz 2592 BLAKE2B 1b82d6e122783fbc58f2c711a67e9b8b721d69c08de5ac2815d1ae459ce337552d10bb747cd1e31363f48f4a50bbc967b650d7e6048668d28d4133b5875aed14 SHA512 9faed6af0eb1a6ff0a7dc2e2f5b885a58a5430938b463420ad52277fe2900ae98531057ebbcc21d8cd259d4779bfb0c919125043503635721afe574b4f1f99ce diff --git a/dev-python/speg/metadata.xml b/dev-python/speg/metadata.xml new file mode 100644 index 00000000000..5cd26e92b98 --- /dev/null +++ b/dev-python/speg/metadata.xml @@ -0,0 +1,12 @@ + + + + + grozin@gentoo.org + Andrey Grozin + + + speg + avakar/speg + + diff --git a/dev-python/speg/speg-0.3.ebuild b/dev-python/speg/speg-0.3.ebuild new file mode 100644 index 00000000000..365e1144c65 --- /dev/null +++ b/dev-python/speg/speg-0.3.ebuild @@ -0,0 +1,13 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +EAPI=7 +PYTHON_COMPAT=( python3_{5,6,7} ) +inherit distutils-r1 +DESCRIPTION="A PEG-based parser interpreter with memoization" +HOMEPAGE="https://github.com/avakar/speg/" +SRC_URI="https://github.com/avakar/speg/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND=""