Rebased to 8.22.0
- added omamqp1 subpackage - changed BuildRequires from json-c to libfastjson
This commit is contained in:
parent
b2cdf67707
commit
bfc9412fb7
2
.gitignore
vendored
2
.gitignore
vendored
@ -29,3 +29,5 @@ rsyslog-4.6.3.tar.gz
|
|||||||
/rsyslog-doc-8.12.0.tar.gz
|
/rsyslog-doc-8.12.0.tar.gz
|
||||||
/rsyslog-8.21.0.tar.gz
|
/rsyslog-8.21.0.tar.gz
|
||||||
/rsyslog-doc-8.21.0.tar.gz
|
/rsyslog-doc-8.21.0.tar.gz
|
||||||
|
/rsyslog-doc-8.22.0.tar.gz
|
||||||
|
/rsyslog-8.22.0.tar.gz
|
||||||
|
25
rsyslog.spec
25
rsyslog.spec
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
Summary: Enhanced system logging and kernel message trapping daemon
|
Summary: Enhanced system logging and kernel message trapping daemon
|
||||||
Name: rsyslog
|
Name: rsyslog
|
||||||
Version: 8.21.0
|
Version: 8.22.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: (GPLv3+ and ASL 2.0)
|
License: (GPLv3+ and ASL 2.0)
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -27,7 +27,7 @@ BuildRequires: automake
|
|||||||
BuildRequires: bison
|
BuildRequires: bison
|
||||||
BuildRequires: dos2unix
|
BuildRequires: dos2unix
|
||||||
BuildRequires: flex
|
BuildRequires: flex
|
||||||
BuildRequires: json-c-devel
|
BuildRequires: libfastjson
|
||||||
BuildRequires: libestr-devel >= 0.1.9
|
BuildRequires: libestr-devel >= 0.1.9
|
||||||
BuildRequires: liblogging-stdlog-devel
|
BuildRequires: liblogging-stdlog-devel
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
@ -37,6 +37,7 @@ BuildRequires: python-docutils
|
|||||||
# make sure systemd is in a version that isn't affected by rhbz#974132
|
# make sure systemd is in a version that isn't affected by rhbz#974132
|
||||||
BuildRequires: systemd-devel >= 204-8
|
BuildRequires: systemd-devel >= 204-8
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
|
BuildRequires: qpid-proton-c-devel
|
||||||
|
|
||||||
Requires: logrotate >= 3.5.2
|
Requires: logrotate >= 3.5.2
|
||||||
Requires: bash >= 2.0
|
Requires: bash >= 2.0
|
||||||
@ -157,6 +158,12 @@ Group: System Environment/Daemons
|
|||||||
Requires: %name = %version-%release
|
Requires: %name = %version-%release
|
||||||
BuildRequires: libnet-devel
|
BuildRequires: libnet-devel
|
||||||
|
|
||||||
|
%package omamqp1
|
||||||
|
Summary: Provides the omamqp1 module
|
||||||
|
Group: System Environment/Daemons
|
||||||
|
Requires: %name = %version-%release
|
||||||
|
BuildRequires: qpid-proton-c-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Rsyslog is an enhanced, multi-threaded syslog daemon. It supports MySQL,
|
Rsyslog is an enhanced, multi-threaded syslog daemon. It supports MySQL,
|
||||||
syslog/TCP, RFC 3195, permitted sender lists, filtering on any message part,
|
syslog/TCP, RFC 3195, permitted sender lists, filtering on any message part,
|
||||||
@ -242,6 +249,10 @@ This module is similar to the regular UDP forwarder, but permits to
|
|||||||
spoof the sender address. Also, it enables to circle through a number
|
spoof the sender address. Also, it enables to circle through a number
|
||||||
of source ports.
|
of source ports.
|
||||||
|
|
||||||
|
%description omamqp1
|
||||||
|
The omamqp1 output module can be used to send log messages via an AMQP
|
||||||
|
1.0-compatible messaging bus.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
# set up rsyslog-doc sources
|
# set up rsyslog-doc sources
|
||||||
%setup -q -a 1 -T -c
|
%setup -q -a 1 -T -c
|
||||||
@ -289,6 +300,7 @@ export HIREDIS_LIBS="-L%{_libdir} -lhiredis"
|
|||||||
--enable-mmnormalize \
|
--enable-mmnormalize \
|
||||||
--enable-mmsnmptrapd \
|
--enable-mmsnmptrapd \
|
||||||
--enable-mysql \
|
--enable-mysql \
|
||||||
|
--enable-omamqp1 \
|
||||||
%if %{want_hiredis}
|
%if %{want_hiredis}
|
||||||
--enable-omhiredis \
|
--enable-omhiredis \
|
||||||
%endif
|
%endif
|
||||||
@ -499,7 +511,16 @@ done
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/rsyslog/omudpspoof.so
|
%{_libdir}/rsyslog/omudpspoof.so
|
||||||
|
|
||||||
|
%files omamqp1
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/rsyslog/omamqp1.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Nov 10 2016 Tomas Sykora <tosykora@redhat.com> 8.22.0-1
|
||||||
|
- rebase to 8.22.0
|
||||||
|
- added omamqp1 subpackage
|
||||||
|
- changed BuildRequires from json-c to libfastjson
|
||||||
|
|
||||||
* Wed Oct 05 2016 Radovan Sroka <rsroka@redhat.com> 8.21.0-1
|
* Wed Oct 05 2016 Radovan Sroka <rsroka@redhat.com> 8.21.0-1
|
||||||
- rebase to 8.21.0
|
- rebase to 8.21.0
|
||||||
- dropped rsyslog-8.12.0-gnutls-detection.patch
|
- dropped rsyslog-8.12.0-gnutls-detection.patch
|
||||||
|
Loading…
Reference in New Issue
Block a user