Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions net/snowflake/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=snowflake
PKG_VERSION:=2.13.1
PKG_VERSION:=2.14.1

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The runtime-test jobs fail on this bump because snowflake-broker and snowflake-probetest produce no version string:

snowflake-broker: [warn] Version check (/usr/bin/snowflake-broker)
  flag provided but not defined: -?
snowflake-broker: [skip] Version check override
snowflake-broker: No executables in the package provided version 2.14.1
snowflake-broker: Generic tests failed

Same for snowflake-probetest; -client, -proxy and -server all print 2.14.1 and pass. The five failing jobs (x86_64, aarch64_generic, i386_pentium-mmx, arm_cortex-a15_neon-vfpv4, mips_24kc) are exactly the ones that run the runtime tests — the build-only architectures are green, so this is not a build regression.

Worth a look before merge, since the 2.13.1 run in #29202 was green across the same matrix: either broker/probetest stopped emitting a version in 2.14.x, or the generic version test tightened since April. If it is the former (or if these two binaries simply never had a version flag), the feed's convention is to add a net/snowflake/test-version.sh that returns 0 for snowflake-broker and snowflake-probetest so the generic check is overridden for them, while the other three keep the real check. Your call on whether that belongs in this bump or a separate commit.


Generated by Claude Code

PKG_RELEASE:=1

PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL=https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
PKG_MIRROR_HASH:=a993a8fae3ce8ff545615c21f95e134c77b2904c2ff062bd33a9a4683810da18
PKG_MIRROR_HASH:=e6a0d04f1273cd58f67e6d95527cf5b33d56aecc3932044979c6f5666f2c02b7

PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE
Expand Down
Loading