summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-04-09 10:22:19 +0200
committerConrad Kostecki <conikost@gentoo.org>2023-04-18 15:40:54 +0200
commitc31415c30ee167acb6794d42b0afb1b8d80ab998 (patch)
tree284a2a58a3e2b6829ad38646524a0e4f51eac0f3 /app-office
parentdev-util/pkgcheck: remove unused patch (diff)
downloadgentoo-c31415c30ee167acb6794d42b0afb1b8d80ab998.tar.gz
gentoo-c31415c30ee167acb6794d42b0afb1b8d80ab998.tar.bz2
gentoo-c31415c30ee167acb6794d42b0afb1b8d80ab998.zip
app-office/ledger: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/30526 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-office')
-rw-r--r--app-office/ledger/files/ledger-3.2.1-fix-build-boost-1-76.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/app-office/ledger/files/ledger-3.2.1-fix-build-boost-1-76.patch b/app-office/ledger/files/ledger-3.2.1-fix-build-boost-1-76.patch
deleted file mode 100644
index eff3e335f42e..000000000000
--- a/app-office/ledger/files/ledger-3.2.1-fix-build-boost-1-76.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-https://bugs.gentoo.org/790176
-https://github.com/ledger/ledger/issues/2030
-
-From fa37f595b3c44dc7ac86b29d105ae6417c3e0080 Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Mon, 14 Jun 2021 12:37:58 +0000
-Subject: [PATCH] Fix compilation with Boost 1.76
---- a/src/expr.cc
-+++ b/src/expr.cc
-@@ -35,6 +35,8 @@
- #include "parser.h"
- #include "scope.h"
-
-+#include <boost/smart_ptr/scoped_ptr.hpp>
-+
- namespace ledger {
-
- expr_t::expr_t() : base_type()
---- a/src/format.h
-+++ b/src/format.h
-@@ -45,6 +45,8 @@
- #include "expr.h"
- #include "unistring.h"
-
-+#include <boost/smart_ptr/scoped_ptr.hpp>
-+
- namespace ledger {
-
- class unistring;