From owner-svn-ports-head@freebsd.org Thu Sep 24 15:57:55 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 118F7A0823B; Thu, 24 Sep 2015 15:57:55 +0000 (UTC) (envelope-from wg@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 018B717E8; Thu, 24 Sep 2015 15:57:55 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8OFvsam005947; Thu, 24 Sep 2015 15:57:54 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8OFvrjK005940; Thu, 24 Sep 2015 15:57:53 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201509241557.t8OFvrjK005940@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Thu, 24 Sep 2015 15:57:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r397694 - in head/sysutils: . restic 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: Thu, 24 Sep 2015 15:57:55 -0000 Author: wg Date: Thu Sep 24 15:57:52 2015 New Revision: 397694 URL: https://svnweb.freebsd.org/changeset/ports/397694 Log: sysutils/restic: Restic backup program Restic is a program that does backups right and was designed to be easy, fast verifiable, secure and efficient. WWW: https://restic.github.io Added: head/sysutils/restic/ head/sysutils/restic/Makefile (contents, props changed) head/sysutils/restic/distinfo (contents, props changed) head/sysutils/restic/pkg-descr (contents, props changed) head/sysutils/restic/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Sep 24 15:46:46 2015 (r397693) +++ head/sysutils/Makefile Thu Sep 24 15:57:52 2015 (r397694) @@ -823,6 +823,7 @@ SUBDIR += reoback SUBDIR += reptyr SUBDIR += respond + SUBDIR += restic SUBDIR += retail SUBDIR += rfstool SUBDIR += rhc Added: head/sysutils/restic/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/restic/Makefile Thu Sep 24 15:57:52 2015 (r397694) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= restic +PORTVERSION= 0.1.0 +DISTVERSIONPREFIX= v +CATEGORIES= sysutils + +MAINTAINER= wg@FreeBSD.org +COMMENT= Restic backup program + +BUILD_DEPENDS= ${LOCALBASE}/bin/go:${PORTSDIR}/lang/go + +USE_GITHUB= yes +GH_ACCOUNT= restic:DEFAULT,chunker juju:errors golang:crypto +GH_PROJECT= chunker:chunker errors:errors crypto:crypto +GH_TAGNAME= 16a28ff:chunker 1b5e39b:errors 74f810a:crypto + +STRIP= # stripping can break go binaries + +post-extract: + @${MKDIR} ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME} +.for src in CONTRIBUTING.md Godeps LICENSE Makefile README.md VERSION Vagrantfile appveyor.yml archiver.go archiver_int_test.go archiver_test.go backend build.go cache.go cache_test.go checker cmd crypto debug doc doc.go filter fuse lock.go lock_test.go lock_unix.go lock_windows.go node.go node_darwin.go node_freebsd.go node_linux.go node_openbsd.go node_test.go node_unix.go node_windows.go pack pipe progress.go repository restorer.go run_integration_tests.go run_tests.go snapshot.go snapshot_test.go test tree.go tree_test.go walk.go walk_test.go + @${MV} ${WRKSRC}/${src} \ + ${WRKSRC}/src/github.com/restic/${PORTNAME} +.endfor + @${MKDIR} ${WRKSRC}/src/github.com/juju + @${MKDIR} ${WRKSRC}/src/golang.org/x + @${MV} ${WRKSRC_chunker} ${WRKSRC}/src/github.com/restic/chunker + @${MV} ${WRKSRC_errors} ${WRKSRC}/src/github.com/juju/errors + @${MV} ${WRKSRC_crypto} ${WRKSRC}/src/golang.org/x/crypto + +do-build: + @cd ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}; ${SETENV} GOPATH=${WRKSRC} go build -o bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/sysutils/restic/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/restic/distinfo Thu Sep 24 15:57:52 2015 (r397694) @@ -0,0 +1,8 @@ +SHA256 (restic-restic-v0.1.0_GH0.tar.gz) = df7842cb690a56ce5371013a958d9f324072429897511d4bbfc092d76303f198 +SIZE (restic-restic-v0.1.0_GH0.tar.gz) = 13368404 +SHA256 (restic-chunker-16a28ff_GH0.tar.gz) = e5028b6fbc39997cf8ac6ba81025681228ddb1d80558a9acd6c2f10a0051c3cc +SIZE (restic-chunker-16a28ff_GH0.tar.gz) = 12241 +SHA256 (juju-errors-1b5e39b_GH0.tar.gz) = bf7ec9986aa03ad916f88e96c3860b8c7fb2705ed760f72f4149a6fc2341d53d +SIZE (juju-errors-1b5e39b_GH0.tar.gz) = 15611 +SHA256 (golang-crypto-74f810a_GH0.tar.gz) = 25e0c9cb7c6d6a5935aa318c9792fa6e18c8e0238994b5be039f90c8d58fd680 +SIZE (golang-crypto-74f810a_GH0.tar.gz) = 864642 Added: head/sysutils/restic/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/restic/pkg-descr Thu Sep 24 15:57:52 2015 (r397694) @@ -0,0 +1,4 @@ +Restic is a program that does backups right and was designed to be easy, fast +verifiable, secure and efficient. + +WWW: https://restic.github.io Added: head/sysutils/restic/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/restic/pkg-plist Thu Sep 24 15:57:52 2015 (r397694) @@ -0,0 +1 @@ +bin/restic