Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-x509 for openSUSE:Factory 
checked in at 2022-08-01 21:30:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-x509 (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-x509.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-x509"

Mon Aug  1 21:30:55 2022 rev:21 rq:987115 version:1.7.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-x509/ghc-x509.changes        2022-02-11 
23:12:03.303405070 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-x509.new.1533/ghc-x509.changes      
2022-08-01 21:31:29.649844989 +0200
@@ -1,0 +2,8 @@
+Tue May 31 03:00:43 UTC 2022 - Peter Simons <[email protected]>
+
+- Update x509 to version 1.7.7.
+  Upstream added a new change log file in this release. With no
+  previous version to compare against, the automatic updater cannot
+  reliable determine the relevante entries for this release.
+
+-------------------------------------------------------------------

Old:
----
  x509-1.7.6.tar.gz

New:
----
  x509-1.7.7.tar.gz

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

Other differences:
------------------
++++++ ghc-x509.spec ++++++
--- /var/tmp/diff_new_pack.hfWbuI/_old  2022-08-01 21:31:31.009848891 +0200
+++ /var/tmp/diff_new_pack.hfWbuI/_new  2022-08-01 21:31:31.013848902 +0200
@@ -19,7 +19,7 @@
 %global pkg_name x509
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        1.7.6
+Version:        1.7.7
 Release:        0
 Summary:        X509 reader and writer
 License:        BSD-3-Clause
@@ -34,11 +34,12 @@
 BuildRequires:  ghc-cryptonite-devel
 BuildRequires:  ghc-hourglass-devel
 BuildRequires:  ghc-memory-devel
-BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-pem-devel
 BuildRequires:  ghc-rpm-macros
+BuildRequires:  ghc-transformers-devel
 ExcludeArch:    %{ix86}
 %if %{with tests}
+BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-tasty-devel
 BuildRequires:  ghc-tasty-quickcheck-devel
 %endif
@@ -78,5 +79,6 @@
 %license LICENSE
 
 %files devel -f %{name}-devel.files
+%doc ChangeLog.md
 
 %changelog

++++++ x509-1.7.6.tar.gz -> x509-1.7.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/x509-1.7.6/ChangeLog.md new/x509-1.7.7/ChangeLog.md
--- old/x509-1.7.6/ChangeLog.md 1970-01-01 01:00:00.000000000 +0100
+++ new/x509-1.7.7/ChangeLog.md 2001-09-09 03:46:40.000000000 +0200
@@ -0,0 +1,6 @@
+# ChangeLog for x509
+
+## 2022-05-31 v1.7.7
+
+- Bump requirements to GHC 7.8 and transformers 0.4 series 
[#130](https://github.com/haskell-tls/hs-certificate/pull/130)
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/x509-1.7.6/Data/X509/Internal.hs 
new/x509-1.7.7/Data/X509/Internal.hs
--- old/x509-1.7.6/Data/X509/Internal.hs        2021-08-03 08:57:34.000000000 
+0200
+++ new/x509-1.7.7/Data/X509/Internal.hs        2001-09-09 03:46:40.000000000 
+0200
@@ -5,7 +5,6 @@
 -- Stability   : experimental
 -- Portability : unknown
 --
-{-# LANGUAGE CPP #-}
 module Data.X509.Internal
     ( module Data.ASN1.Parse
     , asn1Container
@@ -17,18 +16,11 @@
 
 import Data.ASN1.Types
 import Data.ASN1.Parse
+import Control.Monad.Trans.Except
 
-#if MIN_VERSION_mtl(2,2,1)
-import Control.Monad.Except
 runErrT :: ExceptT e m a -> m (Either e a)
 runErrT = runExceptT
 type ErrT = ExceptT
-#else
-import Control.Monad.Error
-runErrT :: ErrorT e m a -> m (Either e a)
-runErrT = runErrorT
-type ErrT = ErrorT
-#endif
 
 -- | create a container around the stream of ASN1
 asn1Container :: ASN1ConstructionType -> [ASN1] -> [ASN1]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/x509-1.7.6/x509.cabal new/x509-1.7.7/x509.cabal
--- old/x509-1.7.6/x509.cabal   2022-01-17 08:48:42.000000000 +0100
+++ new/x509-1.7.7/x509.cabal   2001-09-09 03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
 Name:                x509
-version:             1.7.6
+version:             1.7.7
 Description:         X509 reader and writer. please see README
 License:             BSD3
 License-file:        LICENSE
@@ -12,13 +12,14 @@
 stability:           experimental
 Homepage:            http://github.com/vincenthz/hs-certificate
 Cabal-Version:       >= 1.10
+Extra-Source-Files:  ChangeLog.md
 
 Library
   Default-Language:  Haskell2010
-  Build-Depends:     base >= 3 && < 5
+  Build-Depends:     base >= 4.7 && < 5
                    , bytestring
                    , memory
-                   , mtl
+                   , transformers >= 0.4
                    , containers
                    , hourglass
                    , pem >= 0.1

Reply via email to