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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   23-Oct-2009 19:46:11
  Branch: HEAD Handle: 2009102318461100

  Modified files:
openpkg-src/gcc45   gcc45.spec

  Log:
upgrading package: gcc45 4.5s20091015 - 4.5s20091022

  Summary:
RevisionChanges Path
1.32+2  -2  openpkg-src/gcc45/gcc45.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/gcc45/gcc45.spec
  
  $ cvs diff -u -r1.31 -r1.32 gcc45.spec
  --- openpkg-src/gcc45/gcc45.spec  16 Oct 2009 16:17:52 -  1.31
  +++ openpkg-src/gcc45/gcc45.spec  23 Oct 2009 17:46:11 -  1.32
  @@ -26,7 +26,7 @@
   #   package version
   %define   V_full 4.5
   %define   V_comp 45
  -%define   V_snap 20091015
  +%define   V_snap 20091022
   
   #   package information
   Name: gcc45
  @@ -39,7 +39,7 @@
   Group:Compiler
   License:  GPL
   Version:  %{V_full}s%{V_snap}
  -Release:  20091016
  +Release:  20091023
   
   #   package options
   %option   with_binutils  yes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 09:03:56
  Branch: HEAD Handle: 2009102208035400

  Modified files:
openpkg-src/parrot  parrot.spec

  Log:
upgrading package: parrot 1.4.0 - 1.7.0

  Summary:
RevisionChanges Path
1.53+3  -3  openpkg-src/parrot/parrot.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/parrot/parrot.spec
  
  $ cvs diff -u -r1.52 -r1.53 parrot.spec
  --- openpkg-src/parrot/parrot.spec24 Jul 2009 15:18:16 -  1.52
  +++ openpkg-src/parrot/parrot.spec22 Oct 2009 07:03:54 -  1.53
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Language
   License:  Artistic/GPL
  -Version:  1.4.0
  -Release:  20090724
  +Version:  1.7.0
  +Release:  20091022
   
   #   package options
   %option   with_gmp yes
  @@ -41,7 +41,7 @@
   %option   with_icu no
   
   #   list of sources
  -Source0:  
ftp://ftp.parrot.org/pub/parrot/releases/stable/%{version}/parrot-%{version}.tar.gz
  +Source0:  
ftp://ftp.parrot.org/pub/parrot/releases/devel/%{version}/parrot-%{version}.tar.gz
   Patch0:   parrot.patch
   
   #   build information
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/activemq/ activemq-ajax.js activemq.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 08:51:09
  Branch: HEAD Handle: 2009102207510800

  Modified files:
openpkg-src/activemqactivemq-ajax.js activemq.spec

  Log:
adapter has to come first

  Summary:
RevisionChanges Path
1.2 +82 -83 openpkg-src/activemq/activemq-ajax.js
1.10+1  -1  openpkg-src/activemq/activemq.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/activemq/activemq-ajax.js
  
  $ cvs diff -u -r1.1 -r1.2 activemq-ajax.js
  --- openpkg-src/activemq/activemq-ajax.js 21 Oct 2009 19:13:52 -  
1.1
  +++ openpkg-src/activemq/activemq-ajax.js 22 Oct 2009 06:51:08 -  
1.2
  @@ -16,6 +16,88 @@
* limitations under the License.
*/
   
  +// AMQ Ajax Adapter for jQuery
  +// This class provides an adapter interface for the jquery library to perform
  +// some of the library-dependent tasks...namely logging and ajax.
  +
  +var org = org || {};
  +org.activemq = org.activemq || {};
  +
  +org.activemq.AmqAdapter = {
  +
  +init: function(options) {
  +},
  +
  +/**
  + *  Implement this method to make an AJAX call to the AjaxServlet. An
  + *  options object will accompany this class and will contain the 
properties
  + *  that describe the details of the AJAX call. The options object will
  + *  have the following properties:
  + *
  + *  - method:  'get' or 'post'
  + *  - data:query data to accompany the post or get.
  + *  - success: A callback function that is invoked upon successful
  + * completion of the AJAX call. The parameter is:
  + * - data: The result of the AJAX call. In the case of XML
  + * data should resolve to a Document element.
  + *  - error:   A callback when some type of error occurs. The callback
  + * function's parameters should be:
  + * - xhr:The XmlHttpRequest object.
  + * - status: A text string of the status.
  + * - ex: The exception that caused the error.
  + */
  +ajax: function(uri, options) {
  +if (options.method == 'post') {
  +jQuery.ajax({
  +type: POST,
  +url: uri,
  +data: options.data,
  +success: options.success || function(){},
  +error: options.error || function(){},
  +beforeSend: function(xhr) {
  +/* Force Connection: close for Mozilla browsers to 
work around
  + * a bug where XMLHttpRequest sends an incorrect 
Content-length
  + * header. See Mozilla Bugzilla #246651.
  + */
  +xhr.setRequestHeader(Connection, 'close');
  +}
  +});
  +} else {
  +jQuery.ajax({
  +type: GET,
  +url: uri,
  +data: options.data,
  +success: options.success || function(){},
  +error: options.error || function(){},
  +dataType: 'xml'
  +});
  +}
  +},
  +
  +log: function(message, exception) {
  +if (typeof console != 'undefined'  console.log)
  +console.log(AMQAJAX:  + message);
  +}
  +};
  +
  +/**
  + *
  + * Licensed to the Apache Software Foundation (ASF) under one or more
  + * contributor license agreements.  See the NOTICE file distributed with
  + * this work for additional information regarding copyright ownership.
  + * The ASF licenses this file to You under the Apache License, Version 2.0
  + * (the License); you may not use this file except in compliance with
  + * the License.  You may obtain a copy of the License at
  + *
  + * http://www.apache.org/licenses/LICENSE-2.0
  + *
  + * Unless required by applicable law or agreed to in writing, software
  + * distributed under the License is distributed on an AS IS BASIS,
  + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  + * See the License for the specific language governing permissions and
  + * limitations under the License.
  + */
  +
   // AMQ Ajax handler
   // This class provides the main API for using the Ajax features of AMQ. It
   // allows JMS messages to be sent and received from javascript when used
  @@ -244,86 +326,3 @@
   }
   };
   }();
  -
  -/**
  - *
  - * Licensed to the Apache Software Foundation 

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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 09:05:03
  Branch: HEAD Handle: 2009102208050200

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

  Log:
upgrading package: strace 4.5.18 - 4.5.19

  Summary:
RevisionChanges Path
1.10+48 -30 openpkg-src/strace/strace.patch
1.64+2  -2  openpkg-src/strace/strace.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/strace/strace.patch
  
  $ cvs diff -u -r1.9 -r1.10 strace.patch
  --- openpkg-src/strace/strace.patch   3 Aug 2007 17:46:34 -   1.9
  +++ openpkg-src/strace/strace.patch   22 Oct 2009 07:05:02 -  1.10
  @@ -1,7 +1,7 @@
   Index: file.c
   file.c.orig  2007-07-24 03:57:11 +0200
  -+++ file.c   2007-08-03 19:43:10 +0200
  -@@ -1588,7 +1588,11 @@
  +--- file.c.orig  2009-10-21 15:44:04 +0200
   file.c   2009-10-22 08:55:42 +0200
  +@@ -1642,7 +1642,11 @@
statbuf.f_bsize, statbuf.f_blocks, statbuf.f_bfree);
tprintf(f_bavail=%u, f_files=%u, f_ffree=%u, f_fsid={%d, %d}, 
f_namelen=%u,
statbuf.f_bavail,statbuf.f_files, statbuf.f_ffree,
  @@ -13,7 +13,7 @@
statbuf.f_namelen);
#else /* !ALPHA */
tprintf({f_type=%s, f_bsize=%lu, f_blocks=%lu, f_bfree=%lu, ,
  -@@ -1600,7 +1604,11 @@
  +@@ -1654,7 +1658,11 @@
(unsigned long)statbuf.f_bavail,
(unsigned long)statbuf.f_files,
(unsigned long)statbuf.f_ffree,
  @@ -25,7 +25,7 @@
#ifdef LINUX
tprintf(, f_namelen=%lu, (unsigned long)statbuf.f_namelen);
#endif /* LINUX */
  -@@ -2783,6 +2791,7 @@
  +@@ -2799,6 +2807,7 @@
}


  @@ -33,7 +33,7 @@
static const struct xlat advise[] = {
  { POSIX_FADV_NORMAL,  POSIX_FADV_NORMAL },
  { POSIX_FADV_RANDOM,  POSIX_FADV_RANDOM },
  -@@ -2792,6 +2801,7 @@
  +@@ -2808,6 +2817,7 @@
  { POSIX_FADV_NOREUSE, POSIX_FADV_NOREUSE},
  { 0,  NULL}
};
  @@ -41,17 +41,17 @@


#ifdef LINUX
  -@@ -2815,6 +2825,7 @@
  +@@ -2830,6 +2840,7 @@
#endif


   +#ifdef LINUX
int
  - sys_fadvise64_64(tcp)
  - struct tcb *tcp;
  -@@ -2833,6 +2844,7 @@
  - }
  - return 0;
  + sys_fadvise64_64(struct tcb *tcp)
  + {
  +@@ -2854,6 +2865,7 @@
  + }
  + return 0;
}
   +#endif

  @@ -59,7 +59,7 @@
static const struct xlat inotify_modes[] = {
   Index: freebsd/i386/syscall.h
   --- freebsd/i386/syscall.h.orig  2001-03-08 18:27:20 +0100
  -+++ freebsd/i386/syscall.h   2007-08-03 19:43:10 +0200
   freebsd/i386/syscall.h   2009-10-22 08:55:42 +0200
   @@ -9,6 +9,7 @@
int sys_write();
int sys_open();
  @@ -69,8 +69,8 @@
int sys_creat();
int sys_link();
   Index: net.c
   net.c.orig   2007-07-05 20:53:54 +0200
  -+++ net.c2007-08-03 19:43:10 +0200
  +--- net.c.orig   2009-09-01 21:53:29 +0200
   net.c2009-10-22 08:55:42 +0200
   @@ -43,12 +43,8 @@
#endif

  @@ -84,7 +84,7 @@
#include arpa/inet.h
#include net/if.h
#if defined(LINUX)
  -@@ -1079,6 +1075,9 @@
  +@@ -1103,6 +1099,9 @@
#ifdef SCM_RIGHTS
{ SCM_RIGHTS,   SCM_RIGHTS},
#endif
  @@ -94,7 +94,7 @@
#ifdef SCM_CREDENTIALS
{ SCM_CREDENTIALS,  SCM_CREDENTIALS   },
#endif
  -@@ -1125,6 +1124,13 @@
  +@@ -1146,6 +1145,13 @@
free(cmsg);
return;
}
  @@ -108,7 +108,7 @@
if (cmsg-cmsg_type == SCM_CREDENTIALS
 CMSG_LEN(sizeof(struct ucred)) = cmsg_len) {
struct ucred *uc = (struct ucred *) CMSG_DATA (cmsg);
  -@@ -1132,6 +1138,7 @@
  +@@ -1153,6 +1159,7 @@
tprintf({pid=%ld, uid=%ld, gid=%ld}},
(long)uc-pid, (long)uc-uid, (long)uc-gid);
free(cmsg);
  @@ -116,7 +116,7 @@
return;
}
}
  -@@ -1157,17 +1164,12 @@
  +@@ -1178,17 +1185,12 @@
tprint_iov(tcp, (unsigned long)msg.msg_iovlen,
   (unsigned long)msg.msg_iov);

  @@ -135,11 +135,11 @@
}

   Index: process.c
   process.c.orig   2007-08-02 04:13:05 +0200
  -+++ process.c2007-08-03 19:43:10 +0200
  -@@ -2988,7 +2988,9 @@
  - sys_ptrace(tcp)
  - struct tcb *tcp;
  +--- process.c.orig   2009-10-12 21:54:21 +0200
   process.c

[CVS] OpenPKG: openpkg-src/drupal-module-misc/ drupal-module-misc.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 09:07:04
  Branch: HEAD Handle: 2009102208070400

  Modified files:
openpkg-src/drupal-module-misc
drupal-module-misc.spec

  Log:
modifying package: drupal-module-misc-6.x 20091021 - 20091022

  Summary:
RevisionChanges Path
1.68+2  -2  
openpkg-src/drupal-module-misc/drupal-module-misc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/drupal-module-misc/drupal-module-misc.spec
  
  $ cvs diff -u -r1.67 -r1.68 drupal-module-misc.spec
  --- openpkg-src/drupal-module-misc/drupal-module-misc.spec21 Oct 2009 
15:43:49 -  1.67
  +++ openpkg-src/drupal-module-misc/drupal-module-misc.spec22 Oct 2009 
07:07:04 -  1.68
  @@ -127,7 +127,7 @@
   %define   V_module_nodehierarchy   6.x-1.2
   %define   V_module_nodeupdates 6.x-1.1
   %define   V_module_pagestyle   6.x-1.4
  -%define   V_module_pathauto6.x-1.1
  +%define   V_module_pathauto6.x-1.2
   %define   V_module_pathfilter  6.x-1.0
   %define   V_module_persistent_login6.x-1.4-beta6
   %define   V_module_pingback6.x-1.0
  @@ -214,7 +214,7 @@
   Group:CMS
   License:  GPL
   Version:  %{V_drupal}
  -Release:  20091021
  +Release:  20091022
   
   #   list of sources
   Source0:  http://ftp.drupal.org/files/projects/acl-%{V_module_acl}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 09:07:08
  Branch: HEAD Handle: 2009102208070800

  Modified files:
openpkg-src/memcached   memcached.spec

  Log:
modifying package: memcached-1.4.0 20091014 - 20091022

  Summary:
RevisionChanges Path
1.72+2  -2  openpkg-src/memcached/memcached.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/memcached/memcached.spec
  
  $ cvs diff -u -r1.71 -r1.72 memcached.spec
  --- openpkg-src/memcached/memcached.spec  14 Oct 2009 09:07:26 -  
1.71
  +++ openpkg-src/memcached/memcached.spec  22 Oct 2009 07:07:08 -  
1.72
  @@ -25,7 +25,7 @@
   %define   V_memcached   1.4.0
   %define   V_libmemcache 1.4.0.rc2
   %define   V_libmemcached0.34
  -%define   V_cache_memcached 1.27
  +%define   V_cache_memcached 1.28
   
   #   package information
   Name: memcached
  @@ -38,7 +38,7 @@
   Group:System
   License:  GPL
   Version:  %{V_memcached}
  -Release:  20091014
  +Release:  20091022
   
   #   list of sources
   Source0:  
http://www.danga.com/memcached/dist/memcached-%{V_memcached}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 22:42:25
  Branch: HEAD Handle: 2009102221422500

  Modified files:
openpkg-src/prince  prince.spec

  Log:
upgrading package: prince 7.0b1 - 7.0

  Summary:
RevisionChanges Path
1.7 +2  -2  openpkg-src/prince/prince.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/prince/prince.spec
  
  $ cvs diff -u -r1.6 -r1.7 prince.spec
  --- openpkg-src/prince/prince.spec2 Jul 2009 16:39:36 -   1.6
  +++ openpkg-src/prince/prince.spec22 Oct 2009 20:42:25 -  1.7
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Typesetting
   License:  Commercial
  -Version:  7.0b1
  -Release:  20090702
  +Version:  7.0
  +Release:  20091022
   
   #   list of sources
   Source0:  
http://www.princexml.com/download/prince-%{version}-freebsd63.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 22:42:31
  Branch: HEAD Handle: 2009102221423100

  Modified files:
openpkg-src/perl-module perl-module.spec

  Log:
modifying package: perl-module-5.10 20091004 - 20091022

  Summary:
RevisionChanges Path
1.143   +2  -2  openpkg-src/perl-module/perl-module.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-module/perl-module.spec
  
  $ cvs diff -u -r1.142 -r1.143 perl-module.spec
  --- openpkg-src/perl-module/perl-module.spec  4 Oct 2009 06:58:53 -   
1.142
  +++ openpkg-src/perl-module/perl-module.spec  22 Oct 2009 20:42:31 -  
1.143
  @@ -35,7 +35,7 @@
   %define   V_extutils_xsbuilder   0.28
   %define   V_module_scandeps  0.95
   %define   V_module_build 0.340201
  -%define   V_module_corelist  2.20
  +%define   V_module_corelist  2.22
   %define   V_module_info  0.31
   %define   V_module_locate1.7
   %define   V_module_pluggable 3.9
  @@ -57,7 +57,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091004
  +Release:  20091022
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/ExtUtils/ExtUtils-Depends-%{V_extutils_depends}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 22:42:34
  Branch: HEAD Handle: 2009102221423400

  Modified files:
openpkg-src/html2ps html2ps.spec

  Log:
upgrading package: html2ps 1.0b5 - 1.0b6

  Summary:
RevisionChanges Path
1.20+2  -2  openpkg-src/html2ps/html2ps.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/html2ps/html2ps.spec
  
  $ cvs diff -u -r1.19 -r1.20 html2ps.spec
  --- openpkg-src/html2ps/html2ps.spec  18 Apr 2009 13:11:09 -  1.19
  +++ openpkg-src/html2ps/html2ps.spec  22 Oct 2009 20:42:34 -  1.20
  @@ -31,8 +31,8 @@
   Class:PLUS
   Group:Postscript
   License:  GPL
  -Version:  1.0b5
  -Release:  20080101
  +Version:  1.0b6
  +Release:  20091022
   
   #   list of sources
   Source0:  http://user.it.uu.se/~jan/html2ps-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   24-Oct-2009 00:08:20
  Branch: HEAD Handle: 2009102323081900

  Modified files:
openpkg-src/mldonkeymldonkey.spec

  Log:
upgrading package: mldonkey 3.0.0 - 3.0.1

  Summary:
RevisionChanges Path
1.43+2  -2  openpkg-src/mldonkey/mldonkey.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/mldonkey/mldonkey.spec
  
  $ cvs diff -u -r1.42 -r1.43 mldonkey.spec
  --- openpkg-src/mldonkey/mldonkey.spec30 Jun 2009 20:21:03 -  
1.42
  +++ openpkg-src/mldonkey/mldonkey.spec23 Oct 2009 22:08:19 -  
1.43
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:P2P
   License:  MLdonkey/GPL
  -Version:  3.0.0
  -Release:  20090327
  +Version:  3.0.1
  +Release:  20091024
   
   #   package options
   %option   with_gui  no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 08:43:45
  Branch: HEAD Handle: 2009102507434400

  Modified files:
openpkg-src/rrdtool rrdtool.spec

  Log:
upgrading package: rrdtool 1.3.8 - 1.3.9

  Summary:
RevisionChanges Path
1.131   +2  -2  openpkg-src/rrdtool/rrdtool.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/rrdtool/rrdtool.spec
  
  $ cvs diff -u -r1.130 -r1.131 rrdtool.spec
  --- openpkg-src/rrdtool/rrdtool.spec  12 Oct 2009 16:13:14 -  1.130
  +++ openpkg-src/rrdtool/rrdtool.spec  25 Oct 2009 07:43:44 -  1.131
  @@ -22,7 +22,7 @@
   ##
   
   #   package version
  -%define   V_rrdtool  1.3.8
  +%define   V_rrdtool  1.3.9
   %define   V_rrdtool_oo   0.27
   %define   V_rrdtool_creator  0.9
   %define   V_rrd_simple   1.44
  @@ -38,7 +38,7 @@
   Group:Database
   License:  LGPL
   Version:  %{V_rrdtool}
  -Release:  20091012
  +Release:  20091025
   
   #   package options
   %option   with_perlno
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/drupal-module-misc/ drupal-module-misc.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   24-Oct-2009 09:09:59
  Branch: HEAD Handle: 2009102408095900

  Modified files:
