Accepting request 1178302 from devel:languages:haskell
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/1178302 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-tls?expand=0&rev=35
This commit is contained in:
commit
1cb67d69e8
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 22 04:38:33 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update tls to version 2.0.6.
|
||||||
|
## Version 2.0.6
|
||||||
|
|
||||||
|
* Setting `supportedCiphers` in `defaultSupported` to `ciphersuite_default`.
|
||||||
|
So, users don't have to override this value anymore by exporting
|
||||||
|
`Network.TLS.Extra.Cipher`.
|
||||||
|
[#471](https://github.com/haskell-tls/hs-tls/pull/471)
|
||||||
|
* `ciphersuite_default` is the same as `ciphersuite_strong`.
|
||||||
|
So, the duplicated definition is removed.
|
||||||
|
* Add missing modules for util/tls-client and util/tls-server.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 26 05:59:56 UTC 2024 - Peter Simons <psimons@suse.com>
|
Fri Apr 26 05:59:56 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
@ -20,13 +20,12 @@
|
|||||||
%global pkgver %{pkg_name}-%{version}
|
%global pkgver %{pkg_name}-%{version}
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 2.0.5
|
Version: 2.0.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: TLS protocol native implementation
|
Summary: TLS protocol native implementation
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
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-asn1-encoding-devel
|
BuildRequires: ghc-asn1-encoding-devel
|
||||||
BuildRequires: ghc-asn1-encoding-prof
|
BuildRequires: ghc-asn1-encoding-prof
|
||||||
@ -106,7 +105,6 @@ This package provides the Haskell %{pkg_name} profiling library.
|
|||||||
|
|
||||||
%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:dfd86d0a223a2c97ae5e43ba66e1d8566a9e2754018eb3564442a570e17afce1
|
|
||||||
size 160741
|
|
3
tls-2.0.6.tar.gz
Normal file
3
tls-2.0.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a3eaba2d45172ac5311e5a0c3833d2947d92d38f090f5cef744e380926b49f1d
|
||||||
|
size 160807
|
225
tls.cabal
225
tls.cabal
@ -1,225 +0,0 @@
|
|||||||
cabal-version: >=1.10
|
|
||||||
name: tls
|
|
||||||
version: 2.0.5
|
|
||||||
x-revision: 1
|
|
||||||
license: BSD3
|
|
||||||
license-file: LICENSE
|
|
||||||
copyright: Vincent Hanquez <vincent@snarc.org>
|
|
||||||
maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
|
|
||||||
author: Vincent Hanquez <vincent@snarc.org>
|
|
||||||
homepage: https://github.com/haskell-tls/hs-tls
|
|
||||||
synopsis: TLS protocol native implementation
|
|
||||||
description:
|
|
||||||
Native Haskell TLS 1.2/1.3 protocol implementation for servers and clients.
|
|
||||||
|
|
||||||
category: Network
|
|
||||||
build-type: Simple
|
|
||||||
extra-source-files:
|
|
||||||
test/*.hs
|
|
||||||
CHANGELOG.md
|
|
||||||
|
|
||||||
source-repository head
|
|
||||||
type: git
|
|
||||||
location: https://github.com/haskell-tls/hs-tls
|
|
||||||
subdir: core
|
|
||||||
|
|
||||||
flag devel
|
|
||||||
description: Development commands
|
|
||||||
default: False
|
|
||||||
|
|
||||||
library
|
|
||||||
exposed-modules:
|
|
||||||
Network.TLS
|
|
||||||
Network.TLS.Cipher
|
|
||||||
Network.TLS.Compression
|
|
||||||
Network.TLS.Internal
|
|
||||||
Network.TLS.Extra
|
|
||||||
Network.TLS.Extra.Cipher
|
|
||||||
Network.TLS.Extra.FFDHE
|
|
||||||
Network.TLS.QUIC
|
|
||||||
|
|
||||||
other-modules:
|
|
||||||
Network.TLS.Struct
|
|
||||||
Network.TLS.Struct13
|
|
||||||
Network.TLS.Core
|
|
||||||
Network.TLS.Context
|
|
||||||
Network.TLS.Context.Internal
|
|
||||||
Network.TLS.Credentials
|
|
||||||
Network.TLS.Backend
|
|
||||||
Network.TLS.Crypto
|
|
||||||
Network.TLS.Crypto.DH
|
|
||||||
Network.TLS.Crypto.IES
|
|
||||||
Network.TLS.Crypto.Types
|
|
||||||
Network.TLS.ErrT
|
|
||||||
Network.TLS.Extension
|
|
||||||
Network.TLS.Handshake
|
|
||||||
Network.TLS.Handshake.Certificate
|
|
||||||
Network.TLS.Handshake.Client
|
|
||||||
Network.TLS.Handshake.Client.ClientHello
|
|
||||||
Network.TLS.Handshake.Client.Common
|
|
||||||
Network.TLS.Handshake.Client.ServerHello
|
|
||||||
Network.TLS.Handshake.Client.TLS12
|
|
||||||
Network.TLS.Handshake.Client.TLS13
|
|
||||||
Network.TLS.Handshake.Common
|
|
||||||
Network.TLS.Handshake.Common13
|
|
||||||
Network.TLS.Handshake.Control
|
|
||||||
Network.TLS.Handshake.Key
|
|
||||||
Network.TLS.Handshake.Process
|
|
||||||
Network.TLS.Handshake.Random
|
|
||||||
Network.TLS.Handshake.Server
|
|
||||||
Network.TLS.Handshake.Server.ClientHello
|
|
||||||
Network.TLS.Handshake.Server.ClientHello12
|
|
||||||
Network.TLS.Handshake.Server.ClientHello13
|
|
||||||
Network.TLS.Handshake.Server.Common
|
|
||||||
Network.TLS.Handshake.Server.ServerHello12
|
|
||||||
Network.TLS.Handshake.Server.ServerHello13
|
|
||||||
Network.TLS.Handshake.Server.TLS12
|
|
||||||
Network.TLS.Handshake.Server.TLS13
|
|
||||||
Network.TLS.Handshake.Signature
|
|
||||||
Network.TLS.Handshake.State
|
|
||||||
Network.TLS.Handshake.State13
|
|
||||||
Network.TLS.Hooks
|
|
||||||
Network.TLS.IO
|
|
||||||
Network.TLS.Imports
|
|
||||||
Network.TLS.KeySchedule
|
|
||||||
Network.TLS.MAC
|
|
||||||
Network.TLS.Measurement
|
|
||||||
Network.TLS.Packet
|
|
||||||
Network.TLS.Packet13
|
|
||||||
Network.TLS.Parameters
|
|
||||||
Network.TLS.PostHandshake
|
|
||||||
Network.TLS.Record
|
|
||||||
Network.TLS.Record.Disengage
|
|
||||||
Network.TLS.Record.Engage
|
|
||||||
Network.TLS.Record.Layer
|
|
||||||
Network.TLS.Record.Reading
|
|
||||||
Network.TLS.Record.Writing
|
|
||||||
Network.TLS.Record.State
|
|
||||||
Network.TLS.Record.Types
|
|
||||||
Network.TLS.RNG
|
|
||||||
Network.TLS.State
|
|
||||||
Network.TLS.Session
|
|
||||||
Network.TLS.Sending
|
|
||||||
Network.TLS.Receiving
|
|
||||||
Network.TLS.Util
|
|
||||||
Network.TLS.Util.ASN1
|
|
||||||
Network.TLS.Util.Serialization
|
|
||||||
Network.TLS.Types
|
|
||||||
Network.TLS.Wire
|
|
||||||
Network.TLS.X509
|
|
||||||
|
|
||||||
default-extensions: Strict StrictData
|
|
||||||
default-language: Haskell2010
|
|
||||||
ghc-options: -Wall
|
|
||||||
build-depends:
|
|
||||||
base >=4.9 && <5,
|
|
||||||
asn1-encoding >= 0.9 && < 0.10,
|
|
||||||
asn1-types >= 0.3 && < 0.4,
|
|
||||||
async >= 2.2 && < 2.3,
|
|
||||||
base16-bytestring,
|
|
||||||
bytestring >= 0.10 && < 0.13,
|
|
||||||
cereal >= 0.5.3 && < 0.6,
|
|
||||||
crypton >= 0.34,
|
|
||||||
crypton-x509 >= 1.7 && < 1.8,
|
|
||||||
crypton-x509-store >= 1.6 && < 1.7,
|
|
||||||
crypton-x509-validation >= 1.6.5 && < 1.7,
|
|
||||||
data-default-class >= 0.1 && < 0.2,
|
|
||||||
memory >= 0.18 && < 0.19,
|
|
||||||
mtl >= 2.2 && < 2.4,
|
|
||||||
network >= 3.1,
|
|
||||||
serialise >= 0.2 && < 0.3,
|
|
||||||
transformers >= 0.5 && < 0.7,
|
|
||||||
unix-time >= 0.4.11 && < 0.5
|
|
||||||
|
|
||||||
test-suite spec
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
main-is: Spec.hs
|
|
||||||
build-tool-depends: hspec-discover:hspec-discover
|
|
||||||
hs-source-dirs: test
|
|
||||||
other-modules:
|
|
||||||
API
|
|
||||||
Arbitrary
|
|
||||||
Certificate
|
|
||||||
CiphersSpec
|
|
||||||
EncodeSpec
|
|
||||||
HandshakeSpec
|
|
||||||
PipeChan
|
|
||||||
PubKey
|
|
||||||
Run
|
|
||||||
Session
|
|
||||||
ThreadSpec
|
|
||||||
|
|
||||||
default-extensions: Strict StrictData
|
|
||||||
default-language: Haskell2010
|
|
||||||
ghc-options: -Wall -threaded -rtsopts
|
|
||||||
build-depends:
|
|
||||||
base >=4.9 && <5,
|
|
||||||
QuickCheck,
|
|
||||||
asn1-types,
|
|
||||||
async,
|
|
||||||
bytestring,
|
|
||||||
crypton,
|
|
||||||
crypton-x509,
|
|
||||||
crypton-x509-validation,
|
|
||||||
data-default-class,
|
|
||||||
hourglass,
|
|
||||||
hspec,
|
|
||||||
serialise,
|
|
||||||
tls
|
|
||||||
|
|
||||||
executable tls-server
|
|
||||||
main-is: tls-server.hs
|
|
||||||
hs-source-dirs: util
|
|
||||||
other-modules:
|
|
||||||
Common
|
|
||||||
Server
|
|
||||||
Imports
|
|
||||||
|
|
||||||
default-language: Haskell2010
|
|
||||||
default-extensions: Strict StrictData
|
|
||||||
ghc-options: -Wall -threaded -rtsopts
|
|
||||||
build-depends:
|
|
||||||
base >=4.9 && <5,
|
|
||||||
bytestring,
|
|
||||||
containers,
|
|
||||||
crypton,
|
|
||||||
crypton-x509-store,
|
|
||||||
crypton-x509-system,
|
|
||||||
data-default-class,
|
|
||||||
network,
|
|
||||||
network-run,
|
|
||||||
tls,
|
|
||||||
unliftio
|
|
||||||
|
|
||||||
if flag(devel)
|
|
||||||
|
|
||||||
else
|
|
||||||
buildable: False
|
|
||||||
|
|
||||||
executable tls-client
|
|
||||||
main-is: tls-client.hs
|
|
||||||
hs-source-dirs: util
|
|
||||||
other-modules:
|
|
||||||
Client
|
|
||||||
Common
|
|
||||||
Imports
|
|
||||||
|
|
||||||
default-language: Haskell2010
|
|
||||||
default-extensions: Strict StrictData
|
|
||||||
ghc-options: -Wall -threaded -rtsopts
|
|
||||||
build-depends:
|
|
||||||
base >=4.9 && <5,
|
|
||||||
bytestring,
|
|
||||||
crypton,
|
|
||||||
crypton-x509-store,
|
|
||||||
crypton-x509-system,
|
|
||||||
data-default-class,
|
|
||||||
network,
|
|
||||||
network-run,
|
|
||||||
tls,
|
|
||||||
unliftio
|
|
||||||
|
|
||||||
if flag(devel)
|
|
||||||
|
|
||||||
else
|
|
||||||
buildable: False
|
|
Loading…
Reference in New Issue
Block a user