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

2004-04-28 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:   28-Apr-2004 09:11:52
  Branch: HEAD Handle: 2004042808115200

  Modified files:
openpkg-src/imapimap.spec

  Log:
upgrading package: imap 2004rc8 - 2004rc9

  Summary:
RevisionChanges Path
1.24+3  -3  openpkg-src/imap/imap.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/imap/imap.spec
  
  $ cvs diff -u -r1.23 -r1.24 imap.spec
  --- openpkg-src/imap/imap.spec14 Apr 2004 07:56:45 -  1.23
  +++ openpkg-src/imap/imap.spec28 Apr 2004 07:11:52 -  1.24
  @@ -24,8 +24,8 @@
   ##
   
   #   package version
  -%define   V_real 2004.RC8
  -%define   V_here 2004rc8
  +%define   V_real 2004.RC9
  +%define   V_here 2004rc9
   
   #   package information
   Name: imap
  @@ -38,7 +38,7 @@
   Group:Mail
   License:  University of Washington's Free-Fork License
   Version:  %{V_here}
  -Release:  20040414
  +Release:  20040428
   
   #   list of sources
   Source0:  ftp://ftp.cac.washington.edu/imap/imap-%{V_real}.tar.Z
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-04-28 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:   28-Apr-2004 09:20:57
  Branch: HEAD Handle: 2004042808205700

  Modified files:
openpkg-src/xterm   xterm.spec

  Log:
upgrading package: xterm 1.86 - 1.87

  Summary:
RevisionChanges Path
1.72+3  -3  openpkg-src/xterm/xterm.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/xterm/xterm.spec
  
  $ cvs diff -u -r1.71 -r1.72 xterm.spec
  --- openpkg-src/xterm/xterm.spec  22 Apr 2004 07:42:05 -  1.71
  +++ openpkg-src/xterm/xterm.spec  28 Apr 2004 07:20:57 -  1.72
  @@ -24,8 +24,8 @@
   ##
   
   #   package versions
  -%define   V_whole1.86
  -%define   V_xterm186
  +%define   V_whole1.87
  +%define   V_xterm187
   %define   V_xtermset 0.5.2
   %define   V_xtermcontrol 2.4
   
  @@ -40,7 +40,7 @@
   Group:XWindow
   License:  X11
   Version:  %{V_whole}
  -Release:  20040422
  +Release:  20040428
   
   #   list of sources
   Source0:  ftp://invisible-island.net/xterm/xterm-%{V_xterm}.tgz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-04-28 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:   28-Apr-2004 10:29:04
  Branch: HEAD Handle: 2004042809290400

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

  Log:
Fix building under GCC 3.4

Discovered by: Karl Vogel [EMAIL PROTECTED]

  Summary:
RevisionChanges Path
1.1 +17 -0  openpkg-src/glib/glib.patch
1.32+3  -1  openpkg-src/glib/glib.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/glib/glib.patch
  
  $ cvs diff -u -r0 -r1.1 glib.patch
  --- /dev/null 2004-04-28 10:29:04.0 +0200
  +++ glib.patch2004-04-28 10:29:04.0 +0200
  @@ -0,0 +1,17 @@
  +GCC 3.4 and higher treats __FUNCTION__ and similar special compiler
  +symbols as variables instead of macros. This means they no longer can
  +be concatenated directly with string literals. Unfortunately, GLIB uses
  +them in this way, so we have to disable this use with GCC 3.4 or higher.
  +
  +Index: glib.h
  +--- glib.h.orig  2001-02-27 04:44:38.0 +0100
   glib.h   2004-04-28 10:24:56.0 +0200
  +@@ -272,7 +272,7 @@
  + /* Wrap the gcc __PRETTY_FUNCTION__ and __FUNCTION__ variables with
  +  * macros, so we can refer to them as strings unconditionally.
  +  */
  +-#ifdef  __GNUC__
  ++#if defined(__GNUC__)  (__GNUC__ == 3  __GNUC_MINOR__  4)
  + #define G_GNUC_FUNCTION __FUNCTION__
  + #define G_GNUC_PRETTY_FUNCTION  __PRETTY_FUNCTION__
  + #else   /* !__GNUC__ */
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/glib/glib.spec
  
  $ cvs diff -u -r1.31 -r1.32 glib.spec
  --- openpkg-src/glib/glib.spec7 Feb 2004 17:55:08 -   1.31
  +++ openpkg-src/glib/glib.spec28 Apr 2004 08:29:04 -  1.32
  @@ -38,13 +38,14 @@
   Group:Algorithm
   License:  GPL
   Version:  %{V_glib_major}.%{V_glib_minor}
  -Release:  20040207
  +Release:  20040428
   
   #   package options
   %option   with_threads  no
   
   #   list of sources
   Source0:  ftp://ftp.gtk.org/pub/gtk/v1.2/glib-%{version}.tar.gz
  +Patch0:   glib.patch
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -69,6 +70,7 @@
   
   %prep
   %setup -q
  +%patch -p0
   %{l_shtool} subst \
   -e 's;glib-%{V_glib_major};glib;g' \
   Makefile.in glib-config.in glib.pc.in \
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-04-28 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-re   Date:   28-Apr-2004 10:41:21
  Branch: HEAD Handle: 2004042809412100

  Modified files:
