Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, x11-libs/flowcanvas/files/, x11-libs/flowcanvas/
Date: Sat, 12 Sep 2020 10:20:25
Message-Id: 1599906014.a505e144a26bcf060213a0b32b6480f4ec22d3b7.fordfrog@gentoo
1 commit: a505e144a26bcf060213a0b32b6480f4ec22d3b7
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 12 10:03:54 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 12 10:20:14 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a505e144
7
8 x11-libs/flowcanvas: package removed
9
10 Closes: https://bugs.gentoo.org/735518
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 profiles/package.mask | 5 ---
14 x11-libs/flowcanvas/Manifest | 1 -
15 x11-libs/flowcanvas/files/gv234.patch | 48 --------------------------
16 x11-libs/flowcanvas/files/ldconfig2.patch | 10 ------
17 x11-libs/flowcanvas/flowcanvas-0.7.1-r1.ebuild | 41 ----------------------
18 x11-libs/flowcanvas/flowcanvas-0.7.1-r2.ebuild | 42 ----------------------
19 x11-libs/flowcanvas/metadata.xml | 13 -------
20 7 files changed, 160 deletions(-)
21
22 diff --git a/profiles/package.mask b/profiles/package.mask
23 index 4cd2d5e3bed..b5b1d38d2ed 100644
24 --- a/profiles/package.mask
25 +++ b/profiles/package.mask
26 @@ -646,11 +646,6 @@ app-eselect/eselect-opengl
27 # Masked for removal in 30 days. Bug #728290
28 x11-drivers/nvidia-drivers:0/340
29
30 -# Miroslav Šulc <fordfrog@g.o> (2020-08-11)
31 -# Package dead. No consumers in the tree.
32 -# Removal in 30 days. Bug #735518
33 -x11-libs/flowcanvas
34 -
35 # Michał Górny <mgorny@g.o> (2020-08-09)
36 # Build tool with no revdeps left.
37 # Removal in 30 days. Bug #736517.
38
39 diff --git a/x11-libs/flowcanvas/Manifest b/x11-libs/flowcanvas/Manifest
40 deleted file mode 100644
41 index 670a33ced11..00000000000
42 --- a/x11-libs/flowcanvas/Manifest
43 +++ /dev/null
44 @@ -1 +0,0 @@
45 -DIST flowcanvas-0.7.1.tar.bz2 139471 BLAKE2B e37f557fdd850c35dc70fc7efe71e7d9be5c60a7920fcfdb38fc4a9eb4d1a44639688b50feae4b0f529469cc68e906ea75e0b870a82379212d94e27e4be8abb1 SHA512 e9c7ee9693c6b78e44a0611a8d73c1b7ffa1ae0f3e36c9b0bbc88d5a293c3e5183c17e14b2079d611c988f30cb292caee52ab37f8a13da96b5c8c8261e408410
46
47 diff --git a/x11-libs/flowcanvas/files/gv234.patch b/x11-libs/flowcanvas/files/gv234.patch
48 deleted file mode 100644
49 index ec03696135c..00000000000
50 --- a/x11-libs/flowcanvas/files/gv234.patch
51 +++ /dev/null
52 @@ -1,48 +0,0 @@
53 -Index: flowcanvas-0.7.1/src/Canvas.cpp
54 -===================================================================
55 ---- flowcanvas-0.7.1.orig/src/Canvas.cpp
56 -+++ flowcanvas-0.7.1/src/Canvas.cpp
57 -@@ -1253,21 +1253,21 @@ Canvas::layout_dot(bool use_length_hints
58 - */
59 -
60 - GVC_t* gvc = gvContext();
61 -- Agraph_t* G = agopen((char*)"g", AGDIGRAPH);
62 -+ Agraph_t* G = agopen((char*)"g", Agdirected, 0);
63 -
64 - nodes.gvc = gvc;
65 - nodes.G = G;
66 -
67 - if (_direction == HORIZONTAL)
68 -- agraphattr(G, (char*)"rankdir", (char*)"LR");
69 -+ agattr(G, AGRAPH, (char*)"rankdir", (char*)"LR");
70 - else
71 -- agraphattr(G, (char*)"rankdir", (char*)"TD");
72 -+ agattr(G, AGRAPH, (char*)"rankdir", (char*)"TD");
73 -
74 - unsigned id = 0;
75 - for (ItemList::const_iterator i = _items.begin(); i != _items.end(); ++i) {
76 - std::ostringstream ss;
77 - ss << "n" << id++;
78 -- Agnode_t* node = agnode(G, strdup(ss.str().c_str()));
79 -+ Agnode_t* node = agnode(G, strdup(ss.str().c_str()), 1);
80 - if (boost::dynamic_pointer_cast<Module>(*i)) {
81 - ss.str("");
82 - ss << (*i)->width() / 96.0;
83 -@@ -1310,7 +1310,7 @@ Canvas::layout_dot(bool use_length_hints
84 -
85 - assert(src_node && dst_node);
86 -
87 -- Agedge_t* edge = agedge(G, src_node, dst_node);
88 -+ Agedge_t* edge = agedge(G, src_node, dst_node, NULL, 1);
89 -
90 - if (use_length_hints && c->length_hint() != 0) {
91 - std::ostringstream len_ss;
92 -@@ -1325,7 +1325,7 @@ Canvas::layout_dot(bool use_length_hints
93 - if (partner) {
94 - GVNodes::iterator p = nodes.find(partner);
95 - if (p != nodes.end())
96 -- agedge(G, i->second, p->second);
97 -+ agedge(G, i->second, p->second, NULL, 1);
98 - }
99 - }
100 -
101
102 diff --git a/x11-libs/flowcanvas/files/ldconfig2.patch b/x11-libs/flowcanvas/files/ldconfig2.patch
103 deleted file mode 100644
104 index d86e65eaf17..00000000000
105 --- a/x11-libs/flowcanvas/files/ldconfig2.patch
106 +++ /dev/null
107 @@ -1,10 +0,0 @@
108 -Index: flowcanvas-0.7.1/wscript
109 -===================================================================
110 ---- flowcanvas-0.7.1.orig/wscript
111 -+++ flowcanvas-0.7.1/wscript
112 -@@ -85,5 +85,3 @@ def build(bld):
113 -
114 - # Documentation
115 - autowaf.build_dox(bld, 'FLOWCANVAS', FLOWCANVAS_VERSION, top, out)
116 --
117 -- bld.add_post_fun(autowaf.run_ldconfig)
118
119 diff --git a/x11-libs/flowcanvas/flowcanvas-0.7.1-r1.ebuild b/x11-libs/flowcanvas/flowcanvas-0.7.1-r1.ebuild
120 deleted file mode 100644
121 index f1135245ec6..00000000000
122 --- a/x11-libs/flowcanvas/flowcanvas-0.7.1-r1.ebuild
123 +++ /dev/null
124 @@ -1,41 +0,0 @@
125 -# Copyright 1999-2015 Gentoo Foundation
126 -# Distributed under the terms of the GNU General Public License v2
127 -
128 -EAPI=5
129 -
130 -PYTHON_COMPAT=( python2_7 )
131 -PYTHON_REQ_USE='threads(+)'
132 -
133 -inherit waf-utils python-any-r1 eutils
134 -
135 -DESCRIPTION="Gtkmm/Gnomecanvasmm widget for boxes and lines environments"
136 -HOMEPAGE="http://wiki.drobilla.net/FlowCanvas"
137 -SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
138 -
139 -LICENSE="GPL-2"
140 -SLOT="0"
141 -KEYWORDS="amd64 x86"
142 -IUSE="debug doc"
143 -
144 -RDEPEND="dev-libs/boost
145 - >=dev-cpp/gtkmm-2.4:2.4
146 - >=dev-cpp/libgnomecanvasmm-2.6:2.6
147 - media-gfx/graphviz"
148 -DEPEND="${RDEPEND}
149 - ${PYTHON_DEPS}
150 - virtual/pkgconfig
151 - doc? ( app-doc/doxygen )"
152 -
153 -DOCS=( AUTHORS README ChangeLog )
154 -
155 -src_prepare() {
156 - epatch "${FILESDIR}/ldconfig2.patch"
157 - has_version '>=media-gfx/graphviz-2.34' && epatch "${FILESDIR}/gv234.patch"
158 -}
159 -
160 -src_configure() {
161 - waf-utils_src_configure \
162 - --htmldir=/usr/share/doc/${PF}/html \
163 - $(use debug && echo "--debug") \
164 - $(use doc && echo "--doc")
165 -}
166
167 diff --git a/x11-libs/flowcanvas/flowcanvas-0.7.1-r2.ebuild b/x11-libs/flowcanvas/flowcanvas-0.7.1-r2.ebuild
168 deleted file mode 100644
169 index 452438c3dbc..00000000000
170 --- a/x11-libs/flowcanvas/flowcanvas-0.7.1-r2.ebuild
171 +++ /dev/null
172 @@ -1,42 +0,0 @@
173 -# Copyright 1999-2020 Gentoo Authors
174 -# Distributed under the terms of the GNU General Public License v2
175 -
176 -EAPI=5
177 -
178 -PYTHON_COMPAT=( python2_7 )
179 -PYTHON_REQ_USE='threads(+)'
180 -
181 -inherit waf-utils python-any-r1 eutils flag-o-matic
182 -
183 -DESCRIPTION="Gtkmm/Gnomecanvasmm widget for boxes and lines environments"
184 -HOMEPAGE="http://wiki.drobilla.net/FlowCanvas"
185 -SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
186 -
187 -LICENSE="GPL-2"
188 -SLOT="0"
189 -KEYWORDS="amd64 ~ppc x86"
190 -IUSE="debug doc"
191 -
192 -RDEPEND="dev-libs/boost
193 - >=dev-cpp/gtkmm-2.4:2.4
194 - >=dev-cpp/libgnomecanvasmm-2.6:2.6
195 - media-gfx/graphviz"
196 -DEPEND="${RDEPEND}
197 - ${PYTHON_DEPS}
198 - virtual/pkgconfig
199 - doc? ( app-doc/doxygen )"
200 -
201 -DOCS=( AUTHORS README ChangeLog )
202 -
203 -src_prepare() {
204 - epatch "${FILESDIR}/ldconfig2.patch"
205 - has_version '>=media-gfx/graphviz-2.34' && epatch "${FILESDIR}/gv234.patch"
206 - append-cxxflags -std=c++11
207 -}
208 -
209 -src_configure() {
210 - waf-utils_src_configure \
211 - --htmldir=/usr/share/doc/${PF}/html \
212 - $(use debug && echo "--debug") \
213 - $(use doc && echo "--doc")
214 -}
215
216 diff --git a/x11-libs/flowcanvas/metadata.xml b/x11-libs/flowcanvas/metadata.xml
217 deleted file mode 100644
218 index 9077960e2f2..00000000000
219 --- a/x11-libs/flowcanvas/metadata.xml
220 +++ /dev/null
221 @@ -1,13 +0,0 @@
222 -<?xml version="1.0" encoding="UTF-8"?>
223 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
224 -<pkgmetadata>
225 -<maintainer type="project">
226 - <email>proaudio@g.o</email>
227 - <name>Gentoo ProAudio Project</name>
228 -</maintainer>
229 -<longdescription lang="en">
230 - FlowCanvas is an interactive Gtkmm/Gnomecanvasmm widget for "boxes and
231 - lines" environments (ie modular synths or interactive finite state automata
232 - diagrams).
233 -</longdescription>
234 -</pkgmetadata>