Date: Thu, 19 Nov 2015 13:02:00 +0000 (UTC) From: Jun Kuriyama <kuriyama@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401946 - in head/devel: . git-lfs Message-ID: <201511191302.tAJD206O047395@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk> +.include "${PORTSDIR}/lang/go/files/bsd.go.mk" +.include <bsd.port.post.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511191302.tAJD206O047395>