[CVS] OpenPKG: openpkg-src/crossroads/ crossroads.patch crossroads.spe...

2006-03-15 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:   15-Mar-2006 21:52:38
  Branch: HEAD Handle: 2006031520523700

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

  Log:
upgrading package: crossroads 0.18 - 0.29

  Summary:
RevisionChanges Path
1.3 +2  -14 openpkg-src/crossroads/crossroads.patch
1.9 +6  -3  openpkg-src/crossroads/crossroads.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/crossroads/crossroads.patch
  
  $ cvs diff -u -r1.2 -r1.3 crossroads.patch
  --- openpkg-src/crossroads/crossroads.patch   18 Nov 2005 07:21:03 -  
1.2
  +++ openpkg-src/crossroads/crossroads.patch   15 Mar 2006 20:52:37 -  
1.3
  @@ -1,18 +1,6 @@
  -Index: src/Makefile
   src/Makefile.orig2005-11-17 19:11:27 +0100
  -+++ src/Makefile 2005-11-18 08:20:07 +0100
  -@@ -55,7 +55,7 @@
  - $(CC) $(DEFS) -c -g -Wall $
  - 
  - crossroads: libcrossroads.a
  --$(CC) -g -L. -lcrossroads $(LIBS) -o $@
  -+$(CC) -g -L. -lcrossroads $(LDFLAGS) $(LIBS) -o $@
  - 
  - libcrossroads.a: $(OBJ)
  - ar rs libcrossroads.a $(OBJ)
   Index: src/crossroads.h
   src/crossroads.h.orig2005-11-17 19:11:27 +0100
  -+++ src/crossroads.h 2005-11-18 08:19:44 +0100
  +--- src/crossroads.h.orig2006-03-15 12:24:11 +0100
   src/crossroads.h 2006-03-15 21:48:27 +0100
   @@ -4,9 +4,7 @@
#include errno.h
#include fcntl.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/crossroads/crossroads.spec
  
  $ cvs diff -u -r1.8 -r1.9 crossroads.spec
  --- openpkg-src/crossroads/crossroads.spec1 Jan 2006 13:12:45 -   
1.8
  +++ openpkg-src/crossroads/crossroads.spec15 Mar 2006 20:52:37 -  
