[Pkg-haskell-commits] darcs: haskell-lens: New upstream version 3.0.5.
Clint Adams
clint at debian.org
Mon Oct 29 21:52:55 UTC 2012
Mon Oct 29 21:52:09 UTC 2012 Clint Adams <clint at debian.org>
* New upstream version 3.0.5.
Ignore-this: f536a890cefca6739f98130157525fc3
M ./changelog -3 +7
M ./control -1 +25
A ./patches/fix-doctest-path.hs
A ./patches/fix-droppingwhile-test.hs
R ./patches/newer-doctest.diff
M ./patches/series -1 +2
Mon Oct 29 21:52:09 UTC 2012 Clint Adams <clint at debian.org>
* New upstream version 3.0.5.
Ignore-this: f536a890cefca6739f98130157525fc3
diff -rN -u old-haskell-lens//changelog new-haskell-lens//changelog
--- old-haskell-lens//changelog 2012-10-29 21:52:55.647719569 +0000
+++ new-haskell-lens//changelog 2012-10-29 21:52:55.651720663 +0000
@@ -1,10 +1,14 @@
-haskell-lens (2.4.0.2-3) UNRELEASED; urgency=low
+haskell-lens (3.0.5-1) experimental; urgency=low
- * Depend on haskell-devscripts 0.8.13 to ensure this packages is built
+ [ Joachim Breitner ]
+ * Depend on haskell-devscripts 0.8.13 to ensure this package is built
against experimental
* Bump standards version, no change
- -- Joachim Breitner <nomeata at debian.org> Sat, 13 Oct 2012 14:11:08 +0200
+ [ Clint Adams ]
+ * New upstream version.
+
+ -- Clint Adams <clint at debian.org> Mon, 29 Oct 2012 15:50:56 -0400
haskell-lens (2.4.0.2-2) unstable; urgency=low
diff -rN -u old-haskell-lens//control new-haskell-lens//control
--- old-haskell-lens//control 2012-10-29 21:52:55.626346296 +0000
+++ new-haskell-lens//control 2012-10-29 21:52:55.651720663 +0000
@@ -8,27 +8,51 @@
, cdbs
, ghc
, ghc-prof
+ , libghc-comonad-dev (>> 3.0)
+ , libghc-comonad-dev (<< 3.1)
+ , libghc-comonad-prof
+ , libghc-comonad-transformers-dev (>> 3.0)
+ , libghc-comonad-transformers-dev (<< 3.1)
+ , libghc-comonad-transformers-prof
+ , libghc-comonads-fd-dev (>> 3.0)
+ , libghc-comonads-fd-dev (<< 3.1)
+ , libghc-comonads-fd-prof
+ , libghc-hashable-dev (>> 1.1)
+ , libghc-hashable-dev (<< 1.2)
+ , libghc-hashable-prof
, libghc-mtl-dev (>> 2.1.1)
, libghc-mtl-dev (<< 2.2)
, libghc-mtl-prof
, libghc-parallel-dev (>> 3.1.0.1)
, libghc-parallel-dev (<< 3.3)
, libghc-parallel-prof
+ , libghc-semigroups-dev (>> 0.8.4)
+ , libghc-semigroups-dev (<< 0.9)
+ , libghc-semigroups-prof
, ghc-ghci
- , libghc-text-dev (>> 0.11.1.5)
+ , libghc-text-dev (>> 0.11)
, libghc-text-dev (<< 0.12)
, libghc-text-prof
, libghc-transformers-dev (>> 0.3)
, libghc-transformers-dev (<< 0.4)
, libghc-transformers-prof
+ , libghc-unordered-containers-dev (>> 0.2)
+ , libghc-unordered-containers-dev (<< 0.3)
+ , libghc-unordered-containers-prof
, libghc-quickcheck2-dev
, libghc-doctest-dev (>> 0.9.1)
, libghc-doctest-dev (<< 0.10.1)
Build-Depends-Indep: ghc-doc
+ , libghc-comonad-doc
+ , libghc-comonad-transformers-doc
+ , libghc-comonads-fd-doc
+ , libghc-hashable-doc
, libghc-mtl-doc
, libghc-parallel-doc
+ , libghc-semigroups-doc
, libghc-text-doc
, libghc-transformers-doc
+ , libghc-unordered-containers-doc
Standards-Version: 3.9.4
Homepage: http://github.com/ekmett/lens/
diff -rN -u old-haskell-lens//patches/fix-doctest-path.hs new-haskell-lens//patches/fix-doctest-path.hs
--- old-haskell-lens//patches/fix-doctest-path.hs 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-lens//patches/fix-doctest-path.hs 2012-10-29 21:52:55.655721346 +0000
@@ -0,0 +1,16 @@
+Index: lens-3.0.5/tests/doctests.hs
+===================================================================
+--- lens-3.0.5.orig/tests/doctests.hs 2012-10-29 20:42:42.226273057 +0000
++++ lens-3.0.5/tests/doctests.hs 2012-10-29 20:43:29.318137661 +0000
+@@ -10,9 +10,9 @@
+ main :: IO ()
+ main = getSources >>= \sources -> doctest $
+ "-isrc"
+- : "-idist/build/autogen"
++ : "-idist-ghc/build/autogen"
+ : "-optP-include"
+- : "-optPdist/build/autogen/cabal_macros.h"
++ : "-optPdist-ghc/build/autogen/cabal_macros.h"
+ : sources
+
+ getSources :: IO [FilePath]
diff -rN -u old-haskell-lens//patches/fix-droppingwhile-test.hs new-haskell-lens//patches/fix-droppingwhile-test.hs
--- old-haskell-lens//patches/fix-droppingwhile-test.hs 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-lens//patches/fix-droppingwhile-test.hs 2012-10-29 21:52:55.655721346 +0000
@@ -0,0 +1,12 @@
+Index: lens-3.0.5/src/Control/Lens/Fold.hs
+===================================================================
+--- lens-3.0.5.orig/src/Control/Lens/Fold.hs 2012-10-26 08:11:27.000000000 +0000
++++ lens-3.0.5/src/Control/Lens/Fold.hs 2012-10-29 20:50:22.381110350 +0000
+@@ -203,6 +203,7 @@
+ -- [4,5,6]
+ --
+ -- >>> toListOf (droppingWhile (<=3) folded) [1,6,1]
++-- [6]
+
+ droppingWhile :: (Gettable f, Applicative f)
+ => (c -> Bool)
diff -rN -u old-haskell-lens//patches/newer-doctest.diff new-haskell-lens//patches/newer-doctest.diff
--- old-haskell-lens//patches/newer-doctest.diff 2012-10-29 21:52:55.568093798 +0000
+++ new-haskell-lens//patches/newer-doctest.diff 1970-01-01 00:00:00.000000000 +0000
@@ -1,22 +0,0 @@
---- a/lens.cabal
-+++ b/lens.cabal
-@@ -186,7 +186,7 @@
- build-depends:
- base == 4.*,
- directory >= 1.0 && < 1.2,
-- doctest >= 0.8 && <= 0.9,
-+ doctest >= 0.9.1 && <= 0.10,
- filepath >= 1.3 && < 1.4
- ghc-options: -Wall -Werror -threaded
- hs-source-dirs: tests
---- a/tests/doctests.hs
-+++ b/tests/doctests.hs
-@@ -12,7 +12,7 @@
- "-isrc"
- : "-idist/build/autogen"
- : "-optP-include"
-- : "-optPdist/build/autogen/cabal_macros.h"
-+ : "-optPdist-ghc/build/autogen/cabal_macros.h"
- : sources
-
- getSources :: IO [FilePath]
diff -rN -u old-haskell-lens//patches/series new-haskell-lens//patches/series
--- old-haskell-lens//patches/series 2012-10-29 21:52:55.568093798 +0000
+++ new-haskell-lens//patches/series 2012-10-29 21:52:55.655721346 +0000
@@ -1 +1,2 @@
-newer-doctest.diff
+fix-doctest-path.hs
+fix-droppingwhile-test.hs
More information about the Pkg-haskell-commits
mailing list