From owner-svn-ports-all@freebsd.org Thu Nov 19 13:02:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D83FA31302; Thu, 19 Nov 2015 13:02:02 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB4BB1384; Thu, 19 Nov 2015 13:02:01 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAJD2089047399; Thu, 19 Nov 2015 13:02:00 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAJD206O047395; Thu, 19 Nov 2015 13:02:00 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201511191302.tAJD206O047395@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Thu, 19 Nov 2015 13:02:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401946 - in head/devel: . git-lfs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2015 13:02:02 -0000 Author: kuriyama Date: Thu Nov 19 13:02:00 2015 New Revision: 401946 URL: https://svnweb.freebsd.org/changeset/ports/401946 Log: Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise. WWW: https://git-lfs.github.com/ Added: head/devel/git-lfs/ head/devel/git-lfs/Makefile (contents, props changed) head/devel/git-lfs/distinfo (contents, props changed) head/devel/git-lfs/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Nov 19 12:48:20 2015 (r401945) +++ head/devel/Makefile Thu Nov 19 13:02:00 2015 (r401946) @@ -653,6 +653,7 @@ SUBDIR += git-cola SUBDIR += git-extras SUBDIR += git-gui + SUBDIR += git-lfs SUBDIR += git-lite SUBDIR += git-merge-changelog SUBDIR += git-modes Added: head/devel/git-lfs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-lfs/Makefile Thu Nov 19 13:02:00 2015 (r401946) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= git-lfs +PORTVERSION= 1.1.0 +CATEGORIES= devel +MASTER_SITES= GH GHC +PKGNAMEPREFIX= go- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Git extension for versioning large files + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= github +GH_PROJECT= ${PORTNAME} +GH_TAGNAME= v${PORTVERSION} +PLIST_FILES= bin/git-lfs + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} + +.include +.include "${PORTSDIR}/lang/go/files/bsd.go.mk" +.include Added: head/devel/git-lfs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-lfs/distinfo Thu Nov 19 13:02:00 2015 (r401946) @@ -0,0 +1,2 @@ +SHA256 (git-lfs-1.1.0_GH0.tar.gz) = 1f246ec5f1141677b05847b3e9bcb9929c9d9b1afc78585d5776a9c18186ea9b +SIZE (git-lfs-1.1.0_GH0.tar.gz) = 345118 Added: head/devel/git-lfs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-lfs/pkg-descr Thu Nov 19 13:02:00 2015 (r401946) @@ -0,0 +1,6 @@ +Git Large File Storage (LFS) replaces large files such as audio +samples, videos, datasets, and graphics with text pointers inside Git, +while storing the file contents on a remote server like GitHub.com or +GitHub Enterprise. + +WWW: https://git-lfs.github.com/