[CVS] OpenPKG: openpkg-src/bash/ bash.patch bash.spec

2005-12-08 Thread Ralf S. Engelschall
  -   int call_set_current, last_stopped_job, job, children_exited, 
waitpid_flags;
  -+#ifdef __linux__
  -+  static int wcontinued_not_supported = 0;
  -+#endif
  - 
  -   call_set_current = children_exited = 0;
  -   last_stopped_job = NO_JOB;
  -@@ -2489,7 +2492,18 @@
  - : 0;
  -   if (sigchld || block == 0)
  - waitpid_flags |= WNOHANG;
  -+#ifdef __linux__
  -+  retry:
  -+  if (wcontinued_not_supported)
  -+  waitpid_flags &= ~WCONTINUED;
  -+#endif
  -   pid = WAITPID (-1, &status, waitpid_flags);
  -+#ifdef __linux__
  -+  if (pid == -1 && errno == EINVAL) {
  -+  wcontinued_not_supported = 1;
  -+  goto retry;
  -+  }
  -+#endif
  - 
  -   /* The check for WNOHANG is to make sure we decrement sigchld only
  -  if it was non-zero before we called waitpid. */
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/bash/bash.spec
  
  $ cvs diff -u -r1.64 -r1.65 bash.spec
  --- openpkg-src/bash/bash.spec27 Jul 2005 15:06:33 -  1.64
  +++ openpkg-src/bash/bash.spec8 Dec 2005 19:19:11 -   1.65
  @@ -23,10 +23,10 @@
   ##
   
   #   package version
  -%define   V_base_real 3.0
  -%define   V_base_comp 30
  -%define   V_plvl_raw  16
  -%define   V_plvl_pad  016
  +%define   V_base_real 3.1
  +%define   V_base_comp 31
  +%define   V_plvl_raw  0
  +%define   V_plvl_pad  0
   
   #   package information
   Name: bash
  @@ -39,28 +39,12 @@
   Group:Shell
   License:  GPL
   Version:  %{V_base_real}.%{V_plvl_raw}
  -Release:  20050727
  +Release:  20051208
   
   #   list of sources
   Source0:  ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}.tar.gz
   Source1:  profile
   Patch0:   bash.patch
  -Patch1:   
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-001
  -Patch2:   
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-002
  -Patch3:   
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-003
  -Patch4:   
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-004
  -Patch5:   
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-005
  -Patch6:   
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-006
  -Patch7:   
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-007
  -Patch8:   
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-008
  -Patch9:   
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-009
  -Patch10:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-010
  -Patch11:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-011
  -Patch12:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-012
  -Patch13:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-013
  -Patch14:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-014
  -Patch15:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-015
  -Patch16:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-016
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -92,15 +76,12 @@
   %prep
   #   unpack and patch distribution
   %setup -q -n bash-%{V_base_real}
  -%patch -p0 -P 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
  +%patch -p0
   
   #   brand with OpenPKG release and fix patchlevel
   %{l_shtool} subst \
   -e 's;@l_openpkg_release@;%{l_openpkg_release};' \
   version.c
  -%{l_shtool} subst \
  --e 's;\(size $(Program)\);\1 || true;' \
  -Makefile.in
   
   %build
   #   configure package
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/parrot/ parrot.patch parrot.spec

2005-12-08 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 20:11:29
  Branch: HEAD Handle: 2005120819112900

  Modified files:
openpkg-src/parrot  parrot.patch parrot.spec

  Log:
upgrading package: parrot 0.3.1 -> 0.4.0

  Summary:
