public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, x11-libs/flowcanvas/files/, x11-libs/flowcanvas/
@ 2020-09-12 10:20 Miroslav Šulc
  0 siblings, 0 replies; only message in thread
From: Miroslav Šulc @ 2020-09-12 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     a505e144a26bcf060213a0b32b6480f4ec22d3b7
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 12 10:03:54 2020 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Sep 12 10:20:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a505e144

x11-libs/flowcanvas: package removed

Closes: https://bugs.gentoo.org/735518
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 profiles/package.mask                          |  5 ---
 x11-libs/flowcanvas/Manifest                   |  1 -
 x11-libs/flowcanvas/files/gv234.patch          | 48 --------------------------
 x11-libs/flowcanvas/files/ldconfig2.patch      | 10 ------
 x11-libs/flowcanvas/flowcanvas-0.7.1-r1.ebuild | 41 ----------------------
 x11-libs/flowcanvas/flowcanvas-0.7.1-r2.ebuild | 42 ----------------------
 x11-libs/flowcanvas/metadata.xml               | 13 -------
 7 files changed, 160 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 4cd2d5e3bed..b5b1d38d2ed 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -646,11 +646,6 @@ app-eselect/eselect-opengl
 # Masked for removal in 30 days. Bug #728290
 x11-drivers/nvidia-drivers:0/340
 
-# Miroslav Šulc <fordfrog@gentoo.org> (2020-08-11)
-# Package dead. No consumers in the tree.
-# Removal in 30 days. Bug #735518
-x11-libs/flowcanvas
-
 # Michał Górny <mgorny@gentoo.org> (2020-08-09)
 # Build tool with no revdeps left.
 # Removal in 30 days.  Bug #736517.

diff --git a/x11-libs/flowcanvas/Manifest b/x11-libs/flowcanvas/Manifest
deleted file mode 100644
index 670a33ced11..00000000000
--- a/x11-libs/flowcanvas/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST flowcanvas-0.7.1.tar.bz2 139471 BLAKE2B e37f557fdd850c35dc70fc7efe71e7d9be5c60a7920fcfdb38fc4a9eb4d1a44639688b50feae4b0f529469cc68e906ea75e0b870a82379212d94e27e4be8abb1 SHA512 e9c7ee9693c6b78e44a0611a8d73c1b7ffa1ae0f3e36c9b0bbc88d5a293c3e5183c17e14b2079d611c988f30cb292caee52ab37f8a13da96b5c8c8261e408410

