diff --git a/.files b/.files index c9f8128..c194f3e 100644 Binary files a/.files and b/.files differ diff --git a/.rev b/.rev index bd57e53..59ad30a 100644 --- a/.rev +++ b/.rev @@ -31,4 +31,12 @@ 720631 + + bcfda742dfbf285497de2b486e5c3724 + 1.0.2 + + dimstar_suse + + 778864 + diff --git a/addrwatch-1.0.1.tar.gz b/addrwatch-1.0.1.tar.gz deleted file mode 120000 index 399f508..0000000 --- a/addrwatch-1.0.1.tar.gz +++ /dev/null @@ -1 +0,0 @@ -/ipfs/bafkreif6oakqunlvlbeb32ciqzs5uhlo7x5f3q3wm3m7u2hi445iwwnn4y \ No newline at end of file diff --git a/addrwatch-1.0.2.tar.gz b/addrwatch-1.0.2.tar.gz new file mode 120000 index 0000000..79cda82 --- /dev/null +++ b/addrwatch-1.0.2.tar.gz @@ -0,0 +1 @@ +/ipfs/bafkreicwuimagbpjllo6lbf5subhoetjxgrbmqm3jfrrarvtnbic2xk7xi \ No newline at end of file diff --git a/addrwatch.changes b/addrwatch.changes index 1726911..80449ef 100644 --- a/addrwatch.changes +++ b/addrwatch.changes @@ -1,4 +1,24 @@ ------------------------------------------------------------------- +Mon Feb 24 17:21:45 UTC 2020 - Luigi Baldoni + +- Update to version 1.0.2 + * Add leading / to default shared-memory name + * Add clang-tidy support, clean most of the linter warnings + * Remove sys_siglist usage in favor of strsignal (#12) + * Add clang-format format support, re-style code base + * addrwatch: Add limits header for PATH_MAX + * Mark db_reconnect as static inline, fixes GH-11 + * Add experimental meson build support + * Add mysql migration script, update README.md + +- Drop fix-db-reconnect-issue.patch (merged upstream) + +------------------------------------------------------------------- +Thu Oct 17 12:52:36 UTC 2019 - Richard Brown + +- Remove obsolete Groups tag (fate#326485) + +------------------------------------------------------------------- Fri Aug 2 12:41:58 UTC 2019 - Karol Babioch - Using %autosetup macro. diff --git a/addrwatch.spec b/addrwatch.spec index 4c40b60..f4cc50b 100644 --- a/addrwatch.spec +++ b/addrwatch.spec @@ -1,7 +1,7 @@ # # spec file for package addrwatch # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,14 +17,12 @@ Name: addrwatch -Version: 1.0.1 +Version: 1.0.2 Release: 0 Summary: A tool for IPv4/IPv6 and Ethernet address pairing monitoring License: GPL-3.0-only -Group: Productivity/Networking/Diagnostic URL: https://github.com/fln/addrwatch Source0: https://github.com/fln/addrwatch/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz -Patch0: fix-db-reconnect-issue.patch BuildRequires: autoconf >= 2.68 BuildRequires: automake BuildRequires: libevent-devel diff --git a/fix-db-reconnect-issue.patch b/fix-db-reconnect-issue.patch deleted file mode 100644 index 6bd7a65..0000000 --- a/fix-db-reconnect-issue.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 3ac9f4e421e4471b08875f8e82c8d367fa9dc243 Mon Sep 17 00:00:00 2001 -From: Julius Kriukas -Date: Wed, 28 Mar 2018 21:29:56 +0300 -Subject: [PATCH] Mark db_reconnect as static inline, fixes GH-11 - ---- - src/addrwatch_mysql.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/addrwatch_mysql.c b/src/addrwatch_mysql.c -index 389153f..b4ed760 100644 ---- a/src/addrwatch_mysql.c -+++ b/src/addrwatch_mysql.c -@@ -232,7 +232,7 @@ void db_disconnect(struct ctx_s *data) - data->dbh = NULL; - } - --inline void db_reconnect(struct ctx_s *data) { -+static inline void db_reconnect(struct ctx_s *data) { - while (1) { - if (data->dbh) - db_disconnect(data);