app-admin/chezmoi: drop 2.16.0

Signed-off-by: Randall T. Vasquez <ran.dall@icloud.com>
This commit is contained in:
Randall T. Vasquez 2022-07-29 14:20:04 -07:00
parent 4aab9987a7
commit 133cf41446
No known key found for this signature in database
GPG Key ID: 3B04260A44A070CA
2 changed files with 0 additions and 45 deletions

View File

@ -1,4 +1,2 @@
DIST chezmoi-2.16.0-deps.tar.xz 39136112 BLAKE2B e69f0a0c4f0a90e9884717b31c7ef02b20e790a516aac8695baa6e43c1ceb6281b00556ad6edfe5b777a653d3702e624197cd0df801a22ef2b0f4d0ebe204406 SHA512 3a4d3889bf15c99f5e0eb2524cf316aa1f6fea0fd57ea0ec1de80b4ec0ca72eae2e501d0c9715b0539675d25f3c8286cd5d27e2d651b772565c9cafb24dc313a
DIST chezmoi-2.16.0.tar.gz 2395250 BLAKE2B 1435ea88afc599a08c48170391140432f07e5d14029426c6c3c66f8da2a6dc5d79b93c2ff76d85ee29706152a77515e07651d6acd32ebb33199a5f2b8951cc9c SHA512 7c9a847c27e9e0ac33a151cdaa1698d1b6fb58e174d9c8827cdafa35c1272ab4b56f930e64f6b63aec4f41391f0c1913c15b5b76348d6c5329ed52846a1d0da7
DIST chezmoi-2.20.0-deps.tar.xz 41042100 BLAKE2B 0ffd43539b2185167b3c85cc2a2e3eea6475be1aa4aa7be30c199652eaa26e5d8c0818421ae59ddf3cec5a219e82f207931831622016d793d895420b5f5f8426 SHA512 d0a3e7aaba13eb97a4b0e2356303c1db11825b97fa89a367b7c09f109eb602715692acf396efcc215f7d9207fc5b214922b326b25bd8c61bc92a39961ea89945
DIST chezmoi-2.20.0.tar.gz 2408118 BLAKE2B 1bd39893ad25fa2856d78fa34e27b37123d17de9b157ee13e9efef011b6d9f6c17011e31b9b3d79b4b6cadc5a6d9e392b82bb0e51d83017fa9e8c2f97be59fa3 SHA512 23dbcaf115de28a0078c7bddedca11198bec0f4a6dd7344c01046e3a27ef9904b0ff74b3c1988f471e7a2aab7f1c6e6bcaa64c5b469c9ed9844ca2bf66066d71

View File

@ -1,43 +0,0 @@
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module bash-completion-r1
DESCRIPTION="Manage your dotfiles across multiple machines, securely"
HOMEPAGE="https://chezmoi.io/"
SRC_URI="https://github.com/twpayne/chezmoi/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://github.com/ran-dall/portage-deps/raw/master/${P}-deps.tar.xz"
LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RESTRICT="mirror"
DEPEND="dev-vcs/git"
RDEPEND="${DEPEND}"
src_compile() {
go build -o ${PN} -v -work -x -ldflags \
"-X main.version=${PV} -X main.date=$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
|| die "compile failed"
}
src_test() {
go test -race -ldflags \
"-X github.com/twpayne/chezmoi/internal/chezmoitest.umaskStr=0o022" \
|| die "tests failed"
}
src_install() {
dobin ${PN}
newbashcomp completions/${PN}-completion.bash ${PN}
insinto /usr/share/fish/vendor_completions.d
doins completions/${PN}.fish
insinto /usr/share/zsh/site-functions
newins completions/${PN}.zsh _${PN}
}