Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-crypto-token for 
openSUSE:Factory checked in at 2026-06-10 15:58:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-crypto-token (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-crypto-token.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-crypto-token"

Wed Jun 10 15:58:44 2026 rev:3 rq:1358348 version:0.1.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-crypto-token/ghc-crypto-token.changes        
2024-11-20 17:00:11.889372126 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-crypto-token.new.2375/ghc-crypto-token.changes  
    2026-06-10 15:59:28.520437251 +0200
@@ -1,0 +2,6 @@
+Mon Jun  8 21:07:19 UTC 2026 - Peter Simons <[email protected]>
+
+- Update crypto-token to version 0.1.2 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  crypto-token.cabal

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

Other differences:
------------------
++++++ ghc-crypto-token.spec ++++++
--- /var/tmp/diff_new_pack.McU75l/_old  2026-06-10 15:59:29.900494439 +0200
+++ /var/tmp/diff_new_pack.McU75l/_new  2026-06-10 15:59:29.900494439 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-crypto-token
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2026 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,7 @@
 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
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-array-devel
 BuildRequires:  ghc-array-prof
@@ -77,6 +78,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ crypto-token.cabal ++++++
cabal-version: >=1.10
name:          crypto-token
version:       0.1.2
x-revision: 1
license:       BSD3
license-file:  LICENSE
maintainer:    Kazu Yamamoto <[email protected]>
author:        Kazu Yamamoto <[email protected]>
synopsis:      crypto tokens
description:   Encrypted tokens/tickets to keep state in the client side.
category:      Cryptography, Network
build-type:    Simple

source-repository head
    type:     git
    location: https://github.com/kazu-yamamoto/crypto-token

library
    exposed-modules:  Crypto.Token
    default-language: Haskell2010
    ghc-options:      -Wall
    build-depends:
        base >=4.9 && <5,
        array,
        bytestring,
        crypton < 1.1,
        memory,
        network-byte-order

    if impl(ghc >=8)
        default-extensions: Strict StrictData

test-suite spec
    type:               exitcode-stdio-1.0
    main-is:            Spec.hs
    build-tool-depends: hspec-discover:hspec-discover
    hs-source-dirs:     test
    other-modules:
        TokenSpec

    default-language:   Haskell2010
    default-extensions: Strict StrictData
    ghc-options:        -Wall -threaded -rtsopts
    build-depends:
        base >=4.9 && <5,
        bytestring,
        crypto-token,
        hspec

Reply via email to