[CVS] OpenPKG: openpkg-src/op/ op.conf op.spec

2007-10-26 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   26-Oct-2007 22:11:05
  Branch: HEAD Handle: 2007102621110301

  Modified files:
openpkg-src/op  op.conf op.spec

  Log:
Permission fixes; Provide a very basic example without the portability
issues; Minor cleanups; Loggiing via OSSP fsl is a todo, currently
logging is still passed to the syslogd of the underlying OS

  Summary:
RevisionChanges Path
1.2 +1  -4  openpkg-src/op/op.conf
1.3 +26 -17 openpkg-src/op/op.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/op/op.conf
  
  $ cvs diff -u -r1.1 -r1.2 op.conf
  --- openpkg-src/op/op.conf25 Oct 2007 17:04:04 -  1.1
  +++ openpkg-src/op/op.conf26 Oct 2007 20:11:03 -  1.2
  @@ -9,9 +9,6 @@
   password
   environment
   
  -shutdown @l_shutdown@;
  -users=PRIVILEGED
  -
  -reboot @l_reboot@;
  +id @l_id@;
   users=PRIVILEGED
   
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/op/op.spec
  
  $ cvs diff -u -r1.2 -r1.3 op.spec
  --- openpkg-src/op/op.spec25 Oct 2007 18:45:06 -  1.2
  +++ openpkg-src/op/op.spec26 Oct 2007 20:11:04 -  1.3
  @@ -33,7 +33,7 @@
   Group:ShellUtils
   License:  MIT-style
   Version:  1.32
  -Release:  20071025
  +Release:  20071026
   
   #   list of sources
   Source0:  http://swapoff.org/files/op/op-%{version}.tar.gz
  @@ -62,9 +62,17 @@
   }
   
   %prep
  +#   unpack distribution
   %setup -q
   
  +#   fix paths on man page
  +%{l_shtool} subst \
  +-e 's;/etc/op.conf;%{l_prefix}/etc/op/op.conf;g' \
  +-e 's;/etc/op.d;%{l_prefix}/etc/op/op.d;g' \
  +op.1
  +
   %build
  +#   configure package
   CC="%{l_cc}" \
   CFLAGS="%{l_cflags -O}" \
   CPPFLAGS="%{l_cppflags}" \
  @@ -72,36 +80,37 @@
   ./configure \
   --prefix=%{l_prefix} \
   --sysconfdir=%{l_prefix}/etc/op
  +
  +#   build package
   %{l_make} %{l_mflags -O}
   
   %install
   rm -rf $RPM_BUILD_ROOT
  +
  +#   install package
   %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
  -strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true
  +
  +#   install default configuration with examples
   l_su="`%{l_shtool} path su`"
  -l_shutdown="`%{l_shtool} path shutdown`"
  -l_reboot="`%{l_shtool} path shutdown`"
  -case "%{l_platform -t}" in
  -*-sunos* )
  -l_shutdown="$l_shutdown -i0 -g0 -y"
  -l_reboot="$l_reboot -i6 -g0 -y"
  -;;
  -* )
  -l_shutdown="$l_shutdown -r now"
  -l_reboot="$l_reboot -r now"
  -;;
  -esac
  +l_id="`%{l_shtool} path id`"
   %{l_shtool} mkdir -f -p -m 755 \
   $RPM_BUILD_ROOT%{l_prefix}/etc/op/op.d
   %{l_shtool} install -c -m 644 \
   -e "s;@l_su@;$l_su;g" \
  --e "s;@l_shutdown@;$l_shutdown;g" \
  --e "s;@l_reboot@;$l_reboot;g" \
  +-e "s;@l_id@;$l_id;g" \
   %{SOURCE op.conf} \
   $RPM_BUILD_ROOT%{l_prefix}/etc/op/
  +
  +#   strip installation
  +strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true
  +
  +#   determine installation files
   %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
   %{l_files_std} \
  -'%config %{l_prefix}/etc/op/op.conf'
  +'%attr(4111,%{l_susr},%{l_sgrp}) %{l_prefix}/bin/op' \
  +'%dir%attr(0700,%{l_susr},%{l_sgrp}) %{l_prefix}/etc/op' \
  +'%dir%attr(0700,%{l_susr},%{l_sgrp}) %{l_prefix}/etc/op/op.d' \
  +'%config %attr(0600,%{l_susr},%{l_sgrp}) %{l_prefix}/etc/op/op.conf'
   
   %files -f files
   
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 17:58:57
  Branch: HEAD Handle: 2007102616585600

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

  Log:
upgrading package: botan 1.7.0 -> 1.7.2

  Summary:
