diff --git a/net-proxy/sing-box/Manifest b/net-proxy/sing-box/Manifest index 1aecd77..cefbd00 100644 --- a/net-proxy/sing-box/Manifest +++ b/net-proxy/sing-box/Manifest @@ -1,3 +1,3 @@ -DIST sing-box-1.10.0_beta11-deps.tar.xz 218913604 BLAKE2B 1fd22a400ddc50aff487ae9d6fcd0bc3a328eca6ef63165d03f3172ab7df0d43ea8b3a5a08816be57b417f6fdbd4e8b278f139216ff114b6616f81320ea425d5 SHA512 6bae23a0a40ae8097124cec0131ed6b1729c414dd56025ff39b40a375836f585d42c1e5ebe955dda7eb610aa89841fc83593de0e6175d512fa37438d4d4fb706 -DIST sing-box-1.10.0_beta11-vendor.tar.xz 5359804 BLAKE2B c1bf03aaf893261390b41d89b1b943248226e5708f39d093a08b4ae241e42c790e397fcf6d672d06acadb1f3b33b13062df63a041d78285e61d1992b26833958 SHA512 4db526344f0ca3601727f70ebf8824925da7f2d5138672d0395e2a9f5c098192422529ce4e8512cb77d7e29926653d58871cefccb84c0d746a89d37569395e87 -DIST sing-box-1.10.0_beta11.tar.gz 393638 BLAKE2B c1c66af1a17bf8d724fcc0ed3c31551df002aeadc034f00b2266983aa72830087a3e76ed460e80d706b544be71abde809d185bd4d02fb5ea6115292415a5e27a SHA512 46f6c2e5651e00922581fd41a95c8023c70c9e8fb3c907fa7f2721a511169169c1b8023473704725fb9fc65b80949e3d93190896f5621406fa2ab185a54ad5c0 +DIST sing-box-1.10.0_beta12-deps.tar.xz 218928940 BLAKE2B 0ed2c5d19b740f7f8b80099b128c23ad42e40dd65b09ec78c3830ae5da23e732b36f0980392c662f924325e1f419dde2a529360e869954fba3c39766b8f2ae47 SHA512 3e9841e3d0e67e0c1ac4b2ed8ff20df9961445dfa834a284e7702453cab943a6635d804c460673273ee4dd1ec3ba5cc1a1759c8b26b3f64413d5e4f45de89fa3 +DIST sing-box-1.10.0_beta12-vendor.tar.xz 5356688 BLAKE2B e72d721f3780a7a29d44d11f7d9240ead9e8a4452097efdab8e55492af8dffa3bc6f7535c8a961caa86175f633ecca80f5c11a428bf0f0413ffa161f02b94d7f SHA512 50994289c0e2754ac47d427eb9e997b62571f753f6240b01c0968083dbbe8bba64af50352eb8fb635788384154bffac7fc5da7a6e9dce06a27db9b341a761786 +DIST sing-box-1.10.0_beta12.tar.gz 404629 BLAKE2B 9668b5dbf8f3855f8399e09d779d7dfc450bcae0476f7ecc4acc137b02119dc9d3e525607061274265558b8e97d624aef7e34c4d069008a6d0e29e2a9960fb7c SHA512 2e54b14ccea49ff5db5967445ca95d848f6463fe0c0247b51effa5f1ef5a6e1388d9e43de228d795d33db8711d9a48f0ed9bd7bfb70509146599dea6bd361dc6 diff --git a/net-proxy/sing-box/sing-box-1.10.0_beta11.ebuild b/net-proxy/sing-box/sing-box-1.10.0_beta12.ebuild similarity index 64% rename from net-proxy/sing-box/sing-box-1.10.0_beta11.ebuild rename to net-proxy/sing-box/sing-box-1.10.0_beta12.ebuild index 58a595d..5dcba14 100644 --- a/net-proxy/sing-box/sing-box-1.10.0_beta11.ebuild +++ b/net-proxy/sing-box/sing-box-1.10.0_beta12.ebuild @@ -34,22 +34,22 @@ BDEPEND=" " src_compile() { - TAGS="" - if use quic; then TAGS+="with_quic,"; fi - if use grpc; then TAGS+="with_grpc,"; fi - if use dhcp; then TAGS+="with_dhcp,"; fi - if use wireguard; then TAGS+="with_wireguard,"; fi - if use ech; then TAGS+="with_ech,"; fi - if use utls; then TAGS+="with_utls,"; fi - if use reality; then TAGS+="with_reality_server,"; fi - if use acme; then TAGS+="with_acme,"; fi - if use clash-api; then TAGS+="with_clash_api,"; fi - if use v2ray-api; then TAGS+="with_v2ray_api,"; fi - if use gvisor; then TAGS+="with_gvisor,"; fi - if use tor; then TAGS+="with_embedded_tor,"; fi - TAGS="${TAGS%,}" + _TAGS="" + if use quic; then _TAGS+="with_quic,"; fi + if use grpc; then _TAGS+="with_grpc,"; fi + if use dhcp; then _TAGS+="with_dhcp,"; fi + if use wireguard; then _TAGS+="with_wireguard,"; fi + if use ech; then _TAGS+="with_ech,"; fi + if use utls; then _TAGS+="with_utls,"; fi + if use reality; then _TAGS+="with_reality_server,"; fi + if use acme; then _TAGS+="with_acme,"; fi + if use clash-api; then _TAGS+="with_clash_api,"; fi + if use v2ray-api; then _TAGS+="with_v2ray_api,"; fi + if use gvisor; then _TAGS+="with_gvisor,"; fi + if use tor; then _TAGS+="with_embedded_tor,"; fi + _TAGS="${_TAGS%,}" - ego build -o sing-box -trimpath -tags "${TAGS}" \ + ego build -o sing-box -trimpath -tags "${_TAGS}" \ -ldflags "-s -w -X 'github.com/sagernet/sing-box/constant.Version=${PV}'" \ ./cmd/sing-box }