Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-clientsession for 
openSUSE:Factory checked in at 2023-07-24 18:26:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-clientsession (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-clientsession.new.1467 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-clientsession"

Mon Jul 24 18:26:10 2023 rev:6 rq:1099926 version:0.9.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-clientsession/ghc-clientsession.changes      
2023-07-19 19:11:13.732774903 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-clientsession.new.1467/ghc-clientsession.changes
    2023-07-24 18:26:38.126385911 +0200
@@ -1,0 +2,6 @@
+Wed Jul 19 14:02:37 UTC 2023 - Peter Simons <psim...@suse.com>
+
+- Update clientsession to version 0.9.2.0 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  clientsession.cabal

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

Other differences:
------------------
++++++ ghc-clientsession.spec ++++++
--- /var/tmp/diff_new_pack.LGBIho/_old  2023-07-24 18:26:38.670389107 +0200
+++ /var/tmp/diff_new_pack.LGBIho/_new  2023-07-24 18:26:38.674389130 +0200
@@ -26,6 +26,7 @@
 License:        MIT
 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:  chrpath
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-base-devel
@@ -97,6 +98,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ clientsession.cabal ++++++
name:            clientsession
version:         0.9.2.0
x-revision:      1
license:         MIT
license-file:    LICENSE
author:          Michael Snoyman <mich...@snoyman.com>, Felipe Lessa 
<felipe.le...@gmail.com>
maintainer:      Michael Snoyman <mich...@snoyman.com>
synopsis:        Securely store session data in a client-side cookie.
description:     Achieves security through AES-CTR encryption and
                 Skein-MAC-512-256 authentication.  Uses Base64
                 encoding to avoid any issues with characters.
category:        Web
stability:       stable
cabal-version:   >= 1.10
build-type:      Simple
homepage:        http://github.com/yesodweb/clientsession/tree/master
extra-source-files: tests/runtests.hs bench.hs ChangeLog.md README.md

flag test
  description: Build the executable to run unit tests
  default: False

executable clientsession-generate
    default-language: Haskell2010
    main-is: generate.hs
    build-depends:   base
                   , clientsession
    ghc-options:     -Wall
    hs-source-dirs: bin

library
    default-language: Haskell2010
    build-depends:   base                >= 4.8          && < 5
                       -- 
https://github.com/yesodweb/clientsession/commit/1221230770feff60f77ff676d52fc464cb77b2d9#r122087962
                       -- Data.Bifunctor entered base in 4.8
                   , bytestring          >= 0.9
                   , cereal              >= 0.3
                   , directory           >= 1
                   , tagged              >= 0.1
                   , crypto-api          >= 0.8
                   , skein               == 1.0.*
                   , base64-bytestring   >= 0.1.1.1
                   , entropy             >= 0.2.1
                   , cryptonite          >= 0.15
                   , setenv
    exposed-modules: Web.ClientSession
    other-modules:   System.LookupEnv
    ghc-options:     -Wall
    hs-source-dirs:  src

test-suite runtests
    default-language: Haskell2010
    type: exitcode-stdio-1.0
    build-depends:   base
                   , bytestring          >= 0.9
                   , hspec               >= 1.3
                   , QuickCheck          >= 2
                   , HUnit
                   , transformers
                   , containers
                   , cereal
                   -- finally, our own package
                   , clientsession
    ghc-options:     -Wall
    hs-source-dirs:  tests
    main-is:         runtests.hs

source-repository head
  type:     git
  location: https://github.com/yesodweb/clientsession.git

Reply via email to