1.9
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Network
   License:  Open Source
  -Version:  0.18
  -Release:  20051129
  +Version:  0.29
  +Release:  20060315
   
   #   package options
   %option   with_fsl  yes
  @@ -48,7 +48,7 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg = 20040130, bison, flex, make
  +BuildPreReq:  OpenPKG, openpkg = 20040130, bison, flex, make, perl
   PreReq:   OpenPKG, openpkg = 20040130
   %if %{with_fsl} == yes
   BuildPreReq:  fsl = 1.2.0
  @@ -79,6 +79,9 @@
   %patch -p0
   
   %build
  +%{l_shtool} subst \
  +-e 's;/usr/bin/perl;%{l_prefix}/bin/perl;' \
  +tools/*
   %{l_make} %{l_mflags} local \
   DEFAULT_CONF=%{l_prefix}/etc/crossroads/crossroads.conf \
   CC=%{l_cc} %{l_cflags -O} \
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-03-15 Thread Ralf S. Engelschall
,   -1,-1,-1, -1,  -1,  -1,  
Qt_Name  }, // Qt_Init
  -+{ -1, Qt_CS,-1,-1,-1, -1,  -1,  -1,  
Qt_CS}, // Qt_Ws1
  -+{ Qt_Ws2,-1,Qt_Done,  Qt_Ws2,   Qt_Ws2,Qt_Ws2, Qt_More, 
   Qt_More,-1}, // Qt_CS
  -+{ -1, -1,Qt_Done,  -1,-1, -1,  Qt_More,Qt_More, 
   -1}, //Qt_Ws2
  -+{ -1, Qt_Ws1,   -1,-1,-1, -1,  -1,  -1,  
Qt_Name  }, // More (same as Qt_Init)
  -+{ Qt_Ws2,-1,Qt_Done,  Qt_Ws2,   Qt_Ws2,Qt_Ws2, Qt_More, 
   Qt_More,-1}  // Name (same as Qt_CS)
  - };
  - signed char state;
  - signed char input;
  - 
  - if ( d-parseStack==0 || d-parseStack-isEmpty() ) {
  --state = Init;
  -+state = Qt_Init;
  - } else {
  - state = d-parseStack-pop().state;
  - #if defined(QT_QXML_DEBUG)
  -@@ -6053,7 +6053,7 @@
  - 
  - for (;;) {
  - switch ( state ) {
  --case Done:
  -+case Qt_Done:
  - return TRUE;
  - case -1:
  - // Error
  -@@ -6066,59 +6066,59 @@
  - return FALSE;
  - }
  - if( is_S(c) ) {
  --input = InpWs;
  -+input = Qt_InpWs;
  - } else if ( c.unicode() == '(' ) {
  --input = InpOp;
  -+input = Qt_InpOp;
  - } else if ( c.unicode() == ')' ) {
  --input = InpCp;
  -+input = Qt_InpCp;
  - } else if ( c.unicode() == '?' ) {
  --input = InpQm;
  -+input = Qt_InpQm;
  - } else if ( c.unicode() == '*' ) {
  --input = InpAst;
  -+input = Qt_InpAst;
  - } else if ( c.unicode() == '+' ) {
  --input = InpPlus;
  -+input = Qt_InpPlus;
  - } else if ( c.unicode() == '|' ) {
  --input = InpPipe;
  -+input = Qt_InpPipe;
  - } else if ( c.unicode() == ',' ) {
  --input = InpComm;
  -+input = Qt_InpComm;
  - } else {
  --input = InpUnknown;
  -+input = Qt_InpUnknown;
  - }
  - state = table[state][input];
  - 
  - switch ( state ) {
  --case Ws1:
  -+case Qt_Ws1:
  - if ( !next_eat_ws() ) {
  - parseFailed( QXmlSimpleReader::parseChoiceSeq, state );
  - return FALSE;
  - }
  - break;
  --case CS:
  -+case Qt_CS:
  - if ( !parseChoiceSeq() ) {
  - parseFailed( QXmlSimpleReader::parseChoiceSeq, state );
  - return FALSE;
  - }
  - break;
  --case Ws2:
  -+case Qt_Ws2:
  - if ( !next_eat_ws() ) {
  - parseFailed( QXmlSimpleReader::parseChoiceSeq, state );
  - return FALSE;
  - }
  - break;
  --case More:
  -+case Qt_More:
  - if ( !next_eat_ws() ) {
  - parseFailed( QXmlSimpleReader::parseChoiceSeq, state );
  - return FALSE;
  - }
  - break;
  --case Name:
  -+case Qt_Name:
  - d-parseName_useRef = FALSE;
  - if ( !parseName() ) {
  - parseFailed( QXmlSimpleReader::parseChoiceSeq, state );
  - return FALSE;
  - }
  - break;
  --case Done:
  -+case Qt_Done:
  - next();
  - break;
  - }
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/qt/qt.spec
  
  $ cvs diff -u -r1.124 -r1.125 qt.spec
  --- openpkg-src/qt/qt.spec1 Jan 2006 13:21:03 -   1.124
  +++ openpkg-src/qt/qt.spec15 Mar 2006 21:06:50 -  1.125
  @@ -32,8 +32,8 @@
   Class:PLUS
   Group:XWindow
   License:  GPL
  -Version:  3.3.5
  -Release:  20051014
  +Version:  3.3.6
  +Release:  20060315
   
   #   package options
   %option   with_threads  yes
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-03-15 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:   15-Mar-2006 22:16:12
  Branch: HEAD Handle: 2006031521161100

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

  Log:
modifying package: urpmi-4.8.13 20060312 - 20060315

  Summary:
RevisionChanges Path
1.5 +20 -11 openpkg-src/urpmi/urpmi.patch
1.7 +2  -2  openpkg-src/urpmi/urpmi.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/urpmi/urpmi.patch
  
  $ cvs diff -u -r1.4 -r1.5 urpmi.patch
  --- openpkg-src/urpmi/urpmi.patch 8 Mar 2006 20:11:54 -   1.4
  +++ openpkg-src/urpmi/urpmi.patch 15 Mar 2006 21:16:11 -  1.5
  @@ -1,6 +1,6 @@
  -Index: URPM-1.39/Makefile.PL
   URPM-1.39/Makefile.PL.orig   2006-03-07 11:29:12 +0100
  -+++ URPM-1.39/Makefile.PL2006-03-08 21:09:58 +0100
  +Index: URPM-1.40/Makefile.PL
  +--- URPM-1.40/Makefile.PL.orig   2006-03-13 17:53:51 +0100
   URPM-1.40/Makefile.PL2006-03-15 22:07:24 +0100
   @@ -3,28 +3,8 @@

# where to find the rpm utility
  @@ -32,12 +32,21 @@

sub MY::postamble {
**MM**;
  -@@ -51,10 +31,10 @@
  - PREREQ_PM   = {
  - 'MDV::Packdrakeng' = '1.00',
  +@@ -46,10 +26,7 @@
  + **MM**
  + }
  + 
  +-my $ccflags = '-Wall -fno-strict-aliasing';
  +-if ($version =~ /^4\.(4\.[5-9]$|4\.\d\d|[5-9]\.|\d\d)/) {
  +-$ccflags .= ' -DRPM_CALLBACK_LONGLONG';
  +-}
  ++my $ccflags = '-fno-strict-aliasing';
  + 
  + WriteMakefile(
  + NAME= 'URPM',
  +@@ -58,8 +35,8 @@
},
  --CCFLAGS = '-Wall -fno-strict-aliasing',
  -+CCFLAGS = '-fno-strict-aliasing',
  + CCFLAGS = $ccflags,
VERSION_FROM= 'URPM.pm',
   -LIBS= [ '-lrpm -lrpmio -lrpmdb -lrpmbuild -lpopt -lz' ],
   -INC = '-I/usr/include/rpm',
  @@ -46,9 +55,9 @@
dist= { COMPRESS = bzip2, SUFFIX = .bz2 },
realclean   = { FILES = t/RPMS/noarch/* },
);
  -Index: URPM-1.39/URPM.xs
   URPM-1.39/URPM.xs.orig   2006-03-07 11:21:12 +0100
  -+++ URPM-1.39/URPM.xs2006-03-08 20:52:29 +0100
  +Index: URPM-1.40/URPM.xs
  +--- URPM-1.40/URPM.xs.orig   2006-03-13 17:37:43 +0100
   URPM-1.40/URPM.xs2006-03-15 22:07:16 +0100
   @@ -22,6 +22,7 @@
#include fcntl.h
#include unistd.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/urpmi/urpmi.spec
  
  $ cvs diff -u -r1.6 -r1.7 urpmi.spec
  --- openpkg-src/urpmi/urpmi.spec  12 Mar 2006 08:57:42 -  1.6
  +++ openpkg-src/urpmi/urpmi.spec  15 Mar 2006 21:16:11 -  1.7
  @@ -26,7 +26,7 @@
   
   #   package version
   %define   V_urpmi   4.8.13
  -%define   V_urpm1.39
  +%define   V_urpm1.40
   %define   V_mdv_packdrakeng 1.01
   %define   V_mdv_distribconf 1.01
   
  @@ -41,7 +41,7 @@
   Group:Bootstrapping
   License:  GPL
   Version:  %{V_urpmi}
  -Release:  20060312
  +Release:  20060315
   
   #   list of sources
   Source0:  
http://www.cpan.org/authors/id/R/RG/RGARCIA/urpmi-%{V_urpmi}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-03-15 Thread Ralf S. Engelschall
://www.graphicsmagick.org/libpng/beta/patches/INFO.txt
  -
  - [Problems discovered and fixed by] Chris Evans
  - 
  - 1) Remotely exploitable stack-based buffer overrun in png_handle_tRNS 
(pngrutil.c)
  - 2) Dangerous code in png_handle_sBIT (pngrutil.c)
  -CAN-2004-0597
  -
  - 3) Possible NULL-pointer crash in png_handle_iCCP (pngrutil.c)
  -this flaw is duplicated in multiple other locations.
  -CAN-2004-0598
  -
  - 4) Theoretical integer overflow in allocation in png_handle_sPLT 
(pngrutil.c)
  - 5) Integer overflow in png_read_png (pngread.c)
  - 6) Integer overflows during progressive reading.
  - 7) Other flaws.  [integer overflows]
  -CAN-2004-0599
  -
  
-http://www.graphicsmagick.org/libpng/beta/patches/libpng-patch03-trns-chunk-overflow.txt
  -Use to patch libpng-1.0.9 through 1.2.5
  -This fixes the most dangerous of the newly reported vulnerabilities
  -
  -Index: src/3rdparty/libpng/png.h
  -diff -Nau src/3rdparty/libpng/png.h.orig src/3rdparty/libpng/png.h
   src/3rdparty/libpng/png.h.orig   2004-08-11 16:31:06 +0200
  -+++ src/3rdparty/libpng/png.h2004-08-11 16:44:14 +0200
  -@@ -839,6 +839,9 @@
  - /* PNG_MAX_UINT is deprecated; use PNG_UINT_31_MAX instead. */
  - #define PNG_MAX_UINT PNG_UINT_31_MAX
  - 
  -+/* Constraints on width, height, (2 ^ 24) - 1*/
  -+#define PNG_MAX_DIMENSION 16777215
  -+
  - /* These describe the color_type field in png_info. */
  - /* color type masks */
  - #define PNG_COLOR_MASK_PALETTE1
   Index: src/3rdparty/libpng/pngrutil.c
  -diff -Nau src/3rdparty/libpng/pngrutil.c.orig src/3rdparty/libpng/pngrutil.c
   src/3rdparty/libpng/pngrutil.c.orig  2004-08-11 16:42:31 +0200
  -+++ src/3rdparty/libpng/pngrutil.c   2004-08-11 16:45:38 +0200
  +--- src/3rdparty/libpng/pngrutil.c.orig  2004-09-03 20:34:00 +0200
   src/3rdparty/libpng/pngrutil.c   2006-03-15 21:01:03 +0100
   @@ -355,7 +355,11 @@
   png_crc_finish(png_ptr, 0);

  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/kde-qt/kde-qt.spec
  
  $ cvs diff -u -r1.23 -r1.24 kde-qt.spec
  --- openpkg-src/kde-qt/kde-qt.spec1 Jan 2006 13:15:11 -   1.23
  +++ openpkg-src/kde-qt/kde-qt.spec15 Mar 2006 21:16:44 -  1.24
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:KDE
   License:  GPL
  -Version:  3.3.5
  -Release:  20051014
  +Version:  3.3.6
  +Release:  20060315
   
   #   list of sources
   Source0:  
