Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-http-client-restricted for
openSUSE:Factory checked in at 2021-01-20 18:26:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-http-client-restricted (Old)
and /work/SRC/openSUSE:Factory/.ghc-http-client-restricted.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-http-client-restricted"
Wed Jan 20 18:26:05 2021 rev:4 rq:864459 version:0.0.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-http-client-restricted/ghc-http-client-restricted.changes
2020-12-22 11:40:59.309592738 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-http-client-restricted.new.28504/ghc-http-client-restricted.changes
2021-01-20 18:26:26.627461830 +0100
@@ -1,0 +2,10 @@
+Wed Jan 13 15:28:49 UTC 2021 - [email protected]
+
+- Update http-client-restricted to version 0.0.4.
+ http-client-restricted (0.0.4) unstable; urgency=medium
+
+ * Update to http-client 0.7.
+
+ -- Joey Hess <[email protected]> Tue, 12 Jan 2021 13:37:00 -0400
+
+-------------------------------------------------------------------
Old:
----
http-client-restricted-0.0.3.tar.gz
New:
----
http-client-restricted-0.0.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-http-client-restricted.spec ++++++
--- /var/tmp/diff_new_pack.fSYMnZ/_old 2021-01-20 18:26:28.135463266 +0100
+++ /var/tmp/diff_new_pack.fSYMnZ/_new 2021-01-20 18:26:28.139463269 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-http-client-restricted
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%global pkg_name http-client-restricted
Name: ghc-%{pkg_name}
-Version: 0.0.3
+Version: 0.0.4
Release: 0
Summary: Restricting the servers that http-client will use
License: MIT
@@ -59,7 +59,6 @@
%prep
%autosetup -n %{pkg_name}-%{version}
-cabal-tweak-dep-ver http-client '< 0.7' '< 1'
%build
%ghc_lib_build
++++++ http-client-restricted-0.0.3.tar.gz ->
http-client-restricted-0.0.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/http-client-restricted-0.0.3/CHANGELOG
new/http-client-restricted-0.0.4/CHANGELOG
--- old/http-client-restricted-0.0.3/CHANGELOG 2001-09-09 03:46:40.000000000
+0200
+++ new/http-client-restricted-0.0.4/CHANGELOG 2001-09-09 03:46:40.000000000
+0200
@@ -1,3 +1,9 @@
+http-client-restricted (0.0.4) unstable; urgency=medium
+
+ * Update to http-client 0.7.
+
+ -- Joey Hess <[email protected]> Tue, 12 Jan 2021 13:37:00 -0400
+
http-client-restricted (0.0.3) unstable; urgency=medium
* Update to http-client 0.6.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/http-client-restricted-0.0.3/Network/HTTP/Client/Restricted.hs
new/http-client-restricted-0.0.4/Network/HTTP/Client/Restricted.hs
--- old/http-client-restricted-0.0.3/Network/HTTP/Client/Restricted.hs
2001-09-09 03:46:40.000000000 +0200
+++ new/http-client-restricted-0.0.4/Network/HTTP/Client/Restricted.hs
2001-09-09 03:46:40.000000000 +0200
@@ -1,4 +1,10 @@
{- | Restricted `ManagerSettings` for
<https://haskell-lang.org/library/http-client>
+ -
+ - Copyright 2018 Joey Hess <[email protected]>
+ -
+ - Portions from http-client-tls Copyright (c) 2013 Michael Snoyman
+ -
+ - License: MIT
-}
{-# LANGUAGE ScopedTypeVariables, DeriveDataTypeable, LambdaCase,
PatternGuards #-}
@@ -15,8 +21,7 @@
) where
import Network.HTTP.Client
-import Network.HTTP.Client.Internal
- (ManagerSettings(..), Connection, runProxyOverride, makeConnection)
+import Network.HTTP.Client.Internal (ManagerSettings(..), Connection,
runProxyOverride)
import Network.HTTP.Client.TLS (mkManagerSettingsContext)
import Network.Socket
import Network.BSD (getProtocolNumber)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/http-client-restricted-0.0.3/http-client-restricted.cabal
new/http-client-restricted-0.0.4/http-client-restricted.cabal
--- old/http-client-restricted-0.0.3/http-client-restricted.cabal
2001-09-09 03:46:40.000000000 +0200
+++ new/http-client-restricted-0.0.4/http-client-restricted.cabal
2001-09-09 03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
Name: http-client-restricted
-Version: 0.0.3
+Version: 0.0.4
Cabal-Version: >= 1.10
Maintainer: Joey Hess <[email protected]>
Author: Joey Hess
@@ -27,7 +27,7 @@
Network.HTTP.Client.Restricted
Build-Depends:
base >= 4.11.1.0 && < 5.0
- , http-client >= 0.6 && < 0.7
+ , http-client >= 0.7 && < 0.8
, http-client-tls >= 0.3.2 && < 0.4
, connection >= 0.2.5
, data-default