Hello community,
here is the log from the commit of package ghc-optparse-simple for
openSUSE:Factory checked in at 2020-08-28 21:35:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-optparse-simple (Old)
and /work/SRC/openSUSE:Factory/.ghc-optparse-simple.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-optparse-simple"
Fri Aug 28 21:35:41 2020 rev:7 rq:829369 version:0.1.1.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-optparse-simple/ghc-optparse-simple.changes
2020-01-03 17:35:48.079259227 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-optparse-simple.new.3399/ghc-optparse-simple.changes
2020-08-28 21:35:46.432735053 +0200
@@ -1,0 +2,8 @@
+Fri Aug 21 11:18:57 UTC 2020 - [email protected]
+
+- Update optparse-simple to version 0.1.1.3.
+ ## 0.1.1.3
+
+ * optparse-applicative 0.16.0.0 support
[#14](https://github.com/fpco/optparse-simple/issues/14)
+
+-------------------------------------------------------------------
Old:
----
optparse-simple-0.1.1.2.tar.gz
New:
----
optparse-simple-0.1.1.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-optparse-simple.spec ++++++
--- /var/tmp/diff_new_pack.ZZvymJ/_old 2020-08-28 21:35:47.764735684 +0200
+++ /var/tmp/diff_new_pack.ZZvymJ/_new 2020-08-28 21:35:47.768735686 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-optparse-simple
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%global pkg_name optparse-simple
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.1.1.2
+Version: 0.1.1.3
Release: 0
Summary: Simple interface to optparse-applicative
License: BSD-3-Clause
@@ -51,7 +51,7 @@
files.
%prep
-%setup -q -n %{pkg_name}-%{version}
+%autosetup -n %{pkg_name}-%{version}
%build
%ghc_lib_build
++++++ optparse-simple-0.1.1.2.tar.gz -> optparse-simple-0.1.1.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/optparse-simple-0.1.1.2/ChangeLog.md
new/optparse-simple-0.1.1.3/ChangeLog.md
--- old/optparse-simple-0.1.1.2/ChangeLog.md 2019-04-23 10:51:36.000000000
+0200
+++ new/optparse-simple-0.1.1.3/ChangeLog.md 2020-08-18 15:13:55.000000000
+0200
@@ -1,5 +1,9 @@
# ChangeLog for optparse-simple
+## 0.1.1.3
+
+* optparse-applicative 0.16.0.0 support
[#14](https://github.com/fpco/optparse-simple/issues/14)
+
## 0.1.1.2
* Run TH slice at the right time to get proper Git info
[#13](https://github.com/fpco/optparse-simple/issues/13)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/optparse-simple-0.1.1.2/optparse-simple.cabal
new/optparse-simple-0.1.1.3/optparse-simple.cabal
--- old/optparse-simple-0.1.1.2/optparse-simple.cabal 2019-04-23
10:53:45.000000000 +0200
+++ new/optparse-simple-0.1.1.3/optparse-simple.cabal 2020-08-18
15:13:38.000000000 +0200
@@ -1,13 +1,13 @@
cabal-version: 1.12
--- This file has been generated from package.yaml by hpack version 0.31.1.
+-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
--- hash: fa55f93c89cb6aea5dd08d557e397a862c381f89f99d22f74b8699ceb6361534
+-- hash: 71da8e6f0f044acf18f321986a6ae40a83b3e3be8e112e4112b0a56b4f41e62a
name: optparse-simple
-version: 0.1.1.2
+version: 0.1.1.3
synopsis: Simple interface to optparse-applicative
description: Please see the README at
<https://www.stackage.org/package/optparse-simple>
category: Options
@@ -33,6 +33,10 @@
default: False
library
+ exposed-modules:
+ Options.Applicative.Simple
+ other-modules:
+ Paths_optparse_simple
hs-source-dirs:
src/
ghc-options: -Wall
@@ -45,10 +49,6 @@
if impl (ghc < 8.0)
build-depends:
semigroups ==0.18.*
- exposed-modules:
- Options.Applicative.Simple
- other-modules:
- Paths_optparse_simple
default-language: Haskell2010
executable simple
@@ -67,6 +67,8 @@
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
+ other-modules:
+ Paths_optparse_simple
hs-source-dirs:
test
ghc-options: -Wall
@@ -75,6 +77,4 @@
, bytestring
, directory
, optparse-simple
- other-modules:
- Paths_optparse_simple
default-language: Haskell2010
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/optparse-simple-0.1.1.2/src/Options/Applicative/Simple.hs
new/optparse-simple-0.1.1.3/src/Options/Applicative/Simple.hs
--- old/optparse-simple-0.1.1.2/src/Options/Applicative/Simple.hs
2019-04-23 10:50:13.000000000 +0200
+++ new/optparse-simple-0.1.1.3/src/Options/Applicative/Simple.hs
2020-08-18 15:14:23.000000000 +0200
@@ -170,7 +170,11 @@
simpleParser commonParser commandParser =
helpOption <*> config
where helpOption =
+#if MIN_VERSION_optparse_applicative(0,16,0)
+ abortOption (ShowHelpText Nothing) $
+#else
abortOption ShowHelpText $
+#endif
long "help" <>
help "Show this help text"
config =