summaryrefslogtreecommitdiff
path: root/finance/ledger/patches/patch-src_system.hh.in
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2019-02-17 11:55:03 +0000
committerwiz <wiz@pkgsrc.org>2019-02-17 11:55:03 +0000
commit3d547303e52feeeb35a8b13d6b1b385f854f3929 (patch)
treeb22d5cbac7700c084cab3dc44b72374c18896df6 /finance/ledger/patches/patch-src_system.hh.in
parentbe83a2fdc637d545f7597b214e05310903a28cb7 (diff)
downloadpkgsrc-3d547303e52feeeb35a8b13d6b1b385f854f3929.tar.gz
ledger: update to 3.1.2.
* 3.1.2 (2019-02-05) - Increase maximum length for regex from 255 to 4095 (bug #981) - Initialize periods from from/since clause rather than earliest transaction date (bug #1159) - Check balance assertions against the amount after the posting (bug #1147) - Allow balance assertions with multiple posts to same account (bug #1187) - Fix period duration of "every X days" and similar statements (bug #370) - Make option --force-color not require --color anymore (bug #1109) - Add quoted_rfc4180 to allow CVS output with RFC 4180 compliant quoting. - Add support for --prepend-format in accounts command - Fix handling of edge cases in trim function (bug #520) - Fix auto xact posts not getting applied to account total during journal parse (bug #552) - Transfer null_post flags to generated postings - Fix segfault when using --market with --group-by - Use amount_width variable for budget report - Keep pending items in budgets until the last day they apply - Fix bug where .total used in value expressions breaks totals - Make automated transactions work with assertions (bug #1127) - Improve parsing of date tokens (bug #1626) - Don't attempt to invert a value if it's already zero (bug #1703) - Do not parse user-specified init-file twice - Fix parsing issue of effective dates (bug #1722, TALOS-2017-0303, CVE-2017-2807) - Fix use-after-free issue with deferred postings (bug #1723, TALOS-2017-0304, CVE-2017-2808) - Fix possible stack overflow in option parsing routine (bug #1222, CVE-2017-12481) - Fix possible stack overflow in date parsing routine (bug #1224, CVE-2017-12482) - Fix use-after-free when using --gain (bug #541) - Python: Removed double quotes from Unicode values. - Python: Ensure that parse errors produce useful RuntimeErrors - Python: Expose journal expand_aliases - Python: Expose journal_t::register_account - Improve bash completion - Emacs Lisp files have been moved to https://github.com/ledger/ledger-mode - Fix build under MSYS (32-bit). - Fix build under Cygwin. - Various documentation improvements
Diffstat (limited to 'finance/ledger/patches/patch-src_system.hh.in')
-rw-r--r--finance/ledger/patches/patch-src_system.hh.in18
1 files changed, 0 insertions, 18 deletions
diff --git a/finance/ledger/patches/patch-src_system.hh.in b/finance/ledger/patches/patch-src_system.hh.in
deleted file mode 100644
index aec1b615cd6..00000000000
--- a/finance/ledger/patches/patch-src_system.hh.in
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-src_system.hh.in,v 1.1 2017/02/18 05:48:52 riastradh Exp $
-
-Canonicalize pkgsrc readline.h filename. This is seen both by
-consumers of devel/readline and by consumers of devel/editline, via
-buildlink3 magic. The only reason editline/readline.h may exist is to
-allow both devel/readline and devel/editline to coexist.
-
---- src/system.hh.in.orig 2016-01-11 15:59:38.000000000 +0000
-+++ src/system.hh.in
-@@ -168,7 +168,7 @@ typedef std::ostream::pos_type ostream_p
- #include "utf8.h"
-
- #if HAVE_EDIT
--#include <editline/readline.h>
-+#include <readline/readline.h>
- #endif
-
- #include <boost/algorithm/string.hpp>