aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/xml2rfc
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2016-04-18 01:23:40 +0800
committermarcus <marcus@FreeBSD.org>2016-04-18 01:23:40 +0800
commit4e496f63b7695544112579eb04e449b62428b963 (patch)
treee8f5473ea18e0e68be0bb40c8fcc2bea4a517412 /textproc/xml2rfc
parent2246eed1dfa9322e52264dbc02e46b7c50069379 (diff)
downloadfreebsd-ports-gnome-4e496f63b7695544112579eb04e449b62428b963.tar.gz
freebsd-ports-gnome-4e496f63b7695544112579eb04e449b62428b963.tar.zst
freebsd-ports-gnome-4e496f63b7695544112579eb04e449b62428b963.zip
Update to 2.5.1.
Diffstat (limited to 'textproc/xml2rfc')
-rw-r--r--textproc/xml2rfc/Makefile6
-rw-r--r--textproc/xml2rfc/distinfo4
-rw-r--r--textproc/xml2rfc/files/patch-setup-lxml10
3 files changed, 5 insertions, 15 deletions
diff --git a/textproc/xml2rfc/Makefile b/textproc/xml2rfc/Makefile
index 222eca5261dd..26a8e24c1dd8 100644
--- a/textproc/xml2rfc/Makefile
+++ b/textproc/xml2rfc/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= xml2rfc
-PORTVERSION= 2.4.5
-PORTREVISION= 3
+PORTVERSION= 2.5.1
CATEGORIES= textproc
MASTER_SITES= http://tools.ietf.org/tools/xml2rfc2/cli/
@@ -12,7 +11,8 @@ COMMENT= Tool to create RFCs and related documents from XML, as per RFC2629
LICENSE= BSD3CLAUSE
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=2.2.8:devel/py-lxml
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=2.2.8:devel/py-lxml \
+ ${PYTHON_PKGNAMEPREFIX}requests>=2.5.0:www/py-requests
USES= python
USE_PYTHON= distutils autoplist
diff --git a/textproc/xml2rfc/distinfo b/textproc/xml2rfc/distinfo
index 0fe10c22c91f..6d125634bc5f 100644
--- a/textproc/xml2rfc/distinfo
+++ b/textproc/xml2rfc/distinfo
@@ -1,2 +1,2 @@
-SHA256 (xml2rfc-2.4.5.tar.gz) = 97425577bcda2542b9c5dd58cec4f2f8dd6602f448d0288f4e38076d7d37540a
-SIZE (xml2rfc-2.4.5.tar.gz) = 1003779
+SHA256 (xml2rfc-2.5.1.tar.gz) = 67d44fce6548c44e6065b95d0ef5b3a6e08928e6d659d4396928d8937c2be32d
+SIZE (xml2rfc-2.5.1.tar.gz) = 1050770
diff --git a/textproc/xml2rfc/files/patch-setup-lxml b/textproc/xml2rfc/files/patch-setup-lxml
deleted file mode 100644
index 3644008a508a..000000000000
--- a/textproc/xml2rfc/files/patch-setup-lxml
+++ /dev/null
@@ -1,10 +0,0 @@
---- setup.py.~1~ 2014-01-17 14:28:33.000000000 -0500
-+++ setup.py 2014-02-12 08:26:27.000000000 -0500
-@@ -89,6 +89,6 @@
- package_data={'xml2rfc': ['templates/*',
- ]},
-
-- install_requires = ['lxml >=2.2.8', 'lxml <= 3.2.1' ],
-+ install_requires = ['lxml >=2.2.8' ],
- zip_safe = False, # We're reading templates from a package directory.
- )