[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpmtool

2005-07-27 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:   27-Jul-2005 08:24:39
  Branch: HEAD Handle: 2005072707243900

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpmtool

  Log:
added to rpmtool the detetection for 'number of CPUs' under AIX for
'make -j'

  Summary:
RevisionChanges Path
1.282   +2  -0  openpkg-src/openpkg/HISTORY
1.436   +1  -1  openpkg-src/openpkg/openpkg.spec
1.44+13 -0  openpkg-src/openpkg/rpmtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.281 -r1.282 HISTORY
  --- openpkg-src/openpkg/HISTORY   26 Jul 2005 15:48:27 -  1.281
  +++ openpkg-src/openpkg/HISTORY   27 Jul 2005 06:24:39 -  1.282
  @@ -2,6 +2,8 @@
   2005
   
   
  +20050727 added to rpmtool the detetection for number of CPUs under AIX for 
make -j
  +
   20050726  RELEASE AS PART OF OPENPKG 2.4.2 ***
   20050726 Cosmetics in openpkg rpm --help output
   20050726 Add %{l_ar} and %{l_ld} macros for easier bootstrapping
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.435 -r1.436 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  26 Jul 2005 07:24:56 -  1.435
  +++ openpkg-src/openpkg/openpkg.spec  27 Jul 2005 06:24:39 -  1.436
  @@ -38,7 +38,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20050726
  +%define   V_openpkg  20050727
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool
  
  $ cvs diff -u -r1.43 -r1.44 rpmtool
  --- openpkg-src/openpkg/rpmtool   24 Mar 2005 11:19:44 -  1.43
  +++ openpkg-src/openpkg/rpmtool   27 Jul 2005 06:24:39 -  1.44
  @@ -430,6 +430,19 @@
   fi
   fi
   ;;
  +*:AIX:*:* )
  +if [ .$isgmake = .yes ]; then
  +if [ -x /usr/sbin/lsdev ]; then
  +n=`/usr/sbin/lsdev -C -c processor -S available 
| wc -l | awk '{ print $1; }'`
  +if [ .$n != . ]; then
  +if [ $n -gt 1 ]; then
  +n=`expr $n \* 2`
  +mflags=$mflags -j$n
  +fi
  +fi
  +fi
  +fi
  +;;
   esac
   fi
   echo x$mflags | sed -e 's;^x;;'
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-07-27 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:   27-Jul-2005 08:26:47
  Branch: HEAD Handle: 2005072707264700

  Modified files:
openpkg-src/lzoplzop.spec

  Log:
track only releases

  Summary:
RevisionChanges Path
1.22+2  -2  openpkg-src/lzop/lzop.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/lzop/lzop.spec
  
  $ cvs diff -u -r1.21 -r1.22 lzop.spec
  --- openpkg-src/lzop/lzop.spec15 Jun 2005 14:01:21 -  1.21
  +++ openpkg-src/lzop/lzop.spec27 Jul 2005 06:26:47 -  1.22
  @@ -33,7 +33,7 @@
   Group:Compression
   License:  GPL
   Version:  1.01
  -Release:  20050615
  +Release:  20050727
   
   #   list of sources
   Source0:  http://www.lzop.org/download/lzop-%{version}.tar.gz
  @@ -55,7 +55,7 @@
   prog lzop = {
   version   = %{version}
   url   = http://www.lzop.org/download/
  -regex = lzop-(__VER__)\.tar\.gz
  +regex = lzop-(\d+\.\d+)\.tar\.gz
   }
   
   %prep
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-07-27 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:   27-Jul-2005 08:37:29
  Branch: HEAD Handle: 2005072707372900

  Modified files:
openpkg-src/prngd   prngd.spec rc.prngd

  Log:
start PRNGD earlier (as others require its randomness) and allow
socket to be configured

  Summary:
