Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-optparse-applicative for 
openSUSE:Factory checked in at 2026-06-10 16:04:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-optparse-applicative (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-optparse-applicative.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-optparse-applicative"

Wed Jun 10 16:04:24 2026 rev:27 rq:1358415 version:0.19.0.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-optparse-applicative/ghc-optparse-applicative.changes
        2025-07-31 17:46:32.505004905 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-optparse-applicative.new.2375/ghc-optparse-applicative.changes
      2026-06-10 16:07:29.564371862 +0200
@@ -1,0 +2,6 @@
+Fri Jun  5 08:56:11 UTC 2026 - Peter Simons <[email protected]>
+
+- Update optparse-applicative to version 0.19.0.0 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  optparse-applicative.cabal

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

Other differences:
------------------
++++++ ghc-optparse-applicative.spec ++++++
--- /var/tmp/diff_new_pack.kvrRBS/_old  2026-06-10 16:07:32.296485081 +0200
+++ /var/tmp/diff_new_pack.kvrRBS/_new  2026-06-10 16:07:32.300485248 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-optparse-applicative
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC
 #
 # 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 @@
 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-base-devel
 BuildRequires:  ghc-base-prof
@@ -87,6 +88,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ optparse-applicative.cabal ++++++
name:                optparse-applicative
version:             0.19.0.0
x-revision: 1
synopsis:            Utilities and combinators for parsing command line options
description:
    optparse-applicative is a haskell library for parsing options
    on the command line, and providing a powerful applicative
    interface for composing them.
    .
    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, zsh, and fish 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:          [email protected]
copyright:           (c) 2012-2017 Paolo Capriotti <[email protected]>
category:            System, CLI, Options, Parsing
build-type:          Simple
cabal-version:       >= 1.10
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/long_equals.err.txt
                     tests/formatting.err.txt
                     tests/formatting-long-subcommand.err.txt
                     tests/nested.err.txt
                     tests/optional.err.txt
                     tests/parser_group_all_grouped.err.txt
                     tests/parser_group_basic.err.txt
                     tests/parser_group_command_groups.err.txt
                     tests/parser_group_duplicate_command_groups.err.txt
                     tests/parser_group_duplicates.err.txt
                     tests/parser_group_nested.err.txt
                     tests/nested_optional.err.txt
                     tests/subparsers.err.txt

homepage:            https://github.com/pcapriotti/optparse-applicative
bug-reports:         https://github.com/pcapriotti/optparse-applicative/issues
tested-with:
  GHC==9.12.1
  GHC==9.10.1
  GHC==9.8.4
  GHC==9.6.1
  GHC==9.4.4
  GHC==9.2.7
  GHC==9.0.2
  GHC==8.10.7
  GHC==8.8.4
  GHC==8.6.5
  GHC==8.4.4
  GHC==8.2.2
  GHC==8.0.2
  GHC==7.10.3
  GHC==7.8.4
  GHC==7.6.3
  GHC==7.4.2
  GHC==7.2.2
  GHC==7.0.4

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

flag process
  description:
    Depend on the process package for Bash autocompletion
  default: True

library
  hs-source-dirs:      src
  ghc-options:         -Wall
  default-language:    Haskell98

  -- 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
    if impl(ghc < 8.8)
      ghc-options: -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.NonEmpty
                     , Options.Applicative.Types
                     , Options.Applicative.Internal

  build-depends:       base                            >= 4.5   && < 5
                     , text                            >= 1.2
                     , transformers                    >= 0.5   && < 0.7
                     , prettyprinter                   >= 1.7   && < 1.8
                     , prettyprinter-ansi-terminal     >= 1.1.2 && < 1.2

  if flag(process)
    build-depends:     process                         >= 1.0   && < 1.7

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

test-suite tests
  type:                exitcode-stdio-1.0

  main-is:             test.hs

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

  hs-source-dirs:      tests

  default-language:    Haskell98

  other-modules:       Examples.Alternatives
                     , Examples.Cabal
                     , Examples.Commands
                     , Examples.Formatting
                     , Examples.Hello
                     , Examples.LongSub
                     , Examples.ParserGroup.AllGrouped
                     , Examples.ParserGroup.Basic
                     , Examples.ParserGroup.CommandGroups
                     , Examples.ParserGroup.DuplicateCommandGroups
                     , Examples.ParserGroup.Duplicates
                     , Examples.ParserGroup.Nested

  build-depends:       base
                     , optparse-applicative
                     , QuickCheck                      >= 2.8 && < 2.17

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

Reply via email to