rpms/syslog-ng/FC-4 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 syslog-ng.spec, 1.8, 1.9

Jose Pedro Oliveira (jpo) fedora-extras-commits at redhat.com
Sat May 6 13:09:13 UTC 2006


Author: jpo

Update of /cvs/extras/rpms/syslog-ng/FC-4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv9873/FC-4

Modified Files:
	.cvsignore sources syslog-ng.spec 
Log Message:
Update to 1.6.11.


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/syslog-ng/FC-4/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore	30 Mar 2006 16:52:50 -0000	1.5
+++ .cvsignore	6 May 2006 13:09:13 -0000	1.6
@@ -1 +1 @@
-syslog-ng-1.6.10.tar.gz
+syslog-ng-1.6.11.tar.gz


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/syslog-ng/FC-4/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources	30 Mar 2006 16:52:50 -0000	1.5
+++ sources	6 May 2006 13:09:13 -0000	1.6
@@ -1 +1 @@
-b723dc5e8454bc274fdab415ac7ea5ea  syslog-ng-1.6.10.tar.gz
+8f9ca6140f428dc9adec9fa1c270a2dd  syslog-ng-1.6.11.tar.gz


Index: syslog-ng.spec
===================================================================
RCS file: /cvs/extras/rpms/syslog-ng/FC-4/syslog-ng.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- syslog-ng.spec	30 Mar 2006 16:52:50 -0000	1.8
+++ syslog-ng.spec	6 May 2006 13:09:13 -0000	1.9
@@ -1,22 +1,36 @@
+#
+# Rebuild option:
+#
+#   --with spoofing           enables the syslog-ng feature spoof-source
+#                             (see README.spoof for more information)
+#
 
 %define sbindir   /sbin
+%define libolver  0.3.18
+%define spoofing  0
+
+%{?_with_spoofing:%define spoofing 1}
 
 Name:             syslog-ng
-Version:          1.6.10
+Version:          1.6.11
 Release:          1%{?dist}
 Summary:          Syslog replacement daemon
 
 Group:            System Environment/Daemons
 License:          GPL
-Url:              http://www.balabit.com/products/syslog_ng/
+URL:              http://www.balabit.com/products/syslog_ng/
 Source0:          http://www.balabit.com/downloads/syslog-ng/1.6/src/syslog-ng-%{version}.tar.gz
 Source1:          syslog.log
 Patch0:           syslog-ng-1.6.7-init.patch
 Patch1:           syslog-ng-1.6.7-logrotate.patch
 BuildRoot:        %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
-BuildConflicts:   libol-devel < 0.3.17
-BuildRequires:    flex, tcp_wrappers, which
+BuildConflicts:   libol-devel < %{libolver}
+BuildRequires:    flex, which
+BuildRequires:    tcp_wrappers
+%if %{spoofing}
+BuildRequires:    libnet-devel >= 1.1
+%endif
 Requires:         logrotate
 Requires(post):   chkconfig, initscripts
 Requires(preun):  chkconfig, initscripts
@@ -47,11 +61,14 @@
 %patch1 -p1
 %{__sed} -i  's|^#!/usr/local/bin/perl|#!%{__perl}|' contrib/relogger.pl
 chmod a-x contrib/syslog2ng
-mv libol-0.3.18/ChangeLog ChangeLog.libol
+mv libol-%{libolver}/{ChangeLog,ChangeLog.libol}
 
 %build
 %configure \
     --sbindir=%{sbindir} \
+%if %{spoofing}
+    --enable-spoof-source \
+%endif
     --enable-tcp-wrapper
 make %{?_smp_mflags}
 
@@ -81,15 +98,15 @@
 %post
 # only rpm -i (not rpm {-U|-F})
 if [ $1 = 1 ]; then
-	/sbin/chkconfig --add syslog-ng
-#	/sbin/service syslog-ng start
+    /sbin/chkconfig --add syslog-ng
+#   /sbin/service syslog-ng start
 fi
 
 %preun
 # only rpm -e (not rpm {-U|-F})
 if [ $1 = 0 ]; then
-	/sbin/service syslog-ng stop > /dev/null 2>&1 || :
-	/sbin/chkconfig --del syslog-ng
+    /sbin/service syslog-ng stop > /dev/null 2>&1 || :
+    /sbin/chkconfig --del syslog-ng
 fi
 
 %postun
@@ -102,11 +119,10 @@
 %files
 %defattr(-,root,root,-)
 %doc AUTHORS COPYING README README.spoof ChangeLog INSTALL NEWS PORTS
-%doc doc/sgml/syslog-ng.txt
-%doc doc/*.demo doc/*.sample
+%doc doc/sgml/syslog-ng.txt doc/*.{demo,sample}
 %doc contrib/syslog-ng.conf.doc
 %doc contrib/syslog2ng doc/stresstest.sh contrib/relogger.pl
-%doc ChangeLog.libol
+%doc libol-%{libolver}/ChangeLog.libol
 %{sbindir}/syslog-ng
 %{_initrddir}/syslog-ng
 %dir %{_sysconfdir}/%{name}
@@ -118,8 +134,16 @@
 
 
 %changelog
+* Fri May  5 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.11-1
+- Update to 1.6.11.
+
+* Sun Apr  2 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.10-2
+- Build option to support the syslog-ng spoof-source feature
+  (the feature spoof-source is disabled by default).
+
 * Thu Mar 30 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.10-1
 - Update to 1.6.10.
+- The postscript documentation has been dropped (upstream).
 
 * Wed Nov 30 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.9-1
 - Build conflict statement




More information about the fedora-extras-commits mailing list