summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-01-19 13:01:31 +0100
committerDavid Seifert <soap@gentoo.org>2017-01-19 13:34:51 +0100
commite2057eaa1d7b121afada1fb339a514567141a6cd (patch)
tree938e0be4fb9686e2ec0d41921e4bba6ec6cd55aa /sci-calculators/qalculate-gtk/files
parentsci-calculators/pcalc: Remove old (diff)
downloadgentoo-e2057eaa1d7b121afada1fb339a514567141a6cd.tar.gz
gentoo-e2057eaa1d7b121afada1fb339a514567141a6cd.tar.bz2
gentoo-e2057eaa1d7b121afada1fb339a514567141a6cd.zip
sci-calculators/qalculate-gtk: Remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/3538
Diffstat (limited to 'sci-calculators/qalculate-gtk/files')
-rw-r--r--sci-calculators/qalculate-gtk/files/qalculate-gtk-0.9.7-entry.patch18
-rw-r--r--sci-calculators/qalculate-gtk/files/qalculate-gtk-0.9.7-wformat-security.patch48
2 files changed, 0 insertions, 66 deletions
diff --git a/sci-calculators/qalculate-gtk/files/qalculate-gtk-0.9.7-entry.patch b/sci-calculators/qalculate-gtk/files/qalculate-gtk-0.9.7-entry.patch
deleted file mode 100644
index 104662e7c608..000000000000
--- a/sci-calculators/qalculate-gtk/files/qalculate-gtk-0.9.7-entry.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Update to latest freedesktop spec.
-
---- qalculate-gtk-0.9.7/data/qalculate-gtk.desktop.in
-+++ qalculate-gtk-0.9.7/data/qalculate-gtk.desktop.in
-@@ -1,11 +1,9 @@
- [Desktop Entry]
--Encoding=UTF-8
- _Name=Qalculate!
- _Comment=Powerful and easy to use calculator
- Exec=qalculate-gtk
--Icon=qalculate.png
-+Icon=qalculate
- Terminal=false
- Type=Application
- StartupNotify=true
--Categories=GNOME;Application;Utility;
--
-+Categories=GTK;Utility;
diff --git a/sci-calculators/qalculate-gtk/files/qalculate-gtk-0.9.7-wformat-security.patch b/sci-calculators/qalculate-gtk/files/qalculate-gtk-0.9.7-wformat-security.patch
deleted file mode 100644
index dee57dd54503..000000000000
--- a/sci-calculators/qalculate-gtk/files/qalculate-gtk-0.9.7-wformat-security.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-Fix -Werror=format-security errors
-https://bugs.gentoo.org/show_bug.cgi?id=541986
-
-callbacks.cc: In function ‘void show_message(const gchar*, GtkWidget*)’:
-callbacks.cc:391:137: error: format not a string literal and no format arguments [-Werror=format-security]
- GtkWidget *edialog = gtk_message_dialog_new(GTK_WINDOW(win), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, text);
-
---- qalculate-gtk-0.9.7/src/callbacks.cc
-+++ qalculate-gtk-0.9.7/src/callbacks.cc
-@@ -388,12 +388,12 @@
- }
-
- void show_message(const gchar *text, GtkWidget *win) {
-- GtkWidget *edialog = gtk_message_dialog_new(GTK_WINDOW(win), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, text);
-+ GtkWidget *edialog = gtk_message_dialog_new(GTK_WINDOW(win), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", text);
- gtk_dialog_run(GTK_DIALOG(edialog));
- gtk_widget_destroy(edialog);
- }
- bool ask_question(const gchar *text, GtkWidget *win) {
-- GtkWidget *edialog = gtk_message_dialog_new(GTK_WINDOW(win), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_YES_NO, text);
-+ GtkWidget *edialog = gtk_message_dialog_new(GTK_WINDOW(win), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_YES_NO, "%s", text);
- int question_answer = gtk_dialog_run(GTK_DIALOG(edialog));
- gtk_widget_destroy(edialog);
- return question_answer == GTK_RESPONSE_YES;
-@@ -654,6 +654,7 @@
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_INFO,
- GTK_BUTTONS_CLOSE,
-+ "%s",
- CALCULATOR->message()->message().c_str());
- gtk_dialog_run(GTK_DIALOG(edialog));
- gtk_widget_destroy(edialog);
-@@ -667,6 +668,7 @@
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_ERROR,
- GTK_BUTTONS_CLOSE,
-+ "%s",
- str.c_str());
- } else {
- edialog = gtk_message_dialog_new(
-@@ -674,6 +676,7 @@
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_WARNING,
- GTK_BUTTONS_CLOSE,
-+ "%s",
- str.c_str());
- }
-