summaryrefslogtreecommitdiff
path: root/archivers/file-roller/patches
diff options
context:
space:
mode:
authorjmmv <jmmv>2005-08-21 11:48:34 +0000
committerjmmv <jmmv>2005-08-21 11:48:34 +0000
commit120f1a37b8963b1418439a0d21b8773d0f68ec9e (patch)
treeb226f8d322087492a44aa253041bca4f3c0ac0ea /archivers/file-roller/patches
parent4f25f3ad5d54484821e042ffaa68edadad029f08 (diff)
downloadpkgsrc-120f1a37b8963b1418439a0d21b8773d0f68ec9e.tar.gz
Update to 2.10.4:
version 2.10.4 -------------- * New translations: gl, te * Updated translations: bg, hu, sl, vi, zh_TW version 2.10.3 -------------- * Fixed bug #162729: File Roller doesn't exit cleanly on invalid archive extension. * Fixed bug #164894: crash on zip with incorrect filenames * Fixed bug #300895: Invalid read reported by valgrind. * Allow to open rar archives if rar OR unrar is available. * Display non valid utf8 filenames corretly. * Fixed creation of backups reselecting the original folder after loading the backup options.
Diffstat (limited to 'archivers/file-roller/patches')
-rw-r--r--archivers/file-roller/patches/patch-aa21
-rw-r--r--archivers/file-roller/patches/patch-ab49
2 files changed, 0 insertions, 70 deletions
diff --git a/archivers/file-roller/patches/patch-aa b/archivers/file-roller/patches/patch-aa
deleted file mode 100644
index 9438e69e183..00000000000
--- a/archivers/file-roller/patches/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-aa,v 1.4 2005/04/20 16:12:45 drochner Exp $
-
---- src/fr-command-tar.c.orig 2005-04-11 22:54:35.000000000 +0200
-+++ src/fr-command-tar.c
-@@ -212,6 +212,7 @@ add_compress_arg (FRCommand *comm)
- static void
- begin_tar_command (FRCommand *comm)
- {
-+#if 0
- char *path = NULL;
- const char *prev_path = NULL;
- char *temp = NULL;
-@@ -233,6 +234,8 @@ begin_tar_command (FRCommand *comm)
- temp = g_strdup_printf ("PATH=%s", prev_path);
- putenv (temp);
- g_free (temp);
-+#endif
-+ fr_process_begin_command (comm->process, FILEROLLER_TAR);
- }
-
-
diff --git a/archivers/file-roller/patches/patch-ab b/archivers/file-roller/patches/patch-ab
deleted file mode 100644
index 3aa88c84b14..00000000000
--- a/archivers/file-roller/patches/patch-ab
+++ /dev/null
@@ -1,49 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2005/03/22 16:29:09 jmmv Exp $
-
---- src/fr-command-zip.c.orig 2005-03-07 13:29:37.000000000 +0100
-+++ src/fr-command-zip.c
-@@ -225,7 +225,7 @@ fr_command_zip_list (FRCommand *comm)
- list__process_line,
- comm);
-
-- fr_process_begin_command (comm->process, "unzip");
-+ fr_process_begin_command (comm->process, FILEROLLER_UNZIP);
- fr_process_add_arg (comm->process, "-qq");
- fr_process_add_arg (comm->process, "-v");
- fr_process_add_arg (comm->process, "-l");
-@@ -268,7 +268,7 @@ fr_command_zip_add (FRCommand *comm,
- process_line__common,
- comm);
-
-- fr_process_begin_command (comm->process, "zip");
-+ fr_process_begin_command (comm->process, FILEROLLER_ZIP);
-
- if (base_dir != NULL)
- fr_process_set_working_dir (comm->process, base_dir);
-@@ -314,7 +314,7 @@ fr_command_zip_delete (FRCommand *comm,
- process_line__common,
- comm);
-
-- fr_process_begin_command (comm->process, "zip");
-+ fr_process_begin_command (comm->process, FILEROLLER_ZIP);
- fr_process_add_arg (comm->process, "-d");
- add_filename_arg (comm);
-
-@@ -343,7 +343,7 @@ fr_command_zip_extract (FRCommand *comm
- process_line__common,
- comm);
-
-- fr_process_begin_command (comm->process, "unzip");
-+ fr_process_begin_command (comm->process, FILEROLLER_UNZIP);
-
- if (dest_dir != NULL) {
- char *e_dest_dir = fr_command_escape (comm, dest_dir);
-@@ -381,7 +381,7 @@ static void
- fr_command_zip_test (FRCommand *comm,
- const char *password)
- {
-- fr_process_begin_command (comm->process, "unzip");
-+ fr_process_begin_command (comm->process, FILEROLLER_UNZIP);
- fr_process_add_arg (comm->process, "-t");
- add_password_arg (comm, password, TRUE);
- add_filename_arg (comm);