Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package hledger-interest for
openSUSE:Factory checked in at 2022-08-01 21:31:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/hledger-interest (Old)
and /work/SRC/openSUSE:Factory/.hledger-interest.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hledger-interest"
Mon Aug 1 21:31:02 2022 rev:9 rq:987123 version:1.6.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/hledger-interest/hledger-interest.changes
2022-02-11 23:10:05.491064324 +0100
+++
/work/SRC/openSUSE:Factory/.hledger-interest.new.1533/hledger-interest.changes
2022-08-01 21:31:39.853874264 +0200
@@ -1,0 +2,12 @@
+Mon Jun 6 09:43:46 UTC 2022 - Peter Simons <[email protected]>
+
+- Update hledger-interest to version 1.6.4.
+ Upstream does not provide a change log file.
+
+-------------------------------------------------------------------
+Mon Mar 14 13:03:36 UTC 2022 - Peter Simons <[email protected]>
+
+- Update hledger-interest to version 1.6.3 revision 2.
+ Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------
Old:
----
hledger-interest-1.6.3.tar.gz
hledger-interest.cabal
New:
----
hledger-interest-1.6.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ hledger-interest.spec ++++++
--- /var/tmp/diff_new_pack.ZPTVeL/_old 2022-08-01 21:31:40.969877466 +0200
+++ /var/tmp/diff_new_pack.ZPTVeL/_new 2022-08-01 21:31:40.973877477 +0200
@@ -1,7 +1,7 @@
#
# spec file for package hledger-interest
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,12 @@
Name: hledger-interest
-Version: 1.6.3
+Version: 1.6.4
Release: 0
Summary: Computes interest for a given account
License: BSD-3-Clause
URL: https://hackage.haskell.org/package/%{name}
Source0:
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{name}-%{version}/revision/1.cabal#/%{name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-Decimal-devel
BuildRequires: ghc-hledger-lib-devel
@@ -89,7 +88,6 @@
%prep
%autosetup
-cp -p %{SOURCE1} %{name}.cabal
%build
%ghc_bin_build
++++++ hledger-interest-1.6.3.tar.gz -> hledger-interest-1.6.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hledger-interest-1.6.3/Main.hs
new/hledger-interest-1.6.4/Main.hs
--- old/hledger-interest-1.6.3/Main.hs 2001-09-09 03:46:40.000000000 +0200
+++ new/hledger-interest-1.6.4/Main.hs 2001-09-09 03:46:40.000000000 +0200
@@ -92,7 +92,7 @@
when (isNothing (optDCC opts)) (commandLineError "no day counting convention
specified\n")
when (isNothing (optRate opts)) (commandLineError "no interest rate
specified\n")
let ledgerInputOptions = definputopts { balancingopts_ = (balancingopts_
definputopts) { ignore_assertions_ = optIgnoreAssertions opts } }
- jnl' <- readJournalFiles ledgerInputOptions (reverse (optInput opts)) >>=
either fail return
+ jnl' <- runExceptT (readJournalFiles ledgerInputOptions (reverse (optInput
opts))) >>= either fail return
interestAcc <- case args of
[] -> commandLineError "required argument ACCOUNT is
missing\n"
[acc] -> return $ T.pack acc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hledger-interest-1.6.3/hledger-interest.cabal
new/hledger-interest-1.6.4/hledger-interest.cabal
--- old/hledger-interest-1.6.3/hledger-interest.cabal 2001-09-09
03:46:40.000000000 +0200
+++ new/hledger-interest-1.6.4/hledger-interest.cabal 2001-09-09
03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
Name: hledger-interest
-Version: 1.6.3
+Version: 1.6.4
Synopsis: computes interest for a given account
License: BSD3
License-file: LICENSE
@@ -119,7 +119,7 @@
Executable hledger-interest
default-language: Haskell2010
Main-is: Main.hs
- Build-depends: base >= 3 && < 5, hledger-lib == 1.23.*, time, mtl,
Cabal, Decimal, text
+ Build-depends: base >= 3 && < 5, hledger-lib >= 1.26 && < 1.27, time,
mtl, Cabal, Decimal, text
other-modules: Hledger.Interest
Hledger.Interest.DayCountConvention
Hledger.Interest.Rate