public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrew Ammerlaan" <andrewammerlaan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: net-p2p/yggdrasil-go/
Date: Wed, 14 Feb 2024 16:01:57 +0000 (UTC)	[thread overview]
Message-ID: <1707845717.01ac4f01b901583dd894edf62e50b48e6344de7e.andrewammerlaan@gentoo> (raw)

commit:     01ac4f01b901583dd894edf62e50b48e6344de7e
Author:     Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
AuthorDate: Tue Feb 13 17:34:46 2024 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Feb 13 17:35:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=01ac4f01

net-p2p/yggdrasil-go: add 0.5.5

Signed-off-by: Eric Joldasov <bratishkaerik <AT> getgoogleoff.me>

 net-p2p/yggdrasil-go/Manifest                  |  2 +
 net-p2p/yggdrasil-go/yggdrasil-go-0.5.5.ebuild | 59 ++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/net-p2p/yggdrasil-go/Manifest b/net-p2p/yggdrasil-go/Manifest
index 6cd81246b1..41da47e2ac 100644
--- a/net-p2p/yggdrasil-go/Manifest
+++ b/net-p2p/yggdrasil-go/Manifest
@@ -1,2 +1,4 @@
 DIST yggdrasil-go-0.5.4-vendor.tar.xz 1443664 BLAKE2B 7bd24e3b3701527f44ecff01f8ad596c273651b4a2d4d3ae51bf8ed5393a9b7e325e9a8777014b6abf55f7d51c9be674b043e3088c6bb9b32976e6c5831d914b SHA512 aaa76105ff408e465bee2c3272fcf33a8280db7ee30aa14d469671eea28b1b1dbc0b1beb8bf17aaf3bf78e24d794dbe4e95b653d0835fb66fedfbb626ea12aa0
 DIST yggdrasil-go-0.5.4.tar.gz 104902 BLAKE2B c7a0836b22a71f091a2a245072f3468f12e74dd4397843cc71550a1d2328887aeb0cc1bc024a38f73c6a0bbe7cf6fb65c1a05fe7e71851a73b1042a4de14db2a SHA512 1fcdd321faff15e29ec12d61690a5cfd38737b19dc259159ef7342dfd37b76fad3f7601495ae32ecd18239c166bcea1c3ae9d6bcff4a2e402265a120e2986e89
+DIST yggdrasil-go-0.5.5-vendor.tar.xz 1443888 BLAKE2B 712bcb42a38b10c950ac8c6ce9301dbbaf4a77026bcc2c6d78321c7423ef3dc0fcba5bf94c0cd674af3e911eda476ae8c7d7bb7c782328c5201e91efe2958d1d SHA512 10be1cd6dd5b4fb11b70c48e9cdeb26f4534424dbb0dcd93d0a3d8de3b63d0849dcc55b3394ba3ab74c19e15592d26c2be7e9f4e89a8dccb6c17da572907b5ba
+DIST yggdrasil-go-0.5.5.tar.gz 105482 BLAKE2B 7afbde70e2aec71f47ba32730611d22b87fa23ff4d488a33ca82124cb4ec211c654e780b3c8c703100eb065c05c54561ca36136765050c96e297f30a5656bc61 SHA512 13ee5c719335d7a599019d004cd8d82883c7a2beb707de968a0934982364a0f70982f14157bd9aaabda9595f194594901a9158cfeb272491a71b5392abd79dc4

diff --git a/net-p2p/yggdrasil-go/yggdrasil-go-0.5.5.ebuild b/net-p2p/yggdrasil-go/yggdrasil-go-0.5.5.ebuild
new file mode 100644
index 0000000000..3df03c90dc
--- /dev/null
+++ b/net-p2p/yggdrasil-go/yggdrasil-go-0.5.5.ebuild
@@ -0,0 +1,59 @@
+# 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/${P}/vendor.tar.xz -> ${P}-vendor.tar.xz
+"
+
+LICENSE="LGPL-3 MIT Apache-2.0 BSD ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="mirror"
+
+DEPEND="
+	acct-user/yggdrasil
+	acct-group/yggdrasil
+"
+
+BDEPEND=">=dev-lang/go-1.20.0"
+
+FILECAPS=(
+	cap_net_admin,cap_net_bind_service "usr/bin/yggdrasil"
+)
+
+CONFIG_CHECK="~TUN"
+ERROR_TUN="Your kernel lacks TUN support."
+
+src_compile() {
+	local ver_config="github.com/yggdrasil-network/yggdrasil-go/src/version"
+
+	local version_disable_detect_flags="-X ${ver_config}.buildName=${PN}"
+	version_disable_detect_flags+=" -X ${ver_config}.buildVersion=v${PV}"
+
+	GOFLAGS+=" -mod=vendor -trimpath"
+
+	local GO_LDFLAGS
+	GO_LDFLAGS="-s -linkmode external -extldflags \"${LDFLAGS}\" ${version_disable_detect_flags}"
+
+	local cmd
+	for cmd in yggdrasil{,ctl}; do
+		ego build ${GOFLAGS} "-ldflags=${GO_LDFLAGS}" ./cmd/"${cmd}"
+	done
+}
+
+src_install() {
+	dobin yggdrasil{,ctl}
+	dodoc README.md
+	dodoc CHANGELOG.md
+
+	systemd_dounit "contrib/systemd/yggdrasil.service"
+	systemd_dounit "contrib/systemd/yggdrasil-default-config.service"
+	doinitd "contrib/openrc/yggdrasil"
+}


             reply	other threads:[~2024-02-14 16:02 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-14 16:01 Andrew Ammerlaan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-10 20:34 [gentoo-commits] repo/proj/guru:master commit in: net-p2p/yggdrasil-go/ Lucio Sauer
2024-08-10 20:34 Lucio Sauer
2024-08-01 21:51 Lucio Sauer
2024-07-31 22:49 Lucio Sauer
2024-04-08 21:32 Julien Roy
2024-02-20  8:48 Haelwenn Monnier
2024-02-14 16:01 Andrew Ammerlaan
2023-11-30 10:44 Andrew Ammerlaan
2023-11-18  9:53 Andrew Ammerlaan
2023-11-10 20:18 David Roman
2023-11-01 23:27 Haelwenn Monnier
2022-12-07 19:50 Ronny Gutbrod
2022-11-16 10:19 Florian Schmaus
2022-11-16 10:19 Florian Schmaus
2022-10-29  5:54 Arthur Zamarin
2022-08-11 13:45 Andrew Ammerlaan
2022-08-11 13:45 Andrew Ammerlaan
2022-07-11  6:54 Andrew Ammerlaan
2021-09-25 17:14 Arthur Zamarin
2021-09-25 17:14 Arthur Zamarin
2020-12-27 12:48 Andrew Ammerlaan
2020-04-27  7:02 Andrew Ammerlaan
2020-04-03 21:37 Haelwenn Monnier
2020-03-24 16:37 Michał Górny
2020-03-15 20:21 Andrew Ammerlaan
2020-03-15 20:20 Andrew Ammerlaan

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=1707845717.01ac4f01b901583dd894edf62e50b48e6344de7e.andrewammerlaan@gentoo \
    --to=andrewammerlaan@gentoo.org \
    --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