Hello community, here is the log from the commit of package ledger for openSUSE:Factory checked in at 2016-09-16 11:01:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ledger (Old) and /work/SRC/openSUSE:Factory/.ledger.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ledger" Changes: -------- --- /work/SRC/openSUSE:Factory/ledger/ledger.changes 2016-01-28 17:25:41.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.ledger.new/ledger.changes 2016-09-16 11:01:37.000000000 +0200 @@ -1,0 +2,7 @@ +Tue Sep 13 14:37:46 UTC 2016 - [email protected] + +- 465.patch + + Fix compilation with Boost 1.61 (boo#994382) + + upstream PR https://github.com/ledger/ledger/pull/465 + +------------------------------------------------------------------- New: ---- 465.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ledger.spec ++++++ --- /var/tmp/diff_new_pack.gR5flq/_old 2016-09-16 11:01:39.000000000 +0200 +++ /var/tmp/diff_new_pack.gR5flq/_new 2016-09-16 11:01:39.000000000 +0200 @@ -24,6 +24,7 @@ Group: Productivity/Office/Finance Url: https://github.com/%{name}/%{name} Source: https://github.com/%{name}/%{name}/archive/v%{version}.tar.gz +Patch: https://patch-diff.githubusercontent.com/raw/ledger/ledger/pull/465.patch BuildRequires: boost-devel BuildRequires: cmake BuildRequires: gcc-c++ @@ -40,6 +41,7 @@ %prep %setup -q +%patch -p1 %build %cmake -DBUILD_LIBRARY=OFF ++++++ 465.patch ++++++ >From 1856b8c4902498843f4da37a7aaeb2ce85acc1d3 Mon Sep 17 00:00:00 2001 From: Denis <[email protected]> Date: Mon, 12 Sep 2016 12:49:40 +0200 Subject: [PATCH] Fix compilation error with boost 1.61 --- src/item.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/item.h b/src/item.h index ca16d87..4dc6df7 100644 --- a/src/item.h +++ b/src/item.h @@ -92,7 +92,7 @@ class item_t : public supports_flags<uint_least16_t>, public scope_t typedef std::pair<optional<value_t>, bool> tag_data_t; typedef std::map<string, tag_data_t, - function<bool(string, string)> > string_map; + std::function<bool(string, string)> > string_map; state_t _state; optional<date_t> _date;