ftp://ftp.trolltech.com/pub/qt/source/qt-x11-free-%{version}.tar.bz2
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/spamassassin/ rc.spamassassin spamassassin....

2006-03-15 Thread Bill Campbell
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Bill Campbell
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   16-Mar-2006 00:07:42
  Branch: HEAD Handle: 2006031523073901

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

  Log:
Restart after daily log processing

  Summary:
RevisionChanges Path
1.18+1  -1  openpkg-src/spamassassin/rc.spamassassin
1.70+1  -1  openpkg-src/spamassassin/spamassassin.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/spamassassin/rc.spamassassin
  
  $ cvs diff -u -r1.17 -r1.18 rc.spamassassin
  --- openpkg-src/spamassassin/rc.spamassassin  13 Mar 2006 19:51:40 -  
1.17
  +++ openpkg-src/spamassassin/rc.spamassassin  15 Mar 2006 23:07:39 -  
1.18
  @@ -61,6 +61,6 @@
   -n ${spamassassin_log_numfiles} -s ${spamassassin_log_minsize} -d \
   -z ${spamassassin_log_complevel} -o @l_rusr@ -g @l_rgrp@ -m 644 \
   -P ${spamassassin_log_prolog} \
  --E ${spamassassin_log_epilog} \
  +-E ${spamassassin_log_epilog}; rc spamassassin restart \
   $spamassassin_logfile
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/spamassassin/spamassassin.spec
  
  $ cvs diff -u -r1.69 -r1.70 spamassassin.spec
  --- openpkg-src/spamassassin/spamassassin.spec13 Mar 2006 19:51:40 
