summaryrefslogtreecommitdiff
path: root/dev-haskell/glib
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-07-26 18:44:07 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-08-03 09:21:54 +0200
commitbaa3f756a4e5487cfbc145fb7b8659515fccda17 (patch)
treeab214863e69d7632dcb45dbb7f4616a115ff322c /dev-haskell/glib
parentbd6dcce12ba112138327c9a91e2755c5ecd44026 (diff)
downloadgentoo-baa3f756a4e5487cfbc145fb7b8659515fccda17.tar.gz
gentoo-baa3f756a4e5487cfbc145fb7b8659515fccda17.tar.xz
dev-haskell/glib: remove unused patches
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-haskell/glib')
-rw-r--r--dev-haskell/glib/files/glib-0.12.3.1-ghc-7.6.patch31
-rw-r--r--dev-haskell/glib/files/glib-0.13.0.7-ghc-7.10.patch11
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-haskell/glib/files/glib-0.12.3.1-ghc-7.6.patch b/dev-haskell/glib/files/glib-0.12.3.1-ghc-7.6.patch
deleted file mode 100644
index 3c9ab53ab3a..00000000000
--- a/dev-haskell/glib/files/glib-0.12.3.1-ghc-7.6.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- glib-0.12.3.1-orig/System/Glib/GObject.chs 2012-05-28 08:18:53.000000000 +1000
-+++ glib-0.12.3.1/System/Glib/GObject.chs 2012-10-11 09:48:16.313701201 +1100
-@@ -127,8 +127,6 @@
-
- {#pointer GDestroyNotify as DestroyNotify#}
-
--foreign import ccall "wrapper" mkDestroyNotifyPtr :: IO () -> IO DestroyNotify
--
- -- | This function wraps any newly created objects that derives from
- -- GInitiallyUnowned also known as objects with
- -- \"floating-references\". The object will be refSink (for glib
---- glib-0.12.3.1-orig/System/Glib/MainLoop.chs 2012-05-28 08:18:53.000000000 +1000
-+++ glib-0.12.3.1/System/Glib/MainLoop.chs 2012-10-11 09:48:04.779383615 +1100
-@@ -71,7 +71,7 @@
-
- {#pointer SourceFunc#}
-
--foreign import ccall "wrapper" mkSourceFunc :: IO {#type gint#} -> IO SourceFunc
-+foreign import ccall "wrapper" mkSourceFunc :: (Ptr () -> IO {#type gint#}) -> IO SourceFunc
-
- type HandlerId = {#type guint#}
-
-@@ -79,7 +79,7 @@
- --
- makeCallback :: IO {#type gint#} -> IO (SourceFunc, DestroyNotify)
- makeCallback fun = do
-- funPtr <- mkSourceFunc fun
-+ funPtr <- mkSourceFunc (const fun)
- return (funPtr, destroyFunPtr)
-
- -- | Sets a function to be called at regular intervals, with the default
diff --git a/dev-haskell/glib/files/glib-0.13.0.7-ghc-7.10.patch b/dev-haskell/glib/files/glib-0.13.0.7-ghc-7.10.patch
deleted file mode 100644
index 75943a09ee0..00000000000
--- a/dev-haskell/glib/files/glib-0.13.0.7-ghc-7.10.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- glib-0.13.0.7-orig/SetupWrapper.hs 2014-12-24 20:57:16.000000000 +1100
-+++ glib-0.13.0.7/SetupWrapper.hs 2015-01-03 17:39:42.464000600 +1100
-@@ -18,7 +18,7 @@
-
- import System.Environment
- import System.Process
--import System.Exit
-+import System.Exit (exitWith, ExitCode(..))
- import System.FilePath
- import System.Directory
- import qualified Control.Exception as Exception