RevisionChanges Path
1.49+1  -1  openpkg-src/prngd/prngd.spec
1.14+3  -3  openpkg-src/prngd/rc.prngd
  

  patch -p0 '@@ .'
  Index: openpkg-src/prngd/prngd.spec
  
  $ cvs diff -u -r1.48 -r1.49 prngd.spec
  --- openpkg-src/prngd/prngd.spec  24 Mar 2005 11:20:06 -  1.48
  +++ openpkg-src/prngd/prngd.spec  27 Jul 2005 06:37:29 -  1.49
  @@ -33,7 +33,7 @@
   Group:Security
   License:  PD
   Version:  0.9.29
  -Release:  20040920
  +Release:  20050727
   
   #   package options
   %option   with_fsl  yes
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/prngd/rc.prngd
  
  $ cvs diff -u -r1.13 -r1.14 rc.prngd
  --- openpkg-src/prngd/rc.prngd20 Sep 2004 14:33:31 -  1.13
  +++ openpkg-src/prngd/rc.prngd27 Jul 2005 06:37:29 -  1.14
  @@ -5,6 +5,7 @@
   
   %config
   prngd_enable=$openpkg_rc_def
  +prngd_socket=@l_prefix@/var/prngd/prngd.socket
   prngd_log_prolog=true
   prngd_log_epilog=true
   prngd_log_numfiles=10
  @@ -13,7 +14,6 @@
   
   %common
   prngd_pidfile=@l_prefix@/var/prngd/prngd.pid
  -prngd_socket=@l_prefix@/var/prngd/prngd.socket
   prngd_signal () {
   [ -f $prngd_pidfile ]  kill -$1 `cat $prngd_pidfile`
   }
  @@ -27,12 +27,12 @@
   echo prngd_usable=\$prngd_usable\
   echo prngd_active=\$prngd_active\
   
  -%start -u @l_susr@
  +%start -p 100 -u @l_susr@
   rcService prngd enable yes || exit 0
   rcService prngd active yes  exit 0
   @l_prefix@/sbin/prngd -p $prngd_pidfile -m 660 $prngd_socket
   
  -%stop -u @l_susr@
  +%stop -p 900 -u @l_susr@
   rcService prngd enable yes || exit 0
   rcService prngd active no   exit 0
   @l_prefix@/sbin/prngd -k -p $prngd_pidfile -m 660 $prngd_socket
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-07-27 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:   27-Jul-2005 08:41:57
  Branch: HEAD Handle: 2005072707415700

  Modified files:
openpkg-src/openssl openssl.spec

  Log:
automatically find the socket of our PRNGD package

  Summary:
RevisionChanges Path
1.67+4  -1  openpkg-src/openssl/openssl.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openssl/openssl.spec
  
  $ cvs diff -u -r1.66 -r1.67 openssl.spec
  --- openpkg-src/openssl/openssl.spec  7 Jul 2005 08:33:49 -   1.66
  +++ openpkg-src/openssl/openssl.spec  27 Jul 2005 06:41:57 -  1.67
  @@ -33,7 +33,7 @@
   Group:Cryptography
   License:  BSD-style
   Version:  0.9.8
  -Release:  20050707
  +Release:  20050727
   
   #   package options
   %option   with_zlib no
  @@ -87,6 +87,9 @@
   %{l_shtool} subst \
   -e 's;test $OSTYPE = msdosdjgpp;true;' \
   util/point.sh
  +%{l_shtool} subst \
  +-e 's;^\(#define DEVRANDOM_EGD\);\1 
%{l_prefix}/var/prngd/prngd.socket,;' \
  +e_os.h
   
   %build
   %{l_prefix}/bin/perl util/perlpath.pl %{l_prefix}/bin/perl
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-07-27 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:   27-Jul-2005 08:48:39
  Branch: HEAD Handle: 2005072707483900

  Modified files:
openpkg-src/jabberd jabberd.spec

  Log:
upgrading package: jabberd 2.0s8 - 2.0s9

  Summary:
RevisionChanges Path
1.37+2  -2  openpkg-src/jabberd/jabberd.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/jabberd/jabberd.spec
  
  $ cvs diff -u -r1.36 -r1.37 jabberd.spec
  --- openpkg-src/jabberd/jabberd.spec  20 Apr 2005 18:02:35 -  1.36
  +++ openpkg-src/jabberd/jabberd.spec  27 Jul 2005 06:48:39 -  1.37
  @@ -24,7 +24,7 @@
   
   #   package version
   %define   V_major 2.0
  -%define   V_minor s8
  +%define   V_minor s9
   
   #   package information
   Name: jabberd
  @@ -37,7 +37,7 @@
   Group:Network
   License:  JOSL/GPL
   Version:  %{V_major}%{V_minor}
  -Release:  20050420
  +Release:  20050727
   
   #   package options
   %option   with_mysql  no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-07-27 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:   27-Jul-2005 08:48:45
  Branch: HEAD Handle: 2005072707484500

  Modified files:
openpkg-src/mysql5  mysql5.spec

  Log:
upgrading package: mysql5 5.0.9 - 5.0.10

  Summary:
RevisionChanges Path
1.7 +2  -2  openpkg-src/mysql5/mysql5.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/mysql5/mysql5.spec
  
  $ cvs diff -u -r1.6 -r1.7 mysql5.spec
  --- openpkg-src/mysql5/mysql5.spec15 Jul 2005 07:30:10 -  1.6
  +++ openpkg-src/mysql5/mysql5.spec27 Jul 2005 06:48:45 -  1.7
  @@ -24,7 +24,7 @@
   
   #   package version
   %define   V_major   5.0
  -%define   V_minor   9
  +%define   V_minor   10
   %define   V_mysql   %{V_major}.%{V_minor}-beta
   %define   V_opkg%{V_major}.%{V_minor}
   
  @@ -39,7 +39,7 @@
   Group:Database
   License:  GPL
   Version:  %{V_opkg}
  -Release:  20050715
  +Release:  20050727
   
   #   package options
   %option   with_serveryes
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/wordpress/ rc.wordpress wordpress-apache.co...

2005-07-27 Thread Ralf S. Engelschall
-response-1.0
  +
  +#   SSL/TLS support
  +IfModule mod_ssl.c
  +SSLRandomSeed   startup builtin
  +SSLRandomSeed   connect builtin
  +SSLMutexsem
  +SSLSessionCache 
shmcb:@l_prefix@/var/wordpress/wordpress-apache.scache(512000)
  +SSLSessionCacheTimeout  300
  +SSLLog  @l_prefix@/var/wordpress/wordpress-apache.ssl.log
  +SSLLogLevel warn
  +SSLCipherSuite  
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
  +SetEnvIf User-Agent .*MSIE.* \
  + nokeepalive ssl-unclean-shutdown \
  + downgrade-1.0 force-response-1.0
  +Files ~ \.(cgi|shtml|phtml|php?)$
  +SSLOptions +StdEnvVars
  +/Files
  +Directory @l_prefix@/cgi
  +SSLOptions +StdEnvVars
  +/Directory
  +/IfModule
  +
  +#   configure Drupal
  +AddType   application/x-httpd-php .php
  +php_admin_flagmagic_quotes_gpc   0
  +php_admin_flagregister_globals   0
  +php_admin_flagsession.auto_start 0
  +DocumentRoot  @l_prefix@/libexec/wordpress
  +DirectoryIndexindex.php
  +ErrorDocument 404 /index.php
  +ExpiresByType text/html A1
  +Directory@l_prefix@/libexec/wordpress
  +Options   -Indexes +FollowSymLinks
  +AllowOverride None
  +Order allow,deny
  +Allow from all
  +RewriteEngine on
  +RewriteCond   %{REQUEST_FILENAME} !-f
  +RewriteCond   %{REQUEST_FILENAME} !-d
  +RewriteRule   ^(.*)$ index.php?q=$1 [L,QSA]
  +Files ~ 
(\.(inc|module|pl|sh|sql|theme|engine|xtmpl)|Entries|Repositories|Root|scripts|updates)$
  +Order deny,allow
  +Deny  from all
  +/Files
  +/Directory
  +
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/wordpress/wordpress-setup.sh
  
  $ cvs diff -u -r0 -r1.1 wordpress-setup.sh
  --- /dev/null 2005-07-27 14:03:22 +0200
  +++ wordpress-setup.sh2005-07-27 14:03:31 +0200
  @@ -0,0 +1,16 @@
  +#!/bin/sh
  +##
  +##  wordpress-setup
  +##
  +
  +#   determine MySQL root password
  +password=`grep ^password @l_prefix@/etc/mysql/my.pwd |\
  +  sed -e 's;^password[^=]*= *;;' -e 's; *$;;'`
  +
  +#   create the MySQL database for Wordpress
  [EMAIL PROTECTED]@/bin/mysqladmin --user=root --password=$password create 
wordpress
  [EMAIL PROTECTED]@/bin/mysql --user=root --password=$password mysql EOF
  +GRANT ALL ON wordpress.* TO [EMAIL PROTECTED] IDENTIFIED BY 'wordpress';
  +FLUSH PRIVILEGES;
  +EOF
  +
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/wordpress/wordpress.spec
  
  $ cvs diff -u -r0 -r1.1 wordpress.spec
  --- /dev/null 2005-07-27 14:03:22 +0200
  +++ wordpress.spec2005-07-27 14:03:31 +0200
  @@ -0,0 +1,161 @@
  +##
  +##  wordpress.spec -- OpenPKG RPM Package Specification
  +##  Copyright (c) 2000-2005 OpenPKG Foundation e.V. http://openpkg.net/
  +##  Copyright (c) 2000-2005 Ralf S. Engelschall http://engelschall.com/
  +##
  +##  Permission to use, copy, modify, and distribute this software for
  +##  any purpose with or without fee is hereby granted, provided that
  +##  the above copyright notice and this permission notice appear in all
  +##  copies.
  +##
  +##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  +##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  +##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  +##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  +##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  +##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  +##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  +##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  +##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  +##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  +##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  +##  SUCH DAMAGE.
  +##
  +
  +#   package information
  +Name: wordpress
  +Summary:  Weblog Publishing System
  +URL:  http://www.wordpress.org/
  +Vendor:   R. Boren  M. Mullenweg et al.
  +Packager: OpenPKG
  +Distribution: OpenPKG
  +Class:EVAL
  +Group:Web
  +License:  GPL
  +Version:  1.5.1.3
  +Release:  20050727
  +
  +#   list of sources
  +Source0:  
