Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/restic/
Date: Tue, 18 Jun 2019 07:26:17
Message-Id: 1560842270.84805585737a890c0863bbdb3b9b6177b512e26e.mgorny@gentoo
1 commit: 84805585737a890c0863bbdb3b9b6177b512e26e
2 Author: David Roman <davidroman96 <AT> gmail <DOT> com>
3 AuthorDate: Tue Apr 23 18:25:17 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 18 07:17:50 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84805585
7
8 app-backup/restic: remove old ebuilds
9
10 Package-Manager: Portage-2.3.64, Repoman-2.3.12
11 Signed-off-by: David Roman <davidroman96 <AT> gmail.com>
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13
14 app-backup/restic/Manifest | 3 --
15 app-backup/restic/restic-0.8.3.ebuild | 57 -----------------------------------
16 app-backup/restic/restic-0.9.2.ebuild | 54 ---------------------------------
17 app-backup/restic/restic-0.9.3.ebuild | 54 ---------------------------------
18 4 files changed, 168 deletions(-)
19
20 diff --git a/app-backup/restic/Manifest b/app-backup/restic/Manifest
21 index f8be2f381d1..4eeaa5ae5e8 100644
22 --- a/app-backup/restic/Manifest
23 +++ b/app-backup/restic/Manifest
24 @@ -1,4 +1 @@
25 -DIST restic-0.8.3.tar.gz 48746281 BLAKE2B 4161326068165b5ba19e9ee0e6386aa1df29a961a42509a2cb7924958100b9412abd1dd27d299d1eef76fdd4731d4a56f0a68e796a46071229a3e6767d3a6bb7 SHA512 758b2c69af8aad6bb62dc750141d5f5a1954ca2b51350ef59c35fd10afefaddc4d8d0cdd5914f249594946db6138124a48fba531b8a24353f022ccea773a240c
26 -DIST restic-0.9.2.tar.gz 27344284 BLAKE2B 17c121a0d4df470397b467e09ceac559848c34e6a43f289b68eff8b85af86a18a4d2e1340060812613cb7e9cecf86f706565a6bcce31fbcd5aab076a85b57c67 SHA512 e060e0e16031924df7347ec74972bf52c75c84cca8ae996b1c5dd8a6f42c9022062e004ec17af2ebc0b6e9480ecfdff4ca7f64956afab9b9799201848d0be731
27 -DIST restic-0.9.3.tar.gz 26183792 BLAKE2B 2bb98bd0b5430f928cdc566e558e503d84e611d05da8866f4f5d6f75a325ed73e7674098d73976d8f37ba8d38232adaedc25e2ea211403ea482cecc81f476ba9 SHA512 a8d906984d17e46533a377fba464d909a92016595d7585f37942bc68c24f9356c47df83f2e6ec15b877ea20f864be87362db4421665b594fecb4bca78b520393
28 DIST restic-0.9.4.tar.gz 26211163 BLAKE2B 950a8da8217500a910f0e5966787b668417f1168e81365ecda70469ef42c24fed876e97b6a44ed9dda89c07760db4678d791960d78760d68c8f1846c827cf340 SHA512 8e75a1da6ee9a364c2bf53ce8f9b014549e7065eae349dc6baf68b0e8a8e9736f83c0495b822aac87480751f448bd42da34c440290b5f0967aea7becda5c448b
29
30 diff --git a/app-backup/restic/restic-0.8.3.ebuild b/app-backup/restic/restic-0.8.3.ebuild
31 deleted file mode 100644
32 index 6654fb9c5cc..00000000000
33 --- a/app-backup/restic/restic-0.8.3.ebuild
34 +++ /dev/null
35 @@ -1,57 +0,0 @@
36 -# Copyright 1999-2018 Gentoo Foundation
37 -# Distributed under the terms of the GNU General Public License v2
38 -
39 -EAPI=6
40 -
41 -inherit golang-vcs-snapshot bash-completion-r1
42 -
43 -DESCRIPTION="A backup program that is fast, efficient and secure"
44 -HOMEPAGE="https://restic.github.io/"
45 -SRC_URI="https://github.com/restic/restic/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 -EGO_PN="github.com/restic/restic"
47 -
48 -LICENSE="BSD-2"
49 -SLOT="0"
50 -KEYWORDS="~amd64 ~arm ~x86"
51 -IUSE="test"
52 -
53 -DEPEND="
54 - dev-lang/go
55 - test? ( sys-fs/fuse:0 )"
56 -
57 -RDEPEND="sys-fs/fuse:0"
58 -
59 -S="${WORKDIR}/${P}/src/${EGO_PN}"
60 -
61 -src_compile() {
62 - local mygoargs=(
63 - -v
64 - -work
65 - -x
66 - -tags release
67 - -ldflags "-s -w -X main.version=${PV}"
68 - -asmflags "-trimpath=${S}"
69 - -gcflags "-trimpath=${S}"
70 - -o restic ${EGO_PN}/cmd/restic
71 - )
72 -
73 - GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \
74 - go build "${mygoargs[@]}" || die
75 -}
76 -
77 -src_test() {
78 - GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \
79 - go test -timeout 30m -v -work -x ${EGO_PN}/cmd/... ${EGO_PN}/internal/... || die
80 -}
81 -
82 -src_install() {
83 - dobin restic
84 -
85 - newbashcomp doc/bash-completion.sh "${PN}"
86 -
87 - insinto /usr/share/zsh/site-functions
88 - newins doc/zsh-completion.zsh _restic
89 -
90 - doman doc/man/*
91 - dodoc doc/*.rst
92 -}
93
94 diff --git a/app-backup/restic/restic-0.9.2.ebuild b/app-backup/restic/restic-0.9.2.ebuild
95 deleted file mode 100644
96 index 89515ce18d0..00000000000
97 --- a/app-backup/restic/restic-0.9.2.ebuild
98 +++ /dev/null
99 @@ -1,54 +0,0 @@
100 -# Copyright 1999-2018 Gentoo Foundation
101 -# Distributed under the terms of the GNU General Public License v2
102 -
103 -EAPI=6
104 -
105 -inherit bash-completion-r1 golang-vcs-snapshot
106 -
107 -DESCRIPTION="A backup program that is fast, efficient and secure"
108 -HOMEPAGE="https://restic.github.io/"
109 -SRC_URI="https://github.com/restic/restic/archive/v${PV}.tar.gz -> ${P}.tar.gz"
110 -EGO_PN="github.com/restic/restic"
111 -
112 -LICENSE="BSD-2"
113 -SLOT="0"
114 -KEYWORDS="~amd64 ~arm ~x86"
115 -IUSE="test"
116 -
117 -RDEPEND="sys-fs/fuse:0"
118 -DEPEND="${RDEPEND}"
119 -
120 -S="${WORKDIR}/${P}/src/${EGO_PN}"
121 -
122 -src_compile() {
123 - local mygoargs=(
124 - -v
125 - -work
126 - -x
127 - -tags release
128 - -ldflags "-X main.version=${PV}"
129 - -asmflags "-trimpath=${S}"
130 - -gcflags "-trimpath=${S}"
131 - -o restic ${EGO_PN}/cmd/restic
132 - )
133 -
134 - GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \
135 - go build "${mygoargs[@]}" || die
136 -}
137 -
138 -src_test() {
139 - GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \
140 - go test -timeout 30m -v -work -x ${EGO_PN}/cmd/... ${EGO_PN}/internal/... || die
141 -}
142 -
143 -src_install() {
144 - dobin restic
145 -
146 - newbashcomp doc/bash-completion.sh "${PN}"
147 -
148 - insinto /usr/share/zsh/site-functions
149 - newins doc/zsh-completion.zsh _restic
150 -
151 - doman doc/man/*
152 - dodoc doc/*.rst
153 -}
154
155 diff --git a/app-backup/restic/restic-0.9.3.ebuild b/app-backup/restic/restic-0.9.3.ebuild
156 deleted file mode 100644
157 index 89515ce18d0..00000000000
158 --- a/app-backup/restic/restic-0.9.3.ebuild
159 +++ /dev/null
160 @@ -1,54 +0,0 @@
161 -# Copyright 1999-2018 Gentoo Foundation
162 -# Distributed under the terms of the GNU General Public License v2
163 -
164 -EAPI=6
165 -
166 -inherit bash-completion-r1 golang-vcs-snapshot
167 -
168 -DESCRIPTION="A backup program that is fast, efficient and secure"
169 -HOMEPAGE="https://restic.github.io/"
170 -SRC_URI="https://github.com/restic/restic/archive/v${PV}.tar.gz -> ${P}.tar.gz"
171 -EGO_PN="github.com/restic/restic"
172 -
173 -LICENSE="BSD-2"
174 -SLOT="0"
175 -KEYWORDS="~amd64 ~arm ~x86"
176 -IUSE="test"
177 -
178 -RDEPEND="sys-fs/fuse:0"
179 -DEPEND="${RDEPEND}"
180 -
181 -S="${WORKDIR}/${P}/src/${EGO_PN}"
182 -
183 -src_compile() {
184 - local mygoargs=(
185 - -v
186 - -work
187 - -x
188 - -tags release
189 - -ldflags "-X main.version=${PV}"
190 - -asmflags "-trimpath=${S}"
191 - -gcflags "-trimpath=${S}"
192 - -o restic ${EGO_PN}/cmd/restic
193 - )
194 -
195 - GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \
196 - go build "${mygoargs[@]}" || die
197 -}
198 -
199 -src_test() {
200 - GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \
201 - go test -timeout 30m -v -work -x ${EGO_PN}/cmd/... ${EGO_PN}/internal/... || die
202 -}
203 -
204 -src_install() {
205 - dobin restic
206 -
207 - newbashcomp doc/bash-completion.sh "${PN}"
208 -
209 - insinto /usr/share/zsh/site-functions
210 - newins doc/zsh-completion.zsh _restic
211 -
212 - doman doc/man/*
213 - dodoc doc/*.rst
214 -}