From owner-svn-ports-head@freebsd.org Wed Sep 23 20:31:44 2015 Return-Path: Delivered-To: svn-ports-head@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 327F0A07387; Wed, 23 Sep 2015 20:31:44 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 18D021C0F; Wed, 23 Sep 2015 20:31:44 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8NKVhbK025266; Wed, 23 Sep 2015 20:31:43 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8NKVhTL025262; Wed, 23 Sep 2015 20:31:43 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201509232031.t8NKVhTL025262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Wed, 23 Sep 2015 20:31:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r397660 - in head/devel: . b2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Sep 2015 20:31:44 -0000 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 +# $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 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