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 1F11258973 for ; Wed, 27 Jan 2016 21:44:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36E7221C02F; Wed, 27 Jan 2016 21:44:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C117221C02F for ; Wed, 27 Jan 2016 21:44:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 36DA83409EF for ; Wed, 27 Jan 2016 21:44:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F285E5F for ; Wed, 27 Jan 2016 21:44:18 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1453931051.a6499650ed72602121699b40797f3d479b71852b.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-tools/git-tools-2015_p20151225-r1.ebuild X-VCS-Directories: dev-vcs/git-tools/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: a6499650ed72602121699b40797f3d479b71852b X-VCS-Branch: master Date: Wed, 27 Jan 2016 21:44:18 +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: cb23c5d1-a049-4a48-8de0-40488e65dd7f X-Archives-Hash: bc45cd34065ee4c6b683962dce3f0af1 commit: a6499650ed72602121699b40797f3d479b71852b Author: Robin H. Johnson gentoo org> AuthorDate: Wed Jan 27 21:43:58 2016 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Wed Jan 27 21:44:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6499650 dev-vcs/git-tools: add useful symlinks. Package-Manager: portage-2.2.24 .../git-tools/git-tools-2015_p20151225-r1.ebuild | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/dev-vcs/git-tools/git-tools-2015_p20151225-r1.ebuild b/dev-vcs/git-tools/git-tools-2015_p20151225-r1.ebuild new file mode 100644 index 0000000..a1916bb --- /dev/null +++ b/dev-vcs/git-tools/git-tools-2015_p20151225-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 python3_{1..5} ) +inherit python-r1 + +DESCRIPTION="Assorted git-related scripts" +HOMEPAGE="https://github.com/MestreLion/git-tools/" +MY_PV="ff7a07daa6898fd0993180f64bd232aa4def6018" +SRC_URI="https://github.com/MestreLion/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=" + >=dev-vcs/git-2.5 + >=app-shells/bash-4.0" + +MY_P=${PN}-${MY_PV} +S=${WORKDIR}/${MY_P} + +src_compile() { + :; +} + +src_install() { + SCRIPTS_BASH="git-branches-rename git-clone-subset git-find-uncommited-repos git-rebase-theirs git-strip-merge" + SCRIPTS_PYTHON="git-restore-mtime" + dobin $SCRIPTS_BASH + dobin $SCRIPTS_PYTHON + for p in $SCRIPTS_PYTHON ; do + python_replicate_script "${ED}"/usr/bin/$p + done + # Make it possible to use the tools as 'git $TOOLNAME' + for i in $SCRIPTS_BASH $SCRIPTS_PYTHON ; do + dosym /usr/bin/$i /usr/libexec/git-core/ + done + dodoc README.md +}