Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libgtpnl for openSUSE:Factory checked in at 2023-07-03 17:43:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libgtpnl (Old) and /work/SRC/openSUSE:Factory/.libgtpnl.new.13546 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libgtpnl" Mon Jul 3 17:43:29 2023 rev:8 rq:1096373 version:1.2.4 Changes: -------- --- /work/SRC/openSUSE:Factory/libgtpnl/libgtpnl.changes 2022-08-04 13:23:47.336554064 +0200 +++ /work/SRC/openSUSE:Factory/.libgtpnl.new.13546/libgtpnl.changes 2023-07-03 17:43:38.089018623 +0200 @@ -1,0 +2,6 @@ +Sun Jul 2 11:15:06 UTC 2023 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 1.2.4 + * Updates to the --help text + +------------------------------------------------------------------- Old: ---- 1.2.3.tar.gz New: ---- 1.2.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libgtpnl.spec ++++++ --- /var/tmp/diff_new_pack.1BWoM6/_old 2023-07-03 17:43:38.781022697 +0200 +++ /var/tmp/diff_new_pack.1BWoM6/_new 2023-07-03 17:43:38.785022721 +0200 @@ -1,7 +1,7 @@ # # spec file for package libgtpnl # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # 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.2.3 +Version: 1.2.4 Release: 0 Summary: GPRS tunnel configuration library License: GPL-2.0-or-later AND LGPL-2.1-or-later ++++++ 1.2.3.tar.gz -> 1.2.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.2.3/README.md new/libgtpnl-1.2.4/README.md --- old/libgtpnl-1.2.3/README.md 2022-06-28 16:13:45.000000000 +0200 +++ new/libgtpnl-1.2.4/README.md 2023-02-07 14:07:11.000000000 +0100 @@ -13,7 +13,7 @@ ## Homepage The official homepage of the project is -<https://osmocom.org/projects/libgtpnl/wiki/> +<https://osmocom.org/projects/linux-kernel-gtp-u/wiki/Libgtpnl> GIT Repository -------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.2.3/debian/changelog new/libgtpnl-1.2.4/debian/changelog --- old/libgtpnl-1.2.3/debian/changelog 2022-06-28 16:13:45.000000000 +0200 +++ new/libgtpnl-1.2.4/debian/changelog 2023-02-07 14:07:11.000000000 +0100 @@ -1,3 +1,12 @@ +libgtpnl (1.2.4) unstable; urgency=medium + + [ Oliver Smith ] + * README: fix link to homepage + * tools/gtp-tunnel: fix del usage + * tools/gtp-link: add --sgsn to usage + + -- Pau Espin Pedrol <pes...@sysmocom.de> Tue, 07 Feb 2023 14:07:11 +0100 + libgtpnl (1.2.3) unstable; urgency=medium [ Neels Hofmeyr ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.2.3/tools/gtp-link.c new/libgtpnl-1.2.4/tools/gtp-link.c --- old/libgtpnl-1.2.3/tools/gtp-link.c 2022-06-28 16:13:45.000000000 +0200 +++ new/libgtpnl-1.2.4/tools/gtp-link.c 2023-02-07 14:07:11.000000000 +0100 @@ -46,7 +46,8 @@ int ret, sgsn_mode = 0; if (argc < 3) { - printf("Usage: %s <add|del> <device>\n", argv[0]); + printf("Usage: %s add <device> [--sgsn]\n", argv[0]); + printf(" %s del <device>\n", argv[0]); exit(EXIT_FAILURE); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.2.3/tools/gtp-tunnel.c new/libgtpnl-1.2.4/tools/gtp-tunnel.c --- old/libgtpnl-1.2.3/tools/gtp-tunnel.c 2022-06-28 16:13:45.000000000 +0200 +++ new/libgtpnl-1.2.4/tools/gtp-tunnel.c 2023-02-07 14:07:11.000000000 +0100 @@ -120,7 +120,7 @@ uint32_t gtp_ifidx; if (argc != 5) { - printf("%s add <gtp device> <version> <tid>\n", + printf("%s del <gtp device> <version> <tid>\n", argv[0]); return EXIT_FAILURE; }