summaryrefslogtreecommitdiff
path: root/x11-misc/shutter/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-04-12 03:41:30 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-04-12 03:41:30 +0100
commit623ee73d661e5ed8475cb264511f683407d87365 (patch)
tree993eb27c93ec7a2d2d19550300d888fc1fed9e69 /x11-misc/shutter/files
parentceeeb463cc1eef97fd62eaee8bf2196ba04bc384 (diff)
gentoo Easter resync : 12.04.2020
Diffstat (limited to 'x11-misc/shutter/files')
-rw-r--r--x11-misc/shutter/files/shutter-0.90-webphoto.patch17
-rw-r--r--x11-misc/shutter/files/shutter-0.93.1-insecure_use_of_system.patch19
2 files changed, 0 insertions, 36 deletions
diff --git a/x11-misc/shutter/files/shutter-0.90-webphoto.patch b/x11-misc/shutter/files/shutter-0.90-webphoto.patch
deleted file mode 100644
index 647e53aa5e04..000000000000
--- a/x11-misc/shutter/files/shutter-0.90-webphoto.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: shutter-0.90/bin/shutter
-===================================================================
---- shutter-0.90.orig/bin/shutter
-+++ shutter-0.90/bin/shutter
-@@ -9396,11 +9396,7 @@ else {
- die "ERROR: imagemagick is missing --> aborting!\n\n";
- }
-
-- #gnome-web-photo
-- unless ( File::Which::which('gnome-web-photo') ) {
-- warn "WARNING: gnome-web-photo is missing --> screenshots of websites will be disabled!\n\n";
-- $gnome_web_photo = FALSE;
-- }
-+ $gnome_web_photo = FALSE;
-
- #nautilus-sendto
- unless ( File::Which::which('nautilus-sendto') ) {
diff --git a/x11-misc/shutter/files/shutter-0.93.1-insecure_use_of_system.patch b/x11-misc/shutter/files/shutter-0.93.1-insecure_use_of_system.patch
deleted file mode 100644
index e71a44f21c08..000000000000
--- a/x11-misc/shutter/files/shutter-0.93.1-insecure_use_of_system.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Description: Fix insecure use of system()
-Author: Luke Faraone <lfaraone@debian.org>
-Bug: https://bugs.launchpad.net/shutter/+bug/1495163
-Debian-Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=798862
-
-Index: shutter/share/shutter/resources/modules/Shutter/App/HelperFunctions.pm
-===================================================================
---- shutter.orig/share/shutter/resources/modules/Shutter/App/HelperFunctions.pm 2015-11-05 21:34:34.222313258 -0500
-+++ shutter/share/shutter/resources/modules/Shutter/App/HelperFunctions.pm 2015-11-05 21:35:37.299461116 -0500
-@@ -53,7 +53,8 @@
-
- sub xdg_open {
- my ( $self, $dialog, $link, $user_data ) = @_;
-- system("xdg-open $link");
-+ my @args = ("xdg-open", $link);
-+ system(@args);
- if($?){
- my $response = $self->{_dialogs}->dlg_error_message(
- sprintf( $self->{_d}->get("Error while executing %s."), "'xdg-open'"),