[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 21:52:01
  Branch: HEAD Handle: 200404282052

  Modified files:
openpkg-re  todo.txt

  Log:
fontforge I would like to see packaged, too

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

  patch -p0 <<'@@ .'
  Index: openpkg-re/todo.txt
  
  $ cvs diff -u -r1.219 -r1.220 todo.txt
  --- openpkg-re/todo.txt   28 Apr 2004 16:26:43 -  1.219
  +++ openpkg-re/todo.txt   28 Apr 2004 19:52:00 -  1.220
  @@ -239,6 +239,7 @@
   
  3. PERHAPS:
   
  +  - [rse] fontforge   - http://fontforge.sourceforge.net/
 - [rse] libpixman, cairo, libsvg, xsvg http://www.xsvg.org/, 
http://cairographics.org/
 - [rse] lcfg CMS- http://www.lcfg.org/
 - [rse] auto nice daem. - http://and.sourceforge.net/
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY man.sh openpkg.spec rc

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 21:29:15
  Branch: HEAD Handle: 2004042820291400

  Modified files:
openpkg-src/openpkg HISTORY man.sh openpkg.spec rc

  Log:
fix "openpkg man" command now that OPENPKG_TOOLS_CMDPATH is not
provided

  Summary:
RevisionChanges Path
1.169   +1  -0  openpkg-src/openpkg/HISTORY
1.4 +16 -2  openpkg-src/openpkg/man.sh
1.322   +1  -1  openpkg-src/openpkg/openpkg.spec
1.53+2  -2  openpkg-src/openpkg/rc
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.168 -r1.169 HISTORY
  --- openpkg-src/openpkg/HISTORY   28 Apr 2004 13:39:18 -  1.168
  +++ openpkg-src/openpkg/HISTORY   28 Apr 2004 19:29:14 -  1.169
  @@ -2,6 +2,7 @@
   2004
   
   
  +20040428 fix "openpkg man" command now that OPENPKG_TOOLS_CMDPATH is not provided
   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
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/man.sh
  
  $ cvs diff -u -r1.3 -r1.4 man.sh
  --- openpkg-src/openpkg/man.sh5 Apr 2004 19:31:41 -   1.3
  +++ openpkg-src/openpkg/man.sh28 Apr 2004 19:29:14 -  1.4
  @@ -40,7 +40,6 @@
   exit 0
   fi
   if [ $# -eq 1 ]; then
  -man_sect=""
   man_page="$1"
   elif [ $# -eq 2 ]; then
   man_sect="$1"
  @@ -50,11 +49,26 @@
   exit 1
   fi
   
  +#   determine path to commands
  +openpkg_tools="${OPENPKG_TOOLS}"
  +openpkg_tools_cmdpath="${OPENPKG_TOOLS_CMDPATH}"
  +if [ ".${openpkg_tools}" != . -a ".${openpkg_tools_cmdpath}" = . ]; then
  +openpkg_tools_cmdpath="${openpkg_tools}/cmd:@"
  +fi
  +cmdpath="${prefix}/libexec/openpkg"
  +if [ -d "${prefix}/libexec/openpkg-tools" ]; then
  +cmdpath="${prefix}/libexec/openpkg-tools:${cmdpath}"
  +fi
  +if [ ".${openpkg_tools_cmdpath}" != . ]; then
  +cmdpath=`echo "${openpkg_tools_cmdpath}" | sed -e "s;@;${cmdpath};"`
  +fi
  +openpkg_tools_cmdpath=`echo "${cmdpath}" | sed -e 's/::/:/g' -e 's/^://' -e 
's/:$//'`
  +
   #   search for manual page in OpenPKG Tool Chain
   man_file=""
   man_type=""
   OIFS="$IFS"; IFS=":"
  -for dir in ${OPENPKG_TOOLS_CMDPATH-"$prefix/libexec/openpkg"}; do
  +for dir in ${openpkg_tools_cmdpath}; do
   IFS="$OIFS"
   for file in $dir/$man_page.${man_sect-"1"} $dir/$man_page.[1-9]; do
   if [ -f "$file" ]; then
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.321 -r1.322 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  27 Apr 2004 08:35:45 -  1.321
  +++ openpkg-src/openpkg/openpkg.spec  28 Apr 2004 19:29:14 -  1.322
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20040427
  +%define   V_openpkg  20040428
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/rc
  
  $ cvs diff -u -r1.52 -r1.53 rc
  --- openpkg-src/openpkg/rc28 Apr 2004 13:39:18 -  1.52
  +++ openpkg-src/openpkg/rc28 Apr 2004 19:29:14 -  1.53
  @@ -298,8 +298,8 @@
   * ) type="WARNING" ;;
   esac
   echo "openpkg:rc:${type}: package \"$s_name\" has unresolved 
configuration file conflicts" 1>&2
  -echo "openpkg:rc:${type}: indicated by \"*.rpm(new|orig|save)\" 
files" 1>&2
  -echo "openpkg:rc:${type}: in or below \"$prefix/etc/$s_name\"" 1>&2
  +echo "openpkg:rc:${type}: indicated by \"*.rpm(new|orig|save)\" 
files in or below the" 1>&2
  +echo "openpkg:rc:${type}: directory \"$prefix/etc/$s_name\". Please 
resolve first!" 1>&2
   if [ ".$type" = .ERROR ]; then
   continue
   fi
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/vim/ vim.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:49
  Branch: HEAD Handle: 2004042819494900

  Modified files:
openpkg-src/vim vim.spec

  Log:
upgrading package: vim 6.2.506 -> 6.2.514

  Summary:
RevisionChanges Path
1.333   +10 -2  openpkg-src/vim/vim.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/vim/vim.spec
  
  $ cvs diff -u -r1.332 -r1.333 vim.spec
  --- openpkg-src/vim/vim.spec  27 Apr 2004 18:18:43 -  1.332
  +++ openpkg-src/vim/vim.spec  28 Apr 2004 18:49:49 -  1.333
  @@ -26,7 +26,7 @@
   #   package versions
   %define   V_vl  6.2
   %define   V_vs  62
  -%define   V_pl  506
  +%define   V_pl  514
   
   #   package information
   Name: vim
  @@ -39,7 +39,7 @@
   Group:Editor
   License:  Charityware
   Version:  %{V_vl}.%{V_pl}
  -Release:  20040427
  +Release:  20040428
   
   #   package options
   %option   with_x11no
  @@ -561,6 +561,14 @@
   Patch504: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.504
   Patch505: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.505
   Patch506: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.506
  +Patch507: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.507
  +Patch508: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.508
  +Patch509: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.509
  +Patch510: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.510
  +Patch511: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.511
  +Patch512: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.512
  +Patch513: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.513
  +Patch514: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}.514
   
   #   build information
   Prefix:   %{l_prefix}
  @@ .
__
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]