openpkg-re  todo.txt

  Log:
Gentoo 2004.1 is out

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

  patch -p0 '@@ .'
  Index: openpkg-re/todo.txt
  
  $ cvs diff -u -r1.214 -r1.215 todo.txt
  --- openpkg-re/todo.txt   28 Apr 2004 08:37:23 -  1.214
  +++ openpkg-re/todo.txt   28 Apr 2004 08:41:21 -  1.215
  @@ -77,7 +77,7 @@
   - dv23 ix86-rhel3 (reinstall)   .   X   .   
.
   - dv14 ix86-suse8.2   (install 9.0) .   X   .   
.
   - dv17 ix86-suse9.0   (install 9.1) .   X   .   
.
  -- dv18 ix86-gentoo1.4 (update)  .   X   .   
.
  +- dv18 ix86-gentoo1.4 (update to Gentoo 2004.1) .   X   .   
.
   - dv7  ix86-solaris9  (reanimate,update).   .   .   
X
   - dv9  sparc64-solaris9   (reinstall, SunWS).   .   X   
X
   - dv8  sparc64-solaris8   (reinstall, SunWS).   .   X   
X   
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-tools/cmd/ dev.sh

2004-04-28 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-toolsDate:   28-Apr-2004 10:47:40
  Branch: HEAD Handle: 2004042809473900

  Modified files:
openpkg-tools/cmd   dev.sh

  Log:
introduce query to get script ingredients from outside; reanimate
canonifybranch for comfortable branching

  Summary:
RevisionChanges Path
1.19+26 -9  openpkg-tools/cmd/dev.sh
  

  patch -p0 '@@ .'
  Index: openpkg-tools/cmd/dev.sh
  
  $ cvs diff -u -r1.18 -r1.19 dev.sh
  --- openpkg-tools/cmd/dev.sh  28 Apr 2004 08:13:55 -  1.18
  +++ openpkg-tools/cmd/dev.sh  28 Apr 2004 08:47:39 -  1.19
  @@ -614,16 +614,19 @@
   echo ${branch}
   else
   branch=$1
  -if [ .${branch} = . ]; then
  -return
  -fi
  -#FIXME canonifybranch ${1}
  -if [ .${branch} = .HEAD ]; then
  -HOME=${OPENPKG_WORK} cvs update -A
  -else
  -HOME=${OPENPKG_WORK} cvs update -r ${branch}
  +if [ .${branch} != . ]; then
  +if [ .${branch} != .-A -a .${OPENPKG_TOOLS_CMDPROG} != . -a 
.${OPENPKG_TOOLS_CMDNAME} != . ]; then
  +branch=`${OPENPKG_TOOLS_CMDPROG} ${OPENPKG_TOOLS_CMDNAME} query 
canonifybranch \${branch}\`
  +fi
  +if [ .${branch} = .HEAD ]; then
  +HOME=${OPENPKG_WORK} cvs update -A
  +elif [ .${branch} = .-A ]; then
  +HOME=${OPENPKG_WORK} cvs update -A
  +branch=
  +else
  +HOME=${OPENPKG_WORK} cvs update -r ${branch}
  +fi
   fi
  -
   OPENPKG_CTAG=${branch}
   cd .
   fi
  @@ -2213,6 +2216,19 @@
   done
   }
   
  +query () {
  +while [ .$1 != . ]; do
  +RV=
  +case .$1 in
  +   .ma* ) shift; matchinstance $1 ;;
  +   .ca* ) shift; canonifybranch $1 ;;
  +  * ) RV=ERROR: unknow query \$1\ ;;
  +esac
  +echo $RV
  +shift
  +done
  +}
  +
   help () {
   if [ -d ${OPENPKG_WORK} ]; then
   out=tee ${OPENPKG_WORK}/00README
  @@ -2289,6 +2305,7 @@
   new | ne* ) cmd=new ;;
   package | pa* ) cmd=package ;;
   peek| pe* ) cmd=peek;;
  +query   | qu* ) cmd=query   ;;
   release | re* ) cmd=release ;;
   run | ru* ) cmd=run ;;
   setup ) cmd=setup   ;;
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-tools/cmd/ dev.sh

2004-04-28 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-toolsDate:   28-Apr-2004 10:55:38
  Branch: HEAD Handle: 2004042809553800

  Modified files:
openpkg-tools/cmd   dev.sh

  Log:
remove vcheck compatiblity; update and sort help and abbreviated
commands

  Summary:
RevisionChanges Path
1.20+6  -10 openpkg-tools/cmd/dev.sh
  

  patch -p0 '@@ .'
  Index: openpkg-tools/cmd/dev.sh
  
  $ cvs diff -u -r1.19 -r1.20 dev.sh
  --- openpkg-tools/cmd/dev.sh  28 Apr 2004 08:47:39 -  1.19
  +++ openpkg-tools/cmd/dev.sh  28 Apr 2004 08:55:38 -  1.20
  @@ -2012,11 +2012,6 @@
   die testit not yet implemented. Developer: consider testit vs. test(1)
   }
   
  -vcheck () {
  -# compatiblity FIXME
  -die vcheck is deprecated. Use track.
  -}
  -
   track () {
   rpmT --help | grep -- --track /dev/null || die ${RPMCMD:-rpm} does not 
support --track
   if [ .${packages} = . ]; then
  @@ -2255,13 +2250,15 @@
   \$ openpkg dev new # spec... [-dry]create new package 
from scratch
   \$ openpkg dev package # [spec]switch to a 
different package
   \$ openpkg dev peek# [[spec]...]   peek at file list of 
binary package
  +\$ openpkg dev query   # matchinstance|canonifybranch  query script 
internals
   \$ openpkg dev release # [[spec]...] [-dry] [-m msg] release package 
changes to master server
   \$ openpkg dev run # [[spec]...] [-dry] [-f] cmd   append cmd to %prep 
for spec and run rpm -bp
   \$ openpkg dev search  # [[spec]...]   search a package on 
master server
   \$ openpkg dev setup   # [[[spec]ctag]exec]initial setup of 
openpkg dev working environment
  +\$ openpkg dev srcdir  # [dir] use a different 
source directory
   \$ openpkg dev test# [[spec]...]   run functional test 
(reserved for future use)
   \$ openpkg dev tools   # [path]tools to run 
(default to instance internals)
  -\$ openpkg dev track   # [[spec]...]   track version 
(formerly called vcheck)
  +\$ openpkg dev track   # [[spec]...]   track version
   \$ openpkg dev update  #   update development 
environment from master server
   \$ openpkg dev vim # [[spec]...] [-f]  spec edit and lint 
(if HEAD or forced)
   

  @@ -2291,8 +2288,8 @@
   #   handle command
   case ${cmd} in
   bash| ba* ) cmd=bash;;
  -build   | bu* ) cmd=build   ;;
   branch  | br* ) cmd=branch  ;;
  +build   | bu* ) cmd=build   ;;
   clean   | cl* ) cmd=clean   ;;
   diff| di* ) cmd=diff;;
   execute | ex* ) cmd=execute ;;
  @@ -2310,13 +2307,12 @@
   run | ru* ) cmd=run ;;
   setup ) cmd=setup   ;;
   search  | se* ) cmd=search  ;;
  +srcdir  | sr* ) cmd=srcdir  ;;
   test| te* ) cmd=test;;
  -track   | tr* ) cmd=track   ;;
   tools   | to* ) cmd=tools   ;;
  +track   | tr* ) cmd=track   ;;
   update  | up* ) cmd=update  ;;
  -vcheck  | vc* ) cmd=vcheck  ;;
   vim | vi* ) cmd=vim ;;
  -srcdir  | sr* ) cmd=srcdir  ;;
   *) die unknown command \${cmd}\ ;;
   esac
   ${cmd} $@
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-tools/cmd/ dev.sh

2004-04-28 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-toolsDate:   28-Apr-2004 11:22:19
  Branch: HEAD Handle: 2004042810221900

  Modified files:
openpkg-tools/cmd   dev.sh

  Log:
change package command to no param clears setting and reverts to
automatic detection logic

  Summary:
RevisionChanges Path
1.21+4  -7  openpkg-tools/cmd/dev.sh
  

  patch -p0 '@@ .'
  Index: openpkg-tools/cmd/dev.sh
  
  $ cvs diff -u -r1.20 -r1.21 dev.sh
  --- openpkg-tools/cmd/dev.sh  28 Apr 2004 08:55:38 -  1.20
  +++ openpkg-tools/cmd/dev.sh  28 Apr 2004 09:22:19 -  1.21
  @@ -571,10 +571,7 @@
   echo ${package}
   else
   package=$1
  -if [ .${package} = . ]; then
  -OPENPKG_SPEC=
  -cd ${OPENPKG_WORK}/$S
  -else
  +if [ .${package} != . ]; then
   if [ ! -d ${OPENPKG_WORK}/$S ]; then
   error ${OPENPKG_WORK}/$S directory not found
   return 1
  @@ -585,10 +582,10 @@
   error ${OPENPKG_WORK}/$S/${package} directory not found
   return 1
   fi
  -
  -OPENPKG_SPEC=${package}
  -cd ${OPENPKG_WORK}/$S/${package}
  +builtin cd ${OPENPKG_WORK}/$S/${package}
   fi
  +OPENPKG_SPEC=${package}
  +cd .
   fi
   }
   
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-04-28 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-re   Date:   28-Apr-2004 11:22:41
  Branch: HEAD Handle: 2004042810224000

  Modified files:
openpkg-re  todo.txt

  Log:
one more box done

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

  patch -p0 '@@ .'
  Index: openpkg-re/todo.txt
  
  $ cvs diff -u -r1.215 -r1.216 todo.txt
  --- openpkg-re/todo.txt   28 Apr 2004 08:41:21 -  1.215
  +++ openpkg-re/todo.txt   28 Apr 2004 09:22:40 -  1.216
  @@ -70,8 +70,8 @@
   HW  - dv1  ix86-freebsd4.10   (update)  #   .   .   
.
   - dv2  ix87-freebsd5.2(update)  X   .   .   
.
   - dv5  ix86-debian2.2 (install MDK 10)  .   X   .   
.
  -- dv6  ix86-debian3.0 (update)  X   .   .   
.
  -- dv19 ix86-debian3.1 (update)  X   .   .   
.
  +- dv6  ix86-debian3.0 (update, Linux 2.4.26)#   .   .   
.
  +- dv19 ix86-debian3.1 (update, Linux 2.4.26)X   .   .   
.
   - dv4  ix86-rhl9  (update)  .   X   .   
.
   - dv22 ix86-fedora1   (reinstall FC2)   .   X   .   
.
   - dv23 ix86-rhel3 (reinstall)   .   X   .   
.
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-04-28 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-re   Date:   28-Apr-2004 15:05:06
  Branch: HEAD Handle: 2004042814050500

  Modified files:
openpkg-re  todo.txt

  Log:
after three attempts, dv2 is up and running under latest FreeBSD
5.2-CURRENT again

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

  patch -p0 '@@ .'
  Index: openpkg-re/todo.txt
  
  $ cvs diff -u -r1.217 -r1.218 todo.txt
  --- openpkg-re/todo.txt   28 Apr 2004 09:58:13 -  1.217
  +++ openpkg-re/todo.txt   28 Apr 2004 13:05:05 -  1.218
  @@ -68,7 +68,7 @@
   --- --- --- --- --- 
---
   Buildfarm   buildfarm fixing  upgrades  reinstalltionsX   X   X   
X
   HW  - dv1  ix86-freebsd4.10   (update)  #   .   .   
.
  -- dv2  ix87-freebsd5.2(update)  X   .   .   
.
  +- dv2  ix87-freebsd5.2(update)  #   .   .   
.
   - dv5  ix86-debian2.2 (install MDK 10)  .   X   .   
.
   - dv6  ix86-debian3.0 (update, Linux 2.4.26)#   .   .   
.
   - dv19 ix86-debian3.1 (update, Linux 2.4.26)#   .   .   
.
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-04-28 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-src  Date:   28-Apr-2004 15:39:18
  Branch: HEAD Handle: 2004042814391800

  Modified files:
openpkg-src/openpkg HISTORY rc

  Log:
let rc point out that it searches subdirectories for unresolved file
conflicts

  Summary:
RevisionChanges Path
1.168   +1  -0  openpkg-src/openpkg/HISTORY
1.52+2  -1  openpkg-src/openpkg/rc
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.167 -r1.168 HISTORY
  --- openpkg-src/openpkg/HISTORY   27 Apr 2004 08:35:45 -  1.167
  +++ openpkg-src/openpkg/HISTORY   28 Apr 2004 13:39:18 -  1.168
  @@ -2,6 +2,7 @@
   2004
   
   
  +20040428 let rc point out that it searches subdirectories for unresolved file 
conflicts
   20040427 fixed rpmpopt: replace hard-coded bash path and do not use reserved shell 
keywords
   20040426 upgrade to cURL 7.11.2
   20040422 backout added hack to rpmtool cflags -O processing because it was 
incorrect
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rc
  
  $ cvs diff -u -r1.51 -r1.52 rc
  --- openpkg-src/openpkg/rc21 Apr 2004 15:18:06 -  1.51
  +++ openpkg-src/openpkg/rc28 Apr 2004 13:39:18 -  1.52
  @@ -298,7 +298,8 @@
   * ) type=WARNING ;;
   esac
   echo openpkg:rc:${type}: package \$s_name\ has unresolved 
configuration file conflicts 12
  -echo openpkg:rc:${type}: indicated by \*.rpm(new|orig|save)\ 
files in \$prefix/etc/$s_name\ 12
  +echo openpkg:rc:${type}: indicated by \*.rpm(new|orig|save)\ 
files 12
  +echo openpkg:rc:${type}: in or below \$prefix/etc/$s_name\ 12
   if [ .$type = .ERROR ]; then
   continue
   fi
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-tools/ VERSION

2004-04-28 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-toolsDate:   28-Apr-2004 20:44:33
  Branch: HEAD Handle: 2004042819443300

  Modified files:
openpkg-tools   VERSION

  Log:
bump before release

  Summary:
RevisionChanges Path
1.10+1  -1  openpkg-tools/VERSION
  

  patch -p0 '@@ .'
  Index: openpkg-tools/VERSION
  
  $ cvs diff -u -r1.9 -r1.10 VERSION
  --- openpkg-tools/VERSION 24 Apr 2004 06:27:48 -  1.9
  +++ openpkg-tools/VERSION 28 Apr 2004 18:44:33 -  1.10
  @@ -2,5 +2,5 @@
 VERSION -- Version Information for OpenPKG Tool Chain (syntax: Text)
 [automatically generated and maintained by GNU shtool]
   
  -  This is OpenPKG Tool Chain, Version 0.8.8 (24-Apr-2004)
  +  This is OpenPKG Tool Chain, Version 0.8.9 (28-Apr-2004)
   
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-04-28 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:   28-Apr-2004 20:48:52
  Branch: HEAD Handle: 2004042819485200

  Modified files:
openpkg-src/perl-poeperl-poe.spec

  Log:
modifying package: perl-poe-5.8.4 20040427 - 20040428

  Summary:
RevisionChanges Path
1.17+2  -2  openpkg-src/perl-poe/perl-poe.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-poe/perl-poe.spec
  
  $ cvs diff -u -r1.16 -r1.17 perl-poe.spec
  --- openpkg-src/perl-poe/perl-poe.spec27 Apr 2004 08:44:21 -  1.16
  +++ openpkg-src/perl-poe/perl-poe.spec28 Apr 2004 18:48:52 -  1.17
  @@ -29,7 +29,7 @@
   %define   V_poe_component_child 1.31
   %define   V_poe_component_server_http   0.04
   %define   V_poe_component_server_preforktcp 0.11
  -%define   V_poe_component_server_soap   1.01
  +%define   V_poe_component_server_soap   1.02
   %define   V_poe_session_multidispatch   1.3
   
   #   package information
  @@ -43,7 +43,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20040427
  +Release:  20040428
   
   #   list of sources
   Source0:  http://www.cpan.org/modules/by-module/POE/POE-%{V_poe}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-04-28 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:   28-Apr-2004 20:49:00
  Branch: HEAD Handle: 2004042819485900

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

  Log:
modifying package: perl-crypto-5.8.4 20040425 - 20040428

  Summary:
RevisionChanges Path
1.65+2  -2  openpkg-src/perl-crypto/perl-crypto.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-crypto/perl-crypto.spec
  
  $ cvs diff -u -r1.64 -r1.65 perl-crypto.spec
  --- openpkg-src/perl-crypto/perl-crypto.spec  25 Apr 2004 18:32:03 -  1.64
  +++ openpkg-src/perl-crypto/perl-crypto.spec  28 Apr 2004 18:48:59 -  1.65
  @@ -27,7 +27,7 @@
   %define   V_perl   5.8.4
   %define   V_digest 1.07
   %define   V_digest_sha12.10
  -%define   V_digest_sha 4.3.1
  +%define   V_digest_sha 4.3.2
   %define   V_digest_md2 2.03
   %define   V_digest_md4 1.3
   %define   V_digest_md5 2.33
  @@ -62,7 +62,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20040425
  +Release:  20040428
   
   #   list of sources
   Source0:  http://www.cpan.org/modules/by-module/Digest/Digest-%{V_digest}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]