public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/restic/
Date: Tue, 18 Jun 2019 07:26:12 +0000 (UTC)	[thread overview]
Message-ID: <1560842270.84805585737a890c0863bbdb3b9b6177b512e26e.mgorny@gentoo> (raw)

commit:     84805585737a890c0863bbdb3b9b6177b512e26e
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Tue Apr 23 18:25:17 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun 18 07:17:50 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84805585

app-backup/restic: remove old ebuilds

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-backup/restic/Manifest            |  3 --
 app-backup/restic/restic-0.8.3.ebuild | 57 -----------------------------------
 app-backup/restic/restic-0.9.2.ebuild | 54 ---------------------------------
 app-backup/restic/restic-0.9.3.ebuild | 54 ---------------------------------
 4 files changed, 168 deletions(-)

diff --git a/app-backup/restic/Manifest b/app-backup/restic/Manifest
index f8be2f381d1..4eeaa5ae5e8 100644
--- a/app-backup/restic/Manifest
+++ b/app-backup/restic/Manifest
@@ -1,4 +1 @@
-DIST restic-0.8.3.tar.gz 48746281 BLAKE2B 4161326068165b5ba19e9ee0e6386aa1df29a961a42509a2cb7924958100b9412abd1dd27d299d1eef76fdd4731d4a56f0a68e796a46071229a3e6767d3a6bb7 SHA512 758b2c69af8aad6bb62dc750141d5f5a1954ca2b51350ef59c35fd10afefaddc4d8d0cdd5914f249594946db6138124a48fba531b8a24353f022ccea773a240c
-DIST restic-0.9.2.tar.gz 27344284 BLAKE2B 17c121a0d4df470397b467e09ceac559848c34e6a43f289b68eff8b85af86a18a4d2e1340060812613cb7e9cecf86f706565a6bcce31fbcd5aab076a85b57c67 SHA512 e060e0e16031924df7347ec74972bf52c75c84cca8ae996b1c5dd8a6f42c9022062e004ec17af2ebc0b6e9480ecfdff4ca7f64956afab9b9799201848d0be731
-DIST restic-0.9.3.tar.gz 26183792 BLAKE2B 2bb98bd0b5430f928cdc566e558e503d84e611d05da8866f4f5d6f75a325ed73e7674098d73976d8f37ba8d38232adaedc25e2ea211403ea482cecc81f476ba9 SHA512 a8d906984d17e46533a377fba464d909a92016595d7585f37942bc68c24f9356c47df83f2e6ec15b877ea20f864be87362db4421665b594fecb4bca78b520393
 DIST restic-0.9.4.tar.gz 26211163 BLAKE2B 950a8da8217500a910f0e5966787b668417f1168e81365ecda70469ef42c24fed876e97b6a44ed9dda89c07760db4678d791960d78760d68c8f1846c827cf340 SHA512 8e75a1da6ee9a364c2bf53ce8f9b014549e7065eae349dc6baf68b0e8a8e9736f83c0495b822aac87480751f448bd42da34c440290b5f0967aea7becda5c448b

diff --git a/app-backup/restic/restic-0.8.3.ebuild b/app-backup/restic/restic-0.8.3.ebuild
deleted file mode 100644
index 6654fb9c5cc..00000000000
--- a/app-backup/restic/restic-0.8.3.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit golang-vcs-snapshot bash-completion-r1
-
-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"
-
-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
-
-	newbashcomp doc/bash-completion.sh "${PN}"
-
-	insinto /usr/share/zsh/site-functions
-	newins doc/zsh-completion.zsh _restic
-
-	doman doc/man/*
-	dodoc doc/*.rst
-}

diff --git a/app-backup/restic/restic-0.9.2.ebuild b/app-backup/restic/restic-0.9.2.ebuild
deleted file mode 100644
index 89515ce18d0..00000000000
--- a/app-backup/restic/restic-0.9.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit bash-completion-r1 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"
-
-RDEPEND="sys-fs/fuse:0"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-src_compile() {
-	local mygoargs=(
-		-v
-		-work
-		-x
-		-tags release
-		-ldflags "-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
-
-	newbashcomp doc/bash-completion.sh "${PN}"
-
-	insinto /usr/share/zsh/site-functions
-	newins doc/zsh-completion.zsh _restic
-
-	doman doc/man/*
-	dodoc doc/*.rst
-}

diff --git a/app-backup/restic/restic-0.9.3.ebuild b/app-backup/restic/restic-0.9.3.ebuild
deleted file mode 100644
index 89515ce18d0..00000000000
--- a/app-backup/restic/restic-0.9.3.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit bash-completion-r1 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"
-
-RDEPEND="sys-fs/fuse:0"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-src_compile() {
-	local mygoargs=(
-		-v
-		-work
-		-x
-		-tags release
-		-ldflags "-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
-
-	newbashcomp doc/bash-completion.sh "${PN}"
-
-	insinto /usr/share/zsh/site-functions
-	newins doc/zsh-completion.zsh _restic
-
-	doman doc/man/*
-	dodoc doc/*.rst
-}


             reply	other threads:[~2019-06-18  7:26 UTC|newest]

Thread overview: 96+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-18  7:26 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-08 18:54 [gentoo-commits] repo/gentoo:master commit in: app-backup/restic/ Arthur Zamarin
2025-03-08 15:33 Sam James
2025-03-08 14:09 Sam James
2025-02-24  8:16 Arthur Zamarin
2025-01-17  2:08 William Hubbs
2025-01-10  1:13 Sam James
2025-01-09 23:38 Sam James
2025-01-09 23:38 Sam James
2024-12-01 12:04 Sam James
2024-11-25  9:34 Jakov Smolić
2024-11-24 23:31 Sam James
2024-11-24 23:31 Sam James
2024-10-12  7:28 Michał Górny
2024-10-11  0:24 Sam James
2024-10-11  0:24 Sam James
2024-10-07  6:46 Joonas Niilola
2024-10-07  6:46 Joonas Niilola
2024-08-13  7:36 Joonas Niilola
2024-08-13  7:36 Joonas Niilola
2024-07-31  0:02 Sam James
2024-07-30 18:00 Arthur Zamarin
2024-07-30 18:00 Arthur Zamarin
2024-07-09  3:08 Eli Schwartz
2024-07-09  3:08 Eli Schwartz
2024-04-09  5:52 Joonas Niilola
2024-04-09  5:52 Joonas Niilola
2024-04-08 15:32 Arthur Zamarin
2024-02-16 22:54 William Hubbs
2023-10-31 16:24 William Hubbs
2023-10-31 16:22 William Hubbs
2023-09-25  7:20 Arthur Zamarin
2023-07-06 17:22 William Hubbs
2023-05-26 20:06 Arthur Zamarin
2023-05-26 14:38 Sam James
2023-05-26 14:38 Sam James
2023-05-20 21:35 William Hubbs
2023-04-15  7:17 Joonas Niilola
2023-04-15  7:17 Joonas Niilola
2023-02-22  3:52 William Hubbs
2023-02-16  6:42 William Hubbs
2023-02-16  6:31 William Hubbs
2022-10-21 20:13 William Hubbs
2022-09-15  6:47 Agostino Sarubbo
2022-09-15  5:22 Joonas Niilola
2022-09-15  5:22 Joonas Niilola
2022-09-14 21:56 William Hubbs
2022-04-23  8:14 Florian Schmaus
2022-03-31  8:26 Florian Schmaus
2022-02-24  1:04 Yixun Lan
2022-02-23 10:15 Jakov Smolić
2022-02-23 10:08 Jakov Smolić
2022-02-23 10:08 Jakov Smolić
2021-08-26  6:42 Joonas Niilola
2021-08-26  6:42 Joonas Niilola
2021-05-10 12:31 Sam James
2021-04-19 23:12 Sam James
2021-03-28 12:17 Sam James
2021-03-09 11:27 Joonas Niilola
2021-03-09 11:27 Joonas Niilola
2021-03-05 20:34 Sam James
2021-03-04 10:42 Agostino Sarubbo
2021-03-03 12:37 Agostino Sarubbo
2020-11-12  8:54 Joonas Niilola
2020-10-10  7:22 Joonas Niilola
2020-10-10  7:22 Joonas Niilola
2020-01-27 12:46 Agostino Sarubbo
2020-01-27 11:47 Mikle Kolyada
2020-01-26 20:55 Thomas Deutschmann
2020-01-04 17:48 Joonas Niilola
2019-11-06 15:09 Joonas Niilola
2019-10-01  9:03 Jason A. Donenfeld
2019-06-18  7:26 Michał Górny
2019-03-15 22:56 Thomas Deutschmann
2018-10-18 21:40 Patrice Clement
2018-08-15 10:41 Michał Górny
2018-08-15 10:41 Michał Górny
2018-06-13 12:15 Michał Górny
2018-06-13 12:15 Michał Górny
2018-06-09  6:21 Michał Górny
2018-06-09  6:21 Michał Górny
2018-03-14 10:48 Michał Górny
2017-12-28 15:31 Craig Andrews
2017-11-30 14:47 Patrice Clement
2017-11-30 14:47 Patrice Clement
2017-10-04  1:38 Manuel Rüger
2017-10-03 22:07 Patrice Clement
2017-10-03 22:07 Patrice Clement
2017-09-16  6:33 Markus Meier
2017-07-30 16:24 David Seifert
2017-07-30 16:24 David Seifert
2017-07-04 23:23 Göktürk Yüksek
2017-06-01 22:45 Jason Donenfeld
2017-05-30 21:37 Patrice Clement
2017-03-15 21:30 Amy Liffey
2017-02-09  0:24 Göktürk Yüksek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1560842270.84805585737a890c0863bbdb3b9b6177b512e26e.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox