[Pkg-haskell-commits] darcs: haskell-representable-functors: New upstream version 3.2.0.2.
Clint Adams
clint at debian.org
Sat Nov 30 18:04:31 UTC 2013
Sat Nov 30 18:04:11 UTC 2013 Clint Adams <clint at debian.org>
* New upstream version 3.2.0.2.
M ./changelog -2 +6
M ./control -14 +13
A ./patches/
A ./patches/cohoist-fix.diff
A ./patches/series
A ./patches/tweak-build-deps.diff
Sat Nov 30 18:04:11 UTC 2013 Clint Adams <clint at debian.org>
* New upstream version 3.2.0.2.
diff -rN -u old-haskell-representable-functors/changelog new-haskell-representable-functors/changelog
--- old-haskell-representable-functors/changelog 2013-11-30 18:04:31.771107896 +0000
+++ new-haskell-representable-functors/changelog 2013-11-30 18:04:31.775107896 +0000
@@ -1,8 +1,12 @@
-haskell-representable-functors (3.0.1-3) UNRELEASED; urgency=low
+haskell-representable-functors (3.2.0.2-1) unstable; urgency=medium
+ [ Joachim Breitner ]
* Adjust watch file to new hackage layout
- -- Joachim Breitner <nomeata at debian.org> Sat, 05 Oct 2013 18:21:32 +0200
+ [ Clint Adams ]
+ * New upstream version.
+
+ -- Clint Adams <clint at debian.org> Sat, 30 Nov 2013 12:46:26 -0500
haskell-representable-functors (3.0.1-2) unstable; urgency=low
diff -rN -u old-haskell-representable-functors/control new-haskell-representable-functors/control
--- old-haskell-representable-functors/control 2013-11-30 18:04:31.771107896 +0000
+++ new-haskell-representable-functors/control 2013-11-30 18:04:31.775107896 +0000
@@ -3,36 +3,37 @@
Priority: extra
Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
Uploaders: Iulian Udrea <iulian at linux.com>
-DM-Upload-Allowed: yes
Build-Depends: debhelper (>= 9),
cdbs,
haskell-devscripts (>= 0.8.15),
ghc,
ghc-prof,
- libghc-comonad-dev (>= 3.0),
+ libghc-comonad-dev (>= 4.0),
libghc-comonad-prof,
- libghc-comonad-transformers-dev (>= 3.0),
- libghc-comonad-transformers-prof,
- libghc-comonads-fd-dev (>= 3.0),
- libghc-comonads-fd-prof,
- libghc-contravariant-dev (>= 0.2.0.1),
+ libghc-contravariant-dev (>= 0.4.1),
+ libghc-contravariant-dev (<< 1),
libghc-contravariant-prof,
libghc-distributive-dev (>= 0.2.2),
+ libghc-distributive-dev (<< 1),
libghc-distributive-prof,
libghc-free-dev (>= 3.0),
+ libghc-free-dev (<< 5),
libghc-free-prof,
libghc-keys-dev (>= 3.0),
+ libghc-keys-dev (<< 4),
libghc-keys-prof,
libghc-mtl-dev (>= 2.0.1.0),
libghc-mtl-dev (<< 2.2),
libghc-mtl-prof,
- libghc-semigroups-dev (>= 0.8.3.1),
- libghc-semigroups-prof,
libghc-semigroupoids-dev (>= 3.0),
+ libghc-semigroupoids-dev (<< 5),
libghc-semigroupoids-prof,
+ libghc-semigroups-dev (>= 0.8.3.1),
+ libghc-semigroups-dev (<< 1),
+ libghc-semigroups-prof,
libghc-transformers-dev (>= 0.2),
libghc-transformers-dev (<< 0.4),
- libghc-transformers-prof,
+ libghc-transformers-prof
Build-Depends-Indep: ghc-doc,
libghc-comonad-doc,
libghc-contravariant-doc,
@@ -42,10 +43,8 @@
libghc-semigroupoids-doc,
libghc-transformers-doc,
libghc-keys-doc,
- libghc-free-doc,
- libghc-comonad-transformers-doc,
- libghc-comonads-fd-doc,
-Standards-Version: 3.9.4
+ libghc-free-doc
+Standards-Version: 3.9.5
Homepage: http://hackage.haskell.org/package/representable-functors
Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-representable-functors
Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-representable-functors
diff -rN -u old-haskell-representable-functors/patches/cohoist-fix.diff new-haskell-representable-functors/patches/cohoist-fix.diff
--- old-haskell-representable-functors/patches/cohoist-fix.diff 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-representable-functors/patches/cohoist-fix.diff 2013-11-30 18:04:31.775107896 +0000
@@ -0,0 +1,13 @@
+Index: representable-functors-3.2.0.2/src/Control/Comonad/Representable/Store.hs
+===================================================================
+--- representable-functors-3.2.0.2.orig/src/Control/Comonad/Representable/Store.hs 2013-10-13 11:01:56.000000000 -0400
++++ representable-functors-3.2.0.2/src/Control/Comonad/Representable/Store.hs 2013-11-30 13:00:55.910979199 -0500
+@@ -109,7 +109,7 @@
+ lower (StoreT w s) = fmap (`index` s) w
+
+ instance ComonadHoist (StoreT g) where
+- cohoist (StoreT w s) = StoreT (Identity (extract w)) s
++ cohoist l (StoreT w s) = StoreT (l w) s
+
+ instance (ComonadTraced m w, Representable g) => ComonadTraced m (StoreT g w) where
+ trace m = trace m . lower
diff -rN -u old-haskell-representable-functors/patches/series new-haskell-representable-functors/patches/series
--- old-haskell-representable-functors/patches/series 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-representable-functors/patches/series 2013-11-30 18:04:31.775107896 +0000
@@ -0,0 +1,2 @@
+tweak-build-deps.diff
+cohoist-fix.diff
diff -rN -u old-haskell-representable-functors/patches/tweak-build-deps.diff new-haskell-representable-functors/patches/tweak-build-deps.diff
--- old-haskell-representable-functors/patches/tweak-build-deps.diff 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-representable-functors/patches/tweak-build-deps.diff 2013-11-30 18:04:31.775107896 +0000
@@ -0,0 +1,25 @@
+Index: representable-functors-3.2.0.2/representable-functors.cabal
+===================================================================
+--- representable-functors-3.2.0.2.orig/representable-functors.cabal 2013-10-13 11:01:56.000000000 -0400
++++ representable-functors-3.2.0.2/representable-functors.cabal 2013-11-30 12:56:11.452049007 -0500
+@@ -42,17 +42,15 @@
+ build-depends:
+ array >= 0.3.0.2 && < 0.6,
+ base >= 4 && < 5,
+- comonad >= 3 && < 4,
+- comonad-transformers >= 3 && < 4,
+- comonads-fd >= 3 && < 4,
++ comonad >= 4 && < 5,
+ containers >= 0.3 && < 0.6,
+ contravariant >= 0.4.1 && < 1,
+ distributive >= 0.2.2 && < 1,
+- free >= 3 && < 4,
++ free >= 3 && < 5,
+ keys >= 3 && < 4,
+ mtl >= 2.0.1.0 && < 2.2,
+ semigroups >= 0.8.3.1 && < 1,
+- semigroupoids >= 3 && < 4,
++ semigroupoids >= 3 && < 5,
+ transformers >= 0.2 && < 0.4
+
+ exposed-modules:
More information about the Pkg-haskell-commits
mailing list