RevisionChanges Path
1.4 +7  -19 openpkg-src/parrot/parrot.patch
1.14+2  -2  openpkg-src/parrot/parrot.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/parrot/parrot.patch
  
  $ cvs diff -u -r1.3 -r1.4 parrot.patch
  --- openpkg-src/parrot/parrot.patch   3 Jul 2005 18:19:47 -   1.3
  +++ openpkg-src/parrot/parrot.patch   8 Dec 2005 19:11:29 -   1.4
  @@ -1,7 +1,7 @@
  -Index: config/gen/icu.pl
   config/gen/icu.pl.orig   2005-05-13 22:49:11 +0200
  -+++ config/gen/icu.pl2005-07-03 20:13:35 +0200
  -@@ -67,7 +67,7 @@
  +Index: config/gen/icu.pm
  +--- config/gen/icu.pm.orig   2005-12-04 11:45:25 +0100
   config/gen/icu.pm2005-12-08 20:05:30 +0100
  +@@ -71,7 +71,7 @@
  if (defined $icuheaders) {
chomp $icuheaders;
$without = 1 unless -d $icuheaders;
  @@ -10,22 +10,10 @@
$without = 1 unless -d $icuheaders;
  }

  -Index: config/gen/makefiles/CFLAGS.in
   config/gen/makefiles/CFLAGS.in.orig  2005-06-15 10:00:09 +0200
  -+++ config/gen/makefiles/CFLAGS.in   2005-07-03 20:13:35 +0200
  -@@ -5,6 +5,8 @@
  - #
  - # Note, empty regex/options are just ignored.
  - #
  -+ops/core_ops_switch.c -{-O2} # workaround GCC 3.4.3 optimizer problems
  -+ops/core_ops_cgp.c-{-O2} # workaround GCC 3.4.3 optimizer problems
  - src/spf_render.c -{-Wformat-nonliteral}   # noisy
  - src/tsq.c-{${optimize}}   # never optimize tsq.c!
  - ops/core_ops_cg.c   -{${optimize}}   # takes too long
   Index: imcc/imcc.l
   imcc/imcc.l.orig 2005-06-15 21:43:08 +0200
  -+++ imcc/imcc.l  2005-07-03 20:16:46 +0200
  -@@ -80,6 +80,7 @@
  +--- imcc/imcc.l.orig 2005-11-29 18:28:35 +0100
   imcc/imcc.l  2005-12-08 20:05:30 +0100
  +@@ -83,6 +83,7 @@

%option never-interactive
%option stack
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/parrot/parrot.spec
  
  $ cvs diff -u -r1.13 -r1.14 parrot.spec
  --- openpkg-src/parrot/parrot.spec8 Nov 2005 07:05:17 -   1.13
  +++ openpkg-src/parrot/parrot.spec8 Dec 2005 19:11:29 -   1.14
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Language
   License:  Artistic/GPL
  -Version:  0.3.1
  -Release:  20051108
  +Version:  0.4.0
  +Release:  20051208
   
   #   list of sources
   Source0:  
ftp://ftp.cpan.org/pub/CPAN/authors/id/L/LT/LTOETSCH/parrot-%{version}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/wine/ wine.spec

2005-12-08 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 20:10:18
  Branch: HEAD Handle: 2005120819101700

  Modified files:
openpkg-src/winewine.spec

  Log:
upgrading package: wine 0.9.2 -> 0.9.3

  Summary:
RevisionChanges Path
1.46+2  -2  openpkg-src/wine/wine.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/wine/wine.spec
  
  $ cvs diff -u -r1.45 -r1.46 wine.spec
  --- openpkg-src/wine/wine.spec23 Nov 2005 07:54:01 -  1.45
  +++ openpkg-src/wine/wine.spec8 Dec 2005 19:10:17 -   1.46
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:XWindow
   License:  LGPL
  -Version:  0.9.2
  -Release:  20051123
  +Version:  0.9.3
  +Release:  20051208
   
   #   list of sources
   Source0:  
http://ibiblio.org/pub/linux/system/emulators/wine/wine-%{version}.tar.bz2
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/mhash/ mhash.patch mhash.spec

2005-12-08 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 20:10:01
  Branch: HEAD Handle: 2005120819100100

  Added files:
openpkg-src/mhash   mhash.patch
  Modified files:
openpkg-src/mhash   mhash.spec

  Log:
upgrading package: mhash 0.9.2 -> 0.9.3

  Summary:
