aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/p5-XML-RSS
diff options
context:
space:
mode:
authorclsung <clsung@FreeBSD.org>2006-10-31 09:29:49 +0800
committerclsung <clsung@FreeBSD.org>2006-10-31 09:29:49 +0800
commit95aa053ded8f042b3eeeea19c108c77e1854504c (patch)
tree876b5f230e594d6a5642b9ede871edad373be93a /textproc/p5-XML-RSS
parent2f43c454b1ed3f0f68d304d354347e4511280cee (diff)
downloadfreebsd-ports-gnome-95aa053ded8f042b3eeeea19c108c77e1854504c.tar.gz
freebsd-ports-gnome-95aa053ded8f042b3eeeea19c108c77e1854504c.tar.zst
freebsd-ports-gnome-95aa053ded8f042b3eeeea19c108c77e1854504c.zip
- Update to 1.11
- remove stale patch PR: ports/104591 [1], ports/104816 [2] Submitted by: <tjs_AT_cdpa dot nsysu dot edu dot tw> [1], <babak@farrokhi dot net> [2]
Diffstat (limited to 'textproc/p5-XML-RSS')
-rw-r--r--textproc/p5-XML-RSS/Makefile12
-rw-r--r--textproc/p5-XML-RSS/distinfo6
-rw-r--r--textproc/p5-XML-RSS/files/patch-lib::XML::RSS.pm10
3 files changed, 7 insertions, 21 deletions
diff --git a/textproc/p5-XML-RSS/Makefile b/textproc/p5-XML-RSS/Makefile
index fc847e6de55e..4cd7008b92c3 100644
--- a/textproc/p5-XML-RSS/Makefile
+++ b/textproc/p5-XML-RSS/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= XML-RSS
-PORTVERSION= 1.10
+PORTVERSION= 1.11
CATEGORIES= textproc perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= XML
@@ -15,16 +15,12 @@ PKGNAMEPREFIX= p5-
MAINTAINER= clsung@FreeBSD.org
COMMENT= Perl extension to manage RDF Site Summary (RSS) files
-BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser/Expat.pm:${PORTSDIR}/textproc/p5-XML-Parser
+BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser/Expat.pm:${PORTSDIR}/textproc/p5-XML-Parser \
+ ${SITE_PERL}/${PERL_ARCH}/HTML/Entities.pm:${PORTSDIR}/www/p5-HTML-Parser
RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= yes
MAN3= XML::RSS.3
-.include <bsd.port.pre.mk>
-
-post-patch:
- @${RM} ${WRKSRC}/lib/XML/RSS.pm.orig
-
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff --git a/textproc/p5-XML-RSS/distinfo b/textproc/p5-XML-RSS/distinfo
index 207e67318126..fd80ff5cedc0 100644
--- a/textproc/p5-XML-RSS/distinfo
+++ b/textproc/p5-XML-RSS/distinfo
@@ -1,3 +1,3 @@
-MD5 (XML-RSS-1.10.tar.gz) = d5a55a2eeeb479681bc72d32ac87cf8f
-SHA256 (XML-RSS-1.10.tar.gz) = 9a14b3c2d1f549b1760436b19c4359f8f2d16889fce5e9962b8ec9674cb85a1e
-SIZE (XML-RSS-1.10.tar.gz) = 38193
+MD5 (XML-RSS-1.11.tar.gz) = a89d4d8c731e80b6b40b8c134e22d03a
+SHA256 (XML-RSS-1.11.tar.gz) = 02cfa4c620a7785b9035f116cb95cf9f33f5092a2025d1d8997ff89ed2958cc2
+SIZE (XML-RSS-1.11.tar.gz) = 38439
diff --git a/textproc/p5-XML-RSS/files/patch-lib::XML::RSS.pm b/textproc/p5-XML-RSS/files/patch-lib::XML::RSS.pm
deleted file mode 100644
index a812a17cc5fd..000000000000
--- a/textproc/p5-XML-RSS/files/patch-lib::XML::RSS.pm
+++ /dev/null
@@ -1,10 +0,0 @@
---- lib/XML/RSS.pm.orig Sun Mar 12 07:47:19 2006
-+++ lib/XML/RSS.pm Thu Mar 16 10:37:37 2006
-@@ -1799,6 +1799,7 @@
- $text =~ s/&(?!(#[0-9]+|#x[0-9a-fA-F]+|\w+);)/&amp;/g;
- $text =~ s/&($entities);/$entity{$1}/g;
- $text =~ s/</&lt;/g;
-+ $text =~ s/>/&gt;/g;
-
- return $text;
- }