packages feed

Cabal revisions of bm-0.2.0.0

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

revision 1
-name:           bm-version:        0.2.0.0-category:       Utils-synopsis:       open bookmarks and queries from the command line-description:-  This package provides a command-line utility that opens bookmarks and-  queries.  Please see the README on GitHub at-  <https://github.com/ExtremaIS/bm-haskell#readme>.--homepage:       https://github.com/ExtremaIS/bm-haskell#readme-bug-reports:    https://github.com/ExtremaIS/bm-haskell/issues-author:         Travis Cardwell <travis.cardwell@extrema.is>-maintainer:     Travis Cardwell <travis.cardwell@extrema.is>-copyright:      Copyright (c) 2021-2023 Travis Cardwell-license:        MIT-license-file:   LICENSE--cabal-version:  1.24-build-type:     Simple-tested-with:-  GHC ==8.6.5-   || ==8.8.4-   || ==8.10.7-   || ==9.0.2-   || ==9.2.8-   || ==9.4.5-   || ==9.6.2--extra-source-files:-  CHANGELOG.md-  README.md--source-repository head-  type: git-  location: https://github.com/ExtremaIS/bm-haskell.git---- This flag is referenced in the Stack build-constraints.yaml configuration.-flag optparse-applicative_ge_0_18-  description: Use optparse-applicative 0.18 or newer-  default: False-  manual: False--library-  hs-source-dirs: src-  exposed-modules:-      BM-  other-modules:-      Paths_bm-  build-depends:-      aeson >=1.4.6 && < 2.2-    , base >=4.12 && <4.19-    , dlist >=0.8.0.4 && <1.1-    , network-uri >=2.6.2 && <2.7-    , scientific >=0.3.6.2 && <0.4-    , text >=1.2.3.1 && <2.1-    , transformers >=0.5.6.2 && <0.7-    , vector >=0.12.0.1 && <0.14-  default-language: Haskell2010-  default-extensions:-      OverloadedStrings-  ghc-options: -Wall--executable bm-  hs-source-dirs: app-  main-is: Main.hs-  other-modules:-      LibOA-  build-depends:-      base-    , bm-    , directory >=1.3.3 && <1.4-    , filepath >=1.4.2.1 && <1.5-    , typed-process >=0.2.6 && <0.3-    , yaml >=0.11.2 && <0.12-  if flag(optparse-applicative_ge_0_18)-    build-depends:-        optparse-applicative >=0.18 && <0.19-      , prettyprinter >=1.7.1 && <1.8-  else-    build-depends:-        ansi-wl-pprint >=0.6.8 && <1.1-      , optparse-applicative >=0.14 && <0.18-  default-language: Haskell2010-  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N--test-suite bm-test-  type: exitcode-stdio-1.0-  hs-source-dirs: test-  main-is: Spec.hs-  other-modules:-      BM.Test-  build-depends:-      base-    , bm-    , tasty >=1.2 && <1.5-    , tasty-hunit >=0.9 && <0.11-    , vector-  default-language: Haskell2010-  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N+name:           bm
+version:        0.2.0.0
+x-revision: 1
+category:       Utils
+synopsis:       open bookmarks and queries from the command line
+description:
+  This package provides a command-line utility that opens bookmarks and
+  queries.  Please see the README on GitHub at
+  <https://github.com/ExtremaIS/bm-haskell#readme>.
+
+homepage:       https://github.com/ExtremaIS/bm-haskell#readme
+bug-reports:    https://github.com/ExtremaIS/bm-haskell/issues
+author:         Travis Cardwell <travis.cardwell@extrema.is>
+maintainer:     Travis Cardwell <travis.cardwell@extrema.is>
+copyright:      Copyright (c) 2021-2023 Travis Cardwell
+license:        MIT
+license-file:   LICENSE
+
+cabal-version:  1.24
+build-type:     Simple
+tested-with:
+  GHC ==8.6.5
+   || ==8.8.4
+   || ==8.10.7
+   || ==9.0.2
+   || ==9.2.8
+   || ==9.4.5
+   || ==9.6.2
+
+extra-source-files:
+  CHANGELOG.md
+  README.md
+
+source-repository head
+  type: git
+  location: https://github.com/ExtremaIS/bm-haskell.git
+
+-- This flag is referenced in the Stack build-constraints.yaml configuration.
+flag optparse-applicative_ge_0_18
+  description: Use optparse-applicative 0.18 or newer
+  default: False
+  manual: False
+
+library
+  hs-source-dirs: src
+  exposed-modules:
+      BM
+  other-modules:
+      Paths_bm
+  build-depends:
+      aeson >=1.4.6 && < 2.3
+    , base >=4.12 && <4.19
+    , dlist >=0.8.0.4 && <1.1
+    , network-uri >=2.6.2 && <2.7
+    , scientific >=0.3.6.2 && <0.4
+    , text >=1.2.3.1 && <2.1
+    , transformers >=0.5.6.2 && <0.7
+    , vector >=0.12.0.1 && <0.14
+  default-language: Haskell2010
+  default-extensions:
+      OverloadedStrings
+  ghc-options: -Wall
+
+executable bm
+  hs-source-dirs: app
+  main-is: Main.hs
+  other-modules:
+      LibOA
+  build-depends:
+      base
+    , bm
+    , directory >=1.3.3 && <1.4
+    , filepath >=1.4.2.1 && <1.5
+    , typed-process >=0.2.6 && <0.3
+    , yaml >=0.11.2 && <0.12
+  if flag(optparse-applicative_ge_0_18)
+    build-depends:
+        optparse-applicative >=0.18 && <0.19
+      , prettyprinter >=1.7.1 && <1.8
+  else
+    build-depends:
+        ansi-wl-pprint >=0.6.8 && <1.1
+      , optparse-applicative >=0.14 && <0.18
+  default-language: Haskell2010
+  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+
+test-suite bm-test
+  type: exitcode-stdio-1.0
+  hs-source-dirs: test
+  main-is: Spec.hs
+  other-modules:
+      BM.Test
+  build-depends:
+      base
+    , bm
+    , tasty >=1.2 && <1.5
+    , tasty-hunit >=0.9 && <0.11
+    , vector
+  default-language: Haskell2010
+  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
revision 2
 name:           bm
 version:        0.2.0.0
