diff options
author | David Roman <davidroman96@gmail.com> | 2017-09-20 19:59:36 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-10-04 00:07:25 +0200 |
commit | c1386924e0fea7b6fad54e3d38a6d8fa9390e31f (patch) | |
tree | 7b591269fc02aa42e7988023652d5a91ca701d69 /app-backup/restic/restic-0.7.3.ebuild | |
parent | app-backup/restic: clean up old. (diff) | |
download | gentoo-c1386924e0fea7b6fad54e3d38a6d8fa9390e31f.tar.gz gentoo-c1386924e0fea7b6fad54e3d38a6d8fa9390e31f.tar.bz2 gentoo-c1386924e0fea7b6fad54e3d38a6d8fa9390e31f.zip |
app-backup/restic: version bump to 0.7.3.
Closes: https://bugs.gentoo.org/631112
Closes: https://github.com/gentoo/gentoo/pull/5742
Diffstat (limited to 'app-backup/restic/restic-0.7.3.ebuild')
-rw-r--r-- | app-backup/restic/restic-0.7.3.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/app-backup/restic/restic-0.7.3.ebuild b/app-backup/restic/restic-0.7.3.ebuild new file mode 100644 index 000000000000..b9393fcd9266 --- /dev/null +++ b/app-backup/restic/restic-0.7.3.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit golang-vcs-snapshot + +DESCRIPTION="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" +EGO_PN="github.com/restic/restic" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" + +DOCS=( + README.rst CONTRIBUTING.md doc/design.rst + doc/faq.rst doc/index.rst doc/manual.rst + doc/rest_backend.rst doc/development.rst + doc/talks.rst doc/tutorial_aws_s3.rst doc/installation.rst +) + +DEPEND=" + dev-lang/go + test? ( sys-fs/fuse:0 )" + +RDEPEND="sys-fs/fuse:0" + +S="${WORKDIR}/${P}/src/${EGO_PN}" + +src_compile() { + local mygoargs=( + -v + -work + -x + -tags release + -ldflags "-s -w -X main.version=${PV}" + -asmflags "-trimpath=${S}" + -gcflags "-trimpath=${S}" + -o restic ${EGO_PN}/cmd/restic + ) + + GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \ + go build "${mygoargs[@]}" || die +} + +src_test() { + GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \ + go test -timeout 30m -v -work -x ${EGO_PN}/cmd/... ${EGO_PN}/internal/... || die +} + +src_install() { + dobin restic + einstalldocs + + local i + for i in doc/man/*; do + doman "$i" + done +} |