Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-string-interpolate for
openSUSE:Factory checked in at 2023-01-18 13:10:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-string-interpolate (Old)
and /work/SRC/openSUSE:Factory/.ghc-string-interpolate.new.32243 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-string-interpolate"
Wed Jan 18 13:10:45 2023 rev:2 rq:1059117 version:0.3.2.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-string-interpolate/ghc-string-interpolate.changes
2022-10-13 15:44:29.863013470 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-string-interpolate.new.32243/ghc-string-interpolate.changes
2023-01-18 13:11:10.064931805 +0100
@@ -1,0 +2,8 @@
+Mon Dec 12 15:21:45 UTC 2022 - Peter Simons <[email protected]>
+
+- Update string-interpolate to version 0.3.2.0.
+ ## v0.3.2.0 (2022-12-12)
+
+ + Added support for GHC 9.4
+
+-------------------------------------------------------------------
Old:
----
string-interpolate-0.3.1.2.tar.gz
string-interpolate.cabal
New:
----
string-interpolate-0.3.2.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-string-interpolate.spec ++++++
--- /var/tmp/diff_new_pack.oLkNqN/_old 2023-01-18 13:11:11.224936300 +0100
+++ /var/tmp/diff_new_pack.oLkNqN/_new 2023-01-18 13:11:11.228936315 +0100
@@ -19,13 +19,12 @@
%global pkg_name string-interpolate
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.3.1.2
+Version: 0.3.2.0
Release: 0
Summary: Haskell string/text/bytestring interpolation that just works
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-bytestring-devel
BuildRequires: ghc-haskell-src-exts-devel
@@ -67,7 +66,6 @@
%prep
%autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
++++++ string-interpolate-0.3.1.2.tar.gz -> string-interpolate-0.3.2.0.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/string-interpolate-0.3.1.2/CHANGELOG.md
new/string-interpolate-0.3.2.0/CHANGELOG.md
--- old/string-interpolate-0.3.1.2/CHANGELOG.md 2001-09-09 03:46:40.000000000
+0200
+++ new/string-interpolate-0.3.2.0/CHANGELOG.md 2001-09-09 03:46:40.000000000
+0200
@@ -2,6 +2,10 @@
## Unreleased
+## v0.3.2.0 (2022-12-12)
+
++ Added support for GHC 9.4
+
## v0.3.1.2 (2022-05-15)
+ Updated dependency versions for HSpec and template-haskell
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/string-interpolate-0.3.1.2/bench/bench.hs
new/string-interpolate-0.3.2.0/bench/bench.hs
--- old/string-interpolate-0.3.1.2/bench/bench.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/string-interpolate-0.3.2.0/bench/bench.hs 2001-09-09
03:46:40.000000000 +0200
@@ -8,6 +8,7 @@
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE TypeApplications #-}
+{-# LANGUAGE TypeOperators #-}
import Criterion ( Benchmark, bench, bgroup, env, nf )
import Criterion.Main ( defaultMain )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/string-interpolate-0.3.1.2/src/lib/Data/String/Interpolate/Conversion/Classes.hs
new/string-interpolate-0.3.2.0/src/lib/Data/String/Interpolate/Conversion/Classes.hs
---
old/string-interpolate-0.3.1.2/src/lib/Data/String/Interpolate/Conversion/Classes.hs
2001-09-09 03:46:40.000000000 +0200
+++
new/string-interpolate-0.3.2.0/src/lib/Data/String/Interpolate/Conversion/Classes.hs
2001-09-09 03:46:40.000000000 +0200
@@ -1,6 +1,7 @@
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TypeFamilies #-}
+{-# LANGUAGE TypeOperators #-}
module Data.String.Interpolate.Conversion.Classes
( B(..)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/string-interpolate-0.3.1.2/src/lib/Data/String/Interpolate/Conversion.hs
new/string-interpolate-0.3.2.0/src/lib/Data/String/Interpolate/Conversion.hs
---
old/string-interpolate-0.3.1.2/src/lib/Data/String/Interpolate/Conversion.hs
2001-09-09 03:46:40.000000000 +0200
+++
new/string-interpolate-0.3.2.0/src/lib/Data/String/Interpolate/Conversion.hs
2001-09-09 03:46:40.000000000 +0200
@@ -14,6 +14,7 @@
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE Strict #-}
{-# LANGUAGE TypeFamilies #-}
+{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
module Data.String.Interpolate.Conversion
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/string-interpolate-0.3.1.2/string-interpolate.cabal
new/string-interpolate-0.3.2.0/string-interpolate.cabal
--- old/string-interpolate-0.3.1.2/string-interpolate.cabal 2001-09-09
03:46:40.000000000 +0200
+++ new/string-interpolate-0.3.2.0/string-interpolate.cabal 2001-09-09
03:46:40.000000000 +0200
@@ -1,7 +1,7 @@
cabal-version: 1.18
name: string-interpolate
-version: 0.3.1.2
+version: 0.3.2.0
synopsis: Haskell string/text/bytestring interpolation that just works
description: Unicode-aware string interpolation that handles all textual
types.
.
@@ -72,11 +72,11 @@
build-depends:
base >=4.11
, bytestring <0.12
- , text <1.3
+ , text <2.1
, split <0.3
, haskell-src-exts <1.24
, haskell-src-meta <0.9
- , template-haskell <2.19
+ , template-haskell <2.20
, text-conversions <0.4
, utf8-string <1.1
default-language: Haskell2010
@@ -93,8 +93,8 @@
, string-interpolate
, QuickCheck <2.15
, bytestring <0.12
- , text <1.3
- , template-haskell <2.19
+ , text <2.1
+ , template-haskell <2.20
, hspec <2.11
, hspec-core <2.11
, quickcheck-instances <0.4
@@ -114,10 +114,10 @@
, string-interpolate
, QuickCheck <2.15
, bytestring <0.12
- , text <1.3
+ , text <2.1
, deepseq <1.5
- , criterion <1.6
- , formatting <7.2
+ , criterion <1.7
+ , formatting <7.3
, interpolate <0.3
, neat-interpolation <0.6
if flag(extended-benchmarks)