From: "Brian Dolbec" <dolsen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/spark-parser/
Date: Fri, 7 Oct 2016 18:11:28 +0000 (UTC) [thread overview]
Message-ID: <1475863872.f4713b72e6c4f2a17ca54148c59f8059cda66e05.dolsen@gentoo> (raw)
commit: f4713b72e6c4f2a17ca54148c59f8059cda66e05
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 5 23:32:27 2016 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Oct 7 18:11:12 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4713b72
dev-python/spark-parser: New package, dep of new dev-python/uncompyle6 pkg
Package-Manager: portage-2.3.1_p8
dev-python/spark-parser/Manifest | 1 +
dev-python/spark-parser/metadata.xml | 25 +++++++++++++++++
dev-python/spark-parser/spark-parser-1.4.0.ebuild | 34 +++++++++++++++++++++++
3 files changed, 60 insertions(+)
diff --git a/dev-python/spark-parser/Manifest b/dev-python/spark-parser/Manifest
new file mode 100644
index 00000000..a7ab257
--- /dev/null
+++ b/dev-python/spark-parser/Manifest
@@ -0,0 +1 @@
+DIST spark_parser-1.4.0.tar.gz 99006 SHA256 282fe0d19de48d5fda6148032e47c822e2f088a5ff050cb7544f2bc2e701ede4 SHA512 1236fcfabcf4b829f70db240fd76baabc79873c03e96d9fdd92e6c23661e144c1b32d317a51f96f683bc6f96763cac0989709e344e53410ae949d30305dfadef WHIRLPOOL 1e8bfc67950e973fc80313d53f3df0da90c083da4482de1e2fac0fb2eb8698140aa1fda93cb0018b127b42a11cd3e8f68b2bfed77f43df9ed392ba668363eba5
diff --git a/dev-python/spark-parser/metadata.xml b/dev-python/spark-parser/metadata.xml
new file mode 100644
index 00000000..978a6c9
--- /dev/null
+++ b/dev-python/spark-parser/metadata.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>dol-sen@gentoo.org</email>
+ <description>Primary maintainer</description>
+ </maintainer>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
+ <upstream>
+ <maintainer>
+ <email>rb@dustyfeet.com</email>
+ <name>Rocky Bernstein</name>
+ </maintainer>
+ <remote-id type="pypi">spark_parser</remote-id>
+ </upstream>
+ <longdescription>SPARK stands for Scanning, Parsing, and Rewriting Kit.
+ It uses Jay Early’s algorithm for parsing context free grammars, and
+ comes with some generic Abstract Syntax Tree routines. There is also a
+ prototype scanner which does its job by combining Python regular
+ expressions.
+ </longdescription>
+</pkgmetadata>
diff --git a/dev-python/spark-parser/spark-parser-1.4.0.ebuild b/dev-python/spark-parser/spark-parser-1.4.0.ebuild
new file mode 100644
index 00000000..9ca7566
--- /dev/null
+++ b/dev-python/spark-parser/spark-parser-1.4.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5} pypy)
+
+inherit distutils-r1
+
+MY_PN="spark_parser"
+
+DESCRIPTION="An Early-Algorithm Context-free grammar Parser"
+HOMEPAGE="https://github.com/rocky/python-spark/ https://pypi.python.org/pypi/spark_parser"
+SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ >=dev-python/nose-1.0[${PYTHON_USEDEP}]
+ dev-python/mock[${PYTHON_USEDEP}]
+ )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_test() {
+ emake check
+}
next reply other threads:[~2016-10-07 18:11 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-07 18:11 Brian Dolbec [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-10-22 1:26 [gentoo-commits] repo/gentoo:master commit in: dev-python/spark-parser/ Brian Dolbec
2016-11-13 17:18 Brian Dolbec
2016-11-29 0:49 Denis Dupeyron
2016-11-29 1:50 Denis Dupeyron
2016-11-29 20:07 Brian Dolbec
2017-03-28 19:07 Brian Dolbec
2017-06-09 18:19 Brian Dolbec
2018-01-19 22:55 Brian Dolbec
2019-12-29 8:53 David Seifert
2020-02-06 6:18 Michał Górny
2020-03-29 8:20 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1475863872.f4713b72e6c4f2a17ca54148c59f8059cda66e05.dolsen@gentoo \
--to=dolsen@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox