commit: 37b70182a8fafeeab51281ffa7f57881d9e7fe84 Author: William Hubbs <williamh <AT> gentoo <DOT> org> AuthorDate: Tue Feb 25 20:06:24 2025 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Tue Feb 25 20:06:51 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37b70182
net-vpn/tailscale: add 1.80.2 Closes: https://bugs.gentoo.org/950272 Signed-off-by: William Hubbs <williamh <AT> gentoo.org> net-vpn/tailscale/Manifest | 2 + net-vpn/tailscale/tailscale-1.80.2.ebuild | 63 +++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) diff --git a/net-vpn/tailscale/Manifest b/net-vpn/tailscale/Manifest index f03f94008efa..8fc7326613b0 100644 --- a/net-vpn/tailscale/Manifest +++ b/net-vpn/tailscale/Manifest @@ -4,3 +4,5 @@ DIST tailscale-1.78.3-deps.tar.xz 265496184 BLAKE2B de585f36dfcb0cca5234df06b739 DIST tailscale-1.78.3.tar.gz 3378578 BLAKE2B d36d549875e2a20fcff0112636d0dce1a206c66e9f06498959072a4fb5f97bf3b63841f27ebe89aad14d403eb3ac0f3d3835da2d6a4c17dc4d2bfd369d868875 SHA512 555de6801c10cc3d5b61eae3bf01d14f9e7b80f39adc2ab35dc70adea11fecc396ade52423028d584d0a13cfac01f23aea39be641f63a6621bcc4ef11077391c DIST tailscale-1.80.1-deps.tar.xz 259376152 BLAKE2B 490864215ac90afc42471e42a17b50686a52db620d9a90ee6be59a4be816df6db74daa9e769e6bf9e02e11945737d9f7a4507b2d9307bbe52f55c48eda3d2e91 SHA512 9941b4c2b456529ffe87c42b8ca027827cc062b1e885c814530d33c16937bf64dba250195a43980ba5ad307c0b20116b050b4ce8415c26dfdbfa1d11910d3ec1 DIST tailscale-1.80.1.tar.gz 3528371 BLAKE2B 44a6c8bf3d8a87b21de962410ea2243d4f8c05c9aff36d65e15f33bab935b3ca1e2395ba06c7fc3e724fdc6e924a84e1be80e553a8a694f79d6a9e2c673b4f44 SHA512 e80c9528a0656f707eb48d7aad68e52ce22ee8421cdfb2d64975492b056654837e00cb1ef5d36a099ace2500c79995714346d8c92e8d25038f20d091fe0143ed +DIST tailscale-1.80.2-deps.tar.xz 259596316 BLAKE2B 678a3e4662e1912e609dcf5e5bfb99b494e78f03e6f42f5890bd95dd40392a91d1d707cf5f6cd53aea056b4e0db93fe07698320e735f0d634848ab7bd44f83ab SHA512 d39d0dc5c7edcb09b319923dc5d7471cf8964830e1b0c3e5f6e30402f8f5038a1ffcf504b7c8b895ddb2be09f2b03f65a220c7488a13796d658953c831274294 +DIST tailscale-1.80.2.tar.gz 3528364 BLAKE2B fa1431b01eb5f9b3e5f4b158d60c5ce51a782269dc56332b5244cb4a04c19f73b2c89fbac44d995a623e0bdc578780b359de23175675919257dd5a973352d2cb SHA512 feb9e61ffe6726c1b6e0529660e484edd4e40c5be2fa841682f8522ba1594886a5c12ca88754a048ae9b9cf04fc0c877406f1fb804a99151fa853eaba4ba8339 diff --git a/net-vpn/tailscale/tailscale-1.80.2.ebuild b/net-vpn/tailscale/tailscale-1.80.2.ebuild new file mode 100644 index 000000000000..27f1f7db436e --- /dev/null +++ b/net-vpn/tailscale/tailscale-1.80.2.ebuild @@ -0,0 +1,63 @@ +# Copyright 2020-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module linux-info systemd tmpfiles + +# These settings are obtained by running ./build_dist.sh shellvars` in +# the upstream repo. +# They should be updated on every bump. +VERSION_MINOR="80" +VERSION_SHORT="1.80.2" +VERSION_LONG="1.80.2-tc7a79d7ba" +VERSION_GIT_HASH="c7a79d7bae40495113f888110857eba411779ef6" + +DESCRIPTION="Tailscale vpn client" +HOMEPAGE="https://tailscale.com" +SRC_URI="https://github.com/tailscale/tailscale/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + +CONFIG_CHECK="~TUN" + +RDEPEND="|| ( net-firewall/iptables net-firewall/nftables )" +BDEPEND=">=dev-lang/go-1.22" + +RESTRICT="test" + +# This translates the build command from upstream's build_dist.sh to an +# ebuild equivalent. +build_dist() { + ego build -tags xversion -ldflags " + -X tailscale.com/version.longStamp=${VERSION_LONG} + -X tailscale.com/version.shortStamp=${VERSION_SHORT} + -X tailscale.com/version.gitCommitStamp=${VERSION_GIT_HASH}" "$@" +} + +src_compile() { + build_dist ./cmd/tailscale + build_dist ./cmd/tailscaled +} + +src_install() { + dosbin tailscaled + dobin tailscale + + systemd_dounit cmd/tailscaled/tailscaled.service + insinto /etc/default + newins cmd/tailscaled/tailscaled.defaults tailscaled + keepdir /var/lib/${PN} + fperms 0750 /var/lib/${PN} + + newtmpfiles "${FILESDIR}/${PN}.tmpfiles" ${PN}.conf + + newinitd "${FILESDIR}/${PN}d.initd" ${PN} + newconfd "${FILESDIR}/${PN}d.confd" ${PN} +} + +pkg_postinst() { + tmpfiles_process ${PN}.conf +}