update to 1.7.7

This commit is contained in:
Jens Petersen 2023-01-23 01:53:48 +08:00
parent 3975c9cb38
commit 2b45978968
4 changed files with 91 additions and 6 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
/x509-1.7.3.tar.gz
/x509-1.7.5.tar.gz
/x509-1.7.6.tar.gz
/x509-1.7.7.tar.gz

View File

@ -1,4 +1,4 @@
# generated by cabal-rpm-2.0.12
# generated by cabal-rpm-2.1.0
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
%global pkg_name x509
@ -7,11 +7,11 @@
%bcond_without tests
Name: ghc-%{pkg_name}
Version: 1.7.6
Release: 2%{?dist}
Version: 1.7.7
Release: 1%{?dist}
Summary: X509 reader and writer
License: BSD
License: BSD-3-Clause
Url: https://hackage.haskell.org/package/%{pkg_name}
# Begin cabal-rpm sources:
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
@ -21,6 +21,18 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#
# Begin cabal-rpm deps:
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-asn1-encoding-devel
BuildRequires: ghc-asn1-parse-devel
BuildRequires: ghc-asn1-types-devel
BuildRequires: ghc-base-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-containers-devel
BuildRequires: ghc-cryptonite-devel
BuildRequires: ghc-hourglass-devel
BuildRequires: ghc-memory-devel
BuildRequires: ghc-pem-devel
BuildRequires: ghc-transformers-devel
%if %{with ghc_prof}
BuildRequires: ghc-asn1-encoding-prof
BuildRequires: ghc-asn1-parse-prof
BuildRequires: ghc-asn1-types-prof
@ -30,9 +42,11 @@ BuildRequires: ghc-containers-prof
BuildRequires: ghc-cryptonite-prof
BuildRequires: ghc-hourglass-prof
BuildRequires: ghc-memory-prof
BuildRequires: ghc-mtl-prof
BuildRequires: ghc-pem-prof
BuildRequires: ghc-transformers-prof
%endif
%if %{with tests}
BuildRequires: ghc-mtl-devel
BuildRequires: ghc-tasty-devel
BuildRequires: ghc-tasty-quickcheck-devel
%endif
@ -109,6 +123,7 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%files devel -f %{name}-devel.files
%doc ChangeLog.md
%if %{with haddock}
@ -123,6 +138,10 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%changelog
* Sun Jan 22 2023 Jens Petersen <petersen@redhat.com> - 1.7.7-1
- https://hackage.haskell.org/package/x509-1.7.7/changelog
- refresh to cabal-rpm-2.1.0 with SPDX migration
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.6-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (x509-1.7.6.tar.gz) = 5f6ef17af8901a3855d321d050b3fc1a95f58a4af52c62b244b07c63a6a48474150e8200adbdd2f048ede36d1eacf6c99315b2ef15d7710aa8e73467c900ab4e
SHA512 (x509-1.7.7.tar.gz) = 36f7f703e3bd2e0f2780091901f0558fd49c568c565cabb4a638a7428e212e882aaf8e1ec0de9b1cf97296858293418d7030a4d4fe9eddb5b07656d6ee84eea6

65
x509-1.7.7.cabal Normal file
View File

@ -0,0 +1,65 @@
Name: x509
version: 1.7.7
Description: X509 reader and writer. please see README
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <vincent@snarc.org>
Author: Vincent Hanquez <vincent@snarc.org>
Maintainer: Vincent Hanquez <vincent@snarc.org>
Synopsis: X509 reader and writer
Build-Type: Simple
Category: Data
stability: experimental
Homepage: http://github.com/vincenthz/hs-certificate
Cabal-Version: >= 1.10
Extra-Source-Files: ChangeLog.md
Library
Default-Language: Haskell2010
Build-Depends: base >= 4.7 && < 5
, bytestring
, memory
, transformers >= 0.4
, containers
, hourglass
, pem >= 0.1
, asn1-types >= 0.3.1 && < 0.4
, asn1-encoding >= 0.9 && < 0.10
, asn1-parse >= 0.9.3 && < 0.10
, cryptonite >= 0.24
Exposed-modules: Data.X509
Data.X509.EC
Other-modules: Data.X509.Internal
Data.X509.CertificateChain
Data.X509.AlgorithmIdentifier
Data.X509.DistinguishedName
Data.X509.Cert
Data.X509.PublicKey
Data.X509.PrivateKey
Data.X509.Ext
Data.X509.ExtensionRaw
Data.X509.CRL
Data.X509.OID
Data.X509.Signed
ghc-options: -Wall
Test-Suite test-x509
Default-Language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: Tests
Main-is: Tests.hs
Build-Depends: base >= 3 && < 5
, bytestring
, mtl
, tasty
, tasty-quickcheck
, hourglass
, asn1-types
, x509
, cryptonite
ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures
source-repository head
type: git
location: git://github.com/vincenthz/hs-certificate
subdir: x509