-  1.69
  +++ openpkg-src/spamassassin/spamassassin.spec15 Mar 2006 23:07:40 
-  1.70
  @@ -38,7 +38,7 @@
   Group:Mail
   License:  ASF
   Version:  %{V_here}
  -Release:  20060313
  +Release:  20060316
   
   #   package options
   %option   with_fsl  yes
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-03-15 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:   16-Mar-2006 08:02:19
  Branch: HEAD Handle: 2006031607021900

  Modified files:
openpkg-src/winewine.spec

  Log:
upgrading package: wine 0.9.9 - 0.9.10

  Summary:
RevisionChanges Path
1.52+2  -2  openpkg-src/wine/wine.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/wine/wine.spec
  
  $ cvs diff -u -r1.51 -r1.52 wine.spec
  --- openpkg-src/wine/wine.spec4 Mar 2006 09:05:02 -   1.51
  +++ openpkg-src/wine/wine.spec16 Mar 2006 07:02:19 -  1.52
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:XWindow
   License:  LGPL
  -Version:  0.9.9
  -Release:  20060304
  +Version:  0.9.10
  +Release:  20060316
   
   #   list of sources
   Source0:  
http://ibiblio.org/pub/linux/system/emulators/wine/wine-%{version}.tar.bz2
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-03-15 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:   16-Mar-2006 08:05:51
  Branch: HEAD Handle: 2006031607055000

  Modified files:
