]> git.pld-linux.org Git - packages/Xarchiver.git/commitdiff
up to 0.5.4 (28/09/2014) auto/th/Xarchiver-0.5.4-1
authorElan Ruusamäe <glen@delfi.ee>
Mon, 27 Jul 2015 10:24:05 +0000 (13:24 +0300)
committerElan Ruusamäe <glen@delfi.ee>
Mon, 27 Jul 2015 10:24:05 +0000 (13:24 +0300)
- Applied path #4 and from #19 on. This made possible to close a lot of
  bugs, I can't recall them all, too much time has passed :)

Xarchiver.spec
format-security.patch [deleted file]

index 815e3237085da5f8bdda9017f70c4b5cdc54af0b..a0a6dab6ae7a9d5e2f8868344e31dee5b0236015 100644 (file)
@@ -3,14 +3,13 @@
 Summary:       Xarchiver - a GTK+2 frontend to popular compression formats
 Summary(pl.UTF-8):     Xarchiver - nakładka GTK+2 na popularne formaty kompresji
 Name:          Xarchiver
-Version:       0.5.3
-Release:       2
+Version:       0.5.4
+Release:       1
 License:       GPL
 Group:         X11/Applications
 Source0:       http://downloads.sourceforge.net/xarchiver/xarchiver-%{version}.tar.bz2
-# Source0-md5: fd390bbd2df76a5f8a007bdeae82d4aa
+# Source0-md5: 1b4cd37a6af03afc957a8e307417e8d0
 Patch0:                %{name}-desktop.patch
-Patch1:                format-security.patch
 URL:           https://github.com/ib/xarchiver/wiki
 BuildRequires: autoconf >= 2.50
 BuildRequires: automake
@@ -42,7 +41,6 @@ hasłem.
 %prep
 %setup -q -n xarchiver-%{version}
 %patch0 -p1
-%patch1 -p1
 mv -f po/nb{_NO,}.po
 mv -f po/pt{_PT,}.po
 sed -e 's/nb_NO/nb/;s/pt_PT/pt/' -i po/LINGUAS
diff --git a/format-security.patch b/format-security.patch
deleted file mode 100644 (file)
index cdaa4f4..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ur xarchiver-0.5.3.orig/src/window.c xarchiver-0.5.3/src/window.c
---- xarchiver-0.5.3.orig/src/window.c  2014-02-09 16:49:07.000000000 +0100
-+++ xarchiver-0.5.3/src/window.c       2014-08-15 22:29:24.498161762 +0200
-@@ -233,9 +233,9 @@
- {
-       int response;
--      dialog = gtk_message_dialog_new (window,mode,type,button,message1);
-+      dialog = gtk_message_dialog_new (window,mode,type,button,"%s",message1);
-       gtk_dialog_set_default_response (GTK_DIALOG (dialog),GTK_RESPONSE_NO);
--      gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),message2);
-+      gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),"%s",message2);
-       response = gtk_dialog_run (GTK_DIALOG (dialog));
-       gtk_widget_destroy (GTK_WIDGET (dialog));
-       return response;
-@@ -513,7 +513,7 @@
-                       g_fprintf (stream,_("Comment:\n"));
-                       if (bp)
-                               g_fprintf(stream,"</b><pre>");
--                      g_fprintf (stream,archive[idx]->comment->str);
-+                      g_fprintf (stream,"%s",archive[idx]->comment->str);
-                       if (bp)
-                               g_fprintf(stream,"</pre>");
-                       g_fprintf (stream,"\n");
This page took 0.128733 seconds and 4 git commands to generate.