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

2006-01-30 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Jan-2006 20:14:53
  Branch: HEAD Handle: 2006013019145300

  Modified files:
openpkg-src/libjit  libjit.spec

  Log:
upgrading package: libjit 0.0.4 -> 0.0.6

  Summary:
RevisionChanges Path
1.11+2  -2  openpkg-src/libjit/libjit.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/libjit/libjit.spec
  
  $ cvs diff -u -r1.10 -r1.11 libjit.spec
  --- openpkg-src/libjit/libjit.spec1 Jan 2006 13:15:47 -   1.10
  +++ openpkg-src/libjit/libjit.spec30 Jan 2006 19:14:53 -  1.11
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Language
   License:  GPL
  -Version:  0.0.4
  -Release:  20050217
  +Version:  0.0.6
  +Release:  20060130
   
   #   list of sources
   Source0:  
http://www.southern-storm.com.au/download/libjit-%{version}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-01-30 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Jan-2006 20:05:10
  Branch: HEAD Handle: 2006013019050900

  Added files:
openpkg-src/gq  gq.patch
  Modified files:
openpkg-src/gq  gq.spec

  Log:
fix building and apply a bunch of additional fixes from the FreeBSD
ports tree

  Summary:
RevisionChanges Path
1.1 +82 -0  openpkg-src/gq/gq.patch
1.11+3  -1  openpkg-src/gq/gq.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/gq/gq.patch
  
  $ cvs diff -u -r0 -r1.1 gq.patch
  --- /dev/null 2006-01-30 20:05:09 +0100
  +++ gq.patch  2006-01-30 20:05:09 +0100
  @@ -0,0 +1,82 @@
  +Index: src/configfile.h
  +--- src/configfile.h.orig2003-11-03 22:34:52 +0100
   src/configfile.h 2006-01-30 20:02:32 +0100
  +@@ -31,6 +31,7 @@
  + #include 
  + 
  + #include "common.h"
  ++#include "util.h"
  + 
  + #define CURRENT_CONFIG_VERSION  3
  + 
  +@@ -220,9 +221,9 @@
  + extern struct gq_config *config;
  + extern GList *transient_servers;
  + 
  +-extern const struct tokenlist token_bindtype[];
  +-extern const struct tokenlist token_ldifformat[];
  +-extern const struct tokenlist token_searchargument[];
  ++extern const struct tokenlist token_bindtype[4];
  ++extern const struct tokenlist token_ldifformat[3];
  ++extern const struct tokenlist token_searchargument[5];
  + 
  + #endif
  + 
  +Index: src/state.c
  +--- src/state.c.orig 2003-11-03 22:19:54 +0100
   src/state.c  2006-01-30 20:00:09 +0100
  +@@ -754,7 +754,7 @@
  + }
  + }
  + 
  +-if (n != NULL && v->type != 0) {
  ++if (n != NULL && v!=NULL && v->type != 0) {
  + char *ep;
  + 
  + assert(v);
  +Index: src/util.c
  +--- src/util.c.orig  2003-11-03 23:28:24 +0100
   src/util.c   2006-01-30 20:00:09 +0100
  +@@ -1909,7 +1909,7 @@
  + char **gq_ldap_explode_dn(const char *dn, int dummy)
  + {
  +  int i, rc;
  +- LDAPDN *parts;
  ++ LDAPDN parts;
  +  char **v = 0; 
  +  
  +  rc = ldap_str2dn(dn, &parts, LDAP_DN_FORMAT_LDAPV3);
  +@@ -1921,7 +1921,7 @@
  +  v = (char **) calloc((i + 2), sizeof(char*));
  + 
  +  for( i = 0 ; parts[i] ; i++ ) {
  +-  ldap_rdn2str(parts[0][i], &v[i],
  ++  ldap_rdn2str(parts[i], &v[i],
  +LDAP_DN_FORMAT_LDAPV3 | LDAP_DN_PRETTY );
  +  } 
  +  return v;
  +Index: src/xmlparse.c
  +--- src/xmlparse.c.orig  2003-11-03 22:05:18 +0100
   src/xmlparse.c   2006-01-30 20:00:09 +0100
  +@@ -51,7 +51,7 @@
  + #include "xmlparse.h"
  + 
  + #define malloc g_malloc
  +-#define calloc(n,s) g_malloc0(n * s)
  ++#define calloc(n,s) g_malloc0((n) * (s))
  + 
  + #define TAGSTACK_INCR 20
  + 
  +@@ -162,10 +162,11 @@
  + e->attrs = NULL;
  + if (attrs) {
  + for (i = 0 ; attrs[i] ; i++) ;
  +-e->attrs = calloc(i, sizeof(xmlChar *));
  ++e->attrs = calloc(i+1, sizeof(xmlChar *));
  + for (i = 0 ; attrs[i] ; i++) {
  + e->attrs[i] = strdup(attrs[i]);
  + }
  ++e->attrs[i] = NULL;
  + }
  + 
  + /* lookup handler */
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/gq/gq.spec
  
  $ cvs diff -u -r1.10 -r1.11 gq.spec
  --- openpkg-src/gq/gq.spec1 Jan 2006 13:14:15 -   1.10
  +++ openpkg-src/gq/gq.spec30 Jan 2006 19:05:09 -  1.11
  @@ -37,10 +37,11 @@
   Group:Database
   License:  GPL
   Version:  %{V_opkg}
  -Release:  20041228
  +Release:  20060130
   
   #   list of sources
   Source0:  
http://osdn.dl.sourceforge.net/sourceforge/gqclient/gq-%{V_dist}.tar.gz
  +Patch0:   gq.patch
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -65,6 +66,7 @@
   
   %prep
   %setup -q -n gq-%{V_dist}
  +%patch -p0
   
   %build
   CC="%{l_cc}" \
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-01-30 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Jan-2006 19:45:59
  Branch: HEAD Handle: 2006013018455900

  Removed files:
openpkg-src/php3php3.spec

  Log:
remove the fully obsolete PHP 3.x from OpenPKG-CURRENT now that the
PHP world is already fully transitioning from PHP 4.x to 5.x

  Summary:
RevisionChanges Path
1.11+0  -204openpkg-src/php3/php3.spec
  

  rm -f openpkg-src/php3/php3.spec <<'@@ .'
  Index: openpkg-src/php3/php3.spec
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-01-30 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Jan-2006 19:38:21
  Branch: HEAD Handle: 2006013018382000

  Modified files:
openpkg-src/gcc41   gcc41.spec

  Log:
although share/java is not nice it is considered a shared directory
for various Java JAR files (from any package) by GCJ, so remove the
filesystem cleanup hack to get GCJ working out-of-the-box

  Summary:
RevisionChanges Path
1.48+1  -5  openpkg-src/gcc41/gcc41.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/gcc41/gcc41.spec
  
  $ cvs diff -u -r1.47 -r1.48 gcc41.spec
  --- openpkg-src/gcc41/gcc41.spec  28 Jan 2006 09:24:58 -  1.47
  +++ openpkg-src/gcc41/gcc41.spec  30 Jan 2006 18:38:20 -  1.48
  @@ -38,7 +38,7 @@
   Group:Compiler
   License:  GPL
   Version:  %{V_full}s%{V_snap}
  -Release:  20060128
  +Release:  20060130
   
   #   package options
   %option   with_cxx   yes
  @@ -271,10 +271,6 @@
   mv $RPM_BUILD_ROOT%{l_prefix}/${triple}/include/* \
  $RPM_BUILD_ROOT%{l_prefix}/lib/gcc%{V_comp}/${triple}/[0-9]*/include/ 
\
  >/dev/null 2>&1 || true
  -%if "%{with_java}" == "yes"
  -mv $RPM_BUILD_ROOT%{l_prefix}/share/java \
  -   $RPM_BUILD_ROOT%{l_prefix}/share/gcc
  -%endif
   
   #   strip installation tree
   rm -rf $RPM_BUILD_ROOT%{l_prefix}/${triple}
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-01-30 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Jan-2006 19:36:21
  Branch: HEAD Handle: 2006013018362100

  Modified files:
openpkg-src/gcc gcc.spec

  Log:
although share/java is not nice it is considered a shared directory
for various Java JAR files (from any package) by GCJ, so remove the
filesystem cleanup hack to get GCJ working out-of-the-box

  Summary:
RevisionChanges Path
1.123   +1  -5  openpkg-src/gcc/gcc.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/gcc/gcc.spec
  
  $ cvs diff -u -r1.122 -r1.123 gcc.spec
  --- openpkg-src/gcc/gcc.spec  1 Jan 2006 13:13:46 -   1.122
  +++ openpkg-src/gcc/gcc.spec  30 Jan 2006 18:36:21 -  1.123
  @@ -37,7 +37,7 @@
   Group:Compiler
   License:  GPL
   Version:  %{V_full}
  -Release:  20050929
  +Release:  20060130
   
   #   package options
   %option   with_cxx   yes
  @@ -274,10 +274,6 @@
   mv $RPM_BUILD_ROOT%{l_prefix}/${triple}/include/* \
  $RPM_BUILD_ROOT%{l_prefix}/lib/gcc%{V_comp}/${triple}/[0-9]*/include/ 
\
  >/dev/null 2>&1 || true
  -%if "%{with_java}" == "yes"
  -mv $RPM_BUILD_ROOT%{l_prefix}/share/java \
  -   $RPM_BUILD_ROOT%{l_prefix}/share/gcc
  -%endif
   
   #   strip installation tree
   rm -rf $RPM_BUILD_ROOT%{l_prefix}/${triple}
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-01-30 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Jan-2006 19:21:45
  Branch: HEAD Handle: 2006013018214500

  Modified files:
openpkg-src/openser openser.spec

  Log:
modifying package: openser-1.0.0 20060107 -> 20060130

  Summary:
RevisionChanges Path
1.8 +2  -2  openpkg-src/openser/openser.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/openser/openser.spec
  
  $ cvs diff -u -r1.7 -r1.8 openser.spec
  --- openpkg-src/openser/openser.spec  7 Jan 2006 08:22:08 -   1.7
  +++ openpkg-src/openser/openser.spec  30 Jan 2006 18:21:45 -  1.8
  @@ -24,7 +24,7 @@
   
   #   package options
   %define   V_openser  1.0.0
  -%define   V_rtpproxy 20060107-062702
  +%define   V_rtpproxy 20060130-062746
   
   #   package information
   Name: openser
  @@ -37,7 +37,7 @@
   Group:Network
   License:  GPL
   Version:  %{V_openser}
  -Release:  20060107
  +Release:  20060130
   
   #   package options
   %option   with_fsl  yes
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-01-30 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Jan-2006 19:16:46
  Branch: HEAD Handle: 2006013018164400

  Modified files:
openpkg-src/ecartis ecartis.spec

  Log:
upgrading package: ecartis 1.0.0.20051114 -> 1.0.0.20060130

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

  patch -p0 <<'@@ .'
  Index: openpkg-src/ecartis/ecartis.spec
  
  $ cvs diff -u -r1.22 -r1.23 ecartis.spec
  --- openpkg-src/ecartis/ecartis.spec  1 Jan 2006 13:13:20 -   1.22
  +++ openpkg-src/ecartis/ecartis.spec  30 Jan 2006 18:16:44 -  1.23
  @@ -24,7 +24,7 @@
   
   #   package version
   %define   V_main1.0.0
  -%define   V_snap20051114
  +%define   V_snap20060130
   %define   V_here%{V_main}.%{V_snap}
   
   #   package information
  @@ -38,7 +38,7 @@
   Group:Mail
   License:  GPL
   Version:  %{V_here}
  -Release:  20051115
  +Release:  20060130
   
   #   list of sources
   Source0:  
ftp://ftp.ecartis.org/pub/ecartis/snapshots/tar/ecartis-%{V_main}-snap%{V_snap}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org