update 2026-06-20 15:45:59

This commit is contained in:
action
2026-06-20 15:45:59 +08:00
parent f85f422a5a
commit 15a9db694a
3 changed files with 14 additions and 8 deletions
+9 -3
View File
@@ -5,10 +5,10 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=daed
PKG_VERSION:=2026.06.14
PKG_VERSION:=2026.06.19
DAED_VERSION:=daed-4d6a433
WING_VERSION:=wing-dc50308
CORE_VERSION:=core-5a51cc7
CORE_VERSION:=core-d636711
WING_HASH_SHORT:=$(shell echo $(WING_VERSION) | cut -d- -f2)
CORE_HASH_SHORT:=$(shell echo $(CORE_VERSION) | cut -d- -f2)
PKG_RELEASE:=1
@@ -106,14 +106,20 @@ define Build/Prepare
git clone https://github.com/daeuniverse/dae-wing $(PKG_BUILD_DIR) && \
git -C $(PKG_BUILD_DIR) checkout $(WING_HASH_SHORT) ; \
rm -rf $(PKG_BUILD_DIR)/dae-core ; \
git clone https://github.com/daeuniverse/dae $(PKG_BUILD_DIR)/dae-core && \
git clone https://github.com/olicesx/dae $(PKG_BUILD_DIR)/dae-core && \
git -C $(PKG_BUILD_DIR)/dae-core checkout $(CORE_HASH_SHORT) ; \
rm -rf $(DAED_BUILD_DIR)/outbound ; \
git clone --depth=1 -b perf/complete-optimizations https://github.com/olicesx/outbound.git $(DAED_BUILD_DIR)/outbound ; \
rm -rf $(DAED_BUILD_DIR)/quic-go ; \
git clone --depth=1 -b perf/node-pooling-v2 https://github.com/olicesx/quic-go.git $(DAED_BUILD_DIR)/quic-go ; \
pushd $(PKG_BUILD_DIR)/dae-core ; \
git submodule update --init ; \
go get -u=patch ; \
go mod tidy ; \
popd ; \
pushd $(PKG_BUILD_DIR) ; \
go mod edit -replace github.com/daeuniverse/outbound=../outbound ; \
go mod edit -replace github.com/daeuniverse/quic-go=../quic-go ; \
go get -u=patch ; \
go mod tidy ; \
wget -qO default.pgo "https://github.com/QiuSimons/luci-app-dae/raw/refs/heads/kix/dae/pprof/default.pgo" ; \