commit: 50c4b5d242021de398cd1b6dec4e44cbc97bdef5 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Tue Oct 1 17:56:46 2024 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Tue Oct 1 17:57:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c4b5d2
net-misc/croc: drop old 10.0.11 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> net-misc/croc/Manifest | 2 -- net-misc/croc/croc-10.0.11.ebuild | 47 --------------------------------------- 2 files changed, 49 deletions(-) diff --git a/net-misc/croc/Manifest b/net-misc/croc/Manifest index 3c0b4b830c7a..e144f0e890b5 100644 --- a/net-misc/croc/Manifest +++ b/net-misc/croc/Manifest @@ -1,5 +1,3 @@ -DIST croc-10.0.11-deps.tar.xz 41579476 BLAKE2B 2323f1886cb8c4c6f11d406f97ff420c38af185e65572e2c9e37d3095eee1909253c73aec1bcc9015c87b06648e9a1f5ea5818492c3f1c96962944175c5f89db SHA512 5fe825a66ce745eff41c77643c594ad3406d25e8079405b34110d96dc33ac015dd68528071d8354bb44fdf68247915365f530ccc10743d014e4d6bf96d1803b9 -DIST croc-10.0.11.tar.gz 575860 BLAKE2B cd0c43adcf509edb009a28ba7bfc871a6280e8ce4d4f529502ee2ff1547e957e551ea8184ff24c1097050cc7fd449f399b2849c4803b27d82b5b1e72bde5c9f1 SHA512 1cdfc5823e29406ec92ad4b24526e30032b89787d77382a0179c558cb2f0dd99556d93c7523ebfbb1dd4cac15ec596b3ddd0ce58ac5b9491f34b94436a20fbef DIST croc-10.0.12-deps.tar.xz 41942616 BLAKE2B f49a250965dbb94cc8b4282912b4b557457e0f90bc018dde1fe73d78d425689fbcd7554adf9995e8be12f371c6775db7858c3da67bade31e04335b240da969d4 SHA512 f0d34c1b5770ca744243d7f5c2abfec6baba51de503c0e1bff3d2c6082521596391728597edd90b33691e53a3e3449ffcbea39e60294688934e7f3098c0d2ce2 DIST croc-10.0.12.tar.gz 576733 BLAKE2B 31ba26c69eed23685ee7bc9512549b8b0b2f5194177f11b3ad0ed94b432e2a122811ac436ae0c1280a6715c06624988f0138a9f63a6e22522d30dd8d62d27f04 SHA512 4f012c9a9749e26afc5823b38223a2ca22d50b9aa2f6cf68733847c00a7331eec0330109d8837facaed77d11fa8e2ac9e96ddd2d22962d209b62de499df31b27 DIST croc-10.0.13-deps.tar.xz 17631568 BLAKE2B b4b0a511f6f8b2d53421adbe34af5f427b92c151c82b8bd4e7ac320641cf38302d83cefc342a57f137f25602ca04806eaebc2807a5f18b5ef881c538d45c2df6 SHA512 ab03fe21400ebd9ff42923be2c76a2e10d3388d0f05815b5edccfc8165529a1cbd3afffffcaa32f7243bbdc80efce78321faf6aae109423c055512ba18fa15f6 diff --git a/net-misc/croc/croc-10.0.11.ebuild b/net-misc/croc/croc-10.0.11.ebuild deleted file mode 100644 index edfe827fbac5..000000000000 --- a/net-misc/croc/croc-10.0.11.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 2023-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 go-module systemd - -DESCRIPTION="Easily and securely send things from one computer to another" -HOMEPAGE="https://github.com/schollz/croc" -SRC_URI="https://github.com/schollz/croc/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz -https://dev.gentoo.org/~xgqt/distfiles/deps/${P}-deps.tar.xz -" - -LICENSE="Apache-2.0 BSD BSD-2 MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~riscv ~x86" - -RDEPEND=" - acct-group/croc - acct-user/croc -" - -DOCS=( README.md ) - -src_prepare() { - default - # Replace User=nobody with User=croc - sed -i -e "s|\(^User=\).*|\1croc|g" croc.service || die - # Rename bash completion function - sed -i -e "s|_cli_bash_autocomplete|_croc|g" \ - src/install/bash_autocomplete || die -} - -src_compile() { - ego build -} - -src_install() { - dobin croc - systemd_dounit croc.service - newbashcomp src/install/bash_autocomplete croc - einstalldocs -} - -src_test() { - ego test -skip "Test(Comm|Send|PublicIP|LocalIP)" -work ./... -}