
On Sun, Apr 05, 2015 at 08:52:49AM +0200, Magnus Therning wrote:
Different things depending on the package; bumping dependencies and/or adjusting to changes in the APIs.
/M
-- Magnus Therning OpenPGP: 0xAB4DFBA4 email: magnus@therning.org jabber: magnus@therning.org twitter: magthe http://therning.org/magnus
Would you go to war without a helmet? Would you drive without the seat belt? Then why do you develop software as if shit doesn’t happen? -- Alberto G ( http://makinggoodsoftware.com/2009/05/12/hdd/ )
_______________________________________________ arch-haskell mailing list arch-haskell@haskell.org http://mail.haskell.org/cgi-bin/mailman/listinfo/arch-haskell
Magnus, A giant thank you from me as well. This is a huge upgrade that goes well beyond your usual excellent work. If it helps at all, Arch has patches for xmonad that will allow 0.11.1 to compile. I built it locally and it seems to be working flawlessly. All that was necessary was to bump the upper bounds of an acceptable utf8-string from '< 0.4' to '<=1': diff -aur xmonad-0.11.1/xmonad.cabal xmonad-0.11.1.new/xmonad.cabal --- xmonad-0.11.1/xmonad.cabal 2015-03-27 18:59:21.000000000 +0100 +++ xmonad-0.11.1.new/xmonad.cabal 2015-03-30 21:23:28.481424344 +0200 @@ -58,7 +58,7 @@ else build-depends: base < 3 build-depends: X11>=1.5 && < 1.7, mtl, unix, - utf8-string >= 0.3 && < 0.4 + utf8-string >= 0.3 && <= 1 if true ghc-options: -funbox-strict-fields -Wall