Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-nothunks for openSUSE:Factory 
checked in at 2021-03-10 08:56:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-nothunks (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-nothunks.new.2378 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-nothunks"

Wed Mar 10 08:56:23 2021 rev:3 rq:877983 version:0.1.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-nothunks/ghc-nothunks.changes        
2020-12-22 11:43:31.989721081 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-nothunks.new.2378/ghc-nothunks.changes      
2021-03-10 08:58:08.794944182 +0100
@@ -1,0 +2,6 @@
+Wed Mar  3 16:36:15 UTC 2021 - [email protected]
+
+- Update nothunks to version 0.1.2 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  nothunks.cabal

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

Other differences:
------------------
++++++ ghc-nothunks.spec ++++++
--- /var/tmp/diff_new_pack.GROlvc/_old  2021-03-10 08:58:09.286944690 +0100
+++ /var/tmp/diff_new_pack.GROlvc/_new  2021-03-10 08:58:09.290944693 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-nothunks
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,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:  ghc-Cabal-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-containers-devel
@@ -60,6 +61,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ nothunks.cabal ++++++
cabal-version:      2.4
name:               nothunks
version:            0.1.2
x-revision: 1
synopsis:           Examine values for unexpected thunks
description:        Long lived application data typically should not contain
                    any thunks. This library can be used to examine values for
                    unexpected thunks, which can then be used in assertions.
                    This can be invaluable in avoiding memory leaks, or tracking
                    down existing ones.
license:            MIT
license-file:       LICENSE
bug-reports:        https://github.com/input-output-hk/nothunks
author:             IOHK
maintainer:         [email protected]
copyright:          2018-2020 IOHK
category:           Development
extra-source-files: CHANGELOG.md

source-repository head
  type:     git
  location: https://github.com/input-output-hk/nothunks

library
    exposed-modules:  NoThunks.Class

    build-depends:    base       >= 4.12 && < 5
                    , bytestring >= 0.10 && < 0.12
                    , containers >= 0.5  && < 0.7
                    , stm        >= 2.5  && < 2.6
                    , text       >= 1.2  && < 1.3
                    , time       >= 1.5  && < 1.11
                    , vector     >= 0.12 && < 0.13

                      -- Whatever is bundled with ghc
                    , ghc-heap

    hs-source-dirs:   src
    default-language: Haskell2010
    ghc-options:      -Wall

test-suite nothunks-test
    type:             exitcode-stdio-1.0
    main-is:          Main.hs
    other-modules:    Test.NoThunks.Class

    build-depends:    base

                      -- Self dependency
                    , nothunks

                      -- Dependencies shared with the lib
                    , containers
                    , stm

                      -- Whatever is bundled with ghc
                    , ghc-prim

                      -- Additional dependencies
                    , hedgehog       >= 1.0 && < 1.1
                    , random         >= 1.1 && < 1.3
                    , tasty          >= 1.3 && < 1.4
                    , tasty-hedgehog >= 1.0 && < 1.1

    hs-source-dirs:   test
    default-language: Haskell2010
    ghc-options:      -Wall

Reply via email to