[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/openpkg-tools/ openpkg-tools.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:45:07
  Branch: HEAD Handle: 2004042819450700

  Modified files:
openpkg-src/openpkg-tools
openpkg-tools.spec

  Log:
upgrading package: openpkg-tools 0.8.8 -> 0.8.9

  Summary:
RevisionChanges Path
1.10+2  -2  openpkg-src/openpkg-tools/openpkg-tools.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg-tools/openpkg-tools.spec
  
  $ cvs diff -u -r1.9 -r1.10 openpkg-tools.spec
  --- openpkg-src/openpkg-tools/openpkg-tools.spec  24 Apr 2004 06:28:17 - 
 1.9
  +++ openpkg-src/openpkg-tools/openpkg-tools.spec  28 Apr 2004 18:45:07 - 
 1.10
  @@ -33,8 +33,8 @@
   Class:EVAL
   Group:Bootstrapping
   License:  MIT
  -Version:  0.8.8
  -Release:  20040424
  +Version:  0.8.9
  +Release:  20040428
   
   #   list of sources
   Source0:  
ftp://ftp.openpkg.org/sources/CPY/openpkg-tools/openpkg-tools-%{version}.tar.gz
  @@ .
__
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/rsync/ rsync.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 18:46:01
  Branch: HEAD Handle: 200404281746

  Modified files:
openpkg-src/rsync   rsync.spec

  Log:
vendor has rerolled tarball (grr)

  Summary:
RevisionChanges Path
1.61+1  -1  openpkg-src/rsync/rsync.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/rsync/rsync.spec
  
  $ cvs diff -u -r1.60 -r1.61 rsync.spec
  --- openpkg-src/rsync/rsync.spec  27 Apr 2004 08:45:16 -  1.60
  +++ openpkg-src/rsync/rsync.spec  28 Apr 2004 16:46:00 -  1.61
  @@ -34,7 +34,7 @@
   Group:Filesystem
   License:  GPL
   Version:  2.6.1
  -Release:  20040427
  +Release:  20040428
   
   #   list of sources
   Source0:  http://rsync.samba.org/ftp/rsync/rsync-%{version}.tar.gz
  @@ .
__
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 18:26:44
  Branch: HEAD Handle: 2004042817264300

  Modified files:
openpkg-re  todo.txt

  Log:
last FreeBSD box now up-to-date, too

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

  patch -p0 <<'@@ .'
  Index: openpkg-re/todo.txt
  
  $ cvs diff -u -r1.218 -r1.219 todo.txt
  --- openpkg-re/todo.txt   28 Apr 2004 13:05:05 -  1.218
  +++ openpkg-re/todo.txt   28 Apr 2004 16:26:43 -  1.219
  @@ -83,7 +83,7 @@
   - dv8  sparc64-solaris8   (reinstall, SunWS).   .   X   
X   
   - dv16 ix86-solaris10 (update B6x)  .   .   .   
X
   - dv13 sparc64-solaris2.6 (update?) .   .   .   
X
  -- dv12 alpha-freebsd5.2   (fix,update)  X   .   .   
.
  +- dv12 alpha-freebsd5.2   (fix,update)  #   .   .   
.
   - dv3  sparc64-netbsd1.6  (fix,update)  X   .   .   
.
   - dv20 ix86-netbsd1.6 (install) X   .   .   
.(old: manuel dt)
   - dv21 sparc64-solaris10  (install) .   .   .   
X(old: hannie/nanni)
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-04-28 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-src  Date:   28-Apr-2004 17:41:03
  Branch: HEAD Handle: 2004042816410300

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

  Log:
realign patch hunk against new version 3.3.2

  Summary:
RevisionChanges Path
1.4 +1  -1  openpkg-src/qt/qt.patch
1.104   +1  -1  openpkg-src/qt/qt.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/qt/qt.patch
  
  $ cvs diff -u -r1.3 -r1.4 qt.patch
  --- openpkg-src/qt/qt.patch   10 Apr 2004 10:13:59 -  1.3
  +++ openpkg-src/qt/qt.patch   28 Apr 2004 15:41:03 -  1.4
  @@ -23,7 +23,7 @@
# auto-detect Session Management support
if [ "$CFG_SM" = "auto" ]; then
if $x11tests/sm.test $XQMAKESPEC $OPT_VERBOSE $L_FLAGS $I_FLAGS; then
  -@@ -2875,6 +2860,21 @@
  +@@ -2878,6 +2863,21 @@
if [ "$CFG_XKB" = "yes" ]; then
QMAKE_CONFIG="$QMAKE_CONFIG xkb"
fi
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/qt/qt.spec
  
  $ cvs diff -u -r1.103 -r1.104 qt.spec
  --- openpkg-src/qt/qt.spec27 Apr 2004 12:28:58 -  1.103
  +++ openpkg-src/qt/qt.spec28 Apr 2004 15:41:03 -  1.104
  @@ -34,7 +34,7 @@
   Group:XWindow
   License:  GPL
   Version:  3.3.2
  -Release:  20040427
  +Release:  20040428
   
   #   package library options (each 'yes' builds more libraries)
   %option   with_shared   no
  @@ .
__
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" 1>&2
  -echo "openpkg:rc:${type}: indicated by \"*.rpm(new|orig|save)\" 
files in \"$prefix/etc/$s_name\"" 1>&2
  +echo "openpkg:rc:${type}: indicated by \"*.rpm(new|orig|save)\" 
files" 1>&2
  +echo "openpkg:rc:${type}: in or below \"$prefix/etc/$s_name\"" 1>&2
   if [ ".$type" = .ERROR ]; then
   continue
   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 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-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:58:13
  Branch: HEAD Handle: 2004042810581300

  Modified files:
openpkg-re  todo.txt

  Log:
done

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

  patch -p0 <<'@@ .'
  Index: openpkg-re/todo.txt
  
  $ cvs diff -u -r1.216 -r1.217 todo.txt
  --- openpkg-re/todo.txt   28 Apr 2004 09:22:40 -  1.216
  +++ openpkg-re/todo.txt   28 Apr 2004 09:58:13 -  1.217
  @@ -71,7 +71,7 @@
   - dv2  ix87-freebsd5.2(update)  X   .   .   
.
   - 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)X   .   .   