openpkg-src/perl-gfxperl-gfx.spec

  Log:
modifying package: perl-gfx-5.8.8 20060310 - 20060316

  Summary:
RevisionChanges Path
1.49+2  -3  openpkg-src/perl-gfx/perl-gfx.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-gfx/perl-gfx.spec
  
  $ cvs diff -u -r1.48 -r1.49 perl-gfx.spec
  --- openpkg-src/perl-gfx/perl-gfx.spec10 Mar 2006 18:44:58 -  
1.48
  +++ openpkg-src/perl-gfx/perl-gfx.spec16 Mar 2006 07:05:50 -  
1.49
  @@ -24,7 +24,7 @@
   
   #   versions of individual parts
   %define   V_perl  5.8.8
  -%define   V_image_info1.18
  +%define   V_image_info1.20
   %define   V_image_size2.992
   %define   V_ps_simple 0.07
   
  @@ -39,7 +39,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20060310
  +Release:  20060316
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Image/Image-Info-%{V_image_info}.tar.gz
  @@ -65,7 +65,6 @@
   
   %track
   prog perl-gfx:Image-Info = {
  -comment   = rse: 1.19: broken Makefile.PL/Build.PL
   version   = %{V_image_info}
   url   = http://www.cpan.org/modules/by-module/Image/
   regex = Image-Info-(__VER__)\.tar\.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-03-15 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:   16-Mar-2006 08:06:58
  Branch: HEAD Handle: 2006031607065700

  Modified files:
openpkg-src/valgrindvalgrind.spec

  Log:
upgrading package: valgrind 3.1.0 - 3.1.1

  Summary:
RevisionChanges Path
1.31+2  -2  openpkg-src/valgrind/valgrind.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/valgrind/valgrind.spec
  
  $ cvs diff -u -r1.30 -r1.31 valgrind.spec
  --- openpkg-src/valgrind/valgrind.spec1 Jan 2006 13:23:42 -   
1.30
  +++ openpkg-src/valgrind/valgrind.spec16 Mar 2006 07:06:57 -  
1.31
  @@ -34,8 +34,8 @@
   Class:JUNK
   Group:Development
   License:  Development
  -Version:  3.1.0
  -Release:  20051126
  +Version:  3.1.1
  +Release:  20060316
   
   #   list of sources
   Source0:  http://www.valgrind.org/downloads/valgrind-%{version}.tar.bz2
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-03-15 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:   16-Mar-2006 08:07:11
  Branch: HEAD Handle: 2006031607071100

  Modified files:
openpkg-src/cairo   cairo.spec

  Log:
upgrading package: cairo 1.0.2 - 1.0.4

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

  patch -p0 '@@ .'
  Index: openpkg-src/cairo/cairo.spec
  
  $ cvs diff -u -r1.17 -r1.18 cairo.spec
  --- openpkg-src/cairo/cairo.spec  1 Jan 2006 13:12:29 -   1.17
  +++ openpkg-src/cairo/cairo.spec  16 Mar 2006 07:07:11 -  1.18
  @@ -32,8 +32,8 @@
   Class:PLUS
   Group:XWindow
   License:  MIT-style
  -Version:  1.0.2
  -Release:  20051005
  +Version:  1.0.4
  +Release:  20060316
   
   #   package options
   %option   with_pdf   yes
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-03-15 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:   16-Mar-2006 08:07:28
  Branch: HEAD Handle: 2006031607072700

  Modified files:
openpkg-src/vim vim.spec

  Log:
upgrading package: vim 6.4.8 - 6.4.9

  Summary:
RevisionChanges Path
1.403   +3  -2  openpkg-src/vim/vim.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/vim/vim.spec
  
  $ cvs diff -u -r1.402 -r1.403 vim.spec
  --- openpkg-src/vim/vim.spec  26 Feb 2006 08:13:04 -  1.402
  +++ openpkg-src/vim/vim.spec  16 Mar 2006 07:07:27 -  1.403
  @@ -25,7 +25,7 @@
   #   package versions
   %define   V_vl  6.4
   %define   V_vs  64
  -%define   V_pl  8
  +%define   V_pl  9
   
   #   package information
   Name: vim
  @@ -38,7 +38,7 @@
   Group:Editor
   License:  Charityware
   Version:  %{V_vl}.%{V_pl}
  -Release:  20060226
  +Release:  20060316
   
   #   package options
   %option   with_x11no
  @@ -64,6 +64,7 @@
   Patch6:   ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.006
   Patch7:   ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.007
   Patch8:   ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.008
  +Patch9:   ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.009
   
   #   build information
   Prefix:   %{l_prefix}
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-03-15 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:   16-Mar-2006 08:11:09
  Branch: HEAD Handle: 2006031607110900

  Modified files:
openpkg-src/honeyd  honeyd.spec

  Log:
fix tracking

  Summary:
RevisionChanges Path
1.60+2  -2  openpkg-src/honeyd/honeyd.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/honeyd/honeyd.spec
  
  $ cvs diff -u -r1.59 -r1.60 honeyd.spec
  --- openpkg-src/honeyd/honeyd.spec10 Mar 2006 14:59:51 -  1.59
  +++ openpkg-src/honeyd/honeyd.spec16 Mar 2006 07:11:09 -  1.60
  @@ -37,7 +37,7 @@
   Group:Security
   License:  BSD
   Version:  %{V_honeyd}
  -Release:  20060310
  +Release:  20060316
   
   #   package options
   %option   with_fsl  yes
  @@ -103,7 +103,7 @@
   prog honeyd:libdnsres = {
   version   = %{V_libdnsres}
   url   = http://www.monkey.org/~provos/libdnsres/
  -regex = libdnres-(__VER__)\.tar\.gz
  +regex = libdnsres-(__VER__)\.tar\.gz
   }
   
   %prep
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org