packages feed

Cabal revisions of cgi-3001.5.0.1

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

revision 1
-name:               cgi-version:            3001.5.0.1-synopsis:           A library for writing CGI programs-description:        This is a Haskell library for writing CGI programs.-license:            BSD3-license-file:       LICENSE-copyright:          Bjorn Bringert, John Chee, Andy Gill, Anders Kaseorg,-                    Ian Lynagh, Erik Meijer, Sven Panne, Jeremy Shaw, Peter Simons-author:             Bjorn Bringert-maintainer:         John Chee <cheecheeo@gmail.com>, Peter Simons <simons@cryp.to>-tested-with:        GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4,-                    GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.5, GHC == 9.4.4-category:           Network-homepage:           https://github.com/cheecheeo/haskell-cgi-bug-reports:        https://github.com/cheecheeo/haskell-cgi/issues-build-type:         Simple-extra-source-files: README.md-                    CHANGELOG.md-cabal-version:      >= 1.10--source-repository head-  type:     git-  location: https://github.com/cheecheeo/haskell-cgi.git--flag install-examples-  default:     False-  description: compile (and install) the example programs--library-  exposed-modules:  Network.CGI-                    Network.CGI.Cookie-                    Network.CGI.Monad-                    Network.CGI.Protocol-  other-modules:    Network.CGI.Accept-  hs-source-dirs:   src-  build-depends:    base        >= 4.9 && < 5-                  , bytestring  < 0.12-                  , containers  < 0.7-                  , exceptions  == 0.10.*-                  , mtl         > 2.2.0.1 && < 2.3-                  , multipart   >= 0.1.2 && < 0.3-                  , network-uri == 2.6.*-                  , parsec      >= 2.0 && < 3.2-                  , time        >= 1.5 && < 1.13-                  , xhtml       >= 3000.0.0 && < 3000.3-  other-extensions: MultiParamTypeClasses-  default-language: Haskell2010--executable cookie.cgi-  main-is:        cookie.hs-  hs-source-dirs: examples-  default-language: Haskell2010--  if flag(install-examples)-    build-depends: base, cgi, xhtml-  else-    buildable: False--executable error.cgi-  main-is:        error.hs-  hs-source-dirs: examples-  default-language: Haskell2010--  if flag(install-examples)-    build-depends: base, cgi-  else-    buildable: False--executable hello.cgi-  main-is:        hello.hs-  hs-source-dirs: examples-  default-language: Haskell2010--  if flag(install-examples)-    build-depends: base, cgi-  else-    buildable: False--executable printinput.cgi-  main-is:        printinput.hs-  hs-source-dirs: examples-  default-language: Haskell2010--  if flag(install-examples)-    build-depends: base, cgi-  else-    buildable: False--executable redirect.cgi-  main-is:        redirect.hs-  hs-source-dirs: examples-  default-language: Haskell2010--  if flag(install-examples)-    build-depends: base, cgi-  else-    buildable: False--executable showAllInputs.cgi-  main-is:        showAllInputs.hs-  hs-source-dirs: examples-  default-language: Haskell2010--  if flag(install-examples)-    build-depends: base, cgi-  else-    buildable: False--executable upload.cgi-  main-is:        upload.hs-  hs-source-dirs: examples-  default-language: Haskell2010--  if flag(install-examples)-    build-depends: base, bytestring, cgi, xhtml-  else-    buildable: False+name:               cgi
+version:            3001.5.0.1
+x-revision: 1
+synopsis:           A library for writing CGI programs
+description:        This is a Haskell library for writing CGI programs.
+license:            BSD3
+license-file:       LICENSE
+copyright:          Bjorn Bringert, John Chee, Andy Gill, Anders Kaseorg,
+                    Ian Lynagh, Erik Meijer, Sven Panne, Jeremy Shaw, Peter Simons
+author:             Bjorn Bringert
+maintainer:         John Chee <cheecheeo@gmail.com>, Peter Simons <simons@cryp.to>
+tested-with:        GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4,
+                    GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.5, GHC == 9.4.4
+category:           Network
+homepage:           https://github.com/cheecheeo/haskell-cgi
+bug-reports:        https://github.com/cheecheeo/haskell-cgi/issues
+build-type:         Simple
+extra-source-files: README.md
+                    CHANGELOG.md
+cabal-version:      >= 1.10
+
+source-repository head
+  type:     git
+  location: https://github.com/cheecheeo/haskell-cgi.git
+
+flag install-examples
+  default:     False
+  description: compile (and install) the example programs
+
+library
+  exposed-modules:  Network.CGI
+                    Network.CGI.Cookie
+                    Network.CGI.Monad
+                    Network.CGI.Protocol
+  other-modules:    Network.CGI.Accept
+  hs-source-dirs:   src
+  build-depends:    base        >= 4.9 && < 5
+                  , bytestring  < 0.12
+                  , containers  < 0.7
+                  , exceptions  == 0.10.*
+                  , mtl         > 2.2.0.1 && < 2.4
+                  , multipart   >= 0.1.2 && < 0.3
+                  , network-uri == 2.6.*
+                  , parsec      >= 2.0 && < 3.2
+                  , time        >= 1.5 && < 1.13
+                  , xhtml       >= 3000.0.0 && < 3000.3
+  other-extensions: MultiParamTypeClasses
+  default-language: Haskell2010
+
+executable cookie.cgi
+  main-is:        cookie.hs
+  hs-source-dirs: examples
+  default-language: Haskell2010
+
+  if flag(install-examples)
+    build-depends: base, cgi, xhtml
+  else
+    buildable: False
+
+executable error.cgi
+  main-is:        error.hs
+  hs-source-dirs: examples
+  default-language: Haskell2010
+
+  if flag(install-examples)
+    build-depends: base, cgi
+  else
+    buildable: False
+
+executable hello.cgi
+  main-is:        hello.hs
+  hs-source-dirs: examples
+  default-language: Haskell2010
+
+  if flag(install-examples)
+    build-depends: base, cgi
+  else
+    buildable: False
+
+executable printinput.cgi
+  main-is:        printinput.hs
+  hs-source-dirs: examples
+  default-language: Haskell2010
+
+  if flag(install-examples)
+    build-depends: base, cgi
+  else
+    buildable: False
+
+executable redirect.cgi
+  main-is:        redirect.hs
+  hs-source-dirs: examples
+  default-language: Haskell2010
+
+  if flag(install-examples)
+    build-depends: base, cgi
+  else
+    buildable: False
+
+executable showAllInputs.cgi
+  main-is:        showAllInputs.hs
+  hs-source-dirs: examples
+  default-language: Haskell2010
+
+  if flag(install-examples)
+    build-depends: base, cgi
+  else
+    buildable: False
+
+executable upload.cgi
+  main-is:        upload.hs
+  hs-source-dirs: examples
+  default-language: Haskell2010
+
+  if flag(install-examples)
+    build-depends: base, bytestring, cgi, xhtml
+  else
+    buildable: False
revision 2
 name:               cgi
 version:            3001.5.0.1
-x-revision: 1
+x-revision: 2
 synopsis:           A library for writing CGI programs
 description:        This is a Haskell library for writing CGI programs.
 license:            BSD3
   other-modules:    Network.CGI.Accept
   hs-source-dirs:   src
   build-depends:    base        >= 4.9 && < 5
-                  , bytestring  < 0.12
+                  , bytestring  < 0.13
                   , containers  < 0.7
                   , exceptions  == 0.10.*
                   , mtl         > 2.2.0.1 && < 2.4
revision 3
 name:               cgi
 version:            3001.5.0.1
-x-revision: 2
+x-revision: 3
 synopsis:           A library for writing CGI programs
 description:        This is a Haskell library for writing CGI programs.
 license:            BSD3
   hs-source-dirs:   src
   build-depends:    base        >= 4.9 && < 5
                   , bytestring  < 0.13
-                  , containers  < 0.7
+                  , containers  < 0.8
                   , exceptions  == 0.10.*
                   , mtl         > 2.2.0.1 && < 2.4
                   , multipart   >= 0.1.2 && < 0.3