[Pkg-haskell-commits] darcs: haskell-gloss: Patch to allow older base
Joachim Breitner
mail at joachim-breitner.de
Tue May 5 21:39:04 UTC 2015
Tue May 5 21:38:56 UTC 2015 Joachim Breitner <mail at joachim-breitner.de>
* Patch to allow older base
M ./changelog +1
A ./patches/
A ./patches/extend-base-dependency
A ./patches/series
Tue May 5 21:38:56 UTC 2015 Joachim Breitner <mail at joachim-breitner.de>
* Patch to allow older base
diff -rN -u old-haskell-gloss/changelog new-haskell-gloss/changelog
--- old-haskell-gloss/changelog 2015-05-05 21:39:04.248837382 +0000
+++ new-haskell-gloss/changelog 2015-05-05 21:39:04.248837382 +0000
@@ -1,6 +1,7 @@
haskell-gloss (1.9.3.1-1) UNRELEASED; urgency=medium
* New upstream release
+ * Patch to allow older base
-- Joachim Breitner <nomeata at debian.org> Tue, 05 May 2015 23:14:54 +0200
diff -rN -u old-haskell-gloss/patches/extend-base-dependency new-haskell-gloss/patches/extend-base-dependency
--- old-haskell-gloss/patches/extend-base-dependency 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-gloss/patches/extend-base-dependency 2015-05-05 21:39:04.252837382 +0000
@@ -0,0 +1,64 @@
+Index: gloss-1.9.3.1/gloss.cabal
+===================================================================
+--- gloss-1.9.3.1.orig/gloss.cabal 2015-05-05 23:15:59.758337339 +0200
++++ gloss-1.9.3.1/gloss.cabal 2015-05-05 23:16:48.291327847 +0200
+@@ -37,8 +37,8 @@
+
+ Library
+ Build-Depends:
+- base == 4.8.*,
+- ghc-prim == 0.4.*,
++ base,
++ ghc-prim,
+ containers == 0.5.*,
+ bytestring == 0.10.*,
+ OpenGL == 2.12.*,
+Index: gloss-1.9.3.1/Graphics/Gloss/Internals/Interface/Event.hs
+===================================================================
+--- gloss-1.9.3.1.orig/Graphics/Gloss/Internals/Interface/Event.hs 2015-05-05 23:15:59.746337087 +0200
++++ gloss-1.9.3.1/Graphics/Gloss/Internals/Interface/Event.hs 2015-05-05 23:35:31.547347728 +0200
+@@ -6,6 +6,7 @@
+ where
+ import Data.IORef
+ import Graphics.Gloss.Internals.Interface.Backend
++import Data.Functor
+
+ -- | Possible input events.
+ data Event
+Index: gloss-1.9.3.1/Graphics/Gloss/Internals/Interface/Display.hs
+===================================================================
+--- gloss-1.9.3.1.orig/Graphics/Gloss/Internals/Interface/Display.hs 2015-05-05 23:15:59.746337087 +0200
++++ gloss-1.9.3.1/Graphics/Gloss/Internals/Interface/Display.hs 2015-05-05 23:35:54.879883667 +0200
+@@ -16,6 +16,7 @@
+ import qualified Graphics.Gloss.Internals.Interface.Callback as Callback
+ import Data.IORef
+ import System.Mem
++import Data.Functor
+
+
+ displayWithBackend
+Index: gloss-1.9.3.1/Graphics/Gloss/Internals/Interface/Animate.hs
+===================================================================
+--- gloss-1.9.3.1.orig/Graphics/Gloss/Internals/Interface/Animate.hs 2015-05-05 23:15:59.746337087 +0200
++++ gloss-1.9.3.1/Graphics/Gloss/Internals/Interface/Animate.hs 2015-05-05 23:36:13.856314870 +0200
+@@ -20,7 +20,7 @@
+ import Control.Monad
+ import System.Mem
+ import GHC.Float (double2Float)
+-
++import Data.Functor
+
+ animateWithBackendIO
+ :: Backend a
+Index: gloss-1.9.3.1/Graphics/Gloss/Internals/Interface/Simulate.hs
+===================================================================
+--- gloss-1.9.3.1.orig/Graphics/Gloss/Internals/Interface/Simulate.hs 2015-05-05 23:15:59.746337087 +0200
++++ gloss-1.9.3.1/Graphics/Gloss/Internals/Interface/Simulate.hs 2015-05-05 23:36:37.416844644 +0200
+@@ -22,6 +22,7 @@
+ import qualified Graphics.Gloss.Internals.Interface.Animate.State as AN
+ import Data.IORef
+ import System.Mem
++import Data.Functor
+
+
+ simulateWithBackendIO
diff -rN -u old-haskell-gloss/patches/series new-haskell-gloss/patches/series
--- old-haskell-gloss/patches/series 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-gloss/patches/series 2015-05-05 21:39:04.252837382 +0000
@@ -0,0 +1 @@
+extend-base-dependency
More information about the Pkg-haskell-commits
mailing list