commit c236a3e716bcc3a7edd5f1d4b94f25b2c667df02 Author: Alexey Lyubimov Date: Fri Aug 25 15:16:29 2023 +0300 import ghc-asn1-encoding-0.9.6-7.el9 diff --git a/.ghc-asn1-encoding.metadata b/.ghc-asn1-encoding.metadata new file mode 100644 index 0000000..090b3a2 --- /dev/null +++ b/.ghc-asn1-encoding.metadata @@ -0,0 +1 @@ +88bd7e968ac403f28cab0d375e074e8ddcdff674 SOURCES/asn1-encoding-0.9.6.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0295978 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/asn1-encoding-0.9.6.tar.gz diff --git a/SOURCES/asn1-encoding-0.9.6.cabal b/SOURCES/asn1-encoding-0.9.6.cabal new file mode 100644 index 0000000..48aee5f --- /dev/null +++ b/SOURCES/asn1-encoding-0.9.6.cabal @@ -0,0 +1,56 @@ +Name: asn1-encoding +Version: 0.9.6 +x-revision: 2 +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 +Author: Vincent Hanquez +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 + , 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 diff --git a/SPECS/ghc-asn1-encoding.spec b/SPECS/ghc-asn1-encoding.spec new file mode 100644 index 0000000..a62c976 --- /dev/null +++ b/SPECS/ghc-asn1-encoding.spec @@ -0,0 +1,195 @@ +# generated by cabal-rpm-2.0.9 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name asn1-encoding +%global pkgver %{pkg_name}-%{version} + +%bcond_without tests + +Name: ghc-%{pkg_name} +Version: 0.9.6 +Release: 7%{?dist} +Summary: ASN1 data reader and writer in RAW, BER and DER forms + +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: +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-asn1-types-prof +BuildRequires: ghc-base-prof +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-hourglass-prof +%if %{with tests} +BuildRequires: ghc-mtl-devel +BuildRequires: ghc-tasty-devel +BuildRequires: ghc-tasty-quickcheck-devel +%endif +# End cabal-rpm deps + +%description +ASN1 data reader and writer in raw form with supports for high level forms of +ASN1 (BER, and DER). + + +%package devel +Summary: Haskell %{pkg_name} library development files +Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-static%{?_isa} = %{version}-%{release} +%if %{defined ghc_version} +Requires: ghc-compiler = %{ghc_version} +%endif +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch +Requires: ghc-filesystem + +%description doc +This package provides the Haskell %{pkg_name} library documentation. +%endif + + +%if %{with ghc_prof} +%package prof +Summary: Haskell %{pkg_name} profiling library +Requires: %{name}-devel%{?_isa} = %{version}-%{release} +Supplements: (%{name}-devel and ghc-prof) + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + +%prep +# Begin cabal-rpm setup: +%setup -q -n %{pkgver} +cp -bp %{SOURCE1} %{pkg_name}.cabal +# End cabal-rpm setup + + +%build +# Begin cabal-rpm build: +%ghc_lib_build +# End cabal-rpm build + + +%install +# Begin cabal-rpm install +%ghc_lib_install +# End cabal-rpm install + + +%check +%if %{with tests} +%cabal_test +%endif + + +%files -f %{name}.files +# Begin cabal-rpm files: +%license LICENSE +# End cabal-rpm files + + +%files devel -f %{name}-devel.files + + +%if %{with haddock} +%files doc -f %{name}-doc.files +%license LICENSE +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + +%changelog +* Fri Aug 25 2023 Alexey Lyubimov - 0.9.6-7 +- Rebuilt for MSVSphere 9.2 + +* Thu Jan 20 2022 Fedora Release Engineering - 0.9.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Aug 06 2021 Jens Petersen - 0.9.6-6 +- rebuild + +* Thu Jul 22 2021 Fedora Release Engineering - 0.9.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jan 26 2021 Fedora Release Engineering - 0.9.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 0.9.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Jul 17 2020 Jens Petersen - 0.9.6-2 +- refresh to cabal-rpm-2.0.6 + +* Sun Feb 09 2020 Jens Petersen - 0.9.6-1 +- update to 0.9.6 + +* Tue Jan 28 2020 Fedora Release Engineering - 0.9.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Aug 01 2019 Jens Petersen - 0.9.5-11 +- add doc and prof subpackages (cabal-rpm-1.0.0) + +* Thu Jul 25 2019 Fedora Release Engineering - 0.9.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 17 2019 Jens Petersen - 0.9.5-9 +- refresh to cabal-rpm-0.13 + +* Thu Jan 31 2019 Fedora Release Engineering - 0.9.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 28 2018 Jens Petersen - 0.9.5-7 +- rebuild + +* Tue Jul 24 2018 Miro Hrončok - 0.9.5-6 +- Enable annotated build again + +* Mon Jul 23 2018 Miro Hrončok - 0.9.5-5 +- Rebuilt for #1607054 + +* Fri Jul 13 2018 Fedora Release Engineering - 0.9.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 0.9.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Jan 26 2018 Jens Petersen - 0.9.5-2 +- rebuild + +* Sat Jul 22 2017 Elliott Sales de Andrade 0.9.5-1 +- Update to latest version. + +* Fri Jul 21 2017 Elliott Sales de Andrade 0.9.3-3 +- Bump for Fedora 26. + +* Fri Dec 16 2016 Elliott Sales de Andrade - 0.9.3-2 +- spec file generated by cabal-rpm-0.10.0 +- Update release to be newer than previous builds + +* Sun Apr 24 2016 Elliott Sales de Andrade - 0.9.3-1 +- update to 0.9.3 + +* Sun Apr 24 2016 Elliott Sales de Andrade - 0.9.0-1 +- Bump to rebuild against newer dependencies + +* Sun Aug 23 2015 Ben Boeckel - 0.9.0-1 +- initial package