update to 0.9.6
This commit is contained in:
parent
6bff099259
commit
672a5432b0
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/asn1-encoding-0.9.5.tar.gz
|
/asn1-encoding-0.9.5.tar.gz
|
||||||
|
/asn1-encoding-0.9.6.tar.gz
|
||||||
|
56
asn1-encoding-0.9.6.cabal
Normal file
56
asn1-encoding-0.9.6.cabal
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
Name: asn1-encoding
|
||||||
|
Version: 0.9.6
|
||||||
|
x-revision: 1
|
||||||
|
Synopsis: ASN1 data reader and writer in RAW, BER and DER forms
|
||||||
|
Description:
|
||||||
|
ASN1 data reader and writer in raw form with supports for high level forms of ASN1 (BER, and DER).
|
||||||
|
License: BSD3
|
||||||
|
License-file: LICENSE
|
||||||
|
Copyright: Vincent Hanquez <vincent@snarc.org>
|
||||||
|
Author: Vincent Hanquez <vincent@snarc.org>
|
||||||
|
Maintainer: vincent@snarc.org
|
||||||
|
Category: Data
|
||||||
|
stability: experimental
|
||||||
|
Build-Type: Simple
|
||||||
|
Cabal-Version: >=1.10
|
||||||
|
Homepage: https://github.com/vincenthz/hs-asn1
|
||||||
|
|
||||||
|
Library
|
||||||
|
Exposed-modules: Data.ASN1.Error
|
||||||
|
Data.ASN1.BinaryEncoding
|
||||||
|
Data.ASN1.BinaryEncoding.Raw
|
||||||
|
Data.ASN1.Encoding
|
||||||
|
Data.ASN1.Stream
|
||||||
|
Data.ASN1.Object
|
||||||
|
Data.ASN1.Prim
|
||||||
|
other-modules: Data.ASN1.BinaryEncoding.Parse
|
||||||
|
Data.ASN1.BinaryEncoding.Writer
|
||||||
|
Data.ASN1.Internal
|
||||||
|
Data.ASN1.Serialize
|
||||||
|
Data.ASN1.Get
|
||||||
|
Build-Depends: base >= 4.7 && < 5
|
||||||
|
, bytestring < 0.11
|
||||||
|
, hourglass >= 0.2.6
|
||||||
|
, asn1-types >= 0.3.0 && < 0.4
|
||||||
|
ghc-options: -Wall -fwarn-tabs
|
||||||
|
Default-Language: Haskell2010
|
||||||
|
|
||||||
|
Test-Suite tests-asn1-encoding
|
||||||
|
type: exitcode-stdio-1.0
|
||||||
|
hs-source-dirs: tests .
|
||||||
|
Main-Is: Tests.hs
|
||||||
|
Build-depends: base >= 3 && < 7
|
||||||
|
, bytestring
|
||||||
|
, mtl
|
||||||
|
, tasty
|
||||||
|
, tasty-quickcheck
|
||||||
|
, asn1-types
|
||||||
|
, asn1-encoding
|
||||||
|
, hourglass
|
||||||
|
ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures
|
||||||
|
Default-Language: Haskell2010
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: https://github.com/vincenthz/hs-asn1
|
||||||
|
subdir: encoding
|
@ -7,14 +7,15 @@
|
|||||||
%bcond_without tests
|
%bcond_without tests
|
||||||
|
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.9.5
|
Version: 0.9.6
|
||||||
Release: 12%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: ASN1 data reader and writer in RAW, BER and DER forms
|
Summary: ASN1 data reader and writer in RAW, BER and DER forms
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
# Begin cabal-rpm sources:
|
# Begin cabal-rpm sources:
|
||||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
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
|
# End cabal-rpm sources
|
||||||
|
|
||||||
# Begin cabal-rpm deps:
|
# Begin cabal-rpm deps:
|
||||||
@ -28,7 +29,6 @@ BuildRequires: ghc-hourglass-prof
|
|||||||
BuildRequires: ghc-mtl-devel
|
BuildRequires: ghc-mtl-devel
|
||||||
BuildRequires: ghc-tasty-devel
|
BuildRequires: ghc-tasty-devel
|
||||||
BuildRequires: ghc-tasty-quickcheck-devel
|
BuildRequires: ghc-tasty-quickcheck-devel
|
||||||
BuildRequires: ghc-text-devel
|
|
||||||
%endif
|
%endif
|
||||||
# End cabal-rpm deps
|
# End cabal-rpm deps
|
||||||
|
|
||||||
@ -74,6 +74,7 @@ This package provides the Haskell %{pkg_name} profiling library.
|
|||||||
%prep
|
%prep
|
||||||
# Begin cabal-rpm setup:
|
# Begin cabal-rpm setup:
|
||||||
%setup -q -n %{pkgver}
|
%setup -q -n %{pkgver}
|
||||||
|
cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||||
# End cabal-rpm setup
|
# End cabal-rpm setup
|
||||||
|
|
||||||
|
|
||||||
@ -124,6 +125,9 @@ This package provides the Haskell %{pkg_name} profiling library.
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Feb 09 2020 Jens Petersen <petersen@redhat.com> - 0.9.6-1
|
||||||
|
- update to 0.9.6
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.5-12
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.5-12
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (asn1-encoding-0.9.5.tar.gz) = f7dd952be1378d1d1eae590ae714c3d9973ae04f2b497f1758479689d3fa05e2bc67362e1f4cc934976614c11357be8b7a0ecf94591760acdf55ac4e8290fa21
|
SHA512 (asn1-encoding-0.9.6.tar.gz) = e31362881ebec21be5dab1c46284ea6e2571dd87f5c730690787303363a01712945ba85969c39bb2e2d76f9bcefce5d3bad247564e4b6959008804346f65fc9c
|
||||||
|
Loading…
Reference in New Issue
Block a user