summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2024-06-16 20:38:36 -0700
committerZac Medico <zmedico@gentoo.org>2024-06-16 20:49:22 -0700
commit3f870471609056385087e232637784123ede118d (patch)
treec1448d78df23fe3d34d07cd035c8f50cb6730137 /net-vpn
parentdev-python/autopep8: Bump to 2.3.0 (diff)
downloadgentoo-3f870471609056385087e232637784123ede118d.tar.gz
gentoo-3f870471609056385087e232637784123ede118d.tar.bz2
gentoo-3f870471609056385087e232637784123ede118d.zip
net-vpn/frp: drop 0.53.2-r1
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'net-vpn')
-rw-r--r--net-vpn/frp/Manifest2
-rw-r--r--net-vpn/frp/frp-0.53.2-r1.ebuild64
2 files changed, 0 insertions, 66 deletions
diff --git a/net-vpn/frp/Manifest b/net-vpn/frp/Manifest
index 88d4b6b6b30a..4594afdcab34 100644
--- a/net-vpn/frp/Manifest
+++ b/net-vpn/frp/Manifest
@@ -1,4 +1,2 @@
-DIST frp-0.53.2-deps.tar.xz 55621188 BLAKE2B 35e14b82bbc3a3386f2901a274969e7650cf6ce529ae17dd7ab0a7f759f355da7b7d64d0945e22d3a741d75ff3e21bd17ccf708d2184605c9303b35dc63f1b88 SHA512 c173d1d1918afc5549d99ac575eadd2b408220625c773ec5f5cce4e00a648c19d9a3cfbfce51a86e0e8425edb7a1a72a9d798a37f4bf37b38c0d4d031bc27dae
-DIST frp-0.53.2.tar.gz 1023383 BLAKE2B bad6aee65d5386ba14a0c4679514e17e1643b703292a4bb0811ff1f9a76b95833358993fdfb13b1e4224d7cf8c0035c2aabfdcd74a14003dff90c3e569fa5d12 SHA512 c1f0acff002dbdef001d04c3dcd5ca138c33a36b8e5ad119a555f0dd05f4e6200c915e1481eab58c02e650a058f0b3f75310b9a50ad4756087f69f9fe74377b4
DIST frp-0.56.0-deps.tar.xz 2890568 BLAKE2B cabeeba66d4fa94ff95637020178310c984b7e3254c756e75f0facc5bee0803c6ba485fa83e7c0f7c92474ce9d60621cd6a1608c3b631f2a9c27f6b6c9638ebe SHA512 0687db5001542780ac6e5c57d0da356f4c36bd31c96c2657a9e15988950436abedcd490d85cc272ff80f4868989d173a71dcf2cf28ed26f93b877d1650f04206
DIST frp-0.56.0.tar.gz 1080201 BLAKE2B 493e8b21aab6d5fae2d762eafba7d94de59394e9c4cb3c3dfce2bd8b5a0d0fcca6ef471917e8257022e079bececf34e910fe3b6bc845753862da59a1d00ca20c SHA512 883dce220aa78296f2b7eb9d64b3d1598bc2df436c52a48bc813d725a6f8fa43028359b0507bf4a586a29f4739310474047abfefd46249c0c9942990ceac0e2d
diff --git a/net-vpn/frp/frp-0.53.2-r1.ebuild b/net-vpn/frp/frp-0.53.2-r1.ebuild
deleted file mode 100644
index d8e7afbf47de..000000000000
--- a/net-vpn/frp/frp-0.53.2-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module systemd shell-completion
-
-DESCRIPTION="A reverse proxy that exposes a server behind a NAT or firewall to the internet"
-HOMEPAGE="https://github.com/fatedier/frp"
-SRC_URI="https://github.com/fatedier/frp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
- https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
-
-LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~loong ~riscv"
-IUSE="+client +server"
-REQUIRED_USE="|| ( client server )"
-
-src_compile() {
- mkdir -pv comp || die
-
- if use client; then
- ego build -trimpath -ldflags "-s -w" -tags frpc -o frpc ./cmd/frpc
- ./frpc completion bash > comp/frpc || die
- ./frpc completion fish > comp/frpc.fish || die
- ./frpc completion zsh > comp/_frpc || die
- fi
-
- if use server; then
- ego build -trimpath -ldflags "-s -w" -tags frps -o frps ./cmd/frps
- ./frps completion bash > comp/frps || die
- ./frps completion fish > comp/frps.fish || die
- ./frps completion zsh > comp/_frps || die
- fi
-}
-
-src_install() {
- _install() {
- # Install binary file
- dobin "${1}"
-
- # Install completion files
- dobashcomp "${S}/comp/${1}"
- dofishcomp "${S}/comp/${1}.fish"
- dozshcomp "${S}/comp/_${1}"
-
- # Install systemd services
- systemd_dounit "${FILESDIR}/${1}.service"
- systemd_newunit "${FILESDIR}/${1}_at_.service" "${1}@.service"
-
- # Install config files
- insinto "/etc/${PN}"
- newins "${S}/conf/${1}.toml" "${1}.toml.example"
- newins "${S}/conf/${1}_full_example.toml" "${1}_full.toml.example"
- }
-
- if use client; then
- _install frpc
- fi
-
- if use server; then
- _install frps
- fi
-}