Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-parsers for openSUSE:Factory 
checked in at 2021-03-28 11:56:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-parsers (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-parsers.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-parsers"

Sun Mar 28 11:56:00 2021 rev:4 rq:881542 version:0.12.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-parsers/ghc-parsers.changes  2020-12-22 
11:44:04.913747619 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-parsers.new.2401/ghc-parsers.changes        
2021-03-28 11:57:50.040302140 +0200
@@ -1,0 +2,6 @@
+Tue Mar 23 10:28:21 UTC 2021 - psim...@suse.com
+
+- Update parsers to version 0.12.10 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  parsers.cabal

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

Other differences:
------------------
++++++ ghc-parsers.spec ++++++
--- /var/tmp/diff_new_pack.3mxkH4/_old  2021-03-28 11:57:50.668302696 +0200
+++ /var/tmp/diff_new_pack.3mxkH4/_new  2021-03-28 11:57:50.668302696 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-parsers
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,7 @@
 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-attoparsec-devel
 BuildRequires:  ghc-base-orphans-devel
@@ -67,6 +68,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ parsers.cabal ++++++
name:          parsers
category:      Text, Parsing
version:       0.12.10
x-revision: 1
license:       BSD3
cabal-version: >= 1.10
license-file:  LICENSE
author:        Edward A. Kmett
maintainer:    Edward A. Kmett <ekm...@gmail.com>
stability:     experimental
homepage:      http://github.com/ekmett/parsers/
bug-reports:   http://github.com/ekmett/parsers/issues
copyright:     Copyright (C) 2010-2013 Edward A. Kmett
synopsis:      Parsing combinators
description:
  This library provides convenient combinators for working with and building 
parsing combinator libraries.
  .
  Given a few simple instances, e.g. for the class 
'Text.Parser.Combinators.Parsing' in "Text.Parser.Combinators.Parsing" you
  get access to a large number of canned definitions. Instances exist for the 
parsers provided by @parsec@,
  @attoparsec@ and base???s "Text.Read".
build-type:    Simple
tested-with:   GHC==7.0.4
             , GHC==7.2.2
             , GHC==7.4.2
             , GHC==7.6.3
             , GHC==7.8.4
             , GHC==7.10.3
             , GHC==8.0.2
             , GHC==8.2.2
             , GHC==8.4.4
             , GHC==8.6.5
             , GHC==8.8.1

extra-source-files:
  .travis.yml
  CHANGELOG.markdown
  README.markdown
  HLint.hs

source-repository head
  type: git
  location: git://github.com/ekmett/parsers.git

flag binary
  default: True
  description:
    You can disable the use of the `binary` package using `-f-binary`.

flag parsec
  default: True
  description:
    You can disable the use of the `parsec` package using `-f-parsec`.

flag attoparsec
  default: True
  description:
    You can disable the use of the `attoparsec` package using `-f-attoparsec`.

library
  default-language: Haskell2010
  exposed-modules:
    Text.Parser.Char
    Text.Parser.Combinators
    Text.Parser.LookAhead
    Text.Parser.Permutation
    Text.Parser.Expression
    Text.Parser.Token
    Text.Parser.Token.Style
    Text.Parser.Token.Highlight

  hs-source-dirs: src

  ghc-options: -Wall -fno-warn-wrong-do-bind -fwarn-monomorphism-restriction 
-fwarn-incomplete-record-updates
  if impl(ghc >= 7.2)
    ghc-options: -fwarn-identities -fwarn-incomplete-uni-patterns
  if impl(ghc >= 7.10)
    ghc-options: -fno-warn-trustworthy-safe

  build-depends:
    base                 >= 4.3      && < 5,
    base-orphans         >= 0.3      && < 1,
    charset              >= 0.3      && < 1,
    containers           >= 0.4      && < 0.7,
    semigroups           >= 0.12     && < 1,
    text                 >= 0.10     && < 1.3,
    transformers         >= 0.2      && < 0.6,
    mtl                  >= 2.0.1    && < 2.3,
    scientific           >= 0.3      && < 0.4,
    unordered-containers >= 0.2      && < 0.3

  if flag(binary)
    build-depends: binary     >= 0.7.2    && < 1
  if flag(parsec)
    build-depends: parsec     >= 3.1      && < 3.2
  if flag(attoparsec)
    build-depends: attoparsec >= 0.12.1.4 && < 0.15

test-suite quickcheck
  type:    exitcode-stdio-1.0
  main-is: QuickCheck.hs
  default-language: Haskell2010
  build-depends:
    base == 4.*,
    bytestring,
    parsers,
    QuickCheck,
    quickcheck-instances
  ghc-options: -Wall -threaded
  hs-source-dirs: tests

  if flag(parsec)
    build-depends: parsec >= 3
  if flag(attoparsec)
    build-depends: attoparsec

Reply via email to