diff --git a/netty.spec b/netty.spec index 7b318c76cf2c17fc6255c8735aa771ac621cf17b..8f01c1150df06d33902e75e8848197edb28dbbb7 100644 --- a/netty.spec +++ b/netty.spec @@ -2,7 +2,7 @@ Name: netty Version: 4.1.126 -Release: 1 +Release: 2 Summary: An asynchronous event-driven network application framework and tools for Java License: Apache-2.0 URL: https://netty.io/ @@ -211,6 +211,9 @@ export CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_LD_FLAGS" %files help -f .mfiles-javadoc %changelog +* Tue Sep 23 2025 chengsongyuxuan - 4.1.126-2 +- Fix AR parameter order issue + * Thu Sep 18 2025 yaoxin <1024769339@qq.com> - 4.1.126-1 - Update to 4.1.126 for fix CVE-2025-58056 and CVE-2025-58057 diff --git a/reproducible.patch b/reproducible.patch index 516a40be3a2f1305e8578e7b2d1a45ca603d4307..b45a33326fac5dab3107e6a17f79d30c263bcbfc 100644 --- a/reproducible.patch +++ b/reproducible.patch @@ -7,7 +7,7 @@ Index: netty-netty-4.1.108.Final/transport-native-unix-common/Makefile $(LIB): $(OBJS) mkdir -p $(LIB_DIR) - $(AR) rcs $(LIB) $^ -+ $(AR) -D rcs $(LIB) $^ ++ $(AR) rcs -D $(LIB) $^ $(OBJ_DIR)/%.o: $(SRC_DIR)/%.c mkdir -p $(OBJ_DIR)