From: "Eric Joldasov" <bratishkaerik@getgoogleoff.me>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/yggdrasil-go/
Date: Mon, 28 Oct 2024 22:48:26 +0000 (UTC) [thread overview]
Message-ID: <1730155692.df11c5450df888dd49bd4053f35a777848de72d0.bratishkaerik@gentoo> (raw)
commit: df11c5450df888dd49bd4053f35a777848de72d0
Author: Eric Joldasov <bratishkaerik <AT> landless-city <DOT> net>
AuthorDate: Mon Oct 28 22:48:12 2024 +0000
Commit: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
CommitDate: Mon Oct 28 22:48:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=df11c545
net-p2p/yggdrasil-go: drop 0.5.7
Signed-off-by: Eric Joldasov <bratishkaerik <AT> landless-city.net>
net-p2p/yggdrasil-go/Manifest | 2 -
net-p2p/yggdrasil-go/yggdrasil-go-0.5.7.ebuild | 60 --------------------------
2 files changed, 62 deletions(-)
diff --git a/net-p2p/yggdrasil-go/Manifest b/net-p2p/yggdrasil-go/Manifest
index 226ea99d6..2fae92444 100644
--- a/net-p2p/yggdrasil-go/Manifest
+++ b/net-p2p/yggdrasil-go/Manifest
@@ -1,4 +1,2 @@
-DIST yggdrasil-go-0.5.7-vendor.tar.xz 1474632 BLAKE2B c10f72f6bc94f07a51af70e55ce693ad140b4b4a1e9a7336bd80e46d6aca759f69c3d339a883732371dc4862e2da6bc4618ba046afe1a1c2efd72b2f5859482d SHA512 64ab1b29686d2c555c7f4fc8a20ea1b4bb40f05e795b010c5536cee5173647c2bcd4fff3b03ff0d8e196b33ffb814a60bdbf7d315fda7d986fdaaa6255d356cb
-DIST yggdrasil-go-0.5.7.tar.gz 107794 BLAKE2B 2baf4689e1ec70362c292a62b67dc944880f6e2ece4f35725b665dc11341c9ccce93433dd085bd41351dd11562c93fd070001b1c83f6b626a5d0606c9ab8c61f SHA512 aeb6668a30043ed1ae695702d21a51faa4acd1dc4c93cbafaf5afd902fdca9a8196ed6e0e2e05b63eba4ea64906b6e43680c79a19f97be8837aa61f161fb48fa
DIST yggdrasil-go-0.5.9-vendor.tar.xz 1396864 BLAKE2B 41e6e0b2f79eca45d59f959385e32ca1059f96c292acfc97b65894b5ac304ddea99b5bf670f27c0431d079beb408ce41bc9a7bbce8591e69a202134e36b51dc0 SHA512 bcb2085845d851e47b566fb7eea77bacd315f2efc22dfc814624793404034f942e180441f42133eeceda6b9f6ba71654df47437c04aba9f25175bc3d88c72b67
DIST yggdrasil-go-0.5.9.tar.gz 109883 BLAKE2B 2a210f5b6d51703e184f7ba48d33cc301c3dc392daf79ef56a42481c46b4d45c996d2c292f685e38bac832efae44dfab4d21a789f259f6c4a4b455850df82793 SHA512 88fb5d6303b1b4a2a611131f939560d08f9d83f3516bf8d1aec041b03cca5e7711e9e989ff14d6f4588e76898b61b3ad51e9f9701837a0bd2235cdaf60e95bb8
diff --git a/net-p2p/yggdrasil-go/yggdrasil-go-0.5.7.ebuild b/net-p2p/yggdrasil-go/yggdrasil-go-0.5.7.ebuild
deleted file mode 100644
index 608bc194f..000000000
--- a/net-p2p/yggdrasil-go/yggdrasil-go-0.5.7.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps go-module linux-info systemd
-
-DESCRIPTION="An experiment in scalable routing as an encrypted IPv6 overlay network"
-HOMEPAGE="https://yggdrasil-network.github.io/"
-SRC_URI="
- https://github.com/yggdrasil-network/yggdrasil-go/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
- https://codeberg.org/BratishkaErik/distfiles/releases/download/yggdrasil-go-${PV}/yggdrasil-go-${PV}-vendor.tar.xz
-"
-
-LICENSE="LGPL-3 MIT Apache-2.0 BSD ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-RESTRICT="mirror"
-
-DEPEND="
- acct-user/yggdrasil
- acct-group/yggdrasil
-"
-
-BDEPEND=">=dev-lang/go-1.21"
-
-DOCS=( README.md CHANGELOG.md )
-
-FILECAPS=(
- cap_net_admin,cap_net_bind_service "usr/bin/yggdrasil"
-)
-
-CONFIG_CHECK="~TUN"
-ERROR_TUN="Your kernel lacks TUN support."
-
-src_compile() {
- GOFLAGS+=" -mod=vendor -trimpath"
-
- local ver_config="github.com/yggdrasil-network/yggdrasil-go/src/version"
-
- local custom_name_version_flags="-X ${ver_config}.buildName=${PN}"
- custom_name_version_flags+=" -X ${ver_config}.buildVersion=git-${EGIT_VERSION}"
-
- local GO_LDFLAGS
- GO_LDFLAGS="-s -linkmode external -extldflags \"${LDFLAGS}\" ${custom_name_version_flags}"
-
- local cmd
- for cmd in yggdrasil{,ctl}; do
- ego build ${GOFLAGS} "-ldflags=${GO_LDFLAGS}" ./cmd/"${cmd}"
- done
-}
-
-src_install() {
- dobin yggdrasil{,ctl}
- einstalldocs
-
- systemd_dounit "contrib/systemd/yggdrasil.service"
- systemd_dounit "contrib/systemd/yggdrasil-default-config.service"
- doinitd "contrib/openrc/yggdrasil"
-}
next reply other threads:[~2024-10-28 22:48 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-28 22:48 Eric Joldasov [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-06-03 14:56 [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/yggdrasil-go/ Sergey Alirzaev
2025-02-06 10:29 Eric Joldasov
2025-02-05 6:14 Eric Joldasov
2025-02-05 6:14 Eric Joldasov
2024-11-28 18:32 Eric Joldasov
2024-10-28 22:48 Eric Joldasov
2024-10-28 22:48 Eric Joldasov
2024-08-10 12:57 Eric Joldasov
2024-08-10 12:57 Eric Joldasov
2024-08-01 19:19 Eric Joldasov
2024-07-31 19:59 Eric Joldasov
2024-04-08 13:15 David Roman
2024-02-20 5:28 Eric Joldasov
2024-02-14 3:52 Eric Joldasov
2024-02-13 17:35 Eric Joldasov
2023-12-04 14:35 Eric Joldasov
2023-11-29 14:11 Eric Joldasov
2023-11-17 15:32 Eric Joldasov
2023-11-09 17:11 Eric Joldasov
2023-11-01 18:47 Eric Joldasov
2022-12-07 2:38 Eric Joldasov
2022-11-13 13:03 Eric Joldasov
2022-11-13 13:03 Eric Joldasov
2022-11-06 3:29 Eric Joldasov
2022-10-27 12:55 Eric Joldasov
2022-10-21 13:28 Eric Joldasov
2022-08-09 20:26 Eric Joldasov
2022-08-09 19:52 Eric Joldasov
2022-07-10 9:42 Eric Joldasov
2022-03-26 15:28 Eric Joldasov
2022-03-26 15:17 Eric Joldasov
2022-03-26 15:17 Eric Joldasov
2021-09-25 17:14 [gentoo-commits] repo/proj/guru:master " Arthur Zamarin
2021-09-25 16:59 ` [gentoo-commits] repo/proj/guru:dev " Arthur Zamarin
2021-09-25 4:55 Leonardo Hernandez
2020-12-26 22:11 Theo Anderson
2020-04-26 22:39 Alessandro Barbieri
2020-04-02 14:17 William Wennerström
2020-03-19 11:19 William Wennerström
2020-03-15 18:50 William Wennerström
2020-03-15 18:38 William Wennerström
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=1730155692.df11c5450df888dd49bd4053f35a777848de72d0.bratishkaerik@gentoo \
--to=bratishkaerik@getgoogleoff.me \
--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