RevisionChanges Path
1.2 +28 -2  openpkg-src/botan/botan.patch
1.3 +6  -2  openpkg-src/botan/botan.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/botan/botan.patch
  
  $ cvs diff -u -r1.1 -r1.2 botan.patch
  --- openpkg-src/botan/botan.patch 2 Mar 2007 08:01:28 -   1.1
  +++ openpkg-src/botan/botan.patch 26 Oct 2007 15:58:56 -  1.2
  @@ -1,6 +1,20 @@
  +Index: misc/config/cc/gcc
  +--- misc/config/cc/gcc.orig  2007-07-23 18:11:54 +0200
   misc/config/cc/gcc   2007-09-05 08:24:07 +0200
  +@@ -10,8 +10,8 @@
  + 
  + lib_opt_flags "-O2 -finline-functions"
  + check_opt_flags "-O2"
  +-lang_flags "-D_REENTRANT -ansi -Wno-long-long"
  +-warning_flags "-W -Wall"
  ++lang_flags "-D_REENTRANT"
  ++warning_flags ""
  + 
  + so_obj_flags "-fPIC"
  + debug_flags "-g"
   Index: misc/config/makefile/unix.in
   misc/config/makefile/unix.in.orig2007-01-20 11:57:30 +0100
  -+++ misc/config/makefile/unix.in 2007-03-02 08:55:38 +0100
  +--- misc/config/makefile/unix.in.orig2007-07-23 18:11:54 +0200
   misc/config/makefile/unix.in 2007-09-05 08:23:05 +0200
   @@ -26,7 +26,7 @@
BINDIR= $(INSTALLROOT)/bin
LIBDIR= $(INSTALLROOT)/@{var:libdir}
  @@ -10,3 +24,15 @@

OWNER = @{var:install_user}
GROUP = @{var:install_group}
  +Index: include/types.h
  +--- include/types.h.orig 2007-07-23 18:11:53 +0200
   include/types.h  2007-09-05 08:27:30 +0200
  +@@ -20,7 +20,7 @@
  +typedef unsigned __int64 u64bit;
  + #elif defined(__KCC)
  +typedef unsigned __long_long u64bit;
  +-#elif defined(__GNUG__)
  ++#elif defined(__GNUC__)
  +__extension__ typedef unsigned long long u64bit;
  + #else
  +typedef unsigned long long u64bit;
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/botan/botan.spec
  
  $ cvs diff -u -r1.2 -r1.3 botan.spec
  --- openpkg-src/botan/botan.spec  25 Mar 2007 13:47:32 -  1.2
  +++ openpkg-src/botan/botan.spec  26 Oct 2007 15:58:56 -  1.3
  @@ -24,7 +24,7 @@
   
   #   package version
   %define   V_major 1.7
  -%define   V_minor 0
  +%define   V_minor 2
   
   #   package information
   Name: botan
  @@ -37,7 +37,7 @@
   Group:Cryptography
   License:  BSD
   Version:  %{V_major}.%{V_minor}
  -Release:  20070325
  +Release:  20071026
   
   #   list of sources
   Source0:  
