Accepting request 450453 from home:AndreasStieger:branches:Base:System
rsyslog 8.24.0 OBS-URL: https://build.opensuse.org/request/show/450453 OBS-URL: https://build.opensuse.org/package/show/Base:System/rsyslog?expand=0&rev=254
This commit is contained in:
parent
a495dc8791
commit
a64c659d53
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:244e79552d37a5729f3f53786062828adc16fd080eeb0de6507bff55ed21693b
|
||||
size 2338318
|
3
rsyslog-8.24.0.tar.gz
Normal file
3
rsyslog-8.24.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:37f32ce33e32a88e1bea0511e8e557d90b7378b81520e3236a9af5ba6ea993d7
|
||||
size 2374240
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2b23952e5878af334a7b71de76fc6bd432e90dff968da545d3bd73f8a4a147f
|
||||
size 4316852
|
3
rsyslog-doc-8.24.0.tar.gz
Normal file
3
rsyslog-doc-8.24.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f5e3c27c5b65abdd600b8ad8d99d1f2fe9f0ffca02d6af3c12db5fc10dd889b2
|
||||
size 4344877
|
@ -1,3 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 15 21:50:25 UTC 2017 - astieger@suse.com
|
||||
|
||||
- rsyslog 8.24.0:
|
||||
* mmrm1stspace: new module; removes first space in MSG if present
|
||||
* KSI signature provider: file permissions can now be specified
|
||||
* omzmq: new features
|
||||
* when the hostname is empty, we now use "localhost-empty-hostname"
|
||||
* omelasticsearch: remove "asyncrepl" config parameter
|
||||
* omfwd: Add support for bind-to-device (see below on same for imudp)
|
||||
* imudp: Add support for bind-to-device
|
||||
* imudp: limit rcvbufsize parameter to max 1GiB
|
||||
* rainerscript: implement new "call_indirect" statement
|
||||
* bugfix imjournal: make state file handling more robust
|
||||
* bugfix core: lookup table reload was not properly integrated
|
||||
* bugfix core: potential dealock on shutdown
|
||||
* bugfix ommongodb: did not work in v8 due to invalid indirection
|
||||
* bugfix ommongodb: fix tryResume handling
|
||||
* bugfix omfwd: retry processing was not done correctly, could stall
|
||||
* bugfix imuxsock: segfault non shutdown when $OmitLocalLogging is on
|
||||
- contributed modules not enabled due to build issues:
|
||||
* mmdblookup: new maxminddb lookup message modify plugin
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 12 13:39:18 UTC 2016 - dimstar@opensuse.org
|
||||
|
||||
|
16
rsyslog.spec
16
rsyslog.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package rsyslog
|
||||
#
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -20,7 +20,7 @@ Name: rsyslog
|
||||
Summary: The enhanced syslogd for Linux and Unix
|
||||
License: (GPL-3.0+ and Apache-2.0)
|
||||
Group: System/Daemons
|
||||
Version: 8.23.0
|
||||
Version: 8.24.0
|
||||
Release: 0
|
||||
%if 0%{?suse_version} >= 1210
|
||||
%bcond_without systemd
|
||||
@ -58,6 +58,8 @@ Release: 0
|
||||
%bcond_without omhttpfs
|
||||
%bcond_without omamqp1
|
||||
%bcond_without tcl
|
||||
# https://github.com/rsyslog/rsyslog/issues/1355
|
||||
%bcond_with maxminddb
|
||||
# contributed modules not built for various reasons
|
||||
# --enable-mmgrok - grok not in factory
|
||||
# --enable-omkafka - librdkafka not in factory
|
||||
@ -195,6 +197,9 @@ BuildRequires: libee-devel >= 0.4.0
|
||||
BuildRequires: liblognorm-devel >= 1.1.2
|
||||
%endif
|
||||
%endif
|
||||
%if %{with maxminddb}
|
||||
BuildRequires: pkgconfig(libmaxminddb)
|
||||
%endif
|
||||
#
|
||||
# mmjsonparse needs liblognorm,
|
||||
# but json check is unconditional
|
||||
@ -645,6 +650,7 @@ autoreconf -fiv
|
||||
--enable-pmcisconames \
|
||||
--enable-pmaixforwardedfrom \
|
||||
--enable-pmsnare \
|
||||
--enable-pmnull \
|
||||
--enable-omruleset \
|
||||
%if %{with mmnormalize}
|
||||
--enable-mmnormalize \
|
||||
@ -684,6 +690,7 @@ autoreconf -fiv
|
||||
--enable-mmfields \
|
||||
--enable-mmpstrucdata \
|
||||
--enable-mmrfc5424addhmac \
|
||||
--enable-mmrm1stspace \
|
||||
--enable-pmciscoios \
|
||||
--enable-pmpanngfw \
|
||||
%if %{with guardtime}
|
||||
@ -697,6 +704,9 @@ autoreconf -fiv
|
||||
%endif
|
||||
%if %{with tcl}
|
||||
--enable-omtcl \
|
||||
%endif
|
||||
%if %{with maxminddb}
|
||||
--enable-mmdblookup \
|
||||
%endif
|
||||
--enable-usertools \
|
||||
--disable-static
|
||||
@ -1003,6 +1013,7 @@ fi
|
||||
%{rsyslog_module_dir_nodeps}/mmrfc5424addhmac.so
|
||||
%{rsyslog_module_dir_nodeps}/mmsequence.so
|
||||
%{rsyslog_module_dir_nodeps}/mmutf8fix.so
|
||||
%{rsyslog_module_dir_nodeps}/mmrm1stspace.so
|
||||
%{rsyslog_module_dir_nodeps}/ommail.so
|
||||
%{rsyslog_module_dir_nodeps}/omprog.so
|
||||
%{rsyslog_module_dir_nodeps}/omruleset.so
|
||||
@ -1014,6 +1025,7 @@ fi
|
||||
%{rsyslog_module_dir_nodeps}/pmcisconames.so
|
||||
%{rsyslog_module_dir_nodeps}/pmciscoios.so
|
||||
%{rsyslog_module_dir_nodeps}/pmsnare.so
|
||||
%{rsyslog_module_dir_nodeps}/pmnull.so
|
||||
%{rsyslog_module_dir_nodeps}/pmpanngfw.so
|
||||
%if %{with rfc3195}
|
||||
%{rsyslog_module_dir_nodeps}/im3195.so
|
||||
|
Loading…
x
Reference in New Issue
Block a user