summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-08-12 14:18:09 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-08-12 14:25:33 +0200
commite41b34d2672c0165c74fd982fa338264a63dd668 (patch)
tree89a485f5c2d317dfecb8c22813efe57b472013e0 /app-office/ledger/files
parentdev-libs/ocl-icd: fix ${D} vs ${ED} for prefix (diff)
downloadgentoo-e41b34d2672c0165c74fd982fa338264a63dd668.tar.gz
gentoo-e41b34d2672c0165c74fd982fa338264a63dd668.tar.bz2
gentoo-e41b34d2672c0165c74fd982fa338264a63dd668.zip
app-office/ledger: Drop 3.1.1-r2
Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-office/ledger/files')
-rw-r--r--app-office/ledger/files/50ledger-gentoo.el5
-rw-r--r--app-office/ledger/files/ledger-3.1.1-boost.patch22
-rw-r--r--app-office/ledger/files/ledger-3.1.1-r1-boost-python.patch13
3 files changed, 0 insertions, 40 deletions
diff --git a/app-office/ledger/files/50ledger-gentoo.el b/app-office/ledger/files/50ledger-gentoo.el
deleted file mode 100644
index 1c2c5bde2f8b..000000000000
--- a/app-office/ledger/files/50ledger-gentoo.el
+++ /dev/null
@@ -1,5 +0,0 @@
-
-;;; app-office/ledger site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(autoload 'ledger-mode "ledger-mode" "A mode for editing ledger data files." t)
diff --git a/app-office/ledger/files/ledger-3.1.1-boost.patch b/app-office/ledger/files/ledger-3.1.1-boost.patch
deleted file mode 100644
index b69a42a50113..000000000000
--- a/app-office/ledger/files/ledger-3.1.1-boost.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From 1856b8c4902498843f4da37a7aaeb2ce85acc1d3 Mon Sep 17 00:00:00 2001
-From: Denis <dkasak@users.noreply.github.com>
-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 ca16d87b3..4dc6df7e6 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;
diff --git a/app-office/ledger/files/ledger-3.1.1-r1-boost-python.patch b/app-office/ledger/files/ledger-3.1.1-r1-boost-python.patch
deleted file mode 100644
index 6839b3f60674..000000000000
--- a/app-office/ledger/files/ledger-3.1.1-r1-boost-python.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index f8dbd892..6aacd5b3 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -67,7 +67,7 @@ if (USE_PYTHON)
-
- find_package(PythonLibs)
- if (PYTHONLIBS_FOUND)
-- set(BOOST_PYTHON python)
-+ set(BOOST_PYTHON python-2.7)
- set(HAVE_BOOST_PYTHON 1)
- include_directories(SYSTEM ${PYTHON_INCLUDE_DIRS})
- else()