http://files.randombit.net/botan/archive/v%{V_major}/Botan-%{version}.tgz
  @@ -67,6 +67,10 @@
   %patch -p0
   
   %build
  +perl -p -i.bak -e \
  +'s;(0x[\da-fA-F]{16});\1ULL;g' \
  +src/*.cpp
  +rm -f src/*.bak
   %{l_shtool} subst \
   -e 's;-mcpu=;-mtune=;g' \
   misc/config/cc/gcc
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 17:17:46
  Branch: HEAD Handle: 2007102616174500

  Modified files:
openpkg-src/perl-bizperl-biz.spec

  Log:
modifying package: perl-biz-5.8.8 20071021 -> 20071026

  Summary:
RevisionChanges Path
1.27+2  -2  openpkg-src/perl-biz/perl-biz.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-biz/perl-biz.spec
  
  $ cvs diff -u -r1.26 -r1.27 perl-biz.spec
  --- openpkg-src/perl-biz/perl-biz.spec21 Oct 2007 09:37:19 -  
1.26
  +++ openpkg-src/perl-biz/perl-biz.spec26 Oct 2007 15:17:45 -  
1.27
  @@ -26,7 +26,7 @@
   %define   V_perl 5.8.8
   %define   V_business_hours   0.07
   %define   V_business_isbn2.03
  -%define   V_business_isbn_data   1.15
  +%define   V_business_isbn_data   1.16
   %define   V_business_iban0.06
   %define   V_business_creditcard  0.30
   %define   V_business_creditcard_object   1.00
  @@ -50,7 +50,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20071021
  +Release:  20071026
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Business/Business-Hours-%{V_business_hours}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 17:16:39
  Branch: HEAD Handle: 2007102616163800

  Modified files:
openpkg-src/perl-sslperl-ssl.patch perl-ssl.spec

  Log:
modifying package: perl-ssl-5.8.8 20071017 -> 20071026

  Summary:
RevisionChanges Path
1.19+6  -6  openpkg-src/perl-ssl/perl-ssl.patch
1.96+2  -2  openpkg-src/perl-ssl/perl-ssl.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-ssl/perl-ssl.patch
  
  $ cvs diff -u -r1.18 -r1.19 perl-ssl.patch
  --- openpkg-src/perl-ssl/perl-ssl.patch   11 Oct 2007 06:21:33 -  
1.18
  +++ openpkg-src/perl-ssl/perl-ssl.patch   26 Oct 2007 15:16:38 -  
1.19
  @@ -18,17 +18,17 @@
}

my @CANDIDATE = do {
  -Index: IO-Socket-SSL-1.11/Makefile.PL
   IO-Socket-SSL-1.11/Makefile.PL.orig  2007-08-10 10:54:23 +0200
  -+++ IO-Socket-SSL-1.11/Makefile.PL   2007-09-18 08:28:09 +0200
  +Index: IO-Socket-SSL-1.12/Makefile.PL
  +--- IO-Socket-SSL-1.12/Makefile.PL.orig  2007-08-10 10:54:23 +0200
   IO-Socket-SSL-1.12/Makefile.PL   2007-09-18 08:28:09 +0200
   @@ -71,3 +71,4 @@
  'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz', },
  'NO_META' => 1,
);
   +
  -Index: IO-Socket-SSL-1.11/SSL.pm
   IO-Socket-SSL-1.11/SSL.pm.orig   2007-09-13 21:19:34 +0200
  -+++ IO-Socket-SSL-1.11/SSL.pm2007-09-18 08:28:09 +0200
  +Index: IO-Socket-SSL-1.12/SSL.pm
  +--- IO-Socket-SSL-1.12/SSL.pm.orig   2007-09-13 21:19:34 +0200
   IO-Socket-SSL-1.12/SSL.pm2007-09-18 08:28:09 +0200
   @@ -388,10 +388,7 @@

sub read {
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/perl-ssl/perl-ssl.spec
  
  $ cvs diff -u -r1.95 -r1.96 perl-ssl.spec
  --- openpkg-src/perl-ssl/perl-ssl.spec17 Oct 2007 07:28:23 -  
1.95
  +++ openpkg-src/perl-ssl/perl-ssl.spec26 Oct 2007 15:16:38 -  
1.96
  @@ -26,7 +26,7 @@
   %define   V_perl  5.8.8
   %define   V_net_ssleay1.32
   %define   V_crypt_ssleay  0.57
  -%define   V_io_socket_ssl 1.11
  +%define   V_io_socket_ssl 1.12
   
   #   package information
   Name: perl-ssl
  @@ -39,7 +39,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20071017
  +Release:  20071026
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Net/Net-SSLeay-%{V_net_ssleay}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 17:15:00
  Branch: HEAD Handle: 2007102616145900

  Modified files:
openpkg-src/mkshmksh.spec

  Log:
upgrading package: mksh R31d -> R32

  Summary:
RevisionChanges Path
1.18+2  -2  openpkg-src/mksh/mksh.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/mksh/mksh.spec
  
  $ cvs diff -u -r1.17 -r1.18 mksh.spec
  --- openpkg-src/mksh/mksh.spec15 Oct 2007 16:26:45 -  1.17
  +++ openpkg-src/mksh/mksh.spec26 Oct 2007 15:14:59 -  1.18
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Shell
   License:  BSD
  -Version:  R31d
  -Release:  20071015
  +Version:  R32
  +Release:  20071026
   
   #   list of sources
   Source0:  http://www.mirbsd.org/dist/mir/mksh/mksh-%{version}.cpio.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   26-Oct-2007 16:39:54
  Branch: HEAD Handle: 2007102615395200

  Modified files:
openpkg-src/global  global.spec

  Log:
upgrading package: global 5.6.1 -> 5.6.2

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

  patch -p0 <<'@@ .'
  Index: openpkg-src/global/global.spec
  
  $ cvs diff -u -r1.32 -r1.33 global.spec
  --- openpkg-src/global/global.spec11 Aug 2007 07:47:48 -  1.32
  +++ openpkg-src/global/global.spec26 Oct 2007 14:39:52 -  1.33
  @@ -32,8 +32,8 @@
   Class:PLUS
   Group:Development
   License:  GPL
  -Version:  5.6.1
  -Release:  20070811
  +Version:  5.6.2
  +Release:  20071026
   
   #   list of sources
   Source0:  ftp://ftp.gnu.org/pub/gnu/global/global-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 15:26:29
  Branch: HEAD Handle: 2007102614262900

  Modified files:
openpkg-src/monotonemonotone.patch monotone.spec

  Log:
link against external PCRE

  Summary:
RevisionChanges Path
1.10+11 -0  openpkg-src/monotone/monotone.patch
1.23+3  -2  openpkg-src/monotone/monotone.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/monotone/monotone.patch
  
  $ cvs diff -u -r1.9 -r1.10 monotone.patch
  --- openpkg-src/monotone/monotone.patch   26 Oct 2007 09:19:23 -  
1.9
  +++ openpkg-src/monotone/monotone.patch   26 Oct 2007 13:26:29 -  
1.10
  @@ -10,3 +10,14 @@
   found_libpcre=yes
   { echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6; }
  +Index: pcrewrap.cc
  +--- pcrewrap.cc.orig 2007-10-26 00:40:22 +0200
   pcrewrap.cc  2007-10-26 15:19:23 +0200
  +@@ -15,7 +15,6 @@
  + // This dirty trick is necessary to prevent the 'pcre' typedef defined by
  + // pcre.h from colliding with namespace pcre.
  + #define pcre pcre_t
  +-#include "pcre_config.h"
  + #include "pcre.h"
  + #undef pcre
  + 
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/monotone/monotone.spec
  
  $ cvs diff -u -r1.22 -r1.23 monotone.spec
  --- openpkg-src/monotone/monotone.spec26 Oct 2007 07:42:05 -  
1.22
  +++ openpkg-src/monotone/monotone.spec26 Oct 2007 13:26:29 -  
1.23
  @@ -53,8 +53,8 @@
   BuildRoot:%{l_buildroot}
   BuildPreReq:  OpenPKG, openpkg >= 20040130, gcc, gcc::with_cxx = yes
   PreReq:   OpenPKG, openpkg >= 20040130, apg, diffutils, perl, perl-mail, 
perl-term, less
  -BuildPreReq:  boost, zlib
  -PreReq:   boost, zlib
  +BuildPreReq:  boost, zlib, pcre
  +PreReq:   boost, zlib, pcre
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -100,6 +100,7 @@
   --infodir=%{l_prefix}/info \
   --mandir=%{l_prefix}/man \
   --enable-static-boost=%{l_prefix} \
  +--with-system-pcre \
   --disable-nls
   
   #   build program
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/frink/ frink.sh

2007-10-26 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:   26-Oct-2007 15:25:49
  Branch: HEAD Handle: 2007102614254800

  Modified files:
openpkg-src/frink   frink.sh

  Log:
fix typo

  Summary:
RevisionChanges Path
1.2 +1  -1  openpkg-src/frink/frink.sh
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/frink/frink.sh
  
  $ cvs diff -u -r1.1 -r1.2 frink.sh
  --- openpkg-src/frink/frink.sh26 Oct 2007 13:05:05 -  1.1
  +++ openpkg-src/frink/frink.sh26 Oct 2007 13:25:48 -  1.2
  @@ -12,7 +12,7 @@
   esac
   
   #   execute program
  -if [ ".$ui" = ".frink.parser.Frink" $# -eq 1 -a ! -f "$1" ]; then
  +if [ ".$ui" = ".frink.parser.Frink" -a $# -eq 1 -a ! -f "$1" ]; then
   set -- -e "$@"
   fi
   if [ ".$ui" = ".frink.parser.Frink" -a \
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/frink/ frink.sh frink.spec

2007-10-26 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:   26-Oct-2007 15:05:05
  Branch: HEAD Handle: 2007102614050500

  Added files:
openpkg-src/frink   frink.sh frink.spec

  Log:
new package: frink 20070929 (Practical Calculations Engine)

  Summary:
RevisionChanges Path
1.1 +25 -0  openpkg-src/frink/frink.sh
1.1 +104 -0 openpkg-src/frink/frink.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/frink/frink.sh
  
  $ cvs diff -u -r0 -r1.1 frink.sh
  --- /dev/null 2007-10-26 15:01:02 +0200
  +++ frink.sh  2007-10-26 15:05:05 +0200
  @@ -0,0 +1,25 @@
  +#!/bin/sh
  +##
  +##  frink.sh -- Frink command line interface
  +##
  +
  +#   determine run-time user-interface
  +case "$1" in
  +--gui | --gui-awt ) ui="frink.gui.InteractivePanel"  ;;
  +--gui-swing   ) ui="frink.gui.SwingInteractivePanel" ;;
  +--gui-pp  ) ui="frink.gui.ProgrammingPanel"  ;;
  +* ) ui="frink.parser.Frink"  ;;
  +esac
  +
  +#   execute program
  +if [ ".$ui" = ".frink.parser.Frink" $# -eq 1 -a ! -f "$1" ]; then
  +set -- -e "$@"
  +fi
  +if [ ".$ui" = ".frink.parser.Frink" -a \
  + -x @l_prefix@/libexec/frink/frink.exe ]; then
  +exec @l_prefix@/libexec/frink/frink.exe ${1+"$@"}
  +else
  +export JAVA_PLATFORM="sun-jdk"
  +exec @l_prefix@/bin/java -cp @l_prefix@/libexec/frink/frink.jar $ui 
${1+"$@"}
  +fi
  +
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/frink/frink.spec
  
  $ cvs diff -u -r0 -r1.1 frink.spec
  --- /dev/null 2007-10-26 15:01:02 +0200
  +++ frink.spec2007-10-26 15:05:05 +0200
  @@ -0,0 +1,104 @@
  +##
  +##  frink.spec -- OpenPKG RPM Package Specification
  +##  Copyright (c) 2000-2007 OpenPKG Foundation e.V. <http://openpkg.net/>
  +##  Copyright (c) 2000-2007 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: frink
  +Summary:  Practical Calculations Engine
  +URL:  http://futureboy.us/frinkdocs/
  +Vendor:   Alan Eliasen.
  +Packager: OpenPKG Foundation e.V.
  +Distribution: OpenPKG Community
  +Class:EVAL
  +Group:Language
  +License:  Freely Usable
  +Version:  20070929
  +Release:  20071026
  +
  +#   package options
  +%option   with_gcj  no
  +
  +#   list of sources
  +Source0:  
ftp://ftp.openpkg.org/sources/CPY/VERSIONED/frink/frink-%{version}.jar
  +Source1:  frink.sh
  +
  +#   build information
  +Prefix:   %{l_prefix}
  +BuildRoot:%{l_buildroot}
  +BuildPreReq:  OpenPKG, openpkg >= 20060823
  +PreReq:   OpenPKG, openpkg >= 20060823
  +BuildPreReq:  java, JAVA-JDK
  +PreReq:   java, JAVA-JDK
  +%if "%{with_gcj}" == "yes"
  +BuildPreReq:  gcc, gcc::with_java = yes
  +%endif
  +AutoReq:  no
  +AutoReqProv:  no
  +
  +%description
  +Frink is a practical calculating tool and programming language
  +designed to help to better understand the world, to get calculations
  +right without getting bogged down in the mechanics, and to make
  +a tool that's really useful in the real world. It tracks units
  +of measure (feet, me

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

2007-10-26 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:   26-Oct-2007 12:56:17
  Branch: HEAD Handle: 2007102611561700

  Added files:
openpkg-src/pod2pdf pod2pdf.spec

  Log:
new package: pod2pdf 0.41 (POD to PDF Document Format Translation)

  Summary:
RevisionChanges Path
1.1 +79 -0  openpkg-src/pod2pdf/pod2pdf.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/pod2pdf/pod2pdf.spec
  
  $ cvs diff -u -r0 -r1.1 pod2pdf.spec
  --- /dev/null 2007-10-26 12:55:01 +0200
  +++ pod2pdf.spec  2007-10-26 12:56:17 +0200
  @@ -0,0 +1,79 @@
  +##
  +##  pod2pdf.spec -- OpenPKG RPM Package Specification
  +##  Copyright (c) 2000-2007 OpenPKG Foundation e.V. <http://openpkg.net/>
  +##  Copyright (c) 2000-2007 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: pod2pdf
  +Summary:  POD to PDF Document Format Translation
  +URL:  http://perl.jonallen.info/projects/pod2pdf
  +Vendor:   Jon Alle
  +Packager: OpenPKG Foundation e.V.
  +Distribution: OpenPKG Community
  +Class:EVAL
  +Group:Typesetting
  +License:  Artistic/GPL
  +Version:  0.41
  +Release:  20071026
  +
  +#   list of sources
  +Source0:  
http://perl.jonallen.info/pub/Main/Pod2Pdf/pod2pdf-%{version}.tar.gz
  +
  +#   build information
  +Prefix:   %{l_prefix}
  +BuildRoot:%{l_buildroot}
  +BuildPreReq:  OpenPKG, openpkg >= 20060823, perl-openpkg
  +PreReq:   OpenPKG, openpkg >= 20060823
  +BuildPreReq:  perl, perl-gfx, perl-parse
  +PreReq:   perl, perl-gfx, perl-parse
  +AutoReq:  no
  +AutoReqProv:  no
  +
  +%description
  +pod2pdf converts a document marked up in Perl's Plain Old Document
  +(POD) format into Adobe's Portable Document Format (PDF).
  +
  +%track
  +prog pod2pdf = {
  +version   = %{version}
  +url   = http://perl.jonallen.info/projects/pod2pdf
  +regex = pod2pdf-(__VER__)\.tar\.gz
  +}
  +
  +%prep
  +%setup -q
  +
  +%build
  +%{l_prefix}/bin/perl-openpkg prepare
  +%{l_prefix}/bin/perl-openpkg configure build
  +
  +%install
  +rm -rf $RPM_BUILD_ROOT
  +%{l_prefix}/bin/perl-openpkg install
  +%{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup
  +%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} `cat 
perl-openpkg-files`
  +
  +%files -f files
  +
  +%clean
  +rm -rf $RPM_BUILD_ROOT
  +
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 12:30:32
  Branch: HEAD Handle: 2007102611303100

  Modified files:
openpkg-src/rfc rfc.spec

  Log:
modifying package: rfc-3.2.3 20071004 -> 20071026

  Summary:
RevisionChanges Path
1.66+2  -2  openpkg-src/rfc/rfc.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/rfc/rfc.spec
  
  $ cvs diff -u -r1.65 -r1.66 rfc.spec
  --- openpkg-src/rfc/rfc.spec  4 Oct 2007 06:24:21 -   1.65
  +++ openpkg-src/rfc/rfc.spec  26 Oct 2007 10:30:31 -  1.66
  @@ -24,7 +24,7 @@
   
   #   package versions
   %define   V_rfctool   3.2.3
  -%define   V_rfcindex  20071004
  +%define   V_rfcindex  20071026
   %define   V_services  20041012
   
   #   package information
  @@ -38,7 +38,7 @@
   Group:Searching
   License:  PD
   Version:  %{V_rfctool}
  -Release:  20071004
  +Release:  20071026
   
   #   list of sources
   Source0:  http://www.dewn.com/rfc/rfc-%{V_rfctool}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 12:29:30
  Branch: HEAD Handle: 2007102611293000

  Modified files:
openpkg-src/txt2pdf txt2pdf.spec

  Log:
upgrading package: txt2pdf 9.4 -> 9.5

  Summary:
RevisionChanges Path
1.59+2  -2  openpkg-src/txt2pdf/txt2pdf.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/txt2pdf/txt2pdf.spec
  
  $ cvs diff -u -r1.58 -r1.59 txt2pdf.spec
  --- openpkg-src/txt2pdf/txt2pdf.spec  25 Apr 2007 06:40:05 -  1.58
  +++ openpkg-src/txt2pdf/txt2pdf.spec  26 Oct 2007 10:29:30 -  1.59
  @@ -32,8 +32,8 @@
   Class:PLUS
   Group:Postscript
   License:  Shareware
  -Version:  9.4
  -Release:  20070425
  +Version:  9.5
  +Release:  20071026
   
   #   list of sources
   Source0:  
ftp://ftp.openpkg.org/sources/CPY/VERSIONED/txt2pdf/txt2pdf-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 12:26:56
  Branch: HEAD Handle: 2007102611265500

  Modified files:
openpkg-src/lemon   lemon.spec

  Log:
upgrading package: lemon 1.0.20071004 -> 1.0.20071026

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

  patch -p0 <<'@@ .'
  Index: openpkg-src/lemon/lemon.spec
  
  $ cvs diff -u -r1.39 -r1.40 lemon.spec
  --- openpkg-src/lemon/lemon.spec  4 Oct 2007 06:12:32 -   1.39
  +++ openpkg-src/lemon/lemon.spec  26 Oct 2007 10:26:55 -  1.40
  @@ -32,8 +32,8 @@
   Class:PLUS
   Group:CompilerCompiler
   License:  GPL
  -Version:  1.0.20071004
  -Release:  20071004
  +Version:  1.0.20071026
  +Release:  20071026
   
   #   list of sources
   Source0:  
ftp://ftp.openpkg.org/sources/CPY/VERSIONED/lemon/lemon-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/monotone/ monotone.patch

2007-10-26 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:   26-Oct-2007 11:19:24
  Branch: HEAD Handle: 2007102610192300

  Modified files:
openpkg-src/monotonemonotone.patch

  Log:
apply an upstream bugfix

  Summary:
RevisionChanges Path
1.9 +12 -0  openpkg-src/monotone/monotone.patch
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/monotone/monotone.patch
  
  $ cvs diff -u -r1.8 -r1.9 monotone.patch
  --- openpkg-src/monotone/monotone.patch   26 Oct 2007 07:42:05 -  
1.8
  +++ openpkg-src/monotone/monotone.patch   26 Oct 2007 09:19:23 -  
1.9
  @@ -0,0 +1,12 @@
  +Index: configure
  +--- configure.orig   2007-10-26 00:41:00 +0200
   configure2007-10-26 11:18:21 +0200
  +@@ -12100,7 +12100,7 @@
  +# automatically.
  +PCRE_LIBS="`pcre-config --libs | \
  +sed -e 's:-L */usr/lib/*::' -e 's:-R */usr/lib/*::' \
  +-   -e 's:-L */lib/*:: -e 's:-R */lib/*::'`"
  ++   -e 's:-L */lib/*::' -e 's:-R */lib/*::'`"
  +found_libpcre=yes
  +{ echo "$as_me:$LINENO: result: yes" >&5
  + echo "${ECHO_T}yes" >&6; }
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 09:45:18
  Branch: HEAD Handle: 2007102608451800

  Modified files:
openpkg-src/pwmdpwmd.patch pwmd.spec

  Log:
upgrading package: pwmd 1.2.4.0.3 -> 1.3.4.0.3

  Summary:
RevisionChanges Path
1.4 +3  -3  openpkg-src/pwmd/pwmd.patch
1.4 +3  -2  openpkg-src/pwmd/pwmd.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/pwmd/pwmd.patch
  
  $ cvs diff -u -r1.3 -r1.4 pwmd.patch
  --- openpkg-src/pwmd/pwmd.patch   14 Oct 2007 07:32:01 -  1.3
  +++ openpkg-src/pwmd/pwmd.patch   26 Oct 2007 07:45:18 -  1.4
  @@ -33,9 +33,9 @@
timeout = -1;

while ((opt = getopt(argc, argv, "T:N:D:EhvaP:t:p:s:Sd:")) != EOF) {
  -Index: pwmd-1.2/src/Makefile.am
   pwmd-1.2/src/Makefile.am.orig2007-10-11 02:25:30 +0200
  -+++ pwmd-1.2/src/Makefile.am 2007-10-14 09:30:25 +0200
  +Index: pwmd-1.3/src/Makefile.am
  +--- pwmd-1.3/src/Makefile.am.orig2007-10-11 02:25:30 +0200
   pwmd-1.3/src/Makefile.am 2007-10-14 09:30:25 +0200
   @@ -1,7 +1,7 @@
bin_PROGRAMS = pwmd
pwmd_SOURCES = pwmd.c pwmd.h xml.c xml.h pwmd_error.c pwmd_error.h 
commands.c \
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/pwmd/pwmd.spec
  
  $ cvs diff -u -r1.3 -r1.4 pwmd.spec
  --- openpkg-src/pwmd/pwmd.spec14 Oct 2007 07:32:01 -  1.3
  +++ openpkg-src/pwmd/pwmd.spec26 Oct 2007 07:45:18 -  1.4
  @@ -23,7 +23,7 @@
   ##
   
   #   package version
  -%define   V_pwmd 1.2
  +%define   V_pwmd 1.3
   %define   V_libpwmd  4.0.3
   
   #   package information
  @@ -37,7 +37,7 @@
   Group:System
   License:  GPL
   Version:  %{V_pwmd}.%{V_libpwmd}
  -Release:  20071014
  +Release:  20071026
   
   #   list of sources
   Source0:  http://switch.dl.sourceforge.net/bjk/pwmd-%{V_pwmd}.tar.gz
  @@ -98,6 +98,7 @@
 --with-xml-prefix=%{l_prefix} \
 --with-libassuan-prefix=%{l_prefix} \
 --with-gpg-error-prefix=%{l_prefix} \
  +  --disable-locking \
 --disable-nls
 %{l_make} %{l_mflags}
   ) || exit $?
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 09:44:35
  Branch: HEAD Handle: 2007102608443500

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

  Log:
upgrading package: gawk 3.1.5 -> 3.1.6

  Summary:
RevisionChanges Path
1.2 +0  -29 openpkg-src/gawk/gawk.patch
1.41+4  -4  openpkg-src/gawk/gawk.spec
  

  rm -f openpkg-src/gawk/gawk.patch <<'@@ .'
  Index: openpkg-src/gawk/gawk.patch
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/gawk/gawk.spec
  
  $ cvs diff -u -r1.40 -r1.41 gawk.spec
  --- openpkg-src/gawk/gawk.spec4 Sep 2007 08:26:56 -   1.40
  +++ openpkg-src/gawk/gawk.spec26 Oct 2007 07:44:35 -  1.41
  @@ -32,12 +32,11 @@
   Class:BASE
   Group:Language
   License:  GPL
  -Version:  3.1.5
  -Release:  20070904
  +Version:  3.1.6
  +Release:  20071026
   
   #   list of sources
   Source0:  ftp://ftp.gnu.org/gnu/gawk/gawk-%{version}.tar.gz
  -Patch0:   gawk.patch
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -66,13 +65,14 @@
   
   %prep
   %setup -q
  -%patch -p0
   
   %build
   CC="%{l_cc}" \
   CFLAGS="%{l_cflags -O}" \
   ./configure \
   --prefix=%{l_prefix} \
  +--mandir=%{l_prefix}/man \
  +--infodir=%{l_prefix}/info \
   --disable-nls
   %{l_make} %{l_mflags -O}
   
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 09:42:39
  Branch: HEAD Handle: 2007102608423800

  Modified files:
openpkg-src/tcpreplay   tcpreplay.spec

  Log:
upgrading package: tcpreplay 3.2.0 -> 3.2.1

  Summary:
RevisionChanges Path
1.48+3  -3  openpkg-src/tcpreplay/tcpreplay.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/tcpreplay/tcpreplay.spec
  
  $ cvs diff -u -r1.47 -r1.48 tcpreplay.spec
  --- openpkg-src/tcpreplay/tcpreplay.spec  27 Aug 2007 06:34:19 -  
1.47
  +++ openpkg-src/tcpreplay/tcpreplay.spec  26 Oct 2007 07:42:38 -  
1.48
  @@ -23,8 +23,8 @@
   ##
   
   #   package version
  -%define   V_opkg 3.2.0
  -%define   V_dist 3.2.0
  +%define   V_opkg 3.2.1
  +%define   V_dist 3.2.1
   
   #   package information
   Name: tcpreplay
  @@ -37,7 +37,7 @@
   Group:Capturing
   License:  BSD-style
   Version:  %{V_opkg}
  -Release:  20070827
  +Release:  20071026
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/sourceforge/tcpreplay/tcpreplay-%{V_dist}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/monotone/ monotone.patch monotone.patch.rse...

2007-10-26 Thread Ralf S. Engelschall
++"revision", "REVISION [ANCESTOR-REVISION]",
  ++"Shows summary information about revision(s)",
  ++"Shows summary information about a particular revision " ..
  ++"(or a range of revisions in case an ancestor revision is also 
specified). " ..
  ++"This is just a convenience wrapper command around \"mtn log 
--diffs\".",
  ++"command_revision"
  ++)
  ++alias_command(
  ++"revision",
  ++"rev"
  ++)
  ++function command_revision(revision, ancestor)
  ++if revision == nil then
  ++io.stderr:write("mtn: revision: ERROR: no revision specified\n")
  ++return
  ++end
  ++if ancestor == nil then
  ++ancestor = revision
  ++end
  ++mtn_automate("get_option", "branch") -- make sure we have a valid 
workspace
  ++execute("mtn", "log", "--diffs", "--no-graph", "--from", ancestor, 
"--to", revision)
  ++if rc ~= 0 then
  ++io.stderr:write("mtn: revision: ERROR: failed to execute\n")
  ++end
  ++end
  ++
  ++--  #endif
  ++
  + -- Netsync notifiers are tables containing 5 functions:
  + -- start, revision_received, cert_received, pubkey_received and end
  + -- Those functions take exactly the same arguments as the corresponding
  +===
  +Index: work.cc
  +--- work.cc  04389e4274f38d0b2bc866c6938d53bbda5e8a2f
   work.cc  6eefd2d6271215c56bf601ce08485a9f0cd88e25
   @@ -53,28 +53,44 @@ get_revision_path(bookkeeping_path & m_p
static void
get_revision_path(bookkeeping_path & m_path)
  @@ -538,7 +691,7 @@
  L(FL("inodeprints path is %s") % ip_path);
}

  -@@ -185,7 +201,11 @@ workspace::get_user_log_path(bookkeeping
  +@@ -205,7 +221,11 @@ workspace::get_user_log_path(bookkeeping
void
workspace::get_user_log_path(bookkeeping_path & ul_path)
{
  @@ -550,7 +703,7 @@
  L(FL("user log path is %s") % ul_path);
}

  -@@ -367,7 +387,11 @@ workspace::get_local_dump_path(bookkeepi
  +@@ -387,7 +407,11 @@ workspace::get_local_dump_path(bookkeepi
void
workspace::get_local_dump_path(bookkeeping_path & d_path)
{
  @@ -562,7 +715,7 @@
  L(FL("local dump path is %s") % d_path);
}

  -@@ -727,7 +751,11 @@ path_for_detached_nids()
  +@@ -747,7 +771,11 @@ path_for_detached_nids()
static inline bookkeeping_path
path_for_detached_nids()
{
  @@ -574,7 +727,7 @@
}

static inline bookkeeping_path
  -@@ -1542,9 +1570,15 @@ workspace::perform_pivot_root(file_path 
  +@@ -1483,9 +1511,15 @@ workspace::perform_pivot_root(file_path 
  N(is_dir_t(new_roster.get_node(new_root)),
F("proposed new root directory '%s' is not a directory") % new_root);
  {
  @@ -590,7 +743,8 @@
  }

  {
  -
  +===
  +Index: work_migration.cc
   --- work_migration.cc3d58c3332cd195309eacf5cc52d4e88ad66a6c81
   +++ work_migration.ccf044e25cc757899f97d413f3fe109a9bafe73553
   @@ -55,9 +55,18 @@ get_ws_format()
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/monotone/monotone.spec
  
  $ cvs diff -u -r1.21 -r1.22 monotone.spec
  --- openpkg-src/monotone/monotone.spec18 Sep 2007 10:59:18 -  
1.21
  +++ openpkg-src/monotone/monotone.spec26 Oct 2007 07:42:05 -  
1.22
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:SCM
   License:  GPL
  -Version:  0.36
  -Release:  20070918
  +Version:  0.37
  +Release:  20071026
   
   #   package options
   %option   with_rse  yes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 09:41:08
  Branch: HEAD Handle: 2007102608410800

  Modified files:
openpkg-src/sudosudo.spec

  Log:
upgrading package: sudo 1.6.9p6 -> 1.6.9p7

  Summary:
RevisionChanges Path
1.103   +2  -2  openpkg-src/sudo/sudo.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/sudo/sudo.spec
  
  $ cvs diff -u -r1.102 -r1.103 sudo.spec
  --- openpkg-src/sudo/sudo.spec10 Oct 2007 08:52:18 -  1.102
  +++ openpkg-src/sudo/sudo.spec26 Oct 2007 07:41:08 -  1.103
  @@ -32,8 +32,8 @@
   Class:BASE
   Group:ShellUtils
   License:  BSD
  -Version:  1.6.9p6
  -Release:  20071010
  +Version:  1.6.9p7
  +Release:  20071026
   
   #   package options
   %option   with_fslyes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 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:   26-Oct-2007 09:40:57
  Branch: HEAD Handle: 2007102608405700

  Modified files:
openpkg-src/fontconfig  fontconfig.spec

  Log:
upgrading package: fontconfig 2.4.2 -> 2.4.91

  Summary:
RevisionChanges Path
1.45+2  -2  openpkg-src/fontconfig/fontconfig.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/fontconfig/fontconfig.spec
  
  $ cvs diff -u -r1.44 -r1.45 fontconfig.spec
  --- openpkg-src/fontconfig/fontconfig.spec31 Jul 2007 12:56:09 -  
1.44
  +++ openpkg-src/fontconfig/fontconfig.spec26 Oct 2007 07:40:57 -  
1.45
  @@ -32,8 +32,8 @@
   Class:BASE
   Group:XWindow
   License:  GPL
  -Version:  2.4.2
  -Release:  20070731
  +Version:  2.4.91
  +Release:  20071026
   
   #   list of sources
   Source0:  http://fontconfig.org/release/fontconfig-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-26 Thread Ralf S. Engelschall
  25 Oct 2007 06:21:11 -  1.10
  +++ openpkg-src/ctalk/ctalk.spec  26 Oct 2007 07:40:08 -  1.11
  @@ -23,7 +23,7 @@
   ##
   
   #   package versions
  -%define   V_ctalk 0.0.14a
  +%define   V_ctalk 0.0.15a
   %define   V_ctpp  1.0.20
   
   #   package information
  @@ -37,7 +37,7 @@
   Group:Language
   License:  GPL
   Version:  %{V_ctalk}
  -Release:  20071025
  +Release:  20071026
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/ctalk-lang/ctalk-%{V_ctalk}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org