summaryrefslogtreecommitdiff
path: root/textproc/py-martel
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-12-11 03:11:42 +0000
committerSteve Price <steve@FreeBSD.org>2000-12-11 03:11:42 +0000
commitb61989711f80b0dd16d3ee56e061c23a2d759786 (patch)
treea6f9b6564ff37c286d109197dddec868c40795d3 /textproc/py-martel
parentUpdate to version 5.79. (diff)
- Added a patch to fix a small bug, as suggested by Martel's author.
- Bumped PORTREVISION - Added file: files/patch-Generate.py PR: 23351 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=35878
Diffstat (limited to 'textproc/py-martel')
-rw-r--r--textproc/py-martel/Makefile1
-rw-r--r--textproc/py-martel/files/patch-Generate.py16
2 files changed, 17 insertions, 0 deletions
diff --git a/textproc/py-martel/Makefile b/textproc/py-martel/Makefile
index 17fb1661b76f..8c3fbb8a669d 100644
--- a/textproc/py-martel/Makefile
+++ b/textproc/py-martel/Makefile
@@ -7,6 +7,7 @@
PORTNAME= martel
PORTVERSION= 0.4
+PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= textproc biology python
MASTER_SITES= http://www.biopython.org/~dalke/Martel/
diff --git a/textproc/py-martel/files/patch-Generate.py b/textproc/py-martel/files/patch-Generate.py
new file mode 100644
index 000000000000..caafeaaebc6b
--- /dev/null
+++ b/textproc/py-martel/files/patch-Generate.py
@@ -0,0 +1,16 @@
+--- Generate.py.orig Wed Nov 22 09:26:48 2000
++++ Generate.py Thu Dec 7 12:27:09 2000
+@@ -268,11 +268,11 @@
+
+ # Must repeat at least "i" times.
+ for i in range(min_count):
+- result.append( (None, TT.SubTable, tuple(tagtable)) )
++ result.append( (">ignore", TT.Table, tuple(tagtable)) )
+
+ # Special case for when the max count means "unbounded"
+ if max_count == sre_parse.MAXREPEAT:
+- result.append( (None, TT.SubTable, tuple(tagtable),
++ result.append( (">ignore", TT.Table, tuple(tagtable),
+ +1, 0))
+ elif min_count == max_count:
+ # Special case when i == j