Hello community,

here is the log from the commit of package ghc-parsec for openSUSE:Factory 
checked in at 2014-11-26 20:54:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-parsec (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-parsec.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-parsec"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-parsec/ghc-parsec.changes    2014-08-25 
11:05:59.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-parsec.new/ghc-parsec.changes       
2014-11-26 20:55:01.000000000 +0100
@@ -1,0 +2,12 @@
+Fri Sep 12 06:39:23 UTC 2014 - [email protected]
+
+- update to 3.1.5
+* no changelog
+* Haskell Platform 2014.2.0.0 
+
+-------------------------------------------------------------------
+Tue Sep  2 09:45:46 UTC 2014 - [email protected]
+
+- regenerate spec file 
+
+-------------------------------------------------------------------

Old:
----
  parsec-3.1.3.tar.gz

New:
----
  parsec-3.1.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-parsec.spec ++++++
--- /var/tmp/diff_new_pack.DFZfFv/_old  2014-11-26 20:55:02.000000000 +0100
+++ /var/tmp/diff_new_pack.DFZfFv/_new  2014-11-26 20:55:02.000000000 +0100
@@ -1,8 +1,7 @@
 #
 # spec file for package ghc-parsec
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
-# Copyright (c) 2012 Peter Trommler [email protected]
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,47 +16,47 @@
 #
 
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
-#
-
 %global pkg_name parsec
 
-%global common_summary Haskell monadic parser combinators library
-
-%global common_description Parsec is designed from scratch as an 
industrial-strength parser library. It is simple, safe, well documented (on the 
package homepage), has extensive libraries and good error messages, and is also 
fast. It is defined as a monad transformer that can be stacked on arbitrary 
monads, and it is also parametric in the input stream type.
-
 Name:           ghc-parsec
-Version:        3.1.3
+Version:        3.1.5
 Release:        0
-Summary:        %{common_summary}
+Summary:        Monadic parser combinators
 License:        BSD-3-Clause
 Group:          System/Libraries
 
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-# BEGIN cabal2spec
 Url:            http://hackage.haskell.org/package/%{pkg_name}
 Source0:        
http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+
 BuildRequires:  ghc-Cabal-devel
+BuildRequires:  ghc-rpm-macros
+# Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-mtl-devel
-BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-text-devel
-# END cabal2spec
+# End cabal-rpm deps
 
 %description
-%{common_description}
+Parsec is designed from scratch as an industrial-strength parser library.
+It is simple, safe, well documented (on the package homepage), has extensive
+libraries and good error messages, and is also fast. It is defined as a monad
+transformer that can be stacked on arbitrary monads, and it is also parametric
+in the input stream type.
+
 
 %package devel
 Summary:        Haskell %{pkg_name} library development files
-Group:          Development/Languages/Other
-Requires:       ghc-compiler
-Requires(post): ghc-compiler
-Requires(postun): ghc-compiler
+Group:          Development/Libraries/Other
+Provides:       %{name}-static = %{version}-%{release}
+Requires:       ghc-compiler = %{ghc_version}
+Requires(post): ghc-compiler = %{ghc_version}
+Requires(postun): ghc-compiler = %{ghc_version}
 Requires:       %{name} = %{version}-%{release}
 
 %description devel
-%{common_description}
-This package contains the development files.
+This package provides the Haskell %{pkg_name} library development files.
+
 
 %prep
 %setup -q -n %{pkg_name}-%{version}

++++++ parsec-3.1.3.tar.gz -> parsec-3.1.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parsec-3.1.3/CHANGES new/parsec-3.1.5/CHANGES
--- old/parsec-3.1.3/CHANGES    2012-06-12 04:03:42.000000000 +0200
+++ new/parsec-3.1.5/CHANGES    2014-01-11 07:13:34.000000000 +0100
@@ -1,3 +1,6 @@
+3.1.4 & 3.1.5
+
+- Bump dependency on 'text'
 
 3.1.3
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parsec-3.1.3/Text/Parsec/Token.hs 
new/parsec-3.1.5/Text/Parsec/Token.hs
--- old/parsec-3.1.3/Text/Parsec/Token.hs       2012-06-12 04:03:42.000000000 
+0200
+++ new/parsec-3.1.5/Text/Parsec/Token.hs       2014-01-11 07:13:34.000000000 
+0100
@@ -38,7 +38,7 @@
 type LanguageDef st = GenLanguageDef String st Identity
 
 -- | The @GenLanguageDef@ type is a record that contains all parameterizable
--- features of the 'Text.Parsec.Token' module. The module 
'Text.Parsec.Language'
+-- features of the "Text.Parsec.Token" module. The module 
"Text.Parsec.Language"
 -- contains some default definitions.
 
 data GenLanguageDef s u m
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parsec-3.1.3/parsec.cabal 
new/parsec-3.1.5/parsec.cabal
--- old/parsec-3.1.3/parsec.cabal       2012-06-12 04:03:42.000000000 +0200
+++ new/parsec-3.1.5/parsec.cabal       2014-01-11 07:13:34.000000000 +0100
@@ -1,5 +1,5 @@
 name:          parsec
-version:       3.1.3
+version:       3.1.5
 cabal-version: >= 1.6
 license:       BSD3
 license-file:  LICENSE
@@ -25,7 +25,7 @@
 source-repository this
     type: darcs
     location: http://code.haskell.org/parsec3
-    tag: 3.1.3
+    tag: 3.1.5
 
 flag base4
     Description: Use base-4.*
@@ -63,6 +63,6 @@
     else
         build-depends: base >= 3.0.3 && < 4
         cpp-options: -DBASE3
-    build-depends: mtl, bytestring, text >= 0.2 && < 0.12
+    build-depends: mtl, bytestring, text >= 0.2 && < 1.2
     extensions:        ExistentialQuantification, PolymorphicComponents, 
MultiParamTypeClasses, FlexibleInstances, FlexibleContexts, DeriveDataTypeable, 
CPP
     ghc-options:       -O2

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to