-x-revision: 1
+x-revision: 2
 category:       Utils
 synopsis:       open bookmarks and queries from the command line
 description:
    || ==8.10.7
    || ==9.0.2
    || ==9.2.8
-   || ==9.4.5
+   || ==9.4.6
    || ==9.6.2
 
 extra-source-files:
   build-depends:
       base
     , bm
-    , tasty >=1.2 && <1.5
+    , tasty >=1.2 && <1.6
     , tasty-hunit >=0.9 && <0.11
     , vector
   default-language: Haskell2010
revision 3
 name:           bm
 version:        0.2.0.0
-x-revision: 2
+x-revision: 3
 category:       Utils
 synopsis:       open bookmarks and queries from the command line
 description:
    || ==8.10.7
    || ==9.0.2
    || ==9.2.8
-   || ==9.4.6
-   || ==9.6.2
+   || ==9.4.8
+   || ==9.6.3
+   || ==9.8.1
 
 extra-source-files:
   CHANGELOG.md
       Paths_bm
   build-depends:
       aeson >=1.4.6 && < 2.3
-    , base >=4.12 && <4.19
+    , base >=4.12 && <4.20
     , dlist >=0.8.0.4 && <1.1
     , network-uri >=2.6.2 && <2.7
     , scientific >=0.3.6.2 && <0.4
-    , text >=1.2.3.1 && <2.1
+    , text >=1.2.3.1 && <2.2
     , transformers >=0.5.6.2 && <0.7
     , vector >=0.12.0.1 && <0.14
   default-language: Haskell2010
revision 4
 name:           bm
 version:        0.2.0.0
-x-revision: 3
+x-revision: 4
 category:       Utils
 synopsis:       open bookmarks and queries from the command line
 description:
    || ==9.0.2
    || ==9.2.8
    || ==9.4.8
-   || ==9.6.3
-   || ==9.8.1
+   || ==9.6.4
+   || ==9.8.2
 
 extra-source-files:
   CHANGELOG.md
       base
     , bm
     , directory >=1.3.3 && <1.4
-    , filepath >=1.4.2.1 && <1.5
+    , filepath >=1.4.2.1 && <1.6
     , typed-process >=0.2.6 && <0.3
     , yaml >=0.11.2 && <0.12
   if flag(optparse-applicative_ge_0_18)
revision 5
 name:           bm
 version:        0.2.0.0
-x-revision: 4
+x-revision: 5
 category:       Utils
 synopsis:       open bookmarks and queries from the command line
 description:
    || ==9.0.2
    || ==9.2.8
    || ==9.4.8
-   || ==9.6.4
+   || ==9.6.5
    || ==9.8.2
+   || ==9.10.1
 
 extra-source-files:
   CHANGELOG.md
       Paths_bm
   build-depends:
       aeson >=1.4.6 && < 2.3
-    , base >=4.12 && <4.20
+    , base >=4.12 && <4.21
     , dlist >=0.8.0.4 && <1.1
     , network-uri >=2.6.2 && <2.7
     , scientific >=0.3.6.2 && <0.4