Accepting request 477452 from devel:languages:haskell

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/477452
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-http-client-tls?expand=0&rev=6
This commit is contained in:
Dominique Leuenberger 2017-03-20 16:07:22 +00:00 committed by Git OBS Bridge
commit b0f1ca2823
5 changed files with 25 additions and 46 deletions

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Feb 27 10:12:07 UTC 2017 - psimons@suse.com
- Update to version 0.3.4 with cabal2obs.
-------------------------------------------------------------------
Sun Feb 12 14:17:39 UTC 2017 - psimons@suse.com
- Update to version 0.3.3.1 with cabal2obs.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Sep 20 10:06:14 UTC 2016 - psimons@suse.com Tue Sep 20 10:06:14 UTC 2016 - psimons@suse.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package ghc-http-client-tls # spec file for package ghc-http-client-tls
# #
# 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 # 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,26 +19,33 @@
%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.2.4.1 Version: 0.3.4
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
Group: Development/Languages/Other Group: Development/Languages/Other
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-connection-devel BuildRequires: ghc-connection-devel
BuildRequires: ghc-containers-devel
BuildRequires: ghc-cryptonite-devel
BuildRequires: ghc-data-default-class-devel BuildRequires: ghc-data-default-class-devel
BuildRequires: ghc-exceptions-devel
BuildRequires: ghc-http-client-devel BuildRequires: ghc-http-client-devel
BuildRequires: ghc-http-types-devel
BuildRequires: ghc-memory-devel
BuildRequires: ghc-network-devel BuildRequires: ghc-network-devel
BuildRequires: ghc-network-uri-devel
BuildRequires: ghc-rpm-macros BuildRequires: ghc-rpm-macros
BuildRequires: ghc-text-devel
BuildRequires: ghc-tls-devel BuildRequires: ghc-tls-devel
BuildRequires: ghc-transformers-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if %{with tests} %if %{with tests}
BuildRequires: ghc-hspec-devel BuildRequires: ghc-hspec-devel
BuildRequires: ghc-http-types-devel
%endif %endif
%description %description
@ -59,7 +66,6 @@ files.
%prep %prep
%setup -q -n %{pkg_name}-%{version} %setup -q -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal
%build %build
%ghc_lib_build %ghc_lib_build
@ -82,5 +88,6 @@ cp -p %{SOURCE1} %{pkg_name}.cabal
%files devel -f %{name}-devel.files %files devel -f %{name}-devel.files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc ChangeLog.md README.md
%changelog %changelog

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8dc85884e15cd32f59a47e11861d78566c6ccb202e8d317403b784278f628ba3
size 3566

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:37693b0ebcfa6ce796abf39647ff4df17361ab1ab1f999ac10faba67d3042bc1
size 6976

View File

@ -1,38 +0,0 @@
name: http-client-tls
version: 0.2.4.1
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.3.5 && <0.5
, connection >= 0.2.2
, network
, tls >= 1.2
, bytestring
default-language: Haskell2010
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