Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Sep 2015 20:31:43 +0000 (UTC)
From:      Bartek Rutkowski <robak@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r397660 - in head/devel: . b2
Message-ID:  <201509232031.t8NKVhTL025262@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: robak
Date: Wed Sep 23 20:31:42 2015
New Revision: 397660
URL: https://svnweb.freebsd.org/changeset/ports/397660

Log:
  devel/b2: NEW PORT - Command Line Interface for Backblaze's B2 storage service
  
  B2 Cloud Storage is a cloud service for storing files in the cloud.
  Files are available for download at any time, either through the API
  or through a browser-compatible URL.
  
  This package provides Backblaze's officiall command line tool for
  accessing all of the capabilities of B2 Cloud Storage.
  
  WWW: https://www.backblaze.com/b2/docs/quick_command_line.html
  
  Submitted by:	robak

Added:
  head/devel/b2/
  head/devel/b2/Makefile   (contents, props changed)
  head/devel/b2/distinfo   (contents, props changed)
  head/devel/b2/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Sep 23 20:24:28 2015	(r397659)
+++ head/devel/Makefile	Wed Sep 23 20:31:42 2015	(r397660)
@@ -129,6 +129,7 @@
     SUBDIR += avro-c
     SUBDIR += avro-cpp
     SUBDIR += awscli
+    SUBDIR += b2
     SUBDIR += bam
     SUBDIR += bbfreeze
     SUBDIR += bbfreeze-loader

Added: head/devel/b2/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/b2/Makefile	Wed Sep 23 20:31:42 2015	(r397660)
@@ -0,0 +1,29 @@
+# Created by: Bartek Rutkowski <robak@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	b2
+PORTVERSION=	0.2.4
+CATEGORIES=	devel
+MASTER_SITES=	https://www.backblaze.com/b2/docs/
+DISTNAME=	${PORTNAME}
+EXTRACT_SUFX=
+
+MAINTAINER=	robak@FreeBSD.org
+COMMENT=	Command Line Interface for Backblaze's B2 storage service
+
+LICENSE=	MIT
+
+USES=		python:2.6+ shebangfix
+SHEBANG_FILES=	b2
+NO_BUILD=	yes
+
+PLIST_FILES=	bin/${PORTNAME}
+
+do-extract:
+	@${MKDIR} ${WRKSRC}
+	@${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/devel/b2/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/b2/distinfo	Wed Sep 23 20:31:42 2015	(r397660)
@@ -0,0 +1,2 @@
+SHA256 (b2) = 2a73a5daf3915ae30788ebfff51c134bcf5e92157b4079afe8499b2b2eade9f8
+SIZE (b2) = 24688

Added: head/devel/b2/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/b2/pkg-descr	Wed Sep 23 20:31:42 2015	(r397660)
@@ -0,0 +1,8 @@
+B2 Cloud Storage is a cloud service for storing files in the cloud.
+Files are available for download at any time, either through the API
+or through a browser-compatible URL.
+
+This package provides Backblaze's officiall command line tool for
+accessing all of the capabilities of B2 Cloud Storage.
+
+WWW: https://www.backblaze.com/b2/docs/quick_command_line.html



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509232031.t8NKVhTL025262>