View | Details | Raw Unified | Return to bug 217186
Collapse All | Expand All

(-)devel/py-Automat/Makefile (+27 lines)
Line 0 Link Here
1
# Created by: John W. O'Brien <john@saltant.com>
2
# $FreeBSD$
3
4
PORTNAME=	Automat
5
PORTVERSION=	0.5.0
6
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=	john@saltant.com
11
COMMENT=	Finite-state machines in Python
12
13
LICENSE=	MIT
14
LICENSE_FILE=	${WRKSRC}/LICENSE
15
16
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm \
17
		${PYTHON_PKGNAMEPREFIX}m2r>0:textproc/py-m2r
18
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}attrs>0:devel/py-attrs \
19
		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six
20
21
# 2.7, 3.3+
22
USES=		python
23
USE_PYTHON=	autoplist concurrent distutils
24
25
NO_ARCH=	yes
26
27
.include <bsd.port.mk>
(-)devel/py-Automat/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1487351142
2
SHA256 (Automat-0.5.0.tar.gz) = 4889ec6763377432ec4db265ad552bbe956768ea3fff39014855308ba79dd7c2
3
SIZE (Automat-0.5.0.tar.gz) = 32599
(-)devel/py-Automat/files/patch-setup.py (+13 lines)
Line 0 Link Here
1
--- setup.py.orig	2017-02-18 00:40:15 UTC
2
+++ setup.py
3
@@ -39,8 +39,8 @@ setup(
4
             "automat-visualize = automat._visualize:tool"
5
         ],
6
     },
7
-    author_name='Glyph',
8
-    author_mail='glyph@twistedmatrix.com',
9
+    author='Glyph',
10
+    author_email='glyph@twistedmatrix.com',
11
     include_package_data=True,
12
     license="MIT",
13
     keywords='fsm finite state machine automata',
(-)devel/py-Automat/pkg-descr (+5 lines)
Line 0 Link Here
1
Automat is a library for concise, idiomatic Python expression of
2
finite-state automata (particularly deterministic finite-state
3
transducers).
4
5
WWW: https://github.com/glyph/Automat

Return to bug 217186