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 2023-04-04 21:23:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-tagged (Old) and /work/SRC/openSUSE:Factory/.ghc-tagged.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-tagged" Tue Apr 4 21:23:36 2023 rev:24 rq:1076062 version:0.8.7 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-tagged/ghc-tagged.changes 2022-10-13 15:43:21.690880389 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-tagged.new.19717/ghc-tagged.changes 2023-04-04 21:23:57.762400540 +0200 @@ -1,0 +2,17 @@ +Thu Mar 30 17:08:29 UTC 2023 - Peter Simons <[email protected]> + +- Updated spec file to conform with ghc-rpm-macros-2.5.2. + +------------------------------------------------------------------- +Sat Feb 18 14:37:44 UTC 2023 - Peter Simons <[email protected]> + +- Update tagged to version 0.8.7. + 0.8.7 [2023.02.18] + ------------------ + * Define `Foldable1` and `Bifoldable1` instances for `Tagged`. These instances + were originally defined in the `semigroupoids` library, and they have now + been migrated to `tagged` as a side effect of adapting to + [this Core Libraries Proposal](https://github.com/haskell/core-libraries-committee/issues/9), + which adds `Foldable1` and `Bifoldable1` to `base`. + +------------------------------------------------------------------- Old: ---- tagged-0.8.6.1.tar.gz tagged.cabal New: ---- tagged-0.8.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-tagged.spec ++++++ --- /var/tmp/diff_new_pack.z7cJK3/_old 2023-04-04 21:23:58.358403915 +0200 +++ /var/tmp/diff_new_pack.z7cJK3/_new 2023-04-04 21:23:58.366403960 +0200 @@ -1,7 +1,7 @@ # # spec file for package ghc-tagged # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,19 +17,24 @@ %global pkg_name tagged +%global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.8.6.1 +Version: 0.8.7 Release: 0 Summary: Haskell 98 phantom types to avoid unsafely passing dummy arguments 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/3.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-base-devel +BuildRequires: ghc-base-prof BuildRequires: ghc-deepseq-devel +BuildRequires: ghc-deepseq-prof BuildRequires: ghc-rpm-macros BuildRequires: ghc-template-haskell-devel +BuildRequires: ghc-template-haskell-prof BuildRequires: ghc-transformers-devel +BuildRequires: ghc-transformers-prof ExcludeArch: %{ix86} %description @@ -45,9 +50,24 @@ %description devel This package provides the Haskell %{pkg_name} library development files. +%package -n ghc-%{pkg_name}-doc +Summary: Haskell %{pkg_name} library documentation +Requires: ghc-filesystem +BuildArch: noarch + +%description -n ghc-%{pkg_name}-doc +This package provides the Haskell %{pkg_name} library documentation. + +%package -n ghc-%{pkg_name}-prof +Summary: Haskell %{pkg_name} profiling library +Requires: ghc-%{pkg_name}-devel = %{version}-%{release} +Supplements: (ghc-%{pkg_name}-devel and ghc-prof) + +%description -n ghc-%{pkg_name}-prof +This package provides the Haskell %{pkg_name} profiling library. + %prep %autosetup -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build @@ -67,4 +87,9 @@ %files devel -f %{name}-devel.files %doc CHANGELOG.markdown README.markdown +%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files +%license LICENSE + +%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files + %changelog ++++++ tagged-0.8.6.1.tar.gz -> tagged-0.8.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tagged-0.8.6.1/CHANGELOG.markdown new/tagged-0.8.7/CHANGELOG.markdown --- old/tagged-0.8.6.1/CHANGELOG.markdown 2001-09-09 03:46:40.000000000 +0200 +++ new/tagged-0.8.7/CHANGELOG.markdown 2001-09-09 03:46:40.000000000 +0200 @@ -1,3 +1,11 @@ +0.8.7 [2023.02.18] +------------------ +* Define `Foldable1` and `Bifoldable1` instances for `Tagged`. These instances + were originally defined in the `semigroupoids` library, and they have now + been migrated to `tagged` as a side effect of adapting to + [this Core Libraries Proposal](https://github.com/haskell/core-libraries-committee/issues/9), + which adds `Foldable1` and `Bifoldable1` to `base`. + 0.8.6.1 [2020.12.28] -------------------- * Mark all modules as explicitly Safe or Trustworthy. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tagged-0.8.6.1/src/Data/Tagged.hs new/tagged-0.8.7/src/Data/Tagged.hs --- old/tagged-0.8.6.1/src/Data/Tagged.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/tagged-0.8.7/src/Data/Tagged.hs 2001-09-09 03:46:40.000000000 +0200 @@ -46,9 +46,9 @@ , reproxy ) where -#if MIN_VERSION_base(4,8,0) +#if MIN_VERSION_base(4,8,0) && !(MIN_VERSION_base(4,18,0)) import Control.Applicative (liftA2) -#else +#elif !(MIN_VERSION_base(4,8,0)) import Control.Applicative ((<$>), liftA2, Applicative(..)) import Data.Traversable (Traversable(..)) import Data.Monoid @@ -73,6 +73,10 @@ import Data.Bifoldable (Bifoldable(..)) import Data.Bitraversable (Bitraversable(..)) #endif +#if MIN_VERSION_base(4,18,0) +import Data.Foldable1 (Foldable1(..)) +import Data.Bifoldable1 (Bifoldable1(..)) +#endif #ifdef __GLASGOW_HASKELL__ import Data.Data #endif @@ -196,6 +200,16 @@ {-# INLINE bitraverse #-} #endif +#if MIN_VERSION_base(4,18,0) +instance Foldable1 (Tagged a) where + foldMap1 f (Tagged a) = f a + {-# INLINE foldMap1 #-} + +instance Bifoldable1 Tagged where + bifoldMap1 _ g (Tagged b) = g b + {-# INLINE bifoldMap1 #-} +#endif + #ifdef MIN_VERSION_deepseq instance NFData b => NFData (Tagged s b) where rnf (Tagged b) = rnf b diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tagged-0.8.6.1/tagged.cabal new/tagged-0.8.7/tagged.cabal --- old/tagged-0.8.6.1/tagged.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/tagged-0.8.7/tagged.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,5 @@ name: tagged -version: 0.8.6.1 +version: 0.8.7 license: BSD3 license-file: LICENSE author: Edward A. Kmett @@ -24,8 +24,12 @@ , GHC == 8.2.2 , GHC == 8.4.4 , GHC == 8.6.5 - , GHC == 8.8.3 - , GHC == 8.10.1 + , GHC == 8.8.4 + , GHC == 8.10.7 + , GHC == 9.0.2 + , GHC == 9.2.5 + , GHC == 9.4.4 + , GHC == 9.6.1 source-repository head type: git @@ -74,13 +78,13 @@ if impl(ghc>=7.6) exposed-modules: Data.Proxy.TH - build-depends: template-haskell >= 2.8 && < 2.18 + build-depends: template-haskell >= 2.8 && < 2.21 if flag(deepseq) build-depends: deepseq >= 1.1 && < 1.5 if flag(transformers) - build-depends: transformers >= 0.2 && < 0.6 + build-depends: transformers >= 0.2 && < 0.7 -- Ensure Data.Functor.Classes is always available if impl(ghc >= 7.10) || impl(ghcjs)
