commit ghc-polyparse for openSUSE:Factory

2020-09-07 Thread root
Hello community,

here is the log from the commit of package ghc-polyparse for openSUSE:Factory 
checked in at 2020-09-07 22:03:20

Comparing /work/SRC/openSUSE:Factory/ghc-polyparse (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-polyparse.new.3399 (New)


Package is "ghc-polyparse"

Mon Sep  7 22:03:20 2020 rev:3 rq:832304 version:1.13

Changes:

--- /work/SRC/openSUSE:Factory/ghc-polyparse/ghc-polyparse.changes  
2020-08-28 21:36:16.976749523 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-polyparse.new.3399/ghc-polyparse.changes
2020-09-07 22:03:22.622100053 +0200
@@ -1,0 +2,6 @@
+Mon Aug 31 09:34:41 UTC 2020 - psim...@suse.com
+
+- Update polyparse to version 1.13 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+---



Other differences:
--



commit ghc-polyparse for openSUSE:Factory

2020-08-28 Thread root
Hello community,

here is the log from the commit of package ghc-polyparse for openSUSE:Factory 
checked in at 2020-08-28 21:36:14

Comparing /work/SRC/openSUSE:Factory/ghc-polyparse (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-polyparse.new.3399 (New)


Package is "ghc-polyparse"

Fri Aug 28 21:36:14 2020 rev:2 rq:829383 version:1.13

Changes:

--- /work/SRC/openSUSE:Factory/ghc-polyparse/ghc-polyparse.changes  
2020-07-09 13:18:36.533125739 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-polyparse.new.3399/ghc-polyparse.changes
2020-08-28 21:36:16.976749523 +0200
@@ -1,0 +2,5 @@
+Tue Aug 18 10:45:43 UTC 2020 - Peter Simons 
+
+- Replace %setup -q with the more modern %autosetup macro.
+
+---



Other differences:
--
++ ghc-polyparse.spec ++
--- /var/tmp/diff_new_pack.PdGVbN/_old  2020-08-28 21:36:17.776749902 +0200
+++ /var/tmp/diff_new_pack.PdGVbN/_new  2020-08-28 21:36:17.780749904 +0200
@@ -51,7 +51,7 @@
 This package provides the Haskell %{pkg_name} library development files.
 
 %prep
-%setup -q -n %{pkg_name}-%{version}
+%autosetup -n %{pkg_name}-%{version}
 cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build




commit ghc-polyparse for openSUSE:Factory

2018-08-20 Thread root
Hello community,

here is the log from the commit of package ghc-polyparse for openSUSE:Factory 
checked in at 2018-08-20 16:20:47

Comparing /work/SRC/openSUSE:Factory/ghc-polyparse (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-polyparse.new (New)


Package is "ghc-polyparse"

Mon Aug 20 16:20:47 2018 rev:8 rq:630371 version:1.12

Changes:

--- /work/SRC/openSUSE:Factory/ghc-polyparse/ghc-polyparse.changes  
2018-07-24 17:21:05.927201113 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-polyparse.new/ghc-polyparse.changes 
2018-08-20 16:20:51.512944321 +0200
@@ -1,0 +2,6 @@
+Fri Aug 17 14:34:24 UTC 2018 - psim...@suse.com
+
+- Update Cabal build information to prevent build attempts with
+  GHC 8.6.x.
+
+---

New:

  polyparse.cabal



Other differences:
--
++ ghc-polyparse.spec ++
--- /var/tmp/diff_new_pack.nAhkP1/_old  2018-08-20 16:20:51.992944999 +0200
+++ /var/tmp/diff_new_pack.nAhkP1/_new  2018-08-20 16:20:51.992944999 +0200
@@ -25,6 +25,7 @@
 Group:  Development/Libraries/Haskell
 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-rpm-macros
@@ -50,6 +51,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++ polyparse.cabal ++
name:   polyparse
version:1.12
x-revision: 1
license:LGPL
license-file:   COPYRIGHT
copyright:  (c) 2006-2016 Malcolm Wallace
author: Malcolm Wallace 
maintainer: author
homepage:   http://code.haskell.org/~malcolm/polyparse/
category:   Text, Parsing
synopsis:   A variety of alternative parser combinator libraries.
description:
A variety of alternative parser combinator libraries, including
the original HuttonMeijer set.  The Poly sets have features like
good error reporting, arbitrary token type, running state, lazy
parsing, and so on.  Finally, Text.Parse is a proposed
replacement for the standard Read class, for better
deserialisation of Haskell values from Strings.
build-type: Simple
cabal-version:  >=1.6
extra-source-files: LICENCE-LGPL, LICENCE-commercial

source-repository head
  type: darcs
  location: http://code.haskell.org/polyparse

library
  hs-source-dirs:   src
  build-depends:base < 4.12
  exposed-modules:
Text.ParserCombinators.HuttonMeijer,
Text.ParserCombinators.HuttonMeijerWallace,
Text.ParserCombinators.Poly,
Text.ParserCombinators.Poly.Base,
Text.ParserCombinators.Poly.Result,
Text.ParserCombinators.Poly.Parser,
Text.ParserCombinators.Poly.Plain,
Text.ParserCombinators.Poly.Lazy,
Text.ParserCombinators.Poly.StateParser,
Text.ParserCombinators.Poly.State,
Text.ParserCombinators.Poly.StateLazy,
Text.ParserCombinators.Poly.Lex,
Text.Parse
  if impl(ghc)
build-depends:  bytestring
build-depends:   text
exposed-modules:
Text.ParserCombinators.Poly.ByteString
Text.ParserCombinators.Poly.ByteStringChar
Text.Parse.ByteString
Text.ParserCombinators.Poly.Text
Text.ParserCombinators.Poly.StateText
--  Text.Parse.Text
  cpp-options:  -DVERSION="1.12"
  nhc98-options:-K6M
  extensions:   CPP



commit ghc-polyparse for openSUSE:Factory

2018-07-24 Thread root
Hello community,

here is the log from the commit of package ghc-polyparse for openSUSE:Factory 
checked in at 2018-07-24 17:21:05

Comparing /work/SRC/openSUSE:Factory/ghc-polyparse (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-polyparse.new (New)


Package is "ghc-polyparse"

Tue Jul 24 17:21:05 2018 rev:7 rq:623832 version:1.12

Changes:

--- /work/SRC/openSUSE:Factory/ghc-polyparse/ghc-polyparse.changes  
2018-05-30 12:26:50.231249439 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-polyparse.new/ghc-polyparse.changes 
2018-07-24 17:21:05.927201113 +0200
@@ -1,0 +2,6 @@
+Wed Jul 18 14:26:36 UTC 2018 - psim...@suse.com
+
+- Cosmetic: replace tabs with blanks, strip trailing white space,
+  and update copyright headers with spec-cleaner.
+
+---
@@ -42 +47,0 @@
-



Other differences:
--
++ ghc-polyparse.spec ++
--- /var/tmp/diff_new_pack.EA9MIF/_old  2018-07-24 17:21:06.327201625 +0200
+++ /var/tmp/diff_new_pack.EA9MIF/_new  2018-07-24 17:21:06.331201631 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-polyparse
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed




commit ghc-polyparse for openSUSE:Factory

2018-05-30 Thread root
Hello community,

here is the log from the commit of package ghc-polyparse for openSUSE:Factory 
checked in at 2018-05-30 12:19:59

Comparing /work/SRC/openSUSE:Factory/ghc-polyparse (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-polyparse.new (New)


Package is "ghc-polyparse"

Wed May 30 12:19:59 2018 rev:6 rq:609800 version:1.12

Changes:

--- /work/SRC/openSUSE:Factory/ghc-polyparse/ghc-polyparse.changes  
2017-09-15 22:05:55.933981445 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-polyparse.new/ghc-polyparse.changes 
2018-05-30 12:26:50.231249439 +0200
@@ -1,0 +2,6 @@
+Wed May 16 13:06:58 UTC 2018 - psim...@suse.com
+
+- Prefer the new %license attribute over %doc.
+- Use SPDX 3.x license id.
+
+---



Other differences:
--
++ ghc-polyparse.spec ++
--- /var/tmp/diff_new_pack.8Bagzk/_old  2018-05-30 12:26:50.951224759 +0200
+++ /var/tmp/diff_new_pack.8Bagzk/_new  2018-05-30 12:26:50.951224759 +0200
@@ -21,7 +21,7 @@
 Version:1.12
 Release:0
 Summary:A variety of alternative parser combinator libraries
-License:LGPL-2.1
+License:LGPL-2.1-only
 Group:  Development/Libraries/Haskell
 URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
@@ -64,7 +64,7 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%doc COPYRIGHT
+%license COPYRIGHT
 
 %files devel -f %{name}-devel.files
 %doc LICENCE-LGPL LICENCE-commercial




commit ghc-polyparse for openSUSE:Factory

2017-09-15 Thread root
Hello community,

here is the log from the commit of package ghc-polyparse for openSUSE:Factory 
checked in at 2017-09-15 22:05:54

Comparing /work/SRC/openSUSE:Factory/ghc-polyparse (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-polyparse.new (New)


Package is "ghc-polyparse"

Fri Sep 15 22:05:54 2017 rev:5 rq:525197 version:1.12

Changes:

--- /work/SRC/openSUSE:Factory/ghc-polyparse/ghc-polyparse.changes  
2016-08-16 13:03:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-polyparse.new/ghc-polyparse.changes 
2017-09-15 22:05:55.933981445 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-polyparse.spec ++
--- /var/tmp/diff_new_pack.w5QjCp/_old  2017-09-15 22:05:56.701873252 +0200
+++ /var/tmp/diff_new_pack.w5QjCp/_new  2017-09-15 22:05:56.705872688 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-polyparse
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,16 +22,13 @@
 Release:0
 Summary:A variety of alternative parser combinator libraries
 License:LGPL-2.1
-Group:  System/Libraries
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-text-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 A variety of alternative parser combinator libraries, including the original
@@ -42,7 +39,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -54,15 +51,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 
@@ -70,11 +64,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc COPYRIGHT
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc LICENCE-LGPL LICENCE-commercial
 
 %changelog




commit ghc-polyparse for openSUSE:Factory

2016-08-16 Thread h_root
Hello community,

here is the log from the commit of package ghc-polyparse for openSUSE:Factory 
checked in at 2016-08-16 13:03:33

Comparing /work/SRC/openSUSE:Factory/ghc-polyparse (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-polyparse.new (New)


Package is "ghc-polyparse"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-polyparse/ghc-polyparse.changes  
2016-07-27 16:09:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-polyparse.new/ghc-polyparse.changes 
2016-08-16 13:03:35.0 +0200
@@ -1,0 +2,5 @@
+Sat Jul 23 12:03:28 UTC 2016 - jeng...@inai.de
+
+- Update License field
+
+---



Other differences:
--
++ ghc-polyparse.spec ++
--- /var/tmp/diff_new_pack.sM5Aqt/_old  2016-08-16 13:03:36.0 +0200
+++ /var/tmp/diff_new_pack.sM5Aqt/_new  2016-08-16 13:03:36.0 +0200
@@ -21,7 +21,7 @@
 Version:1.12
 Release:0
 Summary:A variety of alternative parser combinator libraries
-License:LGPL-2.0+
+License:LGPL-2.1
 Group:  System/Libraries
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz




commit ghc-polyparse for openSUSE:Factory

2016-07-27 Thread h_root
Hello community,

here is the log from the commit of package ghc-polyparse for openSUSE:Factory 
checked in at 2016-07-27 16:08:47

Comparing /work/SRC/openSUSE:Factory/ghc-polyparse (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-polyparse.new (New)


Package is "ghc-polyparse"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-polyparse/ghc-polyparse.changes  
2016-05-31 12:24:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-polyparse.new/ghc-polyparse.changes 
2016-07-27 16:09:02.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 10 17:27:36 UTC 2016 - psim...@suse.com
+
+- Update to version 1.12 revision 0 with cabal2obs.
+
+---



Other differences:
--
++ ghc-polyparse.spec ++
--- /var/tmp/diff_new_pack.LAjIeP/_old  2016-07-27 16:09:03.0 +0200
+++ /var/tmp/diff_new_pack.LAjIeP/_new  2016-07-27 16:09:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-polyparse
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX 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,21 +17,21 @@
 
 
 %global pkg_name polyparse
-# no useful debuginfo for Haskell packages without C sources
-%global debug_package %{nil}
 Name:   ghc-%{pkg_name}
 Version:1.12
 Release:0
 Summary:A variety of alternative parser combinator libraries
 License:LGPL-2.0+
-Group:  Development/Libraries/Other
-Url:http://hackage.haskell.org/package/%{pkg_name}
-Source0:
http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
+Group:  System/Libraries
+Url:https://hackage.haskell.org/package/%{pkg_name}
+Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
+# Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-text-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# End cabal-rpm deps
 
 %description
 A variety of alternative parser combinator libraries, including the original
@@ -44,6 +44,9 @@
 Summary:Haskell %{pkg_name} library development files
 Group:  Development/Libraries/Other
 Requires:   %{name} = %{version}-%{release}
+Requires:   ghc-compiler = %{ghc_version}
+Requires(post): ghc-compiler = %{ghc_version}
+Requires(postun): ghc-compiler = %{ghc_version}
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
@@ -51,17 +54,20 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
+
 %build
-%{ghc_lib_build}
+%ghc_lib_build
+
 
 %install
-%{ghc_lib_install}
+%ghc_lib_install
+
 
 %post devel
-%{ghc_pkg_recache}
+%ghc_pkg_recache
 
 %postun devel
-%{ghc_pkg_recache}
+%ghc_pkg_recache
 
 %files -f %{name}.files
 %defattr(-,root,root,-)
@@ -69,5 +75,6 @@
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
+%doc LICENCE-LGPL LICENCE-commercial
 
 %changelog




commit ghc-polyparse for openSUSE:Factory

2016-05-31 Thread h_root
Hello community,

here is the log from the commit of package ghc-polyparse for openSUSE:Factory 
checked in at 2016-05-31 12:24:31

Comparing /work/SRC/openSUSE:Factory/ghc-polyparse (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-polyparse.new (New)


Package is "ghc-polyparse"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-polyparse/ghc-polyparse.changes  
2015-05-27 12:42:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-polyparse.new/ghc-polyparse.changes 
2016-05-31 12:24:32.0 +0200
@@ -1,0 +2,5 @@
+Tue May 17 07:30:01 UTC 2016 - mimi...@gmail.com
+
+- update to 1.12 
+
+---

Old:

  polyparse-1.11.tar.gz

New:

  polyparse-1.12.tar.gz



Other differences:
--
++ ghc-polyparse.spec ++
--- /var/tmp/diff_new_pack.nOsv7P/_old  2016-05-31 12:24:33.0 +0200
+++ /var/tmp/diff_new_pack.nOsv7P/_new  2016-05-31 12:24:33.0 +0200
@@ -20,7 +20,7 @@
 # no useful debuginfo for Haskell packages without C sources
 %global debug_package %{nil}
 Name:   ghc-%{pkg_name}
-Version:1.11
+Version:1.12
 Release:0
 Summary:A variety of alternative parser combinator libraries
 License:LGPL-2.0+

++ polyparse-1.11.tar.gz -> polyparse-1.12.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/polyparse-1.11/LICENCE-LGPL 
new/polyparse-1.12/LICENCE-LGPL
--- old/polyparse-1.11/LICENCE-LGPL 1970-01-01 01:00:00.0 +0100
+++ new/polyparse-1.12/LICENCE-LGPL 2016-04-12 19:10:33.0 +0200
@@ -0,0 +1,508 @@
+  GNU LESSER GENERAL PUBLIC LICENSE
+   Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL.  It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+  This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it.  You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations
+below.
+
+  When we speak of free software, we are referring to freedom of use,
+not price.  Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+  To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights.  These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+  For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you.  You must make sure that they, too, receive or can get the source
+code.  If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it.  And you must show them these terms so they know their rights.
+
+  We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+  To protect each distributor, we want to make it very clear that
+there is no warranty for the free library.  Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+  Finally, software patents pose a constant threat to the existence of