update to 0.3.6.1
This commit is contained in:
parent
a5e58e02ce
commit
ec89debd1f
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
/http-client-tls-0.3.5.1.tar.gz
|
||||
/http-client-tls-0.3.5.3.tar.gz
|
||||
/http-client-tls-0.3.6.1.tar.gz
|
||||
|
@ -1,4 +1,4 @@
|
||||
# generated by cabal-rpm-2.0.9
|
||||
# generated by cabal-rpm-2.1.0
|
||||
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
||||
|
||||
%global pkg_name http-client-tls
|
||||
@ -7,20 +7,36 @@
|
||||
%bcond_with tests
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.3.5.3
|
||||
Release: 18%{?dist}
|
||||
Version: 0.3.6.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Http-client backend using the connection package and tls library
|
||||
|
||||
License: MIT
|
||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||
# Begin cabal-rpm sources:
|
||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||
Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
|
||||
# End cabal-rpm sources
|
||||
|
||||
# Begin cabal-rpm deps:
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-bytestring-devel
|
||||
BuildRequires: ghc-case-insensitive-devel
|
||||
BuildRequires: ghc-connection-devel
|
||||
BuildRequires: ghc-containers-devel
|
||||
BuildRequires: ghc-cryptonite-devel
|
||||
BuildRequires: ghc-data-default-class-devel
|
||||
BuildRequires: ghc-exceptions-devel
|
||||
BuildRequires: ghc-http-client-devel
|
||||
BuildRequires: ghc-http-types-devel
|
||||
BuildRequires: ghc-memory-devel
|
||||
BuildRequires: ghc-network-devel
|
||||
BuildRequires: ghc-network-uri-devel
|
||||
BuildRequires: ghc-text-devel
|
||||
BuildRequires: ghc-tls-devel
|
||||
BuildRequires: ghc-transformers-devel
|
||||
%if %{with ghc_prof}
|
||||
BuildRequires: ghc-base-prof
|
||||
BuildRequires: ghc-bytestring-prof
|
||||
BuildRequires: ghc-case-insensitive-prof
|
||||
@ -37,6 +53,7 @@ BuildRequires: ghc-network-uri-prof
|
||||
BuildRequires: ghc-text-prof
|
||||
BuildRequires: ghc-tls-prof
|
||||
BuildRequires: ghc-transformers-prof
|
||||
%endif
|
||||
%if %{with tests}
|
||||
BuildRequires: ghc-hspec-devel
|
||||
%endif
|
||||
@ -86,7 +103,6 @@ This package provides the Haskell %{pkg_name} profiling library.
|
||||
%prep
|
||||
# Begin cabal-rpm setup:
|
||||
%setup -q -n %{pkgver}
|
||||
cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||
# End cabal-rpm setup
|
||||
|
||||
|
||||
@ -130,6 +146,10 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Jan 22 2023 Jens Petersen <petersen@redhat.com> - 0.3.6.1-1
|
||||
- https://hackage.haskell.org/package/http-client-tls-0.3.6.1/changelog
|
||||
- refresh to cabal-rpm-2.1.0 with SPDX migration
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.5.3-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
|
@ -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
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (http-client-tls-0.3.5.3.tar.gz) = df4fff9fbd6736a52d54bf04669107b24e3d31c22b0f7882310204ca4ef1a895e9f79cea289423341aa575759a2667ff9ca86b889567605ad3daec266a1bbb14
|
||||
SHA512 (http-client-tls-0.3.6.1.tar.gz) = 81b6e9ad3956f237bec83173ab8ac153ea3e9b555f0a84dc6ec0a13f6ad96dfc104d61125b66fc8733c8d8c3b7f8fc5e89cfcb885a7352f3af2e2b5473732294
|
||||
|
Loading…
Reference in New Issue
Block a user