Cabal revisions of netrc-0.2.0.0
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
name: netrc version: 0.2.0.0+x-revision: 1 synopsis: Parser for .netrc files homepage: https://github.com/hvr/netrc bug-reports: https://github.com/hvr/netrc/issues license-file: LICENSE author: Herbert Valerio Riedel maintainer: hvr@gnu.org-copyright: © 2015 Herbert Valerio Riedel+copyright: © 2015 Herbert Valerio Riedel category: Network build-type: Simple cabal-version: >=1.10
revision 2
-name: netrc-version: 0.2.0.0-x-revision: 1-synopsis: Parser for .netrc files-homepage: https://github.com/hvr/netrc-bug-reports: https://github.com/hvr/netrc/issues-license: GPL-3-license-file: LICENSE-author: Herbert Valerio Riedel-maintainer: hvr@gnu.org-copyright: © 2015 Herbert Valerio Riedel-category: Network-build-type: Simple-cabal-version: >=1.10-tested-with: GHC ==7.10.1, GHC ==7.8.4, GHC ==7.6.3, GHC ==7.4.2-description:- This package provides a parser and a printer for so-called @.netrc@ files.- .- See <http://linux.die.net/man/5/netrc netrc(5)> manual page for more- information about @.netrc@ files.--extra-source-files:- changelog.md- src-tests/data/*.netrc- src-tests/data/*.netrc.out--Flag bytestring_has_builder- description: whether bytestring is 0.10.4 or newer- default: True--library- default-language: Haskell2010- other-extensions:- BangPatterns- CPP- DeriveDataTypeable- DeriveGeneric- OverloadedStrings- RecordWildCards-- build-depends:- base >=4.5 && <4.9,- deepseq >=1.3 && <1.5,- bytestring >=0.9.2.1 && <0.11,- parsec >=3.1 && <3.2-- -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4- if impl(ghc < 7.6)- build-depends: ghc-prim == 0.2.*-- if flag(bytestring_has_builder)- build-depends: bytestring >= 0.10.4- else- build-depends:- bytestring <0.10.4,- bytestring-builder >=0.10.4.1.2 && <0.11-- hs-source-dirs: src- exposed-modules: Network.NetRc-- ghc-options: -Wall--test-suite test-netrc- default-language: Haskell2010- type: exitcode-stdio-1.0- hs-source-dirs: src-tests- main-is: test-netrc.hs-- build-depends:- netrc,- base,- bytestring,- tasty == 0.10.*,- tasty-golden == 2.3.*,- tasty-quickcheck == 0.8.*--source-repository head- type: git- location: https://github.com/hvr/netrc.git+name: netrc +version: 0.2.0.0 +x-revision: 2 +synopsis: Parser for .netrc files +homepage: https://github.com/hvr/netrc +bug-reports: https://github.com/hvr/netrc/issues +license: GPL-3 +license-file: LICENSE +author: Herbert Valerio Riedel +maintainer: hvr@gnu.org +copyright: © 2015 Herbert Valerio Riedel +category: Network +build-type: Simple +cabal-version: >=1.10 +tested-with: GHC ==7.10.1, GHC ==7.8.4, GHC ==7.6.3, GHC ==7.4.2 +description: + This package provides a parser and a printer for so-called @.netrc@ files. + . + See <http://linux.die.net/man/5/netrc netrc(5)> manual page for more + information about @.netrc@ files. + +extra-source-files: + changelog.md + src-tests/data/*.netrc + src-tests/data/*.netrc.out + +Flag bytestring_has_builder + description: whether bytestring is 0.10.4 or newer + default: True + +library + default-language: Haskell2010 + other-extensions: + BangPatterns + CPP + DeriveDataTypeable + DeriveGeneric + OverloadedStrings + RecordWildCards + + build-depends: + base >=4.5 && <4.10, + deepseq >=1.3 && <1.5, + bytestring >=0.9.2.1 && <0.11, + parsec >=3.1 && <3.2 + + -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4 + if impl(ghc < 7.6) + build-depends: ghc-prim == 0.2.* + + if flag(bytestring_has_builder) + build-depends: bytestring >= 0.10.4 + else + build-depends: + bytestring <0.10.4, + bytestring-builder >=0.10.4.1.2 && <0.11 + + hs-source-dirs: src + exposed-modules: Network.NetRc + + ghc-options: -Wall + +test-suite test-netrc + default-language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: src-tests + main-is: test-netrc.hs + + build-depends: + netrc, + base, + bytestring, + tasty >= 0.10 && < 0.12, + tasty-golden == 2.3.*, + tasty-quickcheck == 0.8.* + +source-repository head + type: git + location: https://github.com/hvr/netrc.git
revision 3
name: netrc version: 0.2.0.0 -x-revision: 2 +x-revision: 3 synopsis: Parser for .netrc files homepage: https://github.com/hvr/netrc bug-reports: https://github.com/hvr/netrc/issues RecordWildCards build-depends: - base >=4.5 && <4.10, + base >=4.5 && <4.11, deepseq >=1.3 && <1.5, bytestring >=0.9.2.1 && <0.11, parsec >=3.1 && <3.2
revision 4
-name: netrc -version: 0.2.0.0 -x-revision: 3 -synopsis: Parser for .netrc files -homepage: https://github.com/hvr/netrc -bug-reports: https://github.com/hvr/netrc/issues -license: GPL-3 -license-file: LICENSE -author: Herbert Valerio Riedel -maintainer: hvr@gnu.org -copyright: © 2015 Herbert Valerio Riedel -category: Network -build-type: Simple -cabal-version: >=1.10 -tested-with: GHC ==7.10.1, GHC ==7.8.4, GHC ==7.6.3, GHC ==7.4.2 -description: - This package provides a parser and a printer for so-called @.netrc@ files. - . - See <http://linux.die.net/man/5/netrc netrc(5)> manual page for more - information about @.netrc@ files. - -extra-source-files: - changelog.md - src-tests/data/*.netrc - src-tests/data/*.netrc.out - -Flag bytestring_has_builder - description: whether bytestring is 0.10.4 or newer - default: True - -library - default-language: Haskell2010 - other-extensions: - BangPatterns - CPP - DeriveDataTypeable - DeriveGeneric - OverloadedStrings - RecordWildCards - - build-depends: - base >=4.5 && <4.11, - deepseq >=1.3 && <1.5, - bytestring >=0.9.2.1 && <0.11, - parsec >=3.1 && <3.2 - - -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4 - if impl(ghc < 7.6) - build-depends: ghc-prim == 0.2.* - - if flag(bytestring_has_builder) - build-depends: bytestring >= 0.10.4 - else - build-depends: - bytestring <0.10.4, - bytestring-builder >=0.10.4.1.2 && <0.11 - - hs-source-dirs: src - exposed-modules: Network.NetRc - - ghc-options: -Wall - -test-suite test-netrc - default-language: Haskell2010 - type: exitcode-stdio-1.0 - hs-source-dirs: src-tests - main-is: test-netrc.hs - - build-depends: - netrc, - base, - bytestring, - tasty >= 0.10 && < 0.12, - tasty-golden == 2.3.*, - tasty-quickcheck == 0.8.* - -source-repository head - type: git - location: https://github.com/hvr/netrc.git +name: netrc+version: 0.2.0.0+x-revision: 4+synopsis: Parser for .netrc files+homepage: https://github.com/hvr/netrc+bug-reports: https://github.com/hvr/netrc/issues+license: GPL-3+license-file: LICENSE+author: Herbert Valerio Riedel+maintainer: hvr@gnu.org+copyright: © 2015 Herbert Valerio Riedel+category: Network+build-type: Simple+cabal-version: >=1.10+tested-with: GHC ==8.4.1 || ==8.2.2 || ==8.0.2 || ==7.10.3 || ==7.8.4 || ==7.6.3 || ==7.4.2+description:+ This package provides a parser and a printer for so-called @.netrc@ files.+ .+ See <http://linux.die.net/man/5/netrc netrc(5)> manual page for more+ information about @.netrc@ files.++extra-source-files:+ changelog.md+ src-tests/data/*.netrc+ src-tests/data/*.netrc.out++Flag bytestring_has_builder+ description: whether bytestring is 0.10.4 or newer+ default: True++library+ default-language: Haskell2010+ other-extensions:+ BangPatterns+ CPP+ DeriveDataTypeable+ DeriveGeneric+ OverloadedStrings+ RecordWildCards++ build-depends:+ base >=4.5 && <4.12,+ deepseq >=1.3 && <1.5,+ bytestring >=0.9.2.1 && <0.11,+ parsec >=3.1 && <3.2++ -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4+ if impl(ghc < 7.6)+ build-depends: ghc-prim == 0.2.*++ if flag(bytestring_has_builder)+ build-depends: bytestring >= 0.10.4+ else+ build-depends:+ bytestring <0.10.4,+ bytestring-builder >=0.10.4.1.2 && <0.11++ hs-source-dirs: src+ exposed-modules: Network.NetRc++ ghc-options: -Wall++test-suite test-netrc+ default-language: Haskell2010+ type: exitcode-stdio-1.0+ hs-source-dirs: src-tests+ main-is: test-netrc.hs++ build-depends:+ netrc,+ base,+ bytestring,+ tasty >= 0.10 && <1.1,+ tasty-golden == 2.3.*,+ tasty-quickcheck >= 0.8 && <0.11++source-repository head+ type: git+ location: https://github.com/hvr/netrc.git
revision 5
+cabal-version: >=1.10 name: netrc version: 0.2.0.0-x-revision: 4+x-revision: 5 synopsis: Parser for .netrc files homepage: https://github.com/hvr/netrc bug-reports: https://github.com/hvr/netrc/issues copyright: © 2015 Herbert Valerio Riedel category: Network build-type: Simple-cabal-version: >=1.10 tested-with: GHC ==8.4.1 || ==8.2.2 || ==8.0.2 || ==7.10.3 || ==7.8.4 || ==7.6.3 || ==7.4.2 description: This package provides a parser and a printer for so-called @.netrc@ files. RecordWildCards build-depends:- base >=4.5 && <4.12,+ base >=4.5 && <4.13, deepseq >=1.3 && <1.5, bytestring >=0.9.2.1 && <0.11, parsec >=3.1 && <3.2
revision 6
-cabal-version: >=1.10-name: netrc-version: 0.2.0.0-x-revision: 5-synopsis: Parser for .netrc files-homepage: https://github.com/hvr/netrc-bug-reports: https://github.com/hvr/netrc/issues-license: GPL-3-license-file: LICENSE-author: Herbert Valerio Riedel-maintainer: hvr@gnu.org-copyright: © 2015 Herbert Valerio Riedel-category: Network-build-type: Simple-tested-with: GHC ==8.4.1 || ==8.2.2 || ==8.0.2 || ==7.10.3 || ==7.8.4 || ==7.6.3 || ==7.4.2-description:- This package provides a parser and a printer for so-called @.netrc@ files.- .- See <http://linux.die.net/man/5/netrc netrc(5)> manual page for more- information about @.netrc@ files.--extra-source-files:- changelog.md- src-tests/data/*.netrc- src-tests/data/*.netrc.out--Flag bytestring_has_builder- description: whether bytestring is 0.10.4 or newer- default: True--library- default-language: Haskell2010- other-extensions:- BangPatterns- CPP- DeriveDataTypeable- DeriveGeneric- OverloadedStrings- RecordWildCards-- build-depends:- base >=4.5 && <4.13,- deepseq >=1.3 && <1.5,- bytestring >=0.9.2.1 && <0.11,- parsec >=3.1 && <3.2-- -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4- if impl(ghc < 7.6)- build-depends: ghc-prim == 0.2.*-- if flag(bytestring_has_builder)- build-depends: bytestring >= 0.10.4- else- build-depends:- bytestring <0.10.4,- bytestring-builder >=0.10.4.1.2 && <0.11-- hs-source-dirs: src- exposed-modules: Network.NetRc-- ghc-options: -Wall--test-suite test-netrc- default-language: Haskell2010- type: exitcode-stdio-1.0- hs-source-dirs: src-tests- main-is: test-netrc.hs-- build-depends:- netrc,- base,- bytestring,- tasty >= 0.10 && <1.1,- tasty-golden == 2.3.*,- tasty-quickcheck >= 0.8 && <0.11--source-repository head- type: git- location: https://github.com/hvr/netrc.git+cabal-version: >=1.10 +name: netrc +version: 0.2.0.0 +x-revision: 6 +synopsis: Parser for .netrc files +homepage: https://github.com/hvr/netrc +bug-reports: https://github.com/hvr/netrc/issues +license: GPL-3 +license-file: LICENSE +author: Herbert Valerio Riedel +maintainer: hvr@gnu.org +copyright: © 2015 Herbert Valerio Riedel +category: Network +build-type: Simple +tested-with: GHC ==8.4.1 || ==8.2.2 || ==8.0.2 || ==7.10.3 || ==7.8.4 || ==7.6.3 || ==7.4.2 +description: + This package provides a parser and a printer for so-called @.netrc@ files. + . + See <http://linux.die.net/man/5/netrc netrc(5)> manual page for more + information about @.netrc@ files. + +extra-source-files: + changelog.md + src-tests/data/*.netrc + src-tests/data/*.netrc.out + +Flag bytestring_has_builder + description: whether bytestring is 0.10.4 or newer + default: True + +library + default-language: Haskell2010 + other-extensions: + BangPatterns + CPP + DeriveDataTypeable + DeriveGeneric + OverloadedStrings + RecordWildCards + + build-depends: + base >=4.5 && <4.14, + deepseq >=1.3 && <1.5, + bytestring >=0.9.2.1 && <0.11, + parsec >=3.1 && <3.2 + + -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4 + if impl(ghc < 7.6) + build-depends: ghc-prim == 0.2.* + + if flag(bytestring_has_builder) + build-depends: bytestring >= 0.10.4 + else + build-depends: + bytestring <0.10.4, + bytestring-builder >=0.10.4.1.2 && <0.11 + + hs-source-dirs: src + exposed-modules: Network.NetRc + + ghc-options: -Wall + +test-suite test-netrc + default-language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: src-tests + main-is: test-netrc.hs + + build-depends: + netrc, + base, + bytestring, + tasty >= 0.10 && <1.1, + tasty-golden == 2.3.*, + tasty-quickcheck >= 0.8 && <0.11 + +source-repository head + type: git + location: https://github.com/hvr/netrc.git
revision 7
cabal-version: >=1.10 name: netrc version: 0.2.0.0 -x-revision: 6 +x-revision: 7 synopsis: Parser for .netrc files homepage: https://github.com/hvr/netrc bug-reports: https://github.com/hvr/netrc/issues RecordWildCards build-depends: - base >=4.5 && <4.14, + base >=4.5 && <4.15, deepseq >=1.3 && <1.5, bytestring >=0.9.2.1 && <0.11, parsec >=3.1 && <3.2
revision 8
-cabal-version: >=1.10 -name: netrc -version: 0.2.0.0 -x-revision: 7 -synopsis: Parser for .netrc files -homepage: https://github.com/hvr/netrc -bug-reports: https://github.com/hvr/netrc/issues -license: GPL-3 -license-file: LICENSE -author: Herbert Valerio Riedel -maintainer: hvr@gnu.org -copyright: © 2015 Herbert Valerio Riedel -category: Network -build-type: Simple -tested-with: GHC ==8.4.1 || ==8.2.2 || ==8.0.2 || ==7.10.3 || ==7.8.4 || ==7.6.3 || ==7.4.2 -description: - This package provides a parser and a printer for so-called @.netrc@ files. - . - See <http://linux.die.net/man/5/netrc netrc(5)> manual page for more - information about @.netrc@ files. - -extra-source-files: - changelog.md - src-tests/data/*.netrc - src-tests/data/*.netrc.out - -Flag bytestring_has_builder - description: whether bytestring is 0.10.4 or newer - default: True - -library - default-language: Haskell2010 - other-extensions: - BangPatterns - CPP - DeriveDataTypeable - DeriveGeneric - OverloadedStrings - RecordWildCards - - build-depends: - base >=4.5 && <4.15, - deepseq >=1.3 && <1.5, - bytestring >=0.9.2.1 && <0.11, - parsec >=3.1 && <3.2 - - -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4 - if impl(ghc < 7.6) - build-depends: ghc-prim == 0.2.* - - if flag(bytestring_has_builder) - build-depends: bytestring >= 0.10.4 - else - build-depends: - bytestring <0.10.4, - bytestring-builder >=0.10.4.1.2 && <0.11 - - hs-source-dirs: src - exposed-modules: Network.NetRc - - ghc-options: -Wall - -test-suite test-netrc - default-language: Haskell2010 - type: exitcode-stdio-1.0 - hs-source-dirs: src-tests - main-is: test-netrc.hs - - build-depends: - netrc, - base, - bytestring, - tasty >= 0.10 && <1.1, - tasty-golden == 2.3.*, - tasty-quickcheck >= 0.8 && <0.11 - -source-repository head - type: git - location: https://github.com/hvr/netrc.git +cabal-version: >=1.10+name: netrc+version: 0.2.0.0+x-revision: 8+synopsis: Parser for .netrc files+homepage: https://github.com/hvr/netrc+bug-reports: https://github.com/hvr/netrc/issues+license: GPL-3+license-file: LICENSE+author: Herbert Valerio Riedel+maintainer: hvr@gnu.org+copyright: © 2015 Herbert Valerio Riedel+category: Network+build-type: Simple+description:+ This package provides a parser and a printer for so-called @.netrc@ files.+ .+ See <http://linux.die.net/man/5/netrc netrc(5)> manual page for more+ information about @.netrc@ files.+++tested-with:+ GHC == 9.2.1+ GHC == 9.0.2+ GHC == 8.10.7+ GHC == 8.8.4+ GHC == 8.6.5+ 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++extra-source-files:+ changelog.md+ src-tests/data/*.netrc+ src-tests/data/*.netrc.out++Flag bytestring_has_builder+ description: whether bytestring is 0.10.4 or newer+ default: True++library+ default-language: Haskell2010+ other-extensions:+ BangPatterns+ CPP+ DeriveDataTypeable+ DeriveGeneric+ OverloadedStrings+ RecordWildCards++ build-depends:+ base >= 4.5 && < 4.17+ , deepseq >= 1.3 && < 1.5+ , bytestring >= 0.9.2.1 && < 0.12+ , parsec >= 3.1 && < 3.2++ -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4+ if impl(ghc < 7.6)+ build-depends:+ ghc-prim == 0.2.*++ if flag(bytestring_has_builder)+ build-depends:+ bytestring >= 0.10.4+ else+ build-depends:+ bytestring < 0.10.4+ , bytestring-builder >= 0.10.4.1.2 && < 0.11++ hs-source-dirs: src+ exposed-modules: Network.NetRc++ ghc-options: -Wall++test-suite test-netrc+ default-language: Haskell2010+ type: exitcode-stdio-1.0+ hs-source-dirs: src-tests+ main-is: test-netrc.hs++ build-depends:+ netrc+ , base+ , bytestring+ , tasty >= 0.10 && < 1.5+ , tasty-golden == 2.3.*+ , tasty-quickcheck >= 0.8 && < 0.11++source-repository head+ type: git+ location: https://github.com/hvr/netrc.git
revision 9
cabal-version: >=1.10 name: netrc version: 0.2.0.0-x-revision: 8+x-revision: 9 synopsis: Parser for .netrc files homepage: https://github.com/hvr/netrc bug-reports: https://github.com/hvr/netrc/issues tested-with:- GHC == 9.2.1+ GHC == 9.4.1+ GHC == 9.2.4 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 RecordWildCards build-depends:- base >= 4.5 && < 4.17+ base >= 4.5 && < 4.18 , deepseq >= 1.3 && < 1.5 , bytestring >= 0.9.2.1 && < 0.12 , parsec >= 3.1 && < 3.2
revision 10
cabal-version: >=1.10 name: netrc version: 0.2.0.0-x-revision: 9+x-revision: 10 synopsis: Parser for .netrc files-homepage: https://github.com/hvr/netrc-bug-reports: https://github.com/hvr/netrc/issues+homepage: https://github.com/haskell-hvr/netrc+bug-reports: https://github.com/haskell-hvr/netrc/issues license: GPL-3 license-file: LICENSE author: Herbert Valerio Riedel-maintainer: hvr@gnu.org+maintainer: https://github.com/haskell-hvr copyright: © 2015 Herbert Valerio Riedel category: Network build-type: Simple tested-with:- GHC == 9.4.1- GHC == 9.2.4+ GHC == 9.6.1+ GHC == 9.4.5+ GHC == 9.2.7 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 RecordWildCards build-depends:- base >= 4.5 && < 4.18+ base >= 4.5 && < 5 , deepseq >= 1.3 && < 1.5 , bytestring >= 0.9.2.1 && < 0.12 , parsec >= 3.1 && < 3.2 source-repository head type: git- location: https://github.com/hvr/netrc.git+ location: https://github.com/haskell-hvr/netrc.git
revision 11
cabal-version: >=1.10 name: netrc version: 0.2.0.0-x-revision: 10+x-revision: 11 synopsis: Parser for .netrc files homepage: https://github.com/haskell-hvr/netrc bug-reports: https://github.com/haskell-hvr/netrc/issues tested-with:- GHC == 9.6.1+ GHC == 9.6.2 GHC == 9.4.5- GHC == 9.2.7+ GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 build-depends: base >= 4.5 && < 5 , deepseq >= 1.3 && < 1.5- , bytestring >= 0.9.2.1 && < 0.12+ , bytestring >= 0.9.2.1 && < 0.13 , parsec >= 3.1 && < 3.2 -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4 , bytestring , tasty >= 0.10 && < 1.5 , tasty-golden == 2.3.*- , tasty-quickcheck >= 0.8 && < 0.11+ , tasty-quickcheck >= 0.8.1 && < 0.11 source-repository head type: git
revision 12
cabal-version: >=1.10 name: netrc version: 0.2.0.0-x-revision: 11+x-revision: 12 synopsis: Parser for .netrc files homepage: https://github.com/haskell-hvr/netrc bug-reports: https://github.com/haskell-hvr/netrc/issues build-depends: base >= 4.5 && < 5- , deepseq >= 1.3 && < 1.5+ , deepseq >= 1.3 && < 1.6 , bytestring >= 0.9.2.1 && < 0.13 , parsec >= 3.1 && < 3.2
revision 13
cabal-version: >=1.10 name: netrc version: 0.2.0.0-x-revision: 12+x-revision: 13 synopsis: Parser for .netrc files homepage: https://github.com/haskell-hvr/netrc bug-reports: https://github.com/haskell-hvr/netrc/issues tested-with:+ GHC == 9.8.0 GHC == 9.6.2- GHC == 9.4.5+ GHC == 9.4.7 GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.2.2 GHC == 8.0.2 GHC == 7.10.3- GHC == 7.8.4- GHC == 7.6.3- GHC == 7.4.2 extra-source-files: changelog.md netrc , base , bytestring- , tasty >= 0.10 && < 1.5+ , tasty >= 0.10 && < 1.6 , tasty-golden == 2.3.* , tasty-quickcheck >= 0.8.1 && < 0.11