aboutsummaryrefslogtreecommitdiffstats
path: root/archivers
diff options
context:
space:
mode:
authorglewis <glewis@FreeBSD.org>2005-03-16 01:35:39 +0800
committerglewis <glewis@FreeBSD.org>2005-03-16 01:35:39 +0800
commit280b9bc2e3a78a1936b884d8456c4d8d70632863 (patch)
tree3562620d4ec7b5818596597820b235b2d7bac2d8 /archivers
parentbd0ce2950115348d33ed8b7fbd861b7c8d9db6de (diff)
downloadfreebsd-ports-gnome-280b9bc2e3a78a1936b884d8456c4d8d70632863.tar.gz
freebsd-ports-gnome-280b9bc2e3a78a1936b884d8456c4d8d70632863.tar.zst
freebsd-ports-gnome-280b9bc2e3a78a1936b884d8456c4d8d70632863.zip
. Update to 1.02.015.
Diffstat (limited to 'archivers')
-rw-r--r--archivers/libarchive/Makefile2
-rw-r--r--archivers/libarchive/distinfo4
-rw-r--r--archivers/libarchive/files/patch-archive_read_extract.c19
3 files changed, 3 insertions, 22 deletions
diff --git a/archivers/libarchive/Makefile b/archivers/libarchive/Makefile
index af66df43c82b..98b18e2b15d7 100644
--- a/archivers/libarchive/Makefile
+++ b/archivers/libarchive/Makefile
@@ -5,7 +5,7 @@
# $FreeBSD$
PORTNAME= libarchive
-PORTVERSION= 1.02.014
+PORTVERSION= 1.02.015
PORTEPOCH= 1
CATEGORIES= archivers
MASTER_SITES= http://people.freebsd.org/~kientzle/libarchive/src/
diff --git a/archivers/libarchive/distinfo b/archivers/libarchive/distinfo
index 251d528be423..feb81f1a58ea 100644
--- a/archivers/libarchive/distinfo
+++ b/archivers/libarchive/distinfo
@@ -1,2 +1,2 @@
-MD5 (libarchive-1.02.014.tar.gz) = 4de0006f9a3a6a4e4ad54bf8e6e9c88b
-SIZE (libarchive-1.02.014.tar.gz) = 198411
+MD5 (libarchive-1.02.015.tar.gz) = 08940a21a1d86e0dcc9f5ead1d46212e
+SIZE (libarchive-1.02.015.tar.gz) = 198041
diff --git a/archivers/libarchive/files/patch-archive_read_extract.c b/archivers/libarchive/files/patch-archive_read_extract.c
deleted file mode 100644
index 1187e7c1ba4e..000000000000
--- a/archivers/libarchive/files/patch-archive_read_extract.c
+++ /dev/null
@@ -1,19 +0,0 @@
-$FreeBSD$
-
---- archive_read_extract.c.orig Mon Mar 14 10:12:52 2005
-+++ archive_read_extract.c Mon Mar 14 10:13:03 2005
-@@ -188,12 +188,13 @@
- * and move to a suitable intermediate dir.
- */
- if (strlen(archive_entry_pathname(entry)) > PATH_MAX) {
-+ char *intdir, *tail;
-+
- /*
- * Yes, the copy here is necessary because we edit
- * the pathname in-place to create intermediate dirnames.
- */
- original_filename = strdup(archive_entry_pathname(entry));
-- char *intdir, *tail;
-
- restore_pwd = open(".", O_RDONLY);
- /*