aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortobez <tobez@FreeBSD.org>2009-10-05 00:16:45 +0800
committertobez <tobez@FreeBSD.org>2009-10-05 00:16:45 +0800
commit16ba68a897f59164c14b0b4f5553159569e3222d (patch)
treeafd02c30275c1d22da712d0aed791b5a744822a1
parent4d3f6fa39514983fb6b799258ad0d7cfc9f8de3f (diff)
downloadfreebsd-ports-gnome-16ba68a897f59164c14b0b4f5553159569e3222d.tar.gz
freebsd-ports-gnome-16ba68a897f59164c14b0b4f5553159569e3222d.tar.zst
freebsd-ports-gnome-16ba68a897f59164c14b0b4f5553159569e3222d.zip
Update to 2.08.
This version fixes CVE-2008-0448, so no need to keep our custom patch anymore. Changes: http://search.cpan.org/dist/File-Path/Changes
-rw-r--r--devel/p5-File-Path/Makefile3
-rw-r--r--devel/p5-File-Path/distinfo6
-rw-r--r--devel/p5-File-Path/files/patch-incomplete-fix-for-CVE-2008-044811
3 files changed, 4 insertions, 16 deletions
diff --git a/devel/p5-File-Path/Makefile b/devel/p5-File-Path/Makefile
index c0f407f02a1e..8fe8ea16626a 100644
--- a/devel/p5-File-Path/Makefile
+++ b/devel/p5-File-Path/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= File-Path
-PORTVERSION= 2.07
-PORTREVISION= 1
+PORTVERSION= 2.08
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
diff --git a/devel/p5-File-Path/distinfo b/devel/p5-File-Path/distinfo
index 61869b79e5c3..bd61c2f2381c 100644
--- a/devel/p5-File-Path/distinfo
+++ b/devel/p5-File-Path/distinfo
@@ -1,3 +1,3 @@
-MD5 (File-Path-2.07.tar.gz) = f685a9dce45aca0c5c535e90c7233935
-SHA256 (File-Path-2.07.tar.gz) = 03a59648e69401c94acbb90f627d9e9f76bfa94d84525a6e92e4633621d36e3d
-SIZE (File-Path-2.07.tar.gz) = 18413
+MD5 (File-Path-2.08.tar.gz) = 9126d1a5c0499d8c128f13be25679e0b
+SHA256 (File-Path-2.08.tar.gz) = 4295b7922eb6e21c8a5c409043be4247c62cc2d09467f723a358dca6f7fe9f45
+SIZE (File-Path-2.08.tar.gz) = 20611
diff --git a/devel/p5-File-Path/files/patch-incomplete-fix-for-CVE-2008-0448 b/devel/p5-File-Path/files/patch-incomplete-fix-for-CVE-2008-0448
deleted file mode 100644
index 4979f240964d..000000000000
--- a/devel/p5-File-Path/files/patch-incomplete-fix-for-CVE-2008-0448
+++ /dev/null
@@ -1,11 +0,0 @@
---- Path.pm.orig 2009-01-03 19:40:06.000000000 +0800
-+++ Path.pm 2009-01-03 19:41:04.000000000 +0800
-@@ -333,7 +333,7 @@
- }
- else {
- _error($arg, "cannot remove directory", $canon);
-- if (!chmod($perm, ($Is_VMS ? VMS::Filespec::fileify($root) : $root))
-+ if ($Force_Writeable && !chmod($perm, ($Is_VMS ? VMS::Filespec::fileify($root) : $root))
- ) {
- _error($arg, sprintf("cannot restore permissions to 0%o",$perm), $canon);
- }