* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tree/files/
@ 2018-06-13 21:18 Aaron Bauman
0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2018-06-13 21:18 UTC (permalink / raw
To: gentoo-commits
commit: 3efd8999d7405a30cd1195ea902384492867f5f6
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Jun 13 17:54:37 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Jun 13 21:14:59 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3efd8999
dev-cpp/tree: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/8836
dev-cpp/tree/files/tree-2.65-gcc46.patch | 15 ---------------
1 file changed, 15 deletions(-)
diff --git a/dev-cpp/tree/files/tree-2.65-gcc46.patch b/dev-cpp/tree/files/tree-2.65-gcc46.patch
deleted file mode 100644
index d75b516112b..00000000000
--- a/dev-cpp/tree/files/tree-2.65-gcc46.patch
+++ /dev/null
@@ -1,15 +0,0 @@
- tree.hh | 1 +
- 1 files changed, 1 insertions(+), 0 deletions(-)
-
-diff --git a/tree.hh b/tree.hh
-index 1429da3..d780be3 100644
---- a/tree.hh
-+++ b/tree.hh
-@@ -71,6 +71,7 @@
- #include <set>
- #include <queue>
- #include <algorithm>
-+#include <cstddef>
-
- // HP-style construct/destroy have gone from the standard,
- // so here is a copy.
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tree/files/
@ 2021-05-08 14:15 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2021-05-08 14:15 UTC (permalink / raw
To: gentoo-commits
commit: 5fd0eda0121640375cf8224ff49fd5523d123461
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat May 8 14:15:03 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat May 8 14:15:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fd0eda0
dev-cpp/tree: Make gcc11 patch more git-like
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-cpp/tree/files/tree-2.81-gcc11.patch | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/tree/files/tree-2.81-gcc11.patch b/dev-cpp/tree/files/tree-2.81-gcc11.patch
index 2af534dac98..feffe0de13c 100644
--- a/dev-cpp/tree/files/tree-2.81-gcc11.patch
+++ b/dev-cpp/tree/files/tree-2.81-gcc11.patch
@@ -1,5 +1,5 @@
---- "ORIG/simple tree.hpp"
-+++ "MOD/simple tree.hpp"
+--- "a/simple tree.hpp"
++++ "b/simple tree.hpp"
@@ -323,7 +323,7 @@
public:
compare_nodes(StrictWeakOrdering comp) : comp_(comp) {};
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tree/files/
@ 2021-10-10 19:05 Jakov Smolić
0 siblings, 0 replies; 3+ messages in thread
From: Jakov Smolić @ 2021-10-10 19:05 UTC (permalink / raw
To: gentoo-commits
commit: 0e03c293eabd52d4ea534a1f9d4902ac6f352440
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Oct 10 18:12:39 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 19:05:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e03c293
dev-cpp/tree: remove unused patch(es)
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-cpp/tree/files/tree-2.81-gcc11.patch | 33 -----------------------------
dev-cpp/tree/files/tree-2.81-test.patch | 36 --------------------------------
2 files changed, 69 deletions(-)
diff --git a/dev-cpp/tree/files/tree-2.81-gcc11.patch b/dev-cpp/tree/files/tree-2.81-gcc11.patch
deleted file mode 100644
index feffe0de13c..00000000000
--- a/dev-cpp/tree/files/tree-2.81-gcc11.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- "a/simple tree.hpp"
-+++ "b/simple tree.hpp"
-@@ -323,7 +323,7 @@
- public:
- compare_nodes(StrictWeakOrdering comp) : comp_(comp) {};
-
-- bool operator()(const tree_node *a, const tree_node *b)
-+ bool operator()(const tree_node *a, const tree_node *b) const
- {
- return comp_(a->data, b->data);
- }
---- a/tree.hh
-+++ b/tree.hh
-@@ -422,7 +422,7 @@
- public:
- compare_nodes(StrictWeakOrdering comp) : comp_(comp) {};
-
-- bool operator()(const tree_node *a, const tree_node *b)
-+ bool operator()(const tree_node *a, const tree_node *b) const
- {
- return comp_(a->data, b->data);
- }
---- a/xinlin.hh
-+++ b/xinlin.hh
-@@ -332,7 +332,7 @@
- public:
- compare_nodes(StrictWeakOrdering comp) : comp_(comp) {};
-
-- bool operator()(const tree_node *a, const tree_node *b)
-+ bool operator()(const tree_node *a, const tree_node *b) const
- {
- return comp_(a->data, b->data);
- }
diff --git a/dev-cpp/tree/files/tree-2.81-test.patch b/dev-cpp/tree/files/tree-2.81-test.patch
deleted file mode 100644
index c9e675dc795..00000000000
--- a/dev-cpp/tree/files/tree-2.81-test.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -1,13 +1,6 @@
--
--%.o: %.cc
-- g++ -c -I. $^
--
--test1: test1.o
-- g++ -o test1 test1.o
--
--run_tests: test1 test1.req
-- ./test1 > test1.res
-- @diff test1.res test1.req
-+check: test_tree
-+ ./test_tree > mytest.output && \
-+ diff -Nu test_tree.output mytest.output
- @echo "*** All tests OK ***"
-
- clean:
---- a/test_tree.output
-+++ b/test_tree.output
-@@ -1,3 +1,8 @@
-+-----
-+hi
-+ 1
-+ 0
-+-----
- empty tree to begin with:
- 0
- 'more text' is sibling 2 in its sibling range
-@@ -309,3 +314,5 @@
- D
- I
- -----
-+G
-+H
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-10-10 19:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-08 14:15 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tree/files/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2021-10-10 19:05 Jakov Smolić
2018-06-13 21:18 Aaron Bauman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox