diff options
author | David Roman <davidroman96@gmail.com> | 2024-07-29 11:04:38 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-08-13 10:36:26 +0300 |
commit | 8d99521c71b9740a1c7b7b4b5a6cb42f01b9b85c (patch) | |
tree | 556b7e948b84a94f1f0a37f1329576a9c5668568 /app-backup | |
parent | sys-firmware/broadcom-bt-firmware: drop 12.0.1.1105_p3 (diff) | |
download | gentoo-8d99521c71b9740a1c7b7b4b5a6cb42f01b9b85c.tar.gz gentoo-8d99521c71b9740a1c7b7b4b5a6cb42f01b9b85c.tar.bz2 gentoo-8d99521c71b9740a1c7b7b4b5a6cb42f01b9b85c.zip |
app-backup/restic: drop 0.15.2
Signed-off-by: David Roman <davidroman96@gmail.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/restic/Manifest | 2 | ||||
-rw-r--r-- | app-backup/restic/restic-0.15.2.ebuild | 48 |
2 files changed, 0 insertions, 50 deletions
diff --git a/app-backup/restic/Manifest b/app-backup/restic/Manifest index d6fefda365d3..f8e264f6adc9 100644 --- a/app-backup/restic/Manifest +++ b/app-backup/restic/Manifest @@ -1,5 +1,3 @@ -DIST restic-0.15.2-deps.tar.xz 159164476 BLAKE2B 652c5f880dc88ab9b4fcfb0168cf5bce19587f7c0195e379ac01ff227fd453bb5fc6ab72b7803d7070f92ea608a077aa0f79005f000b5626d7ea8841c9ec9643 SHA512 e4ef9ebfc09998e912128d84790081d16c05dad23e680f642e204974fc1ddd3a1f92ad2035227f6448f7661e24ba69379b1dc8198115d2d3d780ad0b0c7a475c -DIST restic-0.15.2.tar.gz 23924222 BLAKE2B d07f505a9d3a425c2fbad275f43a3a23e0b84b673e0ac77f52c45c2965266b483ae136fe99f0bc82903680ff0c5843edd1ed72e4864e5977c2ed2c85a703520c SHA512 8135f8a77c6f1264d962156f58fca4023da6581099cfd4a69379d8f1f137443c217c0207aeb7d41b603b341e78e9b3050c6bdad81323e0efd7b81805f33263bd DIST restic-0.16.4-deps.tar.xz 171826444 BLAKE2B 2b4adb002209bbdcd2884f0126b775762517e6f008e6d862f63a8b373cc52c71d6f197ba753d90277f6136b38e6243e776ef8d75ce7437d563ccfc7e20509003 SHA512 b0c82b861265c4a2d42fa8fd921ec8d07a3018ccd6a2363dcaaf2e7cb1d40eb0ebe7e77dd6a44a30bc28c4d958facf504d27d231d2ea73b14c1f9a1ef12b33d5 DIST restic-0.16.4.tar.gz 23990246 BLAKE2B f8dff867ee5e0f9c16b3b22b7db7bfede6d38565558c99632e7239e9c6a19602cd7ea5c7761ac5d0103d6e07c68c0d20c64184317022799f19b9ac814c4b6ff4 SHA512 9f28f90466a30a3c1f32cd1951dddaa22d30ece8b1c18da1a907cc1dd0f98065c25529e855b56fc3d62801b052371d9fe117cd26f17e15276f6a9a309416e914 DIST restic-0.16.5-deps.tar.xz 172231640 BLAKE2B 76dafbaf761a62c3830fbb44f2f64ed45d752081f034a49772366edaf9a6b6b60a964cf16e08b9cfb35a7791ddfd39e7447d4e41287e74c65322e31ef431e1da SHA512 af338dcb2805ec8c83afffb8d5a0179617a26547354cddbdff583d7c8837285e2faedd033d3786ade55d444b0e9319dbe780b8f73bb3492d67447a5eabc3a3d1 diff --git a/app-backup/restic/restic-0.15.2.ebuild b/app-backup/restic/restic-0.15.2.ebuild deleted file mode 100644 index fe50eb0f746f..000000000000 --- a/app-backup/restic/restic-0.15.2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 go-module - -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" -SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" - -LICENSE="Apache-2.0 BSD BSD-2 LGPL-3-with-linking-exception MIT" -SLOT="0" -KEYWORDS="amd64 arm ~arm64 ~ppc64 ~riscv x86" - -RDEPEND="sys-fs/fuse:0" -DEPEND="${RDEPEND}" - -src_compile() { - local mygoargs=( - -tags release - -ldflags "-X main.version=${PV}" - -asmflags "-trimpath=${S}" - -gcflags "-trimpath=${S}" - ) - - ego build "${mygoargs[@]}" -o restic ./cmd/restic -} - -src_test() { - addwrite /dev/fuse - # a number of the ./cmd/... tests fail - # ego test -timeout 30m ./cmd/... ./internal/... - ego test -timeout 30m ./internal/... -} - -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 -} |