From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D86E559CAF for ; Thu, 7 Apr 2016 06:14:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD4ED21C005; Thu, 7 Apr 2016 06:14:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7266121C005 for ; Thu, 7 Apr 2016 06:14:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38549340B7F for ; Thu, 7 Apr 2016 06:14:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0BA7CA for ; Thu, 7 Apr 2016 06:14:41 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1460009646.cc361de7214af32e8219b11cc98eee5e03ff4224.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/xdot/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/xdot/Manifest media-gfx/xdot/metadata.xml media-gfx/xdot/xdot-0.5.ebuild X-VCS-Directories: media-gfx/xdot/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: cc361de7214af32e8219b11cc98eee5e03ff4224 X-VCS-Branch: master Date: Thu, 7 Apr 2016 06:14:41 +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-Archives-Salt: 5e4f7c5c-777c-45c4-baa1-a576f2fe8520 X-Archives-Hash: 14285a17343172bad16bbd316089e310 commit: cc361de7214af32e8219b11cc98eee5e03ff4224 Author: Austin English gentoo org> AuthorDate: Thu Apr 7 06:12:38 2016 +0000 Commit: Austin English gentoo org> CommitDate: Thu Apr 7 06:14:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc361de7 media-gfx/xdot: add xdot-0.5 Package-Manager: portage-2.2.26 media-gfx/xdot/Manifest | 1 + media-gfx/xdot/metadata.xml | 14 ++++++++++++++ media-gfx/xdot/xdot-0.5.ebuild | 29 +++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/media-gfx/xdot/Manifest b/media-gfx/xdot/Manifest new file mode 100644 index 0000000..d105bc8 --- /dev/null +++ b/media-gfx/xdot/Manifest @@ -0,0 +1 @@ +DIST xdot-0.5.tar.gz 24555 SHA256 ecc40a7371a6f9590cb10b1a7d3cef67843cb18e7a9e4648dcb458229a7bf3c7 SHA512 f466ee0af2270c66218b67bf371c972d0ffefe977059eeeeb3c4a2ca29807c3ca419020286ed9c031853f79afb55222884c942bd14d8365b64ce2a0ed5f6d1d0 WHIRLPOOL 10e21752cfb8afd3a34b64708f410290b70e37026a8723320693f612ea1de5e13296db88b951ce860c260434dba5b113919b12e10f461e97b8a6a68d5f7e9125 diff --git a/media-gfx/xdot/metadata.xml b/media-gfx/xdot/metadata.xml new file mode 100644 index 0000000..947bc75 --- /dev/null +++ b/media-gfx/xdot/metadata.xml @@ -0,0 +1,14 @@ + + + + + wizardedit@gentoo.org + Austin English + + + Interactive viewer for Graphviz dot files + + + jrfonseca/xdot.py + + diff --git a/media-gfx/xdot/xdot-0.5.ebuild b/media-gfx/xdot/xdot-0.5.ebuild new file mode 100644 index 0000000..c31d3d6 --- /dev/null +++ b/media-gfx/xdot/xdot-0.5.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +MY_PN=xdot.py +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Interactive viewer for Graphviz dot files" +HOMEPAGE="https://github.com/jrfonseca/xdot.py" +SRC_URI="https://github.com/jrfonseca/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-python/pycairo[${PYTHON_USEDEP}] + >=dev-python/pygtk-2.10:2[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + media-gfx/graphviz[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}"