[OpenPKG] Version Tracking Report (2004-02-06 07:44)

2004-02-05 Thread OpenPKG Version Tracker
 OpenPKG Version Tracking Report
 ===

 Reporting Time:2004-02-06 07:44
 Tracking Duration: 0:00:00 (H:M:S)
 Tracking Input:1002 sources (673 packages)
 Tracking Result:   941 up-to-date, 18 out-dated, 39 error

 The following 18 sources were determined to be out-dated because newer
 vendor versions were found. Upgrade the corresponding OpenPKG packages.

 - - -
 Package   Old Version   New Version  
 - - -
 blender   2.31a 2.32
 cacti 0.8.4 0.8.5
 cint  5.15  
 freetype1 1.3.1 
 gcc34 3.4-20040128  3.4-20040206
 gd1   1.8.4 
 gnet  1.1.9 2.0.4
 gqview1.3.8 1.3.9
 imagemagick   5.5.7-15  5.5.7-16
 j2se::jsse1.0.3_02  
 kde-arts  1.1.4 1.1.5
 kde-base  3.1.4 3.1.5
 kde-libs  3.1.4 3.1.5
 libnetdude0.4   0.5
 lynx  2.8.4 2.8.5
 mplayer:blue  1.0   1.1
 mplayer:live  2004.01.282004.02.05
 mutt151.5.5.1i  1.5.6i
 mutt15:patch_rr_compressed 1.5.5.1   1.5.6
 mutt15:patch_vvv_initials 1.5.5.1   1.5.6
 mutt15:patch_vvv_nntp 1.5.5.1   1.5.6
 mutt15:patch_vvv_quote1.5.5.1   1.5.6
 nagios1.1   1.2
 ncc   1.6   1.7
 netdude   0.4.3 0.5
 orbit22.9.6 2.9.7
 perl-mail:Mail-MboxParser 0.44  0.45
 perl-poe:POE  0.28  0.2802
 perl-www:CGI-Application  3.1   3.21
 petidomo  4.0b1 4.0b3
 snort 2.1.0 2.1.1-RC1
 tcpreplay 1.4.6 2.0.1
 uvscan:datfiles   4321  4322
 vim:patchlevel6.2.225   6.2.238
 xemacs21.4.14   21.4.15
 xemacs:sumo   2003-11-132004-02-02
 xmlstarlet0.7.0 0.8.1
 - - -

 The following 39 sources could not be successfully checked because
 an error occurred while processing. Keep at least an eye on them.

 - - -
 Package   Old Version   Error
 - - -
 acroread:linux508   connection failed or ti..
 acroread:solaris  508   connection failed or ti..
 arpd  0.2   connection failed or  [1]
 cocor 17connection failed or ti..
 flex:release  2.5.4aconnection failed or ti..
 fontconfig2.2.90connection failed or ti..
 gcrypt1.1.91regex didn't match (pro..
 glimpse   4.17.4latest version online [2]
 gmime 2.1.1 regex didn't match (pro..
 gpg-error 0.6   regex didn't match (pro..
 honeyd0.8   connection failed or ti..
 ifile 1.3.3 regex didn't match (p [3]
 ircii 20030709  connection failed or ti..
 kde-qt3.2.3 connection failed or ti..
 libart2.3.162nd connection failed o..
 lyx:xforms1.0   2nd regex didn't matc [4]
 max   7.4.2 regex didn't match (p [5]
 mirror2.9   connection failed or ti..
 monit 4.1.1 connection failed or ti..
 nedit 5.4   1st connection failed o..
 newsyslog 1.1   connection failed or ti..
 nspr  4.3   1st connection failed o

[CVS] OpenPKG: openpkg-re/ speclint.pl

2004-02-05 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-re   Date:   05-Feb-2004 23:19:01
  Branch: HEAD Handle: 200402052219

  Modified files:
openpkg-re  speclint.pl

  Log:
remove all numbers immediately following %setup/%patch to ease
overriding of these macros and thus make version tracking working;
also clean up option order; do not use setup/patch number when only
one file exists but enforce patch number on multiple files

  Summary:
