Hello community,

here is the log from the commit of package ghc-optparse-applicative for 
openSUSE:Factory checked in at 2019-06-19 21:11:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-optparse-applicative (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-optparse-applicative.new.4811 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-optparse-applicative"

Wed Jun 19 21:11:23 2019 rev:11 rq:710634 version:0.14.3.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-optparse-applicative/ghc-optparse-applicative.changes
        2018-10-25 08:18:03.196025823 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-optparse-applicative.new.4811/ghc-optparse-applicative.changes
      2019-06-19 21:12:40.054758081 +0200
@@ -1,0 +2,5 @@
+Tue Jun 11 14:29:14 UTC 2019 - Peter Simons <psim...@suse.com>
+
+- Update Cabal file for more accurate build dependencies.
+
+-------------------------------------------------------------------

New:
----
  optparse-applicative.cabal

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

Other differences:
------------------
++++++ ghc-optparse-applicative.spec ++++++
--- /var/tmp/diff_new_pack.KEFKNf/_old  2019-06-19 21:12:41.806759783 +0200
+++ /var/tmp/diff_new_pack.KEFKNf/_new  2019-06-19 21:12:41.810759787 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-optparse-applicative
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -26,6 +26,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/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-ansi-wl-pprint-devel
 BuildRequires:  ghc-process-devel
@@ -62,6 +63,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ optparse-applicative.cabal ++++++
name:                optparse-applicative
version:             0.14.3.0
x-revision: 2
synopsis:            Utilities and combinators for parsing command line options
description:
    optparse-applicative is a haskell library for parsing options
    on the command line, providing a powerful applicative interface
    for composing these options.
    .
    optparse-applicative takes care of reading and validating the
    arguments passed to the command line, handling and reporting
    errors, generating a usage line, a comprehensive help screen,
    and enabling context-sensitive bash completions.
    .
    See the included README for detailed instructions and examples,
    which is also available on github
    <https://github.com/pcapriotti/optparse-applicative>.
license:             BSD3
license-file:        LICENSE
author:              Paolo Capriotti, Huw Campbell
maintainer:          huw.campb...@gmail.com
copyright:           (c) 2012-2017 Paolo Capriotti <pa...@capriotti.io>
category:            System, CLI, Options, Parsing
build-type:          Simple
cabal-version:       >= 1.8
extra-source-files:  CHANGELOG.md
                     README.md
                     tests/alt.err.txt
                     tests/cabal.err.txt
                     tests/carry.err.txt
                     tests/commands.err.txt
                     tests/commands_header.err.txt
                     tests/commands_header_full.err.txt
                     tests/dropback.err.txt
                     tests/hello.err.txt
                     tests/helponempty.err.txt
                     tests/helponemptysub.err.txt
                     tests/formatting.err.txt
                     tests/nested.err.txt
                     tests/subparsers.err.txt

homepage:            https://github.com/pcapriotti/optparse-applicative
bug-reports:         https://github.com/pcapriotti/optparse-applicative/issues

source-repository head
  type:     git
  location: https://github.com/pcapriotti/optparse-applicative.git

library
  -- Monad-without-fail
  build-depends: base <4.13

  ghc-options:         -Wall

  -- See https://ghc.haskell.org/trac/ghc/wiki/Migration/8.0#base-4.9.0.0
  if impl(ghc >= 8.0)
    ghc-options:  -Wno-redundant-constraints -Wcompat 
-Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances

  exposed-modules:     Options.Applicative
                     , Options.Applicative.Arrows
                     , Options.Applicative.BashCompletion
                     , Options.Applicative.Builder
                     , Options.Applicative.Builder.Completer
                     , Options.Applicative.Builder.Internal
                     , Options.Applicative.Common
                     , Options.Applicative.Extra
                     , Options.Applicative.Help
                     , Options.Applicative.Help.Chunk
                     , Options.Applicative.Help.Core
                     , Options.Applicative.Help.Levenshtein
                     , Options.Applicative.Help.Pretty
                     , Options.Applicative.Help.Types
                     , Options.Applicative.Types
                     , Options.Applicative.Internal

  build-depends:       base                            == 4.*
                     , transformers                    >= 0.2 && < 0.6
                     , transformers-compat             >= 0.3 && < 0.7
                     , process                         >= 1.0 && < 1.7
                     , ansi-wl-pprint                  >= 0.6.6 && < 0.7

  if !impl(ghc >= 8)
    build-depends:     semigroups                      >= 0.10 && < 0.20
                     , fail                            == 4.9.*

test-suite optparse-applicative-tests
  type:                exitcode-stdio-1.0

  main-is:             test.hs

  ghc-options:         -Wall -threaded -O2 -funbox-strict-fields

  hs-source-dirs:
                       tests

  other-modules:       Examples.Alternatives
                     , Examples.Cabal
                     , Examples.Commands
                     , Examples.Formatting
                     , Examples.Hello

  build-depends:       base
                     , bytestring                      == 0.10.*
                     , optparse-applicative
                     , QuickCheck                      >= 2.8 && < 2.14

  if !impl(ghc >= 8)
    build-depends:     semigroups

Reply via email to