RevisionChanges Path
1.1 +53 -0  openpkg-src/mhash/mhash.patch
1.20+4  -2  openpkg-src/mhash/mhash.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/mhash/mhash.patch
  
  $ cvs diff -u -r0 -r1.1 mhash.patch
  --- /dev/null 2005-12-08 20:09:59 +0100
  +++ mhash.patch   2005-12-08 20:10:01 +0100
  @@ -0,0 +1,53 @@
  +Index: lib/stdfns.c
  +--- lib/stdfns.c.orig2005-12-07 04:09:46 +0100
   lib/stdfns.c 2005-12-08 20:03:28 +0100
  +@@ -24,6 +24,7 @@
  +  */
  + 
  + #include "libdefs.h"
  ++#include 
  + 
  + /**
  +  * Some of these are wrappers. The idea is to eventually produce an 
extremely
  +@@ -184,11 +185,11 @@
  + {
  + return(0);
  + }
  +-return(-MAXINT);
  ++return(-INT_MAX);
  + }
  + if (s2 == NULL)
  + {
  +-return(MAXINT);
  ++return(INT_MAX);
  + }
  + 
  + return(memcmp(s1, s2, n));
  +@@ -305,11 +306,11 @@
  + {
  + return(0);
  + }
  +-return(-MAXINT);
  ++return(-INT_MAX);
  + }
  + if (src2 == NULL)
  + {
  +-return(MAXINT);
  ++return(INT_MAX);
  + }
  + return(strcmp((char *) src1, (char *) src2));
  + }
  +@@ -328,11 +329,11 @@
  + {
  + return(0);
  + }
  +-return(-MAXINT);
  ++return(-INT_MAX);
  + }
  + if (src2 == NULL)
  + {
  +-return(MAXINT);
  ++return(INT_MAX);
  + }
  + return(strncmp((char *) src1, (char *) src2, n));
  + }
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/mhash/mhash.spec
  
  $ cvs diff -u -r1.19 -r1.20 mhash.spec
  --- openpkg-src/mhash/mhash.spec  24 Mar 2005 11:19:27 -  1.19
  +++ openpkg-src/mhash/mhash.spec  8 Dec 2005 19:10:01 -   1.20
  @@ -32,11 +32,12 @@
   Class:PLUS
   Group:Cryptography
   License:  LGPL
  -Version:  0.9.2
  -Release:  20050113
  +Version:  0.9.3
  +Release:  20051208
   
   #   list of sources
   Source0:  
http://osdn.dl.sourceforge.net/sourceforge/mhash/mhash-%{version}.tar.gz
  +Patch0:   mhash.patch
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -63,6 +64,7 @@
   
   %prep
   %setup -q
  +%patch -p0
   
   %build
   CC="%{l_cc}" \
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/readline/ readline.patch readline.spec

2005-12-08 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 20:08:17
  Branch: HEAD Handle: 2005120819081600

  Modified files:
openpkg-src/readlinereadline.spec
  Removed files:
openpkg-src/readlinereadline.patch

  Log:
upgrading package: readline 5.0.5 -> 5.1.0

  Summary:
RevisionChanges Path
1.5 +0  -33 openpkg-src/readline/readline.patch
1.24+5  -17 openpkg-src/readline/readline.spec
  

  rm -f openpkg-src/readline/readline.patch <<'@@ .'
  Index: openpkg-src/readline/readline.patch
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/readline/readline.spec
  
  $ cvs diff -u -r1.23 -r1.24 readline.spec
  --- openpkg-src/readline/readline.spec17 Jun 2005 12:20:16 -  
1.23
  +++ openpkg-src/readline/readline.spec8 Dec 2005 19:08:16 -   
1.24
  @@ -23,10 +23,10 @@
   ##
   
   #   package version
  -%define   V_base_real 5.0
  -%define   V_base_comp 50
  -%define   V_plvl_raw  5
  -%define   V_plvl_pad  005
  +%define   V_base_real 5.1
  +%define   V_base_comp 51
  +%define   V_plvl_raw  0
  +%define   V_plvl_pad  0
   
   #   package information
   Name: readline
  @@ -39,17 +39,11 @@
   Group:Converter
   License:  GPL
   Version:  %{V_base_real}.%{V_plvl_raw}
  -Release:  20050617
  +Release:  20051208
   
   #   list of sources
   Source0:  ftp://ftp.cwru.edu/pub/bash/readline-%{V_base_real}.tar.gz
   Source1:  readline.pc
  -Patch0:   readline.patch
  -Patch1:   
ftp://ftp.cwru.edu/pub/bash/readline-%{V_base_real}-patches/readline%{V_base_comp}-001
  -Patch2:   
ftp://ftp.cwru.edu/pub/bash/readline-%{V_base_real}-patches/readline%{V_base_comp}-002
  -Patch3:   
ftp://ftp.cwru.edu/pub/bash/readline-%{V_base_real}-patches/readline%{V_base_comp}-003
  -Patch4:   
ftp://ftp.cwru.edu/pub/bash/readline-%{V_base_real}-patches/readline%{V_base_comp}-004
  -Patch5:   
ftp://ftp.cwru.edu/pub/bash/readline-%{V_base_real}-patches/readline%{V_base_comp}-005
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -76,12 +70,6 @@
   
   %prep
   %setup -q -n readline-%{V_base_real}
  -%patch -p0 -P 0 1 2 3 4 5
  -
  -#   fix incorrect versioning
  -%{l_shtool} subst \
  --e 's;5\.0-rc1;5.0;' \
  -configure
   
   %build
   #   configure package
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/nsd/ nsd.spec

2005-12-08 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 20:04:59
  Branch: HEAD Handle: 2005120819045700

  Modified files:
openpkg-src/nsd nsd.spec

  Log:
upgrading package: nsd 2.3.1 -> 2.3.3

  Summary:
RevisionChanges Path
1.51+2  -2  openpkg-src/nsd/nsd.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/nsd/nsd.spec
  
  $ cvs diff -u -r1.50 -r1.51 nsd.spec
  --- openpkg-src/nsd/nsd.spec  31 Aug 2005 19:20:07 -  1.50
  +++ openpkg-src/nsd/nsd.spec  8 Dec 2005 19:04:57 -   1.51
  @@ -34,8 +34,8 @@
   Class:PLUS
   Group:DNS
   License:  GPL
  -Version:  2.3.1
  -Release:  20050831
  +Version:  2.3.3
  +Release:  20051208
   
   #   package option
   %option   with_fsl  yes
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-www/ perl-www.spec

2005-12-08 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 20:04:46
  Branch: HEAD Handle: 2005120819044400

  Modified files:
openpkg-src/perl-wwwperl-www.spec

  Log:
modifying package: perl-www-5.8.7 20051208 again

  Summary:
RevisionChanges Path
1.252   +1  -1  openpkg-src/perl-www/perl-www.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-www/perl-www.spec
  
  $ cvs diff -u -r1.251 -r1.252 perl-www.spec
  --- openpkg-src/perl-www/perl-www.spec8 Dec 2005 08:07:02 -   
1.251
  +++ openpkg-src/perl-www/perl-www.spec8 Dec 2005 19:04:44 -   
1.252
  @@ -26,7 +26,7 @@
   %define   V_perl  5.8.7
   %define   V_libwww_perl   5.804
   %define   V_uri   1.35
  -%define   V_cgi   3.13
  +%define   V_cgi   3.15
   %define   V_cgi_untaint   1.26
   %define   V_cgi_auth  3.00
   %define   V_cgi_simple0.077
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/nmap/ nmap.spec

2005-12-08 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 20:04:00
  Branch: HEAD Handle: 2005120819035900

  Modified files:
openpkg-src/nmapnmap.spec

  Log:
upgrading package: nmap 3.93 -> 3.95

  Summary:
RevisionChanges Path
1.75+2  -2  openpkg-src/nmap/nmap.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/nmap/nmap.spec
  
  $ cvs diff -u -r1.74 -r1.75 nmap.spec
  --- openpkg-src/nmap/nmap.spec13 Sep 2005 08:39:06 -  1.74
  +++ openpkg-src/nmap/nmap.spec8 Dec 2005 19:03:59 -   1.75
  @@ -32,8 +32,8 @@
   Class:BASE
   Group:Network
   License:  GPL
  -Version:  3.93
  -Release:  20050913
  +Version:  3.95
  +Release:  20051208
   
   #   list of sources
   Source0:  http://www.insecure.org/nmap/dist/nmap-%{version}.tgz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/pound/ pound.spec

2005-12-08 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 20:04:00
  Branch: HEAD Handle: 2005120819035900

  Modified files:
openpkg-src/pound   pound.spec

  Log:
upgrading package: pound 2.0b3 -> 2.0b4

  Summary:
RevisionChanges Path
1.40+2  -2  openpkg-src/pound/pound.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/pound/pound.spec
  
  $ cvs diff -u -r1.39 -r1.40 pound.spec
  --- openpkg-src/pound/pound.spec  19 Nov 2005 08:40:28 -  1.39
  +++ openpkg-src/pound/pound.spec  8 Dec 2005 19:03:59 -   1.40
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Web
   License:  GPL
  -Version:  2.0b3
  -Release:  20051119
  +Version:  2.0b4
  +Release:  20051208
   
   #   package options
   %option   with_fsl  yes
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/delegate/ delegate.spec

2005-12-08 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 10:15:46
  Branch: HEAD Handle: 2005120809154600

  Modified files:
openpkg-src/delegatedelegate.spec

  Log:
upgrading package: delegate 9.0.4 -> 9.0.5

  Summary:
RevisionChanges Path
1.92+2  -2  openpkg-src/delegate/delegate.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/delegate/delegate.spec
  
  $ cvs diff -u -r1.91 -r1.92 delegate.spec
  --- openpkg-src/delegate/delegate.spec6 Oct 2005 17:26:37 -   
1.91
  +++ openpkg-src/delegate/delegate.spec8 Dec 2005 09:15:46 -   
1.92
  @@ -32,8 +32,8 @@
   Class:BASE
   Group:Network
   License:  Freely distributable
  -Version:  9.0.4
  -Release:  20051006
  +Version:  9.0.5
  +Release:  20051208
   
   #   list of sources
   Source0:  ftp://ftp:[EMAIL 
PROTECTED]/pub/DeleGate/alpha/delegate%{version}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/xmlroff/ xmlroff.spec

2005-12-08 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 10:08:32
  Branch: HEAD Handle: 2005120809083100

  Modified files:
openpkg-src/xmlroff xmlroff.spec

  Log:
upgrading package: xmlroff 0.3.7 -> 0.3.8

  Summary:
RevisionChanges Path
1.5 +2  -2  openpkg-src/xmlroff/xmlroff.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/xmlroff/xmlroff.spec
  
  $ cvs diff -u -r1.4 -r1.5 xmlroff.spec
  --- openpkg-src/xmlroff/xmlroff.spec  3 Nov 2005 07:12:02 -   1.4
  +++ openpkg-src/xmlroff/xmlroff.spec  8 Dec 2005 09:08:31 -   1.5
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Text
   License:  GPL
  -Version:  0.3.7
  -Release:  20051103
  +Version:  0.3.8
  +Release:  20051208
   
   #   list of sources
   Source0:  
http://osdn.dl.sourceforge.net/xmlroff/xmlroff-%{version}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-www/ perl-www.spec

2005-12-08 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 09:07:07
  Branch: HEAD Handle: 2005120808070200

  Modified files:
openpkg-src/perl-wwwperl-www.spec

  Log:
modifying package: perl-www-5.8.7 20051207 -> 20051208

  Summary:
RevisionChanges Path
1.251   +2  -2  openpkg-src/perl-www/perl-www.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-www/perl-www.spec
  
  $ cvs diff -u -r1.250 -r1.251 perl-www.spec
  --- openpkg-src/perl-www/perl-www.spec7 Dec 2005 09:06:03 -   
1.250
  +++ openpkg-src/perl-www/perl-www.spec8 Dec 2005 08:07:02 -   
1.251
  @@ -24,7 +24,7 @@
   
   #   versions of individual parts
   %define   V_perl  5.8.7
  -%define   V_libwww_perl   5.803
  +%define   V_libwww_perl   5.804
   %define   V_uri   1.35
   %define   V_cgi   3.13
   %define   V_cgi_untaint   1.26
  @@ -91,7 +91,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20051207
  +Release:  20051208
   
   #   list of sources
   Source0:  http://www.cpan.org/modules/by-module/URI/URI-%{V_uri}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-xml/ perl-xml.spec

2005-12-08 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 09:04:49
  Branch: HEAD Handle: 2005120808044800

  Modified files:
openpkg-src/perl-xmlperl-xml.spec

  Log:
modifying package: perl-xml-5.8.7 20051207 -> 20051208

  Summary:
RevisionChanges Path
1.213   +2  -2  openpkg-src/perl-xml/perl-xml.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-xml/perl-xml.spec
  
  $ cvs diff -u -r1.212 -r1.213 perl-xml.spec
  --- openpkg-src/perl-xml/perl-xml.spec7 Dec 2005 09:02:16 -   
1.212
  +++ openpkg-src/perl-xml/perl-xml.spec8 Dec 2005 08:04:48 -   
1.213
  @@ -26,7 +26,7 @@
   %define   V_perl5.8.7
   %define   V_html_parser 3.48
   %define   V_html_simpleparse0.12
  -%define   V_html_table  2.02
  +%define   V_html_table  2.03
   %define   V_html_tagreader  1.08
   %define   V_html_tagset 3.10
   %define   V_html_tree   3.1901
  @@ -83,7 +83,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20051207
  +Release:  20051208
   
   #   package options
   %option   with_libxmlno
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-ds/ perl-ds.spec

2005-12-08 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 09:01:59
  Branch: HEAD Handle: 2005120808015900

  Modified files:
openpkg-src/perl-ds perl-ds.spec

  Log:
modifying package: perl-ds-5.8.7 20051206 -> 20051208

  Summary:
RevisionChanges Path
1.119   +3  -3  openpkg-src/perl-ds/perl-ds.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-ds/perl-ds.spec
  
  $ cvs diff -u -r1.118 -r1.119 perl-ds.spec
  --- openpkg-src/perl-ds/perl-ds.spec  6 Dec 2005 12:52:44 -   1.118
  +++ openpkg-src/perl-ds/perl-ds.spec  8 Dec 2005 08:01:59 -   1.119
  @@ -29,7 +29,7 @@
   %define   V_set_intspan   1.08
   %define   V_set_array 0.11
   %define   V_set_object1.14
  -%define   V_io_string 1.07
  +%define   V_io_string 1.08
   %define   V_io_stringy2.110
   %define   V_tie_ixhash1.21
   %define   V_tree_dag_node 1.05
  @@ -41,7 +41,7 @@
   %define   V_array_each0.02
   %define   V_scalar_list_utils 1.18
   %define   V_heap  0.71
  -%define   V_graph 0.68
  +%define   V_graph 0.69
   %define   V_graph_easy0.34
   
   #   package information
  @@ -55,7 +55,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20051206
  +Release:  20051208
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Bit/Bit-Vector-%{V_bit_vector}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/dialog/ dialog.spec

2005-12-08 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   08-Dec-2005 09:01:26
  Branch: HEAD Handle: 2005120808012300

  Modified files:
openpkg-src/dialog  dialog.spec

  Log:
upgrading package: dialog 1.0.20051107 -> 1.0.20051207

  Summary:
RevisionChanges Path
1.51+2  -2  openpkg-src/dialog/dialog.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/dialog/dialog.spec
  
  $ cvs diff -u -r1.50 -r1.51 dialog.spec
  --- openpkg-src/dialog/dialog.spec8 Nov 2005 07:02:25 -   1.50
  +++ openpkg-src/dialog/dialog.spec8 Dec 2005 08:01:23 -   1.51
  @@ -24,7 +24,7 @@
   
   #   version information
   %define   V_maj 1.0
  -%define   V_min 20051107
  +%define   V_min 20051207
   
   #   package information
   Name: dialog
  @@ -37,7 +37,7 @@
   Group:Terminal
   License:  BSD
   Version:  %{V_maj}.%{V_min}
  -Release:  20051108
  +Release:  20051208
   
   #   list of sources
   Source0:  ftp://invisible-island.net/dialog/dialog-%{V_maj}-%{V_min}.tgz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org