diff --git a/.gitignore b/.gitignore index 3a9d8f0..13b40b4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /x509-validation-1.6.9.tar.gz /x509-validation-1.6.10.tar.gz +/x509-validation-1.6.11.tar.gz diff --git a/ghc-x509-validation.spec b/ghc-x509-validation.spec index fcd3c69..0235a5c 100644 --- a/ghc-x509-validation.spec +++ b/ghc-x509-validation.spec @@ -5,15 +5,14 @@ %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 1.6.10 -Release: 6%{?dist} +Version: 1.6.11 +Release: 1%{?dist} Summary: X.509 Certificate and CRL validation License: BSD 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: @@ -34,7 +33,7 @@ BuildRequires: ghc-x509-store-devel # End cabal-rpm deps %description -X.509 Certificate and CRL validation. +X.509 Certificate and CRL validation. please see README. %package devel @@ -56,7 +55,6 @@ files. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -90,6 +88,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Feb 21 2019 Jens Petersen - 1.6.11-1 +- update to 1.6.11 + * Sun Feb 17 2019 Jens Petersen - 1.6.10-6 - refresh to cabal-rpm-0.13 diff --git a/sources b/sources index bdfc286..b414710 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (x509-validation-1.6.10.tar.gz) = f46dc7aeea1c1650ce8711d87f95d2b61bd0ead64df5176aa4ba0a9be435c4aa76a7a2f02acb58b7cdafd533a387e43ffb7078d7c84b1f5b90dd76b68da248ae +SHA512 (x509-validation-1.6.11.tar.gz) = 5c156b7018afabedac0c2ee6192c536cf09eacdaf9265490a7f4a7d336077dc198a07f16bf58f3fec04a1350f0a8b3c050380673612cf5695c9e7b5a73a4ebf4 diff --git a/x509-validation-1.6.10.cabal b/x509-validation-1.6.10.cabal deleted file mode 100644 index 5c2e3cb..0000000 --- a/x509-validation-1.6.10.cabal +++ /dev/null @@ -1,62 +0,0 @@ -Name: x509-validation -version: 1.6.10 -x-revision: 1 -Description: X.509 Certificate and CRL validation -License: BSD3 -License-file: LICENSE -Copyright: Vincent Hanquez -Author: Vincent Hanquez -Maintainer: Vincent Hanquez -Synopsis: X.509 Certificate and CRL validation -Build-Type: Simple -Category: Data -stability: experimental -Homepage: http://github.com/vincenthz/hs-certificate -Cabal-Version: >= 1.10 - -Library - Default-Language: Haskell2010 - Build-Depends: base >= 3 && < 5 - , bytestring - , memory - , mtl - , containers - , hourglass - , data-default-class - , pem >= 0.1 - , asn1-types >= 0.3 && < 0.4 - , asn1-encoding >= 0.9 && < 0.10 - , x509 >= 1.7.2 - , x509-store >= 1.6 - , cryptonite >= 0.8 - Exposed-modules: Data.X509.Validation - Other-modules: Data.X509.Validation.Signature - Data.X509.Validation.Fingerprint - Data.X509.Validation.Cache - Data.X509.Validation.Types - ghc-options: -Wall - -Test-Suite test-x509-validation - Default-Language: Haskell2010 - type: exitcode-stdio-1.0 - hs-source-dirs: Tests - Main-is: Tests.hs - Other-modules: Certificate - Build-Depends: base >= 3 && < 5 - , bytestring - , data-default-class - , tasty - , tasty-hunit - , hourglass - , asn1-types - , asn1-encoding - , x509 >= 1.7.1 - , x509-store - , x509-validation - , cryptonite - ghc-options: -Wall - -source-repository head - type: git - location: git://github.com/vincenthz/hs-certificate - subdir: x509-validation