From 0bab1c47778adf2099b839e24fbc418dc66a84d1 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Sat, 23 Sep 2017 20:09:58 +0000 Subject: [PATCH 01/32] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8a1fa46 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ghc-x509-store + +The ghc-x509-store package \ No newline at end of file From 145bbb38ea080283a60589f335aa9818a05d5945 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sat, 23 Sep 2017 18:33:58 -0400 Subject: [PATCH 02/32] Initial import (#1494676). --- .gitignore | 1 + README.md | 3 -- ghc-x509-store.spec | 101 ++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 103 insertions(+), 3 deletions(-) create mode 100644 .gitignore delete mode 100644 README.md create mode 100644 ghc-x509-store.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b2a174b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/x509-store-1.6.5.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 8a1fa46..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# ghc-x509-store - -The ghc-x509-store package \ No newline at end of file diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec new file mode 100644 index 0000000..1e5bb7c --- /dev/null +++ b/ghc-x509-store.spec @@ -0,0 +1,101 @@ +# generated by cabal-rpm-0.11.2 +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name x509-store +%global pkgver %{pkg_name}-%{version} + +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 1.6.5 +Release: 1.git.0.ba3e883%{?dist} +Summary: X.509 collection accessing and storing methods + +License: BSD +Url: https://hackage.haskell.org/package/%{pkg_name} +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz + +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +# Begin cabal-rpm deps: +BuildRequires: ghc-asn1-encoding-devel +BuildRequires: ghc-asn1-types-devel +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-containers-devel +BuildRequires: ghc-cryptonite-devel +BuildRequires: ghc-directory-devel +BuildRequires: ghc-filepath-devel +BuildRequires: ghc-mtl-devel +BuildRequires: ghc-pem-devel +BuildRequires: ghc-x509-devel +%if %{with tests} +BuildRequires: ghc-tasty-devel +BuildRequires: ghc-tasty-hunit-devel +%endif +# End cabal-rpm deps + +%description +X.509 collection accessing and storing methods for certificate, crl, exception +list. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Provides: %{name}-static = %{version}-%{release} +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%prep +%setup -q -n %{pkgver} + + +%build +%ghc_lib_build + + +%install +%ghc_lib_install + + +%check +%cabal_test + + +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache + + +%files -f %{name}.files +%license LICENSE + + +%files devel -f %{name}-devel.files + + +%changelog +* Fri Sep 22 2017 Elliott Sales de Andrade 1.6.5-1 +- Update to latest spec template. +- Update to latest version. + +* Fri Jul 21 2017 Elliott Sales de Andrade 1.6.1-3 +- Bump for Fedora 26. + +* Fri Dec 16 2016 Elliott Sales de Andrade - 1.6.1-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 - 1.6.1-1 +- update to 1.6.1 + +* Sun Aug 23 2015 Ben Boeckel - 1.6.0-1 +- initial package diff --git a/sources b/sources new file mode 100644 index 0000000..900a88c --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (x509-store-1.6.5.tar.gz) = 17666f697941dbb4b0ab1a14ba8394de6734d88bbab282868ec484d1932be34dc272021968c77d7a9368e033b8406b332489bdfe6839eff6bb6784a0f01eeb27 From 851159d6f3515965291dadd509460eebef470c2c Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sat, 23 Sep 2017 18:34:20 -0400 Subject: [PATCH 03/32] Fix release number. --- ghc-x509-store.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 1e5bb7c..8365390 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.5 -Release: 1.git.0.ba3e883%{?dist} +Release: 1%{?dist} Summary: X.509 collection accessing and storing methods License: BSD From 04e7ce379a6953952ad2296702c91bf3e1370691 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:12:22 +0100 Subject: [PATCH 04/32] refresh to cabal-rpm-0.12.1 --- ghc-x509-store.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 8365390..9abd2ba 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.11.2 +# generated by cabal-rpm-0.12.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name x509-store @@ -42,9 +42,12 @@ list. %package devel Summary: Haskell %{pkg_name} library development files Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-doc = %{version}-%{release} +%if %{defined ghc_version} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} Requires(postun): ghc-compiler = %{ghc_version} +%endif Requires: %{name}%{?_isa} = %{version}-%{release} %description devel @@ -67,6 +70,12 @@ This package provides the Haskell %{pkg_name} library development files. %cabal_test +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From 634067562199b471ca10c50e5bbb50a422dfbfd4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 26 Jan 2018 12:05:49 +0100 Subject: [PATCH 05/32] bump release --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 9abd2ba..2de7d76 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -92,6 +92,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Jan 26 2018 Jens Petersen - 1.6.5-2 +- rebuild + * Fri Sep 22 2017 Elliott Sales de Andrade 1.6.5-1 - Update to latest spec template. - Update to latest version. From 029e8c4ee4876ee01277f167e5eb42af36145c05 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:03:48 +0900 Subject: [PATCH 06/32] drop ldconfig scriptlets --- ghc-x509-store.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 2de7d76..271b7cb 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -70,12 +70,6 @@ This package provides the Haskell %{pkg_name} library development files. %cabal_test -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From 444d14f90cb5eec5e651bfc468277afc204e325e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 12:21:59 +0000 Subject: [PATCH 07/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 271b7cb..cea74db 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -86,6 +86,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.6.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Fri Jan 26 2018 Jens Petersen - 1.6.5-2 - rebuild From a434522eab024106b1471751602d92744c752530 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Mon, 9 Jul 2018 01:04:24 -0400 Subject: [PATCH 08/32] update to 1.6.6 --- .gitignore | 1 + ghc-x509-store.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b2a174b..0a7ddab 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /x509-store-1.6.5.tar.gz +/x509-store-1.6.6.tar.gz diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index cea74db..f22874f 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.6.5 -Release: 3%{?dist} +Version: 1.6.6 +Release: 1%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -86,6 +86,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Mon Jul 09 2018 Elliott Sales de Andrade - 1.6.6-1 +- update to 1.6.6 + * Wed Feb 07 2018 Fedora Release Engineering - 1.6.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild diff --git a/sources b/sources index 900a88c..e2331db 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (x509-store-1.6.5.tar.gz) = 17666f697941dbb4b0ab1a14ba8394de6734d88bbab282868ec484d1932be34dc272021968c77d7a9368e033b8406b332489bdfe6839eff6bb6784a0f01eeb27 +SHA512 (x509-store-1.6.6.tar.gz) = 131a9467f5c473a338d1423b6222a0235a88245b85b99f96215144ed0c2ac429d7519c6db912286d911813c03a49c1a3b0045c16cf06c8d9a7b1ab625ca25aee From de46758ea5caf2c3823da6f65e847adbabdadb81 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 02:16:46 +0000 Subject: [PATCH 09/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index f22874f..ab62b80 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -86,6 +86,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.6.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Mon Jul 09 2018 Elliott Sales de Andrade - 1.6.6-1 - update to 1.6.6 From f51710a46af85408c42b2c248aa9a8476242ae1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 23 Jul 2018 13:41:51 +0200 Subject: [PATCH 10/32] Rebuilt for #1607054 --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index ab62b80..e39f2a6 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -86,6 +86,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Mon Jul 23 2018 Miro Hrončok - 1.6.6-3 +- Rebuilt for #1607054 + * Fri Jul 13 2018 Fedora Release Engineering - 1.6.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 6d1c76f59bc7dde52e2660d45a714419b53cfbb9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 29 Jul 2018 01:06:15 +0900 Subject: [PATCH 11/32] rebuild --- ghc-x509-store.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index e39f2a6..b35bf4c 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.1 +# generated by cabal-rpm-0.12.5 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name x509-store @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -86,6 +86,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sat Jul 28 2018 Jens Petersen - 1.6.6-4 +- rebuild + * Mon Jul 23 2018 Miro Hrončok - 1.6.6-3 - Rebuilt for #1607054 From b1c2c33083bb6819e9e5340744d9580628edea45 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 22:15:11 +0000 Subject: [PATCH 12/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index b35bf4c..1639f15 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -86,6 +86,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 1.6.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 28 2018 Jens Petersen - 1.6.6-4 - rebuild From ba1a25c131a1c4a2e009864f1cab676459095976 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:47:55 +0800 Subject: [PATCH 13/32] refresh to cabal-rpm-0.13 --- ghc-x509-store.spec | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 1639f15..f47babb 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.5 +# generated by cabal-rpm-0.13 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name x509-store @@ -8,16 +8,18 @@ Name: ghc-%{pkg_name} Version: 1.6.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: X.509 collection accessing and storing methods License: BSD Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +# End cabal-rpm sources +# Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros -# Begin cabal-rpm deps: BuildRequires: ghc-asn1-encoding-devel BuildRequires: ghc-asn1-types-devel BuildRequires: ghc-bytestring-devel @@ -55,15 +57,21 @@ This package provides the Haskell %{pkg_name} library development files. %prep +# Begin cabal-rpm setup: %setup -q -n %{pkgver} +# 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 @@ -79,13 +87,18 @@ This package provides the Haskell %{pkg_name} library development files. %files -f %{name}.files +# Begin cabal-rpm files: %license LICENSE +# End cabal-rpm files %files devel -f %{name}-devel.files %changelog +* Sun Feb 17 2019 Jens Petersen - 1.6.6-6 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 1.6.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From fbf84f014d549801e9b41c16c212a6405e4a1505 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 21 Feb 2019 12:33:25 +0800 Subject: [PATCH 14/32] update to 1.6.7 --- .gitignore | 1 + ghc-x509-store.spec | 9 ++++++-- sources | 2 +- x509-store-1.6.7.cabal | 51 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 60 insertions(+), 3 deletions(-) create mode 100644 x509-store-1.6.7.cabal diff --git a/.gitignore b/.gitignore index 0a7ddab..cc4d230 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /x509-store-1.6.5.tar.gz /x509-store-1.6.6.tar.gz +/x509-store-1.6.7.tar.gz diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index f47babb..8fc3408 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -7,14 +7,15 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.6.6 -Release: 6%{?dist} +Version: 1.6.7 +Release: 1%{?dist} Summary: X.509 collection accessing and storing methods 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: @@ -59,6 +60,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} +cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -96,6 +98,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Feb 21 2019 Jens Petersen - 1.6.7-1 +- update to 1.6.7 + * Sun Feb 17 2019 Jens Petersen - 1.6.6-6 - refresh to cabal-rpm-0.13 diff --git a/sources b/sources index e2331db..22e5c51 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (x509-store-1.6.6.tar.gz) = 131a9467f5c473a338d1423b6222a0235a88245b85b99f96215144ed0c2ac429d7519c6db912286d911813c03a49c1a3b0045c16cf06c8d9a7b1ab625ca25aee +SHA512 (x509-store-1.6.7.tar.gz) = 7b0b792a988aed50995523c3f6a3bb0da08cb8963ad834afbeef8bc53e4bb3d7d11af757a999f7b5c81ef073bac10a4003fba7486abd9343a48770bfc954167e diff --git a/x509-store-1.6.7.cabal b/x509-store-1.6.7.cabal new file mode 100644 index 0000000..14c2eae --- /dev/null +++ b/x509-store-1.6.7.cabal @@ -0,0 +1,51 @@ +Name: x509-store +version: 1.6.7 +x-revision: 1 +Description: X.509 collection accessing and storing methods for certificate, crl, exception list +License: BSD3 +License-file: LICENSE +Copyright: Vincent Hanquez +Author: Vincent Hanquez +Maintainer: Vincent Hanquez +Synopsis: X.509 collection accessing and storing methods +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 + , mtl + , containers + , directory + , filepath + , pem >= 0.1 && < 0.3 + , asn1-types >= 0.3 && < 0.4 + , asn1-encoding >= 0.9 && < 0.10 + , cryptonite + , x509 >= 1.7.5 + Exposed-modules: Data.X509.CertificateStore + Data.X509.File + Data.X509.Memory + ghc-options: -Wall + +Test-Suite test-x509-store + Default-Language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: Tests + Main-is: Tests.hs + Build-Depends: base >= 3 && < 5 + , bytestring + , tasty + , tasty-hunit + , x509 + , x509-store + ghc-options: -Wall + +source-repository head + type: git + location: git://github.com/vincenthz/hs-certificate + subdir: x509-store From 9ef6b3b40d4bbf5ff50d5be8eb9a393b41f4fdd6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 03:15:21 +0000 Subject: [PATCH 15/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 8fc3408..b7e5787 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -98,6 +98,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 1.6.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Feb 21 2019 Jens Petersen - 1.6.7-1 - update to 1.6.7 From 52ccfa6b21b77c23ff4b2c2d39fda80f19b63c5f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:27:04 +0000 Subject: [PATCH 16/32] cabal-rpm-1.0.0: add doc and prof subpkgs --- ghc-x509-store.spec | 53 ++++++++++++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 13 deletions(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index b7e5787..f8d8bea 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.13 +# generated by cabal-rpm-1.0.0 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name x509-store @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -20,6 +20,12 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal# # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel +%if %{with haddock} +BuildRequires: ghc-doc +%endif +%if %{with ghc_prof} +BuildRequires: ghc-prof +%endif BuildRequires: ghc-rpm-macros BuildRequires: ghc-asn1-encoding-devel BuildRequires: ghc-asn1-types-devel @@ -45,11 +51,8 @@ list. %package devel Summary: Haskell %{pkg_name} library development files Provides: %{name}-static = %{version}-%{release} -Provides: %{name}-doc = %{version}-%{release} %if %{defined ghc_version} Requires: ghc-compiler = %{ghc_version} -Requires(post): ghc-compiler = %{ghc_version} -Requires(postun): ghc-compiler = %{ghc_version} %endif Requires: %{name}%{?_isa} = %{version}-%{release} @@ -57,6 +60,25 @@ Requires: %{name}%{?_isa} = %{version}-%{release} This package provides the Haskell %{pkg_name} library development files. +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation + +%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} + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} @@ -80,14 +102,6 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %cabal_test -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -97,7 +111,20 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %files devel -f %{name}-devel.files +%if %{with haddock} +%files doc -f %{name}-doc.files +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + %changelog +* Fri Aug 02 2019 Jens Petersen - 1.6.7-3 +- add doc and prof subpackages (cabal-rpm-1.0.0) + * Thu Jul 25 2019 Fedora Release Engineering - 1.6.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 8a19127dc79c8b693a4177ee185f72621ed339c3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:33:03 +0800 Subject: [PATCH 17/32] BR prof for lib and static for executable --- ghc-x509-store.spec | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index f8d8bea..cd5b1a1 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-1.0.0 +# generated by cabal-rpm-1.0.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name x509-store @@ -20,23 +20,18 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal# # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel -%if %{with haddock} -BuildRequires: ghc-doc -%endif -%if %{with ghc_prof} -BuildRequires: ghc-prof -%endif BuildRequires: ghc-rpm-macros -BuildRequires: ghc-asn1-encoding-devel -BuildRequires: ghc-asn1-types-devel -BuildRequires: ghc-bytestring-devel -BuildRequires: ghc-containers-devel -BuildRequires: ghc-cryptonite-devel -BuildRequires: ghc-directory-devel -BuildRequires: ghc-filepath-devel -BuildRequires: ghc-mtl-devel -BuildRequires: ghc-pem-devel -BuildRequires: ghc-x509-devel +BuildRequires: ghc-asn1-encoding-prof +BuildRequires: ghc-asn1-types-prof +BuildRequires: ghc-base-prof +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-containers-prof +BuildRequires: ghc-cryptonite-prof +BuildRequires: ghc-directory-prof +BuildRequires: ghc-filepath-prof +BuildRequires: ghc-mtl-prof +BuildRequires: ghc-pem-prof +BuildRequires: ghc-x509-prof %if %{with tests} BuildRequires: ghc-tasty-devel BuildRequires: ghc-tasty-hunit-devel @@ -51,6 +46,7 @@ list. %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 From e74e3a506caf655e58bc5fa0b69e7cb032050c8c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 21:43:40 +0000 Subject: [PATCH 18/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index cd5b1a1..b7cd694 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -118,6 +118,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 1.6.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Aug 02 2019 Jens Petersen - 1.6.7-3 - add doc and prof subpackages (cabal-rpm-1.0.0) From f009f88562e5e39b5b8d07c8583525d9d9074724 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:52:57 +0800 Subject: [PATCH 19/32] refresh to cabal-rpm-2.0.2 --- ghc-x509-store.spec | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index b7cd694..2416730 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-1.0.1 +# generated by cabal-rpm-2.0.2 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name x509-store @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -59,6 +59,7 @@ This package provides the Haskell %{pkg_name} library development files. %if %{with haddock} %package doc Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch %description doc This package provides the Haskell %{pkg_name} library documentation. @@ -69,6 +70,7 @@ This package provides the Haskell %{pkg_name} library documentation. %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. @@ -98,6 +100,16 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %cabal_test +%if 0%{?fedora} < 31 || 0%{?rhel} < 8 +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache +%endif + + %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -109,6 +121,7 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE %endif @@ -118,6 +131,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Wed Feb 19 2020 Jens Petersen - 1.6.7-5 +- refresh to cabal-rpm-2.0.2 + * Tue Jan 28 2020 Fedora Release Engineering - 1.6.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From dcb6944034d636d0587de2e8a9463a85fd0ca563 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:29:08 +0800 Subject: [PATCH 20/32] refresh to cabal-rpm-2.0.5 --- ghc-x509-store.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 2416730..275aa79 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,5 +1,5 @@ -# generated by cabal-rpm-2.0.2 -# https://fedoraproject.org/wiki/Packaging:Haskell +# generated by cabal-rpm-2.0.5 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name x509-store %global pkgver %{pkg_name}-%{version} From d7c4f41dc8baf93d8754e3821f22c98fde902b74 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:57:46 +0800 Subject: [PATCH 21/32] refresh to cabal-rpm-2.0.6 --- ghc-x509-store.spec | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 275aa79..39cfc8c 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.5 +# generated by cabal-rpm-2.0.6 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name x509-store @@ -100,16 +100,6 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %cabal_test -%if 0%{?fedora} < 31 || 0%{?rhel} < 8 -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache -%endif - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE From 3d1e3554aaf03304a6e9baeb2e7f4b288279c0f8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 18:50:10 +0800 Subject: [PATCH 22/32] bump release --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 39cfc8c..d490e6c 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -121,6 +121,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Fri Jul 17 2020 Jens Petersen - 1.6.7-6 +- refresh to cabal-rpm-2.0.6 + * Wed Feb 19 2020 Jens Petersen - 1.6.7-5 - refresh to cabal-rpm-2.0.2 From 16fee4b0799a3157be74ad4ff215463e8d013d30 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 19:54:00 +0000 Subject: [PATCH 23/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index d490e6c..86e32b7 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 6%{?dist} +Release: 7%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -121,6 +121,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 1.6.7-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 1.6.7-6 - refresh to cabal-rpm-2.0.6 From e24f0b56f15d90fa3826f7b2eee9ed1eabd0a76b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 01:43:52 +0000 Subject: [PATCH 24/32] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 86e32b7..b71122f 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -121,6 +121,10 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Sat Aug 01 2020 Fedora Release Engineering - 1.6.7-8 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 1.6.7-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From e2faf529a1f8c044f7ae182afecafe196deb530d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:57:57 +0000 Subject: [PATCH 25/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index b71122f..d369476 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 8%{?dist} +Release: 9%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -121,6 +121,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 1.6.7-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sat Aug 01 2020 Fedora Release Engineering - 1.6.7-8 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 56266ae912fd674ad36ab0c0df88dbd7e76bc5c6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 01:30:24 +0000 Subject: [PATCH 26/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index d369476..c783655 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 9%{?dist} +Release: 10%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -121,6 +121,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1.6.7-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 1.6.7-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 392068fecd6d98ae47d49f7b338e6a2bc9cdd75f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:14 +0800 Subject: [PATCH 27/32] refresh to cabal-rpm-2.0.9 --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index c783655..4eef9a9 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.6 +# generated by cabal-rpm-2.0.9 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name x509-store @@ -60,6 +60,7 @@ This package provides the Haskell %{pkg_name} library development files. %package doc Summary: Haskell %{pkg_name} library documentation BuildArch: noarch +Requires: ghc-filesystem %description doc This package provides the Haskell %{pkg_name} library documentation. @@ -97,7 +98,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %check +%if %{with tests} %cabal_test +%endif %files -f %{name}.files From d6daa3a8342cf3ca52a479b5a889936f5c632bb8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 4 Aug 2021 22:29:12 +0800 Subject: [PATCH 28/32] revise .cabal --- x509-store-1.6.7.cabal | 102 ++++++++++++++++++++--------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/x509-store-1.6.7.cabal b/x509-store-1.6.7.cabal index 14c2eae..2f00423 100644 --- a/x509-store-1.6.7.cabal +++ b/x509-store-1.6.7.cabal @@ -1,51 +1,51 @@ -Name: x509-store -version: 1.6.7 -x-revision: 1 -Description: X.509 collection accessing and storing methods for certificate, crl, exception list -License: BSD3 -License-file: LICENSE -Copyright: Vincent Hanquez -Author: Vincent Hanquez -Maintainer: Vincent Hanquez -Synopsis: X.509 collection accessing and storing methods -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 - , mtl - , containers - , directory - , filepath - , pem >= 0.1 && < 0.3 - , asn1-types >= 0.3 && < 0.4 - , asn1-encoding >= 0.9 && < 0.10 - , cryptonite - , x509 >= 1.7.5 - Exposed-modules: Data.X509.CertificateStore - Data.X509.File - Data.X509.Memory - ghc-options: -Wall - -Test-Suite test-x509-store - Default-Language: Haskell2010 - type: exitcode-stdio-1.0 - hs-source-dirs: Tests - Main-is: Tests.hs - Build-Depends: base >= 3 && < 5 - , bytestring - , tasty - , tasty-hunit - , x509 - , x509-store - ghc-options: -Wall - -source-repository head - type: git - location: git://github.com/vincenthz/hs-certificate - subdir: x509-store +Name: x509-store +version: 1.6.7 +x-revision: 1 +Description: X.509 collection accessing and storing methods for certificate, crl, exception list +License: BSD3 +License-file: LICENSE +Copyright: Vincent Hanquez +Author: Vincent Hanquez +Maintainer: Vincent Hanquez +Synopsis: X.509 collection accessing and storing methods +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 + , mtl + , containers + , directory + , filepath + , pem >= 0.1 && < 0.3 + , asn1-types >= 0.3 && < 0.4 + , asn1-encoding >= 0.9 && < 0.10 + , cryptonite + , x509 >= 1.7.5 + Exposed-modules: Data.X509.CertificateStore + Data.X509.File + Data.X509.Memory + ghc-options: -Wall + +Test-Suite test-x509-store + Default-Language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: Tests + Main-is: Tests.hs + Build-Depends: base >= 3 && < 5 + , bytestring + , tasty + , tasty-hunit + , x509 + , x509-store + ghc-options: -Wall + +source-repository head + type: git + location: git://github.com/vincenthz/hs-certificate + subdir: x509-store From 634c1f272f8f38bcc39375e8b56d94424675377b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 6 Aug 2021 13:25:56 +0800 Subject: [PATCH 29/32] bump release --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 4eef9a9..11b326f 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 10%{?dist} +Release: 11%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -124,6 +124,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Fri Aug 06 2021 Jens Petersen - 1.6.7-11 +- rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 1.6.7-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 38e06ab4dc115398079f5693f2511d991567e5f2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 05:50:17 +0000 Subject: [PATCH 30/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-x509-store.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 11b326f..56b09e0 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.6.7 -Release: 11%{?dist} +Release: 12%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -124,6 +124,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 1.6.7-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Aug 06 2021 Jens Petersen - 1.6.7-11 - rebuild From 17da86029dcdd96f5404f5564ed58197f72636cc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 7 Jun 2022 15:20:29 +0800 Subject: [PATCH 31/32] update to 1.6.9 --- .gitignore | 1 + ghc-x509-store.spec | 11 +- sources | 2 +- ...tore-1.6.7.cabal => x509-store-1.6.9.cabal | 101 +++++++++--------- 4 files changed, 59 insertions(+), 56 deletions(-) rename x509-store-1.6.7.cabal => x509-store-1.6.9.cabal (92%) diff --git a/.gitignore b/.gitignore index cc4d230..26ed1b1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /x509-store-1.6.5.tar.gz /x509-store-1.6.6.tar.gz /x509-store-1.6.7.tar.gz +/x509-store-1.6.9.tar.gz diff --git a/ghc-x509-store.spec b/ghc-x509-store.spec index 56b09e0..b6eca0a 100644 --- a/ghc-x509-store.spec +++ b/ghc-x509-store.spec @@ -1,14 +1,14 @@ -# generated by cabal-rpm-2.0.9 +# generated by cabal-rpm-2.0.12 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name x509-store %global pkgver %{pkg_name}-%{version} -%bcond_with tests +%bcond_without tests Name: ghc-%{pkg_name} -Version: 1.6.7 -Release: 12%{?dist} +Version: 1.6.9 +Release: 1%{?dist} Summary: X.509 collection accessing and storing methods License: BSD @@ -124,6 +124,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Tue Jun 07 2022 Jens Petersen - 1.6.9-1 +- https://hackage.haskell.org/package/x509-store-1.6.9/changelog + * Thu Jan 20 2022 Fedora Release Engineering - 1.6.7-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index 22e5c51..861ec98 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (x509-store-1.6.7.tar.gz) = 7b0b792a988aed50995523c3f6a3bb0da08cb8963ad834afbeef8bc53e4bb3d7d11af757a999f7b5c81ef073bac10a4003fba7486abd9343a48770bfc954167e +SHA512 (x509-store-1.6.9.tar.gz) = 10d0f4a4cb88852d8fd79676908e712ecc19a1b54cae9245f976eea1382abc03392e7fa593973180e6cfd9eb3c1de7133cf738a7c8b3a86d02278d2777d3af96 diff --git a/x509-store-1.6.7.cabal b/x509-store-1.6.9.cabal similarity index 92% rename from x509-store-1.6.7.cabal rename to x509-store-1.6.9.cabal index 2f00423..f6f840a 100644 --- a/x509-store-1.6.7.cabal +++ b/x509-store-1.6.9.cabal @@ -1,51 +1,50 @@ -Name: x509-store -version: 1.6.7 -x-revision: 1 -Description: X.509 collection accessing and storing methods for certificate, crl, exception list -License: BSD3 -License-file: LICENSE -Copyright: Vincent Hanquez -Author: Vincent Hanquez -Maintainer: Vincent Hanquez -Synopsis: X.509 collection accessing and storing methods -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 - , mtl - , containers - , directory - , filepath - , pem >= 0.1 && < 0.3 - , asn1-types >= 0.3 && < 0.4 - , asn1-encoding >= 0.9 && < 0.10 - , cryptonite - , x509 >= 1.7.5 - Exposed-modules: Data.X509.CertificateStore - Data.X509.File - Data.X509.Memory - ghc-options: -Wall - -Test-Suite test-x509-store - Default-Language: Haskell2010 - type: exitcode-stdio-1.0 - hs-source-dirs: Tests - Main-is: Tests.hs - Build-Depends: base >= 3 && < 5 - , bytestring - , tasty - , tasty-hunit - , x509 - , x509-store - ghc-options: -Wall - -source-repository head - type: git - location: git://github.com/vincenthz/hs-certificate - subdir: x509-store +Name: x509-store +version: 1.6.9 +Description: X.509 collection accessing and storing methods for certificate, crl, exception list +License: BSD3 +License-file: LICENSE +Copyright: Vincent Hanquez +Author: Vincent Hanquez +Maintainer: Vincent Hanquez +Synopsis: X.509 collection accessing and storing methods +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 + , mtl + , containers + , directory + , filepath + , pem >= 0.1 && < 0.3 + , asn1-types >= 0.3 && < 0.4 + , asn1-encoding >= 0.9 && < 0.10 + , cryptonite + , x509 >= 1.7.2 + Exposed-modules: Data.X509.CertificateStore + Data.X509.File + Data.X509.Memory + ghc-options: -Wall + +Test-Suite test-x509-store + Default-Language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: Tests + Main-is: Tests.hs + Build-Depends: base >= 3 && < 5 + , bytestring + , tasty + , tasty-hunit + , x509 + , x509-store + ghc-options: -Wall + +source-repository head + type: git + location: git://github.com/vincenthz/hs-certificate + subdir: x509-store From 0eadafdf9b955f1c54155f56b8fa64770392c78f Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:10:29 +0300 Subject: [PATCH 32/32] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 861ec98..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (x509-store-1.6.9.tar.gz) = 10d0f4a4cb88852d8fd79676908e712ecc19a1b54cae9245f976eea1382abc03392e7fa593973180e6cfd9eb3c1de7133cf738a7c8b3a86d02278d2777d3af96