[CVS] OpenPKG: openpkg-doc/handbook openpkg.xml

2002-12-11 Thread Michael Schloh
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael Schloh
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-doc  Date:   11-Dec-2002 11:40:59
  Branch: HEAD Handle: 2002121110405800

  Modified files:
openpkg-doc/handbookopenpkg.xml

  Log:
Clarify entry point at /etc/passwd and update change date.

  Summary:
RevisionChanges Path
1.59+2  -2  openpkg-doc/handbook/openpkg.xml
  

  Index: openpkg-doc/handbook/openpkg.xml
  
  $ cvs diff -u -r1.58 -r1.59 openpkg.xml
  --- openpkg-doc/handbook/openpkg.xml  4 Dec 2002 09:25:58 -   1.58
  +++ openpkg-doc/handbook/openpkg.xml  11 Dec 2002 10:40:58 -  1.59
  @@ -33,7 +33,7 @@
   /author
 /authorgroup
   
  -  pubdateNovember 2002/pubdate
  +  pubdateDecember 2002/pubdate
   
 abstract
   para
  @@ -264,7 +264,7 @@
   the operating system and some of its more common control facilities.
   The three main points of contact at which OpenPKG interacts with the
   operating system are the file system (1) with its owner and group
  -attributes, the root cronjob (2) typically modified at /etc/crontab or
  +attributes from /etc/passwd, the root cronjob (2) typically modified at 
/etc/crontab or
   commandcrontab -e/command, and the init script (3) usually found at
   /etc/init.d. After the bootstrap script finishes, the OpenPKG file
   hierarchy contains a directory for the database of RPM packages, and
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-doc/handbook openpkg.xml

2002-12-11 Thread Michael Schloh
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael Schloh
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-doc  Date:   11-Dec-2002 11:41:30
  Branch: HEAD Handle: 2002121110413000

  Modified files:
openpkg-doc/handbookopenpkg.xml

  Log:
Reformat affected lines.

  Summary:
RevisionChanges Path
1.60+10 -10 openpkg-doc/handbook/openpkg.xml
  

  Index: openpkg-doc/handbook/openpkg.xml
  
  $ cvs diff -u -r1.59 -r1.60 openpkg.xml
  --- openpkg-doc/handbook/openpkg.xml  11 Dec 2002 10:40:58 -  1.59
  +++ openpkg-doc/handbook/openpkg.xml  11 Dec 2002 10:41:30 -  1.60
  @@ -264,16 +264,16 @@
   the operating system and some of its more common control facilities.
   The three main points of contact at which OpenPKG interacts with the
   operating system are the file system (1) with its owner and group
  -attributes from /etc/passwd, the root cronjob (2) typically modified at 
/etc/crontab or
  -commandcrontab -e/command, and the init script (3) usually found at
  -/etc/init.d. After the bootstrap script finishes, the OpenPKG file
  -hierarchy contains a directory for the database of RPM packages, and
  -another directory for binaries including the actual RPM command for
  -use by OpenPKG to install packaged software. A package repository also
  -has its own directory, though it may contain only a partial list of
  -installed packages. Packages in this directory are used only during
  -installation and therefore are often flushed after each successful
  -installation.
  +attributes from /etc/passwd, the root cronjob (2) typically modified
  +at /etc/crontab or commandcrontab -e/command, and the init script
  +(3) usually found at /etc/init.d. After the bootstrap script finishes,
  +the OpenPKG file hierarchy contains a directory for the database of
  +RPM packages, and another directory for binaries including the actual
  +RPM command for use by OpenPKG to install packaged software. A package
  +repository also has its own directory, though it may contain only a
  +partial list of installed packages. Packages in this directory are
  +used only during installation and therefore are often flushed after
  +each successful installation.
 /para
   /sect1
 /chapter
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



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

2002-12-11 Thread Ralf S. Engelschall
 ()
  +-   because I'm not sure whether we want to call server_cleanup.
  +-   Needs more investigation  */
  +-
  +-#ifdef SYSTEM_CLEANUP
  +-/* Hook for OS-specific behavior, for example socket subsystems on
  +-   NT and OS2 or dealing with windows and arguments on Mac.  */
  +-SYSTEM_CLEANUP ();
  +-#endif
  +-exit (EXIT_FAILURE);
  ++error_exit ();
  + }
  + else
  + {
  +@@ -5901,12 +5861,8 @@
  + {
  + printf (E Fatal error, aborting.\n\
  + error %s getpeername or getsockname failed\n, strerror (errno));
  +-#ifdef SYSTEM_CLEANUP
  +-/* Hook for OS-specific behavior, for example socket subsystems on
  +-   NT and OS2 or dealing with windows and arguments on Mac.  */
  +-SYSTEM_CLEANUP ();
  +-#endif
  +-exit (EXIT_FAILURE);
  ++
  ++error_exit ();
  + }
  + 
  + #ifdef SO_KEEPALIVE
  +@@ -5932,12 +5888,8 @@
  + {
  + printf (E Fatal error, aborting.\n\
  + error 0 kerberos: %s\n, krb_get_err_text(status));
  +-#ifdef SYSTEM_CLEANUP
  +-/* Hook for OS-specific behavior, for example socket subsystems on
  +-   NT and OS2 or dealing with windows and arguments on Mac.  */
  +-SYSTEM_CLEANUP ();
  +-#endif
  +-exit (EXIT_FAILURE);
  ++
  ++error_exit ();
  + }
  + 
  + memcpy (kblock, auth.session, sizeof (C_Block));
  +@@ -5948,12 +5900,8 @@
  + {
  + printf (E Fatal error, aborting.\n\
  + error 0 kerberos: can't get local name: %s\n, krb_get_err_text(status));
  +-#ifdef SYSTEM_CLEANUP
  +-/* Hook for OS-specific behavior, for example socket subsystems on
  +-   NT and OS2 or dealing with windows and arguments on Mac.  */
  +-SYSTEM_CLEANUP ();
  +-#endif
  +-exit (EXIT_FAILURE);
  ++
  ++error_exit ();
  + }
  + 
  + /* Switch to run as this user. */
  +Index: src/buffer.c
  +===
  +RCS file: /cvs/ccvs/src/buffer.c,v
  +diff -u -d -r1.19 -r1.20
  +--- src/buffer.c 20 May 2002 18:27:55 -  1.19
   src/buffer.c 24 Oct 2002 19:54:58 -  1.20
  +@@ -1392,8 +1392,7 @@

if (buf-input)
{
   -if (! buf_empty_p (buf)
   -|| getc (bc-fp) != EOF)
  -+if (! buf_empty_p (buf))
  ++if ( !buf_empty_p (buf) )
{
# ifdef SERVER_SUPPORT
if (server_active)
  Index: openpkg-src/cvs/cvs.spec
  
  $ cvs diff -u -r1.38 -r1.39 cvs.spec
  --- openpkg-src/cvs/cvs.spec  2 Oct 2002 13:48:02 -   1.38
  +++ openpkg-src/cvs/cvs.spec  11 Dec 2002 11:09:16 -  1.39
  @@ -45,7 +45,7 @@
   Group:SCM
   License:  GPL
   Version:  %{V_cvs}
  -Release:  20021002
  +Release:  20021211
   
   #   list of sources
   Source0:  http://www.cvshome.org/files/19/10/cvs-%{V_cvs}.tar.gz
  @@ -94,8 +94,10 @@
   
   %prep
   %setup0 -q -c
  -%patch0 -p0
   %setup1 -q -T -D -a 1
  +( cd cvs-%{V_cvs}
  +  %patch0 -p0
  +)
   %if %{with_rse_patches} == yes
   ( cd cvs-%{V_cvs}
 cat %{SOURCE cvs.patches.rse} |\
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2242 -r1.2243 news.txt
  --- openpkg-web/news.txt  11 Dec 2002 10:50:17 -  1.2242
  +++ openpkg-web/news.txt  11 Dec 2002 11:09:15 -  1.2243
  @@ -1,3 +1,4 @@
  +11-Dec-2002: Upgraded package: Pcvs-1.11.2-20021211
   11-Dec-2002: Upgraded package: Psendmail-8.12.6-20021211
   10-Dec-2002: Upgraded package: Psendmail-8.12.6-20021210
   10-Dec-2002: Upgraded package: Peasysoap-0.6.1-20021210
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



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

2002-12-11 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:   11-Dec-2002 13:21:17
  Branch: HEAD Handle: 2002121112211700

  Modified files:
openpkg-src/majordomo   majordomo.spec

  Log:
add a little bit more description

  Summary:
RevisionChanges Path
1.21+5  -1  openpkg-src/majordomo/majordomo.spec
  

  Index: openpkg-src/majordomo/majordomo.spec
  
  $ cvs diff -u -r1.20 -r1.21 majordomo.spec
  --- openpkg-src/majordomo/majordomo.spec  11 Dec 2002 12:20:03 -  1.20
  +++ openpkg-src/majordomo/majordomo.spec  11 Dec 2002 12:21:17 -  1.21
  @@ -48,7 +48,11 @@
   AutoReqProv:  no
   
   %description
  -Mailing List Manager
  +Majordomo is a program which automates the management of Internet
  +mailing lists. Commands are sent to Majordomo via electronic mail
  +to handle all aspects of list maintenance. Once a list is set
  +up, virtually all operations can be performed remotely by email,
  +requiring no intervention upon the postmaster of the list site.
   
   %prep
   %setup -q
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-src/openpkg-tool openpkg-build.pl openpkg-tool....

2002-12-11 Thread Michael van Elst
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael van Elst
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-web, openpkg-src Date:   11-Dec-2002 13:23:16
  Branch: HEAD Handle: 2002121112231401

  Modified files:
openpkg-src/openpkg-tool openpkg-build.pl openpkg-tool.spec
openpkg-web news.txt

  Log:
Use subshell in target directory instead of forwarded option

  Summary:
RevisionChanges Path
1.11+6  -1  openpkg-src/openpkg-tool/openpkg-build.pl
1.8 +2  -2  openpkg-src/openpkg-tool/openpkg-tool.spec
1.2245  +1  -0  openpkg-web/news.txt
  

  Index: openpkg-src/openpkg-tool/openpkg-build.pl
  
  $ cvs diff -u -r1.10 -r1.11 openpkg-build.pl
  --- openpkg-src/openpkg-tool/openpkg-build.pl 3 Dec 2002 14:27:39 -   1.10
  +++ openpkg-src/openpkg-tool/openpkg-build.pl 11 Dec 2002 12:23:15 -  1.11
  @@ -1254,7 +1254,12 @@
   if ($_-{PROXY}) {
   $ppkg = find_proxy($_,$bpkg) or
   die FATAL: proxy package ,vsn($_), does not exist\n;
  -$cmd1 = $RPM_NPRIV$opt --makeproxy -o $bpkg $ppkg;
  +#
  +# rpm doesn't support additional parameters to the
  +# mkproxy script
  +# $cmd1 = $RPM_NPRIV$opt --makeproxy $ppkg -- -o $bpkg;
  +#
  +$cmd1 = ( cd $c-{rpmdir}  $RPM_NPRIV$opt --makeproxy $ppkg );
   } elsif (defined $_-{platform}) {
   $cmd1 = $CURL -q -s -o $bpkg $spkg;
   } else {
  Index: openpkg-src/openpkg-tool/openpkg-tool.spec
  
  $ cvs diff -u -r1.7 -r1.8 openpkg-tool.spec
  --- openpkg-src/openpkg-tool/openpkg-tool.spec3 Dec 2002 14:29:01 -  
 1.7
  +++ openpkg-src/openpkg-tool/openpkg-tool.spec11 Dec 2002 12:23:15 - 
 1.8
  @@ -32,8 +32,8 @@
   Distribution: OpenPKG [EVAL]
   Group:Bootstrapping
   License:  GPL
  -Version:  20021203
  -Release:  20021203
  +Version:  20021211
  +Release:  20021211
   
   #   list of sources
   Source0:  openpkg.sh
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2244 -r1.2245 news.txt
  --- openpkg-web/news.txt  11 Dec 2002 12:20:02 -  1.2244
  +++ openpkg-web/news.txt  11 Dec 2002 12:23:14 -  1.2245
  @@ -1,3 +1,4 @@
  +11-Dec-2002: Upgraded package: Popenpkg-tool-20021211-20021211
   11-Dec-2002: Upgraded package: Pmajordomo-1.94.5-20021211
   11-Dec-2002: Upgraded package: Pcvs-1.11.2-20021211
   11-Dec-2002: Upgraded package: Psendmail-8.12.6-20021211
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



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

2002-12-11 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:   11-Dec-2002 13:26:37
  Branch: HEAD Handle: 2002121112263600

  Modified files:
openpkg-src/majordomo   majordomo.spec

  Log:
majordomo uses majordomo-owner as the sender address

  Summary:
RevisionChanges Path
1.22+1  -0  openpkg-src/majordomo/majordomo.spec
  

  Index: openpkg-src/majordomo/majordomo.spec
  
  $ cvs diff -u -r1.21 -r1.22 majordomo.spec
  --- openpkg-src/majordomo/majordomo.spec  11 Dec 2002 12:21:17 -  1.21
  +++ openpkg-src/majordomo/majordomo.spec  11 Dec 2002 12:26:36 -  1.22
  @@ -158,6 +158,7 @@
   ( echo #Majordomo Common Interface
 echo majordomo: 
\|$RPM_INSTALL_PREFIX/bin/majordomo-wrapper majordomo\
 echo majordomo-master:  nobody
  +  echo majordomo-owner:   majordomo-master
 echo owner-majordomo:   majordomo-master
 echo owner-owner:   majordomo-master
 echo 
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



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

2002-12-11 Thread Michael van Elst
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael van Elst
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-web, openpkg-src Date:   11-Dec-2002 14:03:53
  Branch: HEAD Handle: 2002121113035101

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

  Log:
new package: gsoap 2.1.10 (Generator Tools for Web Service and Client in C and C++)

  Summary:
RevisionChanges Path
1.1 +77 -0  openpkg-src/gsoap/gsoap.spec
1.2246  +1  -0  openpkg-web/news.txt
  

  Index: openpkg-src/gsoap/gsoap.spec
  
  $ cvs update -p -r1.1 gsoap.spec
  ##
  ##  gsoap.spec -- OpenPKG RPM Specification
  ##  Copyright (c) 2000-2002 Cable  Wireless Deutschland GmbH
  ##  Copyright (c) 2000-2002 The OpenPKG Project http://www.openpkg.org/
  ##  Copyright (c) 2000-2002 Ralf S. Engelschall [EMAIL PROTECTED]
  ##
  ##  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: gsoap
  Summary:  Generator Tools for Web Service and Client in C and C++
  URL:  http://gsoap2.sourceforge.net/
  Vendor:   Robert A. van Engelen
  Packager: The OpenPKG Project
  Distribution: OpenPKG [EVAL]
  Group:Security
  License:  gSOAP 1.1
  Version:  2.1.10
  Release:  20021211
  
  #   list of sources
  Source0:  
http://osdn.dl.sourceforge.net/sourceforge/gsoap2/gsoap-%{version}.tar.gz
  
  #   build information
  Prefix:   %{l_prefix}
  BuildRoot:%{l_buildroot}
  BuildPreReq:  OpenPKG, openpkg = 20020206
  PreReq:   OpenPKG, openpkg = 20020206
  AutoReq:  no
  AutoReqProv:  no
  
  %description
  The gSOAP toolkit provides a unique SOAP-to-C/C++ language binding for the
  development of SOAP Web Services and clients.
  
  Options: None
  
  %prep
  %setup -q
  
  %build
  CC=%{l_cc} \
  CXX=%{l_cxx} \
  CFLAGS=%{l_cflags -O} \
  CXXLAGS=%{l_cxxflags -O} \
  ./configure \
  --prefix=%{l_prefix}
  %{l_make} %{l_mflags -O}
  
  %install
  rm -rf $RPM_BUILD_ROOT
  %{l_make} %{l_mflags} install AM_MAKEFLAGS=DESTDIR=$RPM_BUILD_ROOT
  strip $RPM_BUILD_ROOT%{l_prefix}/bin/* /dev/null 21 || true
  %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
  
  %files -f files
  
  %clean
  rm -rf $RPM_BUILD_ROOT
  
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2245 -r1.2246 news.txt
  --- openpkg-web/news.txt  11 Dec 2002 12:23:14 -  1.2245
  +++ openpkg-web/news.txt  11 Dec 2002 13:03:51 -  1.2246
  @@ -1,3 +1,4 @@
  +11-Dec-2002: New package: Pgsoap-2.1.10-20021211
   11-Dec-2002: Upgraded package: Popenpkg-tool-20021211-20021211
   11-Dec-2002: Upgraded package: Pmajordomo-1.94.5-20021211
   11-Dec-2002: Upgraded package: Pcvs-1.11.2-20021211
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



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

2002-12-11 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-web, openpkg-src Date:   11-Dec-2002 14:30:17
  Branch: HEAD Handle: 2002121113301601

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

  Log:
C++ implies gcc in OpenPKG

  Summary:
RevisionChanges Path
1.2 +1  -1  openpkg-src/gsoap/gsoap.spec
1.2247  +1  -0  openpkg-web/news.txt
  

  Index: openpkg-src/gsoap/gsoap.spec
  
  $ cvs diff -u -r1.1 -r1.2 gsoap.spec
  --- openpkg-src/gsoap/gsoap.spec  11 Dec 2002 13:03:52 -  1.1
  +++ openpkg-src/gsoap/gsoap.spec  11 Dec 2002 13:30:17 -  1.2
  @@ -41,7 +41,7 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg = 20020206
  +BuildPreReq:  OpenPKG, openpkg = 20020206, gcc
   PreReq:   OpenPKG, openpkg = 20020206
   AutoReq:  no
   AutoReqProv:  no
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2246 -r1.2247 news.txt
  --- openpkg-web/news.txt  11 Dec 2002 13:03:51 -  1.2246
  +++ openpkg-web/news.txt  11 Dec 2002 13:30:16 -  1.2247
  @@ -1,3 +1,4 @@
  +11-Dec-2002: Upgraded package: Pgsoap-2.1.10-20021211
   11-Dec-2002: New package: Pgsoap-2.1.10-20021211
   11-Dec-2002: Upgraded package: Popenpkg-tool-20021211-20021211
   11-Dec-2002: Upgraded package: Pmajordomo-1.94.5-20021211
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



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

2002-12-11 Thread Michael Schloh
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael Schloh
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-web, openpkg-src Date:   11-Dec-2002 14:35:33
  Branch: HEAD Handle: 2002121113353201

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

  Log:
Correctly state LGPL license.

  Summary:
RevisionChanges Path
1.3 +2  -2  openpkg-src/easysoap/easysoap.spec
1.2248  +1  -0  openpkg-web/news.txt
  

  Index: openpkg-src/easysoap/easysoap.spec
  
  $ cvs diff -u -r1.2 -r1.3 easysoap.spec
  --- openpkg-src/easysoap/easysoap.spec10 Dec 2002 19:35:34 -  1.2
  +++ openpkg-src/easysoap/easysoap.spec11 Dec 2002 13:35:33 -  1.3
  @@ -31,9 +31,9 @@
   Packager: The OpenPKG Project
   Distribution: OpenPKG [EVAL]
   Group:Network
  -License:  GPL
  +License:  LGPL
   Version:  0.6.1
  -Release:  20021210
  +Release:  20021211
   
   #   list of sources
   Source0:  http://download.sourceforge.net/easysoap/EasySoap++-%{version}.tar.gz
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2247 -r1.2248 news.txt
  --- openpkg-web/news.txt  11 Dec 2002 13:30:16 -  1.2247
  +++ openpkg-web/news.txt  11 Dec 2002 13:35:32 -  1.2248
  @@ -1,3 +1,4 @@
  +11-Dec-2002: Upgraded package: Peasysoap-0.6.1-20021211
   11-Dec-2002: Upgraded package: Pgsoap-2.1.10-20021211
   11-Dec-2002: New package: Pgsoap-2.1.10-20021211
   11-Dec-2002: Upgraded package: Popenpkg-tool-20021211-20021211
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-src/openpkg-tool openpkg-build.pl

2002-12-11 Thread Michael van Elst
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael van Elst
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   11-Dec-2002 15:21:10
  Branch: HEAD Handle: 2002121114211000

  Modified files:
openpkg-src/openpkg-tool openpkg-build.pl

  Log:
do the +PROXY

  Summary:
RevisionChanges Path
1.12+2  -1  openpkg-src/openpkg-tool/openpkg-build.pl
  

  Index: openpkg-src/openpkg-tool/openpkg-build.pl
  
  $ cvs diff -u -r1.11 -r1.12 openpkg-build.pl
  --- openpkg-src/openpkg-tool/openpkg-build.pl 11 Dec 2002 12:23:15 -  1.11
  +++ openpkg-src/openpkg-tool/openpkg-build.pl 11 Dec 2002 14:21:10 -  1.12
  @@ -1155,10 +1155,11 @@
   sub target2rpm ($$) {
   my($target,$c) = @_;
   my($tmpl) = $c-{template};
  +my($popt) = $target-{PROXY} ? '+PROXY' : '';
   
   $tmpl =~ s/%{NAME}/$target-{name}/;
   $tmpl =~ s/%{VERSION}/$target-{version}/;
  -$tmpl =~ s/%{RELEASE}/$target-{release}/;
  +$tmpl =~ s/%{RELEASE}/$target-{release}$popt/;
   
   return $c-{rpmdir}.'/'.$tmpl;
   }
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-src/openpkg-tool openpkg-build.pl

2002-12-11 Thread Michael van Elst
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael van Elst
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   11-Dec-2002 16:22:00
  Branch: HEAD Handle: 200212111522

  Modified files:
openpkg-src/openpkg-tool openpkg-build.pl

  Log:
more fixes for +PROXY

  Summary:
RevisionChanges Path
1.13+1  -1  openpkg-src/openpkg-tool/openpkg-build.pl
  

  Index: openpkg-src/openpkg-tool/openpkg-build.pl
  
  $ cvs diff -u -r1.12 -r1.13 openpkg-build.pl
  --- openpkg-src/openpkg-tool/openpkg-build.pl 11 Dec 2002 14:21:10 -  1.12
  +++ openpkg-src/openpkg-tool/openpkg-build.pl 11 Dec 2002 15:22:00 -  1.13
  @@ -1184,7 +1184,7 @@
   my($prefix) = readlink($link);
   return unless defined $prefix;
   $bpkg =~ s/.*\///;
  -$bpkg =~ s/(\.[^-]+-[^-]+-)[^-]+\.rpm$/$1*.rpm/;
  +$bpkg =~ s/(\.[^-]+-[^-]+)+PROXY-[^-]+\.rpm$/$1-*.rpm/;
   return (glob($prefix/RPM/PKG/$bpkg))[0];
   }
   
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-re/vcheck vc.perl-ds openpkg-src/perl-ds perl-d...

2002-12-11 Thread Michael van Elst
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael van Elst
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-re, openpkg-web, openpkg-src Date:   11-Dec-2002 16:34:21
  Branch: HEAD Handle: 2002121115341901

  Modified files:
openpkg-re/vcheck   vc.perl-ds
openpkg-src/perl-ds perl-ds.spec
openpkg-web news.txt

  Log:
upgrading package: perl-ds 20021116 - 20021211

  Summary:
RevisionChanges Path
1.6 +5  -0  openpkg-re/vcheck/vc.perl-ds
1.13+7  -2  openpkg-src/perl-ds/perl-ds.spec
1.2249  +1  -0  openpkg-web/news.txt
  

  Index: openpkg-re/vcheck/vc.perl-ds
  
  $ cvs diff -u -r1.5 -r1.6 vc.perl-ds
  --- openpkg-re/vcheck/vc.perl-ds  29 Sep 2002 06:46:45 -  1.5
  +++ openpkg-re/vcheck/vc.perl-ds  11 Dec 2002 15:34:19 -  1.6
  @@ -21,4 +21,9 @@
 url   = http://www.cpan.org/modules/by-module/Set/
 regex = Set-Scalar-(__VER__)\.tar\.gz
   }
  +prog perl-ds:Tie-IxHash = {
  +  version   = 1.21
  +  url   = http://www.cpan.org/modules/by-module/Tie/
  +  regex = Tie-IxHash-(__VER__)\.tar\.gz
  +}
   
  Index: openpkg-src/perl-ds/perl-ds.spec
  
  $ cvs diff -u -r1.12 -r1.13 perl-ds.spec
  --- openpkg-src/perl-ds/perl-ds.spec  16 Nov 2002 19:41:58 -  1.12
  +++ openpkg-src/perl-ds/perl-ds.spec  11 Dec 2002 15:34:20 -  1.13
  @@ -28,6 +28,7 @@
   %define   V_set_scalar  1.17
   %define   V_io_string   1.01
   %define   V_io_stringy  2.108
  +%define   V_tie_ixhash  1.21
   
   #   package information
   Name: perl-ds
  @@ -38,14 +39,15 @@
   Distribution: OpenPKG [BASE]
   Group:Language
   License:  GPL/Artistic
  -Version:  20021116
  -Release:  20021116
  +Version:  20021211
  +Release:  20021211
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Bit/Bit-Vector-%{V_bit_vector}.tar.gz
   Source1:  
http://www.cpan.org/modules/by-module/Set/Set-Scalar-%{V_set_scalar}.tar.gz
   Source2:  
http://www.cpan.org/modules/by-module/IO/IO-String-%{V_io_string}.tar.gz
   Source3:  
http://www.cpan.org/modules/by-module/IO/IO-stringy-%{V_io_stringy}.tar.gz
  +Source4:  
http://www.cpan.org/modules/by-module/Tie/Tie-IxHash-%{V_tie_ixhash}.tar.gz
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -61,12 +63,14 @@
   - Set::Scalar (%{V_set_scalar})
   - IO::String (%{V_io_string})
   - IO::stringy (%{V_io_stringy})
  +- Tie::IxHash (%{V_tie_ixhash})
   
   %prep
   %setup0 -q -c
   %setup1 -q -T -D -a 1
   %setup2 -q -T -D -a 2
   %setup3 -q -T -D -a 3
  +%setup3 -q -T -D -a 4
   
   %build
   
  @@ -79,6 +83,7 @@
   %{l_prefix}/bin/perl-openpkg install -d %{SOURCE1}
   %{l_prefix}/bin/perl-openpkg install -d %{SOURCE2}
   %{l_prefix}/bin/perl-openpkg install -d %{SOURCE3}
  +%{l_prefix}/bin/perl-openpkg install -d %{SOURCE4}
   
   #   perform common epilog operations
   %{l_prefix}/bin/perl-openpkg epilog
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2248 -r1.2249 news.txt
  --- openpkg-web/news.txt  11 Dec 2002 13:35:32 -  1.2248
  +++ openpkg-web/news.txt  11 Dec 2002 15:34:20 -  1.2249
  @@ -1,3 +1,4 @@
  +11-Dec-2002: Upgraded package: Pperl-ds-20021211-20021211
   11-Dec-2002: Upgraded package: Peasysoap-0.6.1-20021211
   11-Dec-2002: Upgraded package: Pgsoap-2.1.10-20021211
   11-Dec-2002: New package: Pgsoap-2.1.10-20021211
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-src/openpkg-tool openpkg-build.pl

2002-12-11 Thread Michael van Elst
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael van Elst
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   11-Dec-2002 16:51:04
  Branch: HEAD Handle: 2002121115510400

  Modified files:
openpkg-src/openpkg-tool openpkg-build.pl

  Log:
more fixes for +PROXY

  Summary:
RevisionChanges Path
1.14+1  -1  openpkg-src/openpkg-tool/openpkg-build.pl
  

  Index: openpkg-src/openpkg-tool/openpkg-build.pl
  
  $ cvs diff -u -r1.13 -r1.14 openpkg-build.pl
  --- openpkg-src/openpkg-tool/openpkg-build.pl 11 Dec 2002 15:22:00 -  1.13
  +++ openpkg-src/openpkg-tool/openpkg-build.pl 11 Dec 2002 15:51:04 -  1.14
  @@ -1184,7 +1184,7 @@
   my($prefix) = readlink($link);
   return unless defined $prefix;
   $bpkg =~ s/.*\///;
  -$bpkg =~ s/(\.[^-]+-[^-]+)+PROXY-[^-]+\.rpm$/$1-*.rpm/;
  +$bpkg =~ s/\+PROXY(\.[^-]+-[^-]+)-[^-]+\.rpm$/$1-*.rpm/;
   return (glob($prefix/RPM/PKG/$bpkg))[0];
   }
   
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-re/vcheck vc.perl-xml openpkg-src/perl-xml perl...

2002-12-11 Thread Michael van Elst
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael van Elst
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-re, openpkg-web, openpkg-src Date:   11-Dec-2002 16:53:02
  Branch: HEAD Handle: 2002121115530001

  Modified files:
openpkg-re/vcheck   vc.perl-xml
openpkg-src/perl-xmlperl-xml.spec
openpkg-web news.txt

  Log:
upgrading package: perl-xml 20021210 - 20021211

  Summary:
RevisionChanges Path
1.25+1  -1  openpkg-re/vcheck/vc.perl-xml
1.36+3  -3  openpkg-src/perl-xml/perl-xml.spec
1.2250  +1  -0  openpkg-web/news.txt
  

  Index: openpkg-re/vcheck/vc.perl-xml
  
  $ cvs diff -u -r1.24 -r1.25 vc.perl-xml
  --- openpkg-re/vcheck/vc.perl-xml 10 Dec 2002 13:31:29 -  1.24
  +++ openpkg-re/vcheck/vc.perl-xml 11 Dec 2002 15:53:00 -  1.25
  @@ -87,7 +87,7 @@
 regex = XML-SAX-Expat-(__VER__)\.tar\.gz
   }
   prog perl-xml:XML-Simple = {
  -  version   = 2.00
  +  version   = 2.01
 url   = http://www.cpan.org/modules/by-module/XML/
 regex = XML-Simple-(__VER__)\.tar\.gz
   }
  Index: openpkg-src/perl-xml/perl-xml.spec
  
  $ cvs diff -u -r1.35 -r1.36 perl-xml.spec
  --- openpkg-src/perl-xml/perl-xml.spec10 Dec 2002 13:31:30 -  1.35
  +++ openpkg-src/perl-xml/perl-xml.spec11 Dec 2002 15:53:01 -  1.36
  @@ -30,7 +30,7 @@
   %define   V_xml_libxslt  1.52
   %define   V_xml_regexp   0.03
   %define   V_xml_dom  1.42
  -%define   V_xml_simple   2.00
  +%define   V_xml_simple   2.01
   %define   V_xml_namespacesupport 1.08
   %define   V_xml_sax  0.12
   %define   V_xml_sax_base 1.02
  @@ -80,8 +80,8 @@
   Distribution: OpenPKG [BASE]
   Group:Language
   License:  GPL/Artistic
  -Version:  20021210
  -Release:  20021210
  +Version:  20021211
  +Release:  20021211
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/XML/XML-Parser-%{V_xml_parser}.tar.gz
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2249 -r1.2250 news.txt
  --- openpkg-web/news.txt  11 Dec 2002 15:34:20 -  1.2249
  +++ openpkg-web/news.txt  11 Dec 2002 15:53:01 -  1.2250
  @@ -1,3 +1,4 @@
  +11-Dec-2002: Upgraded package: Pperl-xml-20021211-20021211
   11-Dec-2002: Upgraded package: Pperl-ds-20021211-20021211
   11-Dec-2002: Upgraded package: Peasysoap-0.6.1-20021211
   11-Dec-2002: Upgraded package: Pgsoap-2.1.10-20021211
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



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

2002-12-11 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  Date:   11-Dec-2002 19:08:12
  Branch: HEAD Handle: 2002121118081200

  Added files:
openpkg-src/heise   rc.heise
  Modified files:
openpkg-src/heise   heise.spec

  Log:
Polished the package and made it fun again. Index data is now to be fetched on
a weekly basis.

BTW I don't see a reason for %update_config_scripts in this package hence I
removed it.

  Summary:
RevisionChanges Path
1.23+28 -11 openpkg-src/heise/heise.spec
1.1 +24 -0  openpkg-src/heise/rc.heise
  

  Index: openpkg-src/heise/heise.spec
  
  $ cvs diff -u -r1.22 -r1.23 heise.spec
  --- openpkg-src/heise/heise.spec  26 Aug 2002 13:28:08 -  1.22
  +++ openpkg-src/heise/heise.spec  11 Dec 2002 18:08:12 -  1.23
  @@ -37,18 +37,18 @@
   Group:Misc
   License:  GPL
   Version:  %{V_vl}
  -Release:  20020826
  +Release:  20021211
   
   #   list of sources
   Source0:  ftp://ftp.heise.de/pub/ct/register/regpl%{V_vs}.zip
  -Source1:  ftp://ftp.heise.de/pub/ct/register/register.zip
  +Source1:  rc.heise
   Source2:  heise.conf
   
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
   BuildPreReq:  OpenPKG, openpkg = 20020206, infozip
  -PreReq:   OpenPKG, openpkg = 20020206, perl
  +PreReq:   OpenPKG, openpkg = 20020206, infozip, perl, curl, shtool
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -57,32 +57,49 @@
   
   %prep
   %setup -T -c
  -%update_config_scripts
   %{l_prefix}/bin/unzip -x %{SOURCE regpl%{V_vs}.zip}
  -%{l_prefix}/bin/unzip -x %{SOURCE register.zip}
   
   %build
   ( echo #!%{l_prefix}/bin/perl
 sed \
 -e '1,15d' \
  -  -e s;~/heise/inhalt.frm;%{l_prefix}/share/heise/inhalt.frm; \
  +  -e s;~/heise/inhalt.frm;%{l_prefix}/var/heise/inhalt.frm; \
 -e s;^\(\$frmfilefmt = \).*$;\1\%{l_prefix}/etc/heise/heise.conf\\;; \
 reg.pl
  -#  -e s;^\(\$frmfilefmt = \).*$;\1%{l_prefix}/etc/heise/heise.conf; \
   ) heise
   
   %install
   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}/etc/heise
  -%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/share/heise
  -%{l_shtool} install -c -m 755 heise $RPM_BUILD_ROOT%{l_prefix}/bin/
  -%{l_shtool} install -c -m 644 INHALT.FRM 
$RPM_BUILD_ROOT%{l_prefix}/share/heise/inhalt.frm
  -%{l_shtool} install -c -m 644 %{SOURCE heise.conf} 
$RPM_BUILD_ROOT%{l_prefix}/etc/heise/
  +%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d
  +%{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/var/heise
  +%{l_shtool} install -c -m 755 \
  +heise \
  +$RPM_BUILD_ROOT%{l_prefix}/bin/
  +%{l_shtool} install -c -m 644 \
  +%{SOURCE heise.conf} \
  +$RPM_BUILD_ROOT%{l_prefix}/etc/heise/
  +%{l_shtool} install -c -m 755 \
  +-e 's;@l_prefix@;%{l_prefix};g' \
  +-e 's;@l_musr@;%{l_musr};g' \
  +-e 's;@l_mgrp@;%{l_mgrp};g' \
  +%{SOURCE rc.heise} \
  +$RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
   %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
   
   %files -f files
   
   %clean
   rm -rf $RPM_BUILD_ROOT
  +
  +%post
  +if [ $1 -eq 1 ]; then
  +$RPM_INSTALL_PREFIX/etc/rc.d/rc.heise weekly || true
  +fi
  +
  +%preun
  +if [ $1 -eq 0 ]; then
  +rm -rf $RPM_INSTALL_PREFIX/var/heise/* 2/dev/null || true
  +fi
   
  Index: openpkg-src/heise/rc.heise
  
  $ cvs update -p -r1.1 rc.heise
  #!@l_prefix@/lib/openpkg/bash @l_prefix@/etc/rc
  ##
  ##  rc.heise -- Run-Commands for heise
  ##
  
  %config
  heise_enable=yes
  heise_idx_numfiles=10
  heise_idx_complevel=9
  heise_url=ftp://ftp.heise.de/pub/ct/register/register.zip;
  
  %weekly -u @l_musr@
  opServiceEnabled heise || exit 0
  
  #   fetch new index data
  ( cd @l_prefix@/var/heise \
 @l_prefix@/bin/curl -s -o register.zip ${heise_url} \
 @l_prefix@/bin/shtool rotate -f \
-n${heise_idx_numfiles} -s0 \
-z${heise_idx_complevel} -o@l_musr@ -g@l_mgrp@ -m644 \
inhalt.frm \
 @l_prefix@/bin/unzip -jop register.zip INHALT.FRM  inhalt.frm

[OpenPKG] Version Tracking Report (2002-12-11 19:20)

2002-12-11 Thread OpenPKG Version Tracker
 OpenPKG Version Tracking Report
 ===

 Reporting Time:2002-12-11 19:20
 Tracking Duration: 0:20:28 (H:M:S)
 Tracking Input:594 sources (410 packages)
 Tracking Result:   555 up-to-date, 11 out-dated, 28 error

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

 - - -
 Package   Old Version   New Version  
 - - -
 autogen   5.4.7 5.4.8 [1]
 doxygen   1.2.181.3-rc1   [2]
 exim  4.10  4.11
 gd2.0.8 2.0.9
 hevea 2002.09.172002.11.06[3]
 libnet1.1.0 1.1.1-PRERELEASE
 libwmf0.2.7 0.2.8 [4]
 nail  10.2  10.3  [5]
 perl-tk:Tk-IPEntry0.02  0.03
 rdesktop  1.1.0 1.2beta1  [6]
 tidy  021208021210
 - - -
 [1] autogen: rse: 5.4.8 has a broken tarball
 [2] doxygen: rse: wait for release version
 [3] hevea: rse: 2002.11.06 fails: Reference to unbound regexp name `as' at char 1009
 [4] libwmf: thl: 0.2.7-2 broken; does not find libxml-config
 [5] nail: rse: 10.3 broken with ICONV stuff
 [6] rdesktop: rse: wait for release version

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

 - - -
 Package   Old Version   Error
 - - -
 axyftp0.5.1 1st connection failed o..
 bash:patches  205b-004  2nd connection failed o..
 c-client  2002  regex didn't match (pro..
 cocor 17connection failed or ti..
 dsh   0.0.17regex didn't match (pro..
 findutils 4.1.7 regex didn't match (pro..
 freetype  2.1.3 connection failed or ti..
 freetype1 1.3.1 connection failed or ti..
 gdk-pixbuf0.19.0connection failed or ti..
 gtk   1.2.102nd connection failed o..
 imlib 1.9.14connection failed or ti..
 ircii 20021103  connection failed or ti..
 j2se147.42  connection failed or ti..
 mc4.5.55connection failed or ti..
 nntpcache 3.0.1 connection failed or ti..
 ocaml 3.06  1st connection failed o..
 orbit 0.5.17connection failed or  [1]
 perltidy  20021130  latest version online l..
 prngd 0.9.26connection failed or ti..
 rxvt  2.7.9 regex didn't match (pro..
 sasl  2.1.100   latest version online l..
 siege 2.55  connection failed or ti..
 skey  1.1.5 connection failed or ti..
 sudo  1.6.6 connection failed or ti..
 tsmc:linuxv5152 2nd regex didn't match ..
 tsmc:solaris  v5152 2nd connection failed o..
 x11-ssh-askpass   1.2.4.1   regex didn't match (pro..
 xv3.10a connection failed or ti..
 - - -
 [1] orbit: ms: 0.5.17 popt subproject broken only on FreeBSD.

 The remaining 555 sources were successfully determined to be still
 up to date. No action is required on your part. Just be happy ;)

  OpenPKG Version Tracker
  [EMAIL PROTECTED]
__
The OpenPKG Projectwww.openpkg.org
Developer Communication List   [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-re/vcheck vc.tidy openpkg-src/tidy tidy.spec op...

2002-12-11 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, openpkg-web, openpkg-src Date:   11-Dec-2002 21:54:57
  Branch: HEAD Handle: 2002121120545601

  Modified files:
openpkg-re/vcheck   vc.tidy
openpkg-src/tidytidy.spec
openpkg-web news.txt

  Log:
upgrading package: tidy 20021208 - 20021210

  Summary:
RevisionChanges Path
1.36+1  -1  openpkg-re/vcheck/vc.tidy
1.40+3  -3  openpkg-src/tidy/tidy.spec
1.2252  +1  -0  openpkg-web/news.txt
  

  Index: openpkg-re/vcheck/vc.tidy
  
  $ cvs diff -u -r1.35 -r1.36 vc.tidy
  --- openpkg-re/vcheck/vc.tidy 9 Dec 2002 18:35:05 -   1.35
  +++ openpkg-re/vcheck/vc.tidy 11 Dec 2002 20:54:56 -  1.36
  @@ -2,7 +2,7 @@
   }
   
   prog tidy = {
  -  version   = 021208
  +  version   = 021210
 url   = http://tidy.sourceforge.net/src/
 regex = tidy_src_(__VER__)\.tgz
   }
  Index: openpkg-src/tidy/tidy.spec
  
  $ cvs diff -u -r1.39 -r1.40 tidy.spec
  --- openpkg-src/tidy/tidy.spec9 Dec 2002 18:35:07 -   1.39
  +++ openpkg-src/tidy/tidy.spec11 Dec 2002 20:54:57 -  1.40
  @@ -23,8 +23,8 @@
   ##  SUCH DAMAGE.
   ##
   
  -%define   V_here 20021208
  -%define   V_real 021208
  +%define   V_here 20021210
  +%define   V_real 021210
   
   #   package information
   Name: tidy
  @@ -36,7 +36,7 @@
   Group:Text
   License:  GPL
   Version:  %{V_here}
  -Release:  20021209
  +Release:  20021211
   
   #   list of sources
   Source0:  http://tidy.sourceforge.net/src/tidy_src_%{V_real}.tgz
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2251 -r1.2252 news.txt
  --- openpkg-web/news.txt  11 Dec 2002 20:52:14 -  1.2251
  +++ openpkg-web/news.txt  11 Dec 2002 20:54:56 -  1.2252
  @@ -1,3 +1,4 @@
  +11-Dec-2002: Upgraded package: Ptidy-20021210-20021211
   11-Dec-2002: Upgraded package: Pexim-4.11-20021211
   11-Dec-2002: Upgraded package: Pperl-xml-20021211-20021211
   11-Dec-2002: Upgraded package: Pperl-ds-20021211-20021211
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-re/vcheck vc.gd openpkg-src/gd gd.spec openpkg-...

2002-12-11 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, openpkg-web, openpkg-src Date:   11-Dec-2002 22:04:36
  Branch: HEAD Handle: 2002121121043402

  Modified files:
openpkg-re/vcheck   vc.gd
openpkg-src/gd  gd.spec
openpkg-web news.txt

  Log:
upgrading package: gd 2.0.8 - 2.0.9

  Summary:
RevisionChanges Path
1.9 +1  -1  openpkg-re/vcheck/vc.gd
1.35+5  -3  openpkg-src/gd/gd.spec
1.2254  +1  -0  openpkg-web/news.txt
  

  Index: openpkg-re/vcheck/vc.gd
  
  $ cvs diff -u -r1.8 -r1.9 vc.gd
  --- openpkg-re/vcheck/vc.gd   26 Nov 2002 10:07:05 -  1.8
  +++ openpkg-re/vcheck/vc.gd   11 Dec 2002 21:04:34 -  1.9
  @@ -2,7 +2,7 @@
   }
   
   prog gd = {
  -  version   = 2.0.8
  +  version   = 2.0.9
 url   = http://www.boutell.com/gd/http/
 regex = gd-(__VER__)\.tar\.gz
   }
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.34 -r1.35 gd.spec
  --- openpkg-src/gd/gd.spec26 Nov 2002 10:05:43 -  1.34
  +++ openpkg-src/gd/gd.spec11 Dec 2002 21:04:36 -  1.35
  @@ -32,8 +32,8 @@
   Distribution: OpenPKG [BASE]
   Group:Graphics
   License:  GPL
  -Version:  2.0.8
  -Release:  20021126
  +Version:  2.0.9
  +Release:  20021211
   
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
  @@ -60,7 +60,9 @@
   %setup -q
   
   %build
  -echo ac_cv_header_iconv_h=no config.cache
  +( echo ac_cv_header_iconv_h=no 
  +  echo am_cv_func_iconv=no
  +) config.cache
   CC=%{l_cc} \
   CFLAGS=%{l_cflags -O} \
   CPPFLAGS=%{l_cppflags} -I. -I%{l_prefix}/include/libpng 
-I%{l_prefix}/include/freetype2 \
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2253 -r1.2254 news.txt
  --- openpkg-web/news.txt  11 Dec 2002 20:59:05 -  1.2253
  +++ openpkg-web/news.txt  11 Dec 2002 21:04:35 -  1.2254
  @@ -1,3 +1,4 @@
  +11-Dec-2002: Upgraded package: Pgd-2.0.9-20021211
   11-Dec-2002: Upgraded package: Pperl-tk-20021211-20021211
   11-Dec-2002: Upgraded package: Ptidy-20021210-20021211
   11-Dec-2002: Upgraded package: Pexim-4.11-20021211
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]