diff options
author | Johannes Huber <johu@gentoo.org> | 2017-01-28 20:07:05 +0100 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2017-01-28 20:12:01 +0100 |
commit | 1d1284ddbd82a18cbc35a405bc35646209ead4a4 (patch) | |
tree | 133233af8c5027897616f370a638fb836b2ba2a5 /x11-wm/awesome/files | |
parent | dev-perl/YAML-Tiny: Remove ~arm64 (diff) | |
download | gentoo-1d1284ddbd82a18cbc35a405bc35646209ead4a4.tar.gz gentoo-1d1284ddbd82a18cbc35a405bc35646209ead4a4.tar.bz2 gentoo-1d1284ddbd82a18cbc35a405bc35646209ead4a4.zip |
x11-wm/awesome: Remove 3.4.15
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'x11-wm/awesome/files')
4 files changed, 0 insertions, 74 deletions
diff --git a/x11-wm/awesome/files/awesome-3.4.11-convert-path.patch b/x11-wm/awesome/files/awesome-3.4.11-convert-path.patch deleted file mode 100644 index f06739ce87b6..000000000000 --- a/x11-wm/awesome/files/awesome-3.4.11-convert-path.patch +++ /dev/null @@ -1,18 +0,0 @@ -From: Julian Ospald <hasufell@gentoo.org> -Date: Tue Mar 13 12:55:00 UTC 2012 -Subject: build system - -https://bugs.gentoo.org/show_bug.cgi?id=408025 -fix compilation when dev-libs/libee is installed - ---- awesomeConfig.cmake -+++ awesomeConfig.cmake -@@ -57,7 +57,7 @@ - a_find_program(LUA_EXECUTABLE lua FALSE) - a_find_program(LUADOC_EXECUTABLE luadoc FALSE) - # theme graphics --a_find_program(CONVERT_EXECUTABLE convert TRUE) -+a_find_program(CONVERT_EXECUTABLE bin/convert TRUE) - # doxygen - include(FindDoxygen) - # pkg-config diff --git a/x11-wm/awesome/files/awesome-3.4.2-backtrace.patch b/x11-wm/awesome/files/awesome-3.4.2-backtrace.patch deleted file mode 100644 index 4d481ea130ac..000000000000 --- a/x11-wm/awesome/files/awesome-3.4.2-backtrace.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -Naur awesome-3.4.2.orig/awesomeConfig.cmake awesome-3.4.2/awesomeConfig.cmake ---- awesome-3.4.2.orig/awesomeConfig.cmake 2009-11-27 04:03:25.000000000 +0900 -+++ awesome-3.4.2/awesomeConfig.cmake 2009-11-28 01:17:01.639797168 +0900 -@@ -167,6 +167,14 @@ - # Check for libev - a_find_library(LIB_EV ev) - -+# Check for backtrace -+include(CheckFunctionExists) -+CHECK_FUNCTION_EXISTS(backtrace HAVE_BACKTRACE) -+if(NOT HAVE_BACKTRACE) -+ a_find_library(LIB_EXECINFO execinfo) -+ set(AWESOME_REQUIRED_LIBRARIES ${AWESOME_REQUIRED_LIBRARIES} ${LIB_EXECINFO}) -+endif() -+ - # Error check - if(NOT LUA51_FOUND AND NOT LUA50_FOUND) # This is a workaround to a cmake bug - message(FATAL_ERROR "lua library not found") diff --git a/x11-wm/awesome/files/awesome-3.5.4-imagebox.patch b/x11-wm/awesome/files/awesome-3.5.4-imagebox.patch deleted file mode 100644 index 7d224f24302e..000000000000 --- a/x11-wm/awesome/files/awesome-3.5.4-imagebox.patch +++ /dev/null @@ -1,28 +0,0 @@ -From: Uli Schlachter <psychon@znc.in> -Date: Wed, 2 Apr 2014 20:48:06 +0000 (+0200) -Subject: imagebox: Don't try to scale by infinite (FS#1248) -X-Git-Url: http://git.naquadah.org/?p=awesome.git;a=commitdiff_plain;h=7967d05915c95c8eba7709a46093cc1b6de55572;hp=afa50904fb1c79a24ddda8fb242afe2dcc1de841 - -imagebox: Don't try to scale by infinite (FS#1248) - -When an imagebox was drawn with width or height zero, it tried to calculate the -needed scale factor for making the image fit. Sadly, this would be a division by -zero aka infinite in this case. - -Fix this by just not drawing anything if there is no space available. - -Signed-off-by: Uli Schlachter <psychon@znc.in> ---- - -diff --git a/lib/wibox/widget/imagebox.lua.in b/lib/wibox/widget/imagebox.lua.in -index da51634..5963d0e 100644 ---- a/lib/wibox/widget/imagebox.lua.in -+++ b/lib/wibox/widget/imagebox.lua.in -@@ -18,6 +18,7 @@ local imagebox = { mt = {} } - --- Draw an imagebox with the given cairo context in the given geometry. - function imagebox:draw(wibox, cr, width, height) - if not self._image then return end -+ if width == 0 or height == 0 then return end - - cr:save() - diff --git a/x11-wm/awesome/files/awesome-3.5_rc1-luadoc-fix-patch b/x11-wm/awesome/files/awesome-3.5_rc1-luadoc-fix-patch deleted file mode 100644 index e67eeb04e0f5..000000000000 --- a/x11-wm/awesome/files/awesome-3.5_rc1-luadoc-fix-patch +++ /dev/null @@ -1,10 +0,0 @@ ---- ../awesome-3.5-rc1/lib/naughty.lua.in.orig 2012-11-24 05:51:33.000000000 -0800 -+++ ../awesome-3.5_rc1/lib/naughty.lua.in 2012-11-24 13:17:14.025201211 -0800 -@@ -55,7 +55,6 @@ - -- @field low The preset for notifications with low urgency level - -- @field normal The default preset for every notification without a preset that will also be used for normal urgency level - -- @field critical The preset for notifications with a critical urgency level ---- @class table - naughty.config.presets = { - normal = {}, - low = { |