openpkg-src/drupal-module-misc
drupal-module-misc.spec

  Log:
modifying package: drupal-module-misc-6.x 20091023 - 20091024

  Summary:
RevisionChanges Path
1.71+2  -2  
openpkg-src/drupal-module-misc/drupal-module-misc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/drupal-module-misc/drupal-module-misc.spec
  
  $ cvs diff -u -r1.70 -r1.71 drupal-module-misc.spec
  --- openpkg-src/drupal-module-misc/drupal-module-misc.spec23 Oct 2009 
17:44:15 -  1.70
  +++ openpkg-src/drupal-module-misc/drupal-module-misc.spec24 Oct 2009 
07:09:59 -  1.71
  @@ -145,7 +145,7 @@
   %define   V_module_search404   6.x-1.7
   %define   V_module_sections6.x-1.2
   %define   V_module_services6.x-0.13
  -%define   V_module_shadowbox   6.x-3.0
  +%define   V_module_shadowbox   6.x-3.1
   %define   V_module_shoutbox6.x-1.0
   %define   V_module_simplefeed  6.x-1.x-dev
   %define   V_module_slideshow_creator   6.x-1.32
  @@ -214,7 +214,7 @@
   Group:CMS
   License:  GPL
   Version:  %{V_drupal}
  -Release:  20091023
  +Release:  20091024
   
   #   list of sources
   Source0:  http://ftp.drupal.org/files/projects/acl-%{V_module_acl}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 10:56:20
  Branch: HEAD Handle: 2009102209562000

  Modified files:
openpkg-src/cppcheckcppcheck.spec

  Log:
requires C++

  Summary:
RevisionChanges Path
1.2 +1  -1  openpkg-src/cppcheck/cppcheck.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/cppcheck/cppcheck.spec
  
  $ cvs diff -u -r1.1 -r1.2 cppcheck.spec
  --- openpkg-src/cppcheck/cppcheck.spec22 Oct 2009 08:53:31 -  
1.1
  +++ openpkg-src/cppcheck/cppcheck.spec22 Oct 2009 08:56:20 -  
1.2
  @@ -44,7 +44,7 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg = 20060823
  +BuildPreReq:  OpenPKG, openpkg = 20060823, gcc, gcc::with_cxx = yes
   PreReq:   OpenPKG, openpkg = 20060823
   AutoReq:  no
   AutoReqProv:  no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 08:43:44
  Branch: HEAD Handle: 2009102507434300

  Modified files:
openpkg-src/libraw  libraw.spec

  Log:
upgrading package: libraw 0.8.2 - 0.8.3

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

  patch -p0 '@@ .'
  Index: openpkg-src/libraw/libraw.spec
  
  $ cvs diff -u -r1.17 -r1.18 libraw.spec
  --- openpkg-src/libraw/libraw.spec3 Sep 2009 18:50:29 -   1.17
  +++ openpkg-src/libraw/libraw.spec25 Oct 2009 07:43:43 -  1.18
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Graphics
   License:  GPL
  -Version:  0.8.2
  -Release:  20090903
  +Version:  0.8.3
  +Release:  20091025
   
   #   list of sources
   Source0:  http://www.libraw.org/data/LibRaw-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 22:42:31
  Branch: HEAD Handle: 2009102221423100

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

  Log:
modifying package: perl-gfx-5.10 20090904 - 20091022

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

  patch -p0 '@@ .'
  Index: openpkg-src/perl-gfx/perl-gfx.spec
  
  $ cvs diff -u -r1.113 -r1.114 perl-gfx.spec
  --- openpkg-src/perl-gfx/perl-gfx.spec4 Sep 2009 19:01:54 -   
1.113
  +++ openpkg-src/perl-gfx/perl-gfx.spec22 Oct 2009 20:42:31 -  
1.114
  @@ -24,7 +24,7 @@
   #   versions of individual parts
   %define   V_perl5.10
   %define   V_image_info  1.29
  -%define   V_image_size  3.2
  +%define   V_image_size  3.210
   %define   V_postscript  0.06
   %define   V_postscript_simple   0.07
   %define   V_postscript_simple_table 1.02
  @@ -49,7 +49,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20090904
  +Release:  20091022
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Image/Image-Info-%{V_image_info}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 08:44:43
  Branch: HEAD Handle: 2009102507444300

  Modified files:
openpkg-src/mpopmpop.spec

  Log:
upgrading package: mpop 1.0.18 - 1.0.19

  Summary:
RevisionChanges Path
1.17+2  -2  openpkg-src/mpop/mpop.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/mpop/mpop.spec
  
  $ cvs diff -u -r1.16 -r1.17 mpop.spec
  --- openpkg-src/mpop/mpop.spec9 Sep 2009 07:46:15 -   1.16
  +++ openpkg-src/mpop/mpop.spec25 Oct 2009 07:44:43 -  1.17
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Mail
   License:  GPL
  -Version:  1.0.18
  -Release:  20090909
  +Version:  1.0.19
  +Release:  20091025
   
   #   list of sources
   Source0:  http://switch.dl.sourceforge.net/mpop/mpop-%{version}.tar.bz2
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 18:53:40
  Branch: HEAD Handle: 2009102517533900

  Modified files:
openpkg-src/bashbash.spec

  Log:
upgrading package: bash 4.0.33 - 4.0.35

  Summary:
RevisionChanges Path
1.113   +7  -3  openpkg-src/bash/bash.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/bash/bash.spec
  
  $ cvs diff -u -r1.112 -r1.113 bash.spec
  --- openpkg-src/bash/bash.spec10 Sep 2009 18:47:19 -  1.112
  +++ openpkg-src/bash/bash.spec25 Oct 2009 17:53:39 -  1.113
  @@ -24,8 +24,8 @@
   #   package version
   %define   V_base_real 4.0
   %define   V_base_comp 40
  -%define   V_plvl_raw  33
  -%define   V_plvl_pad  033
  +%define   V_plvl_raw  35
  +%define   V_plvl_pad  035
   
   #   package information
   Name: bash
  @@ -38,7 +38,7 @@
   Group:Shell
   License:  GPL
   Version:  %{V_base_real}.%{V_plvl_raw}
  -Release:  20090910
  +Release:  20091025
   
   #   list of sources
   Source0:  ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}.tar.gz
  @@ -77,6 +77,8 @@
   Patch31:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-031
   Patch32:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-032
   Patch33:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-033
  +Patch34:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-034
  +Patch35:  
ftp://ftp.cwru.edu/pub/bash/bash-%{V_base_real}-patches/bash%{V_base_comp}-035
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -143,6 +145,8 @@
   %patch -p0 -P 31
   %patch -p0 -P 32
   %patch -p0 -P 33
  +%patch -p0 -P 34
  +%patch -p0 -P 35
   
   #   ensure generated data is not re-generated on-the-fly
   sleep 1
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 20:42:25
  Branch: HEAD Handle: 2009102519422500

  Modified files:
openpkg-src/cegocego.spec

  Log:
upgrading package: cego 2.3.12 - 2.4.0

  Summary:
RevisionChanges Path
1.55+2  -2  openpkg-src/cego/cego.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/cego/cego.spec
  
  $ cvs diff -u -r1.54 -r1.55 cego.spec
  --- openpkg-src/cego/cego.spec17 Oct 2009 18:56:02 -  1.54
  +++ openpkg-src/cego/cego.spec25 Oct 2009 19:42:25 -  1.55
  @@ -26,7 +26,7 @@
   #   package version
   %define   V_base  1.1.26
   %define   V_xml   1.0.17
  -%define   V_cego  2.3.12
  +%define   V_cego  2.4.0
   %define   V_jdbc  1.2.17
   
   #   package information
  @@ -40,7 +40,7 @@
   Group:Database
   License:  GPL
   Version:  %{V_cego}
  -Release:  20091017
  +Release:  20091025
   
   #   package options
   %option   with_jdbc   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 23:03:30
  Branch: HEAD Handle: 200910033000

  Modified files:
openpkg-src/jsonjson.spec

  Log:
allow directory to be really accessed, too

  Summary:
RevisionChanges Path
1.133   +7  -1  openpkg-src/json/json.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/json/json.spec
  
  $ cvs diff -u -r1.132 -r1.133 json.spec
  --- openpkg-src/json/json.spec21 Oct 2009 19:36:45 -  1.132
  +++ openpkg-src/json/json.spec22 Oct 2009 21:03:30 -  1.133
  @@ -43,7 +43,7 @@
   Group:Language
   License:  Open Source
   Version:  %{V_api_js2}
  -Release:  20091021
  +Release:  20091022
   
   #   list of sources
   Source0:  http://oss.metaparadigm.com/json-c/json-c-%{V_api_c}.tar.gz
  @@ -173,6 +173,12 @@
   %{l_shtool} mkdir -f -p -m 755 \
   $RPM_BUILD_ROOT%{l_prefix}/etc/apache/apache.d
   ( echo Alias /json/ %{l_prefix}/share/json/
  +  echo Directory %{l_prefix}/share/json/
  +  echo Options   Indexes
  +  echo AllowOverride none
  +  echo Order allow,deny
  +  echo Allow from all
  +  echo /Directory
   ) json.conf
   %{l_shtool} install -c -m 644 \
   json.conf $RPM_BUILD_ROOT%{l_prefix}/etc/apache/apache.d/
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 23:14:07
  Branch: HEAD Handle: 200910140700

  Modified files:
openpkg-src/dhtml   dhtml.spec

  Log:
make dhtml stuff available under /openpkg-dhtml/ URL prefix

  Summary:
RevisionChanges Path
1.184   +11 -0  openpkg-src/dhtml/dhtml.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/dhtml/dhtml.spec
  
  $ cvs diff -u -r1.183 -r1.184 dhtml.spec
  --- openpkg-src/dhtml/dhtml.spec  22 Oct 2009 07:23:24 -  1.183
  +++ openpkg-src/dhtml/dhtml.spec  22 Oct 2009 21:14:07 -  1.184
  @@ -417,6 +417,7 @@
   %install
   rm -rf $RPM_BUILD_ROOT
   %{l_shtool} mkdir -f -p -m 755 \
  +$RPM_BUILD_ROOT%{l_prefix}/etc/apache/apache.d \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/prototype \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/scriptaculous \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/rico \
  @@ -450,6 +451,16 @@
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/oat \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/ext \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/raphael
  +( echo Alias /openpkg-dhtml/ %{l_prefix}/share/dhtml/
  +  echo Directory %{l_prefix}/share/dhtml/
  +  echo Options   Indexes
  +  echo AllowOverride none
  +  echo Order allow,deny
  +  echo Allow from all
  +  echo /Directory
  +) dhtml.conf
  +%{l_shtool} install -c -m 644 \
  +dhtml.conf $RPM_BUILD_ROOT%{l_prefix}/etc/apache/apache.d/
   %{l_shtool} install -c -m 644 \
   %{SOURCE prototype-%{V_prototype}.js} \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/prototype/
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 23:14:41
  Branch: HEAD Handle: 200910144100

  Modified files:
openpkg-src/jsonjson.spec

  Log:
use /openpkg-json instead of /json as the URL prefix

  Summary:
