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 4062158973 for ; Wed, 27 Jan 2016 19:58:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08B37E0877; Wed, 27 Jan 2016 19:58:52 +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 95B8AE0877 for ; Wed, 27 Jan 2016 19:58:51 +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 88C71340998 for ; Wed, 27 Jan 2016 19:58:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBAC2CF3 for ; Wed, 27 Jan 2016 19:58:45 +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: <1453924719.59876fbbdb7c6ba939cbab99da766b73139f1182.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/Manifest dev-vcs/git-tools/git-tools-2015_p20151225.ebuild dev-vcs/git-tools/metadata.xml X-VCS-Directories: dev-vcs/git-tools/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 59876fbbdb7c6ba939cbab99da766b73139f1182 X-VCS-Branch: master Date: Wed, 27 Jan 2016 19:58:45 +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: 33f4d63a-282f-4589-b7d4-a27cabfdeb55 X-Archives-Hash: 48701d2295094583e3950ababbc0a2b0 commit: 59876fbbdb7c6ba939cbab99da766b73139f1182 Author: Robin H. Johnson gentoo org> AuthorDate: Wed Jan 27 19:58:23 2016 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Wed Jan 27 19:58:39 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59876fbb dev-vcs/git-tools: New package. Package-Manager: portage-2.2.24 dev-vcs/git-tools/Manifest | 1 + dev-vcs/git-tools/git-tools-2015_p20151225.ebuild | 40 +++++++++++++++++++++++ dev-vcs/git-tools/metadata.xml | 10 ++++++ 3 files changed, 51 insertions(+) diff --git a/dev-vcs/git-tools/Manifest b/dev-vcs/git-tools/Manifest new file mode 100644 index 0000000..36e3e70 --- /dev/null +++ b/dev-vcs/git-tools/Manifest @@ -0,0 +1 @@ +DIST git-tools-2015_p20151225.tar.gz 12635 SHA256 ab98a8ac35d47d521c43e8b6f543e55757bb2ec4a3cbdeddf25348c5b0cdb36a SHA512 c995f814a78a3afb967e435b9559e4601fd9c7ed10b30950d6d8f20db2cc8077c814fb6164351f20f3c118e0b8b139c84485d5849057654a70d81847f77dd3d0 WHIRLPOOL 6f2810d8e81bbdcb8f99a4e9e3032e11a160df969e8c11a9f8ed8e053eaaf98f895c90eed726e91bcdc2a59493950375015c4922e758256a54874e2667e21a25 diff --git a/dev-vcs/git-tools/git-tools-2015_p20151225.ebuild b/dev-vcs/git-tools/git-tools-2015_p20151225.ebuild new file mode 100644 index 0000000..f611b39 --- /dev/null +++ b/dev-vcs/git-tools/git-tools-2015_p20151225.ebuild @@ -0,0 +1,40 @@ +# 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 + dodoc README.md +} diff --git a/dev-vcs/git-tools/metadata.xml b/dev-vcs/git-tools/metadata.xml new file mode 100644 index 0000000..ac0f43b --- /dev/null +++ b/dev-vcs/git-tools/metadata.xml @@ -0,0 +1,10 @@ + + + + + robbat2@gentoo.org + + + MestreLion/git-tools + +