.
  +- dv19 ix86-debian3.1 (update, Linux 2.4.26)#   .   .   
.
   - 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 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-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-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 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-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-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:37:23
  Branch: HEAD Handle: 2004042809372300

  Modified files:
openpkg-re  todo.txt

  Log:
dv1 is done

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

  patch -p0 <<'@@ .'
  Index: openpkg-re/todo.txt
  
  $ cvs diff -u -r1.213 -r1.214 todo.txt
  --- openpkg-re/todo.txt   27 Apr 2004 20:15:44 -  1.213
  +++ openpkg-re/todo.txt   28 Apr 2004 08:37:23 -  1.214
  @@ -67,7 +67,7 @@
   TaskSubtasksrse thl tho 
ms
   --- --- --- --- --- 
---
   Buildfarm   buildfarm fixing & upgrades & reinstalltionsX   X   X   
X
  -HW  - dv1  ix86-freebsd4.10   (update)  X   .   .   
.
  +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   .   .   
.
  @@ .
__
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-src/uvscan/ uvscan.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:17:38
  Branch: HEAD Handle: 2004042809173800

  Modified files:
openpkg-src/uvscan  uvscan.spec

  Log:
NAI is now again running under the brand McAfee

  Summary:
RevisionChanges Path
1.173   +3  -3  openpkg-src/uvscan/uvscan.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/uvscan/uvscan.spec
  
  $ cvs diff -u -r1.172 -r1.173 uvscan.spec
  --- openpkg-src/uvscan/uvscan.spec28 Apr 2004 07:17:02 -  1.172
  +++ openpkg-src/uvscan/uvscan.spec28 Apr 2004 08:17:38 -  1.173
  @@ -31,7 +31,7 @@
   #   package information
   Name: uvscan
   Summary:  McAfee VirusScan
  -URL:  http://www.mcafee-at-home.com/
  +URL:  http://www.mcafee.com/
   Vendor:   Network Associates
   Packager: The OpenPKG Project
   Distribution: OpenPKG
  @@ -42,7 +42,7 @@
   Release:  20040428
   
   #   list of sources
  -Source0:  ftp://ftp.nai.com/pub/antivirus/datfiles/4.x/dat-%{V_datfiles}.tar
  +Source0:  ftp://ftp.mcafee.com/pub/antivirus/datfiles/4.x/dat-%{V_datfiles}.tar
   Source1:  
