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 66C0E138334 for ; Fri, 30 Aug 2019 02:36:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F702E0827; Fri, 30 Aug 2019 02:36:11 +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 E2A5FE0827 for ; Fri, 30 Aug 2019 02:36: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 16A0734A63F for ; Fri, 30 Aug 2019 02:36:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84C8C778 for ; Fri, 30 Aug 2019 02:36:06 +0000 (UTC) From: "Brian Gloyer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Gloyer" Message-ID: <1567132507.0b327ff4532fc6c001c3a2d8398d98698fb0e216.brian.gloyer@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-portage/pacvis/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-portage/pacvis/Manifest app-portage/pacvis/metadata.xml app-portage/pacvis/pacvis-0.4.0.ebuild app-portage/pacvis/pacvis-9999.ebuild X-VCS-Directories: app-portage/pacvis/ X-VCS-Committer: brian.gloyer X-VCS-Committer-Name: Brian Gloyer X-VCS-Revision: 0b327ff4532fc6c001c3a2d8398d98698fb0e216 X-VCS-Branch: dev Date: Fri, 30 Aug 2019 02:36:06 +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: 0cf45be7-87db-4045-aeb4-634fbdb9c960 X-Archives-Hash: 6209a5cc6dd3c1187148520d431cdeb1 commit: 0b327ff4532fc6c001c3a2d8398d98698fb0e216 Author: brian gloyer thuy com> AuthorDate: Thu Aug 29 06:14:59 2019 +0000 Commit: Brian Gloyer gmail com> CommitDate: Fri Aug 30 02:35:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0b327ff4 port of pacvis to Gentoo. pacvis shows a dependency graph of packages as seen by portage Package-Manager: Portage-2.3.69, Repoman-2.3.16 Bug: https://bugs.gentoo.org/692590 Signed-off-by: brian gloyer gmail.com> app-portage/pacvis/Manifest | 1 + app-portage/pacvis/metadata.xml | 16 ++++++++++++++++ app-portage/pacvis/pacvis-0.4.0.ebuild | 18 ++++++++++++++++++ app-portage/pacvis/pacvis-9999.ebuild | 19 +++++++++++++++++++ 4 files changed, 54 insertions(+) diff --git a/app-portage/pacvis/Manifest b/app-portage/pacvis/Manifest new file mode 100644 index 0000000..5f8b54d --- /dev/null +++ b/app-portage/pacvis/Manifest @@ -0,0 +1 @@ +DIST pacvis-0.4.0.tar.gz 510373 BLAKE2B 0935eb1c5789d0e744a6b3a8c147ecaaa0cbb8e6de02996d7c4e608f86b660e3c2391b66925618f33338fcf82ec6df844bb0748dda25c59542a6711c5601a8c8 SHA512 c6d920a485672c9f1083619be2788823f818c5a8adeee1ee9d207b3a40b5c0c7b1265aab2bc9533324cdc7c53ba9926751c6e1f129be7f5b1c64346ec3e6669a diff --git a/app-portage/pacvis/metadata.xml b/app-portage/pacvis/metadata.xml new file mode 100644 index 0000000..90bbe38 --- /dev/null +++ b/app-portage/pacvis/metadata.xml @@ -0,0 +1,16 @@ + + + + + brian.gloyer@gmail.com + brian gloyer + + + + brian.gloyer@gmail.com + brian gloyer + + https://github.com/bgloyer/pacvis/issues/ + bgloyer/pacvis + + diff --git a/app-portage/pacvis/pacvis-0.4.0.ebuild b/app-portage/pacvis/pacvis-0.4.0.ebuild new file mode 100644 index 0000000..2e20d84 --- /dev/null +++ b/app-portage/pacvis/pacvis-0.4.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python{3_6,3_7} ) + +inherit distutils-r1 + +DESCRIPTION="Displays dependency graphs of packages" +HOMEPAGE="https://github.com/bgloyer/pacvis.git" +SRC_URI="https://github.com/bgloyer/pacvis/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]" diff --git a/app-portage/pacvis/pacvis-9999.ebuild b/app-portage/pacvis/pacvis-9999.ebuild new file mode 100644 index 0000000..90458ae --- /dev/null +++ b/app-portage/pacvis/pacvis-9999.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python{3_6,3_7} ) + +EGIT_REPO_URI="https://github.com/bgloyer/pacvis.git" +inherit distutils-r1 git-r3 + +DESCRIPTION="Displays dependency graphs of packages" +HOMEPAGE="https://github.com/bgloyer/pacvis.git" +SRC_URI="" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]"