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 7BF3E1382DE for ; Wed, 29 Jun 2016 10:53:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAFFCE0C08; Wed, 29 Jun 2016 10:53:46 +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 5E3BDE0C08 for ; Wed, 29 Jun 2016 10:53:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 68A64340A9D for ; Wed, 29 Jun 2016 10:53:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79BCA15DF for ; Wed, 29 Jun 2016 10:53:42 +0000 (UTC) From: "Nicolas Bock" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" Message-ID: <1467197596.fc3767361acb4434090c4f1f234762fac78dffb5.nicolasbock@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-deps/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-deps/git-deps-9999.ebuild dev-vcs/git-deps/metadata.xml X-VCS-Directories: dev-vcs/git-deps/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: fc3767361acb4434090c4f1f234762fac78dffb5 X-VCS-Branch: master Date: Wed, 29 Jun 2016 10:53:42 +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: ff555986-7b77-4b8b-a875-602325ba41ce X-Archives-Hash: 64c93deaa3d7afe8d7e379a4714e6e22 commit: fc3767361acb4434090c4f1f234762fac78dffb5 Author: Nicolas Bock gentoo org> AuthorDate: Wed Jun 29 10:52:02 2016 +0000 Commit: Nicolas Bock gentoo org> CommitDate: Wed Jun 29 10:53:16 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc376736 dev-vcs/git-deps: New ebuild Package-Manager: portage-2.2.28 dev-vcs/git-deps/git-deps-9999.ebuild | 29 +++++++++++++++++++++++++++++ dev-vcs/git-deps/metadata.xml | 8 ++++++++ 2 files changed, 37 insertions(+) diff --git a/dev-vcs/git-deps/git-deps-9999.ebuild b/dev-vcs/git-deps/git-deps-9999.ebuild new file mode 100644 index 0000000..d8c27be --- /dev/null +++ b/dev-vcs/git-deps/git-deps-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGIT_REPO_URI="https://github.com/aspiers/git-deps" +EGIT_BRANCH=master + +PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) + +inherit git-r3 python-r1 + +DESCRIPTION="git commit dependency analysis tool" +HOMEPAGE="https://github.com/aspiers/git-deps" + +LICENSE="GPL-2" +SLOT="0" + +RDEPEND=" + dev-python/pygit2 + ${PYTHON_DEPS} + " +DEPEND="${RDEPEND}" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +src_install() { + python_foreach_impl python_newexe git-deps.py git-deps +} diff --git a/dev-vcs/git-deps/metadata.xml b/dev-vcs/git-deps/metadata.xml new file mode 100644 index 0000000..1ebfcee --- /dev/null +++ b/dev-vcs/git-deps/metadata.xml @@ -0,0 +1,8 @@ + + + + + git-deps is a tool for performing automatic analysis of dependencies + between commits in a git repository. + +