http://download.nai.com/products/evaluation/virusscan/english/cmdline/bsd/v%{V_engine}/vbsd%{V_engine_comp}e.tar.Z
   Source2:  
http://download.nai.com/products/evaluation/virusscan/english/cmdline/linux/v%{V_engine}/intel/vlnx%{V_engine_comp}e.tar.Z
   Source3:  
http://download.nai.com/products/evaluation/virusscan/english/cmdline/sun/v%{V_engine}/vsun%{V_engine_comp}e.tar.Z
  @@ -68,7 +68,7 @@
   %track
   prog uvscan:datfiles = {
   version   = %{V_datfiles}
  -url   = ftp://ftp.nai.com/pub/antivirus/datfiles/4.x/
  +url   = ftp://ftp.mcafee.com/pub/antivirus/datfiles/4.x/
   regex = dat-(\d+).tar
   }
   
  @@ .
__
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:13:55
  Branch: HEAD Handle: 2004042809135500

  Modified files:
openpkg-tools/cmd   dev.sh

  Log:
reverse sorting so latest update is on top

  Summary:
RevisionChanges Path
1.18+1  -1  openpkg-tools/cmd/dev.sh
  

  patch -p0 <<'@@ .'
  Index: openpkg-tools/cmd/dev.sh
  
  $ cvs diff -u -r1.17 -r1.18 dev.sh
  --- openpkg-tools/cmd/dev.sh  22 Apr 2004 21:34:42 -  1.17
  +++ openpkg-tools/cmd/dev.sh  28 Apr 2004 08:13:55 -  1.18
  @@ -1877,7 +1877,7 @@
   URL=`echo $2 | sed -e 's| *$||'`
   PKG=`$E/lib/openpkg/curl -l -s $URL |\
sed -e 's|[^-a-zA-Z0-9_\.]||g' |\
  - grep "^$1" | sort`
  + grep "^$1" | sort -r`
   if [ ".$PKG" != . ]; then
   for pkg in $PKG; do
   NAME=`echo "$pkg" | sed -e 's;\.src\.rpm$;;' -e 's;\.src\.sh$;;'`
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/subversion/ rc.subversion subversion.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:12:35
  Branch: HEAD Handle: 2004042809123500

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

  Log:
various fixes, enhancements and cleanups

  Summary:
RevisionChanges Path
1.2 +26 -8  openpkg-src/subversion/rc.subversion
1.49+14 -2  openpkg-src/subversion/subversion.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/subversion/rc.subversion
  
  $ cvs diff -u -r1.1 -r1.2 rc.subversion
  --- openpkg-src/subversion/rc.subversion  31 Jan 2004 23:14:32 -  1.1
  +++ openpkg-src/subversion/rc.subversion  28 Apr 2004 08:12:35 -  1.2
  @@ -9,11 +9,20 @@
   subversion_daemon="no"
   subversion_daemon_host="127.0.0.1"
   subversion_daemon_port="3690"
  -subversion_daemon_host=""
  +subversion_daemon_root="@l_prefix@/var/subversion/default"
  +
  +%common
  +subversion_daemon_pidfile="@l_prefix@/var/subversion/svnserve.pid"
  +subversion_signal () {
  +[ -f $subversion_daemon_pidfile ] \
  +&& kill -$1 `cat $subversion_daemon_pidfile`
  +}
   
   %status -u @l_susr@ -o
  -subversion_usable="no"
  +subversion_usable="unknown"
   subversion_active="no"
  +rcService subversion enable yes && \
  +subversion_signal 0 && subversion_active="yes"
   echo "subversion_enable=\"$subversion_enable\""
   echo "subversion_usable=\"$subversion_usable\""
   echo "subversion_active=\"$subversion_active\""
  @@ -23,18 +32,27 @@
   rcService subversion active yes && exit 0
   if rcVarIsYes subversion_daemon; then
   if [ ".$subversion_daemon_root" != . ]; then
  -@l_prefix@/bin/svnserve \
  ---daemon \
  ---listen-host $subversion_daemon_host \
  ---listen-port $subversion_daemon_port \
  ---root $subversion_daemon_root
  +( nohup @l_prefix@/bin/svnserve --daemon --foreground \
  +  --listen-host $subversion_daemon_host \
  +  --listen-port $subversion_daemon_port \
  +  --root $subversion_daemon_root \
  +  /dev/null 2>&1 &
  +  echo $! >$subversion_daemon_pidfile
  +) >/dev/null 2>&1
   fi
   fi
   
   %stop -p 100 -u @l_susr@
   rcService subversion enable yes || exit 0
   rcService subversion active no  && exit 0
  -#   FIXME: don't know how to kill svnserve(8) process
  +subversion_signal TERM
  +sleep 2
  +rm -f $subversion_daemon_pidfile 2>/dev/null || true
  +
  +%restart -u @l_susr@
  +rcService subversion enable yes || exit 0
  +rcService subversion active no  && exit 0
  +rc subversion stop start
   
   %env
   rcService subversion enable yes || exit 0
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/subversion/subversion.spec
  
  $ cvs diff -u -r1.48 -r1.49 subversion.spec
  --- openpkg-src/subversion/subversion.spec20 Apr 2004 08:53:40 -  1.48
  +++ openpkg-src/subversion/subversion.spec28 Apr 2004 08:12:35 -  1.49
  @@ -38,7 +38,7 @@
   Group:SCM
   License:  Apache/BSD
   Version:  %{V_opkg}
  -Release:  20040420
  +Release:  20040428
   
   #   package options
   %option   with_cvs2svn  no
  @@ -85,7 +85,7 @@
   %build
   #   configure package
   %{l_shtool} subst \
  --e 's;\($ac_abs_srcdir/configure\) $ac_configure_args;\1;' \
  +-e 's;\($ac_abs_srcdir/configure\) $ac_configure_args;\1 --disable-shared;' 
\
   configure
   CC="%{l_cc}" \
   CFLAGS="%{l_cflags -O}" \
  @@ -96,6 +96,7 @@
   --with-berkeley-db=%{l_prefix} \
   --with-ssl \
   --with-zlib \
  +--enable-static \
   --disable-shared
   
   #   build package
  @@ -166,6 +167,10 @@
   %{SOURCE rc.subversion} \
   $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
   
  +#   create directory for default repository and svnserve pidfile
  +%{l_shtool} mkdir -f -p -m 755 \
  +

[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/postfix/ postfix.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:19:40
  Branch: HEAD Handle: 2004042808194000

  Modified files:
openpkg-src/postfix postfix.spec

  Log:
modifying package: postfix-2.1.0 20040423 -> 20040428

  Summary:
RevisionChanges Path
1.198   +2  -4  openpkg-src/postfix/postfix.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/postfix/postfix.spec
  
  $ cvs diff -u -r1.197 -r1.198 postfix.spec
  --- openpkg-src/postfix/postfix.spec  23 Apr 2004 07:35:28 -  1.197
  +++ openpkg-src/postfix/postfix.spec  28 Apr 2004 07:19:40 -  1.198
  @@ -23,11 +23,9 @@
   ##  SUCH DAMAGE.
   ##
   
  -#   FIXME: rse: SSL/TLS support broken until updated patch for 2.1.0 is released
  -
   #   package versions
   %define   V_postfix  2.1.0
  -%define   V_tls  0.8.16-2.0.18-0.9.7c
  +%define   V_tls  0.8.18-2.1.0-0.9.7d
   %define   V_pflogsumm1.1.0
   %define   V_whoson   2.0.0.2
   
  @@ -42,7 +40,7 @@
   Group:Mail
   License:  IPL
   Version:  %{V_postfix}
  -Release:  20040423
  +Release:  20040428
   
   #   package options
   %option   with_fsl   yes
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/uvscan/ uvscan.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:17:03
  Branch: HEAD Handle: 2004042808170200

  Modified files:
openpkg-src/uvscan  uvscan.spec

  Log:
upgrading package: uvscan 4.32.4352 -> 4.32.4353

  Summary:
RevisionChanges Path
1.172   +2  -2  openpkg-src/uvscan/uvscan.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/uvscan/uvscan.spec
  
  $ cvs diff -u -r1.171 -r1.172 uvscan.spec
  --- openpkg-src/uvscan/uvscan.spec22 Apr 2004 07:37:52 -  1.171
  +++ openpkg-src/uvscan/uvscan.spec28 Apr 2004 07:17:02 -  1.172
  @@ -26,7 +26,7 @@
   #   package versions
   %define   V_engine  4.32
   %define   V_engine_comp 432
  -%define   V_datfiles4352
  +%define   V_datfiles4353
   
   #   package information
   Name: uvscan
  @@ -39,7 +39,7 @@
   Group:Filesystem
   License:  Commercial/Free-Trial
   Version:  %{V_engine}.%{V_datfiles}
  -Release:  20040422
  +Release:  20040428
   
   #   list of sources
   Source0:  ftp://ftp.nai.com/pub/antivirus/datfiles/4.x/dat-%{V_datfiles}.tar
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/perl-ole/ perl-ole.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/perl-oleperl-ole.spec

  Log:
modifying package: perl-ole-5.8.4 20040422 -> 20040428

  Summary:
RevisionChanges Path
1.23+2  -2  openpkg-src/perl-ole/perl-ole.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-ole/perl-ole.spec
  
  $ cvs diff -u -r1.22 -r1.23 perl-ole.spec
  --- openpkg-src/perl-ole/perl-ole.spec22 Apr 2004 07:56:21 -  1.22
  +++ openpkg-src/perl-ole/perl-ole.spec28 Apr 2004 07:11:52 -  1.23
  @@ -27,7 +27,7 @@
   %define   V_perl   5.8.4
   %define   V_ole_storage0.386
   %define   V_ole_storage_light  0.11
  -%define   V_spreadsheet_writeexcel 0.42
  +%define   V_spreadsheet_writeexcel 0.43
   %define   V_spreadsheet_parseexcel 0.2602
   
   #   package information
  @@ -41,7 +41,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20040422
  +Release:  20040428
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/OLE/OLE-Storage-%{V_ole_storage}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[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]