summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2018-02-07 19:50:58 +1100
committerMichael Palimaka <kensington@gentoo.org>2018-02-07 19:51:19 +1100
commit04329b66abf9db23372d370a5c99d540ae26538e (patch)
treed24989db75584f7005f1a909132b96493209ea31 /x11-misc/evolvotron/files
parentsys-fs/udiskie: remove 0.6.2 and 0.6.4 (diff)
downloadgentoo-04329b66abf9db23372d370a5c99d540ae26538e.tar.gz
gentoo-04329b66abf9db23372d370a5c99d540ae26538e.tar.bz2
gentoo-04329b66abf9db23372d370a5c99d540ae26538e.zip
x11-misc/evolvotron: remove 0.6.3-r1
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'x11-misc/evolvotron/files')
-rw-r--r--x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch b/x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch
deleted file mode 100644
index 709d61b29a6a..000000000000
--- a/x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Description: Fix compilation with GCC6 by making implict conversion to bool explicit
-Author: Axel Beckert <abe@debian.org>
-Bug-Debian: https://bugs.debian.org/811660
-
---- a/libevolvotron/mutatable_image_computer.h
-+++ b/libevolvotron/mutatable_image_computer.h
-@@ -193,7 +193,7 @@
- //! Indicate whether computation us taking place (only intended for counting outstanding threads).
- bool active() const
- {
-- return _task;
-+ return (bool)_task;
- }
- };
-