Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-these for openSUSE:Factory checked in at 2026-06-10 16:08:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-these (Old) and /work/SRC/openSUSE:Factory/.ghc-these.new.2375 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-these" Wed Jun 10 16:08:04 2026 rev:17 rq:1358457 version:1.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-these/ghc-these.changes 2025-01-27 20:52:05.418807367 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-these.new.2375/ghc-these.changes 2026-06-10 16:12:28.856774638 +0200 @@ -1,0 +2,6 @@ +Thu Apr 16 16:12:18 UTC 2026 - Peter Simons <[email protected]> + +- Update these to version 1.2.1 revision 3. + Upstream has revised the Cabal build instructions on Hackage. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-these.spec ++++++ --- /var/tmp/diff_new_pack.KrbZ3H/_old 2026-06-10 16:12:32.248915210 +0200 +++ /var/tmp/diff_new_pack.KrbZ3H/_new 2026-06-10 16:12:32.252915376 +0200 @@ -1,7 +1,7 @@ # # spec file for package ghc-these # -# 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,7 +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/2.cabal#/%{pkg_name}.cabal +Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/3.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-assoc-devel BuildRequires: ghc-assoc-prof ++++++ these.cabal ++++++ --- /var/tmp/diff_new_pack.KrbZ3H/_old 2026-06-10 16:12:32.300917364 +0200 +++ /var/tmp/diff_new_pack.KrbZ3H/_new 2026-06-10 16:12:32.308917696 +0200 @@ -1,77 +1,79 @@ -cabal-version: >=1.10 -name: these -version: 1.2.1 -x-revision: 2 -synopsis: An either-or-both data type. -homepage: https://github.com/haskellari/these -license: BSD3 -license-file: LICENSE -author: C. McCann, Oleg Grenrus -maintainer: Oleg Grenrus <[email protected]> -category: Data, These -build-type: Simple -extra-source-files: CHANGELOG.md -description: - This package provides a data type @These a b@ which can hold a value of either - type or values of each type. This is usually thought of as an "inclusive or" - type (contrasting @Either a b@ as "exclusive or") or as an "outer join" type - (contrasting @(a, b)@ as "inner join"). - . - @ - data These a b = This a | That b | These a b - @ - . - Since version 1, this package was split into parts: - . - * <https://hackage.haskell.org/package/semialign semialign> For @Align@ and @Zip@ type-classes. - . - * <https://hackage.haskell.org/package/semialign-indexed semialign-indexed> For @SemialignWithIndex@ class, providing @ialignWith@ and @izipWith@. - . - * <https://hackage.haskell.org/package/these-lens these-lens> For lens combinators. - . - * <http://hackage.haskell.org/package/monad-chronicle monad-chronicle> For transformers variant of @These@. - -tested-with: - GHC ==8.6.5 - || ==8.8.4 - || ==8.10.7 - || ==9.0.2 - || ==9.2.8 - || ==9.4.8 - || ==9.6.6 - || ==9.8.4 - || ==9.10.1 - || ==9.12.1 - -source-repository head - type: git - location: https://github.com/haskellari/these.git - subdir: these - -library - default-language: Haskell2010 - ghc-options: -Wall -Wno-trustworthy-safe - hs-source-dirs: src - exposed-modules: - Data.Functor.These - Data.These - Data.These.Combinators - - -- ghc boot libs - build-depends: - base >=4.12.0.0 && <4.22 - , binary >=0.8.6.0 && <0.10 - , deepseq >=1.4.4.0 && <1.6 - - -- other dependencies - -- note: we need to depend on assoc-1.1 to be sure that - -- Bifunctor type class comes from bifunctor-classes-compat - build-depends: - assoc >=1.1.1 && <1.2 - , hashable >=1.4.4.0 && <1.6 - - if !impl(ghc >=9.6) - build-depends: foldable1-classes-compat >=0.1 && <0.2 - +cabal-version: >=1.10 +name: these +version: 1.2.1 +x-revision: 3 +synopsis: An either-or-both data type. +homepage: https://github.com/haskellari/these +license: BSD3 +license-file: LICENSE +author: C. McCann, Oleg Grenrus +maintainer: Oleg Grenrus <[email protected]> +category: Data, These +build-type: Simple +extra-source-files: CHANGELOG.md +description: + This package provides a data type @These a b@ which can hold a value of either + type or values of each type. This is usually thought of as an "inclusive or" + type (contrasting @Either a b@ as "exclusive or") or as an "outer join" type + (contrasting @(a, b)@ as "inner join"). + . + @ + data These a b = This a | That b | These a b + @ + . + Since version 1, this package was split into parts: + . + * <https://hackage.haskell.org/package/semialign semialign> For @Align@ and @Zip@ type-classes. + . + * <https://hackage.haskell.org/package/semialign-indexed semialign-indexed> For @SemialignWithIndex@ class, providing @ialignWith@ and @izipWith@. + . + * <https://hackage.haskell.org/package/these-lens these-lens> For lens combinators. + . + * <http://hackage.haskell.org/package/monad-chronicle monad-chronicle> For transformers variant of @These@. + +tested-with: + GHC ==8.6.5 + || ==8.8.4 + || ==8.10.7 + || ==9.0.2 + || ==9.2.8 + || ==9.4.8 + || ==9.6.6 + || ==9.8.4 + || ==9.10.1 + || ==9.12.4 + || ==9.14.1 + +source-repository head + type: git + location: https://github.com/haskellari/these.git + subdir: these + +library + default-language: Haskell2010 + ghc-options: -Wall -Wno-trustworthy-safe + hs-source-dirs: src + exposed-modules: + Data.Functor.These + Data.These + Data.These.Combinators + + -- ghc boot libs + build-depends: + base >=4.12.0.0 && <4.23 + , binary >=0.8.6.0 && <0.10 + , deepseq >=1.4.4.0 && <1.6 + + -- other dependencies + -- note: we need to depend on assoc-1.1 to be sure that + -- Bifunctor type class comes from bifunctor-classes-compat + build-depends: + assoc >=1.1.1 && <1.2 + , hashable >=1.4.4.0 && <1.6 + + if !impl(ghc >=9.6) + build-depends: foldable1-classes-compat >=0.1 && <0.2 + x-docspec-extra-packages: lens +(No newline at EOF)
