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 D9991139694 for ; Thu, 23 Feb 2017 14:25:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 395DE21C07B; Thu, 23 Feb 2017 14:25:57 +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 F388421C07B for ; Thu, 23 Feb 2017 14:25:56 +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 AA5833413C3 for ; Thu, 23 Feb 2017 14:25:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4890F51E1 for ; Thu, 23 Feb 2017 14:25:54 +0000 (UTC) From: "Ettore Di Giacinto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ettore Di Giacinto" Message-ID: <1487859921.d2736effa33b5d078447421af7806efa6428b463.mudler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-lfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-lfs/Manifest dev-vcs/git-lfs/git-lfs-1.5.6.ebuild dev-vcs/git-lfs/metadata.xml X-VCS-Directories: dev-vcs/git-lfs/ X-VCS-Committer: mudler X-VCS-Committer-Name: Ettore Di Giacinto X-VCS-Revision: d2736effa33b5d078447421af7806efa6428b463 X-VCS-Branch: master Date: Thu, 23 Feb 2017 14:25:54 +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: 58748db4-fced-4847-927e-3e97cc5ff936 X-Archives-Hash: 7330fa07c60721219881f319e141dd63 commit: d2736effa33b5d078447421af7806efa6428b463 Author: Ettore Di Giacinto gentoo org> AuthorDate: Thu Feb 23 14:09:53 2017 +0000 Commit: Ettore Di Giacinto gentoo org> CommitDate: Thu Feb 23 14:25:21 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2736eff dev-vcs/git-lfs: Initial import, bug #548080 Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-vcs/git-lfs/Manifest | 1 + dev-vcs/git-lfs/git-lfs-1.5.6.ebuild | 44 ++++++++++++++++++++++++++++++++++++ dev-vcs/git-lfs/metadata.xml | 8 +++++++ 3 files changed, 53 insertions(+) diff --git a/dev-vcs/git-lfs/Manifest b/dev-vcs/git-lfs/Manifest new file mode 100644 index 0000000000..4cefe238fe --- /dev/null +++ b/dev-vcs/git-lfs/Manifest @@ -0,0 +1 @@ +DIST git-lfs-1.5.6.tar.gz 604139 SHA256 4efbc806cde1ea6ab4e1d61db3e1f6939796fd53bf6e9c94ac564610147ea5cd SHA512 f5f2da9ac44647335b25cad3104027cf5476e25ef9763019744123f9e1ef81edadbf5b08a146b8070487b32a18aa202c799f910aee6f2f0144ca411ad6d7cfd2 WHIRLPOOL 2f785abffc917a322fe59f4354980d5f565572620569b9b53e85ecdf84b5d7ad407ced8853c897814daa816cac6efd1f85c9098cae9fe48b179cd3381c5f840d diff --git a/dev-vcs/git-lfs/git-lfs-1.5.6.ebuild b/dev-vcs/git-lfs/git-lfs-1.5.6.ebuild new file mode 100644 index 0000000000..2893dfb5ce --- /dev/null +++ b/dev-vcs/git-lfs/git-lfs-1.5.6.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGO_PN="github.com/git-lfs/${PN}" + +if [[ ${PV} == *9999 ]]; then + inherit golang-vcs +else + SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" + inherit golang-vcs-snapshot +fi + +DESCRIPTION="command line extension and specification for managing large files with Git" +HOMEPAGE="https://git-lfs.github.com/" + +LICENSE="MIT BSD BSD-2 BSD-4 Apache-2.0" +SLOT="0" +IUSE="+doc" + +DEPEND="doc? ( app-text/ronn )" +RDEPEND="dev-vcs/git" + +S="${WORKDIR}/${P}/src/${EGO_PN}" + +src_compile() { + # can't use golang-build_src_compile for go generate + # and others steps executed by build.go + GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \ + go run script/*.go -cmd build || die "build failed" + + if use doc; then + ronn docs/man/*.ronn || die "man building failed" + fi +} + +src_install() { + dobin bin/git-lfs + + use doc && doman docs/man/*.1 +} diff --git a/dev-vcs/git-lfs/metadata.xml b/dev-vcs/git-lfs/metadata.xml new file mode 100644 index 0000000000..d396d1b7e5 --- /dev/null +++ b/dev-vcs/git-lfs/metadata.xml @@ -0,0 +1,8 @@ + + + + + mudler@gentoo.org + Ettore Di Giacinto + +