RevisionChanges Path
1.134   +1  -1  openpkg-src/json/json.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/json/json.spec
  
  $ cvs diff -u -r1.133 -r1.134 json.spec
  --- openpkg-src/json/json.spec22 Oct 2009 21:03:30 -  1.133
  +++ openpkg-src/json/json.spec22 Oct 2009 21:14:41 -  1.134
  @@ -172,7 +172,7 @@
   %{SOURCE rfc4627.txt} $RPM_BUILD_ROOT%{l_prefix}/share/json/
   %{l_shtool} mkdir -f -p -m 755 \
   $RPM_BUILD_ROOT%{l_prefix}/etc/apache/apache.d
  -( echo Alias /json/ %{l_prefix}/share/json/
  +( echo Alias /openpkg-json/ %{l_prefix}/share/json/
 echo Directory %{l_prefix}/share/json/
 echo Options   Indexes
 echo AllowOverride none
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 22:44:25
  Branch: HEAD Handle: 2009102221442500

  Modified files:
openpkg-src/typo3   typo3.spec

  Log:
upgrading package: typo3 4.2.9 - 4.2.10

  Summary:
RevisionChanges Path
1.16+2  -2  openpkg-src/typo3/typo3.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/typo3/typo3.spec
  
  $ cvs diff -u -r1.15 -r1.16 typo3.spec
  --- openpkg-src/typo3/typo3.spec  29 Sep 2009 21:16:45 -  1.15
  +++ openpkg-src/typo3/typo3.spec  22 Oct 2009 20:44:25 -  1.16
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:CMS
   License:  GPL
  -Version:  4.2.9
  -Release:  20090929
  +Version:  4.2.10
  +Release:  20091022
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/typo3/typo3_src-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/drupal-module-misc/ drupal-module-misc.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 22:44:29
  Branch: HEAD Handle: 2009102221442900

  Modified files:
openpkg-src/drupal-module-misc
drupal-module-misc.spec

  Log:
modifying package: drupal-module-misc-6.x 20091022 again

  Summary:
RevisionChanges Path
1.69+1  -1  
openpkg-src/drupal-module-misc/drupal-module-misc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/drupal-module-misc/drupal-module-misc.spec
  
  $ cvs diff -u -r1.68 -r1.69 drupal-module-misc.spec
  --- openpkg-src/drupal-module-misc/drupal-module-misc.spec22 Oct 2009 
07:07:04 -  1.68
  +++ openpkg-src/drupal-module-misc/drupal-module-misc.spec22 Oct 2009 
20:44:29 -  1.69
  @@ -65,7 +65,7 @@
   %define   V_module_exhibit 6.x-1.0-beta1
   %define   V_module_extlink 6.x-1.7
   %define   V_module_faq 6.x-1.8
  -%define   V_module_faq_ask 6.x-1.2
  +%define   V_module_faq_ask 6.x-2.0
   %define   V_module_fasttoggle  6.x-1.3
   %define   V_module_fckeditor   6.x-1.4
   %define   V_module_feedapi 6.x-1.8
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/lcdf-typetools/ lcdf-typetools.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   24-Oct-2009 09:09:52
  Branch: HEAD Handle: 2009102408095100

  Modified files:
openpkg-src/lcdf-typetools
lcdf-typetools.spec

  Log:
modifying package: lcdf-typetools-2.79 20090930 - 20091024

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

  patch -p0 '@@ .'
  Index: openpkg-src/lcdf-typetools/lcdf-typetools.spec
  
  $ cvs diff -u -r1.59 -r1.60 lcdf-typetools.spec
  --- openpkg-src/lcdf-typetools/lcdf-typetools.spec30 Sep 2009 14:32:31 
-  1.59
  +++ openpkg-src/lcdf-typetools/lcdf-typetools.spec24 Oct 2009 07:09:51 
-  1.60
  @@ -23,7 +23,7 @@
   
   #   package version
   %define   V_typetools   2.79
  -%define   V_t1utils 1.34
  +%define   V_t1utils 1.35
   %define   V_autofont0.96
   %define   V_fontools20090409
   
  @@ -38,7 +38,7 @@
   Group:Typesetting
   License:  GPL+MIT-style
   Version:  %{V_typetools}
  -Release:  20090930
  +Release:  20091024
   
   #   list of sources
   Source0:  http://www.lcdf.org/type/lcdf-typetools-%{V_typetools}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 08:43:48
  Branch: HEAD Handle: 2009102507434700

  Modified files:
openpkg-src/pureftpdpureftpd.spec

  Log:
upgrading package: pureftpd 1.0.22 - 1.0.24

  Summary:
RevisionChanges Path
1.85+2  -2  openpkg-src/pureftpd/pureftpd.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/pureftpd/pureftpd.spec
  
  $ cvs diff -u -r1.84 -r1.85 pureftpd.spec
  --- openpkg-src/pureftpd/pureftpd.spec28 Apr 2009 17:12:28 -  
1.84
  +++ openpkg-src/pureftpd/pureftpd.spec25 Oct 2009 07:43:47 -  
1.85
  @@ -31,8 +31,8 @@
   Class:BASE
   Group:FTP
   License:  BSD
  -Version:  1.0.22
  -Release:  20090428
  +Version:  1.0.24
  +Release:  20091025
   
   #   package options
   %option   with_fslyes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 22:43:57
  Branch: HEAD Handle: 2009102221435700

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

  Log:
upgrading package: davical 0.9.7.4 - 0.9.7.5

  Summary:
RevisionChanges Path
1.5 +6  -6  openpkg-src/davical/davical.patch
1.10+3  -3  openpkg-src/davical/davical.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/davical/davical.patch
  
  $ cvs diff -u -r1.4 -r1.5 davical.patch
  --- openpkg-src/davical/davical.patch 8 Oct 2009 20:34:41 -   1.4
  +++ openpkg-src/davical/davical.patch 22 Oct 2009 20:43:57 -  1.5
  @@ -1,6 +1,6 @@
  -Index: davical-0.9.7.4/dba/appuser_permissions.txt
   davical-0.9.7.4/dba/appuser_permissions.txt.orig 2009-09-13 05:16:08 
+0200
  -+++ davical-0.9.7.4/dba/appuser_permissions.txt  2009-10-08 22:27:36 
+0200
  +Index: davical-0.9.7.5/dba/appuser_permissions.txt
  +--- davical-0.9.7.5/dba/appuser_permissions.txt.orig 2009-09-13 05:16:08 
+0200
   davical-0.9.7.5/dba/appuser_permissions.txt  2009-10-08 22:27:36 
+0200
   @@ -1,57 +1,44 @@
   -#
   -# This file is used by update-rscds-database to set the correct
  @@ -93,9 +93,9 @@
   + principal_type
   +  TO davical;

  -Index: davical-0.9.7.4/inc/always.php
   davical-0.9.7.4/inc/always.php.orig  2009-10-08 02:10:04 +0200
  -+++ davical-0.9.7.4/inc/always.php   2009-10-08 22:31:37 +0200
  +Index: davical-0.9.7.5/inc/always.php
  +--- davical-0.9.7.5/inc/always.php.orig  2009-10-08 02:10:04 +0200
   davical-0.9.7.5/inc/always.php   2009-10-08 22:31:37 +0200
   @@ -79,15 +79,8 @@
* access which could break DAViCal completely by causing output to start
* too early.
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/davical/davical.spec
  
  $ cvs diff -u -r1.9 -r1.10 davical.spec
  --- openpkg-src/davical/davical.spec  8 Oct 2009 20:34:41 -   1.9
  +++ openpkg-src/davical/davical.spec  22 Oct 2009 20:43:57 -  1.10
  @@ -22,8 +22,8 @@
   ##
   
   #   package version
  -%define   V_opkg0.9.7.4
  -%define   V_davical 0.9.7.4
  +%define   V_opkg0.9.7.5
  +%define   V_davical 0.9.7.5
   %define   V_awl 0.37
   
   #   package information
  @@ -37,7 +37,7 @@
   Group:Network
   License:  GPL
   Version:  %{V_opkg}
  -Release:  20091008
  +Release:  20091022
   
   #   package options
   %define   with_ssl  no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/activemq/ activemq.txt

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 23:18:25
  Branch: HEAD Handle: 200910182400

  Modified files:
openpkg-src/activemqactivemq.txt

  Log:
use /openpkg-activemq/ instead of /activemq/ URL prefix

  Summary:
RevisionChanges Path
1.9 +6  -6  openpkg-src/activemq/activemq.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/activemq/activemq.txt
  
  $ cvs diff -u -r1.8 -r1.9 activemq.txt
  --- openpkg-src/activemq/activemq.txt 21 Oct 2009 17:07:44 -  1.8
  +++ openpkg-src/activemq/activemq.txt 22 Oct 2009 21:18:24 -  1.9
  @@ -121,10 +121,10 @@
   nioConnector host=localhost port=8161/
   /connectors
   handlers
  -webAppContext contextPath=/activemq/admin 
resourceBase=@l_prefix@/share/activemq/admin logUrlOnStart=true/
  -webAppContext contextPath=/activemq/service 
resourceBase=@l_prefix@/share/activemq/service logUrlOnStart=true/
  -!-- webAppContext contextPath=/activemq/demo 
resourceBase=@l_prefix@/share/activemq/demo logUrlOnStart=true/ --
  -!-- webAppContext contextPath=/activemq/fileserver 
resourceBase=@l_prefix@/share/activemq/fileserver logUrlOnStart=true/ --
  +webAppContext contextPath=/openpkg-activemq/admin 
resourceBase=@l_prefix@/share/activemq/admin logUrlOnStart=true/
  +webAppContext contextPath=/openpkg-activemq/service 
resourceBase=@l_prefix@/share/activemq/service logUrlOnStart=true/
  +!-- webAppContext contextPath=/openpkg-activemq/demo 
resourceBase=@l_prefix@/share/activemq/demo logUrlOnStart=true/ --
  +!-- webAppContext contextPath=/openpkg-activemq/fileserver 
resourceBase=@l_prefix@/share/activemq/fileserver logUrlOnStart=true/ --
   /handlers
   /jetty
   /beans
  @@ -231,7 +231,7 @@
   #   global URL integration mapping
   #   (mainly to circumvent cross-browser access control checks
   #   and to allow correct path mapping for JSESSIONID cookie)
  -ProxyPass /activemq/  http://localhost:8161/activemq/
  -ProxyPassReverse  /activemq/  http://localhost:8161/activemq/
  +ProxyPass /openpkg-activemq/  http://localhost:8161/activemq/
  +ProxyPassReverse  /openpkg-activemq/  http://localhost:8161/activemq/
   
   /file
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   23-Oct-2009 09:01:57
  Branch: HEAD Handle: 2009102308015600

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

  Log:
upgrading package: lzlib 0.6 - 0.7

  Summary:
RevisionChanges Path
1.2 +6  -6  openpkg-src/lzlib/lzlib.patch
1.6 +2  -2  openpkg-src/lzlib/lzlib.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/lzlib/lzlib.patch
  
  $ cvs diff -u -r1.1 -r1.2 lzlib.patch
  --- openpkg-src/lzlib/lzlib.patch 4 May 2009 06:48:06 -   1.1
  +++ openpkg-src/lzlib/lzlib.patch 23 Oct 2009 07:01:56 -  1.2
  @@ -1,12 +1,12 @@
   Index: Makefile.in
   Makefile.in.orig 2009-05-03 02:47:51 +0200
  -+++ Makefile.in  2009-05-04 08:43:02 +0200
  -@@ -83,7 +83,7 @@
  +--- Makefile.in.orig 2009-10-21 12:39:29 +0200
   Makefile.in  2009-10-23 08:59:34 +0200
  +@@ -90,7 +90,7 @@
$(INSTALL_DATA) ./$(libname).a $(DESTDIR)$(libdir)/$(libname).a
  - if test -n $(progname_shared) ; then \
  + if [ -n $(progname_shared) ] ; then \
  $(INSTALL_PROGRAM) ./$(libname).so.$(pkgversion) 
$(DESTDIR)$(libdir)/$(libname).so.$(pkgversion) ; \
  --  if test -a $(DESTDIR)$(libdir)/$(libname).so.$(soversion) ; then \
  -+  if test -f $(DESTDIR)$(libdir)/$(libname).so.$(soversion) ; then \
  +-  if [ -e $(DESTDIR)$(libdir)/$(libname).so.$(soversion) ] ; then \
  ++  if [ -f $(DESTDIR)$(libdir)/$(libname).so.$(soversion) ] ; then \
run_ldconfig=no ; rm -f 
$(DESTDIR)$(libdir)/$(libname).so.$(soversion) ; \
  else run_ldconfig=yes ; \
  fi ; \
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/lzlib/lzlib.spec
  
  $ cvs diff -u -r1.5 -r1.6 lzlib.spec
  --- openpkg-src/lzlib/lzlib.spec  12 Oct 2009 06:33:30 -  1.5
  +++ openpkg-src/lzlib/lzlib.spec  23 Oct 2009 07:01:56 -  1.6
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Compression
   License:  GPL
  -Version:  0.6
  -Release:  20091012
  +Version:  0.7
  +Release:  20091023
   
   #   list of sources
   Source0:  
http://download.savannah.gnu.org/releases/lzip/lzlib-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/drupal-module-misc/ drupal-module-misc.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   23-Oct-2009 19:44:15
  Branch: HEAD Handle: 2009102318441500

  Modified files:
openpkg-src/drupal-module-misc
drupal-module-misc.spec

  Log:
modifying package: drupal-module-misc-6.x 20091022 - 20091023

  Summary:
RevisionChanges Path
1.70+3  -3  
openpkg-src/drupal-module-misc/drupal-module-misc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/drupal-module-misc/drupal-module-misc.spec
  
  $ cvs diff -u -r1.69 -r1.70 drupal-module-misc.spec
  --- openpkg-src/drupal-module-misc/drupal-module-misc.spec22 Oct 2009 
20:44:29 -  1.69
  +++ openpkg-src/drupal-module-misc/drupal-module-misc.spec23 Oct 2009 
17:44:15 -  1.70
  @@ -63,7 +63,7 @@
   %define   V_module_epublish6.x-1.3
   %define   V_module_event   6.x-2.x-dev
   %define   V_module_exhibit 6.x-1.0-beta1
  -%define   V_module_extlink 6.x-1.7
  +%define   V_module_extlink 6.x-1.8
   %define   V_module_faq 6.x-1.8
   %define   V_module_faq_ask 6.x-2.0
   %define   V_module_fasttoggle  6.x-1.3
  @@ -71,7 +71,7 @@
   %define   V_module_feedapi 6.x-1.8
   %define   V_module_filebrowser 6.x-1.4
   %define   V_module_fileframework   6.x-1.0-alpha5
  -%define   V_module_fivestar6.x-1.18
  +%define   V_module_fivestar6.x-1.19
   %define   V_module_flag_content6.x-1.x-dev
   %define   V_module_flashnode   6.x-3.1
   %define   V_module_flashvideo  6.x-1.4
  @@ -214,7 +214,7 @@
   Group:CMS
   License:  GPL
   Version:  %{V_drupal}
  -Release:  20091022
  +Release:  20091023
   
   #   list of sources
   Source0:  http://ftp.drupal.org/files/projects/acl-%{V_module_acl}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   23-Oct-2009 19:42:00
  Branch: HEAD Handle: 200910231842

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

  Log:
upgrading package: wcd 5.0.4 - 5.1.0

  Summary:
RevisionChanges Path
1.2 +0  -14 openpkg-src/wcd/wcd.patch
1.10+2  -5  openpkg-src/wcd/wcd.spec
  

  rm -f openpkg-src/wcd/wcd.patch '@@ .'
  Index: openpkg-src/wcd/wcd.patch
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/wcd/wcd.spec
  
  $ cvs diff -u -r1.9 -r1.10 wcd.spec
  --- openpkg-src/wcd/wcd.spec  22 Jul 2009 06:00:08 -  1.9
  +++ openpkg-src/wcd/wcd.spec  23 Oct 2009 17:42:00 -  1.10
  @@ -31,12 +31,11 @@
   Class:EVAL
   Group:Terminal
   License:  GPL
  -Version:  5.0.4
  -Release:  20090722
  +Version:  5.1.0
  +Release:  20091023
   
   #   list of sources
   Source0:  http://www.xs4all.nl/~waterlan/wcd-%{version}-src.tar.gz
  -Patch0:   wcd.patch
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -65,12 +64,10 @@
   
   %prep
   %setup -q
  -%patch -p0
   
   %build
   cd src
   %{l_make} %{l_mflags -O} \
  --f Makefile.ncurses.gcc \
   CC=%{l_cc} \
   NCFLAG=%{l_cppflags ncurses .} \
   NLFLAG=%{l_ldflags}
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/activemq/ activemq.txt

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   22-Oct-2009 23:24:09
  Branch: HEAD Handle: 200910240900

  Modified files:
openpkg-src/activemqactivemq.txt

  Log:
fix URL mapping

  Summary:
RevisionChanges Path
1.10+2  -2  openpkg-src/activemq/activemq.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/activemq/activemq.txt
  
  $ cvs diff -u -r1.9 -r1.10 activemq.txt
  --- openpkg-src/activemq/activemq.txt 22 Oct 2009 21:18:24 -  1.9
  +++ openpkg-src/activemq/activemq.txt 22 Oct 2009 21:24:09 -  1.10
  @@ -231,7 +231,7 @@
   #   global URL integration mapping
   #   (mainly to circumvent cross-browser access control checks
   #   and to allow correct path mapping for JSESSIONID cookie)
  -ProxyPass /openpkg-activemq/  http://localhost:8161/activemq/
  -ProxyPassReverse  /openpkg-activemq/  http://localhost:8161/activemq/
  +ProxyPass /openpkg-activemq/  http://localhost:8161/openpkg-activemq/
  +ProxyPassReverse  /openpkg-activemq/  http://localhost:8161/openpkg-activemq/
   
   /file
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   23-Oct-2009 19:44:41
  Branch: HEAD Handle: 2009102318444100

  Modified files:
openpkg-src/perl-xmlperl-xml.spec

  Log:
modifying package: perl-xml-5.10 20091008 - 20091023

  Summary:
RevisionChanges Path
1.371   +2  -2  openpkg-src/perl-xml/perl-xml.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-xml/perl-xml.spec
  
  $ cvs diff -u -r1.370 -r1.371 perl-xml.spec
  --- openpkg-src/perl-xml/perl-xml.spec8 Oct 2009 20:30:31 -   
1.370
  +++ openpkg-src/perl-xml/perl-xml.spec23 Oct 2009 17:44:41 -  
1.371
  @@ -23,7 +23,7 @@
   
   #   versions of individual parts
   %define   V_perl5.10
  -%define   V_html_parser 3.62
  +%define   V_html_parser 3.63
   %define   V_html_simpleparse0.12
   %define   V_html_table  2.08
   %define   V_html_tagreader  1.10
  @@ -100,7 +100,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091008
  +Release:  20091023
   
   #   package options
   %option   with_libxmlno
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 08:44:14
  Branch: HEAD Handle: 2009102507434300

  Modified files:
openpkg-src/perl-sshperl-ssh.spec

  Log:
modifying package: perl-ssh-5.10 20091010 - 20091025

  Summary:
RevisionChanges Path
1.57+2  -2  openpkg-src/perl-ssh/perl-ssh.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-ssh/perl-ssh.spec
  
  $ cvs diff -u -r1.56 -r1.57 perl-ssh.spec
  --- openpkg-src/perl-ssh/perl-ssh.spec10 Oct 2009 17:58:18 -  
1.56
  +++ openpkg-src/perl-ssh/perl-ssh.spec25 Oct 2009 07:43:43 -  
1.57
  @@ -23,7 +23,7 @@
   
   #   versions of individual parts
   %define   V_perl   5.10
  -%define   V_net_ssh2   0.27
  +%define   V_net_ssh2   0.28
   %define   V_net_ssh0.09
   %define   V_net_ssh_expect 1.09
   %define   V_net_scp0.08
  @@ -42,7 +42,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091010
  +Release:  20091025
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Net/Net-SSH2-%{V_net_ssh2}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/drupal-module-misc/ drupal-module-misc.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 13:19:53
  Branch: HEAD Handle: 2009102612195300

  Modified files:
openpkg-src/drupal-module-misc
drupal-module-misc.spec

  Log:
fix shadowbox installation

  Summary:
RevisionChanges Path
1.72+3  -2  
openpkg-src/drupal-module-misc/drupal-module-misc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/drupal-module-misc/drupal-module-misc.spec
  
  $ cvs diff -u -r1.71 -r1.72 drupal-module-misc.spec
  --- openpkg-src/drupal-module-misc/drupal-module-misc.spec24 Oct 2009 
07:09:59 -  1.71
  +++ openpkg-src/drupal-module-misc/drupal-module-misc.spec26 Oct 2009 
12:19:53 -  1.72
  @@ -214,7 +214,7 @@
   Group:CMS
   License:  GPL
   Version:  %{V_drupal}
  -Release:  20091024
  +Release:  20091026
   
   #   list of sources
   Source0:  http://ftp.drupal.org/files/projects/acl-%{V_module_acl}.tar.gz
  @@ -1487,7 +1487,8 @@
   ) || exit $?
   ( cd sites/all/modules/shadowbox || exit $?
 unzip -q -x %{SOURCE305}
  -  mv shadowbox-%{V_aux_shadowbox}-code shadowbox
  +  mv shadowbox-%{V_aux_shadowbox}-code/build shadowbox
  +  rm -rf shadowbox-%{V_aux_shadowbox}-code
   ) || exit $?
   ( cd sites/all/modules/dashplayer || exit $?
 unzip -q -x %{SOURCE306}
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/data-timezone/ data-timezone.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 19:32:57
  Branch: HEAD Handle: 2009102618325700

  Modified files:
openpkg-src/data-timezone
data-timezone.spec

  Log:
upgrading package: data-timezone 2009o - 2009p

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

  patch -p0 '@@ .'
  Index: openpkg-src/data-timezone/data-timezone.spec
  
  $ cvs diff -u -r1.51 -r1.52 data-timezone.spec
  --- openpkg-src/data-timezone/data-timezone.spec  19 Oct 2009 20:16:07 
-  1.51
  +++ openpkg-src/data-timezone/data-timezone.spec  26 Oct 2009 18:32:57 
-  1.52
  @@ -31,8 +31,8 @@
   Class:BASE
   Group:Data
   License:  Open Source
  -Version:  2009o
  -Release:  20091019
  +Version:  2009p
  +Release:  20091026
   
   #   list of sources
   Source0:  ftp://elsie.nci.nih.gov/pub/tzdata%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 19:48:05
  Branch: HEAD Handle: 2009102618480400

  Modified files:
openpkg-src/python  python.spec

  Log:
upgrading package: python 2.6.3 - 2.6.4

  Summary:
RevisionChanges Path
1.88+2  -2  openpkg-src/python/python.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/python/python.spec
  
  $ cvs diff -u -r1.87 -r1.88 python.spec
  --- openpkg-src/python/python.spec2 Oct 2009 17:10:18 -   1.87
  +++ openpkg-src/python/python.spec26 Oct 2009 18:48:04 -  1.88
  @@ -31,8 +31,8 @@
   Class:BASE
   Group:Language
   License:  GPL
  -Version:  2.6.3
  -Release:  20091002
  +Version:  2.6.4
  +Release:  20091026
   
   #   package options
   %option   with_readline  no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 19:48:03
  Branch: HEAD Handle: 2009102618480100

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

  Log:
upgrading package: git 1.6.5.1 - 1.6.5.2

  Summary:
RevisionChanges Path
1.101   +15 -15 openpkg-src/git/git.patch
1.159   +2  -2  openpkg-src/git/git.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/git/git.patch
  
  $ cvs diff -u -r1.100 -r1.101 git.patch
  --- openpkg-src/git/git.patch 18 Oct 2009 10:00:21 -  1.100
  +++ openpkg-src/git/git.patch 26 Oct 2009 18:48:01 -  1.101
  @@ -37,9 +37,9 @@
endif

uninstall:
  -Index: git-1.6.5.1/Documentation/Makefile
   git-1.6.5.1/Documentation/Makefile.orig  2009-10-17 10:11:32 +0200
  -+++ git-1.6.5.1/Documentation/Makefile   2009-10-18 10:41:19 +0200
  +Index: git-1.6.5.2/Documentation/Makefile
  +--- git-1.6.5.2/Documentation/Makefile.orig  2009-10-17 10:11:32 +0200
   git-1.6.5.2/Documentation/Makefile   2009-10-18 10:41:19 +0200
   @@ -51,10 +51,10 @@
infodir?=$(prefix)/share/info
MAKEINFO=makeinfo
  @@ -53,9 +53,9 @@
endif

-include ../config.mak.autogen
  -Index: git-1.6.5.1/Makefile
   git-1.6.5.1/Makefile.orig2009-10-17 10:11:32 +0200
  -+++ git-1.6.5.1/Makefile 2009-10-18 10:41:19 +0200
  +Index: git-1.6.5.2/Makefile
  +--- git-1.6.5.2/Makefile.orig2009-10-17 10:11:32 +0200
   git-1.6.5.2/Makefile 2009-10-18 10:41:19 +0200
   @@ -237,9 +237,9 @@
bindir = $(prefix)/$(bindir_relative)
mandir = share/man
  @@ -91,9 +91,9 @@
endif
else
BASIC_CFLAGS += -DNO_OPENSSL
  -Index: git-1.6.5.1/config.mak.in
   git-1.6.5.1/config.mak.in.orig   2009-10-17 10:11:32 +0200
  -+++ git-1.6.5.1/config.mak.in2009-10-18 10:51:24 +0200
  +Index: git-1.6.5.2/config.mak.in
  +--- git-1.6.5.2/config.mak.in.orig   2009-10-17 10:11:32 +0200
   git-1.6.5.2/config.mak.in2009-10-18 10:51:24 +0200
   @@ -13,9 +13,9 @@
prefix = @prefix@
exec_prefix = @exec_prefix@
  @@ -106,9 +106,9 @@

mand...@mandir@

  -Index: git-1.6.5.1/perl/Makefile.PL
   git-1.6.5.1/perl/Makefile.PL.orig2009-10-17 10:11:32 +0200
  -+++ git-1.6.5.1/perl/Makefile.PL 2009-10-18 10:41:19 +0200
  +Index: git-1.6.5.2/perl/Makefile.PL
  +--- git-1.6.5.2/perl/Makefile.PL.orig2009-10-17 10:11:32 +0200
   git-1.6.5.2/perl/Makefile.PL 2009-10-18 10:41:19 +0200
   @@ -34,5 +34,6 @@
VERSION_FROM= 'Git.pm',
PM  = \%pm,
  @@ -117,9 +117,9 @@
   +INSTALLDIRS = 'vendor',
   +INSTALLSITEMAN3DIR = '$(SITEPREFIX)/man/man3'
);
  -Index: git-1.6.5.1/templates/Makefile
   git-1.6.5.1/templates/Makefile.orig  2009-10-17 10:11:32 +0200
  -+++ git-1.6.5.1/templates/Makefile   2009-10-18 10:41:19 +0200
  +Index: git-1.6.5.2/templates/Makefile
  +--- git-1.6.5.2/templates/Makefile.orig  2009-10-17 10:11:32 +0200
   git-1.6.5.2/templates/Makefile   2009-10-18 10:41:19 +0200
   @@ -8,7 +8,7 @@
TAR ?= tar
RM ?= rm -f
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/git/git.spec
  
  $ cvs diff -u -r1.158 -r1.159 git.spec
  --- openpkg-src/git/git.spec  18 Oct 2009 10:00:21 -  1.158
  +++ openpkg-src/git/git.spec  26 Oct 2009 18:48:01 -  1.159
  @@ -22,7 +22,7 @@
   ##
   
   #   package version
  -%define   V_git   1.6.5.1
  +%define   V_git   1.6.5.2
   %define   V_cogito0.18.2
   %define   V_stgit 0.14.3
   %define   V_guilt 0.32.1
  @@ -40,7 +40,7 @@
   Group:SCM
   License:  GPL
   Version:  %{V_git}
  -Release:  20091018
  +Release:  20091026
   
   #   package options
   %option   with_doc yes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/drupal-module-misc/ drupal-module-misc.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 14:04:31
  Branch: HEAD Handle: 2009102613043000

  Modified files:
openpkg-src/drupal-module-misc
drupal-module-misc.spec

  Log:
add missing View dependencies: Rdf and BitCache

  Summary:
RevisionChanges Path
1.73+162 -156   
openpkg-src/drupal-module-misc/drupal-module-misc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/drupal-module-misc/drupal-module-misc.spec
  
  $ cvs diff -u -r1.72 -r1.73 drupal-module-misc.spec
  --- openpkg-src/drupal-module-misc/drupal-module-misc.spec26 Oct 2009 
12:19:53 -  1.72
  +++ openpkg-src/drupal-module-misc/drupal-module-misc.spec26 Oct 2009 
13:04:30 -  1.73
  @@ -37,6 +37,7 @@
   %define   V_module_avatar_selection6.x-1.6
   %define   V_module_backup_migrate  6.x-1.2
   %define   V_module_biblio  6.x-1.7
  +%define   V_module_bitcache6.x-1.0-beta2
   %define   V_module_calendar6.x-2.2
   %define   V_module_captcha 6.x-2.0
   %define   V_module_captcha_pack6.x-1.0-beta3
  @@ -137,6 +138,7 @@
   %define   V_module_print   6.x-1.0
   %define   V_module_protected_node  6.x-1.5
   %define   V_module_quotes  6.x-1.40
  +%define   V_module_rdf 6.x-1.0-alpha7
   %define   V_module_recent_changes  6.x-1.x-dev
   %define   V_module_rest_server 6.x-1.0
   %define   V_module_revisiontags6.x-1.0
  @@ -229,162 +231,164 @@
   Source9:  
http://ftp.drupal.org/files/projects/avatar_selection-%{V_module_avatar_selection}.tar.gz
   Source10: 
http://ftp.drupal.org/files/projects/backup_migrate-%{V_module_backup_migrate}.tar.gz
   Source11: 
http://ftp.drupal.org/files/projects/biblio-%{V_module_biblio}.tar.gz
  -Source12: 
http://ftp.drupal.org/files/projects/calendar-%{V_module_calendar}.tar.gz
  -Source13: 
http://ftp.drupal.org/files/projects/captcha-%{V_module_captcha}.tar.gz
  -Source14: 
http://ftp.drupal.org/files/projects/captcha_pack-%{V_module_captcha_pack}.tar.gz
  -Source15: http://ftp.drupal.org/files/projects/cck-%{V_module_cck}.tar.gz
  -Source16: 
http://ftp.drupal.org/files/projects/cck_blocks-%{V_module_cck_blocks}.tar.gz
  -Source17: 
http://ftp.drupal.org/files/projects/citation_filter-%{V_module_citation_filter}.tar.gz
  -Source18: 
http://ftp.drupal.org/files/projects/clickpath-%{V_module_clickpath}.tar.gz
  -Source19: 
http://ftp.drupal.org/files/projects/codefilter-%{V_module_codefilter}.tar.gz
  -Source20: 
http://ftp.drupal.org/files/projects/comment_subject-%{V_module_comment_subject}.tar.gz
  -Source21: 
http://ftp.drupal.org/files/projects/comment_subscribe-%{V_module_comment_subscribe}.tar.gz
  -Source22: 
http://ftp.drupal.org/files/projects/condition-%{V_module_condition}.tar.gz
  -Source23: 
http://ftp.drupal.org/files/projects/contemplate-%{V_module_contemplate}.tar.gz
  -Source24: 
http://ftp.drupal.org/files/projects/countdowntimer-%{V_module_countdowntimer}.tar.gz
  -Source25: 
http://ftp.drupal.org/files/projects/css_injector-%{V_module_css_injector}.tar.gz
  -Source26: 
http://ftp.drupal.org/files/projects/custom_breadcrumbs-%{V_module_custom_breadcrumbs}.tar.gz
  -Source27: 
http://ftp.drupal.org/files/projects/daily-%{V_module_daily}.tar.gz
  -Source28: 
http://ftp.drupal.org/files/projects/date-%{V_module_date}.tar.gz
  -Source29: 
http://ftp.drupal.org/files/projects/dashplayer-%{V_module_dashplayer}.tar.gz
  -Source30: 
http://ftp.drupal.org/files/projects/devel-%{V_module_devel}.tar.gz
  -Source31: 
http://ftp.drupal.org/files/projects/dhtml_menu-%{V_module_dhtml_menu}.tar.gz
  -Source32: 
http://ftp.drupal.org/files/projects/diff-%{V_module_diff}.tar.gz
  -Source33: 
http://ftp.drupal.org/files/projects/download_count-%{V_module_download_count}.tar.gz
  -Source34: 
http://ftp.drupal.org/files/projects/email_registration-%{V_module_email_registration}.tar.gz
  -Source35: 
http://ftp.drupal.org/files/projects/epublish-%{V_module_epublish}.tar.gz
  -Source36: 
http://ftp.drupal.org/files/projects/event-%{V_module_event}.tar.gz
  -Source37: 
http://ftp.drupal.org/files/projects/exhibit-%{V_module_exhibit}.tar.gz
  -Source38: 
http://ftp.drupal.org/files/projects/extlink-%{V_module_extlink}.tar.gz
  -Source39: 

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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 08:44:14
  Branch: HEAD Handle: 2009102507441400

  Modified files:
openpkg-src/msmtp   msmtp.spec

  Log:
upgrading package: msmtp 1.4.18 - 1.4.19

  Summary:
RevisionChanges Path
1.13+2  -2  openpkg-src/msmtp/msmtp.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/msmtp/msmtp.spec
  
  $ cvs diff -u -r1.12 -r1.13 msmtp.spec
  --- openpkg-src/msmtp/msmtp.spec  9 Sep 2009 07:46:15 -   1.12
  +++ openpkg-src/msmtp/msmtp.spec  25 Oct 2009 07:44:14 -  1.13
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Mail
   License:  GPL
  -Version:  1.4.18
  -Release:  20090909
  +Version:  1.4.19
  +Release:  20091025
   
   #   list of sources
   Source0:  http://switch.dl.sourceforge.net/msmtp/msmtp-%{version}.tar.bz2
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 18:54:57
  Branch: HEAD Handle: 2009102517545700

  Modified files:
openpkg-src/ncurses ncurses.spec

  Log:
upgrading package: ncurses 5.7.20091017 - 5.7.20091024

  Summary:
RevisionChanges Path
1.447   +5  -3  openpkg-src/ncurses/ncurses.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/ncurses/ncurses.spec
  
  $ cvs diff -u -r1.446 -r1.447 ncurses.spec
  --- openpkg-src/ncurses/ncurses.spec  17 Oct 2009 19:02:13 -  1.446
  +++ openpkg-src/ncurses/ncurses.spec  25 Oct 2009 17:54:57 -  1.447
  @@ -76,9 +76,10 @@
   %define   V_patch51 20091003
   %define   V_patch52 20091010
   %define   V_patch53 20091017
  +%define   V_patch54 20091024
   %define   V_patchB  %{V_patch1}
  -%define   V_patchL  %{V_patch53}
  -%define   V_patches 53
  +%define   V_patchL  %{V_patch54}
  +%define   V_patches 54
   
   #   package information
   Name: ncurses
  @@ -91,7 +92,7 @@
   Group:Terminal
   License:  MIT-style
   Version:  %{V_base}.%{V_patchL}
  -Release:  20091017
  +Release:  20091025
   
   #   list of sources
   Source0:  ftp://invisible-island.net/ncurses/ncurses-%{V_base}.tar.gz
  @@ -148,6 +149,7 @@
   Patch51:  
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch51}.patch.gz
   Patch52:  
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch52}.patch.gz
   Patch53:  
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch53}.patch.gz
  +Patch54:  
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch54}.patch.gz
   Patch100: ncurses.patch
   
   #   build information
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 19:35:07
  Branch: HEAD Handle: 2009102618350700

  Modified files:
