Hello community,
here is the log from the commit of package ghc-incremental-parser for
openSUSE:Factory checked in at 2017-07-05 23:59:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-incremental-parser (Old)
and /work/SRC/openSUSE:Factory/.ghc-incremental-parser.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-incremental-parser"
Wed Jul 5 23:59:02 2017 rev:2 rq:506809 version:0.2.5.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-incremental-parser/ghc-incremental-parser.changes
2017-05-10 20:54:49.646356623 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-incremental-parser.new/ghc-incremental-parser.changes
2017-07-05 23:59:02.999063223 +0200
@@ -1,0 +2,5 @@
+Mon Jun 19 20:53:29 UTC 2017 - [email protected]
+
+- Update to version 0.2.5.1.
+
+-------------------------------------------------------------------
Old:
----
incremental-parser-0.2.5.tar.gz
New:
----
incremental-parser-0.2.5.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-incremental-parser.spec ++++++
--- /var/tmp/diff_new_pack.Jh0fjS/_old 2017-07-05 23:59:03.830946035 +0200
+++ /var/tmp/diff_new_pack.Jh0fjS/_new 2017-07-05 23:59:03.834945471 +0200
@@ -19,7 +19,7 @@
%global pkg_name incremental-parser
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.2.5
+Version: 0.2.5.1
Release: 0
Summary: Generic parser library capable of providing partial results
from partial input
License: GPL-3.0+
++++++ incremental-parser-0.2.5.tar.gz -> incremental-parser-0.2.5.1.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/incremental-parser-0.2.5/README.md
new/incremental-parser-0.2.5.1/README.md
--- old/incremental-parser-0.2.5/README.md 2016-09-29 04:59:01.000000000
+0200
+++ new/incremental-parser-0.2.5.1/README.md 2017-06-17 04:52:12.000000000
+0200
@@ -10,8 +10,10 @@
In order to make the incremental parsing easier, the combinator set is
optimized for monoidal results. Apart from the
usual combinators `many` and `some`, for example, there are `concatMany` and
`concatSome` operators.
+```haskell
many :: Parser s r -> Parser s [r]
concatMany :: (Monoid s, Monoid r) => Parser s r -> Parser s r
+```
#### Arbitrary monoidal inputs
@@ -22,21 +24,27 @@
In Parsec:
+```haskell
string :: Stream s m Char => String -> ParsecT s u m String
char :: Stream s m Char => Char -> ParsecT s u m Char
anyToken :: (Stream s m t, Show t) => ParsecT s u m t
+```
In Attoparsec:
+```haskell
string :: ByteString -> Parser ByteString
word8 :: Word8 -> Parser Word8
anyWord8 :: Parser Word8
+```
In incremental-parser and Picoparsec:
+```haskell
string :: (LeftCancellativeMonoid s, MonoidNull s) => s -> Parser s s
token :: (Eq s, FactorialMonoid s) => s -> Parser s s
anyToken :: FactorialMonoid s => Parser s s
+```
#### Two `Alternative` alternatives
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/incremental-parser-0.2.5/incremental-parser.cabal
new/incremental-parser-0.2.5.1/incremental-parser.cabal
--- old/incremental-parser-0.2.5/incremental-parser.cabal 2016-09-29
04:59:01.000000000 +0200
+++ new/incremental-parser-0.2.5.1/incremental-parser.cabal 2017-06-17
04:52:12.000000000 +0200
@@ -1,5 +1,5 @@
Name: incremental-parser
-Version: 0.2.5
+Version: 0.2.5.1
Cabal-Version: >= 1.10
Build-Type: Simple
Synopsis: Generic parser library capable of providing partial
results from partial input.
@@ -38,7 +38,7 @@
Default-Language: Haskell2010
Build-Depends: base < 5, monoid-subclasses < 0.5,
QuickCheck >= 2 && < 3, checkers >= 0.3.2 && < 0.5,
- tasty >= 0.7 && < 0.12, tasty-quickcheck >= 0.7 && < 0.9
+ tasty >= 0.7 && < 0.12, tasty-quickcheck >= 0.7 && < 1.0
Main-is: Test/TestIncrementalParser.hs
Other-Modules: Text.ParserCombinators.Incremental,
Text.ParserCombinators.Incremental.LeftBiasedLocal,
Text.ParserCombinators.Incremental.Symmetric,