Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-concurrent-output for
openSUSE:Factory checked in at 2023-06-22 23:25:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-concurrent-output (Old)
and /work/SRC/openSUSE:Factory/.ghc-concurrent-output.new.15902 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-concurrent-output"
Thu Jun 22 23:25:18 2023 rev:8 rq:1094423 version:1.10.18
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-concurrent-output/ghc-concurrent-output.changes
2023-04-04 21:19:21.792785981 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-concurrent-output.new.15902/ghc-concurrent-output.changes
2023-06-22 23:25:41.101726505 +0200
@@ -1,0 +2,11 @@
+Mon May 15 20:34:00 UTC 2023 - Peter Simons <[email protected]>
+
+- Update concurrent-output to version 1.10.18.
+ concurrent-output (1.10.18) unstable; urgency=medium
+
+ * Avoid some build warnings on Windows.
+ * Allow ansi-terminal-1.0
+
+ -- Joey Hess <[email protected]> Mon, 15 May 2023 16:32:50 -0400
+
+-------------------------------------------------------------------
Old:
----
concurrent-output-1.10.17.tar.gz
New:
----
concurrent-output-1.10.18.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-concurrent-output.spec ++++++
--- /var/tmp/diff_new_pack.yBVBRr/_old 2023-06-22 23:25:41.853730340 +0200
+++ /var/tmp/diff_new_pack.yBVBRr/_new 2023-06-22 23:25:41.857730360 +0200
@@ -19,7 +19,7 @@
%global pkg_name concurrent-output
%global pkgver %{pkg_name}-%{version}
Name: ghc-%{pkg_name}
-Version: 1.10.17
+Version: 1.10.18
Release: 0
Summary: Ungarble output from several threads or commands
License: BSD-2-Clause
++++++ concurrent-output-1.10.17.tar.gz -> concurrent-output-1.10.18.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/concurrent-output-1.10.17/CHANGELOG
new/concurrent-output-1.10.18/CHANGELOG
--- old/concurrent-output-1.10.17/CHANGELOG 2001-09-09 03:46:40.000000000
+0200
+++ new/concurrent-output-1.10.18/CHANGELOG 2001-09-09 03:46:40.000000000
+0200
@@ -1,3 +1,10 @@
+concurrent-output (1.10.18) unstable; urgency=medium
+
+ * Avoid some build warnings on Windows.
+ * Allow ansi-terminal-1.0
+
+ -- Joey Hess <[email protected]> Mon, 15 May 2023 16:32:50 -0400
+
concurrent-output (1.10.17) unstable; urgency=medium
* Fix ansi-terminal dependency to only include >= 0.6.2,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/concurrent-output-1.10.17/System/Console/Regions.hs
new/concurrent-output-1.10.18/System/Console/Regions.hs
--- old/concurrent-output-1.10.17/System/Console/Regions.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/concurrent-output-1.10.18/System/Console/Regions.hs 2001-09-09
03:46:40.000000000 +0200
@@ -771,6 +771,8 @@
endSGR :: Char
endSGR = 'm'
+#ifndef mingw32_HOST_OS
+
-- | Finds the least expensive output to make a console that was displaying
-- the old line display the new line. Cursor starts at far left.
--
@@ -906,3 +908,5 @@
| x >= 90 && x <= 97 = Just (Foreground, x)
| x >= 100 && x <= 107 = Just (Background, x)
| otherwise = Nothing
+
+#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/concurrent-output-1.10.17/concurrent-output.cabal
new/concurrent-output-1.10.18/concurrent-output.cabal
--- old/concurrent-output-1.10.17/concurrent-output.cabal 2001-09-09
03:46:40.000000000 +0200
+++ new/concurrent-output-1.10.18/concurrent-output.cabal 2001-09-09
03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
Name: concurrent-output
-Version: 1.10.17
+Version: 1.10.18
Cabal-Version: >= 1.10
License: BSD2
Maintainer: Joey Hess <[email protected]>
@@ -39,7 +39,7 @@
, directory (>= 1.2.0 && < 1.4.0)
, transformers (>= 0.3.0 && < 0.7.0)
, exceptions (>= 0.6.0 && < 0.11.0)
- , ansi-terminal (>= 0.6.2 && < 0.12.0)
+ , ansi-terminal (>= 0.6.2 && < 1.1.0)
, terminal-size (>= 0.3.0 && < 0.4.0)
Exposed-Modules:
System.Console.Concurrent