Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libgtpnl for openSUSE:Factory checked in at 2026-02-05 18:00:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libgtpnl (Old) and /work/SRC/openSUSE:Factory/.libgtpnl.new.1670 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libgtpnl" Thu Feb 5 18:00:53 2026 rev:12 rq:1331152 version:1.3.3 Changes: -------- --- /work/SRC/openSUSE:Factory/libgtpnl/libgtpnl.changes 2025-02-13 18:40:45.460419332 +0100 +++ /work/SRC/openSUSE:Factory/.libgtpnl.new.1670/libgtpnl.changes 2026-02-05 18:06:38.875332179 +0100 @@ -1,0 +2,6 @@ +Thu Feb 5 11:11:28 UTC 2026 - Jan Engelhardt <[email protected]> + +- Update to release 1.3.3 + * Generate a version.h file + +------------------------------------------------------------------- Old: ---- 1.3.2.tar.gz New: ---- 1.3.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libgtpnl.spec ++++++ --- /var/tmp/diff_new_pack.EJ8Kjb/_old 2026-02-05 18:06:39.527359570 +0100 +++ /var/tmp/diff_new_pack.EJ8Kjb/_new 2026-02-05 18:06:39.527359570 +0100 @@ -1,7 +1,7 @@ # # spec file for package libgtpnl # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: libgtpnl -Version: 1.3.2 +Version: 1.3.3 Release: 0 Summary: GPRS tunnel configuration library License: GPL-2.0-or-later AND LGPL-2.1-or-later ++++++ 1.3.2.tar.gz -> 1.3.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.3.2/.gitignore new/libgtpnl-1.3.3/.gitignore --- old/libgtpnl-1.3.2/.gitignore 2025-02-12 11:55:15.000000000 +0100 +++ new/libgtpnl-1.3.3/.gitignore 2025-12-03 18:46:17.000000000 +0100 @@ -39,3 +39,5 @@ tools/gtp-tunnel tests/qemu/_* + +include/libgtpnl/version.h diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.3.2/debian/changelog new/libgtpnl-1.3.3/debian/changelog --- old/libgtpnl-1.3.2/debian/changelog 2025-02-12 11:55:15.000000000 +0100 +++ new/libgtpnl-1.3.3/debian/changelog 2025-12-03 18:46:17.000000000 +0100 @@ -1,3 +1,11 @@ +libgtpnl (1.3.3) unstable; urgency=medium + + [ Oliver Smith ] + * include/libgtpnl/Makefile: format pkginclude_HEADERS + * Generate a version.h file + + -- Pau Espin Pedrol <[email protected]> Wed, 03 Dec 2025 18:46:17 +0100 + libgtpnl (1.3.2) unstable; urgency=medium * dev_create: support returning -EEXIST diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.3.2/include/libgtpnl/Makefile.am new/libgtpnl-1.3.3/include/libgtpnl/Makefile.am --- old/libgtpnl-1.3.2/include/libgtpnl/Makefile.am 2025-02-12 11:55:15.000000000 +0100 +++ new/libgtpnl-1.3.3/include/libgtpnl/Makefile.am 2025-12-03 18:46:17.000000000 +0100 @@ -1 +1,18 @@ -pkginclude_HEADERS = gtp.h gtpnl.h +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + +EXTRA_DIST = \ + version.h.tpl \ + $(NULL) + +pkginclude_HEADERS = \ + gtp.h \ + gtpnl.h \ + version.h \ + $(NULL) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.3.2/include/libgtpnl/version.h.tpl new/libgtpnl-1.3.3/include/libgtpnl/version.h.tpl --- old/libgtpnl-1.3.2/include/libgtpnl/version.h.tpl 1970-01-01 01:00:00.000000000 +0100 +++ new/libgtpnl-1.3.3/include/libgtpnl/version.h.tpl 2025-12-03 18:46:17.000000000 +0100 @@ -0,0 +1,16 @@ +#pragma once + +#define LIBGTPNL_VERSION {{VERSION}} +#define LIBGTPNL_VERSION_STR "{{VERSION}}" + +#define LIBGTPNL_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBGTPNL_VERSION_MINOR {{VERSION_MINOR}} +#define LIBGTPNL_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBGTPNL_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBGTPNL_VERSION_MAJOR > (major) || \ + (LIBGTPNL_VERSION_MAJOR == (major) && \ + LIBGTPNL_VERSION_MINOR > (minor)) || \ + (LIBGTPNL_VERSION_MAJOR == (major) && \ + LIBGTPNL_VERSION_MINOR == (minor) && \ + LIBGTPNL_VERSION_PATCH >= (patch))) ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.EJ8Kjb/_old 2026-02-05 18:06:39.755369149 +0100 +++ /var/tmp/diff_new_pack.EJ8Kjb/_new 2026-02-05 18:06:39.763369485 +0100 @@ -1,5 +1,5 @@ -mtime: 1739454089 -commit: 9a79253e9db9576f9b381884b315285df937efdd6d8c02a6670fadde5ec1914e +mtime: 1770289932 +commit: cb7b5beb32e44a6a6f6f2f269cb3b42da76e1e76dc924cf77edda083e094e78a url: https://src.opensuse.org/jengelh/libgtpnl revision: master ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-02-05 12:12:33.000000000 +0100 @@ -0,0 +1 @@ +.osc
