From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CACEC139085 for ; Thu, 9 Feb 2017 00:24:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2BC7E0C8A; Thu, 9 Feb 2017 00:24:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BD054E0C8A for ; Thu, 9 Feb 2017 00:24:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7C97C3416BB for ; Thu, 9 Feb 2017 00:24:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A48463DCF for ; Thu, 9 Feb 2017 00:24:19 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1486599156.052ca64684c09ab1b503c959438e15a2bef3b3e5.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/restic/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/restic/Manifest app-backup/restic/metadata.xml app-backup/restic/restic-0.4.0.ebuild X-VCS-Directories: app-backup/restic/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 052ca64684c09ab1b503c959438e15a2bef3b3e5 X-VCS-Branch: master Date: Thu, 9 Feb 2017 00:24:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0c8eb52a-b8e1-493a-aae8-6cfc85a5429b X-Archives-Hash: 3235dabd63b50d0cf3b31b2619bd1075 commit: 052ca64684c09ab1b503c959438e15a2bef3b3e5 Author: David Roman gmail com> AuthorDate: Tue Feb 7 19:53:41 2017 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Thu Feb 9 00:12:36 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=052ca646 app-backup/restic: New package app-backup/restic: version bump to 0.4.0 app-backup/restic/Manifest | 1 + app-backup/restic/metadata.xml | 13 +++++++++++ app-backup/restic/restic-0.4.0.ebuild | 43 +++++++++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+) diff --git a/app-backup/restic/Manifest b/app-backup/restic/Manifest new file mode 100644 index 0000000000..95e41794e4 --- /dev/null +++ b/app-backup/restic/Manifest @@ -0,0 +1 @@ +DIST restic-0.4.0.tar.gz 22926188 SHA256 746dbc7b73f5a542be57b71714b243266a011f1d750f56f5100c08a59df1aeac SHA512 ccd15f010f8da3bae3d33698e70ff1d9565f52fb56991b78d35f95493417a4ab050021153d81c424947233255d9553d050f7a66e1c709843fe3b2d323a81f85b WHIRLPOOL 94e6b9ed777a86cb6e46cf734b9280e68cc2ce1ea061c8a94409dca594add1ec24fb736a56e35571302ff5043a60bef7f60ff3b39b038ee128bc815f7d3d48cd diff --git a/app-backup/restic/metadata.xml b/app-backup/restic/metadata.xml new file mode 100644 index 0000000000..83330b8512 --- /dev/null +++ b/app-backup/restic/metadata.xml @@ -0,0 +1,13 @@ + + + + + + davidroman96@gmail.com + David Roman + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/app-backup/restic/restic-0.4.0.ebuild b/app-backup/restic/restic-0.4.0.ebuild new file mode 100644 index 0000000000..9368856202 --- /dev/null +++ b/app-backup/restic/restic-0.4.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="restic is a backup program that is fast, efficient and secure" +HOMEPAGE="https://restic.github.io/" +SRC_URI="https://github.com/restic/restic/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DOCS=( README.md CONTRIBUTING.md doc/Design.md doc/FAQ.md doc/index.md doc/Manual.md doc/REST_backend.md ) + +DEPEND="dev-lang/go + test? ( sys-fs/fuse )" + +RDEPEND="sys-fs/fuse" + +src_compile() { + local mygoargs=( + -v + -work + -x + -tags release + -ldflags "-w -X main.version=${PV}" + -o "${S}"/restic cmds/restic + ) + + GOPATH="${S}:${S}/vendor" go build "${mygoargs[@]}" || die +} + +src_test() { + GOPATH="${S}:${S}/vendor" go test -v -work -x restic/... cmds/... || die +} + +src_install() { + dobin restic + einstalldocs +}