From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 79101138359 for ; Fri, 18 Sep 2020 07:55:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C51E4E087F; Fri, 18 Sep 2020 07:55:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AD3FFE087F for ; Fri, 18 Sep 2020 07:55:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 831FA340DC1 for ; Fri, 18 Sep 2020 07:55:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F32322E1 for ; Fri, 18 Sep 2020 07:55:05 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1600415700.258b24c0423ba39a83a01cc7a325808cd370e010.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ganv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/ganv/ganv-1.6.0.ebuild X-VCS-Directories: media-libs/ganv/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 258b24c0423ba39a83a01cc7a325808cd370e010 X-VCS-Branch: master Date: Fri, 18 Sep 2020 07:55:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a4ea62b3-5bd0-4f97-b529-33f1c9b83010 X-Archives-Hash: b4476cafe06be71b95a5104323d6f13a commit: 258b24c0423ba39a83a01cc7a325808cd370e010 Author: Miroslav Šulc gentoo org> AuthorDate: Fri Sep 18 07:54:38 2020 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Sep 18 07:55:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=258b24c0 media-libs/ganv: removed obsolete 1.6.0 Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/ganv/ganv-1.6.0.ebuild | 40 --------------------------------------- 1 file changed, 40 deletions(-) diff --git a/media-libs/ganv/ganv-1.6.0.ebuild b/media-libs/ganv/ganv-1.6.0.ebuild deleted file mode 100644 index 54805ef9a7f..00000000000 --- a/media-libs/ganv/ganv-1.6.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE='threads(+)' -inherit eutils flag-o-matic waf-utils python-any-r1 - -DESCRIPTION="A GTK+ widget for interactive graph-like environments" -HOMEPAGE="http://drobilla.net/software/ganv/" -SRC_URI="http://download.drobilla.net/${P}.tar.bz2" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="+fdgl +graphviz introspection nls" - -RDEPEND=" - dev-cpp/glibmm:2 - dev-cpp/gtkmm:2.4 - x11-libs/gtk+:2 - graphviz? ( media-gfx/graphviz[gtk] ) - introspection? ( - app-text/yelp-tools - dev-libs/gobject-introspection:=[doctool] ) -" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - dev-util/glib-utils - nls? ( virtual/libintl ) -" - -src_configure() { - append-cxxflags -std=c++11 - waf-utils_src_configure \ - $(use graphviz || echo "--no-graphviz") \ - $(use fdgl || echo "--no-fdgl") \ - $(use nls || echo "--no-nls") \ - $(use introspection && echo "--gir") -}