Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebuild of rsyslog 8.39.0 to add pmnormalize subpackage #50

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions rpmbuild/SPECS/v8-stable-el7.spec
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,12 @@ Summary: pmciscoios support
Group: System Environment/Daemons
Requires: %name = %version-%release

%package pmnormalize
Summary: Log normalization parser for rsyslog
Group: System Environment/Daemons
Requires: %name = %version-%release
BuildRequires: liblognorm5-devel >= 2.0.4

%if %{want_rabbitmq}
%package rabbitmq
Summary: RabbitMQ support for rsyslog
Expand Down Expand Up @@ -332,6 +338,9 @@ subsequent message parsing less error-prone.
%description pmciscoios
Parser module which supports various Cisco IOS formats.

%description pmnormalize
Parser module based on liblognorm.

%description kafka
librdkafka is a C library implementation of the Apache Kafka protocol,
containing both Producer and Consumer support. It was designed with message delivery
Expand Down Expand Up @@ -427,6 +436,7 @@ export HIREDIS_LIBS=-L%{_libdir}
--enable-pmaixforwardedfrom \
--enable-pmcisconames \
--enable-pmlastmsg \
--enable-pmnormalize \
--enable-pmsnare \
--enable-relp \
--enable-snmp \
Expand Down Expand Up @@ -645,6 +655,10 @@ done
%defattr(-,root,root)
%{_libdir}/rsyslog/pmciscoios.so

%files pmnormalize
%defattr(-,root,root)
%{_libdir}/rsyslog/pmnormalize.so

%files mmrm1stspace
%defattr(-,root,root)
%{_libdir}/rsyslog/mmrm1stspace.so
Expand Down Expand Up @@ -675,6 +689,9 @@ done
%{_libdir}/rsyslog/fmhash.so

%changelog
* Fri Nov 02 2018 Julien Thomas - 8.39.0-3
- Add pmnormalize subpackage

* Wed Oct 31 2018 Florian Riedl - 8.39.0-2
- Rebuild for fixed Kafka dependency

Expand Down
17 changes: 17 additions & 0 deletions rpmbuild/SPECS/v8-stable.spec
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,12 @@ Summary: pmciscoios support
Group: System Environment/Daemons
Requires: %name = %version-%release

%package pmnormalize
Summary: Log normalization parser for rsyslog
Group: System Environment/Daemons
Requires: %name = %version-%release
BuildRequires: liblognorm5-devel >= 2.0.4

%package omstdout
Summary: omstdout support
Group: System Environment/Daemons
Expand Down Expand Up @@ -341,6 +347,9 @@ The mmrm1stspace module is used to remove the leading space character of the msg
%description pmciscoios
Parser module which supports various Cisco IOS formats.

%description pmnormalize
Parser module based on liblognorm.

%description omstdout
Provides omstdout module

Expand Down Expand Up @@ -459,6 +468,7 @@ export LDFLAGS="-pie -Wl,-z,relro -Wl,-z,now"
--enable-mmrm1stspace \
--enable-pmaixforwardedfrom \
--enable-pmciscoios \
--enable-pmnormalize \
--enable-omfile-hardened \
--enable-mmkubernetes \
--enable-ksi-ls12 \
Expand Down Expand Up @@ -654,6 +664,10 @@ mv /var/lock/subsys/rsyslogd /var/lock/subsys/rsyslog
%defattr(-,root,root)
%{_libdir}/rsyslog/pmciscoios.so

%files pmnormalize
%defattr(-,root,root)
%{_libdir}/rsyslog/pmnormalize.so

%files omstdout
%defattr(-,root,root)
%{_libdir}/rsyslog/omstdout.so
Expand Down Expand Up @@ -718,6 +732,9 @@ mv /var/lock/subsys/rsyslogd /var/lock/subsys/rsyslog
%endif

%changelog
* Fri Nov 02 2018 Julien Thomas - 8.39.0-3
- Add pmnormalize subpackage

* Wed Oct 31 2018 Florian Riedl - 8.39.0-2
- Rebuild for fixed Kafka dependency

Expand Down