Compare commits

..

12 commits

Author SHA1 Message Date
Alejandro Sáez
45f2073d14 rebuild 2025-10-10 15:13:06 +02:00
Maxwell G
f54a4e37b3 Rebuild for golang-1.25.0 2025-08-15 18:41:28 -05:00
Fedora Release Engineering
b7365eb75d Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 19:04:32 +00:00
Jonathan Wright
4f7cd87281 update to 1.84.1 2025-06-05 11:50:55 -05:00
Jonathan Wright
d01d30edd8 update to 1.84.1
improve license resolution script
2025-06-05 11:49:23 -05:00
Jonathan Wright
0e33d29ca9 update to 1.78.3 rhbz#2330707 2025-01-16 13:02:04 -06:00
Jonathan Wright
2286a74b5d update to 1.76.6 2024-11-11 09:08:00 -06:00
Jonathan Wright
29f3356099 update to 1.70.0 2024-07-19 09:29:58 -05:00
Jonathan Wright
459bf96fc3 update changelog/release 2024-07-04 23:06:04 -05:00
Jonathan Wright
82f92f4176 fix issue in service file with empty var 2024-07-04 23:03:32 -05:00
Jonathan Wright
c7ad009242 update to 1.68.2 2024-07-04 22:36:35 -05:00
Jonathan Wright
8289a76687 update to 1.68.1 2024-07-01 16:25:59 -05:00
5 changed files with 379 additions and 254 deletions

6
.gitignore vendored
View file

@ -1 +1,7 @@
/tailscale-1.58.2-vendored.tar.xz
/tailscale-1.68.1-vendored.tar.xz
/tailscale-1.68.2-vendored.tar.xz
/tailscale-1.70.0-vendored.tar.xz
/tailscale-1.76.6-vendored.tar.xz
/tailscale-1.78.3-vendored.tar.xz
/tailscale-1.84.1-vendored.tar.xz

View file

@ -70,15 +70,32 @@ if $do_license; then
VERSION=$(echo -n $dep | awk -F ';' '{ printf "%s", $2 }')
VERSION_SPEC=$(echo $VERSION | sed 's/-/~/g')
CURL_OUT=$(curl -s https://api.deps.dev/v3/systems/go/packages/$GO_MOD_PATH_URLENCODE/versions/$VERSION)
LICENSES=$(echo -n $CURL_OUT | jq -r '.licenses | join(" OR ")')
LICENSES=$(echo -n $CURL_OUT | jq -r '.licenses | join(" OR ")' 2> /dev/null)
if [ ! -z "$LICENSES" ]; then
if echo "$LICENSES" | grep -q " OR "; then
LICENSE_ASSOC_ARR["($LICENSES)"]=1
else
LICENSE_ASSOC_ARR["$LICENSES"]=1
fi
fi
echo "# $LICENSES"
else
# if we couldn't match a license on the exact version, try the default version
CURL_OUT=$(curl -s https://api.deps.dev/v3/systems/go/packages/$GO_MOD_PATH_URLENCODE)
DEFAULT_VERSION=$(echo -n $CURL_OUT | jq -r '.versions.[] | select(.isDefault==true) | .versionKey.version' 2> /dev/null)
CURL_OUT=$(curl -s https://api.deps.dev/v3/systems/go/packages/$GO_MOD_PATH_URLENCODE/versions/$DEFAULT_VERSION)
LICENSES_2ND=$(echo -n $CURL_OUT | jq -r '.licenses | join(" OR ")' 2> /dev/null)
if [ ! -z "$LICENSES_2ND" ]; then
if echo "$LICENSES_2ND" | grep -q " OR "; then
LICENSE_ASSOC_ARR["($LICENSES_2ND)"]=1
else
LICENSE_ASSOC_ARR["$LICENSES_2ND"]=1
fi
fi
fi
if [ ! -z "$LICENSES" ]; then
echo "# $LICENSES"
else
echo "# $LICENSES_2ND"
fi
echo "Provides: bundled(golang($GO_MOD_PATH)) = $VERSION_SPEC"
done

View file

@ -1 +1 @@
SHA512 (tailscale-1.58.2-vendored.tar.xz) = 63075ba2b109f6da971db979036c696693b7d687653566dff02caf97b2d40fe85765ec6300305273b3936a0380543bb32f7970c24aa978b26855d2f148c12ea7
SHA512 (tailscale-1.84.1-vendored.tar.xz) = 0912fd37889b268ef65cf8fa16ca21503697bf74ed7fb3923aa926a80fab1ce80516344328fcf52cbe8fe113f5ec0a2f87d12afecfe27b82e759f491303f7f10

File diff suppressed because it is too large Load diff

View file

@ -10,9 +10,7 @@ After=network-pre.target NetworkManager.service systemd-resolved.service
# but you might want to configure this in order to set external firewall
# settings.
Environment="PORT=41641"
# Extra flags you might want to pass to tailscaled.
Environment="FLAGS=''"
ExecStart=/usr/bin/tailscaled --state=/var/lib/tailscale/tailscaled.state --socket=/run/tailscale/tailscaled.sock --port=${PORT} $FLAGS
ExecStart=/usr/bin/tailscaled --state=/var/lib/tailscale/tailscaled.state --socket=/run/tailscale/tailscaled.sock --port=${PORT}
ExecStopPost=/usr/bin/tailscaled --cleanup
Restart=on-failure