ftp://ftp.openpkg.org/sources/CPY/VERSIONED/wordpress/wordpress-%{version}.tar.gz
  +Source1:  wordpress-apache.conf
  +Source2:  wordpress-setup.sh
  +Source3:  rc.wordpress
  +
  +#   build information
  +Prefix:   %{l_prefix}
  +BuildRoot:%{l_buildroot}
  +BuildPreReq:  OpenPKG, openpkg = 20040130
  +PreReq:   OpenPKG, openpkg = 20040130
  +PreReq:   apache
  +PreReq

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

2005-07-27 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   27-Jul-2005 17:06:37
  Branch: HEAD Handle: 2005072716063300

  Modified files:
openpkg-src/bashbash.spec

  Log:
remove dependency to binutils tools size(1) and strip(1)

  Summary:
RevisionChanges Path
1.64+5  -2  openpkg-src/bash/bash.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/bash/bash.spec
  
  $ cvs diff -u -r1.63 -r1.64 bash.spec
  --- openpkg-src/bash/bash.spec24 Mar 2005 11:18:28 -  1.63
  +++ openpkg-src/bash/bash.spec27 Jul 2005 15:06:33 -  1.64
  @@ -39,7 +39,7 @@
   Group:Shell
   License:  GPL
   Version:  %{V_base_real}.%{V_plvl_raw}
  -Release:  2004
  +Release:  20050727
   
   #   list of sources
   Source0:  ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}.tar.gz
  @@ -98,6 +98,9 @@
   %{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
  @@ -142,7 +145,7 @@
   rm -f $RPM_BUILD_ROOT%{l_prefix}/info/dir
   rm -f $RPM_BUILD_ROOT%{l_prefix}/man/man1/bashbug.1
   rm -f $RPM_BUILD_ROOT%{l_prefix}/bin/bashbug
  -strip $RPM_BUILD_ROOT%{l_prefix}/bin/bash
  +strip $RPM_BUILD_ROOT%{l_prefix}/bin/bash || true
   
   #   install global configuration
   %{l_shtool} mkdir -f -p -m 755 \
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-07-27 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:   27-Jul-2005 19:31:09
  Branch: HEAD Handle: 2005072718310800

  Modified files:
openpkg-src/mhonarc mhonarc.spec

  Log:
upgrading package: mhonarc 2.6.14 - 2.6.15

  Summary:
RevisionChanges Path
1.33+2  -2  openpkg-src/mhonarc/mhonarc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/mhonarc/mhonarc.spec
  
  $ cvs diff -u -r1.32 -r1.33 mhonarc.spec
  --- openpkg-src/mhonarc/mhonarc.spec  23 Jul 2005 20:56:02 -  1.32
  +++ openpkg-src/mhonarc/mhonarc.spec  27 Jul 2005 17:31:08 -  1.33
  @@ -32,8 +32,8 @@
   Class:PLUS
   Group:Converter
   License:  GPL
  -Version:  2.6.14
  -Release:  20050723
  +Version:  2.6.15
  +Release:  20050727
   
   #   list of sources
   Source0:  
http://www.mhonarc.org/release/MHonArc/tar/MHonArc-%{version}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-07-27 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:   27-Jul-2005 19:46:14
  Branch: HEAD Handle: 2005072718461400

  Modified files:
openpkg-src/perl-gtkperl-gtk.spec

  Log:
modifying package: perl-gtk-5.8.7 20050713 - 20050727

  Summary:
RevisionChanges Path
1.86+3  -3  openpkg-src/perl-gtk/perl-gtk.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-gtk/perl-gtk.spec
  
  $ cvs diff -u -r1.85 -r1.86 perl-gtk.spec
  --- openpkg-src/perl-gtk/perl-gtk.spec13 Jul 2005 13:51:54 -  
1.85
  +++ openpkg-src/perl-gtk/perl-gtk.spec27 Jul 2005 17:46:14 -  
1.86
  @@ -27,8 +27,8 @@
   %define   V_gtk_perl   0.7009
   %define   V_extutils_depends   0.205
   %define   V_extutils_pkgconfig 1.07
  -%define   V_glib   1.092
  -%define   V_gtk2   1.092
  +%define   V_glib   1.093
  +%define   V_gtk2   1.093
   
   #   package information
   Name: perl-gtk
  @@ -41,7 +41,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20050713
  +Release:  20050727
   
   #   package options
   %option   with_gtk1  yes
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org