diff --git a/x11-libs/flowcanvas/files/gv234.patch b/x11-libs/flowcanvas/files/gv234.patch
deleted file mode 100644
index ec03696135c..00000000000
--- a/x11-libs/flowcanvas/files/gv234.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-Index: flowcanvas-0.7.1/src/Canvas.cpp
-===================================================================
---- flowcanvas-0.7.1.orig/src/Canvas.cpp
-+++ flowcanvas-0.7.1/src/Canvas.cpp
-@@ -1253,21 +1253,21 @@ Canvas::layout_dot(bool use_length_hints
- 	 */
- 
- 	GVC_t* gvc = gvContext();
--	Agraph_t* G = agopen((char*)"g", AGDIGRAPH);
-+	Agraph_t* G = agopen((char*)"g", Agdirected, 0);
- 
- 	nodes.gvc = gvc;
- 	nodes.G = G;
- 
- 	if (_direction == HORIZONTAL)
--		agraphattr(G, (char*)"rankdir", (char*)"LR");
-+		agattr(G, AGRAPH, (char*)"rankdir", (char*)"LR");
- 	else
--		agraphattr(G, (char*)"rankdir", (char*)"TD");
-+		agattr(G, AGRAPH, (char*)"rankdir", (char*)"TD");
- 
- 	unsigned id = 0;
- 	for (ItemList::const_iterator i = _items.begin(); i != _items.end(); ++i) {
- 		std::ostringstream ss;
- 		ss << "n" << id++;
--		Agnode_t* node = agnode(G, strdup(ss.str().c_str()));
-+		Agnode_t* node = agnode(G, strdup(ss.str().c_str()), 1);
- 		if (boost::dynamic_pointer_cast<Module>(*i)) {
- 			ss.str("");
- 			ss << (*i)->width() / 96.0;
-@@ -1310,7 +1310,7 @@ Canvas::layout_dot(bool use_length_hints
- 
- 		assert(src_node && dst_node);
- 
--		Agedge_t* edge = agedge(G, src_node, dst_node);
-+		Agedge_t* edge = agedge(G, src_node, dst_node, NULL, 1);
- 
- 		if (use_length_hints && c->length_hint() != 0) {
- 			std::ostringstream len_ss;
-@@ -1325,7 +1325,7 @@ Canvas::layout_dot(bool use_length_hints
- 		if (partner) {
- 			GVNodes::iterator p = nodes.find(partner);
- 			if (p != nodes.end())
--				agedge(G, i->second, p->second);
-+				agedge(G, i->second, p->second, NULL, 1);
- 		}
- 	}
- 

diff --git a/x11-libs/flowcanvas/files/ldconfig2.patch b/x11-libs/flowcanvas/files/ldconfig2.patch
deleted file mode 100644
index d86e65eaf17..00000000000
--- a/x11-libs/flowcanvas/files/ldconfig2.patch
+++ /dev/null
@@ -1,10 +0,0 @@
-Index: flowcanvas-0.7.1/wscript
-===================================================================
---- flowcanvas-0.7.1.orig/wscript
-+++ flowcanvas-0.7.1/wscript
-@@ -85,5 +85,3 @@ def build(bld):
- 
- 	# Documentation
- 	autowaf.build_dox(bld, 'FLOWCANVAS', FLOWCANVAS_VERSION, top, out)
--
--	bld.add_post_fun(autowaf.run_ldconfig)

diff --git a/x11-libs/flowcanvas/flowcanvas-0.7.1-r1.ebuild b/x11-libs/flowcanvas/flowcanvas-0.7.1-r1.ebuild
deleted file mode 100644
index f1135245ec6..00000000000
--- a/x11-libs/flowcanvas/flowcanvas-0.7.1-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE='threads(+)'
-
-inherit waf-utils python-any-r1 eutils
-
-DESCRIPTION="Gtkmm/Gnomecanvasmm widget for boxes and lines environments"
-HOMEPAGE="http://wiki.drobilla.net/FlowCanvas"
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug doc"
-
-RDEPEND="dev-libs/boost
-	>=dev-cpp/gtkmm-2.4:2.4
-	>=dev-cpp/libgnomecanvasmm-2.6:2.6
-	media-gfx/graphviz"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}
-	virtual/pkgconfig
-	doc? ( app-doc/doxygen )"
-
-DOCS=( AUTHORS README ChangeLog )
-
-src_prepare() {
-	epatch "${FILESDIR}/ldconfig2.patch"
-	has_version '>=media-gfx/graphviz-2.34' && epatch "${FILESDIR}/gv234.patch"
-}
-
-src_configure() {
-	waf-utils_src_configure \
-		--htmldir=/usr/share/doc/${PF}/html \
-		$(use debug && echo "--debug") \
-		$(use doc && echo "--doc")
-}

diff --git a/x11-libs/flowcanvas/flowcanvas-0.7.1-r2.ebuild b/x11-libs/flowcanvas/flowcanvas-0.7.1-r2.ebuild
deleted file mode 100644
index 452438c3dbc..00000000000
--- a/x11-libs/flowcanvas/flowcanvas-0.7.1-r2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE='threads(+)'
-
-inherit waf-utils python-any-r1 eutils flag-o-matic
-
-DESCRIPTION="Gtkmm/Gnomecanvasmm widget for boxes and lines environments"
-HOMEPAGE="http://wiki.drobilla.net/FlowCanvas"
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="debug doc"
-
-RDEPEND="dev-libs/boost
-	>=dev-cpp/gtkmm-2.4:2.4
-	>=dev-cpp/libgnomecanvasmm-2.6:2.6
-	media-gfx/graphviz"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}
-	virtual/pkgconfig
-	doc? ( app-doc/doxygen )"
-
-DOCS=( AUTHORS README ChangeLog )
-
-src_prepare() {
-	epatch "${FILESDIR}/ldconfig2.patch"
-	has_version '>=media-gfx/graphviz-2.34' && epatch "${FILESDIR}/gv234.patch"
-	append-cxxflags -std=c++11
-}
-
-src_configure() {
-	waf-utils_src_configure \
-		--htmldir=/usr/share/doc/${PF}/html \
-		$(use debug && echo "--debug") \
-		$(use doc && echo "--doc")
-}

diff --git a/x11-libs/flowcanvas/metadata.xml b/x11-libs/flowcanvas/metadata.xml
deleted file mode 100644
index 9077960e2f2..00000000000
--- a/x11-libs/flowcanvas/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-	<email>proaudio@gentoo.org</email>
-	<name>Gentoo ProAudio Project</name>
-</maintainer>
-<longdescription lang="en">
-	FlowCanvas is an interactive Gtkmm/Gnomecanvasmm widget for "boxes and
-	lines" environments (ie modular synths or interactive finite state automata
-	diagrams).
-</longdescription>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-09-12 10:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-12 10:20 [gentoo-commits] repo/gentoo:master commit in: profiles/, x11-libs/flowcanvas/files/, x11-libs/flowcanvas/ Miroslav Šulc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox