[Git][haskell-team/package-plan][master] patches for path and genvalidity-property
Clint Adams
gitlab at salsa.debian.org
Sat Apr 21 18:50:27 BST 2018
Clint Adams pushed to branch master at Debian Haskell Group / package-plan
Commits:
9cc40ff6 by Clint Adams at 2018-04-21T13:50:17-04:00
patches for path and genvalidity-property
- - - - -
6 changed files:
- + additional-cabals/path-0.6.1.cabal
- packages.txt
- + patches/genvalidity-property/0.1.0.0/newer-deps
- + patches/genvalidity-property/0.1.0.0/series
- + patches/path/0.6.1/newer-deps
- + patches/path/0.6.1/series
Changes:
=====================================
additional-cabals/path-0.6.1.cabal
=====================================
--- /dev/null
+++ b/additional-cabals/path-0.6.1.cabal
@@ -0,0 +1,65 @@
+name: path
+version: 0.6.1
+synopsis: Support for well-typed paths
+description: Support for well-typed paths.
+license: BSD3
+license-file: LICENSE
+author: Chris Done <chrisdone at fpcomplete.com>
+maintainer: Chris Done <chrisdone at fpcomplete.com>
+copyright: 2015–2017 FP Complete
+category: System, Filesystem
+build-type: Simple
+cabal-version: >=1.10
+tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.1
+extra-source-files: README.md, CHANGELOG
+
+library
+ hs-source-dirs: src
+ ghc-options: -Wall -O2
+ exposed-modules: Path, Path.Internal
+ build-depends: aeson
+ , base >= 4.7 && < 5
+ , deepseq
+ , exceptions >= 0.4 && < 0.9
+ , filepath < 1.2.0.1 || >= 1.3
+ , hashable >= 1.2 && < 1.3
+ , template-haskell
+ default-language: Haskell2010
+
+test-suite test
+ type: exitcode-stdio-1.0
+ main-is: Main.hs
+ other-modules: Posix
+ , Windows
+ hs-source-dirs: test
+ build-depends: aeson
+ , base >= 4.7 && < 5
+ , bytestring
+ , filepath < 1.2.0.1 || >= 1.3
+ , hspec >= 2.0 && < 3
+ , mtl >= 2.0 && < 3
+ , path
+ default-language: Haskell2010
+
+test-suite validity-test
+ type: exitcode-stdio-1.0
+ main-is: ValidityTest.hs
+ other-modules: Path.Gen
+ hs-source-dirs: test
+ build-depends: QuickCheck
+ , aeson
+ , base >= 4.7 && < 5
+ , bytestring
+ , filepath < 1.2.0.1 || >= 1.3
+ , genvalidity >= 0.3 && < 0.4
+ , genvalidity-property >= 0.0 && < 0.1
+ , hspec >= 2.0 && < 3
+ , mtl >= 2.0 && < 3
+ , path
+ , validity >= 0.3.1.1 && < 0.4
+ default-language: Haskell2010
+ ghc-options: -threaded -rtsopts -with-rtsopts=-N
+
+source-repository head
+ type: git
+ location: https://github.com/commercialhaskell/path.git
=====================================
packages.txt
=====================================
--- a/packages.txt
+++ b/packages.txt
@@ -289,6 +289,7 @@ generics-sop 0.3.2.0
generic-trie 0.3.0.2 ignore # BROKEN: LTS 11: newer base
geniplate-mirror 0.7.6
genvalidity 0.4.0.4
+genvalidity-property 0.1.0.0
getopt-generics 0.13.0.2
ghc-events 0.7.2
ghc-mod 5.8.0.0 binary ignore # BROKEN: LTS 11: newer base
@@ -618,7 +619,7 @@ parsec 3.1.13.0 notest
parser-combinators 0.4.0
parsers 0.12.8
patat 0.6.1.0 binary ignore # BROKEN: LTS 11: newer ansi-terminal
-path 0.6.1 notest # missing deps
+path 0.6.1
path-io 1.3.3
path-pieces 0.2.1
patience 0.1.1
=====================================
patches/genvalidity-property/0.1.0.0/newer-deps
=====================================
--- /dev/null
+++ b/patches/genvalidity-property/0.1.0.0/newer-deps
@@ -0,0 +1,11 @@
+--- a/genvalidity-property.cabal
++++ b/genvalidity-property.cabal
+@@ -54,7 +54,7 @@
+ main-is: DocTest.hs
+ build-depends:
+ base -any,
+- doctest >=0.9 && <0.12,
++ doctest >=0.9 && <0.14,
+ genvalidity-property -any,
+ directory >=1.2 && <1.4,
+ filepath >=1.3 && <1.5
=====================================
patches/genvalidity-property/0.1.0.0/series
=====================================
--- /dev/null
+++ b/patches/genvalidity-property/0.1.0.0/series
@@ -0,0 +1 @@
+newer-deps
=====================================
patches/path/0.6.1/newer-deps
=====================================
--- /dev/null
+++ b/patches/path/0.6.1/newer-deps
@@ -0,0 +1,27 @@
+--- a/path.cabal
++++ b/path.cabal
+@@ -20,7 +20,7 @@
+ build-depends: aeson
+ , base >= 4.7 && < 5
+ , deepseq
+- , exceptions >= 0.4 && < 0.9
++ , exceptions >= 0.4 && < 0.11
+ , filepath < 1.2.0.1 || >= 1.3
+ , hashable >= 1.2 && < 1.3
+ , template-haskell
+@@ -51,12 +51,12 @@
+ , base >= 4.7 && < 5
+ , bytestring
+ , filepath < 1.2.0.1 || >= 1.3
+- , genvalidity >= 0.3 && < 0.4
+- , genvalidity-property >= 0.0 && < 0.1
++ , genvalidity >= 0.3 && < 0.5
++ , genvalidity-property >= 0.0 && < 0.2
+ , hspec >= 2.0 && < 3
+ , mtl >= 2.0 && < 3
+ , path
+- , validity >= 0.3.1.1 && < 0.4
++ , validity >= 0.3.1.1 && < 0.5
+ default-language: Haskell2010
+ ghc-options: -threaded -rtsopts -with-rtsopts=-N
+
=====================================
patches/path/0.6.1/series
=====================================
--- /dev/null
+++ b/patches/path/0.6.1/series
@@ -0,0 +1 @@
+newer-deps
View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/commit/9cc40ff66775311841ee78b487c3f9f4869568ec
---
View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/commit/9cc40ff66775311841ee78b487c3f9f4869568ec
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20180421/72f6b722/attachment-0001.html>
More information about the Pkg-haskell-commits
mailing list