svn commit: r401946 - in head/devel: . git-lfs

Jun Kuriyama kuriyama at FreeBSD.org
Thu Nov 19 13:02:02 UTC 2015


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 at 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/


More information about the svn-ports-all mailing list