From 8bc321fdb9c659fe989f0a48cc34bb82d6df30ecf866c2cced43712efb5a3de6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 1 Aug 2017 02:10:23 +0000 Subject: [PATCH 01/13] osc copypac from project:devel:languages:haskell:lts:9 package:ghc-x509 revision:3, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=20 --- ghc-x509.changes | 5 ++++ ghc-x509.spec | 2 ++ x509.cabal | 64 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 x509.cabal diff --git a/ghc-x509.changes b/ghc-x509.changes index 80bb700..92a3a45 100644 --- a/ghc-x509.changes +++ b/ghc-x509.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 31 03:01:28 UTC 2017 - psimons@suse.com + +- Update to version 1.7.1 revision 1. + ------------------------------------------------------------------- Thu Jul 27 14:07:19 UTC 2017 - psimons@suse.com diff --git a/ghc-x509.spec b/ghc-x509.spec index a434e87..8c5989c 100644 --- a/ghc-x509.spec +++ b/ghc-x509.spec @@ -26,6 +26,7 @@ License: BSD-3-Clause Group: Development/Languages/Other Url: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-asn1-encoding-devel BuildRequires: ghc-asn1-parse-devel @@ -60,6 +61,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} +cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build diff --git a/x509.cabal b/x509.cabal new file mode 100644 index 0000000..d778f74 --- /dev/null +++ b/x509.cabal @@ -0,0 +1,64 @@ +Name: x509 +version: 1.7.1 +x-revision: 1 +Description: X509 reader and writer +License: BSD3 +License-file: LICENSE +Copyright: Vincent Hanquez +Author: Vincent Hanquez +Maintainer: Vincent Hanquez +Synopsis: X509 reader and writer +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 >= 4.7 && < 5 + , bytestring + , memory + , mtl + , containers + , hourglass + , pem >= 0.1 && < 0.3 + , asn1-types >= 0.3.1 && < 0.4 + , asn1-encoding >= 0.9 && < 0.10 + , asn1-parse >= 0.9.3 && < 0.10 + , cryptonite + Exposed-modules: Data.X509 + 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 From 3bc3e0697d26b07e4a6204cb2b493d551767f2e039221fa090d6eafde84f5d3d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 5 Aug 2017 02:18:41 +0000 Subject: [PATCH 02/13] osc copypac from project:devel:languages:haskell:lts:9 package:ghc-x509 revision:5, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=21 --- ghc-x509.changes | 5 +++++ ghc-x509.spec | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ghc-x509.changes b/ghc-x509.changes index 92a3a45..553a33c 100644 --- a/ghc-x509.changes +++ b/ghc-x509.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com + +- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. + ------------------------------------------------------------------- Mon Jul 31 03:01:28 UTC 2017 - psimons@suse.com diff --git a/ghc-x509.spec b/ghc-x509.spec index 8c5989c..219f678 100644 --- a/ghc-x509.spec +++ b/ghc-x509.spec @@ -39,7 +39,6 @@ BuildRequires: ghc-memory-devel BuildRequires: ghc-mtl-devel BuildRequires: ghc-pem-devel BuildRequires: ghc-rpm-macros -BuildRoot: %{_tmppath}/%{name}-%{version}-build %if %{with tests} BuildRequires: ghc-tasty-devel BuildRequires: ghc-tasty-quickcheck-devel @@ -79,10 +78,8 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %ghc_pkg_recache %files -f %{name}.files -%defattr(-,root,root,-) %doc LICENSE %files devel -f %{name}-devel.files -%defattr(-,root,root,-) %changelog From 1f2e2a8b37ad73fd00931c895b29b0f8b441468b57a33465bacf6f8aaa4b7118 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 11 Aug 2017 09:09:54 +0000 Subject: [PATCH 03/13] osc copypac from project:devel:languages:haskell:lts:9 package:ghc-x509 revision:6, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=22 --- ghc-x509.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-x509.spec b/ghc-x509.spec index 219f678..8e7e469 100644 --- a/ghc-x509.spec +++ b/ghc-x509.spec @@ -23,7 +23,7 @@ Version: 1.7.1 Release: 0 Summary: X509 reader and writer License: BSD-3-Clause -Group: Development/Languages/Other +Group: Development/Languages/Haskell Url: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal @@ -49,7 +49,7 @@ X509 reader and writer. %package devel Summary: Haskell %{pkg_name} library development files -Group: Development/Libraries/Other +Group: Development/Libraries/Haskell Requires: %{name} = %{version}-%{release} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} From 66503f2d8af141b6db999f3ca87519b1cd55277e61fc9ab7a847bcf2acad88e8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 15 Aug 2017 14:08:55 +0000 Subject: [PATCH 04/13] osc copypac from project:devel:languages:haskell:lts:9 package:ghc-x509 revision:7, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=23 --- ghc-x509.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-x509.spec b/ghc-x509.spec index 8e7e469..1bb0815 100644 --- a/ghc-x509.spec +++ b/ghc-x509.spec @@ -24,7 +24,7 @@ Release: 0 Summary: X509 reader and writer License: BSD-3-Clause Group: Development/Languages/Haskell -Url: https://hackage.haskell.org/package/%{pkg_name} +URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel From ee6af6862fcb86609af84a577147503fe87e58e971fb6f70ccb9e324ffa76620 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Aug 2017 14:18:47 +0000 Subject: [PATCH 05/13] osc copypac from project:devel:languages:haskell:lts:9 package:ghc-x509 revision:9, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=24 --- ghc-x509.changes | 5 +++++ ghc-x509.spec | 4 ++-- x509-1.7.1.tar.gz | 3 --- x509-1.7.2.tar.gz | 3 +++ x509.cabal | 5 +++-- 5 files changed, 13 insertions(+), 7 deletions(-) delete mode 100644 x509-1.7.1.tar.gz create mode 100644 x509-1.7.2.tar.gz diff --git a/ghc-x509.changes b/ghc-x509.changes index 553a33c..d9e9370 100644 --- a/ghc-x509.changes +++ b/ghc-x509.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Aug 17 03:03:22 UTC 2017 - psimons@suse.com + +- Update to version 1.7.2 revision 1. + ------------------------------------------------------------------- Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com diff --git a/ghc-x509.spec b/ghc-x509.spec index 1bb0815..c01e818 100644 --- a/ghc-x509.spec +++ b/ghc-x509.spec @@ -19,11 +19,11 @@ %global pkg_name x509 %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.7.1 +Version: 1.7.2 Release: 0 Summary: X509 reader and writer License: BSD-3-Clause -Group: Development/Languages/Haskell +Group: Development/Libraries/Haskell URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal diff --git a/x509-1.7.1.tar.gz b/x509-1.7.1.tar.gz deleted file mode 100644 index 6814085..0000000 --- a/x509-1.7.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f96566b0c1ef8843f055f2cf8d2111c989498fdbcf6dcde286f816655ff8e467 -size 17085 diff --git a/x509-1.7.2.tar.gz b/x509-1.7.2.tar.gz new file mode 100644 index 0000000..850794e --- /dev/null +++ b/x509-1.7.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0315a9e2bbfb2b3b6746b83cde901c0cc6aca5a3983f129c6f1cbe0ee0ce7b +size 18304 diff --git a/x509.cabal b/x509.cabal index d778f74..aa78cf3 100644 --- a/x509.cabal +++ b/x509.cabal @@ -1,5 +1,5 @@ Name: x509 -version: 1.7.1 +version: 1.7.2 x-revision: 1 Description: X509 reader and writer License: BSD3 @@ -26,8 +26,9 @@ Library , asn1-types >= 0.3.1 && < 0.4 , asn1-encoding >= 0.9 && < 0.10 , asn1-parse >= 0.9.3 && < 0.10 - , cryptonite + , cryptonite >= 0.8 Exposed-modules: Data.X509 + Data.X509.EC Other-modules: Data.X509.Internal Data.X509.CertificateChain Data.X509.AlgorithmIdentifier From 5faed3cbf99634389dbce61a543176c5203c04c3f9c632ac615cb9286ebfbfc7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 8 Mar 2018 02:18:15 +0000 Subject: [PATCH 06/13] osc copypac from project:devel:languages:haskell:lts:10 package:ghc-x509 revision:5, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=26 --- ghc-x509.changes | 6 +++++ ghc-x509.spec | 6 ++--- x509-1.7.2.tar.gz | 3 --- x509-1.7.3.tar.gz | 3 +++ x509.cabal | 65 ----------------------------------------------- 5 files changed, 11 insertions(+), 72 deletions(-) delete mode 100644 x509-1.7.2.tar.gz create mode 100644 x509-1.7.3.tar.gz delete mode 100644 x509.cabal diff --git a/ghc-x509.changes b/ghc-x509.changes index d9e9370..36d74e2 100644 --- a/ghc-x509.changes +++ b/ghc-x509.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Mar 5 03:01:42 UTC 2018 - psimons@suse.com + +- Update x509 to version 1.7.3. + A more detailed change log is not available. + ------------------------------------------------------------------- Thu Aug 17 03:03:22 UTC 2017 - psimons@suse.com diff --git a/ghc-x509.spec b/ghc-x509.spec index c01e818..7601ed4 100644 --- a/ghc-x509.spec +++ b/ghc-x509.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-x509 # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,14 +19,13 @@ %global pkg_name x509 %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.7.2 +Version: 1.7.3 Release: 0 Summary: X509 reader and writer License: BSD-3-Clause Group: Development/Libraries/Haskell URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-asn1-encoding-devel BuildRequires: ghc-asn1-parse-devel @@ -60,7 +59,6 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build diff --git a/x509-1.7.2.tar.gz b/x509-1.7.2.tar.gz deleted file mode 100644 index 850794e..0000000 --- a/x509-1.7.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc0315a9e2bbfb2b3b6746b83cde901c0cc6aca5a3983f129c6f1cbe0ee0ce7b -size 18304 diff --git a/x509-1.7.3.tar.gz b/x509-1.7.3.tar.gz new file mode 100644 index 0000000..e58d1a0 --- /dev/null +++ b/x509-1.7.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41740f949bb773dc721d342a85587a512658c81ee8cd38f102473b315e127356 +size 18386 diff --git a/x509.cabal b/x509.cabal deleted file mode 100644 index aa78cf3..0000000 --- a/x509.cabal +++ /dev/null @@ -1,65 +0,0 @@ -Name: x509 -version: 1.7.2 -x-revision: 1 -Description: X509 reader and writer -License: BSD3 -License-file: LICENSE -Copyright: Vincent Hanquez -Author: Vincent Hanquez -Maintainer: Vincent Hanquez -Synopsis: X509 reader and writer -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 >= 4.7 && < 5 - , bytestring - , memory - , mtl - , containers - , hourglass - , pem >= 0.1 && < 0.3 - , asn1-types >= 0.3.1 && < 0.4 - , asn1-encoding >= 0.9 && < 0.10 - , asn1-parse >= 0.9.3 && < 0.10 - , cryptonite >= 0.8 - 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 From 0b5dbfd64ab12408c3455be87e17647b13c4eaeeebeb5351a60f71d7e85eddd7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 2 Apr 2018 15:08:18 +0000 Subject: [PATCH 07/13] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-x509 revision:3, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=27 --- ghc-x509.changes | 62 +----------------------------------------------- 1 file changed, 1 insertion(+), 61 deletions(-) diff --git a/ghc-x509.changes b/ghc-x509.changes index 36d74e2..bd19b61 100644 --- a/ghc-x509.changes +++ b/ghc-x509.changes @@ -1,66 +1,6 @@ ------------------------------------------------------------------- -Mon Mar 5 03:01:42 UTC 2018 - psimons@suse.com +Wed Mar 14 16:55:47 UTC 2018 - psimons@suse.com - Update x509 to version 1.7.3. A more detailed change log is not available. -------------------------------------------------------------------- -Thu Aug 17 03:03:22 UTC 2017 - psimons@suse.com - -- Update to version 1.7.2 revision 1. - -------------------------------------------------------------------- -Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com - -- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. - -------------------------------------------------------------------- -Mon Jul 31 03:01:28 UTC 2017 - psimons@suse.com - -- Update to version 1.7.1 revision 1. - -------------------------------------------------------------------- -Thu Jul 27 14:07:19 UTC 2017 - psimons@suse.com - -- Update to version 1.7.1. - -------------------------------------------------------------------- -Sun Dec 4 19:47:27 UTC 2016 - psimons@suse.com - -- Update to version 1.6.5 with cabal2obs. - -------------------------------------------------------------------- -Mon Sep 26 06:51:53 UTC 2016 - psimons@suse.com - -- Update to version 1.6.4 with cabal2obs. - -------------------------------------------------------------------- -Sun Jul 10 17:06:00 UTC 2016 - psimons@suse.com - -- Update to version 1.6.3 revision 0 with cabal2obs. - -------------------------------------------------------------------- -Sun Sep 27 10:26:28 UTC 2015 - mimi.vx@gmail.com - -- update to 1.6.3 - -------------------------------------------------------------------- -Sun Sep 13 13:05:47 UTC 2015 - mimi.vx@gmail.com - -- update to 1.6.1 - -------------------------------------------------------------------- -Thu Aug 6 20:28:55 UTC 2015 - mimi.vx@gmail.com - -- update to 1.6.0 - -------------------------------------------------------------------- -Sun May 31 19:47:07 UTC 2015 - mimi.vx@gmail.com - -- update to 1.5.1 - -------------------------------------------------------------------- -Thu Apr 23 18:00:16 UTC 2015 - mimi.vx@gmail.com - -- initial commit - From 1b1d01dbceff89dd8b22fa55aae7cc1eefb8d94bd65f443f801b3514650196f7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 6 Apr 2018 01:16:04 +0000 Subject: [PATCH 08/13] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-x509 revision:4, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=28 --- ghc-x509.spec | 2 ++ x509.cabal | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 x509.cabal diff --git a/ghc-x509.spec b/ghc-x509.spec index 7601ed4..7fc4070 100644 --- a/ghc-x509.spec +++ b/ghc-x509.spec @@ -26,6 +26,7 @@ License: BSD-3-Clause Group: Development/Libraries/Haskell URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-asn1-encoding-devel BuildRequires: ghc-asn1-parse-devel @@ -59,6 +60,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} +cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build diff --git a/x509.cabal b/x509.cabal new file mode 100644 index 0000000..4a76df7 --- /dev/null +++ b/x509.cabal @@ -0,0 +1,68 @@ +Name: x509 +version: 1.7.3 +x-revision: 1 +Description: X509 reader and writer +License: BSD3 +License-file: LICENSE +Copyright: Vincent Hanquez +Author: Vincent Hanquez +Maintainer: Vincent Hanquez +Synopsis: X509 reader and writer +Build-Type: Simple +Category: Data +stability: experimental +Homepage: http://github.com/vincenthz/hs-certificate +Cabal-Version: >= 1.10 + +Library + -- Could not find module 'Data.Proxy' + build-depends: base >=4.7 + + Default-Language: Haskell2010 + Build-Depends: base >= 3 && < 5 + , bytestring + , memory + , mtl + , 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.8 + 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 From 9782b4273f9d91cebaccaeb13a740aeb0d2d1c246e3e4a24952a6a9fdd6beeaa Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 13 Apr 2018 14:12:10 +0000 Subject: [PATCH 09/13] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-x509 revision:6, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=29 --- ghc-x509.changes | 49 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/ghc-x509.changes b/ghc-x509.changes index bd19b61..e2b0572 100644 --- a/ghc-x509.changes +++ b/ghc-x509.changes @@ -1,6 +1,51 @@ ------------------------------------------------------------------- -Wed Mar 14 16:55:47 UTC 2018 - psimons@suse.com +Thu Apr 12 08:31:45 UTC 2018 - psimons@suse.com -- Update x509 to version 1.7.3. +- Update x509 to version 1.7.3 revision 1. A more detailed change log is not available. +------------------------------------------------------------------- +Thu Jul 27 14:07:19 UTC 2017 - psimons@suse.com + +- Update to version 1.7.1. + +------------------------------------------------------------------- +Sun Dec 4 19:47:27 UTC 2016 - psimons@suse.com + +- Update to version 1.6.5 with cabal2obs. + +------------------------------------------------------------------- +Mon Sep 26 06:51:53 UTC 2016 - psimons@suse.com + +- Update to version 1.6.4 with cabal2obs. + +------------------------------------------------------------------- +Sun Jul 10 17:06:00 UTC 2016 - psimons@suse.com + +- Update to version 1.6.3 revision 0 with cabal2obs. + +------------------------------------------------------------------- +Sun Sep 27 10:26:28 UTC 2015 - mimi.vx@gmail.com + +- update to 1.6.3 + +------------------------------------------------------------------- +Sun Sep 13 13:05:47 UTC 2015 - mimi.vx@gmail.com + +- update to 1.6.1 + +------------------------------------------------------------------- +Thu Aug 6 20:28:55 UTC 2015 - mimi.vx@gmail.com + +- update to 1.6.0 + +------------------------------------------------------------------- +Sun May 31 19:47:07 UTC 2015 - mimi.vx@gmail.com + +- update to 1.5.1 + +------------------------------------------------------------------- +Thu Apr 23 18:00:16 UTC 2015 - mimi.vx@gmail.com + +- initial commit + From ad2e3bb6bab81e233476d93750a3b69706a77c940ca9d1ab9d98cccf48822eae Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 26 Apr 2018 07:55:59 +0000 Subject: [PATCH 10/13] osc copypac from project:devel:languages:haskell:lts:11 package:ghc-x509 revision:7, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=30 --- ghc-x509.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-x509.spec b/ghc-x509.spec index 7fc4070..0b02257 100644 --- a/ghc-x509.spec +++ b/ghc-x509.spec @@ -78,7 +78,7 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %ghc_pkg_recache %files -f %{name}.files -%doc LICENSE +%license LICENSE %files devel -f %{name}-devel.files From 0df76535efedb10f2b2fdddcd94cb99dad8e31637ec37d2cfa60d8cde68a305e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 14 May 2018 13:18:54 +0000 Subject: [PATCH 11/13] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-x509 revision:1, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=31 --- ghc-x509.changes | 51 ------------------------------------------------ 1 file changed, 51 deletions(-) delete mode 100644 ghc-x509.changes diff --git a/ghc-x509.changes b/ghc-x509.changes deleted file mode 100644 index e2b0572..0000000 --- a/ghc-x509.changes +++ /dev/null @@ -1,51 +0,0 @@ -------------------------------------------------------------------- -Thu Apr 12 08:31:45 UTC 2018 - psimons@suse.com - -- Update x509 to version 1.7.3 revision 1. - A more detailed change log is not available. - -------------------------------------------------------------------- -Thu Jul 27 14:07:19 UTC 2017 - psimons@suse.com - -- Update to version 1.7.1. - -------------------------------------------------------------------- -Sun Dec 4 19:47:27 UTC 2016 - psimons@suse.com - -- Update to version 1.6.5 with cabal2obs. - -------------------------------------------------------------------- -Mon Sep 26 06:51:53 UTC 2016 - psimons@suse.com - -- Update to version 1.6.4 with cabal2obs. - -------------------------------------------------------------------- -Sun Jul 10 17:06:00 UTC 2016 - psimons@suse.com - -- Update to version 1.6.3 revision 0 with cabal2obs. - -------------------------------------------------------------------- -Sun Sep 27 10:26:28 UTC 2015 - mimi.vx@gmail.com - -- update to 1.6.3 - -------------------------------------------------------------------- -Sun Sep 13 13:05:47 UTC 2015 - mimi.vx@gmail.com - -- update to 1.6.1 - -------------------------------------------------------------------- -Thu Aug 6 20:28:55 UTC 2015 - mimi.vx@gmail.com - -- update to 1.6.0 - -------------------------------------------------------------------- -Sun May 31 19:47:07 UTC 2015 - mimi.vx@gmail.com - -- update to 1.5.1 - -------------------------------------------------------------------- -Thu Apr 23 18:00:16 UTC 2015 - mimi.vx@gmail.com - -- initial commit - From 35b4b30c2ad6fb61e022c7ac96ecfb34e4be46e60ee9f70a0d6a896f00a47d2a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 14 May 2018 15:21:20 +0000 Subject: [PATCH 12/13] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-x509 revision:2, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=32 --- ghc-x509.changes | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 ghc-x509.changes diff --git a/ghc-x509.changes b/ghc-x509.changes new file mode 100644 index 0000000..80bb700 --- /dev/null +++ b/ghc-x509.changes @@ -0,0 +1,45 @@ +------------------------------------------------------------------- +Thu Jul 27 14:07:19 UTC 2017 - psimons@suse.com + +- Update to version 1.7.1. + +------------------------------------------------------------------- +Sun Dec 4 19:47:27 UTC 2016 - psimons@suse.com + +- Update to version 1.6.5 with cabal2obs. + +------------------------------------------------------------------- +Mon Sep 26 06:51:53 UTC 2016 - psimons@suse.com + +- Update to version 1.6.4 with cabal2obs. + +------------------------------------------------------------------- +Sun Jul 10 17:06:00 UTC 2016 - psimons@suse.com + +- Update to version 1.6.3 revision 0 with cabal2obs. + +------------------------------------------------------------------- +Sun Sep 27 10:26:28 UTC 2015 - mimi.vx@gmail.com + +- update to 1.6.3 + +------------------------------------------------------------------- +Sun Sep 13 13:05:47 UTC 2015 - mimi.vx@gmail.com + +- update to 1.6.1 + +------------------------------------------------------------------- +Thu Aug 6 20:28:55 UTC 2015 - mimi.vx@gmail.com + +- update to 1.6.0 + +------------------------------------------------------------------- +Sun May 31 19:47:07 UTC 2015 - mimi.vx@gmail.com + +- update to 1.5.1 + +------------------------------------------------------------------- +Thu Apr 23 18:00:16 UTC 2015 - mimi.vx@gmail.com + +- initial commit + From dc7b209207d3228375f360209f635b250f8751eb1683491ee8dc9c1b44406276 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 15 May 2018 18:24:59 +0000 Subject: [PATCH 13/13] osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-x509 revision:3, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-x509?expand=0&rev=33 --- ghc-x509.changes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ghc-x509.changes b/ghc-x509.changes index 80bb700..a6a3b10 100644 --- a/ghc-x509.changes +++ b/ghc-x509.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon May 14 17:02:11 UTC 2018 - psimons@suse.com + +- Update x509 to version 1.7.3 revision 1. + Upstream does not provide a changelog. + ------------------------------------------------------------------- Thu Jul 27 14:07:19 UTC 2017 - psimons@suse.com