osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-http-client-tls revision:16, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-http-client-tls?expand=0&rev=64
This commit is contained in:
parent
3d4a13ce2f
commit
62db9a2874
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 8 12:04:47 UTC 2022 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update http-client-tls to version 0.3.6.
|
||||||
|
# Changelog for http-client-tls
|
||||||
|
|
||||||
|
## 0.3.6
|
||||||
|
|
||||||
|
* Allow making requests to raw IPv6 hosts [#477](https://github.com/snoyberg/http-client/pull/477)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-http-client-tls
|
# spec file for package ghc-http-client-tls
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,13 +19,12 @@
|
|||||||
%global pkg_name http-client-tls
|
%global pkg_name http-client-tls
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.3.5.3
|
Version: 0.3.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Http-client backend using the connection package and tls library
|
Summary: Http-client backend using the connection package and tls library
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||||
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
|
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
BuildRequires: ghc-case-insensitive-devel
|
BuildRequires: ghc-case-insensitive-devel
|
||||||
@ -65,7 +64,6 @@ files.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{pkg_name}-%{version}
|
%autosetup -n %{pkg_name}-%{version}
|
||||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:471abf8f29a909f40b21eab26a410c0e120ae12ce337512a61dae9f52ebb4362
|
|
||||||
size 7679
|
|
3
http-client-tls-0.3.6.tar.gz
Normal file
3
http-client-tls-0.3.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6de72bf4b28434aae8caace5beea0e5ae28d9df6725684b6ede71731f75cd730
|
||||||
|
size 7817
|
@ -1,59 +0,0 @@
|
|||||||
name: http-client-tls
|
|
||||||
version: 0.3.5.3
|
|
||||||
x-revision: 1
|
|
||||||
synopsis: http-client backend using the connection package and tls library
|
|
||||||
description: Hackage documentation generation is not reliable. For up to date documentation, please see: <https://www.stackage.org/package/http-client-tls>.
|
|
||||||
homepage: https://github.com/snoyberg/http-client
|
|
||||||
license: MIT
|
|
||||||
license-file: LICENSE
|
|
||||||
author: Michael Snoyman
|
|
||||||
maintainer: michael@snoyman.com
|
|
||||||
category: Network
|
|
||||||
build-type: Simple
|
|
||||||
cabal-version: >=1.10
|
|
||||||
extra-source-files: README.md
|
|
||||||
ChangeLog.md
|
|
||||||
|
|
||||||
library
|
|
||||||
exposed-modules: Network.HTTP.Client.TLS
|
|
||||||
other-extensions: ScopedTypeVariables
|
|
||||||
build-depends: base >= 4 && < 5
|
|
||||||
, data-default-class
|
|
||||||
, http-client >= 0.5.0
|
|
||||||
, connection >= 0.2.5
|
|
||||||
, network >= 2.6
|
|
||||||
, tls >= 1.2
|
|
||||||
, bytestring
|
|
||||||
, case-insensitive
|
|
||||||
, transformers
|
|
||||||
, http-types
|
|
||||||
, cryptonite
|
|
||||||
, memory
|
|
||||||
, exceptions
|
|
||||||
, containers
|
|
||||||
, text
|
|
||||||
, network-uri >= 2.6
|
|
||||||
default-language: Haskell2010
|
|
||||||
ghc-options: -Wall
|
|
||||||
|
|
||||||
test-suite spec
|
|
||||||
main-is: Spec.hs
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
hs-source-dirs: test
|
|
||||||
default-language: Haskell2010
|
|
||||||
build-depends: base
|
|
||||||
, connection
|
|
||||||
, hspec
|
|
||||||
, http-client
|
|
||||||
, http-client-tls
|
|
||||||
, http-types
|
|
||||||
|
|
||||||
benchmark benchmark
|
|
||||||
main-is: Bench.hs
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
hs-source-dirs: bench
|
|
||||||
default-language: Haskell2010
|
|
||||||
build-depends: base
|
|
||||||
, gauge
|
|
||||||
, http-client
|
|
||||||
, http-client-tls
|
|
Loading…
Reference in New Issue
Block a user