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

(-)textproc/py-pyx12/Makefile (-1 / +3 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/textproc/py-pyx12/Makefile 374183 2014-12-07 10:01:36Z mva $
2
# $FreeBSD: head/textproc/py-pyx12/Makefile 374183 2014-12-07 10:01:36Z mva $
3
3
4
PORTNAME=	pyx12
4
PORTNAME=	pyx12
5
PORTVERSION=	2.1.1
5
PORTVERSION=	2.2.1
6
CATEGORIES=	textproc python
6
CATEGORIES=	textproc python
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 12-17 Link Here
12
12
13
LICENSE=	BSD3CLAUSE
13
LICENSE=	BSD3CLAUSE
14
14
15
NO_ARCH=	yes
16
15
USES=		python
17
USES=		python
16
USE_PYTHON=	distutils autoplist
18
USE_PYTHON=	distutils autoplist
17
19
(-)textproc/py-pyx12/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (pyx12-2.1.1.tar.gz) = 3bbd020f327e48938596a68f773c1a2324a84de2129e218008892ca1ba500d53
1
SHA256 (pyx12-2.2.1.tar.gz) = 659aeb712229352113aa900f1751b80bbee1892558fbfee87f7cbc1570d65dee
2
SIZE (pyx12-2.1.1.tar.gz) = 499856
2
SIZE (pyx12-2.2.1.tar.gz) = 497363
(-)textproc/py-pyx12/files/patch-pyx12__error_handler_base.py (+47 lines)
Line 0 Link Here
1
--- pyx12/error_handler_base.py.orig	2014-01-26 01:22:05 UTC
2
+++ pyx12/error_handler_base.py
3
@@ -145,12 +145,18 @@ class ErrorHandlerBase(object):
4
 
5
     @abc.abstractmethod
6
     def close_isa_loop(self, node, seg, src):
7
+        """
8
+        """
9
 
10
     @abc.abstractmethod
11
     def close_gs_loop(self, node, seg, src):
12
+        """
13
+        """
14
 
15
     @abc.abstractmethod
16
     def close_st_loop(self, node, seg, src):
17
+        """
18
+        """
19
 
20
     @abc.abstractmethod
21
     def find_node(self, type):
22
@@ -160,17 +166,23 @@ class ErrorHandlerBase(object):
23
 
24
     @abc.abstractmethod
25
     def _get_last_child(self):
26
-
27
-    @abc.abstractmethod
28
+        """
29
+        """
30
 
31
     @abc.abstractmethod
32
     def get_error_count(self):
33
+        """
34
+        """
35
 
36
     @abc.abstractmethod
37
     def get_first_child(self):
38
+        """
39
+        """
40
 
41
     @abc.abstractmethod
42
     def get_next_sibling(self):
43
+        """
44
+        """
45
 
46
     @abc.abstractmethod
47
     def __next__(self):
(-)textproc/py-pyx12/files/pkg-deinstall.in (-17 lines)
Lines 1-17 Link Here
1
#!/bin/sh
2
PKGNAME=$1
3
#
4
case $2 in
5
    DEINSTALL)
6
	rm -f %%DATADIR%%/test/*.pyc
7
	rm -f %%DATADIR%%/test/*.pyo
8
	;;
9
    POST-DEINSTALL)
10
	exit 0
11
	;;
12
    *)
13
	echo "Unexpected Argument $2!!!"
14
	exit 1
15
	;;
16
esac
17
exit 0
(-)textproc/py-pyx12/pkg-descr (-4 / +5 lines)
Lines 1-5 Link Here
1
pyx12 is a python based ANSI X.12 to XML EDI translator and validator.  It is
1
pyx12 is a python based ANSI X.12 to XML EDI translator and validator.
2
designed to be a step in the conversion of a X12 transaction to back-end
2
It is designed to be a step in the conversion of a X12 transaction to
3
database process. The initial target is X12N to support HIPAA transactions.
3
back-end database process. The initial target is X12N to support HIPAA
4
transactions.
4
5
5
WWW: http://pyx12.sourceforge.net/
6
WWW: https://github.com/azoner/pyx12

Return to bug 205897