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

2007-08-14 Thread Christoph Schug
-+  }
  - }
  - 
  - /*
  -Index: src/where.c
   src/where.c  2007/06/11 12:56:15 1.253
  -+++ src/where.c  2007/07/30 14:40:48 1.254
  -@@ -383,10 +383,22 @@
  - /*
  - ** Commute a comparision operator.  Expressions of the form "X op Y"
  - ** are converted into "Y op X".
  -+**
  -+** If a collation sequence is associated with either the left or right
  -+** side of the comparison, it remains associated with the same side after
  -+** the commutation. So "Y collate NOCASE op X" becomes 
  -+** "X collate NOCASE op Y". This is because any collation sequence on
  -+** the left hand side of a comparison overrides any collation sequence 
  -+** attached to the right. For the same reason the EP_ExpCollate flag
  -+** is not commuted.
  - */
  - static void exprCommute(Expr *pExpr){
  -+  u16 expRight = (pExpr->pRight->flags & EP_ExpCollate);
  -+  u16 expLeft = (pExpr->pLeft->flags & EP_ExpCollate);
  -   assert( allowedOp(pExpr->op) && pExpr->op!=TK_IN );
  -   SWAP(CollSeq*,pExpr->pRight->pColl,pExpr->pLeft->pColl);
  -+  pExpr->pRight->flags = (pExpr->pRight->flags & ~EP_ExpCollate) | expLeft;
  -+  pExpr->pLeft->flags = (pExpr->pLeft->flags & ~EP_ExpCollate) | expRight;
  -   SWAP(Expr*,pExpr->pRight,pExpr->pLeft);
  -   if( pExpr->op>=TK_GT ){
  - assert( TK_LT==TK_GT+2 );
  -Index: src/shell.c
   src/shell.c  2007/07/30 18:24:39 1.165
  -+++ src/shell.c  2007/07/30 20:41:53 1.166
  -@@ -1779,7 +1779,7 @@
  -   in = fopen(sqliterc,"rb");
  -   if( in ){
  - if( stdin_is_interactive ){
  --  printf("Loading resources from %s\n",sqliterc);
  -+  printf("-- Loading resources from %s\n",sqliterc);
  - }
  - process_input(p,in);
  - fclose(in);
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/sqlite/sqlite.spec
  
  $ cvs diff -u -r1.149 -r1.150 sqlite.spec
  --- openpkg-src/sqlite/sqlite.spec4 Aug 2007 18:19:54 -   1.149
  +++ openpkg-src/sqlite/sqlite.spec14 Aug 2007 19:28:56 -  1.150
  @@ -23,7 +23,7 @@
   ##
   
   #   package version
  -%define   V_sqlite   3.4.1
  +%define   V_sqlite   3.4.2
   %define   V_odbc 0.75
   
   #   package information
  @@ -37,7 +37,7 @@
   Group:Database
   License:  PD
   Version:  %{V_sqlite}
  -Release:  20070804
  +Release:  20070814
   
   #   package options
   %option   with_utf8no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-08-14 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:   14-Aug-2007 20:50:01
  Branch: HEAD Handle: 200708141950

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

  Log:
upgrading package: urpmi 4.9.28 -> 4.10.4

  Summary:
RevisionChanges Path
1.54+12 -12 openpkg-src/urpmi/urpmi.patch
1.74+7  -7  openpkg-src/urpmi/urpmi.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/urpmi/urpmi.patch
  
  $ cvs diff -u -r1.53 -r1.54 urpmi.patch
  --- openpkg-src/urpmi/urpmi.patch 4 Aug 2007 18:19:27 -   1.53
  +++ openpkg-src/urpmi/urpmi.patch 14 Aug 2007 18:50:00 -  1.54
  @@ -1,6 +1,6 @@
  -Index: URPM-1.68/Makefile.PL
   URPM-1.68/Makefile.PL.orig   2007-06-19 16:24:46 +0200
  -+++ URPM-1.68/Makefile.PL2007-06-22 19:56:56 +0200
  +Index: URPM-1.75/Makefile.PL
  +--- URPM-1.75/Makefile.PL.orig   2007-06-19 16:24:46 +0200
   URPM-1.75/Makefile.PL2007-06-22 19:56:56 +0200
   @@ -1,58 +1,7 @@
use strict;
use ExtUtils::MakeMaker;
  @@ -72,9 +72,9 @@
dist=> { COMPRESS => "bzip2", SUFFIX => ".bz2" },
realclean   => { FILES => "t/RPMS/noarch/*" },
);
  -Index: URPM-1.68/URPM.xs
   URPM-1.68/URPM.xs.orig   2007-06-19 16:44:27 +0200
  -+++ URPM-1.68/URPM.xs2007-06-22 19:43:44 +0200
  +Index: URPM-1.75/URPM.xs
  +--- URPM-1.75/URPM.xs.orig   2007-06-19 16:44:27 +0200
   URPM-1.75/URPM.xs2007-06-22 19:43:44 +0200
   @@ -22,7 +22,7 @@
#include 
#include 
  @@ -131,9 +131,9 @@
#include 

#define FILENAME_TAG 100
  -Index: urpmi-4.9.28/Makefile.PL
   urpmi-4.9.28/Makefile.PL.orig2007-04-24 21:34:36 +0200
  -+++ urpmi-4.9.28/Makefile.PL 2007-06-22 19:43:44 +0200
  +Index: urpmi-4.10.4/Makefile.PL
  +--- urpmi-4.10.4/Makefile.PL.orig2007-04-24 21:34:36 +0200
   urpmi-4.10.4/Makefile.PL 2007-06-22 19:43:44 +0200
   @@ -60,6 +60,7 @@
my $po = $with_po ? ' installpo' : '';
my $gui = $with_gui ? ' installgurpmi2' : '';
  @@ -168,9 +168,9 @@
},
EXE_FILES   => [ @bin_scripts, @sbin_scripts ],
PMLIBDIRS   => [ qw(urpm) ],
  -Index: urpmi-4.9.28/urpm/sys.pm
   urpmi-4.9.28/urpm/sys.pm.orig2007-04-24 21:22:25 +0200
  -+++ urpmi-4.9.28/urpm/sys.pm 2007-06-22 19:43:44 +0200
  +Index: urpmi-4.10.4/urpm/sys.pm
  +--- urpmi-4.10.4/urpm/sys.pm.orig2007-04-24 21:22:25 +0200
   urpmi-4.10.4/urpm/sys.pm 2007-06-22 19:43:44 +0200
   @@ -94,7 +94,7 @@
}

  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/urpmi/urpmi.spec
  
  $ cvs diff -u -r1.73 -r1.74 urpmi.spec
  --- openpkg-src/urpmi/urpmi.spec  4 Aug 2007 18:19:27 -   1.73
  +++ openpkg-src/urpmi/urpmi.spec  14 Aug 2007 18:50:00 -  1.74
  @@ -23,14 +23,14 @@
   ##
   
   #   package version
  -%define   V_urpmi   4.9.28
  -%define   V_urpmi_rpm   4.9.28-1mdv2008.0
  -%define   V_urpm1.68
  -%define   V_urpm_rpm1.68-1mdv2008.0
  +%define   V_urpmi   4.10.4
  +%define   V_urpmi_rpm   4.10.4-2mdv2008.0
  +%define   V_urpm1.75
  +%define   V_urpm_rpm1.75-1mdv2008.0
   %define   V_mdv_distribconf 3.10
   %define   V_mdv_distribconf_rpm 3.10-1mdv2008.0
  -%define   V_mdv_packdrakeng 1.12
  -%define   V_mdv_packdrakeng_rpm 1.12-1mdv2008.0
  +%define   V_mdv_packdrakeng 1.13
  +%define   V_mdv_packdrakeng_rpm 1.13-1mdv2008.0
   %define   V_rpmtools5.3.2
   %define   V_rpmtools_rpm5.3.2-1mdv2008.0
   
  @@ -45,7 +45,7 @@
   Group:Bootstrapping
   License:  GPL
   Version:  %{V_urpmi}
  -Release:  20070804
  +Release:  20070814
   
   #   package options
   %option   with_wget  no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-08-14 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:   14-Aug-2007 20:40:56
  Branch: HEAD Handle: 2007081419405600

  Modified files:
