svn commit: r397660 - in head/devel: . b2
Bartek Rutkowski
robak at FreeBSD.org
Wed Sep 23 20:31:44 UTC 2015
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 at 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 at 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
More information about the svn-ports-all
mailing list