Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mcstrans for openSUSE:Factory checked in at 2025-07-21 20:00:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mcstrans (Old) and /work/SRC/openSUSE:Factory/.mcstrans.new.8875 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mcstrans" Mon Jul 21 20:00:52 2025 rev:38 rq:1294758 version:3.9 Changes: -------- --- /work/SRC/openSUSE:Factory/mcstrans/mcstrans.changes 2025-03-24 13:32:33.828604990 +0100 +++ /work/SRC/openSUSE:Factory/.mcstrans.new.8875/mcstrans.changes 2025-07-21 20:02:02.839447846 +0200 @@ -1,0 +2,5 @@ +Thu Jul 17 15:50:50 UTC 2025 - Johannes Segitz <jseg...@suse.com> + +- Update to version 3.9. No user visible changes + +------------------------------------------------------------------- Old: ---- mcstrans-3.8.1.tar.gz mcstrans-3.8.1.tar.gz.asc New: ---- mcstrans-3.9.tar.gz mcstrans-3.9.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mcstrans.spec ++++++ --- /var/tmp/diff_new_pack.fPnHoc/_old 2025-07-21 20:02:03.551477477 +0200 +++ /var/tmp/diff_new_pack.fPnHoc/_new 2025-07-21 20:02:03.551477477 +0200 @@ -17,7 +17,7 @@ Name: mcstrans -Version: 3.8.1 +Version: 3.9 Release: 0 Summary: SELinux Translation Daemon License: GPL-2.0-or-later ++++++ mcstrans-3.8.1.tar.gz -> mcstrans-3.9.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mcstrans-3.8.1/VERSION new/mcstrans-3.9/VERSION --- old/mcstrans-3.8.1/VERSION 2025-03-05 19:59:06.000000000 +0100 +++ new/mcstrans-3.9/VERSION 2025-07-16 12:55:13.000000000 +0200 @@ -1 +1 @@ -3.8.1 +3.9 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mcstrans-3.8.1/src/Makefile new/mcstrans-3.9/src/Makefile --- old/mcstrans-3.8.1/src/Makefile 2025-03-05 19:59:06.000000000 +0100 +++ new/mcstrans-3.9/src/Makefile 2025-07-16 12:55:13.000000000 +0200 @@ -16,6 +16,8 @@ PROG=mcstransd INITSCRIPT=mcstrans CFLAGS ?= -Wall -W -Wundef -Wmissing-noreturn -Wmissing-format-attribute +override CFLAGS += -I../../libselinux/include +override LDFLAGS+= -L../../libselinux/src all: $(PROG) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mcstrans-3.8.1/src/mcscolor.c new/mcstrans-3.9/src/mcscolor.c --- old/mcstrans-3.8.1/src/mcscolor.c 2025-03-05 19:59:06.000000000 +0100 +++ new/mcstrans-3.9/src/mcscolor.c 2025-07-16 12:55:13.000000000 +0200 @@ -101,7 +101,7 @@ ctx = NULL; if (context_range_set(my_tmp, pattern)) goto out; - ctx = strdup(context_str(my_tmp)); + ctx = context_to_str(my_tmp); if (!ctx) goto out; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mcstrans-3.8.1/src/mcstrans.c new/mcstrans-3.9/src/mcstrans.c --- old/mcstrans-3.8.1/src/mcstrans.c 2025-03-05 19:59:06.000000000 +0100 +++ new/mcstrans-3.9/src/mcstrans.c 2025-07-16 12:55:13.000000000 +0200 @@ -925,7 +925,7 @@ goto exit; } context_range_set(con, range); - rcon = strdup(context_str(con)); + rcon = context_to_str(con); context_free(con); if (!rcon) { goto exit; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mcstrans-3.8.1/utils/Makefile new/mcstrans-3.9/utils/Makefile --- old/mcstrans-3.8.1/utils/Makefile 2025-03-05 19:59:06.000000000 +0100 +++ new/mcstrans-3.9/utils/Makefile 2025-07-16 12:55:13.000000000 +0200 @@ -2,6 +2,9 @@ PREFIX ?= /usr SBINDIR ?= $(PREFIX)/sbin +override CFLAGS += -I../../libselinux/include +override LDFLAGS+= -L../../libselinux/src + TARGETS=transcon untranscon # If no specific libsepol.a is specified, fall back on LDFLAGS search path