Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-text-iso8601 for openSUSE:Factory checked in at 2025-01-27 20:51:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-text-iso8601 (Old) and /work/SRC/openSUSE:Factory/.ghc-text-iso8601.new.2316 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-text-iso8601" Mon Jan 27 20:51:44 2025 rev:4 rq:1239830 version:0.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-text-iso8601/ghc-text-iso8601.changes 2024-10-28 15:21:56.947521036 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-text-iso8601.new.2316/ghc-text-iso8601.changes 2025-01-27 20:52:01.822658903 +0100 @@ -1,0 +2,6 @@ +Wed Jan 15 06:45:24 UTC 2025 - Peter Simons <psim...@suse.com> + +- Update text-iso8601 to version 0.1.1 revision 2. + Upstream has revised the Cabal build instructions on Hackage. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-text-iso8601.spec ++++++ --- /var/tmp/diff_new_pack.xcsPcE/_old 2025-01-27 20:52:03.290719511 +0100 +++ /var/tmp/diff_new_pack.xcsPcE/_new 2025-01-27 20:52:03.294719676 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-text-iso8601 # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,7 +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 +Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-base-devel BuildRequires: ghc-base-prof ++++++ text-iso8601.cabal ++++++ --- /var/tmp/diff_new_pack.xcsPcE/_old 2025-01-27 20:52:03.330721162 +0100 +++ /var/tmp/diff_new_pack.xcsPcE/_new 2025-01-27 20:52:03.334721328 +0100 @@ -1,91 +1,92 @@ -cabal-version: 1.12 -name: text-iso8601 -version: 0.1.1 -x-revision: 1 -synopsis: Converting time to and from ISO 8601 text. -description: - Converting time to and from IS0 8601 text. - Specifically the [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) profile. - -license: BSD3 -license-file: LICENSE -category: Parsing -copyright: Oleg Grenrus <oleg.gren...@iki.fi> -author: Oleg Grenrus <oleg.gren...@iki.fi> -maintainer: - Oleg Grenrus <oleg.gren...@iki.fi> - -homepage: https://github.com/haskell/aeson -bug-reports: https://github.com/haskell/aeson/issues -build-type: Simple -tested-with: - GHC ==8.6.5 - || ==8.8.4 - || ==8.10.7 - || ==9.0.2 - || ==9.2.8 - || ==9.4.8 - || ==9.6.5 - || ==9.8.2 - || ==9.10.1 - -extra-source-files: changelog.md - -source-repository head - type: git - location: git://github.com/haskell/aeson.git - subdir: text-iso8601 - -library - default-language: Haskell2010 - hs-source-dirs: src - ghc-options: -Wall - exposed-modules: - Data.Time.FromText - Data.Time.ToText - - build-depends: - base >=4.12.0.0 && <5 - , integer-conversion >=0.1 && <0.2 - , text >=1.2.3.0 && <1.3.0.0 || >=2.0 && <2.2 - , time >=1.8.0.2 && <1.15 - , time-compat >=1.9.4 && <1.10 - -test-suite text-iso8601-tests - default-language: Haskell2010 - hs-source-dirs: tests - type: exitcode-stdio-1.0 - main-is: text-iso8601-tests.hs - ghc-options: -Wall - build-depends: - base - , text - , text-iso8601 - , time-compat - - -- test dependencies - build-depends: - QuickCheck >=2.14.3 && <2.16 - , quickcheck-instances >=0.3.29.1 && <0.4 - , tasty >=1.4.3 && <1.6 - , tasty-hunit >=0.10.0.3 && <0.11 - , tasty-quickcheck >=0.10.2 && <0.11 - -benchmark text-iso8601-bench - default-language: Haskell2010 - hs-source-dirs: bench - type: exitcode-stdio-1.0 - main-is: text-iso8601-bench.hs - ghc-options: -Wall - build-depends: - base - , text - , text-iso8601 - , time-compat - - -- bench dependencies - build-depends: - attoparsec >=0.14.4 && <0.15 - , attoparsec-iso8601 >=1.1.0.1 && <1.2 - , tasty-bench >=0.3.4 && <0.4 +cabal-version: 1.12 +name: text-iso8601 +version: 0.1.1 +x-revision: 2 +synopsis: Converting time to and from ISO 8601 text. +description: + Converting time to and from IS0 8601 text. + Specifically the [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) profile. + +license: BSD3 +license-file: LICENSE +category: Parsing +copyright: Oleg Grenrus <oleg.gren...@iki.fi> +author: Oleg Grenrus <oleg.gren...@iki.fi> +maintainer: + Oleg Grenrus <oleg.gren...@iki.fi> + +homepage: https://github.com/haskell/aeson +bug-reports: https://github.com/haskell/aeson/issues +build-type: Simple +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 + +extra-source-files: changelog.md + +source-repository head + type: git + location: git://github.com/haskell/aeson.git + subdir: text-iso8601 + +library + default-language: Haskell2010 + hs-source-dirs: src + ghc-options: -Wall + exposed-modules: + Data.Time.FromText + Data.Time.ToText + + build-depends: + base >=4.12.0.0 && <5 + , integer-conversion >=0.1 && <0.2 + , text >=1.2.3.0 && <1.3.0.0 || >=2.0 && <2.2 + , time >=1.8.0.2 && <1.15 + , time-compat >=1.9.4 && <1.10 + +test-suite text-iso8601-tests + default-language: Haskell2010 + hs-source-dirs: tests + type: exitcode-stdio-1.0 + main-is: text-iso8601-tests.hs + ghc-options: -Wall + build-depends: + base + , text + , text-iso8601 + , time-compat + + -- test dependencies + build-depends: + QuickCheck >=2.14.3 && <2.16 + , quickcheck-instances >=0.3.29.1 && <0.4 + , tasty >=1.4.3 && <1.6 + , tasty-hunit >=0.10.0.3 && <0.11 + , tasty-quickcheck >=0.10.2 && <0.12 + +benchmark text-iso8601-bench + default-language: Haskell2010 + hs-source-dirs: bench + type: exitcode-stdio-1.0 + main-is: text-iso8601-bench.hs + ghc-options: -Wall + build-depends: + base + , text + , text-iso8601 + , time-compat + + -- bench dependencies + build-depends: + attoparsec >=0.14.4 && <0.15 + , attoparsec-iso8601 >=1.1.0.1 && <1.2 + , tasty-bench >=0.3.4 && <0.5