Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libnice for openSUSE:Factory checked in at 2023-07-11 15:56:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libnice (Old) and /work/SRC/openSUSE:Factory/.libnice.new.8922 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libnice" Tue Jul 11 15:56:24 2023 rev:48 rq:1097926 version:0.1.21 Changes: -------- --- /work/SRC/openSUSE:Factory/libnice/libnice.changes 2023-04-15 22:32:34.605340487 +0200 +++ /work/SRC/openSUSE:Factory/.libnice.new.8922/libnice.changes 2023-07-11 15:56:28.076879814 +0200 @@ -1,0 +2,7 @@ +Fri Jul 7 10:26:09 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Add 4b63250c.patch: agent/meson: Replace filename with basename. + This avoids emitting absolute paths into generated sourcecode, it + improves reproducibility. + +------------------------------------------------------------------- New: ---- 4b63250c.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libnice.spec ++++++ --- /var/tmp/diff_new_pack.vAj4jd/_old 2023-07-11 15:56:28.668883258 +0200 +++ /var/tmp/diff_new_pack.vAj4jd/_new 2023-07-11 15:56:28.672883282 +0200 @@ -27,6 +27,8 @@ Source1: baselibs.conf # PATCH-FIX-UPSTREAM libnice-port-gupnp-igd-bump.patch -- Port to new gupnp-igd Patch1: libnice-port-gupnp-igd-bump.patch +# PATCH-FIX-UPSTREAM 4b63250c.patch -- agent/meson: Replace filename with basename +Patch2: https://gitlab.freedesktop.org/libnice/libnice/-/commit/4b63250c.patch BuildRequires: meson BuildRequires: pkgconfig ++++++ 4b63250c.patch ++++++ >From 4b63250cc446e25b5150dd6040028624ee76f9d1 Mon Sep 17 00:00:00 2001 From: Khem Raj <raj.k...@gmail.com> Date: Mon, 22 May 2023 19:45:28 -0700 Subject: [PATCH] agent/meson: Replace filename with basename This avoids emitting absolute paths into generated sourcecode, it improves reproducibility. See [1] [1] https://developer-old.gnome.org/gobject/stable/glib-mkenums.html --- agent/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent/meson.build b/agent/meson.build index 2e5b272a..44fcd6bd 100644 --- a/agent/meson.build +++ b/agent/meson.build @@ -29,14 +29,14 @@ gnome = import('gnome') agent_enum_types_c = gnome.mkenums('agent-enum-types.c', sources : agent_headers, fhead: '#include <config.h>\n#include <glib-object.h>\n#include "agent.h"\n#include "pseudotcp.h"\n#include "agent-enum-types.h"', - fprod: '\n/* enumerations from "@filename@" */', + fprod: '\n/* enumerations from "@basename@" */', vhead: 'GType\n@enum_name@_get_type (void)\n{\n static GType type = 0;\n if (!type) {\n static const G@Type@Value values[] = {', vprod: ' { @VALUENAME@, "@VALUENAME@", "@valuenick@" },', vtail: ' { 0, NULL, NULL }\n };\n type = g_@type@_register_static ("@EnumName@", values);\n }\n return type;\n}\n\n') agent_enum_types_h = gnome.mkenums('agent-enum-types.h', sources : agent_headers, fhead: '#ifndef __AGENT_ENUM_TYPES_H__\n#define __AGENT_ENUM_TYPES_H__ 1\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n', - fprod: '/* enumerations from "@filename@" */\n', + fprod: '/* enumerations from "@basename@" */\n', vhead: 'GType @enum_name@_get_type (void) G_GNUC_CONST;\n#define NICE_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n', ftail: 'G_END_DECLS\n\n#endif /* !AGENT_ENUM_TYPES_H */') -- GitLab