From wraay at users.sourceforge.net Tue Mar 25 12:00:07 2008
From: wraay at users.sourceforge.net (Wytze van der Raay)
Date: Tue, 25 Mar 2008 04:00:07 -0700
Subject: [COMMIT LOGREPORT] service/spamfilter/script spamassassin2dlf.in,
1.7, 1.8
Message-ID:
Update of /cvsroot/logreport/service/spamfilter/script
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7846
Modified Files:
spamassassin2dlf.in
Log Message:
Generalize patterns for recognizing spamassassin logs, in order to match
multiple variations of spamd logging (spamassassin 2.X and 3.X).
Index: spamassassin2dlf.in
===================================================================
RCS file: /cvsroot/logreport/service/spamfilter/script/spamassassin2dlf.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- spamassassin2dlf.in 24 Aug 2005 14:24:52 -0000 1.7
+++ spamassassin2dlf.in 25 Mar 2008 11:00:04 -0000 1.8
@@ -49,14 +49,14 @@
my $pid = $rec->{pid};
my $line = $rec->{content};
- if ($line=~/^processing message \<(.+?)\> for (.+?):\d+(, expecting (\d+) bytes)?\. *$/) {
- $data{$pid}{msgid} = $1;
- $data{$pid}{user} = $2;
- $data{$pid}{msgsize_in} = $4 || 0;
+ if ($line=~/(processing|checking) message \<(.+?)\> for (.+?):\d+(, expecting (\d+) bytes)?/) {
+ $data{$pid}{msgid} = $2;
+ $data{$pid}{user} = $3;
+ $data{$pid}{msgsize_in} = $5 || 0;
next;
}
- if ($line=~/^(clean message|identified spam) \((-?[\d.]+)\/[\d.]+\) for .+?:\d+ in +([\d.]+) seconds, (\d+) bytes./) {
+ if ($line=~/(clean message|identified spam) \((-?[\d.]+)\/[\d.]+\) for .+?:\d+ in +([\d.]+) seconds, (\d+) bytes./) {
# ignore leftovers from previous logfiles
next if (!defined $data{$pid}{msgid});
From vanbaal at users.sourceforge.net Tue Mar 25 20:22:23 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:22:23 -0000
Subject: [COMMIT LOGREPORT] service configure.in,1.399,1.400
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5381
Modified Files:
configure.in
Log Message:
add comment on gettext stuff
Index: configure.in
===================================================================
RCS file: /cvsroot/logreport/service/configure.in,v
retrieving revision 1.399
retrieving revision 1.400
diff -u -r1.399 -r1.400
--- configure.in 23 Jul 2006 13:16:27 -0000 1.399
+++ configure.in 9 Feb 2008 01:24:49 -0000 1.400
@@ -28,7 +28,17 @@
dnl this would allow to add a call to autopoint to ./boostrap, just before
dnl aclocal. See the gettext info pages for more nice automake macros.
dnl
-dnl AM_GNU_GETTEXT_VERSION(0.14.1)
+dnl "Gettext supplies the autopoint command to add translation infrastructure
+dnl to a source package. If you use autopoint, your configure.ac should invoke
+dnl both AM_GNU_GETTEXT and AM_GNU_GETTEXT_VERSION(gettext-version). See
+dnl Invoking the autopoint Program, for further details."
+dnl
+dnl http://www.gnu.org/software/autoconf/manual/html_node/autoreconf-Invocation.html#index-Gettext-18
+dnl http://www.gnu.org/software/gettext/manual/html_chapter/gettext_13.html#SEC194
+dnl http://www.gnu.org/software/gettext/manual/html_chapter/gettext_12.html#SEC172
+dnl
+dnl for now, keep it commented out:
+dnl AM_GNU_GETTEXT_VERSION(0.14.6)
dnl First determine if this is run to from CVS or from
dnl a tar.gz distribution
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:08 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:08 -0000
Subject: [COMMIT LOGREPORT] service NEWS,1.273,1.274
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv6584
Modified Files:
NEWS
Log Message:
record some older news, for upcoming release
Index: NEWS
===================================================================
RCS file: /cvsroot/logreport/service/NEWS,v
retrieving revision 1.273
retrieving revision 1.274
diff -u -r1.273 -r1.274
--- NEWS 4 Jun 2007 09:38:24 -0000 1.273
+++ NEWS 9 Feb 2008 01:27:58 -0000 1.274
@@ -8,6 +8,19 @@
Copyright (C) 2000, 2001, 2002, 2003, 2004 Stichting LogReport Foundation
LogReport at LogReport.org
+Copyright (C) 2006, 2007, 2008 Joost van Baal
+
+version UNRELEASED - Month dd yyyy
+
+- Bug fixes
+
+ * Various fixes in merging and generating PDF reports. Thanks to Stefan
+ Schuermans for the patches.
+
+- FIXME
+
+
+
version 2.0.2 - July 26 2006
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:09 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:09 -0000
Subject: [COMMIT LOGREPORT] package/debian exim.cfg,1.1,1.2
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7518
Modified Files:
exim.cfg
Log Message:
Convert from exim3 to exim4 style. exim3 is obsolete since Debian sarge (2005).
Thanks Noah Slater. Closes: #456910.
Index: exim.cfg
===================================================================
RCS file: /cvsroot/logreport/package/debian/exim.cfg,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- exim.cfg 10 Nov 2003 20:44:04 -0000 1.1
+++ exim.cfg 10 Feb 2008 06:01:45 -0000 1.2
@@ -3,5 +3,5 @@
service=exim
daemon=/usr/sbin/exim
rotateperiod=daily
-logfile=/var/log/exim/mainlog.0
+logfile=/var/log/exim4/mainlog.1
filter=cat
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:09 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:09 -0000
Subject: [COMMIT LOGREPORT] service/doc BUGS,1.256,1.257
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22279
Modified Files:
BUGS
Log Message:
oops, we have missed some other patches to. added as todo-item, to be dealt with _before_ upcoming release
Index: BUGS
===================================================================
RCS file: /cvsroot/logreport/service/doc/BUGS,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- BUGS 4 Oct 2006 10:04:29 -0000 1.256
+++ BUGS 10 Feb 2008 23:17:17 -0000 1.257
@@ -30,6 +30,14 @@
)
+- FIRST PRIO:
+
+deal with these contributed (and _old_ !) patches:
+
+ Sep 19 Konstantinos Ko (2,8K) patch for Report Job name in lire(1)
+ Jan 30 Robin Horton ( 12K) Fixes for pix2dlf (PIX v7+)
+ May 01 Klun, Jim ( 41K) PIX Built outbound/inbound messages - sample
+
- serious: Lire requires GNU Make. Specifically all/po/Makefile.am does.
This is tedious for Solaris users (and BSD users, as well). See
Date: Sat, 30 Oct 2004 23:13:33 +0200
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:10 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:10 -0000
Subject: [COMMIT LOGREPORT] service/www/lib/Lire/WWW/UserAgent Browser.pm,
1.3, 1.4
Message-ID:
Update of /cvsroot/logreport/service/www/lib/Lire/WWW/UserAgent
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7740/Lire/WWW/UserAgent
Modified Files:
Browser.pm
Log Message:
fix typo: s/Internet Exporer/Internet Explorer/
Index: Browser.pm
===================================================================
RCS file: /cvsroot/logreport/service/www/lib/Lire/WWW/UserAgent/Browser.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Browser.pm 23 Jul 2006 13:16:36 -0000 1.3
+++ Browser.pm 11 Feb 2008 05:38:17 -0000 1.4
@@ -145,7 +145,7 @@
# This avoid other tests if found)
if (($ua =~ /msie/) && ($ua !~ /webtv/) &&
($ua !~ /omniweb/) && ($ua !~ /opera/)) {
- return "MS Internet Exporer";
+ return "MS Internet Explorer";
}
# Mozilla ?
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:10 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:10 -0000
Subject: [COMMIT LOGREPORT] service/www/lib/tests
UserAgentCategoriserTest.pm, 1.1, 1.2
Message-ID:
Update of /cvsroot/logreport/service/www/lib/tests
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7740/tests
Modified Files:
UserAgentCategoriserTest.pm
Log Message:
fix typo: s/Internet Exporer/Internet Explorer/
Index: UserAgentCategoriserTest.pm
===================================================================
RCS file: /cvsroot/logreport/service/www/lib/tests/UserAgentCategoriserTest.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- UserAgentCategoriserTest.pm 24 May 2004 16:09:42 -0000 1.1
+++ UserAgentCategoriserTest.pm 11 Feb 2008 05:38:17 -0000 1.2
@@ -40,7 +40,7 @@
$dlf->{'useragent'} = 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; fr)';
$analyser->categorise( $dlf );
- $self->assert_str_equals( 'MS Internet Exporer', $dlf->{'browser'} );
+ $self->assert_str_equals( 'MS Internet Explorer', $dlf->{'browser'} );
$self->assert_str_equals( 'Windows', $dlf->{'os'} );
$self->assert_str_equals( 'French', $dlf->{'lang'} );
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:10 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:10 -0000
Subject: [COMMIT LOGREPORT] service ChangeLog,1.103,1.104
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv29399
Modified Files:
ChangeLog
Log Message:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/logreport/service/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog 9 Feb 2008 00:29:07 -0000 1.103
+++ ChangeLog 13 Feb 2008 21:34:20 -0000 1.104
@@ -1,3 +1,48 @@
+2008-02-11 06:38 Joost van Baal
+
+ * www/lib/: Lire/WWW/UserAgent/Browser.pm,
+ tests/UserAgentCategoriserTest.pm: fix typo: s/Internet
+ Exporer/Internet Explorer/
+
+2008-02-11 00:17 Joost van Baal
+
+ * doc/BUGS: oops, we have missed some other patches to. added as
+ todo-item, to be dealt with _before_ upcoming release
+
+2008-02-09 02:27 Joost van Baal
+
+ * NEWS: record some older news, for upcoming release
+
+2008-02-09 02:24 Joost van Baal
+
+ * configure.in: add comment on gettext stuff
+
+2008-02-09 02:06 Joost van Baal
+
+ * firewall/lib/FortigateDlfConverter.pm: add some notes explaining
+ what fortigate is
+
+2008-02-09 01:58 Joost van Baal
+
+ * firewall/lib/: Makefile.am, fortigate_init: deal with installing
+ FortigateDlfConverter.pm
+
+2008-02-09 01:55 Joost van Baal
+
+ * firewall/lib/FortigateDlfConverter.pm: Contribution by Jean
+ Benoit Marzio, as per
+
+ To: development at list.l.o
+ Date: Thu, 10 Jan 2008 16:13:58 +0100
+ Message-Id: <200801101613.58897.jbmarzio at netstaff.fr>
+ Subject: [LogReport Development] Fortinet Firewall log converter
+
+ stating
+
+ I've needed a Dlf converter for Fortinet firewall. I wroten a
+ piece of code from other converter. As this code helps me, it
+ may help some of you.
+
2007-06-04 11:38 Wytze van der Raay
* NEWS, README.lire-client, doc/dev-manual.dbx,
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:11 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:11 -0000
Subject: [COMMIT LOGREPORT] package/debian changelog,1.135,1.136
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8784
Modified Files:
changelog
Log Message:
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- changelog 17 Oct 2007 08:51:13 -0000 1.135
+++ changelog 10 Feb 2008 06:03:28 -0000 1.136
@@ -2,8 +2,10 @@
* debian/README.Debian: added hint on how to disable default report
generating cronjobs.
+ * debian/exim.cfg: Convert from exim3 to exim4 style. exim3 is obsolete
+ since Debian sarge (2005). Thanks Noah Slater. (Closes: #456910).
- -- Joost van Baal Wed, 17 Oct 2007 10:49:51 +0200
+ -- Joost van Baal Sun, 10 Feb 2008 07:02:32 +0100
lire (2:2.0.2-5) unstable; urgency=low
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:11 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:11 -0000
Subject: [COMMIT LOGREPORT] service/all/lib/config-spec lire.xml.in, 1.18,
1.19
Message-ID:
Update of /cvsroot/logreport/service/all/lib/config-spec
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5796/all/lib/config-spec
Modified Files:
lire.xml.in
Log Message:
Contribution by Konstantinos Koukopoulos, as per
To: LogReport Development List
Subject: Re: patch for Report Job name in lire(1)
Date: Tue, 20 Sep 2005 15:19:49 +0300
Message-Id: <200509201519.50107.Software.Lire at noc.edunet.gr>
stating
It has been noted that lire(1) allows you to incorrectly use spaces and other
characters to name a Report Job. Also, although the sidebar in lire(1) notes
that you must only use alphanumerics, hyphens and underscores, this is not
mentioned in the user manual. I've attached a patch against cvs which:
a) adds a to doc/user_manual.dbx
b) adds two lines to all/lib/Lire/UI/StringWidget.pm so that the TextEntry
dialog uses the 'valid-re' attribute of
c) added a regexp to all/lib/config-spec/lire.xml.in to be used for the Report
Job name field.
Index: lire.xml.in
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/config-spec/lire.xml.in,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- lire.xml.in 4 Mar 2005 16:46:22 -0000 1.18
+++ lire.xml.in 27 Feb 2008 14:26:57 -0000 1.19
@@ -533,7 +533,7 @@
ReportJobs configured in the current
store.
-
+
Name of the ReportJob.
It is needed to identify the report jobs for Lire to
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:11 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:11 -0000
Subject: [COMMIT LOGREPORT] service NEWS,1.274,1.275 VERSION,1.13,1.14
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16017
Modified Files:
NEWS VERSION
Log Message:
2.0.2.99.1 release
Index: NEWS
===================================================================
RCS file: /cvsroot/logreport/service/NEWS,v
retrieving revision 1.274
retrieving revision 1.275
diff -u -r1.274 -r1.275
--- NEWS 9 Feb 2008 01:27:58 -0000 1.274
+++ NEWS 3 Mar 2008 05:34:59 -0000 1.275
@@ -6,20 +6,26 @@
Refer to ChangeLog for detailed per-file info.
-Copyright (C) 2000, 2001, 2002, 2003, 2004 Stichting LogReport Foundation
- LogReport at LogReport.org
+Copyright (C) 2000, 2001, 2002, 2003, 2004 Stichting LogReport
+ Foundation
Copyright (C) 2006, 2007, 2008 Joost van Baal
-version UNRELEASED - Month dd yyyy
+version 2.0.2.99.1 - March 3 2008
-- Bug fixes
+- This is a prerelease for upcoming 2.0.3.
- * Various fixes in merging and generating PDF reports. Thanks to Stefan
- Schuermans for the patches.
+- Bug fixes:
-- FIXME
+ * Various fixes in merging and generating PDF reports. Thanks to
+ Stefan Schuermans for the patches.
+ * Fix in lire's behaviour when Report Jobs are incorrectly named.
+ Thanks to Konstantinos Koukopoulos for the patches.
+- New DLF converter contribued by Lire's users:
+ * FortigateDlfConverter: converts FortiGate 3.x packet log to
+ firewall DLF format. Thanks to Jean Benoit Marzio for this
+ contribution.
version 2.0.2 - July 26 2006
Index: VERSION
===================================================================
RCS file: /cvsroot/logreport/service/VERSION,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- VERSION 26 Jul 2006 16:04:49 -0000 1.13
+++ VERSION 3 Mar 2008 05:34:59 -0000 1.14
@@ -1 +1 @@
-2.0.2
+2.0.2.99.1
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:12 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:12 -0000
Subject: [COMMIT LOGREPORT] service/doc BUGS,1.258,1.259
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7700/doc
Modified Files:
BUGS
Log Message:
begin preparing next release, new plans
Index: BUGS
===================================================================
RCS file: /cvsroot/logreport/service/doc/BUGS,v
retrieving revision 1.258
retrieving revision 1.259
diff -u -r1.258 -r1.259
--- BUGS 27 Feb 2008 14:41:39 -0000 1.258
+++ BUGS 3 Mar 2008 06:34:36 -0000 1.259
@@ -30,6 +30,17 @@
)
+FIRST PRIO:
+- make sure "make distcheck" works after a "make maintainer-clean-recursive".
+ it seems to fail now.
+- 2.0.2.99.1 was never released, due to build problems. retag 2.0.2.99.2, and
+ ship that.
+
+
+
+
+
+
- serious: Lire requires GNU Make. Specifically all/po/Makefile.am does.
This is tedious for Solaris users (and BSD users, as well). See
Date: Sat, 30 Oct 2004 23:13:33 +0200
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:13 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:13 -0000
Subject: [COMMIT LOGREPORT] service ChangeLog,1.104,1.105
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv29764
Modified Files:
ChangeLog
Log Message:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/logreport/service/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog 13 Feb 2008 21:34:20 -0000 1.104
+++ ChangeLog 3 Mar 2008 04:49:03 -0000 1.105
@@ -1,3 +1,34 @@
+2008-02-27 15:41 Joost van Baal
+
+ * doc/BUGS: patches have been dealt with (2 were listed as patches
+ but did actually not contain a suitable patch)
+
+2008-02-27 15:26 Joost van Baal
+
+ * all/lib/Lire/UI/StringWidget.pm, all/lib/config-spec/lire.xml.in,
+ doc/user-manual.dbx: Contribution by Konstantinos Koukopoulos, as
+ per
+
+ To: LogReport Development List
+ Subject: Re: patch for Report Job name in lire(1)
+ Date: Tue, 20 Sep 2005 15:19:49 +0300
+ Message-Id: <200509201519.50107.Software.Lire at noc.edunet.gr>
+
+ stating
+
+ It has been noted that lire(1) allows you to incorrectly use
+ spaces and other characters to name a Report Job. Also, although
+ the sidebar in lire(1) notes that you must only use alphanumerics,
+ hyphens and underscores, this is not mentioned in the user manual.
+ I've attached a patch against cvs which:
+
+ a) adds a to doc/user_manual.dbx
+ b) adds two lines to all/lib/Lire/UI/StringWidget.pm so that the
+ TextEntry dialog uses the 'valid-re' attribute of
+
+ c) added a regexp to all/lib/config-spec/lire.xml.in to be used
+ for the Report Job name field.
+
2008-02-11 06:38 Joost van Baal
* www/lib/: Lire/WWW/UserAgent/Browser.pm,
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:13 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:13 -0000
Subject: [COMMIT LOGREPORT] service/doc user-manual.dbx,1.89,1.90
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5796/doc
Modified Files:
user-manual.dbx
Log Message:
Contribution by Konstantinos Koukopoulos, as per
To: LogReport Development List
Subject: Re: patch for Report Job name in lire(1)
Date: Tue, 20 Sep 2005 15:19:49 +0300
Message-Id: <200509201519.50107.Software.Lire at noc.edunet.gr>
stating
It has been noted that lire(1) allows you to incorrectly use spaces and other
characters to name a Report Job. Also, although the sidebar in lire(1) notes
that you must only use alphanumerics, hyphens and underscores, this is not
mentioned in the user manual. I've attached a patch against cvs which:
a) adds a to doc/user_manual.dbx
b) adds two lines to all/lib/Lire/UI/StringWidget.pm so that the TextEntry
dialog uses the 'valid-re' attribute of
c) added a regexp to all/lib/config-spec/lire.xml.in to be used for the Report
Job name field.
Index: user-manual.dbx
===================================================================
RCS file: /cvsroot/logreport/service/doc/user-manual.dbx,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- user-manual.dbx 4 Jun 2007 09:38:24 -0000 1.89
+++ user-manual.dbx 27 Feb 2008 14:26:58 -0000 1.90
@@ -1839,6 +1839,12 @@
automatically be gnerated from the month daily reports.
+
+ The name of a Report Job should contain only alphanumeric
+ alphanumeric characters, hyphens or underscores.
+
+
+
Report Schedules
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:14 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:14 -0000
Subject: [COMMIT LOGREPORT] service bootstrap,1.10,1.11
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1489
Modified Files:
bootstrap
Log Message:
update comments about versions of autotools needed
Index: bootstrap
===================================================================
RCS file: /cvsroot/logreport/service/bootstrap,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- bootstrap 30 May 2006 04:32:54 -0000 1.10
+++ bootstrap 3 Mar 2008 04:59:23 -0000 1.11
@@ -7,11 +7,9 @@
#
# beware! Lire build system is tested to work with automake/aclocal 1.8.5
-# and autoconf 2.59d only.
+# and autoconf 2.59d only. "make distcheck" fails though.
#
-# However, adding "all: all-redirect" as the first rules in include/*.mk seems
-# to make it possible to build with aclocal-1.4 and automake-1.4. "make
-# distcheck" fails though.
+# as of 2003-09-11, "make distcheck" ran successful.
set -x
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:14 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:14 -0000
Subject: [COMMIT LOGREPORT] service Makefile.am,1.123,1.124
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv14206
Modified Files:
Makefile.am
Log Message:
"make distcheck" now works again
Index: Makefile.am
===================================================================
RCS file: /cvsroot/logreport/service/Makefile.am,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- Makefile.am 1 Sep 2004 03:55:08 -0000 1.123
+++ Makefile.am 3 Mar 2008 05:30:14 -0000 1.124
@@ -42,3 +42,4 @@
README.lire-client \
$(srcdir)/include/*.mk
+DISTCLEANFILES = $(PACKAGE)-$(VERSION).tar.gz
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:15 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:15 -0000
Subject: [COMMIT LOGREPORT] service/doc BUGS,1.257,1.258
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv12762/doc
Modified Files:
BUGS
Log Message:
patches have been dealt with (2 were listed as patches but did actually not contain a suitable patch)
Index: BUGS
===================================================================
RCS file: /cvsroot/logreport/service/doc/BUGS,v
retrieving revision 1.257
retrieving revision 1.258
diff -u -r1.257 -r1.258
--- BUGS 10 Feb 2008 23:17:17 -0000 1.257
+++ BUGS 27 Feb 2008 14:41:39 -0000 1.258
@@ -30,14 +30,6 @@
)
-- FIRST PRIO:
-
-deal with these contributed (and _old_ !) patches:
-
- Sep 19 Konstantinos Ko (2,8K) patch for Report Job name in lire(1)
- Jan 30 Robin Horton ( 12K) Fixes for pix2dlf (PIX v7+)
- May 01 Klun, Jim ( 41K) PIX Built outbound/inbound messages - sample
-
- serious: Lire requires GNU Make. Specifically all/po/Makefile.am does.
This is tedious for Solaris users (and BSD users, as well). See
Date: Sat, 30 Oct 2004 23:13:33 +0200
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:15 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:15 -0000
Subject: [COMMIT LOGREPORT] service/doc dev-manual.dbx,1.89,1.90
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5615
Modified Files:
dev-manual.dbx
Log Message:
document lag at sf cvs log availability
Index: dev-manual.dbx
===================================================================
RCS file: /cvsroot/logreport/service/doc/dev-manual.dbx,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- dev-manual.dbx 3 Mar 2008 06:28:09 -0000 1.89
+++ dev-manual.dbx 3 Mar 2008 06:30:02 -0000 1.90
@@ -2767,7 +2767,9 @@
autogenerated from the CVS commits, using the
cvs2cl tool. One could e.g. run
cvs2cl --prune --stdout -l "-d \>yesterday" -U
- ../CVSROOT/users.
+ ../CVSROOT/users. Beware! It might take SourceForge about
+ a day to make the cvs log available. So you might have to wait a day
+ between your last commit and running cvs2cl.
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:15 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:15 -0000
Subject: [COMMIT LOGREPORT] service/all/lib/Lire/UI StringWidget.pm, 1.8,
1.9
Message-ID:
Update of /cvsroot/logreport/service/all/lib/Lire/UI
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5796/all/lib/Lire/UI
Modified Files:
StringWidget.pm
Log Message:
Contribution by Konstantinos Koukopoulos, as per
To: LogReport Development List
Subject: Re: patch for Report Job name in lire(1)
Date: Tue, 20 Sep 2005 15:19:49 +0300
Message-Id: <200509201519.50107.Software.Lire at noc.edunet.gr>
stating
It has been noted that lire(1) allows you to incorrectly use spaces and other
characters to name a Report Job. Also, although the sidebar in lire(1) notes
that you must only use alphanumerics, hyphens and underscores, this is not
mentioned in the user manual. I've attached a patch against cvs which:
a) adds a to doc/user_manual.dbx
b) adds two lines to all/lib/Lire/UI/StringWidget.pm so that the TextEntry
dialog uses the 'valid-re' attribute of
c) added a regexp to all/lib/config-spec/lire.xml.in to be used for the Report
Job name field.
Index: StringWidget.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/UI/StringWidget.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- StringWidget.pm 9 Jul 2004 21:14:14 -0000 1.8
+++ StringWidget.pm 27 Feb 2008 14:26:57 -0000 1.9
@@ -20,12 +20,14 @@
check_object_param( $userargs{'value'}, 'value',
'Lire::Config::Scalar' );
+ my $regexp = $userargs{'value'}->spec()->valid_re();
return
$class->Curses::UI::TextEntry::new( %userargs,
'-height' => 1,
'-sbborder' => 1,
'-text' => $userargs{'value'}->get(),
'-onchange' => \&_on_change_cb,
+ '-regexp' => $regexp,
);
}
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:15 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:15 -0000
Subject: [COMMIT LOGREPORT] package/debian changelog, 1.140, 1.141 control,
1.48, 1.49
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1937/debian
Modified Files:
changelog control
Log Message:
build dependencies housekeeping
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -r1.140 -r1.141
--- changelog 7 Mar 2008 05:40:40 -0000 1.140
+++ changelog 7 Mar 2008 05:44:19 -0000 1.141
@@ -9,9 +9,11 @@
* debian/copyright: machine-interpretable, using proposal by Sam Hocevar
(http://wiki.debian.org/Proposals/CopyrightFormat).
* debian/{compat,rules}: Store debhelper compatibility version in
- debian/compat, not DH_COMPAT variable.
+ debian/compat, not DH_COMPAT variable. (Thanks lintian.)
* debian/compat: Raise debhelper compatibility from 4 to 5.
- * debian/rules: Don't ignore errors from make distclean.
+ * debian/rules: Don't ignore errors from make distclean. (Thanks lintian.)
+ * debian/control: Don't use unneeded Debian revisions in build dependencies:
+ be nice to backporters. (Thanks lintian.)
-- Joost van Baal Sun, 10 Feb 2008 07:02:32 +0100
Index: control
===================================================================
RCS file: /cvsroot/logreport/package/debian/control,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- control 5 Mar 2008 05:49:06 -0000 1.48
+++ control 7 Mar 2008 05:44:19 -0000 1.49
@@ -4,7 +4,7 @@
Maintainer: Wolfgang Sourdeau
Uploaders: Joost van Baal
Build-Depends: debhelper (>= 4.0.2)
-Build-Depends-Indep: perl-base (>= 5.8.4), libdbd-sqlite2-perl (>= 1:0.33-1), libxml-parser-perl, libcurses-ui-perl (>= 0.92-1), libintl-perl (>= 1.10-1), libtime-modules-perl
+Build-Depends-Indep: perl-base (>= 5.8.4), libdbd-sqlite2-perl (>= 1:0.33), libxml-parser-perl, libcurses-ui-perl (>= 0.92), libintl-perl (>= 1.10), libtime-modules-perl
Standards-Version: 3.7.2
Homepage: http://www.logreport.org/
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:16 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:16 -0000
Subject: [COMMIT LOGREPORT] service ChangeLog,1.105,1.106
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29121
Modified Files:
ChangeLog
Log Message:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/logreport/service/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog 3 Mar 2008 04:49:03 -0000 1.105
+++ ChangeLog 8 Mar 2008 10:03:52 -0000 1.106
@@ -1,3 +1,53 @@
+2008-03-05 07:46 Joost van Baal
+
+ * AUTHORS: more exact representation of license conditions
+
+2008-03-03 08:16 Joost van Baal
+
+ * NEWS: start work on new release
+
+2008-03-03 07:56 Joost van Baal
+
+ * NEWS, VERSION: 2.0.2.99.2 release
+
+2008-03-03 07:54 Joost van Baal
+
+ * bootstrap: document new insights in workarounds for build
+ troubles
+
+2008-03-03 07:34 Joost van Baal
+
+ * NEWS, doc/BUGS: begin preparing next release, new plans
+
+2008-03-03 07:30 Joost van Baal
+
+ * doc/dev-manual.dbx: document lag at sf cvs log availability
+
+2008-03-03 07:28 Joost van Baal
+
+ * doc/dev-manual.dbx: more realistic example of cvs tagging a
+ release
+
+2008-03-03 07:27 Joost van Baal
+
+ * bootstrap: document build troubles
+
+2008-03-03 06:34 Joost van Baal
+
+ * NEWS, VERSION: 2.0.2.99.1 release
+
+2008-03-03 06:33 Joost van Baal
+
+ * all/po/: fr.po, nl.po: updated by "make dist"
+
+2008-03-03 06:30 Joost van Baal
+
+ * Makefile.am: "make distcheck" now works again
+
+2008-03-03 05:59 Joost van Baal
+
+ * bootstrap: update comments about versions of autotools needed
+
2008-02-27 15:41 Joost van Baal
* doc/BUGS: patches have been dealt with (2 were listed as patches
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:16 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:16 -0000
Subject: [COMMIT LOGREPORT] service bootstrap,1.11,1.12
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv4439
Modified Files:
bootstrap
Log Message:
document build troubles
Index: bootstrap
===================================================================
RCS file: /cvsroot/logreport/service/bootstrap,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- bootstrap 3 Mar 2008 04:59:23 -0000 1.11
+++ bootstrap 3 Mar 2008 06:27:00 -0000 1.12
@@ -7,9 +7,10 @@
#
# beware! Lire build system is tested to work with automake/aclocal 1.8.5
-# and autoconf 2.59d only. "make distcheck" fails though.
+# and autoconf 2.61 only. "make distcheck" should work:
#
# as of 2003-09-11, "make distcheck" ran successful.
+# as of 2008-03-03, it ran successful under some (yet unknown) circumstances.
set -x
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:17 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:17 -0000
Subject: [COMMIT LOGREPORT] service/doc BUGS,1.261,1.262
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31519/doc
Modified Files:
BUGS
Log Message:
Index: BUGS
===================================================================
RCS file: /cvsroot/logreport/service/doc/BUGS,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- BUGS 8 Mar 2008 09:58:17 -0000 1.261
+++ BUGS 9 Mar 2008 06:25:37 -0000 1.262
@@ -35,6 +35,8 @@
- serious: investige manpage numbering issue, as reported by Peter Bex (and
a related lintian issue)
+- lire >= 2:2.0.2.99.2-1 is ready for upload to Debian unstable
+
- serious: Lire requires GNU Make. Specifically all/po/Makefile.am does.
This is tedious for Solaris users (and BSD users, as well). See
Date: Sat, 30 Oct 2004 23:13:33 +0200
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:18 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:18 -0000
Subject: [COMMIT LOGREPORT] service NEWS,1.275,1.276
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7700
Modified Files:
NEWS
Log Message:
begin preparing next release, new plans
Index: NEWS
===================================================================
RCS file: /cvsroot/logreport/service/NEWS,v
retrieving revision 1.275
retrieving revision 1.276
diff -u -r1.275 -r1.276
--- NEWS 3 Mar 2008 05:34:59 -0000 1.275
+++ NEWS 3 Mar 2008 06:34:36 -0000 1.276
@@ -10,9 +10,15 @@
Foundation
Copyright (C) 2006, 2007, 2008 Joost van Baal
-version 2.0.2.99.1 - March 3 2008
+version in cvs
- This is a prerelease for upcoming 2.0.3.
+- FIXME
+
+
+version 2.0.2.99.1 - March 3 2008
+
+- This version is not publicly released.
- Bug fixes:
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:18 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:18 -0000
Subject: [COMMIT LOGREPORT] docs/website/htdocs dl.html,1.8,1.9
Message-ID:
Update of /cvsroot/logreport/docs/website/htdocs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv601
Modified Files:
dl.html
Log Message:
fix syntax
Index: dl.html
===================================================================
RCS file: /cvsroot/logreport/docs/website/htdocs/dl.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- dl.html 4 Jun 2007 08:40:42 -0000 1.8
+++ dl.html 9 Mar 2008 19:56:35 -0000 1.9
@@ -57,20 +57,19 @@
3.4 Other RPM-based distributions
-
+
If you are using another RPM-based distribution, you'll have various degrees
of success on using the provided RPMS: it all depends on how similar to one of
-the already supported distribution your system is,
- Don't hesitate to contact us on our support
- mailing list () to provide
- feedback on how these RPMS works on your favorite distribution.
-
+the already supported distribution your system is. Don't hesitate to contact
+us on our support mailing list (questions(a)lists.logreport.org)
+to provide feedback on how these RPMS work on your favorite distribution.
You can also try to download the source RPMS and rebuild it for
- your platform using rpmbuild. Reports any changes
- required to make it work on your platform to .
-
+your platform using rpmbuild. Reports any changes
+required to make it work on your platform to questions(a)lists.logreport.org.
3.5 BSD Ports
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:19 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:19 -0000
Subject: [COMMIT LOGREPORT] service bootstrap,1.12,1.13
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv15607
Modified Files:
bootstrap
Log Message:
document new insights in workarounds for build troubles
Index: bootstrap
===================================================================
RCS file: /cvsroot/logreport/service/bootstrap,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- bootstrap 3 Mar 2008 06:27:00 -0000 1.12
+++ bootstrap 3 Mar 2008 06:54:15 -0000 1.13
@@ -10,7 +10,7 @@
# and autoconf 2.61 only. "make distcheck" should work:
#
# as of 2003-09-11, "make distcheck" ran successful.
-# as of 2008-03-03, it ran successful under some (yet unknown) circumstances.
+# as of 2008-03-03, it ran successful _only_ after running "make".
set -x
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:20 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:20 -0000
Subject: [COMMIT LOGREPORT] docs/website/htdocs dl.html,1.9,1.10
Message-ID:
Update of /cvsroot/logreport/docs/website/htdocs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5147
Modified Files:
dl.html
Log Message:
tnx peter bex
Index: dl.html
===================================================================
RCS file: /cvsroot/logreport/docs/website/htdocs/dl.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dl.html 9 Mar 2008 19:56:35 -0000 1.9
+++ dl.html 9 Mar 2008 20:08:53 -0000 1.10
@@ -73,12 +73,23 @@
3.5 BSD Ports
- Thanks to Edwin Groothuis, Lire is in
-the
-FreeBSD ports collection. Get it from your
-favourite mirror. You can get Edwin's bleeding edge work by peeking
+ Thanks to Edwin Groothuis, Lire is
+in the
+FreeBSD ports collection. Get it from your
+favourite mirror. You can get Edwin's bleeding edge work by peeking
at CVS.
+ Thanks to Peter Bex, Lire is in pkgsrc-wip. So if you're running
+NetBSD or DragonFly, you'll have no problems
+getting Lire installed and running: check out the Lire page on pkgsrc-wip. One day, this
+Lire port might show up on the "real"
+pkgsrc.
We are not aware of Lire ports for other BSD's. If you know about one,
please tell us!
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:21 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:21 -0000
Subject: [COMMIT LOGREPORT] service/all/lib/Lire/Config Scalar.pm, 1.15,
1.16 Value.pm, 1.17, 1.18
Message-ID:
Update of /cvsroot/logreport/service/all/lib/Lire/Config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22045/Config
Modified Files:
Scalar.pm Value.pm
Log Message:
fix syntax in manpages: make NAME section parsable by mandb
Index: Scalar.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/Config/Scalar.pm,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- Scalar.pm 23 Jul 2006 13:16:30 -0000 1.15
+++ Scalar.pm 9 Mar 2008 19:27:31 -0000 1.16
@@ -14,7 +14,7 @@
=head1 NAME
-Lire::Config::Scalar
+Lire::Config::Scalar - Lire Config container for scalar values
=head1 SYNOPSIS
@@ -22,7 +22,7 @@
=head1 DESCRIPTION
-This package contains the classes use to represent an actual
+This package contains the class to represent a scalar in an actual
configuration.
=head1 Lire::Config::Scalar
Index: Value.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/Config/Value.pm,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- Value.pm 23 Jul 2006 13:16:31 -0000 1.17
+++ Value.pm 9 Mar 2008 19:27:31 -0000 1.18
@@ -18,7 +18,7 @@
=head1 NAME
-Lire::Config::Value
+Lire::Config::Value - Lire value containers for configuration variables
=head1 SYNOPSIS
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:21 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:21 -0000
Subject: [COMMIT LOGREPORT] service/doc lire.ent, 1.15, 1.16 user-manual.dbx,
1.90, 1.91
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29942
Modified Files:
lire.ent user-manual.dbx
Log Message:
Lire is reported to run OK on NetBSD. Thanks to Peter Bex
Index: lire.ent
===================================================================
RCS file: /cvsroot/logreport/service/doc/lire.ent,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- lire.ent 3 Sep 2004 04:15:53 -0000 1.15
+++ lire.ent 9 Mar 2008 19:48:38 -0000 1.16
@@ -53,6 +53,7 @@
Red Hat Linux">
OpenBSD">
FreeBSD">
+NetBSD">
MacOS X">
Index: user-manual.dbx
===================================================================
RCS file: /cvsroot/logreport/service/doc/user-manual.dbx,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- user-manual.dbx 27 Feb 2008 14:26:58 -0000 1.90
+++ user-manual.dbx 9 Mar 2008 19:48:38 -0000 1.91
@@ -246,7 +246,7 @@
- BSD (&FreeBSD;, &OpenBSD;, Mac OS X)
+ BSD (&FreeBSD;, &OpenBSD;, &NetBSD;, Mac OS X)
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:21 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:21 -0000
Subject: [COMMIT LOGREPORT] service/all/lib/Lire Average.pm, 1.16,
1.17 Count.pm, 1.15, 1.16 FilterExpr.pm, 1.32, 1.33 First.pm,
1.14, 1.15 I18N.pm, 1.25, 1.26 Last.pm, 1.13, 1.14 Max.pm, 1.9,
1.10 Min.pm, 1.8, 1.9 Sum.pm, 1.16, 1.17
Message-ID:
Update of /cvsroot/logreport/service/all/lib/Lire
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22045
Modified Files:
Average.pm Count.pm FilterExpr.pm First.pm I18N.pm Last.pm
Max.pm Min.pm Sum.pm
Log Message:
fix syntax in manpages: make NAME section parsable by mandb
Index: Average.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/Average.pm,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- Average.pm 23 Jul 2006 13:16:27 -0000 1.16
+++ Average.pm 9 Mar 2008 19:27:30 -0000 1.17
@@ -16,11 +16,11 @@
=head1 NAME
-Lire::Average
+Lire::Average - Lire class that implements the avg operator
=head1 SYNOPSIS
-FIXME
+ use Lire::Average
=head1 DESCRIPTION
Index: Count.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/Count.pm,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- Count.pm 23 Jul 2006 13:16:28 -0000 1.15
+++ Count.pm 9 Mar 2008 19:27:31 -0000 1.16
@@ -13,11 +13,11 @@
=head1 NAME
-Lire::Count
+Lire::Count - Lire class that implements the count operator
=head1 SYNOPSIS
-FIXME
+ use Lire::Count
=head1 DESCRIPTION
Index: FilterExpr.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/FilterExpr.pm,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- FilterExpr.pm 23 Jul 2006 13:16:29 -0000 1.32
+++ FilterExpr.pm 9 Mar 2008 19:27:31 -0000 1.33
@@ -626,13 +626,16 @@
=head1 NAME
-Lire::FilterExpr -
+Lire::FilterExpr - Lire Filter expression
=head1 SYNOPSIS
+ use Lire::FilterExpr
=head1 DESCRIPTION
+FIXME
+
=head1 AUTHOR
Francis J. Lacoste
Index: First.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/First.pm,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- First.pm 23 Jul 2006 13:16:29 -0000 1.14
+++ First.pm 9 Mar 2008 19:27:31 -0000 1.15
@@ -13,11 +13,11 @@
=head1 NAME
-Lire::First
+Lire::First - Lire class that implements the first operator
=head1 SYNOPSIS
-FIXME
+use Lire::First
=head1 DESCRIPTION
Index: I18N.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/I18N.pm,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- I18N.pm 23 Jul 2006 13:16:29 -0000 1.25
+++ I18N.pm 9 Mar 2008 19:27:31 -0000 1.26
@@ -33,18 +33,16 @@
=head1 NAME
-Lire::I18N
+Lire::I18N - Lire internationalisation class
=head1 SYNOPSIS
-FIXME
+ use Lire::I18N
=head1 DESCRIPTION
FIXME
-=head1 FUNCTIONS
-
=cut
sub set_fh_encoding {
@@ -159,10 +157,6 @@
__END__
-=head1 SEE ALSO
-
-FIXME
-
=head1 AUTHORS
Francis J. Lacoste
Index: Last.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/Last.pm,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Last.pm 23 Jul 2006 13:16:29 -0000 1.13
+++ Last.pm 9 Mar 2008 19:27:31 -0000 1.14
@@ -13,15 +13,15 @@
=head1 NAME
-Lire::Last
+Lire::Last - Lire class that implements the last operator
=head1 SYNOPSIS
-FIXME
+ use Lire::Last
=head1 DESCRIPTION
-Class that implements the first operator. This operator will output
+Class that implements the last operator. This operator will output
the last value appearing in its field when the DLF records are sorted
according to the C attribute. The default sort order is the
default timestamp sort.
Index: Max.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/Max.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- Max.pm 23 Jul 2006 13:16:29 -0000 1.9
+++ Max.pm 9 Mar 2008 19:27:31 -0000 1.10
@@ -12,11 +12,11 @@
=head1 NAME
-Lire::Max
+Lire::Max - Lire class that implements the max operator
=head1 SYNOPSIS
-FIXME
+ use Lire::Max
=head1 DESCRIPTION
Index: Min.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/Min.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- Min.pm 23 Jul 2006 13:16:29 -0000 1.8
+++ Min.pm 9 Mar 2008 19:27:31 -0000 1.9
@@ -12,11 +12,11 @@
=head1 NAME
-Lire::Min
+Lire::Min - Lire class that implements the min operator
=head1 SYNOPSIS
-FIXME
+ use Lire::Min
=head1 DESCRIPTION
Index: Sum.pm
===================================================================
RCS file: /cvsroot/logreport/service/all/lib/Lire/Sum.pm,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- Sum.pm 23 Jul 2006 13:16:30 -0000 1.16
+++ Sum.pm 9 Mar 2008 19:27:31 -0000 1.17
@@ -13,11 +13,11 @@
=head1 NAME
-Lire::Sum
+Lire::Sum - Lire class that implements the sum operator
=head1 SYNOPSIS
-FIXME
+ use Lire::Sum
=head1 DESCRIPTION
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:21 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:21 -0000
Subject: [COMMIT LOGREPORT] service NEWS,1.276,1.277 VERSION,1.14,1.15
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16407
Modified Files:
NEWS VERSION
Log Message:
2.0.2.99.2 release
Index: NEWS
===================================================================
RCS file: /cvsroot/logreport/service/NEWS,v
retrieving revision 1.276
retrieving revision 1.277
diff -u -r1.276 -r1.277
--- NEWS 3 Mar 2008 06:34:36 -0000 1.276
+++ NEWS 3 Mar 2008 06:56:16 -0000 1.277
@@ -10,10 +10,11 @@
Foundation
Copyright (C) 2006, 2007, 2008 Joost van Baal
-version in cvs
+version 2.0.2.99.2 - March 3 2008
- This is a prerelease for upcoming 2.0.3.
-- FIXME
+
+- No user visible changes.
version 2.0.2.99.1 - March 3 2008
Index: VERSION
===================================================================
RCS file: /cvsroot/logreport/service/VERSION,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- VERSION 3 Mar 2008 05:34:59 -0000 1.14
+++ VERSION 3 Mar 2008 06:56:16 -0000 1.15
@@ -1 +1 @@
-2.0.2.99.1
+2.0.2.99.2
From vanbaal at users.sourceforge.net Thu Mar 13 13:04:09 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Thu, 13 Mar 2008 05:04:09 -0700
Subject: [COMMIT LOGREPORT] service NEWS,1.278,1.279 VERSION,1.15,1.16
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27941
Modified Files:
NEWS VERSION
Log Message:
2.0.3 release
Index: NEWS
===================================================================
RCS file: /cvsroot/logreport/service/NEWS,v
retrieving revision 1.278
retrieving revision 1.279
diff -u -r1.278 -r1.279
--- NEWS 3 Mar 2008 07:16:39 -0000 1.278
+++ NEWS 13 Mar 2008 12:04:06 -0000 1.279
@@ -10,9 +10,10 @@
Foundation
Copyright (C) 2006, 2007, 2008 Joost van Baal
-version in cvs
+version 2.0.3 - March 13 2008
-- FIXME
+- New stable release. No user visible changes since 2.0.2.99.1
+ prerelease.
version 2.0.2.99.2 - March 3 2008
Index: VERSION
===================================================================
RCS file: /cvsroot/logreport/service/VERSION,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- VERSION 3 Mar 2008 06:56:16 -0000 1.15
+++ VERSION 13 Mar 2008 12:04:06 -0000 1.16
@@ -1 +1 @@
-2.0.2.99.2
+2.0.3
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:22 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:22 -0000
Subject: [COMMIT LOGREPORT] docs/website/htdocs/csp install.mk,1.1,1.2
Message-ID:
Update of /cvsroot/logreport/docs/website/htdocs/csp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1343
Modified Files:
install.mk
Log Message:
we are on another host now
Index: install.mk
===================================================================
RCS file: /cvsroot/logreport/docs/website/htdocs/csp/install.mk,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- install.mk 22 Apr 2007 09:41:40 -0000 1.1
+++ install.mk 9 Mar 2008 19:58:28 -0000 1.2
@@ -30,5 +30,5 @@
# See caspar(1).
#
-csp_UHOST = brouwer.uvt.nl
+csp_UHOST = freitag.uvt.nl
include caspar/mk/caspar.mk
From wraay at users.sourceforge.net Tue Mar 18 15:21:01 2008
From: wraay at users.sourceforge.net (Wytze van der Raay)
Date: Tue, 18 Mar 2008 07:21:01 -0700
Subject: [COMMIT LOGREPORT] package/rpm/SPECS lire.spec,1.29,1.30
Message-ID:
Update of /cvsroot/logreport/package/rpm/SPECS
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11933
Modified Files:
lire.spec
Log Message:
New upstream release.
Rebuilt on Fedora 7.
Index: lire.spec
===================================================================
RCS file: /cvsroot/logreport/package/rpm/SPECS/lire.spec,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- lire.spec 14 Mar 2007 14:04:28 -0000 1.29
+++ lire.spec 18 Mar 2008 14:20:59 -0000 1.30
@@ -1,6 +1,6 @@
-%define version 2.0.2
+%define version 2.0.3
%define name lire
-%define myrelease 4
+%define myrelease 1
%define epoch 4
%if %{_vendor} == MandrakeSoft
@@ -195,6 +195,10 @@
%dir %attr(0770,lire,lire) %{_var}/lib/%{name}
%changelog
+* Tue Mar 18 2008 Wytze van der Raay 2.0.3-1
+- New upstream release.
+- Rebuilt on Fedora Core 7.
+
* Wed Mar 14 2007 Wytze van der Raay 4:2.0.2-4
- Rebuilt on Fedora Core 6.
From wraay at users.sourceforge.net Tue Mar 18 15:21:43 2008
From: wraay at users.sourceforge.net (Wytze van der Raay)
Date: Tue, 18 Mar 2008 07:21:43 -0700
Subject: [COMMIT LOGREPORT] package/rpm/SPECS perl-Curses-UI.spec,1.5,1.6
Message-ID:
Update of /cvsroot/logreport/package/rpm/SPECS
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12325
Modified Files:
perl-Curses-UI.spec
Log Message:
Rebuilt on Fedora 7.
Index: perl-Curses-UI.spec
===================================================================
RCS file: /cvsroot/logreport/package/rpm/SPECS/perl-Curses-UI.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- perl-Curses-UI.spec 14 Mar 2007 14:04:28 -0000 1.5
+++ perl-Curses-UI.spec 18 Mar 2008 14:21:41 -0000 1.6
@@ -1,7 +1,7 @@
%define version 0.95
%define real_name Curses-UI
%define name perl-%{real_name}
-%define myrelease 1
+%define myrelease 2
%if %{_vendor} == MandrakeSoft
%define release %{myrelease}mdk
@@ -62,6 +62,9 @@
%{_mandir}/*/*
%changelog
+* Tue Mar 18 2008 Wytze van der Raay 0.95-2
+ - Rebuilt on Fedora Core 7.
+
* Wed Mar 14 2007 Wytze van der Raay 0.95-1
- Upstream upgrade to 0.95.
- Rebuilt on Fedora Core 6.
From wraay at users.sourceforge.net Tue Mar 18 15:22:25 2008
From: wraay at users.sourceforge.net (Wytze van der Raay)
Date: Tue, 18 Mar 2008 07:22:25 -0700
Subject: [COMMIT LOGREPORT] package/rpm/SPECS ploticus.spec,1.8,1.9
Message-ID:
Update of /cvsroot/logreport/package/rpm/SPECS
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12361
Modified Files:
ploticus.spec
Log Message:
New upstream release.
Add wrapper script to set PLOTICUS_PREFABS environment variable.
Add manual page.
Rebuilt on Fedora 7.
Index: ploticus.spec
===================================================================
RCS file: /cvsroot/logreport/package/rpm/SPECS/ploticus.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ploticus.spec 14 Mar 2007 14:04:28 -0000 1.8
+++ ploticus.spec 18 Mar 2008 14:22:23 -0000 1.9
@@ -1,7 +1,7 @@
%define name ploticus
-%define version 2.33
-%define source_ver 233
-%define myrelease 2
+%define version 2.40
+%define source_ver 240
+%define myrelease 3
%if %{_vendor} == MandrakeSoft
%define release %{myrelease}mdk
@@ -53,7 +53,6 @@
GDFONTPATH=%ttffonts \
ZFLAG="-DWZ" \
PL="pl" \
- PREFABS_DIR="%{_datadir}/%{name}" \
LOCALEOBJ="localef.o" \
LOCALE_FLAT="-DLOCALE" \
plgd18
@@ -61,9 +60,15 @@
%install
%__mkdir_p %{buildroot}%{_bindir}
%__mkdir_p %{buildroot}%{_datadir}/%{name}
+%__mkdir_p %{buildroot}%{_mandir}/man1
+echo "#! /bin/sh" >pl.sh
+echo "export PLOTICUS_PREFABS=\${PLOTICUS_PREFABS:-%{_datadir}/%{name}}">>pl.sh
+echo "exec %{_bindir}/pl.bin \"\$@\"" >>pl.sh
-%__install -m755 src/pl %{buildroot}%{_bindir}
+%__install -m755 pl.sh %{buildroot}%{_bindir}/pl
+%__install -m755 src/pl %{buildroot}%{_bindir}/pl.bin
%__install -m644 prefabs/* %{buildroot}%{_datadir}/%{name}
+%__install -m644 man/man1/pl.1 %{buildroot}%{_mandir}/man1/pl.1
%clean
rm -rf %{buildroot}
@@ -72,8 +77,15 @@
%defattr(-,root,root)
%{_bindir}/*
%{_datadir}/%{name}
+%{_mandir}/*/*
%changelog
+* Sun Mar 9 2008 Wytze van der Raay 2.40-1
+- New upstream release.
+- Add wrapper script to set PLOTICUS_PREFABS environment variable.
+- Add manual page.
+- Rebuilt on Fedora 7.
+
* Wed Mar 14 2007 Wytze van der Raay 2.33-2
- Rebuilt on Fedora Core 6.
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:24 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:24 -0000
Subject: [COMMIT LOGREPORT] service NEWS,1.277,1.278
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv24785
Modified Files:
NEWS
Log Message:
start work on new release
Index: NEWS
===================================================================
RCS file: /cvsroot/logreport/service/NEWS,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -r1.277 -r1.278
--- NEWS 3 Mar 2008 06:56:16 -0000 1.277
+++ NEWS 3 Mar 2008 07:16:39 -0000 1.278
@@ -10,6 +10,11 @@
Foundation
Copyright (C) 2006, 2007, 2008 Joost van Baal
+version in cvs
+
+- FIXME
+
+
version 2.0.2.99.2 - March 3 2008
- This is a prerelease for upcoming 2.0.3.
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:24 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:24 -0000
Subject: [COMMIT LOGREPORT] package/debian compat, NONE, 1.1 changelog,
1.138, 1.139 rules, 1.51, 1.52
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30661/debian
Modified Files:
changelog rules
Added Files:
compat
Log Message:
update debhelper compat level
--- NEW FILE: compat ---
5
# $Id: compat,v 1.1 2008/03/07 05:34:57 vanbaal Exp $
# $Source: /cvsroot/logreport/package/debian/compat,v $
#
# This is the debhelper compatibility version to use; see debhelper(7).
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- changelog 5 Mar 2008 06:41:43 -0000 1.138
+++ changelog 7 Mar 2008 05:34:57 -0000 1.139
@@ -1,5 +1,6 @@
-lire (2:X.X.X-X) UNRELEASED; urgency=low
+lire (2:2.0.2.99.2-1) UNRELEASED; urgency=low
+ * New upstream prerelease.
* debian/README.Debian: added hint on how to disable default report
generating cronjobs.
* debian/exim.cfg: Convert from exim3 to exim4 style. exim3 is obsolete
@@ -7,8 +8,11 @@
* debian/control: move url to Homepage field.
* debian/copyright: machine-interpretable, using proposal by Sam Hocevar
(http://wiki.debian.org/Proposals/CopyrightFormat).
+ * Store debhelper compatibility version in debian/compat, not DH_COMPAT
+ variable.
+ * Raise debhelper compatibility from 4 to 5.
- -- Joost van Baal Sun, 10 Feb 2008 07:02:32 +0100
+ -- Joost van Baal Sun, 10 Feb 2008 07:02:32 +0100
lire (2:2.0.2-5) unstable; urgency=low
Index: rules
===================================================================
RCS file: /cvsroot/logreport/package/debian/rules,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- rules 3 Oct 2006 11:12:06 -0000 1.51
+++ rules 7 Mar 2008 05:34:57 -0000 1.52
@@ -8,9 +8,6 @@
version=$(shell head -n 1 debian/changelog | sed -e 's/.*(\(\([0-9]\+:\)\?\([^-]\+\).*\).*).*/\3/' )
DESTDIR=$(CURDIR)/debian/$(package)
-# This is the debhelper compatability version to use.
-export DH_COMPAT=4
-
patchdir = $(CURDIR)/debian/patches
patches = $(shell ls $(patchdir) | sort)
rev_patches = $(shell ls $(patchdir) | sort -r)
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:25 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:25 -0000
Subject: [COMMIT LOGREPORT] service ChangeLog,1.106,1.107
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11721
Modified Files:
ChangeLog
Log Message:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/logreport/service/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog 8 Mar 2008 10:03:52 -0000 1.106
+++ ChangeLog 10 Mar 2008 06:23:55 -0000 1.107
@@ -1,3 +1,25 @@
+2008-03-09 21:22 Joost van Baal
+
+ * doc/BUGS: found out about manpage numbering issue. Thanks Peter
+ Bex for reporting this bug.
+
+2008-03-09 20:48 Joost van Baal
+
+ * doc/: lire.ent, user-manual.dbx: Lire is reported to run OK on
+ NetBSD. Thanks to Peter Bex
+
+2008-03-09 20:27 Joost van Baal
+
+ * all/lib/Lire/: Average.pm, Count.pm, FilterExpr.pm, First.pm,
+ I18N.pm, Last.pm, Max.pm, Min.pm, Sum.pm, Config/Scalar.pm,
+ Config/Value.pm: fix syntax in manpages: make NAME section
+ parsable by mandb
+
+2008-03-08 10:58 Joost van Baal
+
+ * doc/BUGS: added some more tasks to be fixed before upcoming
+ release
+
2008-03-05 07:46 Joost van Baal
* AUTHORS: more exact representation of license conditions
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:25 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:25 -0000
Subject: [COMMIT LOGREPORT] package/debian TODO,1.51,1.52
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28028
Modified Files:
TODO
Log Message:
Peter Bex found a bug (in private communication)
Index: TODO
===================================================================
RCS file: /cvsroot/logreport/package/debian/TODO,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- TODO 15 Nov 2006 10:26:56 -0000 1.51
+++ TODO 9 Mar 2008 19:43:48 -0000 1.52
@@ -1,5 +1,10 @@
$Id$
+As per the Debian perl-policy, lire manpages in section 1 should have .1p[.gz]
+as extension, not .1. See also e.g. the alien and the
+libparse-debianchangelog-perl packages. Thanks to Peter Bex for reporting this
+bug.
+
check lire.postrm: deluser issues.
Stuff high on our 2006-10 list
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:25 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:25 -0000
Subject: [COMMIT LOGREPORT] package/debian changelog, 1.141, 1.142 control,
1.49, 1.50
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3435/debian
Modified Files:
changelog control
Log Message:
debhelper raise
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- changelog 7 Mar 2008 05:44:19 -0000 1.141
+++ changelog 7 Mar 2008 05:48:51 -0000 1.142
@@ -10,7 +10,7 @@
(http://wiki.debian.org/Proposals/CopyrightFormat).
* debian/{compat,rules}: Store debhelper compatibility version in
debian/compat, not DH_COMPAT variable. (Thanks lintian.)
- * debian/compat: Raise debhelper compatibility from 4 to 5.
+ * debian/{compat,control}: Raise debhelper compatibility from 4 to 5.
* debian/rules: Don't ignore errors from make distclean. (Thanks lintian.)
* debian/control: Don't use unneeded Debian revisions in build dependencies:
be nice to backporters. (Thanks lintian.)
Index: control
===================================================================
RCS file: /cvsroot/logreport/package/debian/control,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- control 7 Mar 2008 05:44:19 -0000 1.49
+++ control 7 Mar 2008 05:48:51 -0000 1.50
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Wolfgang Sourdeau
Uploaders: Joost van Baal
-Build-Depends: debhelper (>= 4.0.2)
+Build-Depends: debhelper (>= 5)
Build-Depends-Indep: perl-base (>= 5.8.4), libdbd-sqlite2-perl (>= 1:0.33), libxml-parser-perl, libcurses-ui-perl (>= 0.92), libintl-perl (>= 1.10), libtime-modules-perl
Standards-Version: 3.7.2
Homepage: http://www.logreport.org/
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:26 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:26 -0000
Subject: [COMMIT LOGREPORT] service/doc BUGS,1.262,1.263
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10457
Modified Files:
BUGS
Log Message:
found out about manpage numbering issue. Thanks Peter Bex for reporting this bug.
Index: BUGS
===================================================================
RCS file: /cvsroot/logreport/service/doc/BUGS,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- BUGS 9 Mar 2008 06:25:37 -0000 1.262
+++ BUGS 9 Mar 2008 20:22:16 -0000 1.263
@@ -30,10 +30,8 @@
)
-- serious: document and announce pkgsrc port
-
-- serious: investige manpage numbering issue, as reported by Peter Bex (and
- a related lintian issue)
+- serious: announce pkgsrc port on announcement list, once stable release is
+ available.
- lire >= 2:2.0.2.99.2-1 is ready for upload to Debian unstable
@@ -67,6 +65,10 @@
make Lire unusable on Solaris. Should we drop Solaris support?
JvB, 30 October 2004
+- normal: get rid of Debian-centric .3pm extension for manpages: make it
+ configurable. Thanks to Peter Bex for reporting this.
+ JvB, 9 March 2008
+
- normal: Add support for "Message forwarded from hostname:" tag in
Lire::Syslog. Reported by Edward Quick.
From wraay at users.sourceforge.net Tue Mar 25 20:23:26 2008
From: wraay at users.sourceforge.net (Wytze van der Raay)
Date: Tue, 25 Mar 2008 19:23:26 -0000
Subject: [COMMIT LOGREPORT] package/rpm/SOURCES README.fedora,1.2,1.3
Message-ID:
Update of /cvsroot/logreport/package/rpm/SOURCES
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2037
Modified Files:
README.fedora
Log Message:
Update with Fedora 7 and Fedora 8 info.
Index: README.fedora
===================================================================
RCS file: /cvsroot/logreport/package/rpm/SOURCES/README.fedora,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- README.fedora 14 Mar 2007 14:04:09 -0000 1.2
+++ README.fedora 8 Mar 2008 16:05:48 -0000 1.3
@@ -6,13 +6,15 @@
This RPM set was made by Wytze van der Raay
The Lire RPMS for Fedora Core are available from a yum-able archive
-for Fedora Core 4, Fedora Core 5 and Fedora Core 6.
+for Fedora Core 4, Fedora Core 5, Fedora Core 6, Fedora 7 and Fedora 8.
They are available respectively from:
http://download.logreport.org/pub/rpm/fedora/4
http://download.logreport.org/pub/rpm/fedora/5
http://download.logreport.org/pub/rpm/fedora/6
+ http://download.logreport.org/pub/rpm/fedora/7
+ http://download.logreport.org/pub/rpm/fedora/8
Requirements
------------
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:27 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:27 -0000
Subject: [COMMIT LOGREPORT] service/doc BUGS,1.260,1.261
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27252/doc
Modified Files:
BUGS
Log Message:
added some more tasks to be fixed before upcoming release
Index: BUGS
===================================================================
RCS file: /cvsroot/logreport/service/doc/BUGS,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -r1.260 -r1.261
--- BUGS 5 Mar 2008 05:45:39 -0000 1.260
+++ BUGS 8 Mar 2008 09:58:17 -0000 1.261
@@ -30,6 +30,10 @@
)
+- serious: document and announce pkgsrc port
+
+- serious: investige manpage numbering issue, as reported by Peter Bex (and
+ a related lintian issue)
- serious: Lire requires GNU Make. Specifically all/po/Makefile.am does.
This is tedious for Solaris users (and BSD users, as well). See
From vanbaal at users.sourceforge.net Thu Mar 13 17:08:30 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Thu, 13 Mar 2008 09:08:30 -0700
Subject: [COMMIT LOGREPORT] package/debian changelog, 1.144,
1.145 lire.preinst, 1.10, 1.11
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20755
Modified Files:
changelog lire.preinst
Log Message:
remove code for removing obsolete converters
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -r1.144 -r1.145
--- changelog 7 Mar 2008 06:24:10 -0000 1.144
+++ changelog 13 Mar 2008 16:08:28 -0000 1.145
@@ -1,10 +1,12 @@
-lire (2:2.0.2.99.2-1) unstable; urgency=low
+lire (2:2.0.3-1) unstable; urgency=low
- * New upstream prerelease.
+ * New upstream release.
* debian/README.Debian: added hint on how to disable default report
generating cronjobs.
* debian/exim.cfg: Convert from exim3 to exim4 style. exim3 is obsolete
since Debian sarge (2005). Thanks Noah Slater. (Closes: #456910).
+ * debian/lire.preinst: remove code for removing obsolete converters: was
+ only needed for upgrades from lire < 2.0.
* debian/control: move url to Homepage field.
* debian/copyright: machine-interpretable, using proposal by Sam Hocevar
(http://wiki.debian.org/Proposals/CopyrightFormat).
@@ -17,7 +19,7 @@
* debian/control: Update Standards-Version from 3.7.2 to 3.7.3 (no
changes needed).
- -- Joost van Baal Sun, 10 Feb 2008 07:02:32 +0100
+ -- Joost van Baal Thu, 13 Mar 2008 17:02:33 +0100
lire (2:2.0.2-5) unstable; urgency=low
Index: lire.preinst
===================================================================
RCS file: /cvsroot/logreport/package/debian/lire.preinst,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- lire.preinst 8 Jun 2006 12:42:45 -0000 1.10
+++ lire.preinst 13 Mar 2008 16:08:28 -0000 1.11
@@ -148,22 +148,6 @@
db_fset lire/use_existing_user seen true || true
fi
- # removing obsolete converters (from versions prior to 2.0)
- for converter in \
- iis_ftp_init \
- ipfilter_init \
- snort_init \
- watchguard_init \
- ipchains_init \
- iptables_init \
- squid_access_init
- do
- if test -f /etc/lire/converters/$converter
- then
- echo "Removing obsolete '$converter' converter initializer..." >&2
- rm -f /etc/lire/converters/$converter
- fi
- done
;;
abort-upgrade) ;;
From vanbaal at users.sourceforge.net Thu Mar 13 17:21:22 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Thu, 13 Mar 2008 09:21:22 -0700
Subject: [COMMIT LOGREPORT] package/debian changelog, 1.145,
1.146 lire-devel-doc.doc-base.developer, 1.1,
1.2 lire-doc.doc-base.manual, 1.1, 1.2
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25708/debian
Modified Files:
changelog lire-devel-doc.doc-base.developer
lire-doc.doc-base.manual
Log Message:
new doc-base section
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- changelog 13 Mar 2008 16:08:28 -0000 1.145
+++ changelog 13 Mar 2008 16:21:20 -0000 1.146
@@ -7,6 +7,9 @@
since Debian sarge (2005). Thanks Noah Slater. (Closes: #456910).
* debian/lire.preinst: remove code for removing obsolete converters: was
only needed for upgrades from lire < 2.0.
+ * debian/{lire-doc.doc-base.manual,lire-devel-doc.doc-base.developer}:
+ move documentation from obsolete doc-base section Apps/System to
+ System/Monitoring (Thanks lintian.)
* debian/control: move url to Homepage field.
* debian/copyright: machine-interpretable, using proposal by Sam Hocevar
(http://wiki.debian.org/Proposals/CopyrightFormat).
Index: lire-devel-doc.doc-base.developer
===================================================================
RCS file: /cvsroot/logreport/package/debian/lire-devel-doc.doc-base.developer,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lire-devel-doc.doc-base.developer 13 Nov 2003 18:06:49 -0000 1.1
+++ lire-devel-doc.doc-base.developer 13 Mar 2008 16:21:20 -0000 1.2
@@ -5,7 +5,7 @@
files. The developers manual intends to serve as a get started quickly
howto for LogReport developers. It gives notes on software development,
testing and release management and various other stuff.
-Section: Apps/System
+Section: System/Monitoring
Format: PDF
Files: /usr/share/doc/lire/dev-manual.pdf.gz
Index: lire-doc.doc-base.manual
===================================================================
RCS file: /cvsroot/logreport/package/debian/lire-doc.doc-base.manual,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lire-doc.doc-base.manual 13 Nov 2003 18:06:49 -0000 1.1
+++ lire-doc.doc-base.manual 13 Mar 2008 16:21:20 -0000 1.2
@@ -9,7 +9,7 @@
or can be received via email.
.
More information is on http://www.logreport.org/ .
-Section: Apps/System
+Section: System/Monitoring
Format: PDF
Files: /usr/share/doc/lire/user-manual.pdf.gz
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:29 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:29 -0000
Subject: [COMMIT LOGREPORT] service AUTHORS,1.38,1.39
Message-ID:
Update of /cvsroot/logreport/service
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11756
Modified Files:
AUTHORS
Log Message:
more exact representation of license conditions
Index: AUTHORS
===================================================================
RCS file: /cvsroot/logreport/service/AUTHORS,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- AUTHORS 23 Jul 2006 13:15:43 -0000 1.38
+++ AUTHORS 5 Mar 2008 06:46:17 -0000 1.39
@@ -22,65 +22,6 @@
decided to transfer its copyright ownership to Stichting NLnet (
http://www.nlnet.nl/ ).
-
-Various contributors hold copyright on parts of the Lire code:
-
-
-Time, which may be in extras/ is Copyright (C) 1996-1999 David Muir
-Sharnoff .
-
-extras/unicode.tex is Copyright (C) Bruno Haible 1991, 1999
- It is part of utf8-tex 0.1 which can be obtained from
-ftp://ftp.ilog.fr/pub/Users/haible/utf8/utf8-tex-0.1.tar.gz
-
-dnszone/script/bind8_named2dlf.in, msgstore/script/dbmail2dlf.in,
-spamfilter/spamfilter.xml, spamfilter/script/spamassassin2dlf.in are Copyright
-(C) 2002 Edwin Groothuis .
-
-email/script/nms2dlf.in and msgstore/script/nmsmmp2dlf.in are Copyright (C)
-2002 Stichting LogReport Foundation , Arnaud Taddei
-and Arnaud Gaillard. msgstore/script/nmsmmp2dlf.in and nmsstore2dlf.in are
-Copyright (C) 2002 Arnaud Taddei and Arnaud Gaillard.
-
-firewall/script/cisco_ios2dlf.in is Copyright (C) 2001 Joost Bekkers
-. firewall/script/watchguard2dlf.in is Copyright (C)
-2001,2002 Joost Bekkers . proxy/script/squid_access2dlf.in
-is Copyright (C) 2001 Joost Bekkers and Copyright (C)
-2001-2002 Stichting LogReport Foundation LogReport at LogReport.org.
-
-firewall/script/fw1_lea2dlf.in and firewall/script/snort2dlf is Copyright (C)
-2003 Torsten Fellhauer .
-
-ftp/reports/bytes-by-dir-by-user-by-period.xml and
-messagestore/messagestore.xml is Copyright (C) 2002 Cedric Gross
-
-
-dns/script/bind9_query2dlf.in is Copyright (C) 2001 Joost Bekkers
-, and Copyright (C) 2000, 2001 Stichting LogReport
-Foundation LogReport at LogReport.org.
-
-www/lib/Lire/WWW/UserAgent/Browser.pm and UserAgent/OS.pm
-are Copyright (C) 2000, 2001 Laurent Destailleur
-, and Copyright (C) 2001-2002 Stichting
-LogReport Foundation LogReport at LogReport.org.
-
-all/lib/WWW/UserAgent/Robot.pm is Copyright (C) Martijn Koster, and
-Copyright (C) 2001 Stichting LogReport Foundation LogReport at LogReport.org.
-
-all/lib/Lire/ReportParser/ExcelWriter.pm contains snippets from
-Spreadsheet::WriteExcel which is Copyright (C) 2000, Andrew Benham.
-
-The SGML XML declaration xml.dcl in all/lib/xml is from the OpenJade
-project (http://openjade.sourceforge.net/) and is Copyright (c) 1994,
-1995, 1996, 1997, 1998 James Clark.
-
-firewall/filters/select-from-ip.xml, firewall/filters/select-to-ip.xml
-and firewall/reports/top-pkt-by-dst-by-port.xml are Copyright (C) 2003
-Tilburg University.
-
-Copyright notices are in the individual files.
-
-
Lire is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
@@ -96,3 +37,114 @@
http://www.gnu.org/copyleft/gpl.html or write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+Various contributors hold copyright on parts of the Lire code (the exact
+copyright notices and license conditions are in the individual files):
+
+Files: extras/Time/Timezone.pm
+Copyright: ?? 1996-1999 David Muir Sharnoff
+License: PD
+ David Muir Sharnoff disclaims any copyright and puts his contribution
+ to this module in the public domain.
+
+Files: extras/unicode.tex
+Copyright: ?? Bruno Haible 1991, 1999
+License: GPL
+ This file is under GPL, i.e. if you distribute a .fmt file containing it,
+ you must distribute complete source of the .fmt file.
+
+Files: dnszone/script/bind8_named2dlf.in, msgstore/script/dbmail2dlf.in,
+ spamfilter/spamfilter.xml, spamfilter/script/spamassassin2dlf.in
+Copyright: ?? 2002 Edwin Groothuis
+License: BSD-3
+ On Debian systems, the complete text of the three-clause BSD license
+ can be found in /usr/share/common-licenses/BSD.
+
+Files: msgstore/script/nmsmmp2dlf.in, msgstore/script/nmsstore2dlf.in
+Copyright: ?? 2002 Arnaud Taddei , Arnaud Gaillard
+ , Elie Dufraiche
+License: GPL-2+
+
+Files: firewall/script/cisco_ios2dlf.in
+Copyright: ?? 2001 Joost Bekkers
+License: GPL-2+
+
+Files: firewall/script/watchguard2dlf.in
+Copyright: ?? 2001, 2002 Joost Bekkers
+License: GPL-2+
+
+Files: proxy/script/squid_access2dlf.in
+Copyright: ?? 2001 Joost Bekkers , ?? 2001-2002 Stichting
+ LogReport Foundation LogReport at LogReport.org.
+License: GPL-2+
+
+Files: firewall/script/fw1_lea2dlf.in, firewall/script/snort2dlf
+Copyright: ?? 2003 Torsten Fellhauer
+License: GPL-2+
+
+Files: ftp/reports/bytes-by-dir-by-user-by-period.xml,
+ messagestore/messagestore.xml
+Copyright: ?? 2002 Cedric Gross
+License: GPL-2+
+
+Files: dns/script/bind9_query2dlf.in
+Copyright: ?? 2001 Joost Bekkers , ?? 2000, 2001 Stichting
+ LogReport Foundation LogReport at LogReport.org
+License: GPL-2+
+
+Files: www/lib/Lire/WWW/UserAgent/Browser.pm, www/lib/Lire/WWW/UserAgent/OS.pm
+Copyright: ?? 2000, 2001 Laurent Destailleur ,
+ ?? 2001-2002 Stichting LogReport Foundation LogReport at LogReport.org.
+License: GPL-2+
+
+Files: all/lib/WWW/UserAgent/Robot.pm
+Copyright: ?? Martijn Koster, ?? 2001 Stichting LogReport Foundation
+ LogReport at LogReport.org.
+License: GPL-2+
+ I don't want you modifying this data and then naming it in such
+ a way that confuses people into thinking they are looking at my
+ data. So be clear where you modify things.
+
+Files: all/lib/Lire/ReportParser/ExcelWriter.pm
+Copyright: ?? 2000 Andrew Benham, ?? 2000-2004 Stichting LogReport Foundation
+
+License: GPL-1+ | Artistic, GPL-2+
+ This code was inspired by the comments and programs datecalc1.pl
+ included in Spreadsheet::WriteExcel.
+
+Files: all/lib/xml/xml.dcl
+Copyright: ?? 1994, 1995, 1996, 1997, 1998 James Clark
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ ''Software''), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED ''AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL JAMES CLARK BE LIABLE FOR ANY CLAIM, DAMAGES OR
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
+ .
+ Except as contained in this notice, the name of James Clark shall
+ not be used in advertising or otherwise to promote the sale, use or
+ other dealings in this Software without prior written authorization
+ from James Clark.
+
+Files: firewall/filters/select-from-ip.xml, firewall/filters/select-to-ip.xml,
+ firewall/reports/top-pkt-by-dst-by-port.xml
+Copyright: ?? 2003 Tilburg University
+License: GPL-2+
+
+Files: all/script/lr_vendor_cron
+Copyright: ?? 2005 Joost van Baal, ?? 2000-2004 Stichting LogReport Foundation
+
+License: GPL-2+
+
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:30 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:30 -0000
Subject: [COMMIT LOGREPORT] service/all/po fr.po, 1.70, 1.71 nl.po, 1.14,
1.15
Message-ID:
Update of /cvsroot/logreport/service/all/po
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv15209
Modified Files:
fr.po nl.po
Log Message:
updated by "make dist"
Index: fr.po
===================================================================
RCS file: /cvsroot/logreport/service/all/po/fr.po,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- fr.po 12 Sep 2005 15:14:53 -0000 1.70
+++ fr.po 3 Mar 2008 05:33:00 -0000 1.71
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: Lire 1.5\n"
"Report-Msgid-Bugs-To: bugs at logreport.org\n"
-"POT-Creation-Date: 2005-06-13 11:16-0400\n"
+"POT-Creation-Date: 2008-03-03 05:56+0100\n"
"PO-Revision-Date: 2004-01-20 15:47-0500\n"
"Last-Translator: Wolfgang Sourdeau \n"
"Language-Team: LogReport \n"
@@ -1795,10 +1795,10 @@
"were compressed using gzip or compress."
msgstr ""
"Certains fichiers de journaux requiert un traitement pr?alable avant de "
-"passer au travers du moteur principale de Lire. La commande "
-"zcat est un filtre typique utilis? pour d?compresser les "
-"fichiers compress?s par gzip ou compress"
-"command> ? la vol?e."
+"passer au travers du moteur principale de Lire. La commande zcat"
+"command> est un filtre typique utilis? pour d?compresser les fichiers "
+"compress?s par gzip ou compress ? la "
+"vol?e."
#. REFERENCE: lire.xml
#: config-spec.pot.pl:342
@@ -2046,7 +2046,6 @@
"Le type de diagrammes ? g?n?rer. Les types de diagrammes sont des plugins."
#: ../lib/Lire/ReportParser/HTMLWriter.pm:310
-#: ../lib/Lire/ReportParser/LaTeXWriter.pm:280
msgid "There is no entries in this table."
msgstr "Aucune entr?e dans cette table."
@@ -2304,7 +2303,6 @@
"l'utilisateur pour les informations de t?l?charment."
#: ../lib/Lire/ReportParser/HTMLWriter.pm:221
-#: ../lib/Lire/ReportParser/LaTeXWriter.pm:334
#, perl-brace-format
msgid "Total for {nrecords} records"
msgstr "Total pour {nrecords} enreg."
@@ -2602,10 +2600,6 @@
msgid "[Configure]"
msgstr "[Configurer]"
-#: ../lib/Lire/ReportParser/LaTeXWriter.pm:330
-msgid "continued on next page"
-msgstr "poursuivi ? la page suivante"
-
#: ../lib/Lire/Error.pm:69 ../lib/Lire/Error.pm:78
#, perl-brace-format
msgid "could not open '{file}' for reading: {error}"
@@ -2704,3 +2698,6 @@
#, perl-brace-format
msgid "{program} as shipped with Lire version {version}"
msgstr "{program}, fourni avec Lire {version}"
+
+#~ msgid "continued on next page"
+#~ msgstr "poursuivi ? la page suivante"
Index: nl.po
===================================================================
RCS file: /cvsroot/logreport/service/all/po/nl.po,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- nl.po 29 May 2006 21:17:02 -0000 1.14
+++ nl.po 3 Mar 2008 05:33:00 -0000 1.15
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: Lire 1.5\n"
"Report-Msgid-Bugs-To: bugs at logreport.org\n"
-"POT-Creation-Date: 2006-05-28 22:19+0200\n"
+"POT-Creation-Date: 2008-03-03 05:56+0100\n"
"PO-Revision-Date: 2004-09-02 10:51+0200\n"
"Last-Translator: Joost van Baal \n"
"Language-Team: LogReport \n"
@@ -1865,7 +1865,6 @@
msgstr ""
#: ../lib/Lire/ReportParser/HTMLWriter.pm:310
-#: ../lib/Lire/ReportParser/LaTeXWriter.pm:280
msgid "There is no entries in this table."
msgstr ""
@@ -2070,7 +2069,6 @@
msgstr ""
#: ../lib/Lire/ReportParser/HTMLWriter.pm:221
-#: ../lib/Lire/ReportParser/LaTeXWriter.pm:334
#, perl-brace-format
msgid "Total for {nrecords} records"
msgstr "Totaal voor {nrecords} record(s)"
@@ -2328,10 +2326,6 @@
msgid "[Configure]"
msgstr "[Configureer]"
-#: ../lib/Lire/ReportParser/LaTeXWriter.pm:330
-msgid "continued on next page"
-msgstr ""
-
#: ../lib/Lire/Error.pm:69 ../lib/Lire/Error.pm:78
#, perl-brace-format
msgid "could not open '{file}' for reading: {error}"
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:30 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:30 -0000
Subject: [COMMIT LOGREPORT] service/doc dev-manual.dbx,1.88,1.89
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5092
Modified Files:
dev-manual.dbx
Log Message:
more realistic example of cvs tagging a release
Index: dev-manual.dbx
===================================================================
RCS file: /cvsroot/logreport/service/doc/dev-manual.dbx,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- dev-manual.dbx 4 Jun 2007 09:38:24 -0000 1.88
+++ dev-manual.dbx 3 Mar 2008 06:28:09 -0000 1.89
@@ -2775,7 +2775,7 @@
Tagging the CVS
- Run e.g. cvs tag release-20011017.
+ Run e.g. cvs tag release-2_0_2_99_1.
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:31 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:31 -0000
Subject: [COMMIT LOGREPORT] package/debian changelog, 1.139, 1.140 rules,
1.52, 1.53
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv441/debian
Modified Files:
changelog rules
Log Message:
do not ignore make distclean errors
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- changelog 7 Mar 2008 05:34:57 -0000 1.139
+++ changelog 7 Mar 2008 05:40:40 -0000 1.140
@@ -8,9 +8,10 @@
* debian/control: move url to Homepage field.
* debian/copyright: machine-interpretable, using proposal by Sam Hocevar
(http://wiki.debian.org/Proposals/CopyrightFormat).
- * Store debhelper compatibility version in debian/compat, not DH_COMPAT
- variable.
- * Raise debhelper compatibility from 4 to 5.
+ * debian/{compat,rules}: Store debhelper compatibility version in
+ debian/compat, not DH_COMPAT variable.
+ * debian/compat: Raise debhelper compatibility from 4 to 5.
+ * debian/rules: Don't ignore errors from make distclean.
-- Joost van Baal Sun, 10 Feb 2008 07:02:32 +0100
Index: rules
===================================================================
RCS file: /cvsroot/logreport/package/debian/rules,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- rules 7 Mar 2008 05:34:57 -0000 1.52
+++ rules 7 Mar 2008 05:40:40 -0000 1.53
@@ -62,7 +62,7 @@
dh_testroot
rm -f build-indep-stamp configure-stamp
- -$(MAKE) distclean
+ [ ! -f Makefile ] || $(MAKE) distclean
rm -f $(DESTDIR)/etc/default/lire.d/apache.cfg \
$(DESTDIR)/etc/default/lire.d/apache2.cfg \
$(DESTDIR)/etc/default/lire.d/exim.cfg \
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:31 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:31 -0000
Subject: [COMMIT LOGREPORT] package/debian changelog, 1.136, 1.137 control,
1.47, 1.48
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22928
Modified Files:
changelog control
Log Message:
move url to Homepage field
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- changelog 10 Feb 2008 06:03:28 -0000 1.136
+++ changelog 5 Mar 2008 05:49:06 -0000 1.137
@@ -4,6 +4,7 @@
generating cronjobs.
* debian/exim.cfg: Convert from exim3 to exim4 style. exim3 is obsolete
since Debian sarge (2005). Thanks Noah Slater. (Closes: #456910).
+ * debian/control: move url to Homepage field.
-- Joost van Baal Sun, 10 Feb 2008 07:02:32 +0100
Index: control
===================================================================
RCS file: /cvsroot/logreport/package/debian/control,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- control 4 Mar 2007 16:47:29 -0000 1.47
+++ control 5 Mar 2008 05:49:06 -0000 1.48
@@ -6,6 +6,7 @@
Build-Depends: debhelper (>= 4.0.2)
Build-Depends-Indep: perl-base (>= 5.8.4), libdbd-sqlite2-perl (>= 1:0.33-1), libxml-parser-perl, libcurses-ui-perl (>= 0.92-1), libintl-perl (>= 1.10-1), libtime-modules-perl
Standards-Version: 3.7.2
+Homepage: http://www.logreport.org/
Package: lire
Architecture: all
@@ -24,9 +25,6 @@
.
Using DocBook as an intermediary format, the resulting reports can be
produced in ASCII, HTML, PDF and other formats.
- .
- Lire is a software of the LogReport Foundation
- http://www.logreport.org/.
Package: lire-doc
Section: doc
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:32 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:32 -0000
Subject: [COMMIT LOGREPORT] package/debian changelog, 1.137, 1.138 copyright,
1.13, 1.14
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9938
Modified Files:
changelog copyright
Log Message:
machine-interpretable, using proposal by Sam Hocevar
(http://wiki.debian.org/Proposals/CopyrightFormat).
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- changelog 5 Mar 2008 05:49:06 -0000 1.137
+++ changelog 5 Mar 2008 06:41:43 -0000 1.138
@@ -5,6 +5,8 @@
* debian/exim.cfg: Convert from exim3 to exim4 style. exim3 is obsolete
since Debian sarge (2005). Thanks Noah Slater. (Closes: #456910).
* debian/control: move url to Homepage field.
+ * debian/copyright: machine-interpretable, using proposal by Sam Hocevar
+ (http://wiki.debian.org/Proposals/CopyrightFormat).
-- Joost van Baal Sun, 10 Feb 2008 07:02:32 +0100
Index: copyright
===================================================================
RCS file: /cvsroot/logreport/package/debian/copyright,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- copyright 8 Jun 2006 12:42:45 -0000 1.13
+++ copyright 5 Mar 2008 06:41:43 -0000 1.14
@@ -1,32 +1,125 @@
-This package was debianized by Joost van Baal on
-Wed, 18 Apr 2001 13:21:40 +0200
-
-It was downloaded from http://download.logreport.org/pub/ .
+This package was debianized by Joost van Baal on Wed, 18
+Apr 2001 13:21:40 +0200 It was downloaded from
+http://download.logreport.org/pub/ .
Upstream Authors: Joost van Baal, Wessel Dankers, Edwin "MavEtJu" Groothuis,
Francis J. Lacoste, Egon Willighagen and Wolfgang Sourdeau, for the
Stichting LogReport Foundation. Contact: logreport at logreport.org.
-Copyright:
+On Debian systems, the complete text of the GNU General Public License can be
+found in `/usr/share/common-licenses/GPL'.
- Copyright (C) 2000, 2001, 2002, 2003, 2004 Stichting LogReport Foundation
- LogReport at LogReport.org and various contributors
+See http://wiki.debian.org/Proposals/CopyrightFormat for format.
- Lire is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- Lire is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License with
- your Debian GNU/Linux system, in /usr/share/common-licenses/GPL, or with
- the Debian GNU/Linux lire source package as the file COPYING. If not,
- write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- Boston, MA 02110-1301, USA.
+Files: *
+Copyright: ?? 2000-2004 Stichting LogReport Foundation
+License: GPL-2+
+
+Files: extras/Time/Timezone.pm
+Copyright: ?? 1996-1999 David Muir Sharnoff
+License: PD
+ David Muir Sharnoff disclaims any copyright and puts his contribution
+ to this module in the public domain.
+
+Files: extras/unicode.tex
+Copyright: ?? Bruno Haible 1991, 1999
+License: GPL
+ This file is under GPL, i.e. if you distribute a .fmt file containing it,
+ you must distribute complete source of the .fmt file.
+
+Files: dnszone/script/bind8_named2dlf.in, msgstore/script/dbmail2dlf.in,
+ spamfilter/spamfilter.xml, spamfilter/script/spamassassin2dlf.in
+Copyright: ?? 2002 Edwin Groothuis
+License: BSD-3
+ On Debian systems, the complete text of the three-clause BSD license
+ can be found in /usr/share/common-licenses/BSD.
+
+Files: msgstore/script/nmsmmp2dlf.in, msgstore/script/nmsstore2dlf.in
+Copyright: ?? 2002 Arnaud Taddei , Arnaud Gaillard
+ , Elie Dufraiche
+License: GPL-2+
+
+Files: firewall/script/cisco_ios2dlf.in
+Copyright: ?? 2001 Joost Bekkers
+License: GPL-2+
+
+Files: firewall/script/watchguard2dlf.in
+Copyright: ?? 2001, 2002 Joost Bekkers
+License: GPL-2+
+
+Files: proxy/script/squid_access2dlf.in
+Copyright: ?? 2001 Joost Bekkers , ?? 2001-2002 Stichting
+ LogReport Foundation LogReport at LogReport.org.
+License: GPL-2+
+
+Files: firewall/script/fw1_lea2dlf.in, firewall/script/snort2dlf
+Copyright: ?? 2003 Torsten Fellhauer
+License: GPL-2+
+
+Files: ftp/reports/bytes-by-dir-by-user-by-period.xml,
+ messagestore/messagestore.xml
+Copyright: ?? 2002 Cedric Gross
+License: GPL-2+
+
+Files: dns/script/bind9_query2dlf.in
+Copyright: ?? 2001 Joost Bekkers , ?? 2000, 2001 Stichting
+ LogReport Foundation LogReport at LogReport.org
+License: GPL-2+
+
+Files: www/lib/Lire/WWW/UserAgent/Browser.pm, www/lib/Lire/WWW/UserAgent/OS.pm
+Copyright: ?? 2000, 2001 Laurent Destailleur ,
+ ?? 2001-2002 Stichting LogReport Foundation LogReport at LogReport.org.
+License: GPL-2+
+
+Files: all/lib/WWW/UserAgent/Robot.pm
+Copyright: ?? Martijn Koster, ?? 2001 Stichting LogReport Foundation
+ LogReport at LogReport.org.
+License: GPL-2+
+ I don't want you modifying this data and then naming it in such
+ a way that confuses people into thinking they are looking at my
+ data. So be clear where you modify things.
+
+Files: all/lib/Lire/ReportParser/ExcelWriter.pm
+Copyright: ?? 2000 Andrew Benham, ?? 2000-2004 Stichting LogReport Foundation
+
+License: GPL-1+ | Artistic, GPL-2+
+ This code was inspired by the comments and programs datecalc1.pl
+ included in Spreadsheet::WriteExcel.
+
+Files: all/lib/xml/xml.dcl
+Copyright: ?? 1994, 1995, 1996, 1997, 1998 James Clark
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ ''Software''), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED ''AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL JAMES CLARK BE LIABLE FOR ANY CLAIM, DAMAGES OR
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
+ .
+ Except as contained in this notice, the name of James Clark shall
+ not be used in advertising or otherwise to promote the sale, use or
+ other dealings in this Software without prior written authorization
+ from James Clark.
+
+Files: firewall/filters/select-from-ip.xml, firewall/filters/select-to-ip.xml,
+ firewall/reports/top-pkt-by-dst-by-port.xml
+Copyright: ?? 2003 Tilburg University
+License: GPL-2+
+
+Files: all/script/lr_vendor_cron
+Copyright: ?? 2005 Joost van Baal, ?? 2000-2004 Stichting LogReport Foundation
+
+License: GPL-2+
-On Debian GNU/Linux systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'.
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:32 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:32 -0000
Subject: [COMMIT LOGREPORT] service/doc BUGS,1.259,1.260
Message-ID:
Update of /cvsroot/logreport/service/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21481/doc
Modified Files:
BUGS
Log Message:
Index: BUGS
===================================================================
RCS file: /cvsroot/logreport/service/doc/BUGS,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -r1.259 -r1.260
--- BUGS 3 Mar 2008 06:34:36 -0000 1.259
+++ BUGS 5 Mar 2008 05:45:39 -0000 1.260
@@ -30,16 +30,6 @@
)
-FIRST PRIO:
-- make sure "make distcheck" works after a "make maintainer-clean-recursive".
- it seems to fail now.
-- 2.0.2.99.1 was never released, due to build problems. retag 2.0.2.99.2, and
- ship that.
-
-
-
-
-
- serious: Lire requires GNU Make. Specifically all/po/Makefile.am does.
This is tedious for Solaris users (and BSD users, as well). See
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:33 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:33 -0000
Subject: [COMMIT LOGREPORT] package/debian changelog,1.143,1.144
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16733/debian
Modified Files:
changelog
Log Message:
upload it to download.logreport.org
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- changelog 7 Mar 2008 06:20:55 -0000 1.143
+++ changelog 7 Mar 2008 06:24:10 -0000 1.144
@@ -1,4 +1,4 @@
-lire (2:2.0.2.99.2-1) UNRELEASED; urgency=low
+lire (2:2.0.2.99.2-1) unstable; urgency=low
* New upstream prerelease.
* debian/README.Debian: added hint on how to disable default report
From vanbaal at users.sourceforge.net Tue Mar 25 20:23:33 2008
From: vanbaal at users.sourceforge.net (Joost van Baal)
Date: Tue, 25 Mar 2008 19:23:33 -0000
Subject: [COMMIT LOGREPORT] package/debian changelog, 1.142, 1.143 control,
1.50, 1.51
Message-ID:
Update of /cvsroot/logreport/package/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15264/debian
Modified Files:
changelog control
Log Message:
check standards
Index: changelog
===================================================================
RCS file: /cvsroot/logreport/package/debian/changelog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- changelog 7 Mar 2008 05:48:51 -0000 1.142
+++ changelog 7 Mar 2008 06:20:55 -0000 1.143
@@ -14,6 +14,8 @@
* debian/rules: Don't ignore errors from make distclean. (Thanks lintian.)
* debian/control: Don't use unneeded Debian revisions in build dependencies:
be nice to backporters. (Thanks lintian.)
+ * debian/control: Update Standards-Version from 3.7.2 to 3.7.3 (no
+ changes needed).
-- Joost van Baal Sun, 10 Feb 2008 07:02:32 +0100
Index: control
===================================================================
RCS file: /cvsroot/logreport/package/debian/control,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- control 7 Mar 2008 05:48:51 -0000 1.50
+++ control 7 Mar 2008 06:20:55 -0000 1.51
@@ -5,7 +5,7 @@
Uploaders: Joost van Baal
Build-Depends: debhelper (>= 5)
Build-Depends-Indep: perl-base (>= 5.8.4), libdbd-sqlite2-perl (>= 1:0.33), libxml-parser-perl, libcurses-ui-perl (>= 0.92), libintl-perl (>= 1.10), libtime-modules-perl
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
Homepage: http://www.logreport.org/
Package: lire