RevisionChanges Path
1.63+35 -10 openpkg-re/speclint.pl
  

  patch -p0 <<'@@ .'
  Index: openpkg-re/speclint.pl
  
  $ cvs diff -u -r1.62 -r1.63 speclint.pl
  --- openpkg-re/speclint.pl3 Feb 2004 19:27:14 -   1.62
  +++ openpkg-re/speclint.pl5 Feb 2004 22:19:00 -   1.63
  @@ -818,20 +818,45 @@
   }
   }
   
  -#   check for setup macro usage setup vs. setup0
  +#   check for setup and patch macro usage
   if ($section eq '%prep') {
  +$done = $outer_done; $this = ''; $todo = $outer_this;
   my @tokens = &shell_tokenize($outer_this);
  -if (grep(/^\%setup\d+$/, @tokens) == 1 and not grep(/^\%setup$/, @tokens)) {
  -&lint_warning($file, undef, undef, "section $section: single numbered 
\"\%setup\" macro" .
  -  " (if single macros, make unnumbered)");
  +while ($todo =~ m/([^\n]*)\n/s) {
  +$done .= $`; $this = $&; $todo = $';
  +if ($this =~ m/^ *%setup.*  .*$/) {
  +&lint_warning($file, undef, undef, "section $section: multiple 
spaces in \"\%setup\" macro" .
  +  " (reduce to single space)");
  +}
  +if ($this =~ m/^ *%setup.*-[ab]$/ and grep(/^\%setup+$/, @tokens) == 1) 
{
  +&lint_warning($file, undef, undef, "section $section: -[ab] option 
superflous for single \"\%setup\" macro" .
  +  " (remove it)");
  +}
  +if ($this =~ m/^ *%patch.*  .*$/) {
  +&lint_warning($file, undef, undef, "section $section: multiple 
spaces in \"\%patch\" macro" .
  +  " (reduce to single space)");
  +}
  +if ($this =~ m/^ *%patch.*-p +0/) {
  +&lint_warning($file, undef, undef, "section $section: syntactically 
wrong space in \"\%patch\" macro" .
  +  " (use -p0)");
  +}
  +if ($this =~ m/^ *%patch.*-P 0/ and grep(/^\%patch+$/, @tokens) == 1) {
  +&lint_warning($file, undef, undef, "section $section: syntactically 
wrong space in \"\%patch\" macro" .
  +  " (omit -P for single patch)");
  +}
  +if ($this =~ m/^ *%patch.*-P [^0-9]/ and grep(/^\%patch+$/, @tokens)  > 
1) {
  +&lint_warning($file, undef, undef, "section $section: syntactically 
wrong space in \"\%patch\" macro" .
  +  " (use -P for multiple patches)");
  +}
  +$done .= $this;
   }
  -if (grep(/^\%setup$/, @tokens) and grep(/^\%setup\d+$/, @tokens)) {
  -&lint_warning($file, undef, undef, "section $section: intermixed 
numbered and unnumbered \"\%setup\" macro" .
  -  " (if multiple macros, make all numbered)");
  +if (grep(/^\%setup\d+$/, @tokens)) {
  +&lint_warning($file, undef, undef, "section $section: numbered 
\"\%setup\" macro" .
  +  " (do not use %setup directly followed by a number, 
replace with %setup ... -[ab])");
   }
  -if (grep(/^\%patch$/, @tokens) and grep(/^\%patch\d+$/, @tokens)) {
  -&lint_warning($file, undef, undef, "section $section: intermixed 
numbered and unnumbered \"\%patch\" macro" .
  -  " (if multiple macros, make all numbered)");
  +if (grep(/^\%patch\d+$/, @tokens)) {
  +&lint_warning($file, undef, undef, "section $section: numbered 
\"\%patch\" macro" .
  +  " (do not use %patch directly followed by a number, 
replace with %patch ... -P)");
   }
   }
   
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/cacti/ cacti.spec openpkg-web/ news.txt

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 22:25:06
  Branch: HEAD Handle: 2004020521250302

  Modified files:
openpkg-src/cacti   cacti.spec
openpkg-web news.txt

  Log:
upgrading package: cacti 0.8.4 -> 0.8.5

  Summary:
RevisionChanges Path
1.12+5  -4  openpkg-src/cacti/cacti.spec
1.8438  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/cacti/cacti.spec
  
  $ cvs diff -u -r1.11 -r1.12 cacti.spec
  --- openpkg-src/cacti/cacti.spec  3 Feb 2004 19:59:53 -   1.11
  +++ openpkg-src/cacti/cacti.spec  5 Feb 2004 21:25:05 -   1.12
  @@ -33,11 +33,11 @@
   Class:PLUS
   Group:Database
   License:  GPL
  -Version:  0.8.4
  -Release:  20040203
  +Version:  0.8.5
  +Release:  20040205
   
   #   list of sources
  -Source0:  http://www.raxnet.net/downloads/cacti-%{version}.tar.gz
  +Source0:  http://www.raxnet.net/downloads/cacti/cacti-%{version}.tar.gz
   Source1:  cacti-setup.sh
   Source2:  cacti-cron.sh
   Source3:  cacti-apache.conf
  @@ -52,6 +52,7 @@
   PreReq:   apache
   PreReq:   apache::with_mod_php = yes
   PreReq:   apache::with_mod_php_mysql = yes
  +PreReq:   apache::with_mod_php_xml = yes
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -65,7 +66,7 @@
   
   %track
   prog cacti = {
  -version   = 0.8.4
  +version   = %{version}
   url   = http://www.raxnet.net/products/cacti/download_cacti.php
   regex = cacti-(__VER__)\.tar\.gz
   }
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8437 -r1.8438 news.txt
  --- openpkg-web/news.txt  5 Feb 2004 20:54:16 -   1.8437
  +++ openpkg-web/news.txt  5 Feb 2004 21:25:03 -   1.8438
  @@ -1,3 +1,4 @@
  +05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/apache/ apache.spec openpkg-web/ news.txt

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 21:54:19
  Branch: HEAD Handle: 2004020520541602

  Modified files:
openpkg-src/apache  apache.spec
openpkg-web news.txt

  Log:
resolve conflict with php package

  Summary:
RevisionChanges Path
1.206   +2  -1  openpkg-src/apache/apache.spec
1.8437  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/apache/apache.spec
  
  $ cvs diff -u -r1.205 -r1.206 apache.spec
  --- openpkg-src/apache/apache.spec3 Feb 2004 19:59:34 -   1.205
  +++ openpkg-src/apache/apache.spec5 Feb 2004 20:54:18 -   1.206
  @@ -62,7 +62,7 @@
   Group:Web
   License:  ASF
   Version:  %{V_apache}
  -Release:  20040203
  +Release:  20040205
   
   #   package options (suexec related)
   %option   with_suexec   yes
  @@ -1052,6 +1052,7 @@
   rm -rf $RPM_BUILD_ROOT%{l_prefix}/include/php
   rm -rf $RPM_BUILD_ROOT%{l_prefix}/lib/php/build
   rmdir $RPM_BUILD_ROOT%{l_prefix}/lib/php >/dev/null 2>&1 || true
  +rm -f $RPM_BUILD_ROOT%{l_prefix}/bin/php-config
   %endif
   
   #   optionally install suPHP wrapper binary
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8436 -r1.8437 news.txt
  --- openpkg-web/news.txt  5 Feb 2004 20:26:40 -   1.8436
  +++ openpkg-web/news.txt  5 Feb 2004 20:54:16 -   1.8437
  @@ -1,3 +1,4 @@
  +05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/lynx/ lynx.spec openpkg-web/ news.txt

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 21:26:42
  Branch: HEAD Handle: 2004020520264002

  Modified files:
openpkg-src/lynxlynx.spec
openpkg-web news.txt

  Log:
upgrading package: lynx 2.8.4.1d -> 2.8.5

  Summary:
RevisionChanges Path
1.30+5  -14 openpkg-src/lynx/lynx.spec
1.8436  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/lynx/lynx.spec
  
  $ cvs diff -u -r1.29 -r1.30 lynx.spec
  --- openpkg-src/lynx/lynx.spec3 Feb 2004 20:03:36 -   1.29
  +++ openpkg-src/lynx/lynx.spec5 Feb 2004 20:26:42 -   1.30
  @@ -24,9 +24,8 @@
   ##
   
   #   package version
  -%define   V_file 2-8-4
  -%define   V_real 2.8.4
  -%define   V_pl   1d
  +%define   V_file 2-8-5
  +%define   V_real 2.8.5
   
   #   package information
   Name: lynx
  @@ -38,15 +37,11 @@
   Class:BASE
   Group:Web
   License:  BSD
  -Version:  %{V_real}.%{V_pl}
  -Release:  20040203
  +Version:  %{V_real}
  +Release:  20040205
   
   #   list of sources
   Source0:  http://lynx.isc.org/release/lynx%{V_real}.tar.bz2
  -Patch0:   http://lynx.isc.org/lynx%{V_real}/patches/lynx%{V_real}rel.1a.patch
  -Patch1:   http://lynx.isc.org/lynx%{V_real}/patches/lynx%{V_real}rel.1b.patch
  -Patch2:   http://lynx.isc.org/lynx%{V_real}/patches/lynx%{V_real}rel.1c.patch
  -Patch3:   http://lynx.isc.org/lynx%{V_real}/patches/lynx%{V_real}rel.1d.patch
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -63,17 +58,13 @@
   
   %track
   prog lynx = {
  -version   = 2.8.4
  +version   = %{V_real}
   url   = http://lynx.isc.org/release/
   regex = lynx(__VER__)\.tar\.bz2
   }
   
   %prep
   %setup -q -n lynx%{V_file}
  -%patch0 -p1
  -%patch1 -p1
  -%patch2 -p1
  -%patch3 -p1
   
   %build
   CC="%{l_cc}" \
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8435 -r1.8436 news.txt
  --- openpkg-web/news.txt  5 Feb 2004 20:26:29 -   1.8435
  +++ openpkg-web/news.txt  5 Feb 2004 20:26:40 -   1.8436
  @@ -1,3 +1,4 @@
  +05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/imagemagick/ imagemagick.spec openpkg-web/ ...

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 21:26:31
  Branch: HEAD Handle: 2004020520262902

  Modified files:
openpkg-src/imagemagick imagemagick.spec
openpkg-web news.txt

  Log:
upgrading package: imagemagick 5.5.7.15 -> 5.5.7.16

  Summary:
RevisionChanges Path
1.123   +3  -3  openpkg-src/imagemagick/imagemagick.spec
1.8435  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/imagemagick/imagemagick.spec
  
  $ cvs diff -u -r1.122 -r1.123 imagemagick.spec
  --- openpkg-src/imagemagick/imagemagick.spec  3 Feb 2004 20:02:24 -   1.122
  +++ openpkg-src/imagemagick/imagemagick.spec  5 Feb 2004 20:26:31 -   1.123
  @@ -25,7 +25,7 @@
   
   #   package version
   %define   V_major 5.5.7
  -%define   V_minor 15
  +%define   V_minor 16
   %if "%{V_minor}" == "0"
   %define   V_dist  %{V_major}
   %else
  @@ -43,7 +43,7 @@
   Group:Graphics
   License:  GPL
   Version:  %{V_major}.%{V_minor}
  -Release:  20040203
  +Release:  20040205
   
   #   package options
   %option   with_perl   no
  @@ -83,7 +83,7 @@
   
   %track
   prog imagemagick = {
  -version   = 5.5.7-15
  +version   = %{V_major}-%{V_minor}
   url   = ftp://ftp.imagemagick.org/pub/ImageMagick/
   regex = ImageMagick-(\d+\.\d+\.\d+(-\d+)?)\.tar\.gz
   }
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8434 -r1.8435 news.txt
  --- openpkg-web/news.txt  5 Feb 2004 20:24:58 -   1.8434
  +++ openpkg-web/news.txt  5 Feb 2004 20:26:29 -   1.8435
  @@ -1,3 +1,4 @@
  +05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/gcc34/ gcc34.spec openpkg-web/ news.txt

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 21:25:01
  Branch: HEAD Handle: 2004020520245802

  Modified files:
openpkg-src/gcc34   gcc34.spec
openpkg-web news.txt

  Log:
upgrading package: gcc34 3.4s20040128 -> 3.4s20040204

  Summary:
RevisionChanges Path
1.36+3  -3  openpkg-src/gcc34/gcc34.spec
1.8434  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/gcc34/gcc34.spec
  
  $ cvs diff -u -r1.35 -r1.36 gcc34.spec
  --- openpkg-src/gcc34/gcc34.spec  3 Feb 2004 20:01:26 -   1.35
  +++ openpkg-src/gcc34/gcc34.spec  5 Feb 2004 20:25:00 -   1.36
  @@ -26,7 +26,7 @@
   #   package version
   %define   V_full 3.4
   %define   V_comp 34
  -%define   V_snap 20040128
  +%define   V_snap 20040204
   
   #   package information
   Name: gcc34
  @@ -39,7 +39,7 @@
   Group:Compiler
   License:  GPL
   Version:  %{V_full}s%{V_snap}
  -Release:  20040203
  +Release:  20040205
   
   #   package options
   %option   with_cxx   yes
  @@ -73,7 +73,7 @@
   
   %track
   prog gcc34 = {
  -version   = 3.4-20040128
  +version   = %{V_full}-%{V_snap}
   url   = ftp://gcc.gnu.org/pub/gcc/snapshots/
   regex = (\d+\.\d+-\d{8})
   url   = ftp://gcc.gnu.org/pub/gcc/snapshots/__NEWVER__/
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8433 -r1.8434 news.txt
  --- openpkg-web/news.txt  5 Feb 2004 20:24:28 -   1.8433
  +++ openpkg-web/news.txt  5 Feb 2004 20:24:58 -   1.8434
  @@ -1,3 +1,4 @@
  +05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/orbit2/ orbit2.spec openpkg-web/ news.txt

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 21:24:30
  Branch: HEAD Handle: 2004020520242802

  Modified files:
openpkg-src/orbit2  orbit2.spec
openpkg-web news.txt

  Log:
upgrading package: orbit2 2.9.6 -> 2.9.7

  Summary:
RevisionChanges Path
1.24+3  -3  openpkg-src/orbit2/orbit2.spec
1.8433  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/orbit2/orbit2.spec
  
  $ cvs diff -u -r1.23 -r1.24 orbit2.spec
  --- openpkg-src/orbit2/orbit2.spec3 Feb 2004 20:04:45 -   1.23
  +++ openpkg-src/orbit2/orbit2.spec5 Feb 2004 20:24:30 -   1.24
  @@ -26,7 +26,7 @@
   #   package version
   %define   V_major   2
   %define   V_minor   9
  -%define   V_level   6
  +%define   V_level   7
   
   #   package information
   Name: orbit2
  @@ -39,7 +39,7 @@
   Group:System
   License:  GPL
   Version:  %{V_major}.%{V_minor}.%{V_level}
  -Release:  20040203
  +Release:  20040205
   
   #   list of sources
   Source0:  
ftp://ftp.gnome.org/pub/GNOME/sources/ORBit%{V_major}/%{V_major}.%{V_minor}/ORBit%{V_major}-%{version}.tar.gz
  @@ -62,7 +62,7 @@
   
   %track
   prog orbit2 = {
  -version   = 2.9.6
  +version   = %{version}
   url   = ftp://ftp.gnome.org/pub/GNOME/sources/ORBit2/
   regex = (\d+\.\d+(\.\d+)*)\b
   url   = ftp://ftp.gnome.org/pub/GNOME/sources/ORBit2/__NEWVER__/
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8432 -r1.8433 news.txt
  --- openpkg-web/news.txt  5 Feb 2004 20:07:27 -   1.8432
  +++ openpkg-web/news.txt  5 Feb 2004 20:24:28 -   1.8433
  @@ -1,3 +1,4 @@
  +05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/ncc/ ncc.spec openpkg-web/ news.txt

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 21:07:30
  Branch: HEAD Handle: 2004020520072703

  Modified files:
openpkg-src/ncc ncc.spec
openpkg-web news.txt

  Log:
upgrading package: ncc 1.6 -> 1.7

  Summary:
RevisionChanges Path
1.7 +3  -3  openpkg-src/ncc/ncc.spec
1.8432  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/ncc/ncc.spec
  
  $ cvs diff -u -r1.6 -r1.7 ncc.spec
  --- openpkg-src/ncc/ncc.spec  3 Feb 2004 20:04:15 -   1.6
  +++ openpkg-src/ncc/ncc.spec  5 Feb 2004 20:07:30 -   1.7
  @@ -33,8 +33,8 @@
   Class:EVAL
   Group:Language
   License:  GPL
  -Version:  1.6
  -Release:  20040203
  +Version:  1.7
  +Release:  20040205
   
   #   list of sources
   Source0:  http://students.ceid.upatras.gr/~sxanth/ncc/ncc-%{version}.tar.gz
  @@ -55,7 +55,7 @@
   
   %track
   prog ncc = {
  -version   = 1.6
  +version   = %{version}
   url   = http://students.ceid.upatras.gr/~sxanth/ncc/
   regex = ncc-(__VER__)\.tar\.gz
   }
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8431 -r1.8432 news.txt
  --- openpkg-web/news.txt  5 Feb 2004 09:35:51 -   1.8431
  +++ openpkg-web/news.txt  5 Feb 2004 20:07:27 -   1.8432
  @@ -1,3 +1,4 @@
  +05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[OpenPKG] Version Tracking Report (2004-02-05 19:40)

2004-02-05 Thread OpenPKG Version Tracker
 OpenPKG Version Tracking Report
 ===

 Reporting Time:2004-02-05 19:40
 Tracking Duration: 0:00:00 (H:M:S)
 Tracking Input:1002 sources (673 packages)
 Tracking Result:   586 up-to-date, 15 out-dated, 27 error

 The following 15 sources were determined to be out-dated because newer
 vendor versions were found. Upgrade the corresponding OpenPKG packages.

 - - -
 Package   Old Version   New Version  
 - - -
 abiword   2.1.0 
 apache1.3.29
 apache:mod_access_referer 1.0.2 
 apache:mod_auth_mysql 20030510  
 apache:mod_dav1.0.3-1.3.6   
 apache:mod_fastcgi2.4.2 
 apache:mod_layout 3.2.1 
 apache:mod_perl   1.29  
 apache:mod_php4.3.4 
 apache:mod_relocate   1.0   
 apache:mod_roaming1.0.2 
 apache:mod_ssl2.8.16-1.3.29 
 apache:mod_throttle   312   
 apache:suphp  0.5   
 autoconf  2.59  
 bash  2.05b 
 bash:patches  205b-007  
 bind8 8.4.4 
 bison:beta1.875 
 bison:release 1.35  
 blender   2.31a 2.32
 bochs 2.1   
 cflow:cflow   2.0   
 cflow:cflow2vcg   0.5   
 cint  5.15  
 cvs   1.12.5
 cvs:cvslock   0.2   
 dsh   0.25.1
 dsh:libdshconfig  0.20.10   
 dsniff2.3   
 expect:expect 5.40.0
 expect:tcl8.4.5 
 flex:beta 2.5.31  [1]
 flex:release  2.5.4a
 freetype1 1.3.1 
 gcc   3.3.2 
 gcc34 3.4-20040128  3.4-20040204
 gcc:bounds3.3.2-1.00
 gcc:spp   3.3-7 
 gd1   1.8.4 
 ghostscript   8.13  
 ghostscript-esp   7.07.1
 ghostscript-esp:gnu-gs-fonts-other 6.0   
 ghostscript-esp:gnu-gs-fonts-std 6.0   
 ghostscript:jpegsrc   v6b   
 ghostscript:png   1.2.5 
 ghostscript:zlib  1.2.1 
 gnet  1.1.9 2.0.4
 gqview1.3.8 1.3.9
 imagemagick   5.5.7-15  5.5.7-16
 imapd 2.2.3 
 infozip:unzip 550   
 infozip:zip   23
 j2se::jsse1.0.3_02  
 kde-arts  1.1.4 1.1.5
 kde-base  3.1.4 3.1.5
 kde-libs  3.1.4 3.1.5
 ksh   2003-07-24
 ksh:init  2003-07-24
 libnetdude0.4   0.5
 lynx  2.8.4 
 magicpoint1.10a 
 mesa:MesaDemos5.0.2 
 mesa:MesaLib  5.0.2 
 mplayer   1.0pre3   
 mplayer:blue  1.0   
 mplayer:live  2004.01.28
 mutt151.5.5.1i  1.5.6i
 mutt15:patch_rr_compressed 1.5.5.1   1.5.6
 mutt15:patch_vvv_initials 1.5.5.1   1.5.6
 mutt15:patch_vvv_nntp 1.5.5.1   1.5.6
 mutt15:patch_vvv_quote1.5.5.1   1.5.6
 nagios1.1   1.2
 ncc   1.6   1.7
 ncurses   5.3   
 ncurses:patchbase 20040110  
 ncurses:patchset  20040131  
 nessus-libs:libnasl   2.0.10
 nessus-libs:nessus-libraries 

SPIN package submitted

2004-02-05 Thread Matt Hoosier
Subscribers to openpkg-dev have probably already noticed the packaging
of SPIN that I submitted to the contrib area a couple of days ago.

SPIN is the "classic" explicit-state model checker from Bell
Laboratories. The package also bundles the TCL graphical frontend.

Michael and Ralf: is there any interest in incorporating this into the
OpenPKG archives?
-- 
Matt Hoosier
UNIX Administrator / Accounts Manager
CIS Department, Kansas State University


signature.asc
Description: This is a digitally signed message part


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   05-Feb-2004 17:36:05
  Branch: HEAD Handle: 2004020516360500

  Modified files:
openpkg-src/openpkg HISTORY

  Log:
Ops, remove double entries

  Summary:
RevisionChanges Path
1.122   +1  -74 openpkg-src/openpkg/HISTORY
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.121 -r1.122 HISTORY
  --- openpkg-src/openpkg/HISTORY   5 Feb 2004 14:33:35 -   1.121
  +++ openpkg-src/openpkg/HISTORY   5 Feb 2004 16:36:05 -   1.122
  @@ -221,77 +221,4 @@
   
   20030826  RELEASE AS PART OF OPENPKG 1.1.0 ***
   ...
  -ctivate only the %env of "openpkg" in the "musr" run-time environment
  -20040205 add --tack-dump and make sure --track/-bt do not require dependencies and 
sources
  -20040205 make sure -bs no longer requires dependencies
  -20040204 fix class checking macro l_check_class.
  -20040203 actually use new Class: header and %track section
  -20040130 add support to RPM for new "%track" section which will become the new 
vcheck(1) source
  -20040130 add support to RPM for new "%test" section which will allow run-time 
testing
  -20040130 add support to RPM for new "Class" header which will become the new 
package class source
  -20040127 fix typos and remove trailing whitespaces from source files
  -20040124 add parallel build support in %{l_mflags} for HP/UX
  -20040123 adjust copyright year in all messages to cover new year 2004
  -20040123 upgrade to cURL 7.11.0
  -20040122 add "rpm --tag " support for tagging binary RPMs with arbitrary 
strings
  -20040122 upgrade to latest GNU shtool snapshot for better RHL/RHEL detection and 
naming
  -20040121 cleanup openpkg.spec by sorting SourceX headers
  -20040120 add OSSP uuid and companion uuid.sh frontend to provide new 
/etc/openpkg/uuid
  -20040120 embed %post section from openpkg.spec into bootstrap script *.src.sh
  -20040120 adjust widths in "rpm -qplv" output to allow longer owner/group
  -20040120 regenerate rpm.patch.* files with latest CVS 1.12.x
  -20040205 activate only the %env of "openpkg" in the "musr" run-time environment
  -20040205 add --tack-dump and make sure --track/-bt do not require dependencies and 
sources
  -20040205 make sure -bs no longer requires dependencies
  -20040204 fix class checking macro l_check_class.
  -20040203 actually use new Class: header and %track section
  -20040130 add support to RPM for new "%track" section which will become the new 
vcheck(1) source
  -20040130 add support to RPM for new "%test" section which will allow run-time 
testing
  -20040130 add support to RPM for new "Class" header which will become the new 
package class source
  -20040127 fix typos and remove trailing whitespaces from source files
  -20040124 add parallel build support in %{l_mflags} for HP/UX
  -20040123 adjust copyright year in all messages to cover new year 2004
  -20040123 upgrade to cURL 7.11.0
  -20040122 add "rpm --tag " support for tagging binary RPMs with arbitrary 
strings
  -20040122 upgrade to latest GNU shtool snapshot for better RHL/RHEL detection and 
naming
  -20040121 cleanup openpkg.spec by sorting SourceX headers
  -20040120 add OSSP uuid and companion uuid.sh frontend to provide new 
/etc/openpkg/uuid
  -20040120 embed %post section from openpkg.spec into bootstrap script *.src.sh
  -20040120 adjust widths in "rpm -qplv" output to allow longer owner/group
  -20040120 regenerate rpm.patch.* files with latest CVS 1.12.x
  -20040205 activate only the %env of "openpkg" in the "musr" run-time environment
  -20040205 add --tack-dump and make sure --track/-bt do not require dependencies and 
sources
  -20040205 make sure -bs no longer requires dependencies
  -20040204 fix class checking macro l_check_class.
  -20040203 actually use new Class: header and %track section
  -20040130 add support to RPM for new "%track" section which will become the new 
vcheck(1) source
  -20040130 add support to RPM for new "%test" section which will allow run-time 
testing
  -20040130 add support to RPM for new "Class" header which will become the new 
package class source
  -20040127 fix typos and remove trailing whitespaces from source files
  -20040124 add parallel build support in %{l_mflags} for HP/UX
  -20040123 adjust copyright year in all messag

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY dot.bash_login

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   05-Feb-2004 15:33:36
  Branch: HEAD Handle: 2004020514333500

  Modified files:
openpkg-src/openpkg HISTORY dot.bash_login

  Log:
activate only the %env of "openpkg" in the "musr" run-time environment

  Summary:
RevisionChanges Path
1.121   +75 -1  openpkg-src/openpkg/HISTORY
1.5 +3  -3  openpkg-src/openpkg/dot.bash_login
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.120 -r1.121 HISTORY
  --- openpkg-src/openpkg/HISTORY   5 Feb 2004 09:35:53 -   1.120
  +++ openpkg-src/openpkg/HISTORY   5 Feb 2004 14:33:35 -   1.121
  @@ -2,6 +2,7 @@
   2004
   
   
  +20040205 activate only the %env of "openpkg" in the "musr" run-time environment
   20040205 add --tack-dump and make sure --track/-bt do not require dependencies and 
sources
   20040205 make sure -bs no longer requires dependencies
   20040204 fix class checking macro l_check_class.
  @@ -220,4 +221,77 @@
   
   20030826  RELEASE AS PART OF OPENPKG 1.1.0 ***
   ...
  -
  +ctivate only the %env of "openpkg" in the "musr" run-time environment
  +20040205 add --tack-dump and make sure --track/-bt do not require dependencies and 
sources
  +20040205 make sure -bs no longer requires dependencies
  +20040204 fix class checking macro l_check_class.
  +20040203 actually use new Class: header and %track section
  +20040130 add support to RPM for new "%track" section which will become the new 
vcheck(1) source
  +20040130 add support to RPM for new "%test" section which will allow run-time 
testing
  +20040130 add support to RPM for new "Class" header which will become the new 
package class source
  +20040127 fix typos and remove trailing whitespaces from source files
  +20040124 add parallel build support in %{l_mflags} for HP/UX
  +20040123 adjust copyright year in all messages to cover new year 2004
  +20040123 upgrade to cURL 7.11.0
  +20040122 add "rpm --tag " support for tagging binary RPMs with arbitrary 
strings
  +20040122 upgrade to latest GNU shtool snapshot for better RHL/RHEL detection and 
naming
  +20040121 cleanup openpkg.spec by sorting SourceX headers
  +20040120 add OSSP uuid and companion uuid.sh frontend to provide new 
/etc/openpkg/uuid
  +20040120 embed %post section from openpkg.spec into bootstrap script *.src.sh
  +20040120 adjust widths in "rpm -qplv" output to allow longer owner/group
  +20040120 regenerate rpm.patch.* files with latest CVS 1.12.x
  +20040205 activate only the %env of "openpkg" in the "musr" run-time environment
  +20040205 add --tack-dump and make sure --track/-bt do not require dependencies and 
sources
  +20040205 make sure -bs no longer requires dependencies
  +20040204 fix class checking macro l_check_class.
  +20040203 actually use new Class: header and %track section
  +20040130 add support to RPM for new "%track" section which will become the new 
vcheck(1) source
  +20040130 add support to RPM for new "%test" section which will allow run-time 
testing
  +20040130 add support to RPM for new "Class" header which will become the new 
package class source
  +20040127 fix typos and remove trailing whitespaces from source files
  +20040124 add parallel build support in %{l_mflags} for HP/UX
  +20040123 adjust copyright year in all messages to cover new year 2004
  +20040123 upgrade to cURL 7.11.0
  +20040122 add "rpm --tag " support for tagging binary RPMs with arbitrary 
strings
  +20040122 upgrade to latest GNU shtool snapshot for better RHL/RHEL detection and 
naming
  +20040121 cleanup openpkg.spec by sorting SourceX headers
  +20040120 add OSSP uuid and companion uuid.sh frontend to provide new 
/etc/openpkg/uuid
  +20040120 embed %post section from openpkg.spec into bootstrap script *.src.sh
  +20040120 adjust widths in "rpm -qplv" output to allow longer owner/group
  +20040120 regenerate rpm.patch.* files with latest CVS 1.12.x
  +20040205 activate only the %env of "openpkg" in the "musr" run-time environment
  +20040205 add --tack-dump and make sure --track/-bt do not require dependencies and 
sources
  +20040205 make sure -bs no longer requires dependencies
  +20040204 fix class checking macro l_check_class.
  +20040203 actually use new Class: header and %track section
  +20040130 

[CVS] OpenPKG: openpkg-doc/handbook/ 00TODO

2004-02-05 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-doc  Date:   05-Feb-2004 13:44:21
  Branch: HEAD Handle: 2004020512442100

  Modified files:
openpkg-doc/handbook00TODO

  Log:
configure incorrectly assumes availability of g++ when gcc is found

  Summary:
RevisionChanges Path
1.40+5  -0  openpkg-doc/handbook/00TODO
  

  patch -p0 <<'@@ .'
  Index: openpkg-doc/handbook/00TODO
  
  $ cvs diff -u -r1.39 -r1.40 00TODO
  --- openpkg-doc/handbook/00TODO   29 Jan 2004 10:02:00 -  1.39
  +++ openpkg-doc/handbook/00TODO   5 Feb 2004 12:44:21 -   1.40
  @@ -475,6 +475,11 @@
 - cpp-3.2.3-20.i386.rpm   (RHEL 3 AS CD-ROM 2)
 - gcc-3.2.3-20.i386.rpm   (RHEL 3 AS CD-ROM 3)
 - ncurses-devel-5.3-9.3.i386.rpm  (RHEL 3 AS CD-ROM 3)
  +  - gcc-c++-3.2.3-20.i386.rpm   (RHEL 3 AS CD-ROM 3) [*]
  +  - libstdc++-devel-3.2.3-20.i386.rpm   (RHEL 3 AS CD-ROM 3)
  +
  +[*] required because some packages' configure incorrectly assume
  +availability of g++ when gcc is found i.e. dmalloc-5.3.0-20040203
   
 Pay attention to the bottom of the package selection list where one can
 choose these additional packages individually.
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-re/ todo.txt

2004-02-05 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-re   Date:   05-Feb-2004 10:45:25
  Branch: HEAD Handle: 2004020509452500

  Modified files:
openpkg-re  todo.txt

  Log:
Class done 20040130; Class used 20040203; --track support w/o nodeps
20040205; log minor popt issue

  Summary:
RevisionChanges Path
1.172   +1  -2  openpkg-re/todo.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-re/todo.txt
  
  $ cvs diff -u -r1.171 -r1.172 todo.txt
  --- openpkg-re/todo.txt   5 Feb 2004 07:55:42 -   1.171
  +++ openpkg-re/todo.txt   5 Feb 2004 09:45:25 -   1.172
  @@ -52,8 +52,6 @@
   with run-time decisions (config files, wrapper, etc.)
 - solution 2: %option with_xxx binary, %option [use_]xxx arbitrary string
 - solution 3: %option with_xxx binary, %variable xxx arbitrary string
  -- rse: vc. integrate into .spec!!! (%track)
  -- rse: add Class:  for  of Distrib: OpenPKG []
   - rse: check error code of tar in bootstrap script
   - rse: Problem bootstrapping to a symlink pointing to nonexisting directory
   - thl: sgml auf xmlcatmgr umstellen! (3 dependent packages: docbook, 
openjade/opensp, ?)
  @@ -81,6 +79,7 @@
   - boostrap should remember things from install time, i.e. did it
 create users? This is needed to decide whether or not the users
 must be erased on uninstall.
  +- popt cosmetics: shows --tag=XXX but expects --tag XXX (equal vs. space)
   
 REJECTED SCOPE CREEP (but needs to be discussed post release)
   
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpm.patch.bug...

2004-02-05 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 10:35:54
  Branch: HEAD Handle: 2004020509355102

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpm.patch.bugfix
rpm.patch.feature rpm.patch.porting
rpm.patch.regen rpmpopt
openpkg-web news.txt

  Log:
- add --tack-dump and make sure --track/-bt do not require dependencies and sources
- make sure -bs no longer requires dependencies

  Summary:
RevisionChanges Path
1.120   +2  -0  openpkg-src/openpkg/HISTORY
1.278   +1  -1  openpkg-src/openpkg/openpkg.spec
1.42+1  -1  openpkg-src/openpkg/rpm.patch.bugfix
1.43+29 -22 openpkg-src/openpkg/rpm.patch.feature
1.51+1  -1  openpkg-src/openpkg/rpm.patch.porting
1.41+1  -1  openpkg-src/openpkg/rpm.patch.regen
1.14+5  -0  openpkg-src/openpkg/rpmpopt
1.8431  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.119 -r1.120 HISTORY
  --- openpkg-src/openpkg/HISTORY   4 Feb 2004 08:37:09 -   1.119
  +++ openpkg-src/openpkg/HISTORY   5 Feb 2004 09:35:53 -   1.120
  @@ -2,6 +2,8 @@
   2004
   
   
  +20040205 add --tack-dump and make sure --track/-bt do not require dependencies and 
sources
  +20040205 make sure -bs no longer requires dependencies
   20040204 fix class checking macro l_check_class.
   20040203 actually use new Class: header and %track section
   20040130 add support to RPM for new "%track" section which will become the new 
vcheck(1) source
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.277 -r1.278 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  4 Feb 2004 08:37:09 -   1.277
  +++ openpkg-src/openpkg/openpkg.spec  5 Feb 2004 09:35:53 -   1.278
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20040204
  +%define   V_openpkg  20040205
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/rpm.patch.bugfix
  
  $ cvs diff -u -r1.41 -r1.42 rpm.patch.bugfix
  --- openpkg-src/openpkg/rpm.patch.bugfix  30 Jan 2004 16:59:33 -  1.41
  +++ openpkg-src/openpkg/rpm.patch.bugfix  5 Feb 2004 09:35:53 -   1.42
  @@ -10,7 +10,7 @@
   ##  'patch' tool to upgrade those files. Each patch snippet is annotated
   ##  with a short description.
   ##
  -##  Created on: 30-Jan-2004
  +##  Created on: 05-Feb-2004
   ##
   ##  ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
   ## RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/rpm.patch.feature
  
  $ cvs diff -u -r1.42 -r1.43 rpm.patch.feature
  --- openpkg-src/openpkg/rpm.patch.feature 30 Jan 2004 16:59:33 -  1.42
  +++ openpkg-src/openpkg/rpm.patch.feature 5 Feb 2004 09:35:53 -   1.43
  @@ -10,7 +10,7 @@
   ##  'patch' tool to upgrade those files. Each patch snippet is annotated
   ##  with a short description.
   ##
  -##  Created on: 30-Jan-2004
  +##  Created on: 05-Feb-2004
   ##
   ##  ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
   ## RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
  @@ -272,7 +272,7 @@
   +---
   Index: build/build.c
   --- build/build.c4 Mar 2003 15:27:33 -   1.1.1.20
  -+++ build/build.c28 Jan 2004 14:36:38 -
   build/build.c30 Jan 2004 17:06:28 -  1.3
   @@ -33,7 +33,15 @@

for (p = spec->sources; p != NULL; p = p->next) {
  @@ -314,7 +314,7 @@
   +---
   Index: build/build.c
   --- build/build.c4 Mar 2003 15:27:33 -   1.1.1.20
  -+++ build/build.c28 Jan 2004 14:36:38 -
   build/build.c30 Jan 2004 17:06:28 -  1.3
   @@ -113,6 +129,14 @@
  

[CVS] OpenPKG: openpkg-src/monit/ monit.spec monitrc rc.monit openpkg-...

2004-02-05 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 09:46:47
  Branch: HEAD Handle: 2004020508464402

  Modified files:
openpkg-src/monit   monit.spec monitrc rc.monit
openpkg-web news.txt

  Log:
modifying package: monit-4.1.1 20040203 -> 20040205

  Summary:
RevisionChanges Path
1.29+1  -1  openpkg-src/monit/monit.spec
1.4 +17 -10 openpkg-src/monit/monitrc
1.15+2  -2  openpkg-src/monit/rc.monit
1.8430  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/monit/monit.spec
  
  $ cvs diff -u -r1.28 -r1.29 monit.spec
  --- openpkg-src/monit/monit.spec  3 Feb 2004 20:03:58 -   1.28
  +++ openpkg-src/monit/monit.spec  5 Feb 2004 08:46:46 -   1.29
  @@ -34,7 +34,7 @@
   Group:System
   License:  GPL
   Version:  4.1.1
  -Release:  20040203
  +Release:  20040205
   
   #   package options
   %option   with_fsl   yes
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/monit/monitrc
  
  $ cvs diff -u -r1.3 -r1.4 monitrc
  --- openpkg-src/monit/monitrc 23 Sep 2003 16:24:36 -  1.3
  +++ openpkg-src/monit/monitrc 5 Feb 2004 08:46:46 -   1.4
  @@ -2,15 +2,17 @@
   ##  @l_prefix@/etc/monit/monitrc - monit control file
   ##
   
  +#   for examples, see http://www.tildeslash.com/monit/examples.html
  +
   #   run as daemon with polling intervals of n seconds
   set daemon  120
   
  -#   startup web interface
  -set httpd
  -port 99
  -address 127.0.0.1
  -allow   127.0.0.1
  -ssl disable
  +#   web interface
  +#set httpd
  +#   port 99
  +#   address 127.0.0.1
  +#   allow   127.0.0.1
  +#ssl disable
   
   #   send alerts via following mail server
   set mailserver 127.0.0.1
  @@ -19,10 +21,15 @@
   #   log via syslog (OSSP fsl) by default
   set logfile syslog
   
  -#   example for MySQL 4, see also http://www.tildeslash.com/monit/examples.html
  -#check mysql4 with pidfile @l_prefix@/var/mysql4/mysqld.pid
  -#   start program = "@l_prefix@/etc/rc.d/rc.mysql4 start"
  -#   stop  program = "@l_prefix@/etc/rc.d/rc.mysql4 stop"
  +#   disk usage on root file system
  +#check device fs-root with path /
  +#   if space usage > 90% then alert
  +#   alert [EMAIL PROTECTED]
  +
  +#   MySQL
  +#check process mysql with pidfile @l_prefix@/var/mysql/mysqld.pid
  +#   start program = "@l_prefix@/etc/rc.d/rc.mysql start"
  +#   stop  program = "@l_prefix@/etc/rc.d/rc.mysql stop"
   #   if failed host 127.0.0.1 port 3306 type TCP then restart
   #   if 5 restarts within 5 cycles then timeout
   #   alert [EMAIL PROTECTED]
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/monit/rc.monit
  
  $ cvs diff -u -r1.14 -r1.15 rc.monit
  --- openpkg-src/monit/rc.monit23 Jul 2003 09:38:55 -  1.14
  +++ openpkg-src/monit/rc.monit5 Feb 2004 08:46:46 -   1.15
  @@ -43,7 +43,7 @@
   
   %reload -u @l_susr@
   rcService monit enable yes || exit 0
  -@l_prefix@/bin/monit restart
  +@l_prefix@/bin/monit reload
   
   %daily -u @l_susr@
   rcService monit enable yes || exit 0
  @@ -51,6 +51,6 @@
   -n ${monit_log_numfiles} -s ${monit_log_minsize} -d \
   -z ${monit_log_complevel} -o @l_rusr@ -g @l_rgrp@ -m 644 \
   -P "${monit_log_prolog}" \
  --E "${monit_log_epilog}" \
  +-E "${monit_log_epilog} && rc monit reload" \
   @l_prefix@/var/monit/monit.log
   
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8429 -r1.8430 news.txt
  --- openpkg-web/news.txt  5 Feb 2004 08:17:47 -   1.8429
  +++ openpkg-web/news.txt  5 Feb 2004 08:46:44 -   1.8430
  @@ -1,3 +1,4 @@
  +05-Feb-2004: Upgraded package: P
   05-Feb-2004: Upgraded package: P
   04-Feb-2004: Upgraded package: P
   04-Feb-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/netcat/ netcat.spec openpkg-web/ news.txt

2004-02-05 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   05-Feb-2004 09:17:50
  Branch: HEAD Handle: 2004020508174702

  Modified files:
openpkg-src/netcat  netcat.spec
openpkg-web news.txt

  Log:
cosmetics

  Summary:
RevisionChanges Path
1.31+13 -11 openpkg-src/netcat/netcat.spec
1.8429  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/netcat/netcat.spec
  
  $ cvs diff -u -r1.30 -r1.31 netcat.spec
  --- openpkg-src/netcat/netcat.spec3 Feb 2004 20:04:20 -   1.30
  +++ openpkg-src/netcat/netcat.spec5 Feb 2004 08:17:49 -   1.31
  @@ -34,7 +34,7 @@
   Group:Network
   License:  no restrictions
   Version:  1.10
  -Release:  20040203
  +Release:  20040205
   
   #   list of sources
   Source0:  http://www.atstake.com/research/tools/nc110.tgz
  @@ -50,12 +50,12 @@
   
   %description
   A simple Unix utility which reads and writes data across network
  -connections using TCP or UDP protocol.  It is designed to be a reliable
  -"back-end" tool that can be used directly or easily driven by other
  -programs and scripts. At the same time it is a feature-rich network
  -debugging and exploration tool, since it can create almost any kind of
  -connection you would need and has several interesting built-in
  -capabilities.
  +connections using TCP or UDP protocol. It is designed to be a
  +reliable "back-end" tool that can be used directly or easily driven
  +by other programs and scripts. At the same time it is a feature-rich
  +network debugging and exploration tool, since it can create almost
  +any kind of connection you would need and has several interesting
  +built-in capabilities.
   
   %track
   prog netcat = {
  @@ -78,11 +78,13 @@
   %{l_make} %{l_mflags} $os
   
   %install
  -test -d $RPM_BUILD_ROOT && rm -rf $RPM_BUILD_ROOT
  -%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/bin
  -%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/man/man1
  +rm -rf $RPM_BUILD_ROOT
  +%{l_shtool} mkdir -f -p -m 755 \
  +$RPM_BUILD_ROOT%{l_prefix}/bin \
  +$RPM_BUILD_ROOT%{l_prefix}/man/man1
   %{l_shtool} install -c -s -m 755 nc $RPM_BUILD_ROOT%{l_prefix}/bin/
  -%{l_shtool} install -c -m 644 %{SOURCE nc.1} 
$RPM_BUILD_ROOT%{l_prefix}/man/man1/
  +%{l_shtool} install -c -m 644 %{SOURCE nc.1} \
  +$RPM_BUILD_ROOT%{l_prefix}/man/man1/
   %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
   
   %files -f files
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8428 -r1.8429 news.txt
  --- openpkg-web/news.txt  4 Feb 2004 19:14:48 -   1.8428
  +++ openpkg-web/news.txt  5 Feb 2004 08:17:47 -   1.8429
  @@ -1,3 +1,4 @@
  +05-Feb-2004: Upgraded package: P
   04-Feb-2004: Upgraded package: P
   04-Feb-2004: Upgraded package: P
   04-Feb-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-re/ release.txt todo.txt

2004-02-05 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-re   Date:   05-Feb-2004 08:55:42
  Branch: HEAD Handle: 2004020507554200

  Modified files:
openpkg-re  release.txt todo.txt

  Log:
number and shift priorites; note signing problem; mv provides note to
appropriate file/pos

  Summary:
RevisionChanges Path
1.26+1  -0  openpkg-re/release.txt
1.171   +6  -10 openpkg-re/todo.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-re/release.txt
  
  $ cvs diff -u -r1.25 -r1.26 release.txt
  --- openpkg-re/release.txt2 Apr 2003 10:04:32 -   1.25
  +++ openpkg-re/release.txt5 Feb 2004 07:55:42 -   1.26
  @@ -73,6 +73,7 @@
 $ ../RE/editspec.pl 's;(Version:\s+)(\S+)[ \t]*(\nRelease:\s+)\2[ 
\t]*;${1}N.M.0${3}N.M.0;s'
 $ ../RE/editspec.pl 's;^(Release:\s+) .*$;$1 N.M.0;m' 
 $ ../RE/editspec.pl 's;OpenPKG, openpkg >= [0-9.]+;OpenPKG, openpkg >= N.M.0;sg'
  +  $ THL!20040205: make sure openpkg-2.0.0-2.0.0 provides: openpkg-20040113-20040113
 # cvs ci -m "bump release numbers for OpenPKG N.M"
   
 # roll all source RPMs
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-re/todo.txt
  
  $ cvs diff -u -r1.170 -r1.171 todo.txt
  --- openpkg-re/todo.txt   3 Feb 2004 09:15:10 -   1.170
  +++ openpkg-re/todo.txt   5 Feb 2004 07:55:42 -   1.171
  @@ -36,16 +36,10 @@
 OpenPKG 2.0 Release Engineering
 ---
   
  -  MUST HAVE:
  -o fix bootstrap %pre problem [rse]
  -  buildfarm reports "install: %pre scriptlet failed (2), skipping openpkg ..."
  -  (currently does no longer occur?)
  -o companion release GNU shtool 2.0.0 [rse] thl: sh.* docs done
  -o check rpm 1.3/2.0 package cross signing and verification [thl]
  -o make sure openpkg-2.0.0-2.0.0 provides: openpkg-20040113-20040113
  -o decide whether *-2.0.0.(src.)rpm should require: openpkg-2.0.0-2.0.0 or not 
and why (not)
  -o info.dir (Debian v3.1), /override/bin, wrappers for cp|mv|rm|chmod|chown|chgrp
  -o fix all CORE and BASE packages
  +  MUST HAVE with (parallel) priorities:
  +1 info.dir (Debian v3.1), /override/bin, wrappers for cp|mv|rm|chmod|chown|chgrp
  +2 check rpm 1.3/2.0 package cross signing and verification [thl]: class header 
incompatiblity!
  +2 fix all CORE and BASE packages
   
 SHOULD HAVE:
   o  not 
  @@ -65,6 +59,7 @@
   - thl: sgml auf xmlcatmgr umstellen! (3 dependent packages: docbook, 
openjade/opensp, ?)
   - dig into problem where file conflicts are not detected
   - dig into problem where + in package name allows multiple installations of 
same package
  +o companion release GNU shtool 2.0.0 [rse] thl: sh.* docs done
   
 NICE TO HAVE:
   - ms: "OpenPKG" package branding with %{l_openpkg_release}
  @@ -89,6 +84,7 @@
   
 REJECTED SCOPE CREEP (but needs to be discussed post release)
   
  +o decide whether *-2.0.0.(src.)rpm should require: openpkg-2.0.0-2.0.0 or not 
and why (not)
   o more accurate version.release requirements (Christoph supported by Thomas)
   
 currently all release packages require other packages unversioned,
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]