Script 'mail_helper' called by obssrc
Hello community,

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

Package is "ghc-tagged"

Wed Jun 10 16:06:58 2026 rev:29 rq:1358445 version:0.8.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-tagged/ghc-tagged.changes    2025-12-19 
16:49:06.102040996 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-tagged.new.2375/ghc-tagged.changes  
2026-06-10 16:10:51.540741830 +0200
@@ -1,0 +2,6 @@
+Sat Jan  3 14:41:03 UTC 2026 - Peter Simons <[email protected]>
+
+- Update tagged to version 0.8.10 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  tagged.cabal

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

Other differences:
------------------
++++++ ghc-tagged.spec ++++++
--- /var/tmp/diff_new_pack.Mz32LV/_old  2026-06-10 16:10:55.300897652 +0200
+++ /var/tmp/diff_new_pack.Mz32LV/_new  2026-06-10 16:10:55.340899310 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-tagged
 #
-# Copyright (c) 2025 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
@@ -25,6 +25,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-base-devel
 BuildRequires:  ghc-base-prof
@@ -66,6 +67,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ tagged.cabal ++++++
name:           tagged
version:        0.8.10
x-revision: 1
license:        BSD3
license-file:   LICENSE
author:         Edward A. Kmett
maintainer:     Edward A. Kmett <[email protected]>
stability:      experimental
category:       Data, Phantom Types
synopsis:       Haskell 98 phantom types to avoid unsafely passing dummy 
arguments
homepage:       http://github.com/ekmett/tagged
bug-reports:    http://github.com/ekmett/tagged/issues
copyright:      2009-2015 Edward A. Kmett
description:    Haskell 98 phantom types to avoid unsafely passing dummy 
arguments.
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files: .hlint.yaml CHANGELOG.markdown README.markdown
tested-with:
  GHC == 8.0.2
  GHC == 8.2.2
  GHC == 8.4.4
  GHC == 8.6.5
  GHC == 8.8.4
  GHC == 8.10.7
  GHC == 9.0.2
  GHC == 9.2.8
  GHC == 9.4.8
  GHC == 9.6.6
  GHC == 9.8.4
  GHC == 9.10.1
  GHC == 9.12.1

source-repository head
  type: git
  location: https://github.com/ekmett/tagged.git

flag deepseq
  description:
    You can disable the use of the `deepseq` package using `-f-deepseq`.
    .
    Disabing this is an unsupported configuration, but it may be useful for 
accelerating builds in sandboxes for expert users.
  default: True
  manual: True

flag template-haskell
  description:
    You can disable the use of the `template-haskell` package using 
`-f-template-haskell`.
    .
    Disabling this is an unsupported configuration, but it may be useful for 
accelerating builds in sandboxes for expert users.
  default: True
  manual: True

library
  default-language: Haskell98
  other-extensions: CPP
  build-depends:
    base >= 4.9 && < 5
  ghc-options: -Wall
  hs-source-dirs: src
  exposed-modules:
    Data.Tagged

  if impl(ghc >= 9.0)
    -- these flags may abort compilation with GHC-8.10
    -- https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3295
    ghc-options: -Winferred-safe-imports -Wmissing-safe-haskell-mode

  if flag(deepseq)
    build-depends: deepseq >= 1.1 && < 1.6

  if flag(template-haskell) && impl(ghc)
    build-depends: template-haskell >= 2.11 && < 2.25
    exposed-modules:
      Data.Proxy.TH

Reply via email to