Hello community,

here is the log from the commit of package ghc-cgi for openSUSE:Factory checked 
in at 2016-05-31 12:24:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-cgi (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-cgi.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-cgi"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-cgi/ghc-cgi.changes  2016-01-28 
17:24:34.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-cgi.new/ghc-cgi.changes     2016-05-31 
12:24:14.000000000 +0200
@@ -1,0 +2,17 @@
+Sun Apr 10 18:50:21 UTC 2016 - mimi...@gmail.com
+
+- update to 3001.3.0.1
+* Bumped doctest to version < 0.12
+
+-------------------------------------------------------------------
+Mon Mar  7 08:50:52 UTC 2016 - mimi...@gmail.com
+
+- update to 3001.3.0.0
+- remove uselees _service
+* Cookie.hs: cookieExpires now has type `Maybe UTCTime` rather than
+    `Maybe CalendarTime`
+* Protocol.hs: URL decoding functions no longer decode UTF-8 encoding
+* Functor and Applicative instance of CGIT no longer constrain Functor or
+   Applicative parameter to be an instance of Monad
+
+-------------------------------------------------------------------

Old:
----
  _service
  cgi-3001.2.2.3.tar.gz

New:
----
  cgi-3001.3.0.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-cgi.spec ++++++
--- /var/tmp/diff_new_pack.G4cbMA/_old  2016-05-31 12:24:15.000000000 +0200
+++ /var/tmp/diff_new_pack.G4cbMA/_new  2016-05-31 12:24:15.000000000 +0200
@@ -18,7 +18,7 @@
 %global pkg_name cgi
 
 Name:           ghc-cgi
-Version:        3001.2.2.3
+Version:        3001.3.0.1
 Release:        0
 Summary:        A library for writing CGI programs
 Group:          System/Libraries
@@ -38,8 +38,7 @@
 BuildRequires:  ghc-multipart-devel
 BuildRequires:  ghc-network-devel
 BuildRequires:  ghc-network-uri-devel
-BuildRequires:  ghc-old-locale-devel
-BuildRequires:  ghc-old-time-devel
+BuildRequires:  ghc-time-devel
 BuildRequires:  ghc-parsec-devel
 BuildRequires:  ghc-xhtml-devel
 # End cabal-rpm deps

++++++ cgi-3001.2.2.3.tar.gz -> cgi-3001.3.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi-3001.2.2.3/CHANGELOG.md 
new/cgi-3001.3.0.1/CHANGELOG.md
--- old/cgi-3001.2.2.3/CHANGELOG.md     1970-01-01 01:00:00.000000000 +0100
+++ new/cgi-3001.3.0.1/CHANGELOG.md     2016-04-09 20:05:04.000000000 +0200
@@ -0,0 +1,59 @@
+# Change Log
+All notable changes to this project will be documented in this file.
+This project adheres to the [Package Versioning 
Policy](https://wiki.haskell.org/Package_versioning_policy).
+
+## [3001.3.0.1]
+### Changed
+- Bumped doctest to version < 0.12
+
+## [3001.3.0.0]
+### Changed
+- Cookie.hs: cookieExpires now has type `Maybe UTCTime` rather than
+`Maybe CalendarTime`
+- Protocol.hs: URL decoding functions no longer decode UTF-8 encoding
+- Functor and Applicative instance of CGIT no longer constrain Functor or
+Applicative parameter to be an instance of Monad
+
+## [3001.2.2.3]
+### Changed
+* CGI.hs haddock: Use web.archive.org link for CGI specification
+
+## [3001.2.2.2]
+### Changed
+- Added support for building with mtl < 2.2.1 via flags
+
+## [3001.2.2.1]
+### Changed
+- Bumped exceptions version to < 0.9
+
+## [3001.2.2.0]
+### Added
+- MonadMask instance for CGIT
+
+## [3001.2.1.0]
+### Added
+- Applicative instance for CGI Monad
+
+### Changed
+- Deduplicate shared with `multipart` code
+
+## 3001.2.0.0
+### Changed
+- GHC 7.8.3 support
+
+[Unreleased]:
+https://github.com/cheecheeo/haskell-cgi/compare/3001.3.0.1...HEAD
+[3001.3.0.1]:
+https://github.com/cheecheeo/haskell-cgi/compare/3001.3.0.0...3001.3.0.1
+[3001.3.0.0]:
+https://github.com/cheecheeo/haskell-cgi/compare/3001.2.2.3...3001.3.0.0
+[3001.2.2.3]:
+https://github.com/cheecheeo/haskell-cgi/compare/3001.2.2.2...3001.2.2.3
+[3001.2.2.2]:
+https://github.com/cheecheeo/haskell-cgi/compare/3001.2.2.1...3001.2.2.2
+[3001.2.2.1]:
+https://github.com/cheecheeo/haskell-cgi/compare/3001.2.2.0...3001.2.2.1
+[3001.2.2.0]:
+https://github.com/cheecheeo/haskell-cgi/compare/3001.2.1.0...3001.2.2.0
+[3001.2.1.0]:
+https://github.com/cheecheeo/haskell-cgi/compare/3001.2.0.0...3001.2.1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi-3001.2.2.3/Network/CGI/Cookie.hs 
new/cgi-3001.3.0.1/Network/CGI/Cookie.hs
--- old/cgi-3001.2.2.3/Network/CGI/Cookie.hs    2016-01-20 08:43:22.000000000 
+0100
+++ new/cgi-3001.3.0.1/Network/CGI/Cookie.hs    2016-04-09 20:05:04.000000000 
+0200
@@ -29,9 +29,9 @@
 import Data.Char (isSpace)
 import Data.List (intersperse)
 import Data.Maybe (catMaybes)
-import System.Locale (defaultTimeLocale, rfc822DateFormat)
-import System.Time (CalendarTime(..), Month(..), Day(..),
-                    formatCalendarTime)
+import Data.Time.Calendar (Day(..))
+import Data.Time.Clock (UTCTime(..))
+import Data.Time.Format (defaultTimeLocale, formatTime, rfc822DateFormat)
 
 --
 -- * Types
@@ -47,7 +47,7 @@
                       --   cookie expires when the browser sessions ends.
                       --   If the date is in the past, the client should
                       --   delete the cookie immediately.
-                      cookieExpires :: Maybe CalendarTime,
+                      cookieExpires :: Maybe UTCTime,
                       -- | The domain suffix to which this cookie will be sent.
                       cookieDomain :: Maybe String,
                       -- | The path to which this cookie will be sent.
@@ -96,20 +96,7 @@
              -> Cookie
 deleteCookie c = c { cookieExpires = Just epoch }
     where
-    epoch = CalendarTime {
-                          ctYear = 1970,
-                          ctMonth = January,
-                          ctDay = 1,
-                          ctHour = 0,
-                          ctMin = 0,
-                          ctSec = 0,
-                          ctPicosec = 0,
-                          ctWDay = Thursday,
-                          ctYDay = 1,
-                          ctTZName = "GMT",
-                          ctTZ = 0,
-                          ctIsDST = False
-                         }
+    epoch = UTCTime (ModifiedJulianDay 40587) 0
 
 --
 -- * Reading and showing cookies
@@ -124,7 +111,7 @@
           domain = fmap (showPair "domain") (cookieDomain c)
           path = fmap (showPair "path") (cookiePath c)
           secure = if cookieSecure c then Just "secure" else Nothing
-          dateFmt = formatCalendarTime defaultTimeLocale rfc822DateFormat
+          dateFmt = formatTime defaultTimeLocale rfc822DateFormat
 
 -- | Show a name-value pair. FIXME: if the name or value
 --   contains semicolons, this breaks. The problem
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi-3001.2.2.3/Network/CGI/Monad.hs 
new/cgi-3001.3.0.1/Network/CGI/Monad.hs
--- old/cgi-3001.2.2.3/Network/CGI/Monad.hs     2016-01-20 08:43:22.000000000 
+0100
+++ new/cgi-3001.3.0.1/Network/CGI/Monad.hs     2016-04-09 20:05:04.000000000 
+0200
@@ -65,10 +65,10 @@
                 [typeOf1 (undefined :: m a), typeOf (undefined :: a)]
 #endif
 
-instance (Functor m, Monad m) => Functor (CGIT m) where
+instance (Functor m) => Functor (CGIT m) where
     fmap f c = CGIT (fmap f (unCGIT c))
 
-instance (Applicative m, Monad m) => Applicative (CGIT m) where
+instance (Applicative m) => Applicative (CGIT m) where
     pure = CGIT . pure
     f <*> x = CGIT (unCGIT f <*> unCGIT x)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi-3001.2.2.3/Network/CGI/Protocol.hs 
new/cgi-3001.3.0.1/Network/CGI/Protocol.hs
--- old/cgi-3001.2.2.3/Network/CGI/Protocol.hs  2016-01-20 08:43:22.000000000 
+0100
+++ new/cgi-3001.3.0.1/Network/CGI/Protocol.hs  2016-04-09 20:05:04.000000000 
+0200
@@ -33,11 +33,12 @@
  ) where
 
 import Control.Monad.Trans (MonadIO(..))
+import Data.Char (chr, isHexDigit, digitToInt)
 import Data.List (intersperse)
 import qualified Data.Map as Map
 import Data.Map (Map)
 import Data.Maybe (fromMaybe, listToMaybe, isJust)
-import Network.URI (unEscapeString,escapeURIString,isUnescapedInURI)
+import Network.URI (escapeURIString,isUnescapedInURI)
 import System.Environment (getEnvironment)
 import System.IO (Handle, hPutStrLn, stderr, hFlush, hSetBinaryMode)
 
@@ -175,7 +176,7 @@
 
 -- | The default content-type for variables.
 defaultInputType :: ContentType
-defaultInputType = ContentType "text" "plain" [] -- FIXME: use some default 
encoding?
+defaultInputType = ContentType "text" "plain" [("charset","windows-1252")]
 
 --
 -- * Environment variables
@@ -237,6 +238,16 @@
 urlDecode :: String -> String
 urlDecode = unEscapeString . replace '+' ' '
 
+-- | Unescape a percent-encoded string, but doesn't decode UTF-8 encoding.
+--
+-- >>> unEscapeString "Hell%C3%B3 w%C3%B3rld"
+-- "Hell\195\179 w\195\179rld"
+unEscapeString :: String -> String
+unEscapeString [] = ""
+unEscapeString ('%':x1:x2:s) | isHexDigit x1 && isHexDigit x2 =
+    chr (digitToInt x1 * 16 + digitToInt x2) : unEscapeString s
+unEscapeString (c:s) = c : unEscapeString s
+
 --
 -- * Request content and form-data stuff
 --
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi-3001.2.2.3/cgi.cabal new/cgi-3001.3.0.1/cgi.cabal
--- old/cgi-3001.2.2.3/cgi.cabal        2016-01-20 08:43:22.000000000 +0100
+++ new/cgi-3001.3.0.1/cgi.cabal        2016-04-09 20:05:04.000000000 +0200
@@ -1,5 +1,5 @@
 Name: cgi
-Version: 3001.2.2.3
+Version: 3001.3.0.1
 Copyright: Bjorn Bringert, John Chee, Andy Gill, Anders Kaseorg,
            Ian Lynagh, Erik Meijer, Sven Panne, Jeremy Shaw
 Category: Network
@@ -13,8 +13,8 @@
 Description:
  This is a Haskell library for writing CGI programs.
 Build-Type: Simple
-extra-source-files: changelog
-Cabal-Version: >=1.6
+extra-source-files: CHANGELOG.md
+Cabal-Version: >=1.8
 
 source-repository head
   type: git
@@ -48,8 +48,7 @@
     xhtml >= 3000.0.0 && < 3000.3,
     bytestring < 0.11,
     base >= 4.5 && < 5,
-    old-time < 1.2,
-    old-locale < 1.1,
+    time >= 1.5 && < 1.7,
     containers < 0.6,
     multipart >= 0.1.2 && < 0.2
   If flag(network-uri)
@@ -63,6 +62,19 @@
     Build-depends:
       mtl>=2.2.1 && < 2.3
 
+test-suite doctests
+  type:             exitcode-stdio-1.0
+  ghc-options:      -threaded
+  main-is:          DocTestMain.hs
+  other-modules:
+    DocTest
+  hs-source-dirs:   src
+  ghc-options:      -Wall
+  build-depends:
+      base
+    , doctest >= 0.8 && < 0.12
+    , QuickCheck >= 2.8.1 && < 2.9
+
 --Executable:     printinput
 --Main-Is:        printinput.hs
 --Hs-Source-Dir:  examples
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi-3001.2.2.3/changelog new/cgi-3001.3.0.1/changelog
--- old/cgi-3001.2.2.3/changelog        2016-01-20 08:43:22.000000000 +0100
+++ new/cgi-3001.3.0.1/changelog        1970-01-01 01:00:00.000000000 +0100
@@ -1,27 +0,0 @@
-3001.2.2.3
-
-### Changed
-* CGI.hs haddock: Use web.archive.org link for CGI specification
-
-3001.2.2.2
-
-### Changed
-* Added support for building with mtl < 2.2.1 via flags
-
-3001.2.2.1
-
-### Changed
-* Bumped exceptions version to < 0.9
-
-3001.2.2.0
-
-* MonadMask instance for CGIT
-
-3001.2.1.0
-
-* Applicative instance for CGI Monad
-* Deduplicate shared with `multipart` code
-
-3001.2.0.0
-
-* GHC 7.8.3 support
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi-3001.2.2.3/src/DocTest.hs 
new/cgi-3001.3.0.1/src/DocTest.hs
--- old/cgi-3001.2.2.3/src/DocTest.hs   1970-01-01 01:00:00.000000000 +0100
+++ new/cgi-3001.3.0.1/src/DocTest.hs   2016-04-09 20:05:04.000000000 +0200
@@ -0,0 +1,7 @@
+module DocTest (
+  test
+  ) where
+import Test.DocTest
+
+test :: IO ()
+test = doctest ["-iNetwork", "Network/CGI/Protocol.hs"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cgi-3001.2.2.3/src/DocTestMain.hs 
new/cgi-3001.3.0.1/src/DocTestMain.hs
--- old/cgi-3001.2.2.3/src/DocTestMain.hs       1970-01-01 01:00:00.000000000 
+0100
+++ new/cgi-3001.3.0.1/src/DocTestMain.hs       2016-04-09 20:05:04.000000000 
+0200
@@ -0,0 +1,8 @@
+module Main (
+  main
+  ) where
+
+import qualified DocTest
+
+main :: IO ()
+main = DocTest.test


Reply via email to