packages feed

Cabal revisions of filepath-1.4.2.1

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
 cabal-version:  >= 1.18 name:           filepath version:        1.4.2.1+x-revision: 1 -- NOTE: Don't forget to update ./changelog.md license:        BSD3 license-file:   LICENSE category:       System build-type:     Simple synopsis:       Library for manipulating FilePaths in a cross platform way.-tested-with:    GHC==8.4.3, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2+tested-with:    GHC==8.6.3, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2 description:     This package provides functionality for manipulating @FilePath@ values, and is shipped with both <https://www.haskell.org/ghc/ GHC> and the <https://www.haskell.org/platform/ Haskell Platform>. It provides three modules:     .         System.FilePath.Windows      build-depends:-        base >= 4 && < 4.13+        base >= 4 && < 4.14      ghc-options: -Wall      build-depends:         filepath,         base,-        QuickCheck >= 2.7 && < 2.12+        QuickCheck >= 2.7 && < 2.13
revision 2
-cabal-version:  >= 1.18-name:           filepath-version:        1.4.2.1-x-revision: 1--- NOTE: Don't forget to update ./changelog.md-license:        BSD3-license-file:   LICENSE-author:         Neil Mitchell <ndmitchell@gmail.com>-maintainer:     Neil Mitchell <ndmitchell@gmail.com>-copyright:      Neil Mitchell 2005-2018-bug-reports:    https://github.com/haskell/filepath/issues-homepage:       https://github.com/haskell/filepath#readme-category:       System-build-type:     Simple-synopsis:       Library for manipulating FilePaths in a cross platform way.-tested-with:    GHC==8.6.3, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2-description:-    This package provides functionality for manipulating @FilePath@ values, and is shipped with both <https://www.haskell.org/ghc/ GHC> and the <https://www.haskell.org/platform/ Haskell Platform>. It provides three modules:-    .-    * "System.FilePath.Posix" manipulates POSIX\/Linux style @FilePath@ values (with @\/@ as the path separator).-    .-    * "System.FilePath.Windows" manipulates Windows style @FilePath@ values (with either @\\@ or @\/@ as the path separator, and deals with drives).-    .-    * "System.FilePath" is an alias for the module appropriate to your platform.-    .-    All three modules provide the same API, and the same documentation (calling out differences in the different variants).--extra-source-files:-    System/FilePath/Internal.hs-extra-doc-files:-    README.md-    changelog.md--source-repository head-    type:     git-    location: https://github.com/haskell/filepath.git--library-    default-language: Haskell2010-    other-extensions:-        CPP-        PatternGuards-    if impl(GHC >= 7.2)-        other-extensions: Safe--    exposed-modules:-        System.FilePath-        System.FilePath.Posix-        System.FilePath.Windows--    build-depends:-        base >= 4 && < 4.14--    ghc-options: -Wall--test-suite filepath-tests-    type: exitcode-stdio-1.0-    default-language: Haskell2010-    main-is: Test.hs-    ghc-options: -main-is Test-    hs-source-dirs: tests-    other-modules:-        TestGen-        TestUtil-    build-depends:-        filepath,-        base,-        QuickCheck >= 2.7 && < 2.13+cabal-version:  >= 1.18
+name:           filepath
+version:        1.4.2.1
+x-revision:     2
+-- NOTE: Don't forget to update ./changelog.md
+license:        BSD3
+license-file:   LICENSE
+author:         Neil Mitchell <ndmitchell@gmail.com>
+maintainer:     Neil Mitchell <ndmitchell@gmail.com>
+copyright:      Neil Mitchell 2005-2020
+bug-reports:    https://github.com/haskell/filepath/issues
+homepage:       https://github.com/haskell/filepath#readme
+category:       System
+build-type:     Simple
+synopsis:       Library for manipulating FilePaths in a cross platform way.
+tested-with:    GHC==8.10.1, GHC==8.8.3, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2
+description:
+    This package provides functionality for manipulating @FilePath@ values, and is shipped with both <https://www.haskell.org/ghc/ GHC> and the <https://www.haskell.org/platform/ Haskell Platform>. It provides three modules:
+    .
+    * "System.FilePath.Posix" manipulates POSIX\/Linux style @FilePath@ values (with @\/@ as the path separator).
+    .
+    * "System.FilePath.Windows" manipulates Windows style @FilePath@ values (with either @\\@ or @\/@ as the path separator, and deals with drives).
+    .
+    * "System.FilePath" is an alias for the module appropriate to your platform.
+    .
+    All three modules provide the same API, and the same documentation (calling out differences in the different variants).
+
+extra-source-files:
+    System/FilePath/Internal.hs
+extra-doc-files:
+    README.md
+    changelog.md
+
+source-repository head
+    type:     git
+    location: https://github.com/haskell/filepath.git
+
+library
+    default-language: Haskell2010
+    other-extensions:
+        CPP
+        PatternGuards
+    if impl(GHC >= 7.2)
+        other-extensions: Safe
+
+    exposed-modules:
+        System.FilePath
+        System.FilePath.Posix
+        System.FilePath.Windows
+
+    build-depends:
+        base >= 4 && < 4.15
+
+    ghc-options: -Wall
+
+test-suite filepath-tests
+    type: exitcode-stdio-1.0
+    default-language: Haskell2010
+    main-is: Test.hs
+    ghc-options: -main-is Test
+    hs-source-dirs: tests
+    other-modules:
+        TestGen
+        TestUtil
+    build-depends:
+        filepath,
+        base,
+        QuickCheck >= 2.7 && < 2.14