From: "Brian Dolbec" <dolsen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/automat/
Date: Fri, 31 Mar 2017 21:11:25 +0000 (UTC) [thread overview]
Message-ID: <1490994531.2dfa752bdc2b360e3ca5f1b575dd7cb8403f9717.dolsen@gentoo> (raw)
commit: 2dfa752bdc2b360e3ca5f1b575dd7cb8403f9717
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 31 13:52:51 2017 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Mar 31 21:08:51 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dfa752b
dev-python/automat: New package, new dep of dev-python/twisted
Package-Manager: Portage-2.3.5, Repoman-2.3.2_p30
dev-python/automat/Manifest | 1 +
dev-python/automat/automat-0.5.0.ebuild | 50 +++++++++++++++++++++++++++++++++
dev-python/automat/metadata.xml | 20 +++++++++++++
3 files changed, 71 insertions(+)
diff --git a/dev-python/automat/Manifest b/dev-python/automat/Manifest
new file mode 100644
index 00000000000..6edae925f26
--- /dev/null
+++ b/dev-python/automat/Manifest
@@ -0,0 +1 @@
+DIST Automat-0.5.0.tar.gz 32599 SHA256 4889ec6763377432ec4db265ad552bbe956768ea3fff39014855308ba79dd7c2 SHA512 7b4fc64e1b3cc514e3513c4be7387309a9e0c6d59ef091131404642b517a324b4a0eb677bee99da038664bd6713f2d2078c621f056e98b35966caf324741eeeb WHIRLPOOL 5d3d258cb0eae2393edd4b12860b4312522c4a0eff7c17724ecf13032b633e1803b3817bd095f5e24a680d6d006ea4a389bd038022ac21376ba4e969e3bc4200
diff --git a/dev-python/automat/automat-0.5.0.ebuild b/dev-python/automat/automat-0.5.0.ebuild
new file mode 100644
index 00000000000..667cc866282
--- /dev/null
+++ b/dev-python/automat/automat-0.5.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy)
+
+inherit distutils-r1
+
+MYPN="Automat"
+MYP="${MYPN}-${PV}"
+
+DESCRIPTION="Self-service finite-state machines for the programmer on the go"
+HOMEPAGE="https://github.com/glyph/automat https://pypi.python.org/pypi/Automat"
+SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples test"
+
+RDEPEND="
+ dev-python/attrs[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+"
+DEPEND="
+ ${RDEPEND}
+ dev-python/setuptools_scm[${PYTHON_USEDEP}]
+ dev-python/m2r[${PYTHON_USEDEP}]
+ test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+S=${WORKDIR}/${MYP}
+
+python_test() {
+ PYTHONPATH="${S}/test:${BUILD_DIR}/lib" py.test -v || die "Tests failed under ${EPYTHON}"
+}
+
+src_install() {
+ if use examples; then
+ docinto examples
+ dodoc docs/examples/*.py
+ fi
+ distutils-r1_src_install
+}
+
+pkg_postinst() {
+ einfo "For additional visualization functionality install these optional dependencies"
+ einfo " >=dev-python/twisted-16.1.1"
+ einfo " media-gfx/graphviz[python]"
+}
diff --git a/dev-python/automat/metadata.xml b/dev-python/automat/metadata.xml
new file mode 100644
index 00000000000..1b291a9ad5b
--- /dev/null
+++ b/dev-python/automat/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>dolsen@gentoo.org</email>
+ <description>Primary maintainer</description>
+ </maintainer>
+ <upstream>
+ <maintainer>
+ <email>glyph@twistedmatrix.com</email>
+ <name>Glyph</name>
+ </maintainer>
+ <remote-id type="pypi">Automat</remote-id>
+ </upstream>
+ <longdescription>
+ Automat is a library for concise, idiomatic Python expression of
+ finite-state automata (particularly deterministic finite-state
+ transducers).
+ </longdescription>
+</pkgmetadata>
next reply other threads:[~2017-03-31 21:11 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-31 21:11 Brian Dolbec [this message]
-- strict thread matches above, loose matches on Subject: below --
2017-04-05 8:44 [gentoo-commits] repo/gentoo:master commit in: dev-python/automat/ Michael Weber
2017-04-05 10:01 Michael Weber
2017-04-05 10:44 Michael Weber
2017-04-18 14:17 Jeroen Roovers
2017-06-09 18:19 Brian Dolbec
2017-07-10 21:47 Sergei Trofimovich
2017-07-10 21:47 Sergei Trofimovich
2017-09-24 16:34 Sergei Trofimovich
2017-09-24 16:34 Sergei Trofimovich
2017-12-13 22:15 Sergei Trofimovich
2017-12-13 22:15 Sergei Trofimovich
2018-02-22 15:06 Michał Górny
2018-04-06 5:23 Matt Turner
2018-07-02 2:12 Brian Dolbec
2018-07-16 19:57 Michał Górny
2019-01-17 20:45 Mikle Kolyada
2019-03-03 10:56 Mikle Kolyada
2019-03-20 10:31 Fabian Groffen
2019-05-02 22:02 Mikle Kolyada
2019-12-02 2:48 Aaron Bauman
2020-02-22 20:22 Andreas Sturmlechner
2020-02-23 12:12 Mikle Kolyada
2020-02-24 8:20 Sergei Trofimovich
2020-04-06 17:54 Sergei Trofimovich
2020-04-15 5:54 Mike Gilbert
2020-05-06 14:28 Mikle Kolyada
2020-05-06 18:45 Mikle Kolyada
2020-05-27 8:38 Michał Górny
2020-05-27 12:45 Michał Górny
2020-07-08 7:11 Sergei Trofimovich
2020-07-08 7:18 Sergei Trofimovich
2020-07-08 13:08 Michał Górny
2020-07-08 13:08 Michał Górny
2020-08-04 12:01 Michał Górny
2020-11-28 11:43 Sam James
2021-05-18 11:40 Michał Górny
2022-01-27 22:56 James Le Cuirot
2022-05-12 13:36 Michał Górny
2022-05-25 4:43 Michał Górny
2022-05-26 9:17 Michał Górny
2022-05-26 9:17 Michał Górny
2022-06-03 9:12 Michał Górny
2022-06-13 9:46 Agostino Sarubbo
2022-10-30 6:39 Michał Górny
2022-11-29 7:25 Arthur Zamarin
2023-03-16 18:13 Michał Górny
2023-05-27 15:42 Sam James
2024-08-18 6:04 Michał Górny
2024-08-20 1:43 Michał Górny
2024-09-07 10:38 Arthur Zamarin
2024-09-07 10:56 Michał Górny
2025-02-18 12:50 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=1490994531.2dfa752bdc2b360e3ca5f1b575dd7cb8403f9717.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