diff -Nru haskell-operational-0.2.3.4/CHANGELOG.md haskell-operational-0.2.3.5/CHANGELOG.md --- haskell-operational-0.2.3.4/CHANGELOG.md 2016-10-18 21:01:19.000000000 +0000 +++ haskell-operational-0.2.3.5/CHANGELOG.md 2016-11-21 16:57:18.000000000 +0000 @@ -1,6 +1,15 @@ Changelog for the `operational` package --------------------------------------- +**0.2.3.5** -- Maintenance release. + +* Update references to other packages. +* Modernize `.cabal` file. + +**0.2.3.4** -- Maintenance release. + +* Restrict dependencies to ensure GHC >= 7.2. + **0.2.3.3** -- Maintenance release. * Minor fixes to documentation and examples diff -Nru haskell-operational-0.2.3.4/debian/changelog haskell-operational-0.2.3.5/debian/changelog --- haskell-operational-0.2.3.4/debian/changelog 2017-01-24 11:11:33.000000000 +0000 +++ haskell-operational-0.2.3.5/debian/changelog 2017-06-17 19:13:27.000000000 +0000 @@ -1,8 +1,8 @@ -haskell-operational (0.2.3.4-2build1) zesty; urgency=medium +haskell-operational (0.2.3.5-1) unstable; urgency=medium - * Rebuild against new GHC ABI. + * New upstream release - -- Gianfranco Costamagna Tue, 24 Jan 2017 12:11:33 +0100 + -- Clint Adams Sat, 17 Jun 2017 15:13:27 -0400 haskell-operational (0.2.3.4-2) unstable; urgency=medium diff -Nru haskell-operational-0.2.3.4/debian/control haskell-operational-0.2.3.5/debian/control --- haskell-operational-0.2.3.4/debian/control 2016-10-27 22:35:18.000000000 +0000 +++ haskell-operational-0.2.3.5/debian/control 2017-06-17 19:13:27.000000000 +0000 @@ -12,7 +12,11 @@ libghc-mtl-dev (<< 2.3.0), libghc-mtl-dev (>= 1.1), libghc-mtl-prof, -Build-Depends-Indep: ghc-doc, libghc-mtl-doc + libghc-mtl-dev, + libghc-random-dev (>= 1), + libghc-random-dev (<< 2), +Build-Depends-Indep: ghc-doc, + libghc-mtl-doc, Standards-Version: 3.9.8 Homepage: http://wiki.haskell.org/Operational Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/tree/p/haskell-operational diff -Nru haskell-operational-0.2.3.4/operational.cabal haskell-operational-0.2.3.5/operational.cabal --- haskell-operational-0.2.3.4/operational.cabal 2016-10-18 21:01:19.000000000 +0000 +++ haskell-operational-0.2.3.5/operational.cabal 2016-11-21 16:57:18.000000000 +0000 @@ -1,5 +1,5 @@ Name: operational -Version: 0.2.3.4 +Version: 0.2.3.5 Synopsis: Implementation of difficult monads made easy with operational semantics. Description: @@ -9,7 +9,13 @@ . See the project homepage for a more detailed introduction and features. . - Related packages: MonadPrompt . + Related packages: + . + * MonadPrompt — + . + * free — + . + * free-operational — Category: Control, Monads License: BSD3 @@ -21,7 +27,7 @@ Stability: Provisional build-type: Simple -cabal-version: >= 1.6 +cabal-version: >= 1.10 extra-source-files: CHANGELOG.md doc/*.md doc/examples/*.hs @@ -31,27 +37,37 @@ flag buildExamples description: Build example executables. default: True - + manual: True + source-repository head type: git location: git://github.com/HeinrichApfelmus/operational.git Library + default-language: Haskell2010 + other-extensions: ExistentialQuantification + FlexibleInstances + GADTSyntax + MultiParamTypeClasses + Rank2Types + ScopedTypeVariables + UndecidableInstances + hs-source-dirs: src - build-depends: base >= 4.4 && < 5 , mtl >= 1.1 && < 2.3.0 - ghc-options: -Wall - extensions: GADTs, Rank2Types, ScopedTypeVariables, - UndecidableInstances, GADTSyntax, - MultiParamTypeClasses, FlexibleInstances exposed-modules: Control.Monad.Operational + build-depends: base >= 4.4 && < 5, mtl >= 1.1 && < 2.3.0 + ghc-options: -Wall + Executable operational-TicTacToe - if flag(buildExamples) - build-depends: random == 1.* - cpp-options: -DbuildExamples - else + if !flag(buildExamples) buildable: False - main-is: doc/examples/TicTacToe.hs - hs-source-dirs: src, . - other-modules: Control.Monad.Operational + default-language: Haskell2010 + other-extensions: GADTs + Rank2Types + + hs-source-dirs: doc/examples + main-is: TicTacToe.hs + + build-depends: operational, base, mtl, random == 1.*