Compare commits
6 Commits
Author | SHA256 | Date | |
---|---|---|---|
b2ad080eaa | |||
a7fc73e21e | |||
f7dd3f2ca0 | |||
59c40e16bb | |||
2d69cd03a0 | |||
baa5457429 |
@@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 26 16:42:07 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update http-client-tls to version 0.3.6.4 revision 2.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 26 11:01:34 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update http-client-tls to version 0.3.6.4 revision 1.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 27 07:49:17 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update http-client-tls to version 0.3.6.4.
|
||||
## 0.3.6.4
|
||||
|
||||
* data-default-class -> data-default [#546](https://github.com/snoyberg/http-client/pull/546/files)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 17 04:45:01 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ghc-http-client-tls
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -20,12 +20,13 @@
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
%bcond_with tests
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.3.6.3
|
||||
Version: 0.3.6.4
|
||||
Release: 0
|
||||
Summary: Http-client backend using the connection package and tls library
|
||||
License: MIT
|
||||
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
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-base-prof
|
||||
@@ -39,8 +40,8 @@ BuildRequires: ghc-crypton-connection-devel
|
||||
BuildRequires: ghc-crypton-connection-prof
|
||||
BuildRequires: ghc-crypton-devel
|
||||
BuildRequires: ghc-crypton-prof
|
||||
BuildRequires: ghc-data-default-class-devel
|
||||
BuildRequires: ghc-data-default-class-prof
|
||||
BuildRequires: ghc-data-default-devel
|
||||
BuildRequires: ghc-data-default-prof
|
||||
BuildRequires: ghc-exceptions-devel
|
||||
BuildRequires: ghc-exceptions-prof
|
||||
BuildRequires: ghc-http-client-devel
|
||||
@@ -99,6 +100,7 @@ This package provides the Haskell %{pkg_name} profiling library.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{pkg_name}-%{version}
|
||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||
|
||||
%build
|
||||
%ghc_lib_build
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:38dcfc3d772eb6898b4a8856d6159824d13f65eb291733619f625a802dad9095
|
||||
size 7935
|
3
http-client-tls-0.3.6.4.tar.gz
Normal file
3
http-client-tls-0.3.6.4.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7756006fee8ab924c521372e0f9d6705579016b9fab0b0312d1b9a335cfc18a3
|
||||
size 7954
|
59
http-client-tls.cabal
Normal file
59
http-client-tls.cabal
Normal file
@@ -0,0 +1,59 @@
|
||||
name: http-client-tls
|
||||
version: 0.3.6.4
|
||||
x-revision: 2
|
||||
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.10 && < 5
|
||||
, data-default
|
||||
, http-client >= 0.7.11
|
||||
, crypton-connection
|
||||
, network
|
||||
, tls (>=1.2 && < 2.1) || >= 2.1.2
|
||||
, bytestring
|
||||
, case-insensitive
|
||||
, transformers
|
||||
, http-types
|
||||
, crypton
|
||||
, memory
|
||||
, exceptions
|
||||
, containers
|
||||
, text
|
||||
, network-uri
|
||||
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
|
||||
, hspec
|
||||
, http-client
|
||||
, http-client-tls
|
||||
, http-types
|
||||
, crypton-connection
|
||||
|
||||
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
|
Reference in New Issue
Block a user