openpkg-src/pdflib  pdflib.spec

  Log:
upgrading package: pdflib 7.0.1 -> 7.0.2

  Summary:
RevisionChanges Path
1.56+3  -3  openpkg-src/pdflib/pdflib.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/pdflib/pdflib.spec
  
  $ cvs diff -u -r1.55 -r1.56 pdflib.spec
  --- openpkg-src/pdflib/pdflib.spec14 Mar 2007 18:39:22 -  1.55
  +++ openpkg-src/pdflib/pdflib.spec14 Aug 2007 18:40:56 -  1.56
  @@ -23,8 +23,8 @@
   ##
   
   #   package version
  -%define   V_long 7.0.1
  -%define   V_comp 701
  +%define   V_long 7.0.2
  +%define   V_comp 702
   
   #   package information
   Name: pdflib
  @@ -37,7 +37,7 @@
   Group:Postscript
   License:  PDFlib
   Version:  %{V_long}
  -Release:  20070314
  +Release:  20070814
   
   #   list of sources
   Source0:  
http://www.pdflib.com/binaries/PDFlib/%{V_comp}/PDFlib-Lite-%{V_long}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-08-14 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:   14-Aug-2007 20:40:50
  Branch: HEAD Handle: 2007081419405000

  Modified files:
openpkg-src/crm114  crm114.spec

  Log:
upgrading package: crm114 20070731 -> 20070810

  Summary:
RevisionChanges Path
1.56+4  -4  openpkg-src/crm114/crm114.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/crm114/crm114.spec
  
  $ cvs diff -u -r1.55 -r1.56 crm114.spec
  --- openpkg-src/crm114/crm114.spec4 Aug 2007 18:16:00 -   1.55
  +++ openpkg-src/crm114/crm114.spec14 Aug 2007 18:40:50 -  1.56
  @@ -23,9 +23,9 @@
   ##
   
   #   package version
  -%define   V_dist 20070731
  -%define   V_opkg 20070731
  -%define   V_name BlameTheInterns
  +%define   V_dist 20070810
  +%define   V_opkg 20070810
  +%define   V_name BlameTheSegfault
   
   #   package information
   Name: crm114
  @@ -38,7 +38,7 @@
   Group:Mail
   License:  GPL
   Version:  %{V_opkg}
  -Release:  20070804
  +Release:  20070814
   
   #   list of sources
   Source0:  
http://crm114.sourceforge.net/tarballs/crm114-%{V_dist}-%{V_name}.src.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-08-14 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:   14-Aug-2007 20:37:57
  Branch: HEAD Handle: 2007081419375600

  Modified files:
openpkg-src/vim vim.spec

  Log:
upgrading package: vim 7.1.68 -> 7.1.69

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

  patch -p0 <<'@@ .'
  Index: openpkg-src/vim/vim.spec
  
  $ cvs diff -u -r1.527 -r1.528 vim.spec
  --- openpkg-src/vim/vim.spec  13 Aug 2007 15:58:01 -  1.527
  +++ openpkg-src/vim/vim.spec  14 Aug 2007 18:37:56 -  1.528
  @@ -25,7 +25,7 @@
   #   package versions
   %define   V_vl  7.1
   %define   V_vs  71
  -%define   V_pl  68
  +%define   V_pl  69
   
   #   package information
   Name: vim
  @@ -38,7 +38,7 @@
   Group:Editor
   License:  Charityware
   Version:  %{V_vl}.%{V_pl}
  -Release:  20070813
  +Release:  20070814
   
   #   package options
   %option   with_x11no
  @@ -122,6 +122,7 @@
   Patch66:  ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.066
   Patch67:  ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.067
   Patch68:  ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.068
  +Patch69:  ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.069
   
   #   build information
   Prefix:   %{l_prefix}
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org