openpkg-src/dhtml   dhtml.spec

  Log:
modifying package: dhtml-0 20091022 - 20091026

  Summary:
RevisionChanges Path
1.185   +2  -2  openpkg-src/dhtml/dhtml.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/dhtml/dhtml.spec
  
  $ cvs diff -u -r1.184 -r1.185 dhtml.spec
  --- openpkg-src/dhtml/dhtml.spec  22 Oct 2009 21:14:07 -  1.184
  +++ openpkg-src/dhtml/dhtml.spec  26 Oct 2009 18:35:07 -  1.185
  @@ -66,7 +66,7 @@
   %define   V_excanvas 20090130
   %define   V_oat  2.8
   %define   V_extjs3.0.0
  -%define   V_raphael  1.1
  +%define   V_raphael  1.2
   
   #   package information
   Name: dhtml
  @@ -79,7 +79,7 @@
   Group:HTML
   License:  Open Source
   Version:  0
  -Release:  20091022
  +Release:  20091026
   
   #   list of sources
   Source0:  
ftp://ftp.openpkg.org/sources/CPY/VERSIONED/dhtml/prototype-%{V_prototype}.js
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 20:14:33
  Branch: HEAD Handle: 2009102619143200

  Modified files:
openpkg-src/r   r.spec

  Log:
upgrading package: r 2.9.2 - 2.10.0

  Summary:
RevisionChanges Path
1.36+2  -2  openpkg-src/r/r.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/r/r.spec
  
  $ cvs diff -u -r1.35 -r1.36 r.spec
  --- openpkg-src/r/r.spec  24 Aug 2009 16:33:46 -  1.35
  +++ openpkg-src/r/r.spec  26 Oct 2009 19:14:32 -  1.36
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Algorithm
   License:  GPL
  -Version:  2.9.2
  -Release:  20090824
  +Version:  2.10.0
  +Release:  20091026
   
   #   package options
   %option   with_x11  yes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:24:36
  Branch: HEAD Handle: 2009102809243600

  Modified files:
openpkg-src/perl-text   perl-text.spec

  Log:
modifying package: perl-text-5.10 20090927 - 20091028

  Summary:
RevisionChanges Path
1.97+2  -2  openpkg-src/perl-text/perl-text.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-text/perl-text.spec
  
  $ cvs diff -u -r1.96 -r1.97 perl-text.spec
  --- openpkg-src/perl-text/perl-text.spec  27 Sep 2009 11:27:56 -  
1.96
  +++ openpkg-src/perl-text/perl-text.spec  28 Oct 2009 09:24:36 -  
1.97
  @@ -37,7 +37,7 @@
   %define   V_string_format1.16
   %define   V_string_shellquote1.03
   %define   V_pod_escapes  1.04
  -%define   V_pod_simple   3.08
  +%define   V_pod_simple   3.09
   %define   V_number_format1.73
   
   #   package information
  @@ -51,7 +51,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20090927
  +Release:  20091028
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Text/Text-Template-%{V_text_template}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 19:48:06
  Branch: HEAD Handle: 2009102618480600

  Modified files:
openpkg-src/librmathlibrmath.spec

  Log:
upgrading package: librmath 2.9.2 - 2.10.0

  Summary:
RevisionChanges Path
1.6 +2  -2  openpkg-src/librmath/librmath.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/librmath/librmath.spec
  
  $ cvs diff -u -r1.5 -r1.6 librmath.spec
  --- openpkg-src/librmath/librmath.spec24 Aug 2009 16:25:02 -  
1.5
  +++ openpkg-src/librmath/librmath.spec26 Oct 2009 18:48:06 -  
1.6
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Algorithm
   License:  GPL
  -Version:  2.9.2
  -Release:  20090824
  +Version:  2.10.0
  +Release:  20091026
   
   #   list of sources
   Source0:  http://cran.r-project.org/src/base/R-2/R-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/drupal-module-misc/ drupal-module-misc.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 17:30:06
  Branch: HEAD Handle: 2009102616300600

  Modified files:
openpkg-src/drupal-module-misc
drupal-module-misc.spec

  Log:
try to fix shadowbox once again

  Summary:
RevisionChanges Path
1.74+6  -4  
openpkg-src/drupal-module-misc/drupal-module-misc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/drupal-module-misc/drupal-module-misc.spec
  
  $ cvs diff -u -r1.73 -r1.74 drupal-module-misc.spec
  --- openpkg-src/drupal-module-misc/drupal-module-misc.spec26 Oct 2009 
13:04:30 -  1.73
  +++ openpkg-src/drupal-module-misc/drupal-module-misc.spec26 Oct 2009 
16:30:06 -  1.74
  @@ -202,7 +202,7 @@
   %define   V_aux_simplepie  1.2
   %define   V_aux_tinymce2_1_3
   %define   V_aux_dompdf 0.5.1
  -%define   V_aux_shadowbox  2.0
  +%define   V_aux_shadowbox  3.0b
   %define   V_aux_dashplayer 134
   
   #   package information
  @@ -394,7 +394,7 @@
   Source302:http://simplepie.org/downloads/simplepie_%{V_aux_simplepie}.zip
   Source303:
http://switch.dl.sourceforge.net/tinymce/tinymce_%{V_aux_tinymce}.zip
   Source304:
http://switch.dl.sourceforge.net/dompdf/dompdf-%{V_aux_dompdf}.tar.gz
  -Source305:
http://michaeljackson.googlecode.com/files/shadowbox-%{V_aux_shadowbox}-code.zip
  +Source305:
ftp://ftp.openpkg.org/sources/CPY/VERSIONED/shadowbox/shadowbox-build-%{V_aux_shadowbox}.zip
   Source306:
http://www.tmtdigital.com/system/files/dashplayer_v%{V_aux_dashplayer}.zip
   Patch0:   drupal-module-misc.patch
   
  @@ -1493,8 +1493,10 @@
   ) || exit $?
   ( cd sites/all/modules/shadowbox || exit $?
 unzip -q -x %{SOURCE305}
  -  mv shadowbox-%{V_aux_shadowbox}-code/build shadowbox
  -  rm -rf shadowbox-%{V_aux_shadowbox}-code
  +  mv shadowbox-build-%{V_aux_shadowbox} shadowbox
  +  %{l_shtool} subst \
  +  -e 
's;sites/all/plugins/shadowbox;sites/all/modules/shadowbox/shadowbox;g' \
  +  shadowbox.module
   ) || exit $?
   ( cd sites/all/modules/dashplayer || exit $?
 unzip -q -x %{SOURCE306}
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 19:48:09
  Branch: HEAD Handle: 2009102618480800

  Modified files:
openpkg-src/perl-xmlperl-xml.spec

  Log:
modifying package: perl-xml-5.10 20091023 - 20091026

  Summary:
RevisionChanges Path
1.372   +2  -2  openpkg-src/perl-xml/perl-xml.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-xml/perl-xml.spec
  
  $ cvs diff -u -r1.371 -r1.372 perl-xml.spec
  --- openpkg-src/perl-xml/perl-xml.spec23 Oct 2009 17:44:41 -  
1.371
  +++ openpkg-src/perl-xml/perl-xml.spec26 Oct 2009 18:48:08 -  
1.372
  @@ -23,7 +23,7 @@
   
   #   versions of individual parts
   %define   V_perl5.10
  -%define   V_html_parser 3.63
  +%define   V_html_parser 3.64
   %define   V_html_simpleparse0.12
   %define   V_html_table  2.08
   %define   V_html_tagreader  1.10
  @@ -100,7 +100,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091023
  +Release:  20091026
   
   #   package options
   %option   with_libxmlno
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   26-Oct-2009 19:27:57
  Branch: HEAD Handle: 2009102618275600

  Modified files:
openpkg-src/lighttpdlighttpd.spec

  Log:
upgrading package: lighttpd 1.4.23 - 1.4.24

  Summary:
RevisionChanges Path
1.49+2  -2  openpkg-src/lighttpd/lighttpd.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/lighttpd/lighttpd.spec
  
  $ cvs diff -u -r1.48 -r1.49 lighttpd.spec
  --- openpkg-src/lighttpd/lighttpd.spec19 Jun 2009 21:04:41 -  
1.48
  +++ openpkg-src/lighttpd/lighttpd.spec26 Oct 2009 18:27:56 -  
1.49
  @@ -31,8 +31,8 @@
   Class:BASE
   Group:Web
   License:  MIT-style
  -Version:  1.4.23
  -Release:  20090619
  +Version:  1.4.24
  +Release:  20091026
   
   #   package options
   %option   with_fslyes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 20:42:59
  Branch: HEAD Handle: 2009102519425900

  Modified files:
openpkg-src/perl-util   perl-util.spec

  Log:
modifying package: perl-util-5.10 20091018 - 20091025

  Summary:
RevisionChanges Path
1.477   +2  -2  openpkg-src/perl-util/perl-util.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-util/perl-util.spec
  
  $ cvs diff -u -r1.476 -r1.477 perl-util.spec
  --- openpkg-src/perl-util/perl-util.spec  18 Oct 2009 19:29:50 -  
1.476
  +++ openpkg-src/perl-util/perl-util.spec  25 Oct 2009 19:42:59 -  
1.477
  @@ -94,7 +94,7 @@
   %define   V_capitalization   0.03
   %define   V_check_isa0.04
   %define   V_package_constants0.02
  -%define   V_carp_clan6.03
  +%define   V_carp_clan6.04
   
   #   package information
   Name: perl-util
  @@ -107,7 +107,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091018
  +Release:  20091025
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Test/Test-%{V_test}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   25-Oct-2009 20:42:52
  Branch: HEAD Handle: 2009102519425100

  Modified files:
openpkg-src/perl-vcsperl-vcs.patch perl-vcs.spec

  Log:
modifying package: perl-vcs-5.10 20090904 - 20091025

  Summary:
RevisionChanges Path
1.7 +20 -20 openpkg-src/perl-vcs/perl-vcs.patch
1.43+2  -2  openpkg-src/perl-vcs/perl-vcs.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-vcs/perl-vcs.patch
  
  $ cvs diff -u -r1.6 -r1.7 perl-vcs.patch
  --- openpkg-src/perl-vcs/perl-vcs.patch   4 May 2009 06:44:32 -   
1.6
  +++ openpkg-src/perl-vcs/perl-vcs.patch   25 Oct 2009 19:42:51 -  
1.7
  @@ -1,20 +1,9 @@
  -Index: SVN-Look-0.14.12/lib/SVN/Look.pm
   SVN-Look-0.14.12/lib/SVN/Look.pm.orig2008-11-06 04:07:11 +0100
  -+++ SVN-Look-0.14.12/lib/SVN/Look.pm 2009-02-01 20:50:11 +0100
  -@@ -45,6 +45,7 @@
  - our $SVNLOOK;
  - my $root = rootdir();
  - for my $d (
  -+@l_prefix@/bin,
  - path(),
  - catfile($root, 'usr', 'local', 'bin'),
  - catfile($root, 'usr', 'bin'),
  -Index: SVN-Look-0.14.12/Makefile.PL
   SVN-Look-0.14.12/Makefile.PL.orig2009-05-04 08:38:01 +0200
  -+++ SVN-Look-0.14.12/Makefile.PL 2009-05-04 08:38:49 +0200
  -@@ -4,22 +4,6 @@
  - use File::Spec::Functions qw/catfile path/;
  - use ExtUtils::MakeMaker;
  +Index: SVN-Look-0.15/Makefile.PL
  +--- SVN-Look-0.15/Makefile.PL.orig   2009-10-25 02:06:37 +0100
   SVN-Look-0.15/Makefile.PL2009-10-25 18:50:55 +0100
  +@@ -14,22 +14,6 @@
  + 'author-tests' = \$author_tests,
  + ) or die $usage;

   -my $svnlook;
   -for my $d (
  @@ -32,6 +21,17 @@
   -die Aborting because I couldn't find the 'svnlook' executable.\n
   -unless $svnlook;
   -
  - WriteMakefile(
  - NAME= 'SVN::Look',
  - AUTHOR  = 'Gustavo Chaves gustavo+p...@gnustavo.org',
  + if ($author_tests) {
  + open(ENABLED, t/author.enabled) or die Can't touch 
./t/author.enabled: $!;
  + close(ENABLED) or die Can't touch 
./t/author.enabled: $!;
  +Index: SVN-Look-0.15/lib/SVN/Look.pm
  +--- SVN-Look-0.15/lib/SVN/Look.pm.orig   2009-10-25 02:16:36 +0100
   SVN-Look-0.15/lib/SVN/Look.pm2009-10-25 18:49:26 +0100
  +@@ -45,6 +45,7 @@
  + our $SVNLOOK;
  + my $root = rootdir();
  + for my $d (
  ++@l_prefix@/bin,
  + path(),
  + catfile($root, 'usr', 'local', 'bin'),
  + catfile($root, 'usr', 'bin'),
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-vcs/perl-vcs.spec
  
  $ cvs diff -u -r1.42 -r1.43 perl-vcs.spec
  --- openpkg-src/perl-vcs/perl-vcs.spec4 Sep 2009 19:08:55 -   
1.42
  +++ openpkg-src/perl-vcs/perl-vcs.spec25 Oct 2009 19:42:51 -  
1.43
  @@ -34,7 +34,7 @@
   %define   V_rcs_parser  0.03
   %define   V_text_diff   1.37
   %define   V_text_patch  1.4
  -%define   V_svn_look0.14.12
  +%define   V_svn_look0.15
   %define   V_mtn_automate0.04
   
   #   package information
  @@ -48,7 +48,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20090904
  +Release:  20091025
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Algorithm/Algorithm-Diff-%{V_algorithm_diff}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   30-Oct-2009 22:33:27
  Branch: HEAD Handle: 2009103021332700

  Modified files:
openpkg-src/xml2rfc xml2rfc.spec

  Log:
upgrading package: xml2rfc 1.33 - 1.34

  Summary:
RevisionChanges Path
1.47+2  -2  openpkg-src/xml2rfc/xml2rfc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/xml2rfc/xml2rfc.spec
  
  $ cvs diff -u -r1.46 -r1.47 xml2rfc.spec
  --- openpkg-src/xml2rfc/xml2rfc.spec  18 Apr 2009 13:18:59 -  1.46
  +++ openpkg-src/xml2rfc/xml2rfc.spec  30 Oct 2009 21:33:27 -  1.47
  @@ -22,7 +22,7 @@
   ##
   
   #   package version
  -%define   V_tool1.33
  +%define   V_tool1.34
   %define   V_library 20080929
   
   #   package information
  @@ -36,7 +36,7 @@
   Group:XML
   License:  Open Source
   Version:  %{V_tool}
  -Release:  20080929
  +Release:  20091030
   
   #   list of sources
   Source0:  http://xml.resource.org/authoring/xml2rfc-%{V_tool}.tgz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   30-Oct-2009 22:30:57
  Branch: HEAD Handle: 2009103021305700

  Modified files:
openpkg-src/fetchmail   fetchmail.spec

  Log:
upgrading package: fetchmail 6.3.12 - 6.3.13

  Summary:
RevisionChanges Path
1.99+2  -2  openpkg-src/fetchmail/fetchmail.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/fetchmail/fetchmail.spec
  
  $ cvs diff -u -r1.98 -r1.99 fetchmail.spec
  --- openpkg-src/fetchmail/fetchmail.spec  6 Oct 2009 06:32:48 -   
1.98
  +++ openpkg-src/fetchmail/fetchmail.spec  30 Oct 2009 21:30:57 -  
1.99
  @@ -31,8 +31,8 @@
   Class:BASE
   Group:Mail
   License:  GPL
  -Version:  6.3.12
  -Release:  20091006
  +Version:  6.3.13
  +Release:  20091030
   
   #   package options
   %option   with_conf  no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:25:22
  Branch: HEAD Handle: 2009102809252200

  Modified files:
openpkg-src/bitflu  bitflu.spec

  Log:
upgrading package: bitflu 0.92 - 0.93

  Summary:
RevisionChanges Path
1.24+2  -2  openpkg-src/bitflu/bitflu.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/bitflu/bitflu.spec
  
  $ cvs diff -u -r1.23 -r1.24 bitflu.spec
  --- openpkg-src/bitflu/bitflu.spec16 Aug 2009 18:12:46 -  1.23
  +++ openpkg-src/bitflu/bitflu.spec28 Oct 2009 09:25:22 -  1.24
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:P2P
   License:  Artistic
  -Version:  0.92
  -Release:  20090816
  +Version:  0.93
  +Release:  20091028
   
   #   list of sources
   Source0:  http://bitflu.workaround.ch/bitflu/bitflu-%{version}.tgz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:24:42
  Branch: HEAD Handle: 2009102809244200

  Modified files:
openpkg-src/vilevile.spec

  Log:
upgrading package: vile 9.7v - 9.7w

  Summary:
RevisionChanges Path
1.99+5  -2  openpkg-src/vile/vile.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/vile/vile.spec
  
  $ cvs diff -u -r1.98 -r1.99 vile.spec
  --- openpkg-src/vile/vile.spec14 Oct 2009 09:07:33 -  1.98
  +++ openpkg-src/vile/vile.spec28 Oct 2009 09:24:42 -  1.99
  @@ -45,7 +45,8 @@
   %define   V_patch20 t
   %define   V_patch21 u
   %define   V_patch22 v
  -%define   V_patchL  %{V_patch22}
  +%define   V_patch23 w
  +%define   V_patchL  %{V_patch23}
   
   #   package information
   Name: vile
  @@ -58,7 +59,7 @@
   Group:Editor
   License:  GPL
   Version:  %{V_base}%{V_patchL}
  -Release:  20091014
  +Release:  20091028
   
   #   package options
   %option   with_x11   no
  @@ -88,6 +89,7 @@
   Patch20:  
ftp://invisible-island.net/vile/patches/vile-%{V_base}%{V_patch20}.patch.gz
   Patch21:  
ftp://invisible-island.net/vile/patches/vile-%{V_base}%{V_patch21}.patch.gz
   Patch22:  
ftp://invisible-island.net/vile/patches/vile-%{V_base}%{V_patch22}.patch.gz
  +Patch23:  
ftp://invisible-island.net/vile/patches/vile-%{V_base}%{V_patch23}.patch.gz
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -144,6 +146,7 @@
   %patch -p1 -P 20
   %patch -p1 -P 21
   %patch -p1 -P 22
  +%patch -p1 -P 23
   %patch -p0 -P 0
   chmod u+w filters/sql-filt.l*
   %{l_shtool} subst \
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:26:26
  Branch: HEAD Handle: 2009102809262500

  Modified files:
openpkg-src/lbreakout   lbreakout.spec

  Log:
upgrading package: lbreakout 2.5.2 - 2.6

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

  patch -p0 '@@ .'
  Index: openpkg-src/lbreakout/lbreakout.spec
  
  $ cvs diff -u -r1.32 -r1.33 lbreakout.spec
  --- openpkg-src/lbreakout/lbreakout.spec  30 Jun 2009 20:20:45 -  
1.32
  +++ openpkg-src/lbreakout/lbreakout.spec  28 Oct 2009 09:26:25 -  
1.33
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Games
   License:  GPL
  -Version:  2.5.2
  -Release:  20080101
  +Version:  2.6
  +Release:  20091028
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/sourceforge/lgames/lbreakout2-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:26:45
  Branch: HEAD Handle: 2009102809264500

  Modified files:
openpkg-src/js  js.spec

  Log:
modifying package: js-1.6.20070208 20091019 - 20091028

  Summary:
RevisionChanges Path
1.104   +2  -2  openpkg-src/js/js.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/js/js.spec
  
  $ cvs diff -u -r1.103 -r1.104 js.spec
  --- openpkg-src/js/js.spec19 Oct 2009 20:18:39 -  1.103
  +++ openpkg-src/js/js.spec28 Oct 2009 09:26:45 -  1.104
  @@ -28,7 +28,7 @@
   %define   V_javascript_squish   0.07
   %define   V_javascript_code 0.08
   %define   V_javascript_jslint   0.06
  -%define   V_javascript_engine   0.039
  +%define   V_javascript_engine   0.040
   %define   V_jsmin   20080803
   %define   V_jsapigen0.4
   
  @@ -43,7 +43,7 @@
   Group:Language
   License:  MPL/GPL/LGPL
   Version:  %{V_js}
  -Release:  20091019
  +Release:  20091028
   
   #   package options
   %option   with_fileyes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 21:57:46
  Branch: HEAD Handle: 2009102820574500

  Modified files:
openpkg-src/adobeflex   adobeflex.spec

  Log:
upgrading package: adobeflex 3.4.0.9271 - 3.4.1.10084

  Summary:
RevisionChanges Path
1.26+2  -2  openpkg-src/adobeflex/adobeflex.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/adobeflex/adobeflex.spec
  
  $ cvs diff -u -r1.25 -r1.26 adobeflex.spec
  --- openpkg-src/adobeflex/adobeflex.spec  4 Sep 2009 19:18:23 -   
1.25
  +++ openpkg-src/adobeflex/adobeflex.spec  28 Oct 2009 20:57:45 -  
1.26
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Flash
   License:  MPL
  -Version:  3.4.0.9271
  -Release:  20090904
  +Version:  3.4.1.10084
  +Release:  20091028
   
   #   list of sources
   Source0:  
http://fpdownload.adobe.com/pub/flex/sdk/builds/flex3/flex_sdk_%{version}_mpl.zip
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 21:55:33
  Branch: HEAD Handle: 2009102820553300

  Modified files:
openpkg-src/byacc   byacc.spec

  Log:
upgrading package: byacc 20090221 - 20091027

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

  patch -p0 '@@ .'
  Index: openpkg-src/byacc/byacc.spec
  
  $ cvs diff -u -r1.17 -r1.18 byacc.spec
  --- openpkg-src/byacc/byacc.spec  18 Apr 2009 13:09:05 -  1.17
  +++ openpkg-src/byacc/byacc.spec  28 Oct 2009 20:55:33 -  1.18
  @@ -31,8 +31,8 @@
   Class:PLUS
   Group:CompilerCompiler
   License:  Public Domain
  -Version:  20090221
  -Release:  20090222
  +Version:  20091027
  +Release:  20091028
   
   #   list of sources
   Source0:  ftp://invisible-island.net/byacc/byacc-%{version}.tgz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 22:56:26
  Branch: HEAD Handle: 2009110121562600

  Modified files:
openpkg-src/git git.spec

  Log:
apply a workaround for some ancient SLES systems which seem to have a
'struct option' somewhere in the system includes

  Summary:
RevisionChanges Path
1.160   +4  -1  openpkg-src/git/git.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/git/git.spec
  
  $ cvs diff -u -r1.159 -r1.160 git.spec
  --- openpkg-src/git/git.spec  26 Oct 2009 18:48:01 -  1.159
  +++ openpkg-src/git/git.spec  1 Nov 2009 21:56:26 -   1.160
  @@ -40,7 +40,7 @@
   Group:SCM
   License:  GPL
   Version:  %{V_git}
  -Release:  20091026
  +Release:  20091101
   
   #   package options
   %option   with_doc yes
  @@ -142,6 +142,9 @@
   %build
   #   build GIT core
   ( cd git-%{V_git}
  +  find . -name *.[ch] -print |\
  +  xargs %{l_shtool} subst \
  +  -e 's;struct option;struct git_option;g'
 ( echo GITWEB_CONFIG = %{l_prefix}/etc/git/gitweb.config.pl
   echo GITWEB_BASE_URL   = /openpkg-cgi/gitweb.d
   echo GITWEB_CSS= /openpkg-cgi/gitweb.d/gitweb.css
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   03-Nov-2009 19:52:03
  Branch: HEAD Handle: 2009110318520300

  Added files:
openpkg-src/vpncvpnc.conf vpnc.patch vpnc.spec

  Log:
new package: vpnc 0.5.3 (Virtual Private Network Client)

  Summary:
RevisionChanges Path
1.1 +6  -0  openpkg-src/vpnc/vpnc.conf
1.1 +33 -0  openpkg-src/vpnc/vpnc.patch
1.1 +120 -0 openpkg-src/vpnc/vpnc.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/vpnc/vpnc.conf
  
  $ cvs diff -u -r0 -r1.1 vpnc.conf
  --- /dev/null 2009-11-03 19:52:01 +0100
  +++ vpnc.conf 2009-11-03 19:52:03 +0100
  @@ -0,0 +1,6 @@
  +IPSec ID example-inc
  +IPSec gateway ipsec.example.com
  +IPSec secret example-secret
  +IKE Authmode hybrid
  +Xauth username john.doe
  +Xauth password john-secret
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/vpnc/vpnc.patch
  
  $ cvs diff -u -r0 -r1.1 vpnc.patch
  --- /dev/null 2009-11-03 19:52:01 +0100
  +++ vpnc.patch2009-11-03 19:52:03 +0100
  @@ -0,0 +1,33 @@
  +Index: Makefile
  +--- Makefile.orig2008-11-19 21:36:12 +0100
   Makefile 2009-11-03 19:41:11 +0100
  +@@ -21,11 +21,11 @@
  + 
  + DESTDIR=
  + PREFIX=/usr/local
  +-ETCDIR=/etc/vpnc
  ++ETCDIR=$(PREFIX)/etc/vpnc
  + BINDIR=$(PREFIX)/bin
  + SBINDIR=$(PREFIX)/sbin
  +-MANDIR=$(PREFIX)/share/man
  +-DOCDIR=$(PREFIX)/share/doc/vpnc
  ++MANDIR=$(PREFIX)/man
  ++DOCDIR=$(PREFIX)/share/vpnc
  + 
  + SRCS = sysdep.c vpnc-debug.c isakmp-pkt.c tunip.c config.c dh.c 
math_group.c supp.c decrypt-utils.c
  + BINS = vpnc cisco-decrypt
  +@@ -52,11 +52,10 @@
  + 
  + CC=gcc
  + CFLAGS ?= -O3 -g
  +-CFLAGS += -W -Wall -Wmissing-declarations -Wwrite-strings
  +-CFLAGS +=  $(shell libgcrypt-config --cflags)
  +-CPPFLAGS += -DVERSION=\$(VERSION)\ $(OPENSSL_GPL_VIOLATION)
  ++override CFLAGS +=  $(shell libgcrypt-config --cflags)
  ++override CPPFLAGS += -DVERSION=\$(VERSION)\ $(OPENSSL_GPL_VIOLATION)
  + LDFLAGS ?= -g
  +-LDFLAGS += $(shell libgcrypt-config --libs) $(OPENSSLLIBS)
  ++override LDFLAGS += $(shell libgcrypt-config --libs) $(OPENSSLLIBS)
  + 
  + ifeq ($(shell uname -s), SunOS)
  + LDFLAGS += -lnsl -lresolv -lsocket
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/vpnc/vpnc.spec
  
  $ cvs diff -u -r0 -r1.1 vpnc.spec
  --- /dev/null 2009-11-03 19:52:01 +0100
  +++ vpnc.spec 2009-11-03 19:52:03 +0100
  @@ -0,0 +1,120 @@
  +##
  +##  vpnc.spec -- OpenPKG RPM Package Specification
  +##  Copyright (c) 2000-2009 OpenPKG Foundation e.V. http://openpkg.net/
  +##
  +##  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.
  +##
  +
  +#   FIXME: rse: run-command scripts still missing
  +
  +#   package information
  +Name: vpnc
  +Summary:  Virtual Private Network Client
  +URL:  http://www.unix-ag.uni-kl.de/~massar/vpnc/
  +Vendor:   G. Keating, M. Massar, D.V.P. Christiansen
  +Packager: OpenPKG Foundation e.V.
  +Distribution: OpenPKG Community
  +Class:EVAL
  +Group:Network
  +License:  GPL
  +Version:  0.5.3
  +Release:  20091103
  +
  +#   package options
  +%option   with_hybrid  yes
  +
  +#   list of sources
  +Source0:  
http://www.unix-ag.uni-kl.de/~massar/vpnc/vpnc-%{version}.tar.gz
  +Source1:  vpnc.conf
  +Patch0:   vpnc.patch
  +
  +#   build information
  +Prefix:   %{l_prefix}
  +BuildRoot:%{l_buildroot}
  

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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   30-Oct-2009 22:30:41
  Branch: HEAD Handle: 2009103021304100

  Modified files:
openpkg-src/libffi  libffi.spec

  Log:
upgrading package: libffi 3.0.9rc2 - 3.0.9rc3

  Summary:
RevisionChanges Path
1.37+2  -2  openpkg-src/libffi/libffi.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/libffi/libffi.spec
  
  $ cvs diff -u -r1.36 -r1.37 libffi.spec
  --- openpkg-src/libffi/libffi.spec28 Oct 2009 09:28:55 -  1.36
  +++ openpkg-src/libffi/libffi.spec30 Oct 2009 21:30:41 -  1.37
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Compiler
   License:  LGPL
  -Version:  3.0.9rc2
  -Release:  20091028
  +Version:  3.0.9rc3
  +Release:  20091030
   
   #   list of sources
   Source0:  ftp://sourceware.org/pub/libffi/libffi-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/php-zf/ php-zf.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 22:01:00
  Branch: HEAD Handle: 2009102821005900

  Modified files:
openpkg-src/php-zf  php-zf.spec

  Log:
upgrading package: php-zf 1.9.4 - 1.9.5

  Summary:
RevisionChanges Path
1.34+3  -3  openpkg-src/php-zf/php-zf.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/php-zf/php-zf.spec
  
  $ cvs diff -u -r1.33 -r1.34 php-zf.spec
  --- openpkg-src/php-zf/php-zf.spec14 Oct 2009 17:12:25 -  1.33
  +++ openpkg-src/php-zf/php-zf.spec28 Oct 2009 21:00:59 -  1.34
  @@ -22,8 +22,8 @@
   ##
   
   #   package version
  -%define   V_opkg 1.9.4
  -%define   V_dist 1.9.4
  +%define   V_opkg 1.9.5
  +%define   V_dist 1.9.5
   
   #   package information
   Name: php-zf
  @@ -36,7 +36,7 @@
   Group:Language
   License:  BSD
   Version:  %{V_opkg}
  -Release:  20091014
  +Release:  20091028
   
   #   list of sources
   Source0:  
http://framework.zend.com/releases/ZendFramework-%{V_dist}/ZendFramework-%{V_dist}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   30-Oct-2009 22:32:16
  Branch: HEAD Handle: 2009103021321600

  Modified files:
openpkg-src/libmicrohttpd
libmicrohttpd.spec

  Log:
upgrading package: libmicrohttpd 0.4.2 - 0.4.4

  Summary:
RevisionChanges Path
1.4 +2  -2  openpkg-src/libmicrohttpd/libmicrohttpd.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/libmicrohttpd/libmicrohttpd.spec
  
  $ cvs diff -u -r1.3 -r1.4 libmicrohttpd.spec
  --- openpkg-src/libmicrohttpd/libmicrohttpd.spec  17 May 2009 17:46:42 
-  1.3
  +++ openpkg-src/libmicrohttpd/libmicrohttpd.spec  30 Oct 2009 21:32:16 
-  1.4
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Web
   License:  LGPL
  -Version:  0.4.2
  -Release:  20090517
  +Version:  0.4.4
  +Release:  20091030
   
   #   package options
   %option   with_ssl  yes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   09-Nov-2009 19:58:01
  Branch: HEAD Handle: 2009110918580100

  Modified files:
openpkg-src/varnish varnish.spec

  Log:
upgrading package: varnish 2.0.4 - 2.0.5

  Summary:
RevisionChanges Path
1.23+3  -3  openpkg-src/varnish/varnish.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/varnish/varnish.spec
  
  $ cvs diff -u -r1.22 -r1.23 varnish.spec
  --- openpkg-src/varnish/varnish.spec  30 Jun 2009 20:21:40 -  1.22
  +++ openpkg-src/varnish/varnish.spec  9 Nov 2009 18:58:01 -   1.23
  @@ -22,8 +22,8 @@
   ##
   
   #   package version
  -%define   V_opkg 2.0.4
  -%define   V_dist 2.0.4
  +%define   V_opkg 2.0.5
  +%define   V_dist 2.0.5
   
   #   package information
   Name: varnish
  @@ -36,7 +36,7 @@
   Group:Web
   License:  BSD
   Version:  %{V_opkg}
  -Release:  20090402
  +Release:  20091109
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/sourceforge/varnish/varnish-%{V_dist}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   04-Nov-2009 17:57:40
  Branch: HEAD Handle: 2009110416574000

  Modified files:
openpkg-src/bnd bnd.spec

  Log:
upgrading package: bnd 0.0.372 - 0.0.375

  Summary:
RevisionChanges Path
1.15+2  -2  openpkg-src/bnd/bnd.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/bnd/bnd.spec
  
  $ cvs diff -u -r1.14 -r1.15 bnd.spec
  --- openpkg-src/bnd/bnd.spec  17 Oct 2009 19:01:42 -  1.14
  +++ openpkg-src/bnd/bnd.spec  4 Nov 2009 16:57:40 -   1.15
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Archiver
   License:  Open Source
  -Version:  0.0.372
  -Release:  20091017
  +Version:  0.0.375
  +Release:  20091104
   
   #   list of sources
   Source0:  
http://www.aqute.biz/repo/biz/aQute/bnd/%{version}/bnd-%{version}.jar
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   04-Nov-2009 17:58:17
  Branch: HEAD Handle: 2009110416581700

  Modified files:
openpkg-src/perl-time   perl-time.spec

  Log:
modifying package: perl-time-5.10 20091102 - 20091104

  Summary:
RevisionChanges Path
1.258   +2  -2  openpkg-src/perl-time/perl-time.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-time/perl-time.spec
  
  $ cvs diff -u -r1.257 -r1.258 perl-time.spec
  --- openpkg-src/perl-time/perl-time.spec  2 Nov 2009 18:31:32 -   
1.257
  +++ openpkg-src/perl-time/perl-time.spec  4 Nov 2009 16:58:17 -   
1.258
  @@ -34,7 +34,7 @@
   %define   V_time_tai64  2.11
   %define   V_datetime_locale 0.44
   %define   V_datetime0.4501
  -%define   V_datetime_timezone   1.01
  +%define   V_datetime_timezone   1.03
   %define   V_datetime_businesshours  1.01a
   %define   V_datetime_format_natural 0.80
   %define   V_datetime_format_mail0.3001
  @@ -55,7 +55,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091102
  +Release:  20091104
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Time/TimeDate-%{V_time_date}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   30-Oct-2009 22:30:40
  Branch: HEAD Handle: 2009103021303900

  Modified files:
openpkg-src/perl-time   perl-time.spec

  Log:
modifying package: perl-time-5.10 20091021 - 20091030

  Summary:
RevisionChanges Path
1.255   +2  -2  openpkg-src/perl-time/perl-time.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-time/perl-time.spec
  
  $ cvs diff -u -r1.254 -r1.255 perl-time.spec
  --- openpkg-src/perl-time/perl-time.spec  21 Oct 2009 15:44:22 -  
1.254
  +++ openpkg-src/perl-time/perl-time.spec  30 Oct 2009 21:30:39 -  
1.255
  @@ -36,7 +36,7 @@
   %define   V_datetime0.4501
   %define   V_datetime_timezone   1.01
   %define   V_datetime_businesshours  1.01a
  -%define   V_datetime_format_natural 0.79
  +%define   V_datetime_format_natural 0.80
   %define   V_datetime_format_mail0.3001
   %define   V_datetime_format_http0.37
   %define   V_datetime_format_w3cdtf  0.04
  @@ -55,7 +55,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091021
  +Release:  20091030
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Time/TimeDate-%{V_time_date}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   13-Nov-2009 23:47:39
  Branch: HEAD Handle: 2009111322473500

  Modified files:
openpkg-src/perl-sysperl-sys.spec

  Log:
modifying package: perl-sys-5.10 20091030 - 20091113

  Summary:
RevisionChanges Path
1.267   +2  -2  openpkg-src/perl-sys/perl-sys.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-sys/perl-sys.spec
  
  $ cvs diff -u -r1.266 -r1.267 perl-sys.spec
  --- openpkg-src/perl-sys/perl-sys.spec30 Oct 2009 21:33:21 -  
1.266
  +++ openpkg-src/perl-sys/perl-sys.spec13 Nov 2009 22:47:35 -  
1.267
  @@ -59,7 +59,7 @@
   %define   V_file_fnmatch0.02
   %define   V_user1.8
   %define   V_file_rsync  0.43
  -%define   V_storable_amf0.64
  +%define   V_storable_amf0.65
   
   #   package information
   Name: perl-sys
  @@ -72,7 +72,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091030
  +Release:  20091113
   
   #   package options
   %option   with_pam   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   13-Nov-2009 23:47:21
  Branch: HEAD Handle: 2009111322472100

  Modified files:
openpkg-src/perl-mail   perl-mail.spec

  Log:
modifying package: perl-mail-5.10 20091106 - 20091113

  Summary:
RevisionChanges Path
1.338   +2  -2  openpkg-src/perl-mail/perl-mail.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-mail/perl-mail.spec
  
  $ cvs diff -u -r1.337 -r1.338 perl-mail.spec
  --- openpkg-src/perl-mail/perl-mail.spec  6 Nov 2009 18:36:56 -   
1.337
  +++ openpkg-src/perl-mail/perl-mail.spec  13 Nov 2009 22:47:21 -  
1.338
  @@ -42,7 +42,7 @@
   %define   V_email_messageid 1.401
   %define   V_email_mime_contenttype  1.015
   %define   V_email_mime_encodings1.313
  -%define   V_email_mime  1.901
  +%define   V_email_mime  1.902
   %define   V_email_mime_modifier 1.444
   %define   V_email_mime_creator  1.456
   %define   V_email_find  0.10
  @@ -58,7 +58,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091106
  +Release:  20091113
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Mail/MailTools-%{V_mailtools}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   08-Nov-2009 20:03:47
  Branch: HEAD Handle: 2009110819034600

  Modified files:
openpkg-src/perl-bytecode
perl-bytecode.spec

  Log:
modifying package: perl-bytecode-5.10 20090902 - 20091108

  Summary:
RevisionChanges Path
1.5 +2  -2  openpkg-src/perl-bytecode/perl-bytecode.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-bytecode/perl-bytecode.spec
  
  $ cvs diff -u -r1.4 -r1.5 perl-bytecode.spec
  --- openpkg-src/perl-bytecode/perl-bytecode.spec  2 Sep 2009 17:52:33 
-   1.4
  +++ openpkg-src/perl-bytecode/perl-bytecode.spec  8 Nov 2009 19:03:46 
-   1.5
  @@ -23,7 +23,7 @@
   
   #   versions of individual parts
   %define   V_perl5.10
  -%define   V_b_c 1.04_20
  +%define   V_b_c 1.04_21
   %define   V_b_utils 0.08
   %define   V_b_recdeparse0.04
   %define   V_b_generate  1.20
  @@ -39,7 +39,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20090902
  +Release:  20091108
   
   #   list of sources
   Source0:  http://www.cpan.org/authors/id/R/RU/RURBAN/B-C-%{V_b_c}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   08-Nov-2009 10:47:05
  Branch: HEAD Handle: 2009110809470400

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

  Log:
upgrading package: clamav 0.95.2 - 0.95.3

  Summary:
RevisionChanges Path
1.17+22 -22 openpkg-src/clamav/clamav.patch
1.104   +2  -2  openpkg-src/clamav/clamav.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/clamav/clamav.patch
  
  $ cvs diff -u -r1.16 -r1.17 clamav.patch
  --- openpkg-src/clamav/clamav.patch   9 Apr 2009 16:46:57 -   1.16
  +++ openpkg-src/clamav/clamav.patch   8 Nov 2009 09:47:04 -   1.17
  @@ -1,6 +1,6 @@
   Index: clamav-milter/clamav-milter.c
   clamav-milter/clamav-milter.c.orig   2009-04-01 13:48:54 +0200
  -+++ clamav-milter/clamav-milter.c2009-04-09 17:25:12 +0200
  +--- clamav-milter/clamav-milter.c.orig   2009-10-28 16:34:13 +0100
   clamav-milter/clamav-milter.c2009-11-08 10:27:04 +0100
   @@ -32,7 +32,7 @@
#include syslog.h
#endif
  @@ -11,8 +11,8 @@
#include clamav.h

   Index: clamav-milter/clamfi.c
   clamav-milter/clamfi.c.orig  2009-04-02 18:36:34 +0200
  -+++ clamav-milter/clamfi.c   2009-04-09 17:25:12 +0200
  +--- clamav-milter/clamfi.c.orig  2009-10-28 16:34:13 +0100
   clamav-milter/clamfi.c   2009-11-08 10:27:04 +0100
   @@ -29,7 +29,7 @@
#include unistd.h
#include ctype.h
  @@ -23,8 +23,8 @@
#include shared/optparser.h
#include shared/output.h
   Index: clamav-milter/clamfi.h
   clamav-milter/clamfi.h.orig  2009-03-16 19:37:26 +0100
  -+++ clamav-milter/clamfi.h   2009-04-09 17:25:12 +0200
  +--- clamav-milter/clamfi.h.orig  2009-07-06 15:21:58 +0200
   clamav-milter/clamfi.h   2009-11-08 10:27:04 +0100
   @@ -22,7 +22,7 @@
#define _CLAMFI_H

  @@ -35,9 +35,9 @@
extern uint64_t maxfilesize;
extern int addxvirus;
   Index: configure
   configure.orig   2009-04-08 16:38:23 +0200
  -+++ configure2009-04-09 17:25:12 +0200
  -@@ -20949,9 +20949,6 @@
  +--- configure.orig   2009-10-28 16:34:13 +0100
   configure2009-11-08 10:27:32 +0100
  +@@ -16692,9 +16692,6 @@

save_LIBS=$LIBS
CLAMAV_MILTER_LIBS=$CLAMAV_MILTER_LIBS -lpthread
  @@ -45,21 +45,21 @@
   -CLAMAV_MILTER_LIBS=$CLAMAV_MILTER_LIBS -L/usr/lib/libmilter
   -fi
LIBS=$LIBS -lmilter $CLAMAV_MILTER_LIBS
  - { $as_echo $as_me:$LINENO: checking for mi_stop in -lmilter 5
  + { $as_echo $as_me:${as_lineno-$LINENO}: checking for mi_stop in 
-lmilter 5
$as_echo_n checking for mi_stop in -lmilter...  6; }
  -@@ -21191,7 +21188,7 @@
  +@@ -16842,7 +16839,7 @@
  + fi

LIBS=$save_LIBS
  - 
  --for ac_header in libmilter/mfapi.h
  -+for ac_header in milter/mfapi.h
  - do
  - as_ac_Header=`$as_echo ac_cv_header_$ac_header | $as_tr_sh`
  - if { as_var=$as_ac_Header; eval test \\${$as_var+set}\ = set; }; then
  +-for ac_header in libmilter/mfapi.h
  ++for ac_header in milter/mfapi.h
  + do :
  +   ac_fn_c_check_header_mongrel $LINENO libmilter/mfapi.h 
ac_cv_header_libmilter_mfapi_h $ac_includes_default
  + if test x$ac_cv_header_libmilter_mfapi_h = xyes; then :
   Index: libclamav/others.c
   libclamav/others.c.orig  2009-04-03 10:33:24 +0200
  -+++ libclamav/others.c   2009-04-09 17:29:05 +0200
  -@@ -176,8 +176,10 @@
  +--- libclamav/others.c.orig  2009-10-28 16:34:13 +0100
   libclamav/others.c   2009-11-08 10:27:04 +0100
  +@@ -177,8 +177,10 @@
if(is_rar_initd) return;
is_rar_initd = 1;

  @@ -71,8 +71,8 @@

if (!(cli_unrar_open = (int(*)(int, const char *, unrar_state_t 
*))lt_dlsym(rhandle, libclamunrar_iface_LTX_unrar_open)) ||
   Index: shared/output.c
   shared/output.c.orig 2009-03-16 19:37:26 +0100
  -+++ shared/output.c  2009-04-09 17:25:12 +0200
  +--- shared/output.c.orig 2009-10-28 16:34:13 +0100
   shared/output.c  2009-11-08 10:27:04 +0100
   @@ -67,7 +67,7 @@
pthread_mutex_t logg_mutex = PTHREAD_MUTEX_INITIALIZER;
#endif
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/clamav/clamav.spec
  
  $ cvs diff -u -r1.103 -r1.104 clamav.spec
  --- openpkg-src/clamav/clamav.spec2 Jul 2009 16:37:41 -   1.103
  +++ openpkg-src/clamav/clamav.spec8 Nov 2009 09:47:04 -   1.104
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:AntiVirus
   License:  GPL
  

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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 20:20:25
  Branch: HEAD Handle: 2009110119202500

  Modified files:
openpkg-src/dovecot dovecot.spec

  Log:
modifying package: dovecot-1.2.6 20091019 - 20091101

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

  patch -p0 '@@ .'
  Index: openpkg-src/dovecot/dovecot.spec
  
  $ cvs diff -u -r1.44 -r1.45 dovecot.spec
  --- openpkg-src/dovecot/dovecot.spec  19 Oct 2009 20:20:46 -  1.44
  +++ openpkg-src/dovecot/dovecot.spec  1 Nov 2009 19:20:25 -   1.45
  @@ -26,7 +26,7 @@
   %define   V_minor 6
   %define   V_sieve_base1.2
   %define   V_sieve 0.1.13
  -%define   V_managesieve_base  1.2.4
  +%define   V_managesieve_base  1.2.6
   %define   V_managesieve   0.11.9
   %define   V_managesieved_base 1.2
   %define   V_managesieved  0.11.9
  @@ -42,7 +42,7 @@
   Group:Mail
   License:  MIT+LGPL
   Version:  %{V_major}.%{V_minor}
  -Release:  20091019
  +Release:  20091101
   
   #   package options
   %option   with_fsl  yes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 22:41:35
  Branch: HEAD Handle: 2009102821413500

  Modified files:
openpkg-src/scala   scala.spec

  Log:
upgrading package: scala 2.7.6 - 2.7.7

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

  patch -p0 '@@ .'
  Index: openpkg-src/scala/scala.spec
  
  $ cvs diff -u -r1.9 -r1.10 scala.spec
  --- openpkg-src/scala/scala.spec  13 Sep 2009 19:08:27 -  1.9
  +++ openpkg-src/scala/scala.spec  28 Oct 2009 21:41:35 -  1.10
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Language
   License:  BSD
  -Version:  2.7.6
  -Release:  20090913
  +Version:  2.7.7
  +Release:  20091028
   
   #   list of sources
   Source0:  
http://www.scala-lang.org/downloads/distrib/files/scala-%{version}.final.tgz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   30-Oct-2009 22:31:10
  Branch: HEAD Handle: 2009103021311000

  Modified files:
openpkg-src/paripari.spec

  Log:
modifying package: pari-2.3.4 20090211 - 20091030

  Summary:
RevisionChanges Path
1.43+2  -2  openpkg-src/pari/pari.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/pari/pari.spec
  
  $ cvs diff -u -r1.42 -r1.43 pari.spec
  --- openpkg-src/pari/pari.spec18 Apr 2009 13:13:43 -  1.42
  +++ openpkg-src/pari/pari.spec30 Oct 2009 21:31:10 -  1.43
  @@ -24,7 +24,7 @@
   #   package version
   %define   V_major 2.3
   %define   V_minor 4
  -%define   V_perl  2.010801
  +%define   V_perl  2.010802
   
   #   package information
   Name: pari
  @@ -37,7 +37,7 @@
   Group:Algorithm
   License:  GPL
   Version:  %{V_major}.%{V_minor}
  -Release:  20090211
  +Release:  20091030
   
   #   package options
   %option   with_perl  no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:27:27
  Branch: HEAD Handle: 2009102809272700

  Modified files:
openpkg-src/bashdb  bashdb.spec

  Log:
upgrading package: bashdb 4.0.0.3 - 4.0.0.4

  Summary:
RevisionChanges Path
1.5 +3  -3  openpkg-src/bashdb/bashdb.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/bashdb/bashdb.spec
  
  $ cvs diff -u -r1.4 -r1.5 bashdb.spec
  --- openpkg-src/bashdb/bashdb.spec30 Jun 2009 20:20:07 -  1.4
  +++ openpkg-src/bashdb/bashdb.spec28 Oct 2009 09:27:27 -  1.5
  @@ -22,8 +22,8 @@
   ##
   
   #   package version
  -%define   V_opkg 4.0.0.3
  -%define   V_dist 4.0-0.3
  +%define   V_opkg 4.0.0.4
  +%define   V_dist 4.0-0.4
   
   #   package information
   Name: bashdb
  @@ -36,7 +36,7 @@
   Group:Debugging
   License:  GPL
   Version:  %{V_opkg}
  -Release:  20090412
  +Release:  20091028
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/bashdb/bashdb-%{V_dist}.tar.bz2
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:27:51
  Branch: HEAD Handle: 2009102809275000

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

  Log:
upgrading package: davical 0.9.7.5 - 0.9.7.6

  Summary:
RevisionChanges Path
1.6 +6  -6  openpkg-src/davical/davical.patch
1.11+3  -3  openpkg-src/davical/davical.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/davical/davical.patch
  
  $ cvs diff -u -r1.5 -r1.6 davical.patch
  --- openpkg-src/davical/davical.patch 22 Oct 2009 20:43:57 -  1.5
  +++ openpkg-src/davical/davical.patch 28 Oct 2009 09:27:50 -  1.6
  @@ -1,6 +1,6 @@
  -Index: davical-0.9.7.5/dba/appuser_permissions.txt
   davical-0.9.7.5/dba/appuser_permissions.txt.orig 2009-09-13 05:16:08 
+0200
  -+++ davical-0.9.7.5/dba/appuser_permissions.txt  2009-10-08 22:27:36 
+0200
  +Index: davical-0.9.7.6/dba/appuser_permissions.txt
  +--- davical-0.9.7.6/dba/appuser_permissions.txt.orig 2009-09-13 05:16:08 
+0200
   davical-0.9.7.6/dba/appuser_permissions.txt  2009-10-08 22:27:36 
+0200
   @@ -1,57 +1,44 @@
   -#
   -# This file is used by update-rscds-database to set the correct
  @@ -93,9 +93,9 @@
   + principal_type
   +  TO davical;

  -Index: davical-0.9.7.5/inc/always.php
   davical-0.9.7.5/inc/always.php.orig  2009-10-08 02:10:04 +0200
  -+++ davical-0.9.7.5/inc/always.php   2009-10-08 22:31:37 +0200
  +Index: davical-0.9.7.6/inc/always.php
  +--- davical-0.9.7.6/inc/always.php.orig  2009-10-08 02:10:04 +0200
   davical-0.9.7.6/inc/always.php   2009-10-08 22:31:37 +0200
   @@ -79,15 +79,8 @@
* access which could break DAViCal completely by causing output to start
* too early.
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/davical/davical.spec
  
  $ cvs diff -u -r1.10 -r1.11 davical.spec
  --- openpkg-src/davical/davical.spec  22 Oct 2009 20:43:57 -  1.10
  +++ openpkg-src/davical/davical.spec  28 Oct 2009 09:27:50 -  1.11
  @@ -22,8 +22,8 @@
   ##
   
   #   package version
  -%define   V_opkg0.9.7.5
  -%define   V_davical 0.9.7.5
  +%define   V_opkg0.9.7.6
  +%define   V_davical 0.9.7.6
   %define   V_awl 0.37
   
   #   package information
  @@ -37,7 +37,7 @@
   Group:Network
   License:  GPL
   Version:  %{V_opkg}
  -Release:  20091022
  +Release:  20091028
   
   #   package options
   %define   with_ssl  no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:28:56
  Branch: HEAD Handle: 2009102809285500

  Modified files:
openpkg-src/libffi  libffi.spec

  Log:
upgrading package: libffi 3.0.9rc1 - 3.0.9rc2

  Summary:
RevisionChanges Path
1.36+3  -2  openpkg-src/libffi/libffi.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/libffi/libffi.spec
  
  $ cvs diff -u -r1.35 -r1.36 libffi.spec
  --- openpkg-src/libffi/libffi.spec5 Oct 2009 20:46:56 -   1.35
  +++ openpkg-src/libffi/libffi.spec28 Oct 2009 09:28:55 -  1.36
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Compiler
   License:  LGPL
  -Version:  3.0.9rc1
  -Release:  20091005
  +Version:  3.0.9rc2
  +Release:  20091028
   
   #   list of sources
   Source0:  ftp://sourceware.org/pub/libffi/libffi-%{version}.tar.gz
  @@ -81,6 +81,7 @@
   %prep
   %setup -q
   %patch -p0
  +chmod a+x install-sh
   
   %build
   CC=%{l_cc} \
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:45:21
  Branch: HEAD Handle: 2009102809452100

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

  Log:
upgrading package: imagemagick 6.5.7.0 - 6.5.7.2

  Summary:
RevisionChanges Path
1.19+10 -10 openpkg-src/imagemagick/imagemagick.patch
1.610   +2  -2  openpkg-src/imagemagick/imagemagick.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/imagemagick/imagemagick.patch
  
  $ cvs diff -u -r1.18 -r1.19 imagemagick.patch
  --- openpkg-src/imagemagick/imagemagick.patch 10 Oct 2009 18:05:03 -  
1.18
  +++ openpkg-src/imagemagick/imagemagick.patch 28 Oct 2009 09:45:21 -  
1.19
  @@ -1,19 +1,19 @@
   Index: PerlMagick/Makefile.PL.in
   PerlMagick/Makefile.PL.in.orig   2009-10-09 03:49:39 +0200
  -+++ PerlMagick/Makefile.PL.in2009-10-10 19:56:09 +0200
  -@@ -140,7 +140,7 @@
  +--- PerlMagick/Makefile.PL.in.orig   2009-10-21 15:12:00 +0200
   PerlMagick/Makefile.PL.in2009-10-25 18:50:11 +0100
  +@@ -139,7 +139,7 @@

# defaults for LIBS  INC  CCFLAGS params that we later pass to 
Writemakefile
my $INC_magick = '-I../ -...@top_srcdir@ @CPPFLAGS@ -I' . 
$Config{'usrinc'} . '/ImageMagick';
  --my $LIBS_magick = '-L../magick/.libs -lMagickCore -L../wand/.libs -lperl 
@MATH_LIBS@';
  -+my $LIBS_magick = '-L../magick/.libs -lMagickCore -L../wand/.libs 
-lMagickWand -lperl @MATH_LIBS@ @LDFLAGS@ -llcms -ltiff -lfreetype -ljasper 
-ljpeg -lpng -lbz2 -lxml2 -liconv -lz -lm';
  +-my $LIBS_magick = '-L../magick/.libs -lMagickCore -lperl @MATH_LIBS@';
  ++my $LIBS_magick = '-L../magick/.libs -lMagickCore -lMagickWand -lperl 
@MATH_LIBS@ @LDFLAGS@ -llcms -ltiff -lfreetype -ljasper -ljpeg -lpng -lbz2 
-lxml2 -liconv -lz -lm';
my $CCFLAGS_magick = $Config{'ccflags'} @CFLAGS@;
  - 
  - if (($^O eq 'MSWin32')  ($Config{cc} =~ /gcc/)) {
  + my $LDFLAGS_magick   = -L../magick/.libs -lMagickCore $Config{'ldflags'} 
@LDFLAGS@;
  + my $LDDLFLAGS_magick = -L../magick/.libs -lMagickCore $Config{'lddlflags'} 
@LDFLAGS@;
   Index: configure
   configure.orig   2009-10-10 05:02:45 +0200
  -+++ configure2009-10-10 19:53:10 +0200
  -@@ -49565,7 +49565,7 @@
  +--- configure.orig   2009-10-24 04:34:56 +0200
   configure2009-10-25 18:49:09 +0100
  +@@ -49536,7 +49536,7 @@
# Append VALUE to the end of shell variable VAR.
func_append ()
{
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/imagemagick/imagemagick.spec
  
  $ cvs diff -u -r1.609 -r1.610 imagemagick.spec
  --- openpkg-src/imagemagick/imagemagick.spec  17 Oct 2009 19:58:49 -  
1.609
  +++ openpkg-src/imagemagick/imagemagick.spec  28 Oct 2009 09:45:21 -  
1.610
  @@ -23,7 +23,7 @@
   
   #   package version
   %define   V_major 6.5.7
  -%define   V_minor 0
  +%define   V_minor 2
   %define   V_dist  %{V_major}-%{V_minor}
   %define   V_opkg  %{V_major}.%{V_minor}
   
  @@ -38,7 +38,7 @@
   Group:Graphics
   License:  ImageMagick
   Version:  %{V_opkg}
  -Release:  20091017
  +Release:  20091028
   
   #   package options
   %option   with_perl   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:45:36
  Branch: HEAD Handle: 2009102809453500

  Modified files:
openpkg-src/asteriskasterisk.spec

  Log:
upgrading package: asterisk 1.6.1.6 - 1.6.1.8

  Summary:
RevisionChanges Path
1.104   +3  -3  openpkg-src/asterisk/asterisk.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/asterisk/asterisk.spec
  
  $ cvs diff -u -r1.103 -r1.104 asterisk.spec
  --- openpkg-src/asterisk/asterisk.spec15 Sep 2009 18:05:37 -  
1.103
  +++ openpkg-src/asterisk/asterisk.spec28 Oct 2009 09:45:35 -  
1.104
  @@ -22,8 +22,8 @@
   ##
   
   #   package version
  -%define   V_opkg 1.6.1.6
  -%define   V_asterisk 1.6.1.6
  +%define   V_opkg 1.6.1.8
  +%define   V_asterisk 1.6.1.8
   %define   V_asterisk_addons  1.6.1.1
   %define   V_asterisk_sounds_core_en  1.4.16
   %define   V_asterisk_sounds_core_de  current
  @@ -41,7 +41,7 @@
   Group:VoIP
   License:  GPL
   Version:  %{V_opkg}
  -Release:  20090915
  +Release:  20091028
   
   #   package options
   %option   with_dahdi   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 10:46:59
  Branch: HEAD Handle: 2009102809465900

  Modified files:
openpkg-src/imagemagick imagemagick.patch

  Log:
try to fix Perl bindings (once again)

  Summary:
RevisionChanges Path
1.20+1  -1  openpkg-src/imagemagick/imagemagick.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/imagemagick/imagemagick.patch
  
  $ cvs diff -u -r1.19 -r1.20 imagemagick.patch
  --- openpkg-src/imagemagick/imagemagick.patch 28 Oct 2009 09:45:21 -  
1.19
  +++ openpkg-src/imagemagick/imagemagick.patch 28 Oct 2009 09:46:59 -  
1.20
  @@ -6,7 +6,7 @@
# defaults for LIBS  INC  CCFLAGS params that we later pass to 
Writemakefile
my $INC_magick = '-I../ -...@top_srcdir@ @CPPFLAGS@ -I' . 
$Config{'usrinc'} . '/ImageMagick';
   -my $LIBS_magick = '-L../magick/.libs -lMagickCore -lperl @MATH_LIBS@';
  -+my $LIBS_magick = '-L../magick/.libs -lMagickCore -lMagickWand -lperl 
@MATH_LIBS@ @LDFLAGS@ -llcms -ltiff -lfreetype -ljasper -ljpeg -lpng -lbz2 
-lxml2 -liconv -lz -lm';
  ++my $LIBS_magick = '-L../magick/.libs -lMagickCore -lMagickWand -lperl 
@MATH_LIBS@ @LDFLAGS@ -llcms -ltiff -lfreetype -llqr-1 -ljasper -ljpeg -lpng 
-lbz2 -lxml2 -liconv -lz -lm';
my $CCFLAGS_magick = $Config{'ccflags'} @CFLAGS@;
my $LDFLAGS_magick   = -L../magick/.libs -lMagickCore $Config{'ldflags'} 
@LDFLAGS@;
my $LDDLFLAGS_magick = -L../magick/.libs -lMagickCore $Config{'lddlflags'} 
@LDFLAGS@;
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 21:55:08
  Branch: HEAD Handle: 2009102820550800

  Modified files:
openpkg-src/iozone  iozone.spec

  Log:
upgrading package: iozone 3.326 - 3.327

  Summary:
RevisionChanges Path
1.144   +3  -3  openpkg-src/iozone/iozone.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/iozone/iozone.spec
  
  $ cvs diff -u -r1.143 -r1.144 iozone.spec
  --- openpkg-src/iozone/iozone.spec20 Jun 2009 15:44:19 -  1.143
  +++ openpkg-src/iozone/iozone.spec28 Oct 2009 20:55:08 -  1.144
  @@ -22,8 +22,8 @@
   ##
   
   #   package version
  -%define   V_logic  3.326
  -%define   V_real   3_326
  +%define   V_logic  3.327
  +%define   V_real   3_327
   
   #   package information
   Name: iozone
  @@ -36,7 +36,7 @@
   Group:Benchmark
   License:  Open Source
   Version:  %{V_logic}
  -Release:  20090620
  +Release:  20091028
   
   #   list of sources
   Source0:  http://www.iozone.org/src/current/iozone%{V_real}.tar
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 21:55:17
  Branch: HEAD Handle: 2009102820551700

  Modified files:
openpkg-src/mathomatic  mathomatic.spec

  Log:
upgrading package: mathomatic 14.5.6 - 14.5.7

  Summary:
RevisionChanges Path
1.168   +2  -2  openpkg-src/mathomatic/mathomatic.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/mathomatic/mathomatic.spec
  
  $ cvs diff -u -r1.167 -r1.168 mathomatic.spec
  --- openpkg-src/mathomatic/mathomatic.spec12 Oct 2009 16:08:55 -  
1.167
  +++ openpkg-src/mathomatic/mathomatic.spec28 Oct 2009 20:55:17 -  
1.168
  @@ -31,8 +31,8 @@
   Class:BASE
   Group:Algorithm
   License:  Open Source
  -Version:  14.5.6
  -Release:  20091012
  +Version:  14.5.7
  +Release:  20091028
   
   #   list of sources
   Source0:  http://www.panix.com/~gesslein/mathomatic-%{version}.tar.bz2
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 21:55:23
  Branch: HEAD Handle: 2009102820552300

  Modified files:
openpkg-src/perl-term   perl-term.spec

  Log:
modifying package: perl-term-5.10 20090902 - 20091028

  Summary:
RevisionChanges Path
1.101   +2  -2  openpkg-src/perl-term/perl-term.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-term/perl-term.spec
  
  $ cvs diff -u -r1.100 -r1.101 perl-term.spec
  --- openpkg-src/perl-term/perl-term.spec  2 Sep 2009 18:27:36 -   
1.100
  +++ openpkg-src/perl-term/perl-term.spec  28 Oct 2009 20:55:23 -  
1.101
  @@ -31,7 +31,7 @@
   %define   V_term_ansiscreen1.42
   %define   V_term_ansicolor 2.02
   %define   V_term_readline_gnu  1.19
  -%define   V_term_readline_perl 1.0302
  +%define   V_term_readline_perl 1.0303
   %define   V_term_progressbar   2.09
   %define   V_term_statusbar 1.18
   %define   V_term_prompt1.04
  @@ -52,7 +52,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20090902
  +Release:  20091028
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Term/TermReadKey-%{V_term_readkey}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   30-Oct-2009 23:05:20
  Branch: HEAD Handle: 2009103022051900

  Modified files:
openpkg-src/libsmbclient
libsmbclient.spec

  Log:
upgrading package: libsmbclient 3.4.2 - 3.4.3

  Summary:
RevisionChanges Path
1.62+2  -2  openpkg-src/libsmbclient/libsmbclient.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/libsmbclient/libsmbclient.spec
  
  $ cvs diff -u -r1.61 -r1.62 libsmbclient.spec
  --- openpkg-src/libsmbclient/libsmbclient.spec2 Oct 2009 13:20:26 
-   1.61
  +++ openpkg-src/libsmbclient/libsmbclient.spec30 Oct 2009 22:05:19 
-  1.62
  @@ -31,8 +31,8 @@
   Class:PLUS
   Group:Filesystem
   License:  GPL
  -Version:  3.4.2
  -Release:  20091002
  +Version:  3.4.3
  +Release:  20091030
   
   #   list of sources
   Source0:  http://us1.samba.org/samba/ftp/samba-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 21:55:24
  Branch: HEAD Handle: 2009102820552400

  Modified files:
openpkg-src/perl-netperl-net.spec

  Log:
modifying package: perl-net-5.10 20091011 - 20091028

  Summary:
RevisionChanges Path
1.198   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.197 -r1.198 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec11 Oct 2009 08:45:01 -  
1.197
  +++ openpkg-src/perl-net/perl-net.spec28 Oct 2009 20:55:24 -  
1.198
  @@ -37,7 +37,7 @@
   %define   V_net_telnet3.03
   %define   V_net_telnet_cisco  1.10
   %define   V_plrpc 0.2020
  -%define   V_net_imap_simple   1.1907
  +%define   V_net_imap_simple   1.1910
   %define   V_net_bgp   0.13
   %define   V_net_pcap  0.16
   %define   V_net_radius1.56
  @@ -67,7 +67,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091011
  +Release:  20091028
   
   #   package options
   %option   with_pcap   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   30-Oct-2009 22:44:07
  Branch: HEAD Handle: 2009103021440700

  Modified files:
openpkg-src/squid   squid.spec

  Log:
upgrading package: squid 3.0.19 - 3.0.20

  Summary:
RevisionChanges Path
1.145   +2  -2  openpkg-src/squid/squid.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/squid/squid.spec
  
  $ cvs diff -u -r1.144 -r1.145 squid.spec
  --- openpkg-src/squid/squid.spec  6 Sep 2009 21:14:35 -   1.144
  +++ openpkg-src/squid/squid.spec  30 Oct 2009 21:44:07 -  1.145
  @@ -24,7 +24,7 @@
   #   package version
   %define   V_maj  3
   %define   V_min  0
  -%define   V_rev  19
  +%define   V_rev  20
   
   #   package information
   Name: squid
  @@ -37,7 +37,7 @@
   Group:Web
   License:  GPL
   Version:  %{V_maj}.%{V_min}.%{V_rev}
  -Release:  20090906
  +Release:  20091030
   
   #   package options
   %option   with_fslyes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Oct-2009 21:55:18
  Branch: HEAD Handle: 2009102820551800

  Modified files:
openpkg-src/perl-conv   perl-conv.spec

  Log:
modifying package: perl-conv-5.10 20090919 - 20091028

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

  patch -p0 '@@ .'
  Index: openpkg-src/perl-conv/perl-conv.spec
  
  $ cvs diff -u -r1.59 -r1.60 perl-conv.spec
  --- openpkg-src/perl-conv/perl-conv.spec  19 Sep 2009 07:25:41 -  
1.59
  +++ openpkg-src/perl-conv/perl-conv.spec  28 Oct 2009 20:55:18 -  
1.60
  @@ -28,7 +28,7 @@
   %define   V_convert_ebcdic   0.06
   %define   V_convert_scalar   1.04
   %define   V_convert_units0.43
  -%define   V_convert_uulib1.32
  +%define   V_convert_uulib1.33
   %define   V_convert_tnef 0.17
   
   #   package information
  @@ -42,7 +42,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20090919
  +Release:  20091028
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Convert/Convert-ASN1-%{V_convert_asn1}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 11:05:23
  Branch: HEAD Handle: 2009110110052300

  Modified files:
openpkg-src/cegocego.spec

  Log:
upgrading package: cego 2.4.0 - 2.4.1

  Summary:
RevisionChanges Path
1.56+2  -2  openpkg-src/cego/cego.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/cego/cego.spec
  
  $ cvs diff -u -r1.55 -r1.56 cego.spec
  --- openpkg-src/cego/cego.spec25 Oct 2009 19:42:25 -  1.55
  +++ openpkg-src/cego/cego.spec1 Nov 2009 10:05:23 -   1.56
  @@ -26,7 +26,7 @@
   #   package version
   %define   V_base  1.1.26
   %define   V_xml   1.0.17
  -%define   V_cego  2.4.0
  +%define   V_cego  2.4.1
   %define   V_jdbc  1.2.17
   
   #   package information
  @@ -40,7 +40,7 @@
   Group:Database
   License:  GPL
   Version:  %{V_cego}
  -Release:  20091025
  +Release:  20091101
   
   #   package options
   %option   with_jdbc   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   30-Oct-2009 23:02:49
  Branch: HEAD Handle: 2009103022024800

  Modified files:
openpkg-src/samba   samba.spec

  Log:
upgrading package: samba 3.4.2 - 3.4.3

  Summary:
RevisionChanges Path
1.147   +2  -2  openpkg-src/samba/samba.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/samba/samba.spec
  
  $ cvs diff -u -r1.146 -r1.147 samba.spec
  --- openpkg-src/samba/samba.spec  2 Oct 2009 13:20:29 -   1.146
  +++ openpkg-src/samba/samba.spec  30 Oct 2009 22:02:48 -  1.147
  @@ -31,8 +31,8 @@
   Class:BASE
   Group:Filesystem
   License:  GPL
  -Version:  3.4.2
  -Release:  20091002
  +Version:  3.4.3
  +Release:  20091030
   
   #   package options
   %option   with_pam   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 10:28:06
  Branch: HEAD Handle: 2009110109280500

  Modified files:
openpkg-src/maatkit maatkit.spec

  Log:
upgrading package: maatkit 4790 - 5014

  Summary:
RevisionChanges Path
1.13+2  -2  openpkg-src/maatkit/maatkit.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/maatkit/maatkit.spec
  
  $ cvs diff -u -r1.12 -r1.13 maatkit.spec
  --- openpkg-src/maatkit/maatkit.spec  2 Oct 2009 17:09:03 -   1.12
  +++ openpkg-src/maatkit/maatkit.spec  1 Nov 2009 09:28:05 -   1.13
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Database
   License:  GPL
  -Version:  4790
  -Release:  20091002
  +Version:  5014
  +Release:  20091101
   
   #   list of sources
   Source0:  http://maatkit.googlecode.com/files/maatkit-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 11:05:23
  Branch: HEAD Handle: 2009110110052200

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

  Log:
upgrading package: libmsgque 3.6 - 3.7

  Summary:
RevisionChanges Path
1.7 +10 -9  openpkg-src/libmsgque/libmsgque.patch
1.10+2  -2  openpkg-src/libmsgque/libmsgque.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/libmsgque/libmsgque.patch
  
  $ cvs diff -u -r1.6 -r1.7 libmsgque.patch
  --- openpkg-src/libmsgque/libmsgque.patch 19 Oct 2009 20:21:05 -  
1.6
  +++ openpkg-src/libmsgque/libmsgque.patch 1 Nov 2009 10:05:22 -   
1.7
  @@ -1,21 +1,22 @@
   Index: Makefile.in
   Makefile.in.orig 2009-10-19 15:41:43 +0200
  -+++ Makefile.in  2009-10-19 22:17:51 +0200
  -@@ -267,9 +267,7 @@
  +--- Makefile.in.orig 2009-10-30 19:55:43 +0100
   Makefile.in  2009-11-01 10:26:58 +0100
  +@@ -277,10 +277,7 @@
uudecode = @uudecode@
AUTOMAKE_OPTIONS = check-news 
ACLOCAL_AMFLAGS = -I m4
   -SUBDIRS = src win performance example/c $(am__append_1) \
   -$(am__append_3) $(am__append_5) $(am__append_7) \
  --$(am__append_9) $(am__append_11) $(am__append_13) acmds docs
  -+SUBDIRS = src 
  +-$(am__append_9) $(am__append_11) $(am__append_13) \
  +-$(am__append_15) acmds docs
  ++SUBDIRS = src
mann_MANS = man/mann/libmsgque.n $(am__append_2) $(am__append_4) \
$(am__append_6) $(am__append_8) $(am__append_10) \
  - $(am__append_12) $(am__append_14)
  + $(am__append_12) $(am__append_14) $(am__append_16)
   Index: configure
   configure.orig   2009-10-19 15:41:44 +0200
  -+++ configure2009-10-19 22:17:34 +0200
  -@@ -19435,13 +19435,6 @@
  +--- configure.orig   2009-10-30 19:30:25 +0100
   configure2009-11-01 10:26:38 +0100
  +@@ -19476,13 +19476,6 @@
  done
done

  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/libmsgque/libmsgque.spec
  
  $ cvs diff -u -r1.9 -r1.10 libmsgque.spec
  --- openpkg-src/libmsgque/libmsgque.spec  19 Oct 2009 20:21:05 -  
1.9
  +++ openpkg-src/libmsgque/libmsgque.spec  1 Nov 2009 10:05:22 -   
1.10
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Libraries
   License:  GPL
  -Version:  3.6
  -Release:  20091019
  +Version:  3.7
  +Release:  20091101
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/libmsgque/libmsgque-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 19:10:48
  Branch: HEAD Handle: 2009110118104800

  Modified files:
openpkg-src/elm elm.spec

  Log:
upgrading package: elm 2.4.124c - 2.4.124d

  Summary:
RevisionChanges Path
1.54+4  -2  openpkg-src/elm/elm.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/elm/elm.spec
  
  $ cvs diff -u -r1.53 -r1.54 elm.spec
  --- openpkg-src/elm/elm.spec  18 Apr 2009 13:10:08 -  1.53
  +++ openpkg-src/elm/elm.spec  1 Nov 2009 18:10:48 -   1.54
  @@ -24,7 +24,7 @@
   #   package version
   %define   V_base 2.4
   %define   V_me   124
  -%define   V_pl   c
  +%define   V_pl   d
   
   #   package information
   Name: elm
  @@ -37,7 +37,7 @@
   Group:Mail
   License:  ELM License
   Version:  %{V_base}.%{V_me}%{V_pl}
  -Release:  20080720
  +Release:  20091101
   
   #   list of sources
   Source0:  http://www.elmme-mailer.org/elm-%{V_base}ME+%{V_me}.tar.gz
  @@ -45,6 +45,7 @@
   Patch1:   http://www.elmme-mailer.org/elm-%{V_base}ME+PL%{V_me}a.patch.gz
   Patch2:   http://www.elmme-mailer.org/elm-%{V_base}ME+PL%{V_me}b.patch.gz
   Patch3:   http://www.elmme-mailer.org/elm-%{V_base}ME+PL%{V_me}c.patch.gz
  +Patch4:   http://www.elmme-mailer.org/elm-%{V_base}ME+PL%{V_me}d.patch.gz
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -79,6 +80,7 @@
   %patch -p1 -P 1
   %patch -p1 -P 2
   %patch -p1 -P 3
  +%patch -p1 -P 4
   rm -f *.orig
   
   %build
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 19:14:44
  Branch: HEAD Handle: 2009110118144400

  Modified files:
openpkg-src/xboard  xboard.spec

  Log:
upgrading package: xboard 4.2.7 - 4.4.1

  Summary:
RevisionChanges Path
1.28+2  -2  openpkg-src/xboard/xboard.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/xboard/xboard.spec
  
  $ cvs diff -u -r1.27 -r1.28 xboard.spec
  --- openpkg-src/xboard/xboard.spec18 Apr 2009 13:18:46 -  1.27
  +++ openpkg-src/xboard/xboard.spec1 Nov 2009 18:14:44 -   1.28
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Games
   License:  GPL
  -Version:  4.2.7
  -Release:  20080101
  +Version:  4.4.1
  +Release:  20091101
   
   #   list of sources
   Source0:  ftp://ftp.gnu.org/gnu/xboard/xboard-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 19:14:55
  Branch: HEAD Handle: 2009110118145500

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

  Log:
modifying package: perl-gfx-5.10 20091022 - 20091101

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

  patch -p0 '@@ .'
  Index: openpkg-src/perl-gfx/perl-gfx.spec
  
  $ cvs diff -u -r1.114 -r1.115 perl-gfx.spec
  --- openpkg-src/perl-gfx/perl-gfx.spec22 Oct 2009 20:42:31 -  
1.114
  +++ openpkg-src/perl-gfx/perl-gfx.spec1 Nov 2009 18:14:55 -   
1.115
  @@ -23,7 +23,7 @@
   
   #   versions of individual parts
   %define   V_perl5.10
  -%define   V_image_info  1.29
  +%define   V_image_info  1.30
   %define   V_image_size  3.210
   %define   V_postscript  0.06
   %define   V_postscript_simple   0.07
  @@ -49,7 +49,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20091022
  +Release:  20091101
   
   #   list of sources
   Source0:  
http://www.cpan.org/modules/by-module/Image/Image-Info-%{V_image_info}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 19:15:03
  Branch: HEAD Handle: 200911011815

  Modified files:
openpkg-src/paripari.spec

  Log:
modifying package: pari-2.3.4 20091030 - 20091101

  Summary:
RevisionChanges Path
1.44+2  -2  openpkg-src/pari/pari.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/pari/pari.spec
  
  $ cvs diff -u -r1.43 -r1.44 pari.spec
  --- openpkg-src/pari/pari.spec30 Oct 2009 21:31:10 -  1.43
  +++ openpkg-src/pari/pari.spec1 Nov 2009 18:15:00 -   1.44
  @@ -24,7 +24,7 @@
   #   package version
   %define   V_major 2.3
   %define   V_minor 4
  -%define   V_perl  2.010802
  +%define   V_perl  2.010804
   
   #   package information
   Name: pari
  @@ -37,7 +37,7 @@
   Group:Algorithm
   License:  GPL
   Version:  %{V_major}.%{V_minor}
  -Release:  20091030
  +Release:  20091101
   
   #   package options
   %option   with_perl  no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 19:15:04
  Branch: HEAD Handle: 2009110118150300

  Modified files:
openpkg-src/jsonjson.spec

  Log:
modifying package: json-20090929 20091022 - 20091101

  Summary:
RevisionChanges Path
1.135   +2  -2  openpkg-src/json/json.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/json/json.spec
  
  $ cvs diff -u -r1.134 -r1.135 json.spec
  --- openpkg-src/json/json.spec22 Oct 2009 21:14:41 -  1.134
  +++ openpkg-src/json/json.spec1 Nov 2009 18:15:03 -   1.135
  @@ -26,7 +26,7 @@
   %define   V_api_c2  1.0.1
   %define   V_api_pl1 2.16
   %define   V_api_pl2 0.03
  -%define   V_api_pl3 0.38
  +%define   V_api_pl3 0.39
   %define   V_api_pl4 2.2311
   %define   V_api_pl5 0.011
   %define   V_api_js1 20090929
  @@ -43,7 +43,7 @@
   Group:Language
   License:  Open Source
   Version:  %{V_api_js2}
  -Release:  20091022
  +Release:  20091101
   
   #   list of sources
   Source0:  http://oss.metaparadigm.com/json-c/json-c-%{V_api_c}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 19:15:39
  Branch: HEAD Handle: 2009110118153900

  Modified files:
openpkg-src/nsprnspr.spec

  Log:
upgrading package: nspr 4.8 - 4.8.2

  Summary:
RevisionChanges Path
1.49+2  -2  openpkg-src/nspr/nspr.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/nspr/nspr.spec
  
  $ cvs diff -u -r1.48 -r1.49 nspr.spec
  --- openpkg-src/nspr/nspr.spec29 May 2009 17:16:26 -  1.48
  +++ openpkg-src/nspr/nspr.spec1 Nov 2009 18:15:39 -   1.49
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Libraries
   License:  MPL
  -Version:  4.8
  -Release:  20090529
  +Version:  4.8.2
  +Release:  20091101
   
   #   list of sources
   Source0:  
ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v%{version}/src/nspr-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 19:29:53
  Branch: HEAD Handle: 2009110118295300

  Modified files:
openpkg-src/transcode   transcode.spec

  Log:
upgrading package: transcode 1.1.2 - 1.1.5

  Summary:
RevisionChanges Path
1.4 +2  -2  openpkg-src/transcode/transcode.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/transcode/transcode.spec
  
  $ cvs diff -u -r1.3 -r1.4 transcode.spec
  --- openpkg-src/transcode/transcode.spec  18 Apr 2009 13:17:03 -  
1.3
  +++ openpkg-src/transcode/transcode.spec  1 Nov 2009 18:29:53 -   
1.4
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Video
   License:  GPL
  -Version:  1.1.2
  -Release:  20090329
  +Version:  1.1.5
  +Release:  20091101
   
   #   list of sources
   Source0:  http://download.berlios.de/tcforge/transcode-%{version}.tar.bz2
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   01-Nov-2009 19:16:02
  Branch: HEAD Handle: 2009110118160200

  Modified files:
openpkg-src/ncurses ncurses.spec

  Log:
upgrading package: ncurses 5.7.20091024 - 5.7.20091031

  Summary:
RevisionChanges Path
1.448   +5  -3  openpkg-src/ncurses/ncurses.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/ncurses/ncurses.spec
  
  $ cvs diff -u -r1.447 -r1.448 ncurses.spec
  --- openpkg-src/ncurses/ncurses.spec  25 Oct 2009 17:54:57 -  1.447
  +++ openpkg-src/ncurses/ncurses.spec  1 Nov 2009 18:16:02 -   1.448
  @@ -77,9 +77,10 @@
   %define   V_patch52 20091010
   %define   V_patch53 20091017
   %define   V_patch54 20091024
  +%define   V_patch55 20091031
   %define   V_patchB  %{V_patch1}
  -%define   V_patchL  %{V_patch54}
  -%define   V_patches 54
  +%define   V_patchL  %{V_patch55}
  +%define   V_patches 55
   
   #   package information
   Name: ncurses
  @@ -92,7 +93,7 @@
   Group:Terminal
   License:  MIT-style
   Version:  %{V_base}.%{V_patchL}
  -Release:  20091025
  +Release:  20091101
   
   #   list of sources
   Source0:  ftp://invisible-island.net/ncurses/ncurses-%{V_base}.tar.gz
  @@ -150,6 +151,7 @@
   Patch52:  
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch52}.patch.gz
   Patch53:  
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch53}.patch.gz
   Patch54:  
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch54}.patch.gz
  +Patch55:  
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch55}.patch.gz
   Patch100: ncurses.patch
   
   #   build information
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   02-Nov-2009 13:27:43
  Branch: HEAD Handle: 2009110212274300

  Added files:
openpkg-src/imapsyncimapsync.spec

  Log:
new package: imapsync 1.286 (IMAP Folder Synchronization)

  Summary:
RevisionChanges Path
1.1 +84 -0  openpkg-src/imapsync/imapsync.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/imapsync/imapsync.spec
  
  $ cvs diff -u -r0 -r1.1 imapsync.spec
  --- /dev/null 2009-11-02 13:27:43 +0100
  +++ imapsync.spec 2009-11-02 13:27:43 +0100
  @@ -0,0 +1,84 @@
  +##
  +##  imapsync.spec -- OpenPKG RPM Package Specification
  +##  Copyright (c) 2000-2009 OpenPKG Foundation e.V. http://openpkg.net/
  +##
  +##  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: imapsync
  +Summary:  IMAP Folder Synchronization
  +URL:  http://www.linux-france.org/prj/imapsync/dist/
  +Vendor:   Gilles Lamiral
  +Packager: OpenPKG Foundation e.V.
  +Distribution: OpenPKG Community
  +Class:EVAL
  +Group:Mail
  +License:  GPL
  +Version:  1.286
  +Release:  20091102
  +
  +#   list of sources
  +Source0:  
http://www.linux-france.org/prj/imapsync/dist/imapsync-%{version}.tgz
  +
  +#   build information
  +Prefix:   %{l_prefix}
  +BuildRoot:%{l_buildroot}
  +BuildPreReq:  OpenPKG, openpkg = 20060823
  +PreReq:   OpenPKG, openpkg = 20060823
  +BuildPreReq:  perl, perl-mail, perl-crypto, perl-time, perl-term, perl-ssl
  +PreReq:   perl, perl-mail, perl-crypto, perl-time, perl-term, perl-ssl
  +AutoReq:  no
  +AutoReqProv:  no
  +
  +%description
  + ImapSync is a tool allowing incremental and recursive IMAP
  + transfer from one mailbox to another. By default all folders are
  + transferred, recursively.
  +
  +%track
  +prog imapsync = {
  +version   = %{version}
  +url   = http://www.linux-france.org/prj/imapsync/dist/
  +regex = imapsync-(__VER__)\.tgz
  +}
  +
  +%prep
  +%setup -q
  +
  +%build
  +pod2man imapsync imapsync.1
  +
  +%install
  +rm -rf $RPM_BUILD_ROOT
  +%{l_shtool} mkdir -f -p -m 755 \
  +$RPM_BUILD_ROOT%{l_prefix}/bin \
  +$RPM_BUILD_ROOT%{l_prefix}/man/man1
  +%{l_shtool} install -c -m 755 \
  +-e 's;#!/usr/bin/perl;#!%{l_prefix}/bin/perl;' \
  +imapsync $RPM_BUILD_ROOT%{l_prefix}/bin/
  +%{l_shtool} install -c -m 644 \
  +imapsync.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/
  +%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
  +
  +%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/opendkim/ opendkim.spec

2009-11-14 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   02-Nov-2009 13:13:09
  Branch: HEAD Handle: 2009110212130900

  Modified files:
openpkg-src/opendkimopendkim.spec

  Log:
upgrading package: opendkim 1.1.1 - 1.1.2

  Summary:
RevisionChanges Path
1.4 +2  -2  openpkg-src/opendkim/opendkim.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/opendkim/opendkim.spec
  
  $ cvs diff -u -r1.3 -r1.4 opendkim.spec
  --- openpkg-src/opendkim/opendkim.spec10 Oct 2009 05:29:36 -  
1.3
  +++ openpkg-src/opendkim/opendkim.spec2 Nov 2009 12:13:09 -   
1.4
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Mail
   License:  BSD
  -Version:  1.1.1
  -Release:  20091010
  +Version:  1.1.2
  +Release:  20091102
   
   #   package options
   %option   with_fsl  yes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


  1   2   >