Hello community,

here is the log from the commit of package ghc-x509-store for openSUSE:Factory 
checked in at 2015-09-17 09:19:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-x509-store (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-x509-store.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-x509-store"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-x509-store/ghc-x509-store.changes    
2015-08-25 08:48:29.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-x509-store.new/ghc-x509-store.changes       
2015-09-17 09:19:43.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Sep 13 13:09:32 UTC 2015 - [email protected]
+
+- update to 1.6.1 
+
+-------------------------------------------------------------------

Old:
----
  x509-store-1.6.0.tar.gz

New:
----
  x509-store-1.6.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-x509-store.spec ++++++
--- /var/tmp/diff_new_pack.4Uqg53/_old  2015-09-17 09:19:43.000000000 +0200
+++ /var/tmp/diff_new_pack.4Uqg53/_new  2015-09-17 09:19:43.000000000 +0200
@@ -15,15 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %global pkg_name x509-store
 
 Name:           ghc-x509-store
-Version:        1.6.0
+Version:        1.6.1
 Release:        0
 Summary:        X.509 collection accessing and storing methods
+License:        BSD-3-Clause
 Group:          System/Libraries
 
-License:        BSD-3-Clause
 Url:            https://hackage.haskell.org/package/%{pkg_name}
 Source0:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -64,30 +65,23 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
-
 %postun devel
 %ghc_pkg_recache
 
-
 %files -f %{name}.files
 %defattr(-,root,root,-)
 %doc LICENSE
 
-
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
 
-
 %changelog

++++++ x509-store-1.6.0.tar.gz -> x509-store-1.6.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/x509-store-1.6.0/Data/X509/File.hs 
new/x509-store-1.6.1/Data/X509/File.hs
--- old/x509-store-1.6.0/Data/X509/File.hs      2015-06-19 22:15:16.000000000 
+0200
+++ new/x509-store-1.6.1/Data/X509/File.hs      2015-09-07 16:58:33.000000000 
+0200
@@ -24,11 +24,9 @@
 readSignedObject :: (ASN1Object a, Eq a, Show a)
                  => FilePath
                  -> IO [X509.SignedExact a]
-readSignedObject filepath = foldl pemToSigned [] <$> readPEMs filepath
-  where pemToSigned acc pem =
-            case X509.decodeSignedObject $ pemContent pem of
-                Left _    -> acc
-                Right obj -> obj : acc
+readSignedObject filepath = decodePEMs <$> readPEMs filepath
+  where decodePEMs pems =
+          [ obj | pem <- pems, Right obj <- [X509.decodeSignedObject $ 
pemContent pem] ]
 
 -- | return all the public key that were successfully read from a file.
 readKeyFile :: FilePath -> IO [X509.PrivKey]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/x509-store-1.6.0/x509-store.cabal 
new/x509-store-1.6.1/x509-store.cabal
--- old/x509-store-1.6.0/x509-store.cabal       2015-06-19 22:15:16.000000000 
+0200
+++ new/x509-store-1.6.1/x509-store.cabal       2015-09-07 16:58:33.000000000 
+0200
@@ -1,5 +1,5 @@
 Name:                x509-store
-Version:             1.6.0
+Version:             1.6.1
 Description:         X.509 collection accessing and storing methods for 
certificate, crl, exception list
 License:             BSD3
 License-file:        LICENSE
@@ -18,9 +18,6 @@
                    , bytestring
                    , mtl
                    , containers
-                   , directory
-                   , filepath
-                   , process
                    , pem >= 0.1 && < 0.3
                    , asn1-types >= 0.3 && < 0.4
                    , asn1-encoding >= 0.9 && < 0.10


Reply via email to