Hello community,

here is the log from the commit of package ghc-HTTP for openSUSE:Factory 
checked in at 2017-03-20 17:06:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-HTTP (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-HTTP.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-HTTP"

Mon Mar 20 17:06:38 2017 rev:16 rq:477437 version:4000.3.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-HTTP/ghc-HTTP.changes        2016-07-21 
08:04:52.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-HTTP.new/ghc-HTTP.changes   2017-03-20 
17:06:40.602321139 +0100
@@ -1,0 +2,10 @@
+Mon Jan 30 09:26:47 UTC 2017 - psim...@suse.com
+
+- Update to version 4000.3.5 revision 2 with cabal2obs.
+
+-------------------------------------------------------------------
+Sun Jan  8 21:13:50 UTC 2017 - psim...@suse.com
+
+- Update to version 4000.3.4 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  HTTP-4000.3.3.tar.gz

New:
----
  HTTP-4000.3.5.tar.gz
  HTTP.cabal

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

Other differences:
------------------
++++++ ghc-HTTP.spec ++++++
--- /var/tmp/diff_new_pack.2VobMm/_old  2017-03-20 17:06:41.382211019 +0100
+++ /var/tmp/diff_new_pack.2VobMm/_new  2017-03-20 17:06:41.382211019 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-HTTP
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,15 +19,15 @@
 %global pkg_name HTTP
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        4000.3.3
+Version:        4000.3.5
 Release:        0
 Summary:        A library for client-side HTTP
 License:        BSD-3-Clause
-Group:          System/Libraries
+Group:          Development/Languages/Other
 Url:            https://hackage.haskell.org/package/%{pkg_name}
 Source0:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-array-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-mtl-devel
@@ -52,7 +52,6 @@
 BuildRequires:  ghc-wai-devel
 BuildRequires:  ghc-warp-devel
 %endif
-# End cabal-rpm deps
 
 %description
 The HTTP package supports client-side web programming in Haskell. It lets you
@@ -78,7 +77,19 @@
 > -- fetch document and return it (as a 'String'.) > fmap (take 100)
 (getResponseBody rsp) > > do > (_, rsp) > <- Network.Browser.browse $ do >
 setAllowRedirects True -- handle HTTP redirects > request $ getRequest
-"http://www.haskell.org/"; > return (take 100 (rspBody rsp)).
+"http://www.haskell.org/"; > return (take 100 (rspBody rsp))
+
+__Note:__ This package does not support HTTPS connections. If you need HTTPS,
+take a look at the following packages:
+
+* <http://hackage.haskell.org/package/http-streams http-streams>
+
+* <http://hackage.haskell.org/package/http-client http-client> (in combination
+with <http://hackage.haskell.org/package/http-client-tls http-client-tls>)
+
+* <http://hackage.haskell.org/package/req req>
+
+* <http://hackage.haskell.org/package/wreq wreq> .
 
 %package devel
 Summary:        Haskell %{pkg_name} library development files
@@ -93,21 +104,16 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache
@@ -121,5 +127,6 @@
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
+%doc CHANGES
 
 %changelog

++++++ HTTP-4000.3.3.tar.gz -> HTTP-4000.3.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/HTTP-4000.3.3/HTTP.cabal new/HTTP-4000.3.5/HTTP.cabal
--- old/HTTP-4000.3.3/HTTP.cabal        2016-02-09 23:34:53.000000000 +0100
+++ new/HTTP-4000.3.5/HTTP.cabal        2017-01-25 08:05:31.000000000 +0100
@@ -1,5 +1,5 @@
 Name: HTTP
-Version: 4000.3.3
+Version: 4000.3.5
 Cabal-Version: >= 1.8
 Build-type: Simple
 License: BSD3
@@ -40,6 +40,15 @@
  >               setAllowRedirects True -- handle HTTP redirects
  >               request $ getRequest "http://www.haskell.org/";
  >      return (take 100 (rspBody rsp))
+ .
+ __Note:__ This package does not support HTTPS connections.
+ If you need HTTPS, take a look at the following packages:
+ .
+ * [http-streams](http://hackage.haskell.org/package/http-streams)
+ * [http-client](http://hackage.haskell.org/package/http-client) (in 
combination with
+ [http-client-tls](http://hackage.haskell.org/package/http-client-tls))
+ * [req](http://hackage.haskell.org/package/req)
+ * [wreq](http://hackage.haskell.org/package/wreq)
 
 Extra-Source-Files: CHANGES
 
@@ -100,7 +109,7 @@
   -- where dependencies are shared
   Build-depends: base >= 4.3.0.0 && < 4.10, parsec >= 2.0 && < 3.2
   Build-depends: array >= 0.3.0.2 && < 0.6, bytestring >= 0.9.1.5 && < 0.11
-  Build-depends: time >= 1.1.2.3 && < 1.7
+  Build-depends: time >= 1.1.2.3 && < 1.8
 
   Extensions: FlexibleInstances
 
@@ -134,7 +143,7 @@
   -- note: version constraints for dependencies shared with the library
   -- should be the same
   build-depends:     HTTP,
-                     HUnit >= 1.2.0.1 && < 1.4,
+                     HUnit >= 1.2.0.1 && < 1.6,
                      httpd-shed >= 0.4 && < 0.5,
                      mtl >= 1.1.1.0 && < 2.3,
                      bytestring >= 0.9.1.5 && < 0.11,

++++++ HTTP.cabal ++++++
Name: HTTP
Version: 4000.3.5
x-revision: 2
Cabal-Version: >= 1.8
Build-type: Simple
License: BSD3
License-file: LICENSE
Author: Warrick Gray <warrick.g...@hotmail.com>
Maintainer: Ganesh Sittampalam <gan...@earth.li>
Homepage: https://github.com/haskell/HTTP
Category: Network
Synopsis: A library for client-side HTTP
Description:

 The HTTP package supports client-side web programming in Haskell. It lets you 
set up
 HTTP connections, transmitting requests and processing the responses coming 
back, all
 from within the comforts of Haskell. It's dependent on the network package to 
operate,
 but other than that, the implementation is all written in Haskell.
 .
 A basic API for issuing single HTTP requests + receiving responses is 
provided. On top
 of that, a session-level abstraction is also on offer  (the @BrowserAction@ 
monad);
 it taking care of handling the management of persistent connections, proxies,
 state (cookies) and authentication credentials required to handle multi-step
 interactions with a web server.
 .
 The representation of the bytes flowing across is extensible via the use of a 
type class,
 letting you pick the representation of requests and responses that best fits 
your use.
 Some pre-packaged, common instances are provided for you (@ByteString@, 
@String@).
 .
 Here's an example use:
 .
 >
 >    do
 >      rsp <- Network.HTTP.simpleHTTP (getRequest "http://www.haskell.org/";)
 >              -- fetch document and return it (as a 'String'.)
 >      fmap (take 100) (getResponseBody rsp)
 >
 >    do
 >      (_, rsp)
 >         <- Network.Browser.browse $ do
 >               setAllowRedirects True -- handle HTTP redirects
 >               request $ getRequest "http://www.haskell.org/";
 >      return (take 100 (rspBody rsp))
 .
 __Note:__ This package does not support HTTPS connections.
 If you need HTTPS, take a look at the following packages:
 .
 * <http://hackage.haskell.org/package/http-streams http-streams>
 .
 * <http://hackage.haskell.org/package/http-client http-client> (in combination 
with
 <http://hackage.haskell.org/package/http-client-tls http-client-tls>)
 .
 * <http://hackage.haskell.org/package/req req>
 .
 * <http://hackage.haskell.org/package/wreq wreq>
 .

Extra-Source-Files: CHANGES

Source-Repository head
  type: git
  location: https://github.com/haskell/HTTP.git

Flag mtl1
  description: Use the old mtl version 1.
  default: False

Flag warn-as-error
  default:     False
  description: Build with warnings-as-errors
  manual:      True

Flag network23
  description: Use version 2.3.x or below of the network package
  default: False

Flag conduit10
  description: Use version 1.0.x or below of the conduit package (for the test 
suite)
  default: False

Flag warp-tests
  description: Test against warp
  default:     True
  manual:      True

flag network-uri
  description: Get Network.URI from the network-uri package
  default: True

Library
  Exposed-modules:
                 Network.BufferType,
                 Network.Stream,
                 Network.StreamDebugger,
                 Network.StreamSocket,
                 Network.TCP,
                 Network.HTTP,
                 Network.HTTP.Headers,
                 Network.HTTP.Base,
                 Network.HTTP.Stream,
                 Network.HTTP.Auth,
                 Network.HTTP.Cookie,
                 Network.HTTP.Proxy,
                 Network.HTTP.HandleStream,
                 Network.Browser
  Other-modules:
                 Network.HTTP.Base64,
                 Network.HTTP.MD5Aux,
                 Network.HTTP.Utils
                 Paths_HTTP
  GHC-options: -fwarn-missing-signatures -Wall

  -- note the test harness constraints should be kept in sync with these
  -- where dependencies are shared
  Build-depends: base >= 4.3.0.0 && < 4.10, parsec >= 2.0 && < 3.2
  Build-depends: array >= 0.3.0.2 && < 0.6, bytestring >= 0.9.1.5 && < 0.11
  Build-depends: time >= 1.1.2.3 && < 1.8

  Extensions: FlexibleInstances

  if flag(mtl1)
    Build-depends: mtl >= 1.1.1.0 && < 1.2
    CPP-Options: -DMTL1
  else
    Build-depends: mtl >= 2.0 && < 2.3

  if flag(network-uri)
    Build-depends: network-uri == 2.6.*, network == 2.6.*
  else
    Build-depends: network >= 2.2.1.8 && < 2.6

  if flag(warn-as-error)
    ghc-options:      -Werror

  if os(windows)
    Build-depends: Win32 >= 2.2.0.0 && < 2.4

Test-Suite test
  type: exitcode-stdio-1.0

  hs-source-dirs: test
  main-is: httpTests.hs

  other-modules:
    Httpd
    UnitTests

  -- note: version constraints for dependencies shared with the library
  -- should be the same
  build-depends:     HTTP,
                     HUnit >= 1.2.0.1 && < 1.6,
                     httpd-shed >= 0.4 && < 0.5,
                     mtl >= 1.1.1.0 && < 2.3,
                     bytestring >= 0.9.1.5 && < 0.11,
                     deepseq >= 1.3.0.0 && < 1.5,
                     pureMD5 >= 0.2.4 && < 2.2,
                     base >= 4.3.0.0 && < 4.10,
                     split >= 0.1.3 && < 0.3,
                     test-framework >= 0.2.0 && < 0.9,
                     test-framework-hunit >= 0.3.0 && <0.4

  if flag(network-uri)
    Build-depends: network-uri == 2.6.*, network == 2.6.*
  else
    Build-depends: network >= 2.2.1.5 && < 2.6

  if flag(warp-tests)
    CPP-Options: -DWARP_TESTS
    build-depends:
                       case-insensitive >= 0.4.0.1 && < 1.3,
                       http-types >= 0.8.0 && < 1.0,
                       wai >= 2.1.0 && < 3.3,
                       warp >= 2.1.0 && < 3.3

    if flag(conduit10)
      build-depends:
                         conduit >= 1.0.8 && < 1.1
    else
      build-depends:
                         conduit >= 1.1 && < 1.3,
                         conduit-extra >= 1.1 && < 1.2



Reply via email to