packages feed

Cabal revisions of ascii-progress-0.3.0.0

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

revision 1
-name:                ascii-progress-version:             0.3.0.0-synopsis:            A simple progress bar for the console.-description:-    A simple Haskell progress bar for the console. Heavily borrows from TJ-    Holowaychuk's Node.JS project-    <https://github.com/tj/node-progress progress>-    .-    <https://github.com/yamadapc/haskell-ascii-progress github>--homepage:            https://github.com/yamadapc/haskell-ascii-progress-license:             MIT-license-file:        LICENSE-author:              Pedro Tacla Yamada-maintainer:          tacla.yamada@gmail.com-copyright:           (c) 2015 Pedro Tacla Yamada-category:            System-build-type:          Simple-cabal-version:       >=1.10-source-repository head-  type:     git-  location: git://github.com/yamadapc/haskell-ascii-progress--flag examples-  description: Build the examples-  default:     False--library-  exposed-modules:     System.Console.AsciiProgress-                     , System.Console.AsciiProgress.Internal-  build-depends:       ansi-terminal-                     , concurrent-output-                     , async >= 2.0.1.5-                     , base >=4 && <5-                     , data-default >= 0.5.3-                     , time >= 1.4.2-  hs-source-dirs:      lib-  default-language:    Haskell2010--executable example-  main-is:             Example.hs-  default-language:    Haskell2010--  if !flag(examples)-    buildable: False-  else-    buildable: True-    build-depends:     ansi-terminal-                     , concurrent-output-                     , async >= 2.0.1.5-                     , base >=4 && <5-                     , data-default >= 0.5.3-                     , time >= 1.4.2-    hs-source-dirs:    lib-                     , bin--executable download-example-  main-is:             DownloadExample.hs-  default-language:    Haskell2010--  if !flag(examples)-    buildable: False-  else-    buildable: True-    build-depends:     HTTP-                     , concurrent-output-                     , ansi-terminal-                     , async >= 2.0.1.5-                     , base >=4 && <5-                     , bytestring-                     , data-default >= 0.5.3-                     , time >= 1.4.2-                     , conduit >= 1.2-                     , http-conduit >= 2.1-                     , http-types >= 0.8-                     , transformers >= 0.3-    hs-source-dirs:    lib-                     , bin--executable multi-example-  main-is:             MultiExample.hs-  default-language:    Haskell2010--  if !flag(examples)-    buildable: False-  else-    buildable: True-    build-depends:     ansi-terminal-                     , concurrent-output-                     , async >= 2.0.1.5-                     , base >=4 && <5-                     , data-default >= 0.5.3-                     , time >= 1.4.2-    hs-source-dirs:    lib-                     , bin--executable crazy-multi-example-  main-is:             CrazyMultiExample.hs-  default-language:    Haskell2010--  if !flag(examples)-    buildable: False-  else-    buildable: True-    build-depends:     ansi-terminal-                     , concurrent-output-                     , async >= 2.0.1.5-                     , base >=4 && <5-                     , data-default >= 0.5.3-                     , random-                     , time >= 1.4.2-    hs-source-dirs:    lib-                     , bin--test-suite hspec-  type:                exitcode-stdio-1.0-  main-is: Spec.hs-  build-depends:       ansi-terminal-                     , concurrent-output-                     , async >= 2.0.1.5-                     , base >=4 && <5-                     , data-default >= 0.5.3-                     , hspec >=2.1 && <3-                     , time >= 1.4.2-                     , QuickCheck >= 2.6-  hs-source-dirs:      lib-                     , test-  default-language:    Haskell2010+name:                ascii-progress
+version:             0.3.0.0
+x-revision: 1
+synopsis:            A simple progress bar for the console.
+description:
+    A simple Haskell progress bar for the console. Heavily borrows from TJ
+    Holowaychuk's Node.JS project
+    <https://github.com/tj/node-progress progress>
+    .
+    <https://github.com/yamadapc/haskell-ascii-progress github>
+
+homepage:            https://github.com/yamadapc/haskell-ascii-progress
+license:             MIT
+license-file:        LICENSE
+author:              Pedro Tacla Yamada
+maintainer:          tacla.yamada@gmail.com
+copyright:           (c) 2015 Pedro Tacla Yamada
+category:            System
+build-type:          Simple
+cabal-version:       >=1.10
+source-repository head
+  type:     git
+  location: git://github.com/yamadapc/haskell-ascii-progress
+
+flag examples
+  description: Build the examples
+  default:     False
+
+library
+  exposed-modules:     System.Console.AsciiProgress
+                     , System.Console.AsciiProgress.Internal
+  build-depends:       ansi-terminal
+                     , concurrent-output
+                     , async >= 2.0.1.5
+                     , base >=4 && <5
+                     , data-default >= 0.5.3
+                     , time >= 1.4.2
+  hs-source-dirs:      lib
+  default-language:    Haskell2010
+
+executable example
+  main-is:             Example.hs
+  default-language:    Haskell2010
+
+  if !flag(examples)
+    buildable: False
+  else
+    buildable: True
+    build-depends:     ansi-terminal < 0.7
+                     , concurrent-output >= 1.1 && < 1.8
+                     , async >= 2.0.1.5 && < 2.2
+                     , base >=4.7 && <5
+                     , data-default >= 0.5.3 && < 0.8
+                     , time >= 1.4.2 && <1.8
+    hs-source-dirs:    lib
+                     , bin
+
+executable download-example
+  main-is:             DownloadExample.hs
+  default-language:    Haskell2010
+
+  if !flag(examples)
+    buildable: False
+  else
+    buildable: True
+    build-depends:     HTTP
+                     , concurrent-output
+                     , ansi-terminal
+                     , async >= 2.0.1.5
+                     , base >=4 && <5
+                     , bytestring
+                     , data-default >= 0.5.3
+                     , time >= 1.4.2
+                     , conduit >= 1.2
+                     , http-conduit >= 2.1
+                     , http-types >= 0.8
+                     , transformers >= 0.3
+    hs-source-dirs:    lib
+                     , bin
+
+executable multi-example
+  main-is:             MultiExample.hs
+  default-language:    Haskell2010
+
+  if !flag(examples)
+    buildable: False
+  else
+    buildable: True
+    build-depends:     ansi-terminal
+                     , concurrent-output
+                     , async >= 2.0.1.5
+                     , base >=4 && <5
+                     , data-default >= 0.5.3
+                     , time >= 1.4.2
+    hs-source-dirs:    lib
+                     , bin
+
+executable crazy-multi-example
+  main-is:             CrazyMultiExample.hs
+  default-language:    Haskell2010
+
+  if !flag(examples)
+    buildable: False
+  else
+    buildable: True
+    build-depends:     ansi-terminal
+                     , concurrent-output
+                     , async >= 2.0.1.5
+                     , base >=4 && <5
+                     , data-default >= 0.5.3
+                     , random
+                     , time >= 1.4.2
+    hs-source-dirs:    lib
+                     , bin
+
+test-suite hspec
+  type:                exitcode-stdio-1.0
+  main-is: Spec.hs
+  build-depends:       ansi-terminal
+                     , concurrent-output
+                     , async >= 2.0.1.5
+                     , base >=4 && <5
+                     , data-default >= 0.5.3
+                     , hspec >=2.1 && <3
+                     , time >= 1.4.2
+                     , QuickCheck >= 2.6
+  hs-source-dirs:      lib
+                     , test
+  default-language:    Haskell2010
revision 2
 name:                ascii-progress
 version:             0.3.0.0
-x-revision: 1
+x-revision: 2
 synopsis:            A simple progress bar for the console.
 description:
     A simple Haskell progress bar for the console. Heavily borrows from TJ
 library
   exposed-modules:     System.Console.AsciiProgress
                      , System.Console.AsciiProgress.Internal
-  build-depends:       ansi-terminal
-                     , concurrent-output
-                     , async >= 2.0.1.5
-                     , base >=4 && <5
-                     , data-default >= 0.5.3
-                     , time >= 1.4.2
+  build-depends:       ansi-terminal < 0.7
+                     , concurrent-output >= 1.1 && < 1.8
+                     , async >= 2.0.1.5 && < 2.2
+                     , base >=4.7 && <5
+                     , data-default >= 0.5.3 && < 0.8
+                     , time >= 1.4.2 && <1.8
   hs-source-dirs:      lib
   default-language:    Haskell2010