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

2007-12-27 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:   27-Dec-2007 11:44:23
  Branch: HEAD Handle: 2007122710442100

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
remove support for ancient FreeBSD 4 platform

  Summary:
RevisionChanges Path
1.485   +1  -0  openpkg-src/openpkg/HISTORY
1.621   +1  -48 openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.484 -r1.485 HISTORY
  --- openpkg-src/openpkg/HISTORY   22 Dec 2007 21:41:51 -  1.484
  +++ openpkg-src/openpkg/HISTORY   27 Dec 2007 10:44:21 -  1.485
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071227 remove support for ancient FreeBSD 4
   20071222 upgrade to Perl 5.10.0
   20071030 upgrade to cURL 7.17.1
   20071019 upgrade to OpenSSL 0.9.8g
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.620 -r1.621 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  22 Dec 2007 21:41:51 -  1.620
  +++ openpkg-src/openpkg/openpkg.spec  27 Dec 2007 10:44:21 -  1.621
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20071222
  +%define   V_openpkg  20071227
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -1886,51 +1886,7 @@
   echo openpkg:WARNING: (would require root-privileges) 12
   else
   case $plid in
  -FreeBSD/4.* )
  -if [ ! -f /etc/rc.d/${name}.sh ]; then
  -#   make sure /etc/rc.d exists
  -if [ ! -d /etc/rc.d ]; then
  -mkdir /etc/rc.d
  -fi
  -#   make sure /etc/rc.d is activated
  -( . /etc/defaults/rc.conf
  -  . /etc/rc.conf
  -  found=0
  -  for p in ${local_startup-x}; do
  -  if [ .$p = ./etc/rc.d ]; then
  -  found=1
  -  break
  -  fi
  -  done
  -  if [ .$found = .0 ]; then
  -cp -p /etc/rc.conf /etc/rc.conf.bak
  -( grep -v local_startup /etc/rc.conf.bak
  -  echo local_startup=\/etc/rc.d $local_startup\
  -) /etc/rc.conf
  -rm -f /etc/rc.conf.bak /dev/null 21
  -  fi
  -) || exit $?
  -#   install transfer script
  -rm -f /etc/rc.d/${name}.sh /dev/null 21
  -( echo #!/bin/sh
  -  echo ##
  -  echo ##  ${name}.sh -- startup/shutdown transfer 
script for OpenPKG ${prefix} hierarchy
  -  echo ##
  -  echo 
  -  echo [ ! -f ${prefix}/etc/rc ]  exit 0
  -  echo case \$1 in
  -  echo start ) exec ${prefix}/etc/rc all start ;;
  -  echo stop  ) exec ${prefix}/etc/rc all stop  ;;
  -  echo esac
  -) /etc/rc.d/${name}.sh
  -chmod 755 /etc/rc.d/${name}.sh
  -fi
  -;;
   FreeBSD/* )
  -if [ -f /etc/rc.d/${name}.sh ]; then
  -#   remove old transfer script (for upgrading from 
FreeBSD 4 only)
  -rm -f /etc/rc.d/${name}.sh /dev/null 21
  -fi
   if [ ! -f /etc/rc.d/openpkg-${name} ]; then
   #   install transfer script
   rm -f /etc/rc.d/openpkg-${name} /dev/null 21
  @@ -2700,9 +2656,6 @@
   echo openpkg:WARNING: (would require root-privileges) 12
   else
   case $plid in
  -FreeBSD/4.* )
  -rm -f /etc/rc.d/${name}.sh /dev/null 21
  -;;
   FreeBSD/* )
   rm -f /etc/rc.d/openpkg-${name} /dev/null 21
   ;;
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-12-22 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:   22-Dec-2007 22:41:52
  Branch: HEAD Handle: 200711415100

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec perl.patch

  Log:
upgrade to Perl 5.10.0

  Summary:
RevisionChanges Path
1.484   +1  -0  openpkg-src/openpkg/HISTORY
1.620   +2  -2  openpkg-src/openpkg/openpkg.spec
1.3 +41 -57 openpkg-src/openpkg/perl.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.483 -r1.484 HISTORY
  --- openpkg-src/openpkg/HISTORY   30 Oct 2007 07:48:04 -  1.483
  +++ openpkg-src/openpkg/HISTORY   22 Dec 2007 21:41:51 -  1.484
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071222 upgrade to Perl 5.10.0
   20071030 upgrade to cURL 7.17.1
   20071019 upgrade to OpenSSL 0.9.8g
   20071018 upgrade to latest Tar patch
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.619 -r1.620 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  30 Oct 2007 07:48:04 -  1.619
  +++ openpkg-src/openpkg/openpkg.spec  22 Dec 2007 21:41:51 -  1.620
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20071030
  +%define   V_openpkg  20071222
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -56,7 +56,7 @@
   %define   V_uuid 1.6.0
   %define   V_config   20060923
   %define   V_registry 1.1.3
  -%define   V_perl 5.8.8
  +%define   V_perl 5.10.0
   %define   V_openssl  0.9.8g
   %define   V_tools1.4.5
   %define   V_exec 2.0.1-C
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/perl.patch
  
  $ cvs diff -u -r1.2 -r1.3 perl.patch
  --- openpkg-src/openpkg/perl.patch20 May 2007 07:55:38 -  1.2
  +++ openpkg-src/openpkg/perl.patch22 Dec 2007 21:41:51 -  1.3
  @@ -4,9 +4,9 @@
   area is.
   
   Index: installperl
   installperl.orig 2006-01-28 16:35:28 +0100
  -+++ installperl  2006-02-01 20:00:56 +0100
  -@@ -189,6 +189,8 @@
  +--- installperl.orig 2006-08-15 14:37:41 +0200
   installperl  2006-08-18 21:05:05 +0200
  +@@ -211,6 +211,8 @@
my $installarchlib = $destdir$Config{installarchlib};
my $installsitelib = $destdir$Config{installsitelib};
my $installsitearch = $destdir$Config{installsitearch};
  @@ -15,7 +15,7 @@
my $installman1dir = $destdir$Config{installman1dir};
my $man1ext = $Config{man1ext};
my $libperl = $Config{libperl};
  -@@ -381,6 +383,8 @@
  +@@ -403,6 +405,8 @@
mkpath($installarchlib, $verbose, 0777);
mkpath($installsitelib, $verbose, 0777) if ($installsitelib);
mkpath($installsitearch, $verbose, 0777) if ($installsitearch);
  @@ -36,19 +36,19 @@
   PERL[5]LIB, site, vendor, perl, other.
   
   Index: perl.c
   perl.c.orig  2006-01-31 13:34:47 +0100
  -+++ perl.c   2006-02-01 20:00:56 +0100
  -@@ -4776,39 +4776,6 @@
  - incpush(APPLLIB_EXP, TRUE, TRUE, TRUE);
  +--- perl.c.orig  2006-08-15 14:37:41 +0200
   perl.c   2006-08-18 21:08:14 +0200
  +@@ -4749,39 +4749,6 @@
  + incpush(APPLLIB_EXP, TRUE, TRUE, TRUE, TRUE);
#endif

   -#ifdef ARCHLIB_EXP
  --incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE);
  +-incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE, TRUE);
   -#endif
   -#ifdef MACOS_TRADITIONAL
   -{
   -Stat_t tmpstatbuf;
  --SV * privdir = NEWSV(55, 0);
  +-SV * privdir = newSV(0);
   -char * macperl = PerlEnv_getenv(MACPERL);
   -
   -if (!macperl)
  @@ -56,39 +56,39 @@
   -
   -Perl_sv_setpvf(aTHX_ privdir, %slib:, macperl);
   -if (PerlLIO_stat(SvPVX(privdir), tmpstatbuf) = 0  
S_ISDIR(tmpstatbuf.st_mode))
  --incpush(SvPVX(privdir), TRUE, FALSE, TRUE);
  +-incpush(SvPVX(privdir), TRUE, FALSE, TRUE, FALSE);
   -Perl_sv_setpvf(aTHX_ privdir, %ssite_perl:, macperl);
   -if (PerlLIO_stat(SvPVX(privdir), tmpstatbuf) = 0  
S_ISDIR(tmpstatbuf.st_mode))
  --incpush(SvPVX(privdir), TRUE, FALSE, TRUE);
  +-incpush(SvPVX(privdir), TRUE, FALSE, TRUE, FALSE);
   -
   -SvREFCNT_dec(privdir);
   -}
   -if (!PL_tainting)
  --incpush(:, FALSE, FALSE, TRUE);
  +-incpush(:, FALSE, FALSE, TRUE, FALSE);
   -#else
   -#ifndef PRIVLIB_EXP
   -#  define 

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

2007-10-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-Oct-2007 08:48:06
  Branch: HEAD Handle: 2007103007480400

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to cURL 7.17.1

  Summary:
RevisionChanges Path
1.483   +1  -0  openpkg-src/openpkg/HISTORY
1.619   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.482 -r1.483 HISTORY
  --- openpkg-src/openpkg/HISTORY   19 Oct 2007 15:39:56 -  1.482
  +++ openpkg-src/openpkg/HISTORY   30 Oct 2007 07:48:04 -  1.483
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071030 upgrade to cURL 7.17.1
   20071019 upgrade to OpenSSL 0.9.8g
   20071018 upgrade to latest Tar patch
   20071017 try to port Tar and OpenSSL to AIX 5 and Solaris 8 again
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.618 -r1.619 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  19 Oct 2007 15:39:56 -  1.618
  +++ openpkg-src/openpkg/openpkg.spec  30 Oct 2007 07:48:04 -  1.619
  @@ -39,14 +39,14 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20071019
  +%define   V_openpkg  20071030
   
   #   the used software versions
   %define   V_rpm  4.2.1
   %define   V_zlib 1.2.3
   %define   V_bzip21.0.4
   %define   V_beecrypt 4.1.2
  -%define   V_curl 7.17.0
  +%define   V_curl 7.17.1
   %define   V_make 3.81
   %define   V_gzip 1.3.12
   %define   V_gzip_r   1.13
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

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

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   19-Oct-2007 17:39:57
  Branch: HEAD Handle: 2007101916395600

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20071018 - 20071019

  Summary:
RevisionChanges Path
1.482   +1  -0  openpkg-src/openpkg/HISTORY
1.618   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.481 -r1.482 HISTORY
  --- openpkg-src/openpkg/HISTORY   18 Oct 2007 07:18:16 -  1.481
  +++ openpkg-src/openpkg/HISTORY   19 Oct 2007 15:39:56 -  1.482
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071019 upgrade to OpenSSL 0.9.8g
   20071018 upgrade to latest Tar patch
   20071017 try to port Tar and OpenSSL to AIX 5 and Solaris 8 again
   20071015 avoid calling of autoconf while building GNU bash
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.617 -r1.618 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  18 Oct 2007 07:18:19 -  1.617
  +++ openpkg-src/openpkg/openpkg.spec  19 Oct 2007 15:39:56 -  1.618
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20071018
  +%define   V_openpkg  20071019
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -57,7 +57,7 @@
   %define   V_config   20060923
   %define   V_registry 1.1.3
   %define   V_perl 5.8.8
  -%define   V_openssl  0.9.8f
  +%define   V_openssl  0.9.8g
   %define   V_tools1.4.5
   %define   V_exec 2.0.1-C
   
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-18 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:   18-Oct-2007 09:18:20
  Branch: HEAD Handle: 2007101808181603

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec tar.patch

  Log:
upgrade to latest Tar patch from cs@

  Summary:
RevisionChanges Path
1.481   +1  -0  openpkg-src/openpkg/HISTORY
1.617   +1  -1  openpkg-src/openpkg/openpkg.spec
1.12+11 -14 openpkg-src/openpkg/tar.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.480 -r1.481 HISTORY
  --- openpkg-src/openpkg/HISTORY   17 Oct 2007 07:01:34 -  1.480
  +++ openpkg-src/openpkg/HISTORY   18 Oct 2007 07:18:16 -  1.481
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071018 upgrade to latest Tar patch
   20071017 try to port Tar and OpenSSL to AIX 5 and Solaris 8 again
   20071015 avoid calling of autoconf while building GNU bash
   20071014 fix OpenSSL patch (some important portability related hunks were 
lost)
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.616 -r1.617 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  17 Oct 2007 07:01:34 -  1.616
  +++ openpkg-src/openpkg/openpkg.spec  18 Oct 2007 07:18:19 -  1.617
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20071017
  +%define   V_openpkg  20071018
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/tar.patch
  
  $ cvs diff -u -r1.11 -r1.12 tar.patch
  --- openpkg-src/openpkg/tar.patch 17 Oct 2007 07:01:34 -  1.11
  +++ openpkg-src/openpkg/tar.patch 18 Oct 2007 07:18:19 -  1.12
  @@ -23,20 +23,6 @@
hol_entry_long_iterate (const struct hol_entry *entry,
int (*func)(const struct argp_option *opt,
const struct argp_option *real,
  -Index: lib/system.h
   lib/system.h.orig2007-06-27 15:49:45 +0200
  -+++ lib/system.h 2007-10-17 08:43:09 +0200
  -@@ -417,6 +417,10 @@
  - 
  - #include limits.h
  - 
  -+#ifndef CHAR_BIT
  -+# define CHAR_BIT 8
  -+#endif
  -+
  - #ifndef MB_LEN_MAX
  - # define MB_LEN_MAX 1
  - #endif
   Index: src/compare.c
   --- src/compare.c.orig   2007-08-26 10:56:55 +0200
   +++ src/compare.c2007-10-17 08:40:12 +0200
  @@ -110,3 +96,14 @@
static bool xheader_protected_pattern_p (char const *pattern);
static bool xheader_protected_keyword_p (char const *keyword);
static void xheader_set_single_keyword (char *) __attribute__ ((noreturn));
  +Index: lib/strerror.c
  +--- lib/strerror.c.orig  2007-09-28 15:11:37 +0200
   lib/strerror.c   2007-10-18 00:55:28 +0200
  +@@ -23,6 +23,7 @@
  + 
  + # include string.h
  + # include stdio.h
  ++# include limits.h
  + 
  + # undef strerror
  + 
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-17 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:   17-Oct-2007 09:01:35
  Branch: HEAD Handle: 2007101708013400

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec openssl.patch tar.patch

  Log:
try to port Tar and OpenSSL to AIX 5 and Solaris 8 again

  Summary:
RevisionChanges Path
1.480   +1  -0  openpkg-src/openpkg/HISTORY
1.616   +1  -1  openpkg-src/openpkg/openpkg.spec
1.10+14 -0  openpkg-src/openpkg/openssl.patch
1.11+22 -8  openpkg-src/openpkg/tar.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.479 -r1.480 HISTORY
  --- openpkg-src/openpkg/HISTORY   15 Oct 2007 11:39:31 -  1.479
  +++ openpkg-src/openpkg/HISTORY   17 Oct 2007 07:01:34 -  1.480
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071017 try to port Tar and OpenSSL to AIX 5 and Solaris 8 again
   20071015 avoid calling of autoconf while building GNU bash
   20071014 fix OpenSSL patch (some important portability related hunks were 
lost)
   20071011 upgrade to OpenSSL 0.9.8f
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.615 -r1.616 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  15 Oct 2007 11:39:32 -  1.615
  +++ openpkg-src/openpkg/openpkg.spec  17 Oct 2007 07:01:34 -  1.616
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20071015
  +%define   V_openpkg  20071017
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openssl.patch
  
  $ cvs diff -u -r1.9 -r1.10 openssl.patch
  --- openpkg-src/openpkg/openssl.patch 14 Oct 2007 07:43:03 -  1.9
  +++ openpkg-src/openpkg/openssl.patch 17 Oct 2007 07:01:34 -  1.10
  @@ -77,6 +77,20 @@
my $cflags = $fields[$idx_cflags];
my $unistd = $fields[$idx_unistd];
my $thread_cflag = $fields[$idx_thread_cflag];
  +Index: Configure
  +--- Configure.orig   2007-10-17 08:55:51 +0200
   Configure2007-10-17 08:56:05 +0200
  +@@ -402,8 +402,8 @@
  + 
  +  IBM's AIX.
  + aix3-cc,  cc:-O -DB_ENDIAN -qmaxmem=16384::(unknown):AIX::RC4_CHAR:::,
  +-aix-gcc,  gcc:-O 
-DB_ENDIAN::-D_THREAD_SAFE:AIX::RC4_CHAR::aix_ppc32.o::dlfcn:aix-shared:::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)::-X
 32,
  +-aix64-gcc,gcc:-maix64 -O 
-DB_ENDIAN::-D_THREAD_SAFE:AIX::SIXTY_FOUR_BIT_LONG 
RC4_CHAR::aix_ppc64.o::dlfcn:aix-shared::-maix64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)::-X64,
  ++aix-gcc,  gcc:-O 
-DB_ENDIAN::-D_THREAD_SAFE:AIX::RC4_CHAR::aix_ppc32.o::dlfcn:aix-shared:::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)::,
  ++aix64-gcc,gcc:-maix64 -O 
-DB_ENDIAN::-D_THREAD_SAFE:AIX::SIXTY_FOUR_BIT_LONG 
RC4_CHAR::aix_ppc64.o::dlfcn:aix-shared::-maix64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)::,
  + # Below targets assume AIX 5. Idea is to effectively disregard $OBJECT_MODE
  + # at build time. $OBJECT_MODE is respected at ./config stage!
  + aix-cc,   cc:-q32 -O -DB_ENDIAN -qmaxmem=16384 -qro 
-qroconst::-qthreaded:AIX::RC4_CHAR::aix_ppc32.o::dlfcn:aix-shared::-q32:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)::-X
 32,
   Index: config
   --- config.orig  2007-08-01 13:21:35 +0200
   +++ config   2007-10-11 22:45:07 +0200
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/tar.patch
  
  $ cvs diff -u -r1.10 -r1.11 tar.patch
  --- openpkg-src/openpkg/tar.patch 10 Oct 2007 16:06:06 -  1.10
  +++ openpkg-src/openpkg/tar.patch 17 Oct 2007 07:01:34 -  1.11
  @@ -1,6 +1,6 @@
   Index: Makefile.in
   --- Makefile.in.orig 2007-10-10 13:00:22 +0200
  -+++ Makefile.in  2007-10-10 17:01:10 +0200
   Makefile.in  2007-10-17 08:40:12 +0200
   @@ -485,7 +485,7 @@
target_alias = @target_alias@
ACLOCAL_AMFLAGS = -I m4
  @@ -12,7 +12,7 @@

   Index: lib/argp-help.c
   --- lib/argp-help.c.orig 2007-09-28 15:11:36 +0200
  -+++ lib/argp-help.c  2007-10-10 17:01:10 +0200
   lib/argp-help.c  2007-10-17 08:40:12 +0200
   @@ -570,8 +570,7 @@
  return val;
}
  @@ -23,9 +23,23 @@
hol_entry_long_iterate (const struct hol_entry *entry,
int (*func)(const struct argp_option *opt,
  

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

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

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   15-Oct-2007 13:39:32
  Branch: HEAD Handle: 2007101512393101

  Modified files:
openpkg-src/openpkg HISTORY bash.patch openpkg.spec

  Log:
avoid calling of autoconf while building GNU bash

  Summary:
RevisionChanges Path
1.479   +1  -0  openpkg-src/openpkg/HISTORY
1.13+23 -0  openpkg-src/openpkg/bash.patch
1.615   +2  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.478 -r1.479 HISTORY
  --- openpkg-src/openpkg/HISTORY   14 Oct 2007 07:43:02 -  1.478
  +++ openpkg-src/openpkg/HISTORY   15 Oct 2007 11:39:31 -  1.479
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071015 avoid calling of autoconf while building GNU bash
   20071014 fix OpenSSL patch (some important portability related hunks were 
lost)
   20071011 upgrade to OpenSSL 0.9.8f
   20071011 add support for FreeBSD 8.0-CURRENT
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/bash.patch
  
  $ cvs diff -u -r1.12 -r1.13 bash.patch
  --- openpkg-src/openpkg/bash.patch6 Dec 2006 12:57:01 -   1.12
  +++ openpkg-src/openpkg/bash.patch15 Oct 2007 11:39:31 -  1.13
  @@ -337,3 +337,26 @@
{
  peek_char = shell_getc (1);
  if MBTEST(peek_char == '(')   /* ) */
  +
  +-
  +
  +Do not require autoconf. Fixes build on Solaris 10 8/07 u4 on sparc64
  +
  +Index: Makefile.in
  +--- Makefile.in.orig 2006-08-17 20:03:35 +0200
   Makefile.in  2007-10-15 13:00:34 +0200
  +@@ -682,13 +682,9 @@
  + stamp-h:config.status $(srcdir)/config.h.in $(srcdir)/config-top.h 
$(srcdir)/config-bot.h
  + CONFIG_FILES= CONFIG_HEADERS=config.h $(SHELL) ./config.status
  + 
  +-config.status:  $(srcdir)/configure
  ++config.status:
  + $(SHELL) ./config.status --recheck
  + 
  +-# comment out for distribution
  +-$(srcdir)/configure:$(srcdir)/configure.in $(srcdir)/aclocal.m4 
$(srcdir)/config.h.in
  +-cd $(srcdir)  autoconf
  +-
  + # for chet
  + reconfig: force
  + sh $(srcdir)/configure -C
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.614 -r1.615 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  14 Oct 2007 07:43:02 -  1.614
  +++ openpkg-src/openpkg/openpkg.spec  15 Oct 2007 11:39:32 -  1.615
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20071014
  +%define   V_openpkg  20071015
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -696,6 +696,7 @@
   #   disable building with debug symbols
   echo ac_cv_prog_cc_g=no
 ) config.cache
  +  AUTOCONF=true \
 CC=${l_cc}
 ./configure \
 --cache-file=./config.cache \
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-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:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   14-Oct-2007 09:43:03
  Branch: HEAD Handle: 2007101408430201

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec openssl.patch

  Log:
fix OpenSSL patch (some important portability related hunks were lost)

  Summary:
RevisionChanges Path
1.478   +1  -0  openpkg-src/openpkg/HISTORY
1.614   +1  -1  openpkg-src/openpkg/openpkg.spec
1.9 +40 -0  openpkg-src/openpkg/openssl.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.477 -r1.478 HISTORY
  --- openpkg-src/openpkg/HISTORY   11 Oct 2007 20:51:15 -  1.477
  +++ openpkg-src/openpkg/HISTORY   14 Oct 2007 07:43:02 -  1.478
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071014 fix OpenSSL patch (some important portability related hunks were 
lost)
   20071011 upgrade to OpenSSL 0.9.8f
   20071011 add support for FreeBSD 8.0-CURRENT
   20071010 upgrade to GNU tar 1.19
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.613 -r1.614 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  11 Oct 2007 20:51:15 -  1.613
  +++ openpkg-src/openpkg/openpkg.spec  14 Oct 2007 07:43:02 -  1.614
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20071011
  +%define   V_openpkg  20071014
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openssl.patch
  
  $ cvs diff -u -r1.8 -r1.9 openssl.patch
  --- openpkg-src/openpkg/openssl.patch 11 Oct 2007 20:51:16 -  1.8
  +++ openpkg-src/openpkg/openssl.patch 14 Oct 2007 07:43:03 -  1.9
  @@ -1,6 +1,46 @@
  +Index: crypto/objects/obj_dat.pl
  +--- crypto/objects/obj_dat.pl.orig   2005-08-29 01:20:47 +0200
   crypto/objects/obj_dat.pl2006-05-15 08:03:44 +0200
  +@@ -1,9 +1,5 @@
  + #!/usr/local/bin/perl
  + 
  +-# fixes bug in floating point emulation on sparc64 when
  +-# this script produces off-by-one output on sparc64
  +-use integer;
  +-
  + sub obj_cmp
  + {
  + local(@a,@b,$_,$r);
  +Index: util/mklink.pl
  +--- util/mklink.pl.orig  2006-05-15 20:46:35 +0200
   util/mklink.pl   2006-05-15 20:48:07 +0200
  +@@ -15,13 +15,12 @@
  + # Apart from this, this script should be able to handle even the most
  + # pathological cases.
  + 
  +-use Cwd;
  +-
  + my $from = shift;
  + my @files = @ARGV;
  + 
  + my @from_path = split(/[\\\/]/, $from);
  +-my $pwd = getcwd();
  ++my $pwd = `pwd`;
  ++$pwd =~ s/\n$//s;
  + chomp($pwd);
  + my @pwd_path = split(/[\\\/]/, $pwd);
  + 
   Index: Configure
   --- Configure.orig   2007-10-11 22:43:07 +0200
   +++ Configure2007-10-11 22:43:07 +0200
  +@@ -6,7 +6,6 @@
  + ##
  + 
  + require 5.000;
  +-use strict;
  + 
  + # see INSTALL for instructions.
  + 
   @@ -33,6 +33,7 @@
#   (Default: KRB5_DIR/include)
# --with-krb5-flavor  Declare what flavor of Kerberos 5 is used.  Currently
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpmtool

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

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

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpmtool

  Log:
add support for FreeBSD 8.0-CURRENT

  Summary:
RevisionChanges Path
1.476   +1  -0  openpkg-src/openpkg/HISTORY
1.612   +1  -1  openpkg-src/openpkg/openpkg.spec
1.56+1  -1  openpkg-src/openpkg/rpmtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.475 -r1.476 HISTORY
  --- openpkg-src/openpkg/HISTORY   10 Oct 2007 16:06:06 -  1.475
  +++ openpkg-src/openpkg/HISTORY   11 Oct 2007 13:16:04 -  1.476
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071011 add support for FreeBSD 8.0-CURRENT
   20071010 upgrade to GNU tar 1.19
   20070914 upgrade to cURL 7.17.0
   20070909 print entire list of all %NoSource files instead of bailing out on 
the first missing file encountered
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.611 -r1.612 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  10 Oct 2007 16:06:06 -  1.611
  +++ openpkg-src/openpkg/openpkg.spec  11 Oct 2007 13:16:04 -  1.612
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20071010
  +%define   V_openpkg  20071011
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool
  
  $ cvs diff -u -r1.55 -r1.56 rpmtool
  --- openpkg-src/openpkg/rpmtool   6 May 2007 22:17:05 -   1.55
  +++ openpkg-src/openpkg/rpmtool   11 Oct 2007 13:16:05 -  1.56
  @@ -340,7 +340,7 @@
   fi
   fi
   ;;
  -*:FreeBSD:[4567].*:* )
  +*:FreeBSD:[4-8].*:* )
   n=`/sbin/sysctl -n hw.ncpu`
   if [ .$n != . ]; then
   if [ $n -gt 1 ]; then
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-10-11 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:   11-Oct-2007 22:51:16
  Branch: HEAD Handle: 2007101121511501

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec openssl.patch

  Log:
upgrade to OpenSSL 0.9.8f

  Summary:
RevisionChanges Path
1.477   +1  -0  openpkg-src/openpkg/HISTORY
1.613   +1  -1  openpkg-src/openpkg/openpkg.spec
1.8 +54 -561openpkg-src/openpkg/openssl.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.476 -r1.477 HISTORY
  --- openpkg-src/openpkg/HISTORY   11 Oct 2007 13:16:04 -  1.476
  +++ openpkg-src/openpkg/HISTORY   11 Oct 2007 20:51:15 -  1.477
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071011 upgrade to OpenSSL 0.9.8f
   20071011 add support for FreeBSD 8.0-CURRENT
   20071010 upgrade to GNU tar 1.19
   20070914 upgrade to cURL 7.17.0
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.612 -r1.613 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  11 Oct 2007 13:16:04 -  1.612
  +++ openpkg-src/openpkg/openpkg.spec  11 Oct 2007 20:51:15 -  1.613
  @@ -57,7 +57,7 @@
   %define   V_config   20060923
   %define   V_registry 1.1.3
   %define   V_perl 5.8.8
  -%define   V_openssl  0.9.8e
  +%define   V_openssl  0.9.8f
   %define   V_tools1.4.5
   %define   V_exec 2.0.1-C
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openssl.patch
  
  $ cvs diff -u -r1.7 -r1.8 openssl.patch
  --- openpkg-src/openpkg/openssl.patch 15 Jun 2007 22:38:44 -  1.7
  +++ openpkg-src/openpkg/openssl.patch 11 Oct 2007 20:51:16 -  1.8
  @@ -1,49 +1,45 @@
   Index: Configure
   Configure.orig   2006-05-14 23:03:51 +0200
  -+++ Configure2006-05-14 23:05:46 +0200
  -@@ -6,7 +6,6 @@
  - ##
  - 
  - require 5.000;
  --use strict;
  - 
  - # see INSTALL for instructions.
  - 
  -Index: crypto/objects/obj_dat.pl
   crypto/objects/obj_dat.pl.orig   2005-08-29 01:20:47 +0200
  -+++ crypto/objects/obj_dat.pl2006-05-15 08:03:44 +0200
  -@@ -1,9 +1,5 @@
  - #!/usr/local/bin/perl
  - 
  --# fixes bug in floating point emulation on sparc64 when
  --# this script produces off-by-one output on sparc64
  --use integer;
  --
  - sub obj_cmp
  - {
  - local(@a,@b,$_,$r);
  -Index: util/mklink.pl
   util/mklink.pl.orig  2006-05-15 20:46:35 +0200
  -+++ util/mklink.pl   2006-05-15 20:48:07 +0200
  -@@ -15,13 +15,12 @@
  - # Apart from this, this script should be able to handle even the most
  - # pathological cases.
  - 
  --use Cwd;
  --
  - my $from = shift;
  - my @files = @ARGV;
  - 
  - my @from_path = split(/[\\\/]/, $from);
  --my $pwd = getcwd();
  -+my $pwd = `pwd`;
  -+$pwd =~ s/\n$//s;
  - chomp($pwd);
  - my @pwd_path = split(/[\\\/]/, $pwd);
  +--- Configure.orig   2007-10-11 22:43:07 +0200
   Configure2007-10-11 22:43:07 +0200
  +@@ -33,6 +33,7 @@
  + #   (Default: KRB5_DIR/include)
  + # --with-krb5-flavor  Declare what flavor of Kerberos 5 is used.  Currently
  + #   supported values are MIT and Heimdal.  A value is required.
  ++# --with-cc compiler to use for $CC (useful if cc is a disguised gcc)
  + #
  + # --test-sanity Make a number of sanity checks on the data in this file.
  + #   This is a debugging tool for OpenSSL developers.
  +@@ -112,6 +113,7 @@
  + #$bits2=THIRTY_TWO_BIT ;
  + my $bits1=THIRTY_TWO_BIT ;
  + my $bits2=SIXTY_FOUR_BIT ;
  ++my $ccarg;

  + my $x86_elf_asm=x86cpuid-elf.o:bn86-elf.o co86-elf.o:dx86-elf.o 
yx86-elf.o:ax86-elf.o:bx86-elf.o:mx86-elf.o:sx86-elf.o 
s512sse2-elf.o:cx86-elf.o:rx86-elf.o:rm86-elf.o:r586-elf.o;
  + my $x86_coff_asm=x86cpuid-cof.o:bn86-cof.o co86-cof.o:dx86-cof.o 
yx86-cof.o:ax86-cof.o:bx86-cof.o:mx86-cof.o:sx86-cof.o 
s512sse2-cof.o:cx86-cof.o:rx86-cof.o:rm86-cof.o:r586-cof.o;
  +@@ -696,6 +698,10 @@
  + {
  + exit(test_sanity());
  + }
  ++elsif (/^--with-cc=(.*)$/)
  ++{
  ++$ccarg=$1
  ++}
  + elsif (/^reconfigure/ || /^reconf/)
  + {
  + if (open(IN,$Makefile))
  +@@ -948,7 +954,7 @@
  + print IsMK1MF=$IsMK1MF\n;
  + 
  + my @fields = 

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

2007-10-10 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:   10-Oct-2007 18:06:07
  Branch: HEAD Handle: 2007101017060600

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec tar.patch

  Log:
upgrade to GNU tar 1.19

  Summary:
RevisionChanges Path
1.475   +1  -0  openpkg-src/openpkg/HISTORY
1.611   +2  -2  openpkg-src/openpkg/openpkg.spec
1.10+18 -18 openpkg-src/openpkg/tar.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.474 -r1.475 HISTORY
  --- openpkg-src/openpkg/HISTORY   14 Sep 2007 06:32:51 -  1.474
  +++ openpkg-src/openpkg/HISTORY   10 Oct 2007 16:06:06 -  1.475
  @@ -2,6 +2,7 @@
   2007
   
   
  +20071010 upgrade to GNU tar 1.19
   20070914 upgrade to cURL 7.17.0
   20070909 print entire list of all %NoSource files instead of bailing out on 
the first missing file encountered
   20070321 upgrade to openpkg-registry 1.1.3 remove legacy code which had the 
side effect of the REGISTRY_UUID file being touched hourly
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.610 -r1.611 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  14 Sep 2007 18:13:41 -  1.610
  +++ openpkg-src/openpkg/openpkg.spec  10 Oct 2007 16:06:06 -  1.611
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070914
  +%define   V_openpkg  20071010
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -51,7 +51,7 @@
   %define   V_gzip 1.3.12
   %define   V_gzip_r   1.13
   %define   V_patch2.5.9
  -%define   V_tar  1.18
  +%define   V_tar  1.19
   %define   V_bash 3.2
   %define   V_uuid 1.6.0
   %define   V_config   20060923
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/tar.patch
  
  $ cvs diff -u -r1.9 -r1.10 tar.patch
  --- openpkg-src/openpkg/tar.patch 30 Jun 2007 08:20:44 -  1.9
  +++ openpkg-src/openpkg/tar.patch 10 Oct 2007 16:06:06 -  1.10
  @@ -1,7 +1,7 @@
   Index: Makefile.in
   Makefile.in.orig 2007-06-29 13:01:32 +0200
  -+++ Makefile.in  2007-06-30 09:41:22 +0200
  -@@ -466,7 +466,7 @@
  +--- Makefile.in.orig 2007-10-10 13:00:22 +0200
   Makefile.in  2007-10-10 17:01:10 +0200
  +@@ -485,7 +485,7 @@
target_alias = @target_alias@
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = ChangeLog.1 PORTS
  @@ -11,8 +11,8 @@
$(MAKE) $(AM_MAKEFLAGS) all-recursive

   Index: lib/argp-help.c
   lib/argp-help.c.orig 2007-06-28 19:18:55 +0200
  -+++ lib/argp-help.c  2007-06-30 09:41:22 +0200
  +--- lib/argp-help.c.orig 2007-09-28 15:11:36 +0200
   lib/argp-help.c  2007-10-10 17:01:10 +0200
   @@ -570,8 +570,7 @@
  return val;
}
  @@ -24,8 +24,8 @@
int (*func)(const struct argp_option *opt,
const struct argp_option *real,
   Index: src/compare.c
   src/compare.c.orig   2007-06-27 15:30:31 +0200
  -+++ src/compare.c2007-06-30 09:41:22 +0200
  +--- src/compare.c.orig   2007-08-26 10:56:55 +0200
   src/compare.c2007-10-10 17:01:10 +0200
   @@ -278,7 +278,7 @@
  size_t len = strlen (current_stat_info.link_name);
  char *linkbuf = alloca (len + 1);
  @@ -36,9 +36,9 @@
  if (status  0)
{
   Index: src/create.c
   src/create.c.orig2007-06-27 15:30:31 +0200
  -+++ src/create.c 2007-06-30 09:41:22 +0200
  -@@ -1692,7 +1692,7 @@
  +--- src/create.c.orig2007-10-05 19:46:49 +0200
   src/create.c 2007-10-10 17:01:10 +0200
  +@@ -1696,7 +1696,7 @@
  if (linklen != st-stat.st_size || linklen + 1 == 0)
xalloc_die ();
  buffer = (char *) alloca (linklen + 1);
  @@ -48,9 +48,9 @@
{
  readlink_diag (p);
   Index: src/incremen.c
   src/incremen.c.orig  2007-06-27 15:30:32 +0200
  -+++ src/incremen.c   2007-06-30 09:41:22 +0200
  -@@ -481,6 +481,7 @@
  +--- src/incremen.c.orig  2007-10-01 23:19:55 +0200
   src/incremen.c   2007-10-10 17:01:10 +0200
  +@@ -526,6 +526,7 @@
   children = CHANGED_CHILDREN;
 but changed to: */
  free (name_buffer);
  @@ -59,8 +59,8 @@
  return NULL;
}
   Index: src/tar.c
   src/tar.c.orig   

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

2007-09-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:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   14-Sep-2007 08:32:53
  Branch: HEAD Handle: 2007091407325101

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to cURL 7.17.0

  Summary:
RevisionChanges Path
1.474   +1  -0  openpkg-src/openpkg/HISTORY
1.609   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.473 -r1.474 HISTORY
  --- openpkg-src/openpkg/HISTORY   9 Sep 2007 15:33:52 -   1.473
  +++ openpkg-src/openpkg/HISTORY   14 Sep 2007 06:32:51 -  1.474
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070914 upgrade to cURL 7.17.0
   20070909 print entire list of all %NoSource files instead of bailing out on 
the first missing file encountered
   20070321 upgrade to openpkg-registry 1.1.3 remove legacy code which had the 
side effect of the REGISTRY_UUID file being touched hourly
   20070718 diff reduction to RPM 5 development version (no functional change)
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.608 -r1.609 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  9 Sep 2007 15:33:52 -   1.608
  +++ openpkg-src/openpkg/openpkg.spec  14 Sep 2007 06:32:52 -  1.609
  @@ -39,14 +39,14 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070909
  +%define   V_openpkg  20070914
   
   #   the used software versions
   %define   V_rpm  4.2.1
   %define   V_zlib 1.2.3
   %define   V_bzip21.0.4
   %define   V_beecrypt 4.1.2
  -%define   V_curl 7.16.4
  +%define   V_curl 7.17.0
   %define   V_make 3.81
   %define   V_gzip 1.3.12
   %define   V_gzip_r   1.13
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpmmacros

2007-09-09 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   09-Sep-2007 17:33:53
  Branch: HEAD Handle: 2007090916335200

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpmmacros

  Log:
print entire list of all %NoSource files instead of bailing out on the
first missing file encountered

  Summary:
RevisionChanges Path
1.473   +1  -0  openpkg-src/openpkg/HISTORY
1.608   +1  -1  openpkg-src/openpkg/openpkg.spec
1.83+1  -1  openpkg-src/openpkg/rpmmacros
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.472 -r1.473 HISTORY
  --- openpkg-src/openpkg/HISTORY   24 Aug 2007 12:29:48 -  1.472
  +++ openpkg-src/openpkg/HISTORY   9 Sep 2007 15:33:52 -   1.473
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070909 print entire list of all %NoSource files instead of bailing out on 
the first missing file encountered
   20070321 upgrade to openpkg-registry 1.1.3 remove legacy code which had the 
side effect of the REGISTRY_UUID file being touched hourly
   20070718 diff reduction to RPM 5 development version (no functional change)
   20070717 fix a very long-standing cruel implementation bug in the platform 
detection
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.607 -r1.608 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  24 Aug 2007 12:29:48 -  1.607
  +++ openpkg-src/openpkg/openpkg.spec  9 Sep 2007 15:33:52 -   1.608
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070824
  +%define   V_openpkg  20070909
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmmacros
  
  $ cvs diff -u -r1.82 -r1.83 rpmmacros
  --- openpkg-src/openpkg/rpmmacros 19 Apr 2007 10:41:52 -  1.82
  +++ openpkg-src/openpkg/rpmmacros 9 Sep 2007 15:33:52 -   1.83
  @@ -333,7 +333,7 @@
   %integrity() %{l_check_nosource}
   
   #   macros for checking build environment
  -%l_check_nosource()  %(%{l_sane_env}; for url in . %{?_restricted}; do [ 
.$url = .. ]  continue; eval `echo $url | sed -e 
's!^\\(.*\\)::/\\([^/][^/]*\\)$!;url=1 -- \\; file=2\\!' -e 
's!^\\([^:;][^:]*://.*/\\)\\([^/][^/]*\\)$!;url=1\\; file=2\\!' -e 
's:^\\([^;].*\\)$:;url=(from unknown location) ; file=\\1:' -e 's:^;::'`; 
if [ ! -f %{_specdir}/$file ]  [ ! -f %{_sourcedir}/$file ]; then echo 
set +x; ( echo Sorry, this OpenPKG package contains a DISTRIBUTION 
RESTRICTED source file.; echo Before you can proceed building this package 
you have to MANUALLY fetch; echo ${url}${file}; echo and provide it 
locally under the path; echo %{_sourcedir}/$file ) | %{l_rpmtool} msg -b 
-t error | sed -e 's;^;echo ;' -e 's;$;;'; echo exit 1; fi; done)
  +%l_check_nosource()  %(%{l_sane_env}; checkok=1; checkinfo=`echo Sorry, 
this OpenPKG package contains a DISTRIBUTION RESTRICTED source file.; echo 
Before you can proceed building this package, fetch missing files MANUALLY:`; 
for url in . %{?_restricted}; do [ .$url = .. ]  continue; eval `echo 
$url | sed -e 's!^\\(.*\\)::/\\([^/][^/]*\\)$!;url=1\\; 
file=2\\!' -e 's!^\\([^:;][^:]*://.*/\\)\\([^/][^/]*\\)$!;url=1\\; 
file=2\\!' -e 's:^\\([^;].*\\)$:;url=(unknown location) ; file=\\1:' 
-e 's:^;::'`; if [ ! -f %{_specdir}/$file ]  [ ! -f %{_sourcedir}/$file 
]; then checkok=0; checkinfo=`echo ${checkinfo}; echo ; echo from ${url}; 
echo file ${file}; echo here %{_sourcedir}/$file`; fi; done; if [ $checkok 
-ne 1 ]; then echo set +x; echo $checkinfo | %{l_rpmtool} msg -b -t error | 
sed -e 's;^;echo ;' -e 's;$;;'; echo exit 1; fi)
   %l_check_class() %(%{l_sane_env}; class=`echo 
@:%{?class}:%{?distribution} | sed -e 's;^@:\\([^:][^:]*\\):.*$;\\1;' -e 
's;^@:.*\\[\\(.*\\)\\].*$;\\1;' -e 's;^@:.*$;JUNK;'`; %{l_rpmtool} check-class 
$class)
   %prep %%prep\
   %{l_check_nosource} \
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-08-24 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   24-Aug-2007 14:29:49
  Branch: HEAD Handle: 2007082413294800

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070718 - 20070824

  Summary:
RevisionChanges Path
1.472   +1  -0  openpkg-src/openpkg/HISTORY
1.607   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.471 -r1.472 HISTORY
  --- openpkg-src/openpkg/HISTORY   18 Jul 2007 21:04:23 -  1.471
  +++ openpkg-src/openpkg/HISTORY   24 Aug 2007 12:29:48 -  1.472
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070321 upgrade to openpkg-registry 1.1.3 remove legacy code which had the 
side effect of the REGISTRY_UUID file being touched hourly
   20070718 diff reduction to RPM 5 development version (no functional change)
   20070717 fix a very long-standing cruel implementation bug in the platform 
detection
   20070711 upgrade to cURL 7.16.4
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.606 -r1.607 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  18 Jul 2007 21:04:23 -  1.606
  +++ openpkg-src/openpkg/openpkg.spec  24 Aug 2007 12:29:48 -  1.607
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070718
  +%define   V_openpkg  20070824
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -55,7 +55,7 @@
   %define   V_bash 3.2
   %define   V_uuid 1.6.0
   %define   V_config   20060923
  -%define   V_registry 1.1.2
  +%define   V_registry 1.1.3
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8e
   %define   V_tools1.4.5
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-07-18 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:   18-Jul-2007 23:04:25
  Branch: HEAD Handle: 2007071822042300

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
'diff reduction' to RPM 5 development version (no functional change)

  Summary:
RevisionChanges Path
1.471   +1  -0  openpkg-src/openpkg/HISTORY
1.606   +161 -157   openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.470 -r1.471 HISTORY
  --- openpkg-src/openpkg/HISTORY   17 Jul 2007 10:36:10 -  1.470
  +++ openpkg-src/openpkg/HISTORY   18 Jul 2007 21:04:23 -  1.471
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070718 diff reduction to RPM 5 development version (no functional change)
   20070717 fix a very long-standing cruel implementation bug in the platform 
detection
   20070711 upgrade to cURL 7.16.4
   20070630 upgrade to GNU tar 1.18
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.605 -r1.606 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  17 Jul 2007 10:36:10 -  1.605
  +++ openpkg-src/openpkg/openpkg.spec  18 Jul 2007 21:04:23 -  1.606
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070717
  +%define   V_openpkg  20070718
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -93,63 +93,63 @@
   Source15: 
http://switch.dl.sourceforge.net/beecrypt/beecrypt-%{V_beecrypt}.tar.gz
   Source16: http://www.bzip.org/%{V_bzip2}/bzip2-%{V_bzip2}.tar.gz
   Source17: http://www.zlib.net/zlib-%{V_zlib}.tar.gz
  -Source18: HISTORY
  -Source19: README
  -Source20: aux.prereq.sh
  -Source21: aux.usrgrp.sh
  -Source22: aux.wrapbin.sh
  -Source23: aux.wrapsrc.sh
  -Source24: bash.patch
  -Source25: beecrypt.patch
  -Source26: dot.bash_login
  -Source27: dot.bashrc
  -Source28: dot.lsyncrc
  -Source29: install.sh
  -Source30: local.README
  -Source31: lsync
  -Source32: lsync.8
  -Source33: lsync.pod
  -Source34: make.patch
  -Source35: man.sh
  -Source36: openpkg.1
  -Source37: openpkg.boot
  -Source38: openpkg.com.pgp
  -Source39: openpkg.net.pgp
  -Source40: openpkg.org.pgp
  -Source41: openpkg.pod
  -Source42: openpkg.sh
  -Source43: openssl.patch
  -Source44: perl.patch
  -Source45: pod2man.sh
  -Source46: rc
  -Source47: rc.8
  -Source48: rc.conf
  -Source49: rc.func
  -Source50: rc.openpkg
  -Source51: rc.pod
  -Source52: release.8
  -Source53: release.pod
  -Source54: release.sh
  -Source55: root.README
  -Source56: rpm-config.8
  -Source57: rpm-config.pod
  -Source58: rpm-config.sh
  -Source59: rpm.patch.bugfix
  -Source60: rpm.patch.feature
  -Source61: rpm.patch.porting
  -Source62: rpm.patch.regen
  -Source63: rpmdb
  -Source64: rpmmacros
  -Source65: rpmpopt
  -Source66: rpmrc
  -Source67: rpmtool
  -Source68: rpmtool.8
  -Source69: rpmtool.pod
  -Source70: shtool
  -Source71: tar.patch
  -Source72: uuid.8
  -Source73: uuid.pod
  -Source74: uuid.sh
  +Source100:bash.patch
  +Source101:beecrypt.patch
  +Source102:make.patch
  +Source103:openssl.patch
  +Source104:perl.patch
  +Source105:tar.patch
  +Source106:rpm.patch.bugfix
  +Source107:rpm.patch.feature
  +Source108:rpm.patch.porting
  +Source109:rpm.patch.regen
  +Source200:HISTORY
  +Source201:README
  +Source202:aux.prereq.sh
  +Source203:aux.usrgrp.sh
  +Source204:aux.wrapbin.sh
  +Source205:aux.wrapsrc.sh
  +Source206:dot.bash_login
  +Source207:dot.bashrc
  +Source208:dot.lsyncrc
  +Source209:install.sh
  +Source210:local.README
  +Source211:lsync
  +Source212:lsync.8
  +Source213:lsync.pod
  +Source214:man.sh
  +Source215:openpkg.1
  +Source216:openpkg.boot
  +Source217:openpkg.com.pgp
  +Source218:openpkg.net.pgp
  +Source219:openpkg.org.pgp
  +Source220:openpkg.pod
  +Source221:openpkg.sh
  +Source222:pod2man.sh
  +Source223:rc
  +Source224:rc.8
  +Source225:rc.conf
  +Source226:rc.func
  +Source227:rc.openpkg
  +Source228:rc.pod
  +Source229:release.8
  +Source230:release.pod

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpm.patch.fea...

2007-07-17 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:   17-Jul-2007 12:36:11
  Branch: HEAD Handle: 2007071711361000

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpm.patch.feature

  Log:
during porting the OpenPKG patch set to our new rpm5.org code base I
stumbled over a very cruel bug in the implementation of the platform
detection. I'm more than surprised this central bug has not caused
horribly segfaults for years...

  Summary:
RevisionChanges Path
1.470   +1  -0  openpkg-src/openpkg/HISTORY
1.605   +1  -1  openpkg-src/openpkg/openpkg.spec
1.66+5  -5  openpkg-src/openpkg/rpm.patch.feature
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.469 -r1.470 HISTORY
  --- openpkg-src/openpkg/HISTORY   11 Jul 2007 05:49:29 -  1.469
  +++ openpkg-src/openpkg/HISTORY   17 Jul 2007 10:36:10 -  1.470
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070717 fix a very long-standing cruel implementation bug in the platform 
detection
   20070711 upgrade to cURL 7.16.4
   20070630 upgrade to GNU tar 1.18
   20070625 upgrade to cURL 7.16.3
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.604 -r1.605 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  11 Jul 2007 05:49:30 -  1.604
  +++ openpkg-src/openpkg/openpkg.spec  17 Jul 2007 10:36:10 -  1.605
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070711
  +%define   V_openpkg  20070717
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpm.patch.feature
  
  $ cvs diff -u -r1.65 -r1.66 rpm.patch.feature
  --- openpkg-src/openpkg/rpm.patch.feature 1 Jan 2007 17:40:19 -   
1.65
  +++ openpkg-src/openpkg/rpm.patch.feature 17 Jul 2007 10:36:10 -  
1.66
  @@ -1105,11 +1105,11 @@
   +/* utsname fields on some platforms (like HP-UX) are very small
   +   (about 8 characters). This is too small for OpenPKG, so cheat! */
   +static struct {
  -+char *sysname[32];
  -+char *nodename[32];
  -+char *release[32];
  -+char *version[32];
  -+char *machine[32];
  ++char sysname[32];
  ++char nodename[32];
  ++char release[32];
  ++char version[32];
  ++char machine[32];
   +} un;
   +#else
static struct utsname un;
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

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

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   11-Jul-2007 07:49:30
  Branch: HEAD Handle: 2007071106492901

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070630 - 20070711

  Summary:
RevisionChanges Path
1.469   +1  -0  openpkg-src/openpkg/HISTORY
1.604   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.468 -r1.469 HISTORY
  --- openpkg-src/openpkg/HISTORY   30 Jun 2007 08:20:43 -  1.468
  +++ openpkg-src/openpkg/HISTORY   11 Jul 2007 05:49:29 -  1.469
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070711 upgrade to cURL 7.16.4
   20070630 upgrade to GNU tar 1.18
   20070625 upgrade to cURL 7.16.3
   20070624 upgrade to openpkg-tools 1.4.5
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.603 -r1.604 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  30 Jun 2007 08:20:44 -  1.603
  +++ openpkg-src/openpkg/openpkg.spec  11 Jul 2007 05:49:30 -  1.604
  @@ -39,14 +39,14 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070630
  +%define   V_openpkg  20070711
   
   #   the used software versions
   %define   V_rpm  4.2.1
   %define   V_zlib 1.2.3
   %define   V_bzip21.0.4
   %define   V_beecrypt 4.1.2
  -%define   V_curl 7.16.3
  +%define   V_curl 7.16.4
   %define   V_make 3.81
   %define   V_gzip 1.3.12
   %define   V_gzip_r   1.13
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-06-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-Jun-2007 10:20:44
  Branch: HEAD Handle: 2007063009204301

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec tar.patch

  Log:
upgrade to GNU tar 1.18

  Summary:
RevisionChanges Path
1.468   +1  -0  openpkg-src/openpkg/HISTORY
1.603   +2  -2  openpkg-src/openpkg/openpkg.spec
1.9 +18 -27 openpkg-src/openpkg/tar.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.467 -r1.468 HISTORY
  --- openpkg-src/openpkg/HISTORY   25 Jun 2007 15:52:11 -  1.467
  +++ openpkg-src/openpkg/HISTORY   30 Jun 2007 08:20:43 -  1.468
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070630 upgrade to GNU tar 1.18
   20070625 upgrade to cURL 7.16.3
   20070624 upgrade to openpkg-tools 1.4.5
   20070623 apply a workaround to GNU gzip for resolving potential futimens() 
conflict (fixes built under Fedora 7)
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.602 -r1.603 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  25 Jun 2007 15:52:11 -  1.602
  +++ openpkg-src/openpkg/openpkg.spec  30 Jun 2007 08:20:44 -  1.603
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070625
  +%define   V_openpkg  20070630
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -51,7 +51,7 @@
   %define   V_gzip 1.3.12
   %define   V_gzip_r   1.13
   %define   V_patch2.5.9
  -%define   V_tar  1.17
  +%define   V_tar  1.18
   %define   V_bash 3.2
   %define   V_uuid 1.6.0
   %define   V_config   20060923
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/tar.patch
  
  $ cvs diff -u -r1.8 -r1.9 tar.patch
  --- openpkg-src/openpkg/tar.patch 8 Jun 2007 17:16:32 -   1.8
  +++ openpkg-src/openpkg/tar.patch 30 Jun 2007 08:20:44 -  1.9
  @@ -1,8 +1,8 @@
   Index: Makefile.in
   Makefile.in.orig 2007-06-08 10:35:58 +0200
  -+++ Makefile.in  2007-06-08 18:46:17 +0200
  -@@ -464,7 +464,7 @@
  - top_srcdir = @top_srcdir@
  +--- Makefile.in.orig 2007-06-29 13:01:32 +0200
   Makefile.in  2007-06-30 09:41:22 +0200
  +@@ -466,7 +466,7 @@
  + target_alias = @target_alias@
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = ChangeLog.1 PORTS
   -SUBDIRS = doc lib rmt src scripts po tests
  @@ -11,8 +11,8 @@
$(MAKE) $(AM_MAKEFLAGS) all-recursive

   Index: lib/argp-help.c
   lib/argp-help.c.orig 2007-05-11 15:15:30 +0200
  -+++ lib/argp-help.c  2007-06-08 18:46:17 +0200
  +--- lib/argp-help.c.orig 2007-06-28 19:18:55 +0200
   lib/argp-help.c  2007-06-30 09:41:22 +0200
   @@ -570,8 +570,7 @@
  return val;
}
  @@ -23,18 +23,9 @@
hol_entry_long_iterate (const struct hol_entry *entry,
int (*func)(const struct argp_option *opt,
const struct argp_option *real,
  -@@ -595,7 +594,7 @@
  - }
  - 
  - /* Iterator that returns true for the first short option.  */
  --static inline int
  -+static int
  - until_short (const struct argp_option *opt, const struct argp_option *real,
  -  const char *domain, void *cookie)
  - {
   Index: src/compare.c
   src/compare.c.orig   2007-06-01 12:17:10 +0200
  -+++ src/compare.c2007-06-08 18:46:17 +0200
  +--- src/compare.c.orig   2007-06-27 15:30:31 +0200
   src/compare.c2007-06-30 09:41:22 +0200
   @@ -278,7 +278,7 @@
  size_t len = strlen (current_stat_info.link_name);
  char *linkbuf = alloca (len + 1);
  @@ -45,8 +36,8 @@
  if (status  0)
{
   Index: src/create.c
   src/create.c.orig2007-06-01 12:17:10 +0200
  -+++ src/create.c 2007-06-08 18:46:17 +0200
  +--- src/create.c.orig2007-06-27 15:30:31 +0200
   src/create.c 2007-06-30 09:41:22 +0200
   @@ -1692,7 +1692,7 @@
  if (linklen != st-stat.st_size || linklen + 1 == 0)
xalloc_die ();
  @@ -57,8 +48,8 @@
{
  readlink_diag (p);
   Index: src/incremen.c
   src/incremen.c.orig  2007-03-30 10:19:30 +0200
  -+++ src/incremen.c   2007-06-08 18:46:17 +0200
  +--- src/incremen.c.orig  2007-06-27 15:30:32 +0200
   src/incremen.c   2007-06-30 09:41:22 +0200
   @@ 

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

2007-06-25 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   25-Jun-2007 17:52:11
  Branch: HEAD Handle: 2007062516521100

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070624 - 20070625

  Summary:
RevisionChanges Path
1.467   +1  -0  openpkg-src/openpkg/HISTORY
1.602   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.466 -r1.467 HISTORY
  --- openpkg-src/openpkg/HISTORY   24 Jun 2007 07:15:49 -  1.466
  +++ openpkg-src/openpkg/HISTORY   25 Jun 2007 15:52:11 -  1.467
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070625 upgrade to cURL 7.16.3
   20070624 upgrade to openpkg-tools 1.4.5
   20070623 apply a workaround to GNU gzip for resolving potential futimens() 
conflict (fixes built under Fedora 7)
   20070620 more consistently use shtool platform for building OpenSSL
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.601 -r1.602 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  24 Jun 2007 07:15:49 -  1.601
  +++ openpkg-src/openpkg/openpkg.spec  25 Jun 2007 15:52:11 -  1.602
  @@ -39,14 +39,14 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070624
  +%define   V_openpkg  20070625
   
   #   the used software versions
   %define   V_rpm  4.2.1
   %define   V_zlib 1.2.3
   %define   V_bzip21.0.4
   %define   V_beecrypt 4.1.2
  -%define   V_curl 7.16.2
  +%define   V_curl 7.16.3
   %define   V_make 3.81
   %define   V_gzip 1.3.12
   %define   V_gzip_r   1.13
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-06-24 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:   24-Jun-2007 09:15:49
  Branch: HEAD Handle: 2007062408154900

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to openpkg-tools 1.4.5

  Summary:
RevisionChanges Path
1.466   +1  -0  openpkg-src/openpkg/HISTORY
1.601   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.465 -r1.466 HISTORY
  --- openpkg-src/openpkg/HISTORY   23 Jun 2007 11:18:07 -  1.465
  +++ openpkg-src/openpkg/HISTORY   24 Jun 2007 07:15:49 -  1.466
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070624 upgrade to openpkg-tools 1.4.5
   20070623 apply a workaround to GNU gzip for resolving potential futimens() 
conflict (fixes built under Fedora 7)
   20070620 more consistently use shtool platform for building OpenSSL
   20070616 teach OpenSSL config to identify cc being a disguised gcc (pass 
-gcc to Configure but run cc)
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.600 -r1.601 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  23 Jun 2007 11:18:08 -  1.600
  +++ openpkg-src/openpkg/openpkg.spec  24 Jun 2007 07:15:49 -  1.601
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070623
  +%define   V_openpkg  20070624
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -58,7 +58,7 @@
   %define   V_registry 1.1.2
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8e
  -%define   V_tools1.4.4
  +%define   V_tools1.4.5
   %define   V_exec 2.0.1-C
   
   #   package information
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-06-23 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:   23-Jun-2007 13:18:08
  Branch: HEAD Handle: 2007062312180701

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
 apply a workaround to GNU gzip for resolving potential futimens()
conflict (fixes built under Fedora 7)

  Summary:
RevisionChanges Path
1.465   +1  -0  openpkg-src/openpkg/HISTORY
1.600   +2  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.464 -r1.465 HISTORY
  --- openpkg-src/openpkg/HISTORY   20 Jun 2007 15:26:32 -  1.464
  +++ openpkg-src/openpkg/HISTORY   23 Jun 2007 11:18:07 -  1.465
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070623 apply a workaround to GNU gzip for resolving potential futimens() 
conflict (fixes built under Fedora 7)
   20070620 more consistently use shtool platform for building OpenSSL
   20070616 teach OpenSSL config to identify cc being a disguised gcc (pass 
-gcc to Configure but run cc)
   20070614 synchronize 64bit -fPIC option and ./config usage from openssl 
package
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.599 -r1.600 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  20 Jun 2007 15:26:32 -  1.599
  +++ openpkg-src/openpkg/openpkg.spec  23 Jun 2007 11:18:08 -  1.600
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070620
  +%define   V_openpkg  20070623
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -527,6 +527,7 @@
 case $plid in
 Darwin/* ) echo gzip_cv_assembler=no config.cache ;;
 esac
  +  sh $shtool subst -e 's/futimens/gzip_/' gzip.c lib/utimens.[ch]
 CC=${l_cc} \
 GREP=grep \
 ./configure \
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-06-20 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:   20-Jun-2007 17:26:33
  Branch: HEAD Handle: 2007062016263200

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
more consistently use shtool platform for building OpenSSL

  Summary:
RevisionChanges Path
1.464   +1  -0  openpkg-src/openpkg/HISTORY
1.599   +3  -3  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.463 -r1.464 HISTORY
  --- openpkg-src/openpkg/HISTORY   15 Jun 2007 22:38:43 -  1.463
  +++ openpkg-src/openpkg/HISTORY   20 Jun 2007 15:26:32 -  1.464
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070620 more consistently use shtool platform for building OpenSSL
   20070616 teach OpenSSL config to identify cc being a disguised gcc (pass 
-gcc to Configure but run cc)
   20070614 synchronize 64bit -fPIC option and ./config usage from openssl 
package
   20070608 upgrade to GNU tar 1.17
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.598 -r1.599 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  15 Jun 2007 22:38:43 -  1.598
  +++ openpkg-src/openpkg/openpkg.spec  20 Jun 2007 15:26:32 -  1.599
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070616
  +%define   V_openpkg  20070620
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -824,8 +824,8 @@
 -e 1s;^.*\$;#!$l_perl; \
 Configure `find . -name *.pl -print`
 opts=
  -  case $plid in
  -  SunOS/* ) opts=-lnsl -lsocket ;;
  +  case `sh $shtool platform -n -L -S  -C + -F %ap-%sp` in
  +  *-solaris*   ) opts=-lnsl -lsocket ;;
 esac
 case `sh $shtool platform -n -L -S  -C + -F %ap-%sp` in
 amd64-*  ) opts=$opts -fPIC ;;
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-06-15 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   15-Jun-2007 16:30:23
  Branch: HEAD Handle: 2007061515302300

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
fix curl run-time failure when attempting HTTPS transfers on amd64

  Summary:
RevisionChanges Path
1.462   +1  -0  openpkg-src/openpkg/HISTORY
1.597   +7  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.461 -r1.462 HISTORY
  --- openpkg-src/openpkg/HISTORY   8 Jun 2007 17:16:31 -   1.461
  +++ openpkg-src/openpkg/HISTORY   15 Jun 2007 14:30:23 -  1.462
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070614 synchronize 64bit -fPIC option and ./config usage from openssl 
package
   20070608 upgrade to GNU tar 1.17
   20070608 fix tracking of gzip
   20070607 use path /etc/rc.d/init.d/ instead of non-standard /etc/init.d/ 
under AIX
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.596 -r1.597 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  8 Jun 2007 17:16:31 -   1.596
  +++ openpkg-src/openpkg/openpkg.spec  15 Jun 2007 14:30:23 -  1.597
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070608
  +%define   V_openpkg  20070615
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -827,9 +827,14 @@
 case $plid in
 SunOS/* ) opts=-lnsl -lsocket ;;
 esac
  +  case `sh $shtool platform -n -L -S  -C + -F %ap-%sp` in
  +  amd64-*  ) opts=$opts -fPIC ;;
  +  ia64-*   ) opts=$opts -fPIC ;;
  +  sparc64-freebsd* ) opts=$opts -fPIC ;;
  +  esac
 CC=${l_cc} \
 PERL=${l_perl} \
  -  $l_perl ./Configure cc \
  +  ./config \
 --prefix=%{l_prefix} \
 no-asm no-shared no-dso \
 no-zlib no-idea no-threads no-krb5 no-hw \
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-06-15 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   16-Jun-2007 00:38:44
  Branch: HEAD Handle: 2007061523384301

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec openssl.patch

  Log:
teach OpenSSL config to identify cc being a disguised gcc (pass -gcc
to Configure but run cc)

  Summary:
RevisionChanges Path
1.463   +1  -0  openpkg-src/openpkg/HISTORY
1.598   +1  -1  openpkg-src/openpkg/openpkg.spec
1.7 +292 -8 openpkg-src/openpkg/openssl.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.462 -r1.463 HISTORY
  --- openpkg-src/openpkg/HISTORY   15 Jun 2007 14:30:23 -  1.462
  +++ openpkg-src/openpkg/HISTORY   15 Jun 2007 22:38:43 -  1.463
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070616 teach OpenSSL config to identify cc being a disguised gcc (pass 
-gcc to Configure but run cc)
   20070614 synchronize 64bit -fPIC option and ./config usage from openssl 
package
   20070608 upgrade to GNU tar 1.17
   20070608 fix tracking of gzip
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.597 -r1.598 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  15 Jun 2007 14:30:23 -  1.597
  +++ openpkg-src/openpkg/openpkg.spec  15 Jun 2007 22:38:43 -  1.598
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070615
  +%define   V_openpkg  20070616
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openssl.patch
  
  $ cvs diff -u -r1.6 -r1.7 openssl.patch
  --- openpkg-src/openpkg/openssl.patch 3 Jun 2007 21:09:28 -   1.6
  +++ openpkg-src/openpkg/openssl.patch 15 Jun 2007 22:38:44 -  1.7
  @@ -42,9 +42,65 @@
my @pwd_path = split(/[\\\/]/, $pwd);

   Index: config
   config.orig  2005-09-20 14:16:30 +0200
  -+++ config   2006-04-07 19:17:06 +0200
  -@@ -469,6 +469,7 @@
  +--- config.orig  2007-02-22 03:00:39.0 +0100
   config   2007-06-16 00:06:32.527799000 +0200
  +@@ -401,9 +401,9 @@
  + 
  + # figure out if gcc is available and if so we use it otherwise
  + # we fallback to whatever cc does on the system
  +-GCCVER=`(gcc -dumpversion) 2/dev/null`
  ++GCCVER=`(gcc -dumpversion 2/dev/null  exit; cc --version 2/dev/null | 
grep GCC /dev/null  cc -dumpversion )`
  + if [ $GCCVER !=  ]; then
  +-  CC=gcc
  ++  CC=cc; gcc -dumpversion /dev/null 21  CC=gcc
  +   # then strip off whatever prefix egcs prepends the number with...
  +   # Hopefully, this will work for any future prefixes as well.
  +   GCCVER=`echo $GCCVER | LC_ALL=C sed 's/^[a-zA-Z]*\-//'`
  +@@ -412,8 +412,10 @@
  +   # major and minor version numbers.
  +   # peak single digit before and after first dot, e.g. 2.95.1 gives 29
  +   GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
  ++  SUFFIX=gcc
  + else
  +   CC=cc
  ++  SUFFIX=cc
  + fi
  + GCCVER=${GCCVER:-0}
  + if [ $SYSTEM = HP-UX ];then
  +@@ -422,7 +424,7 @@
  +   if [ $GCCVER -ge 30 ]; then
  + # PA64 support only came in with gcc 3.0.x.
  + # We check if the preprocessor symbol __LP64__ is defined...
  +-if echo __LP64__ | gcc -v -E -x c - 2/dev/null | grep ^__LP64__ 
21  /dev/null; then
  ++if echo __LP64__ | $CC -v -E -x c - 2/dev/null | grep ^__LP64__ 
21  /dev/null; then
  +   : # __LP64__ has slipped through, it therefore is not defined
  + else
  +   GCC_BITS=64
  +@@ -433,13 +435,14 @@
  +   if [ $GCCVER -ge 30 ]; then
  + # 64-bit ABI isn't officially supported in gcc 3.0, but it appears
  + # to be working, at the very least 'make test' passes...
  +-if gcc -v -E -x c /dev/null 21 | grep __arch64__  /dev/null; then
  ++if $CC -v -E -x c /dev/null 21 | grep __arch64__  /dev/null; then
  +   GCC_ARCH=-m64
  + else
  +   GCC_ARCH=-m32
  + fi
  +   fi
  +   # check for WorkShop C, expected output is cc: blah-blah C x.x
  ++  if [ $GCCVER -eq 0 ]; then
  +   CCVER=`(cc -V 21) 2/dev/null | \
  + egrep -e '^cc: .* C [0-9]\.[0-9]' | \
  + sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
  +@@ -452,6 +455,7 @@
  +   sleep 5
  + fi
  +   fi
  ++  fi
  + fi
  + 
  + if [ ${SYSTEM}-${MACHINE} = Linux-alpha ]; then
  +@@ -469,6 +473,7 @@

if [ ${SYSTEM} 

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

2007-06-08 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:   08-Jun-2007 09:29:42
  Branch: HEAD Handle: 2007060808294100

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
fix tracking of gzip

  Summary:
RevisionChanges Path
1.460   +1  -0  openpkg-src/openpkg/HISTORY
1.595   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.459 -r1.460 HISTORY
  --- openpkg-src/openpkg/HISTORY   7 Jun 2007 19:59:36 -   1.459
  +++ openpkg-src/openpkg/HISTORY   8 Jun 2007 07:29:41 -   1.460
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070608 fix tracking of gzip
   20070607 use path /etc/rc.d/init.d/ instead of non-standard /etc/init.d/ 
under AIX
   20070606 under MacOS X do not add -Wl,-search_paths_first if -c or -E is 
present on the cc command line
   20070605 upgrade to GNU gzip 1.3.12
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.594 -r1.595 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  7 Jun 2007 19:59:36 -   1.594
  +++ openpkg-src/openpkg/openpkg.spec  8 Jun 2007 07:29:41 -   1.595
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070607
  +%define   V_openpkg  20070608
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -196,7 +196,7 @@
   prog openpkg:gzip = {
   comment   = rse: intentionally tracked at gnu.org, although fetched 
from openpkg.org because of uncompression
   version   = %{V_gzip}
  -url   = ftp://alpha.gnu.org/gnu/gzip/
  +url   = ftp://ftp.gnu.org/gnu/gzip/
   regex = gzip-(__VER__)\.tar(\.gz)?
   }
   prog openpkg:gzip_r = {
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-06-08 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:   08-Jun-2007 19:16:33
  Branch: HEAD Handle: 2007060818163101

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec tar.patch

  Log:
upgrade to GNU tar 1.17

  Summary:
RevisionChanges Path
1.461   +1  -0  openpkg-src/openpkg/HISTORY
1.596   +1  -1  openpkg-src/openpkg/openpkg.spec
1.8 +24 -24 openpkg-src/openpkg/tar.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.460 -r1.461 HISTORY
  --- openpkg-src/openpkg/HISTORY   8 Jun 2007 07:29:41 -   1.460
  +++ openpkg-src/openpkg/HISTORY   8 Jun 2007 17:16:31 -   1.461
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070608 upgrade to GNU tar 1.17
   20070608 fix tracking of gzip
   20070607 use path /etc/rc.d/init.d/ instead of non-standard /etc/init.d/ 
under AIX
   20070606 under MacOS X do not add -Wl,-search_paths_first if -c or -E is 
present on the cc command line
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.595 -r1.596 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  8 Jun 2007 07:29:41 -   1.595
  +++ openpkg-src/openpkg/openpkg.spec  8 Jun 2007 17:16:31 -   1.596
  @@ -51,7 +51,7 @@
   %define   V_gzip 1.3.12
   %define   V_gzip_r   1.13
   %define   V_patch2.5.9
  -%define   V_tar  1.16.1
  +%define   V_tar  1.17
   %define   V_bash 3.2
   %define   V_uuid 1.6.0
   %define   V_config   20060923
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/tar.patch
  
  $ cvs diff -u -r1.7 -r1.8 tar.patch
  --- openpkg-src/openpkg/tar.patch 5 Dec 2006 12:27:45 -   1.7
  +++ openpkg-src/openpkg/tar.patch 8 Jun 2007 17:16:32 -   1.8
  @@ -1,8 +1,8 @@
   Index: Makefile.in
   Makefile.in.orig 2006-10-21 17:41:31 +0200
  -+++ Makefile.in  2006-12-05 10:09:24 +0100
  -@@ -310,7 +310,7 @@
  - target_alias = @target_alias@
  +--- Makefile.in.orig 2007-06-08 10:35:58 +0200
   Makefile.in  2007-06-08 18:46:17 +0200
  +@@ -464,7 +464,7 @@
  + top_srcdir = @top_srcdir@
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = ChangeLog.1 PORTS
   -SUBDIRS = doc lib rmt src scripts po tests
  @@ -11,9 +11,9 @@
$(MAKE) $(AM_MAKEFLAGS) all-recursive

   Index: lib/argp-help.c
   lib/argp-help.c.orig 2006-09-12 10:59:04 +0200
  -+++ lib/argp-help.c  2006-10-22 11:35:12 +0200
  -@@ -567,8 +567,7 @@
  +--- lib/argp-help.c.orig 2007-05-11 15:15:30 +0200
   lib/argp-help.c  2007-06-08 18:46:17 +0200
  +@@ -570,8 +570,7 @@
  return val;
}

  @@ -23,7 +23,7 @@
hol_entry_long_iterate (const struct hol_entry *entry,
int (*func)(const struct argp_option *opt,
const struct argp_option *real,
  -@@ -592,7 +591,7 @@
  +@@ -595,7 +594,7 @@
}

/* Iterator that returns true for the first short option.  */
  @@ -33,9 +33,9 @@
 const char *domain, void *cookie)
{
   Index: src/compare.c
   src/compare.c.orig   2006-03-20 10:23:29 +0100
  -+++ src/compare.c2006-10-22 11:36:29 +0200
  -@@ -295,7 +295,7 @@
  +--- src/compare.c.orig   2007-06-01 12:17:10 +0200
   src/compare.c2007-06-08 18:46:17 +0200
  +@@ -278,7 +278,7 @@
  size_t len = strlen (current_stat_info.link_name);
  char *linkbuf = alloca (len + 1);

  @@ -45,9 +45,9 @@
  if (status  0)
{
   Index: src/create.c
   src/create.c.orig2006-10-16 08:33:55 +0200
  -+++ src/create.c 2006-10-22 11:36:18 +0200
  -@@ -1600,7 +1600,7 @@
  +--- src/create.c.orig2007-06-01 12:17:10 +0200
   src/create.c 2007-06-08 18:46:17 +0200
  +@@ -1692,7 +1692,7 @@
  if (linklen != st-stat.st_size || linklen + 1 == 0)
xalloc_die ();
  buffer = (char *) alloca (linklen + 1);
  @@ -57,9 +57,9 @@
{
  readlink_diag (p);
   Index: src/incremen.c
   src/incremen.c.orig  2006-09-08 18:42:18 +0200
  -+++ src/incremen.c   2006-10-22 11:43:46 +0200
  -@@ -479,6 +479,7 @@
  +--- src/incremen.c.orig  2007-03-30 10:19:30 +0200
   src/incremen.c   2007-06-08 18:46:17 +0200
  +@@ -481,6 +481,7 @@
   children = CHANGED_CHILDREN;
 but changed to: */
  free 

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

2007-06-07 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:   07-Jun-2007 21:59:37
  Branch: HEAD Handle: 2007060720593600

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
use path /etc/rc.d/init.d/ instead of non-standard /etc/init.d/ under
AIX

  Summary:
RevisionChanges Path
1.459   +1  -0  openpkg-src/openpkg/HISTORY
1.594   +6  -6  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.458 -r1.459 HISTORY
  --- openpkg-src/openpkg/HISTORY   6 Jun 2007 10:11:17 -   1.458
  +++ openpkg-src/openpkg/HISTORY   7 Jun 2007 19:59:36 -   1.459
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070607 use path /etc/rc.d/init.d/ instead of non-standard /etc/init.d/ 
under AIX
   20070606 under MacOS X do not add -Wl,-search_paths_first if -c or -E is 
present on the cc command line
   20070605 upgrade to GNU gzip 1.3.12
   20070605 upgrade to latest GNU shtool snapshot for final Mac OS X 
identification and some small improvements for CentOS
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.593 -r1.594 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  6 Jun 2007 10:11:17 -   1.593
  +++ openpkg-src/openpkg/openpkg.spec  7 Jun 2007 19:59:36 -   1.594
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070606
  +%define   V_openpkg  20070607
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -2129,7 +2129,7 @@
   fi
   ;;
   AIX/* )
  -if [ ! -f /etc/init.d/${name} ]; then
  +if [ ! -f /etc/rc.d/init.d/${name} ]; then
   #   install transfer script
   ( echo #!/bin/sh
 echo ##
  @@ -2141,11 +2141,11 @@
 echo start ) exec ${prefix}/etc/rc all start ;;
 echo stop  ) exec ${prefix}/etc/rc all stop  ;;
 echo esac
  -) /etc/init.d/${name}
  -chmod 755 /etc/init.d/${name}
  +) /etc/rc.d/init.d/${name}
  +chmod 755 /etc/rc.d/init.d/${name}
   #   create corresponding symbolic links
   ( cd /etc/rc.d
  -  ln -s ../../init.d/${name} rc2.d/S99${name}
  +  ln -s ../init.d/${name} rc2.d/S99${name}
   ) || exit $?
   fi
   ;;
  @@ -2773,7 +2773,7 @@
   rm -f /etc/rc1.d/K00${name} /dev/null 21
   ;;
   AIX/* )
  -rm -f /etc/init.d/${name} /dev/null 21
  +rm -f /etc/rc.d/init.d/${name} /dev/null 21
   rm -f /etc/rc.d/rc2.d/S99${name} /dev/null 21
   ;;
   OSF1/V5.* )
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec shtool

2007-06-05 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:   05-Jun-2007 18:56:10
  Branch: HEAD Handle: 2007060517560801

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec shtool

  Log:
upgrade to latest GNU shtool snapshot for final Mac OS X
identification and some small improvements for CentOS

  Summary:
RevisionChanges Path
1.456   +1  -0  openpkg-src/openpkg/HISTORY
1.591   +1  -1  openpkg-src/openpkg/openpkg.spec
1.40+5  -5  openpkg-src/openpkg/shtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.455 -r1.456 HISTORY
  --- openpkg-src/openpkg/HISTORY   4 Jun 2007 08:07:59 -   1.455
  +++ openpkg-src/openpkg/HISTORY   5 Jun 2007 16:56:08 -   1.456
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070605 upgrade to latest GNU shtool snapshot for final Mac OS X 
identification and some small improvements for CentOS
   20070604 improve Mac OS X support by providing gcc/cc/ld override scripts to 
pass option -search_paths_first to ld(1)
   20070604 improve Mac OS X support by upgrading to an improved GNU shtool 
snapshot
   20070603 disable shared library building in Perl for better supporting Mac 
OS X
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.590 -r1.591 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  4 Jun 2007 08:07:59 -   1.590
  +++ openpkg-src/openpkg/openpkg.spec  5 Jun 2007 16:56:09 -   1.591
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070604
  +%define   V_openpkg  20070605
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/shtool
  
  $ cvs diff -u -r1.39 -r1.40 shtool
  --- openpkg-src/openpkg/shtool4 Jun 2007 16:25:48 -   1.39
  +++ openpkg-src/openpkg/shtool5 Jun 2007 16:56:09 -   1.40
  @@ -2755,7 +2755,7 @@
  -e 's/^#.*$//'`
   case `util_lower ${n}` in
   redhat )
  -if [ .`grep 'Red Hat Enterprise Linux' 
/etc/${tagfile}` != . ]; then
  +if [ .`egrep '(Red Hat Enterprise 
Linux|CentOS)' /etc/${tagfile}` != . ]; then
   n=Red Hat Enterprise Linux
   else
   n=Red Hat Linux
  @@ -2764,7 +2764,7 @@
   debian ) n=Debian[ GNU/Linux];;
   ubuntu ) n=Ubuntu[ GNU/Linux];;
   fedora ) n=Fedora Core[ GNU/Linux] ;;
  -suse   ) n=SuSE[ Linux]  ;;
  +suse   ) n=[Novell ]SUSE[ Linux] ;;
   mandrake*|mandriva ) n=Mandriva[ Linux]  ;;
   gentoo ) n=Gentoo[ GNU/Linux];;
   slackware  ) n=Slackware[ Linux] ;;
  @@ -2963,10 +2963,10 @@
   powerpc ) AT=PPC ;;
   esac
   AP=${AT}
  -AC=${AP}
  -case ${AC} in
  -i?86 ) AC=iX86 ;;
  +case ${AP} in
  +i?86 ) AP=iX86 ;;
   esac
  +AC=${AP}
   #   determine system
   unset v1; unset v2; unset v3
   eval `echo ${UNAME_RELEASE} |\
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec shtool

2007-06-04 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:   04-Jun-2007 10:08:01
  Branch: HEAD Handle: 2007060409075901

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec shtool

  Log:
improve Mac OS X support

  Summary:
RevisionChanges Path
1.455   +2  -0  openpkg-src/openpkg/HISTORY
1.590   +35 -7  openpkg-src/openpkg/openpkg.spec
1.38+30 -5  openpkg-src/openpkg/shtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.454 -r1.455 HISTORY
  --- openpkg-src/openpkg/HISTORY   3 Jun 2007 09:47:55 -   1.454
  +++ openpkg-src/openpkg/HISTORY   4 Jun 2007 08:07:59 -   1.455
  @@ -2,6 +2,8 @@
   2007
   
   
  +20070604 improve Mac OS X support by providing gcc/cc/ld override scripts to 
pass option -search_paths_first to ld(1)
  +20070604 improve Mac OS X support by upgrading to an improved GNU shtool 
snapshot
   20070603 disable shared library building in Perl for better supporting Mac 
OS X
   20070603 synchronize openssl.patch with latest version from openssl package
   20070520 fix building Perl under GCC 4.2 world order
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.589 -r1.590 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  3 Jun 2007 09:47:55 -   1.589
  +++ openpkg-src/openpkg/openpkg.spec  4 Jun 2007 08:07:59 -   1.590
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070603
  +%define   V_openpkg  20070604
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -2417,18 +2417,20 @@
   ) | %{l_prefix}/lib/openpkg/rpmtool msg -b -t warn
   fi
   
  -#   FIXME: Evil hack to workaround build problems under Debian
  -#   (at least 3.1) (and similar platforms) where a Debian
  -#   install-info(8) exists which is both API and functionally
  -#   incompatible to the de-facto standardized install-info(8)
  -#   command from GNU Texinfo. ATTENTION: THIS SHOULD BE REPLACED
  -#   ASAP WITH A MORE GENERIC BUILD COMMAND OVERRIDE SOLUTION!
  +#   system command overriding support
  +#   ATTENTION: THIS BETTER SHOULD BE REPLACED WITH A MORE GENERIC
  +#   BUILD COMMAND OVERRIDE SOLUTION!
   if [ ! -d %{l_prefix}/lib/openpkg/override ]; then
   mkdir %{l_prefix}/lib/openpkg/override /dev/null 21 || true
   fi
   chown %{l_musr}:%{l_mgrp} %{l_prefix}/lib/openpkg/override /dev/null 
21 || true
   case `cat %{l_prefix}/etc/openpkg/platform` in
   *-*-debian* | *-*-ubuntu* )
  +#   FIXME: Evil hack to workaround build problems under Debian
  +#   (at least 3.1) (and similar platforms) where a Debian
  +#   install-info(8) exists which is both API and functionally
  +#   incompatible to the de-facto standardized install-info(8)
  +#   command from GNU Texinfo.
   if [ ! -f %{l_prefix}/lib/openpkg/override/install-info ]; then
   ( echo #!/bin/sh
 echo echo 'OpenPKG: NOTICE: install-info(8) command 
execution overridden'
  @@ -2437,6 +2439,32 @@
   chmod 775 %{l_prefix}/lib/openpkg/override/install-info
   fi
   ;;
  +*-*-macosx* | *-*-darwin* )
  +#   FIXME: Evil hack to workaround the fact that Mac OS X'
  +#   linker by default prefers the /usr/lib libraries and does
  +#   not honor the -L options the way one would expect it.
  +gcc=`%{l_prefix}/lib/openpkg/shtool path gcc`
  +cc=`%{l_prefix}/lib/openpkg/shtool path cc`
  +ld=`%{l_prefix}/lib/openpkg/shtool path ld`
  +if [ .$gcc != . -a ! -f %{l_prefix}/lib/openpkg/override/gcc 
]; then
  +( echo #!/bin/sh
  +  echo exec $gcc -Wl,-search_paths_first \[EMAIL 
PROTECTED]
  +) %{l_prefix}/lib/openpkg/override/gcc
  +chmod 775 %{l_prefix}/lib/openpkg/override/gcc
  +fi
  +if [ .$cc != . -a ! -f %{l_prefix}/lib/openpkg/override/cc ]; 
then
  +( echo #!/bin/sh
  +  echo exec $cc -Wl,-search_paths_first \[EMAIL 
PROTECTED]
  +) %{l_prefix}/lib/openpkg/override/cc
  +chmod 775 %{l_prefix}/lib/openpkg/override/cc
  +

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

2007-06-03 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:   03-Jun-2007 11:47:56
  Branch: HEAD Handle: 2007060310475501

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec openssl.patch

  Log:
- disable shared library building in Perl for better supporting Mac OS X
- synchronize openssl.patch with latest version from openssl package

  Summary:
RevisionChanges Path
1.454   +2  -0  openpkg-src/openpkg/HISTORY
1.589   +2  -1  openpkg-src/openpkg/openpkg.spec
1.5 +462 -41openpkg-src/openpkg/openssl.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.453 -r1.454 HISTORY
  --- openpkg-src/openpkg/HISTORY   20 May 2007 07:55:37 -  1.453
  +++ openpkg-src/openpkg/HISTORY   3 Jun 2007 09:47:55 -   1.454
  @@ -2,6 +2,8 @@
   2007
   
   
  +20070603 disable shared library building in Perl for better supporting Mac 
OS X
  +20070603 synchronize openssl.patch with latest version from openssl package
   20070520 fix building Perl under GCC 4.2 world order
   20070519 upgrade to OSSP uuid 1.6.0
   20070519 upgrade to official GNU shtool 2.0.7
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.588 -r1.589 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  20 May 2007 07:55:38 -  1.588
  +++ openpkg-src/openpkg/openpkg.spec  3 Jun 2007 09:47:55 -   1.589
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070520
  +%define   V_openpkg  20070603
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -800,6 +800,7 @@
 -Dglibpth=$libdirs \
 -Dscriptdir=%{l_prefix}/bin \
 -Uinstallusrbinperl \
  +  -Adefine:useshrplib='false' \
 -Ui_malloc -Ui_iconv -Ui_db
 ${l_make} miniperl || exit $?
 rm -f *.o /dev/null 21 || true
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openssl.patch
  
  $ cvs diff -u -r1.4 -r1.5 openssl.patch
  --- openpkg-src/openpkg/openssl.patch 15 May 2006 18:57:08 -  1.4
  +++ openpkg-src/openpkg/openssl.patch 3 Jun 2007 09:47:56 -   1.5
  @@ -18,46 +18,467 @@
OUT=solaris64-x86_64-$CC
else
OUT=solaris-x86-$CC
  -Index: Configure
   Configure.orig   2006-05-14 23:03:51 +0200
  -+++ Configure2006-05-14 23:05:46 +0200
  -@@ -6,7 +6,6 @@
  - ##
  - 
  - require 5.000;
  --use strict;
  - 
  - # see INSTALL for instructions.
  - 
  -Index: crypto/objects/obj_dat.pl
   crypto/objects/obj_dat.pl.orig   2005-08-29 01:20:47 +0200
  -+++ crypto/objects/obj_dat.pl2006-05-15 08:03:44 +0200
  -@@ -1,9 +1,5 @@
  - #!/usr/local/bin/perl
  - 
  --# fixes bug in floating point emulation on sparc64 when
  --# this script produces off-by-one output on sparc64
  --use integer;
  --
  - sub obj_cmp
  +Index: doc/crypto/des_modes.pod
  +--- doc/crypto/des_modes.pod.orig2004-11-25 18:47:30 +0100
   doc/crypto/des_modes.pod 2006-04-07 19:15:27 +0200
  +@@ -4,7 +4,7 @@
  + 
  + =head1 NAME
  + 
  +-Modes of DES - the variants of DES and other crypto algorithms of OpenSSL
  ++des_modes - the variants of DES and other crypto algorithms of OpenSSL
  + 
  + =head1 DESCRIPTION
  +
  +Index: crypto/evp/evp_lib.c
  +--- crypto/evp/evp_lib.c.orig2006-11-29 21:47:13 +0100
   crypto/evp/evp_lib.c 2007-02-28 17:19:31 +0100
  +@@ -225,7 +225,7 @@
  + 
  + int EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx)
  + {
  +-return ctx-cipher-key_len;
  ++return ctx-key_len;
  + }
  + 
  + int EVP_CIPHER_nid(const EVP_CIPHER *cipher)
  +Index: crypto/rand/rand_lib.c
  +--- crypto/rand/rand_lib.c   30 Jan 2003 17:39:23 -  1.16
   crypto/rand/rand_lib.c   2 Mar 2007 17:54:31 -   1.16.2.1
  +@@ -154,6 +154,7 @@
  + int RAND_bytes(unsigned char *buf, int num)
{
  - local(@a,@b,$_,$r);
  -Index: util/mklink.pl
   util/mklink.pl.orig  2006-05-15 20:46:35 +0200
  -+++ util/mklink.pl   2006-05-15 20:48:07 +0200
  -@@ -15,13 +15,12 @@
  - # Apart from this, this script should be able to handle even the most
  - # pathological cases.
  - 
  --use Cwd;
  --
  - my $from = shift;
  - my @files = @ARGV;
  - 
  - my @from_path = split(/[\\\/]/, $from);
  --my $pwd = 

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

2007-05-20 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:   20-May-2007 09:55:38
  Branch: HEAD Handle: 2007052008553701

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec perl.patch

  Log:
fix building Perl under GCC 4.2 world order

  Summary:
RevisionChanges Path
1.453   +1  -0  openpkg-src/openpkg/HISTORY
1.588   +1  -1  openpkg-src/openpkg/openpkg.spec
1.2 +17 -0  openpkg-src/openpkg/perl.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.452 -r1.453 HISTORY
  --- openpkg-src/openpkg/HISTORY   19 May 2007 20:09:57 -  1.452
  +++ openpkg-src/openpkg/HISTORY   20 May 2007 07:55:37 -  1.453
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070520 fix building Perl under GCC 4.2 world order
   20070519 upgrade to OSSP uuid 1.6.0
   20070519 upgrade to official GNU shtool 2.0.7
   20070514 upgrade to newer GNU shtool snapshot which fixes shtool mkln and 
shtool install commands
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.587 -r1.588 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  19 May 2007 20:09:58 -  1.587
  +++ openpkg-src/openpkg/openpkg.spec  20 May 2007 07:55:38 -  1.588
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070519
  +%define   V_openpkg  20070520
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/perl.patch
  
  $ cvs diff -u -r1.1 -r1.2 perl.patch
  --- openpkg-src/openpkg/perl.patch13 May 2006 17:21:28 -  1.1
  +++ openpkg-src/openpkg/perl.patch20 May 2007 07:55:38 -  1.2
  @@ -240,3 +240,20 @@
} else {
goto gotwidth;
}
  +
  +-
  +
  +Support GCC 4.2
  +
  +Index: makedepend.SH
  +--- makedepend.SH.orig   2003-06-05 20:11:10 +0200
   makedepend.SH2007-05-20 09:32:10 +0200
  +@@ -167,6 +167,7 @@
  + -e '/^#.*builtin/d' \
  + -e '/^#.*built-in/d' \
  + -e '/^#.*command line/d' \
  ++-e '/^#.*command-line/d' \
  + -e '/^#.*-/d' \
  + -e '/: file path prefix .* never used$/d' \
  + -e 's#\.[0-9][0-9]*\.c#'$file.c# \
  +
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec shtool

2007-05-19 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:   19-May-2007 21:44:14
  Branch: HEAD Handle: 2007051920441300

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec shtool

  Log:
upgrade to official GNU shtool 2.0.7

  Summary:
RevisionChanges Path
1.451   +1  -0  openpkg-src/openpkg/HISTORY
1.586   +1  -1  openpkg-src/openpkg/openpkg.spec
1.37+24 -24 openpkg-src/openpkg/shtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.450 -r1.451 HISTORY
  --- openpkg-src/openpkg/HISTORY   15 May 2007 19:36:32 -  1.450
  +++ openpkg-src/openpkg/HISTORY   19 May 2007 19:44:13 -  1.451
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070519 upgrade to official GNU shtool 2.0.7
   20070514 upgrade to newer GNU shtool snapshot which fixes shtool mkln and 
shtool install commands
   20070511 upgrade to openpkg executable version 2.0.1-C, do not rise 
privileges for openpkg rpm when given -[bt]* options
   20070507 workaround PIC/DSO related problems under FreeBSD on sparc64 by 
enforcing -fPIC
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.585 -r1.586 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  15 May 2007 19:36:32 -  1.585
  +++ openpkg-src/openpkg/openpkg.spec  19 May 2007 19:44:13 -  1.586
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070515
  +%define   V_openpkg  20070519
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/shtool
  
  $ cvs diff -u -r1.36 -r1.37 shtool
  --- openpkg-src/openpkg/shtool15 May 2007 19:36:32 -  1.36
  +++ openpkg-src/openpkg/shtool19 May 2007 19:44:13 -  1.37
  @@ -1,12 +1,12 @@
   #!/bin/sh
   ##
   ##  GNU shtool -- The GNU Portable Shell Tool
  -##  Copyright (c) 1994-2006 Ralf S. Engelschall [EMAIL PROTECTED]
  +##  Copyright (c) 1994-2007 Ralf S. Engelschall [EMAIL PROTECTED]
   ##
   ##  See http://www.gnu.org/software/shtool/ for more information.
   ##  See ftp://ftp.gnu.org/gnu/shtool/ for latest version.
   ##
  -##  Version:  2.0.6 (19-Apr-2006)
  +##  Version:  2.0.7 (19-May-2007)
   ##  Contents: all available modules
   ##
   
  @@ -90,8 +90,8 @@
   exit 1
   fi
   if [ .$1 = .-h ] || [ .$1 = .--help ]; then
  -echo This is GNU shtool, version 2.0.6 (19-Apr-2006)
  -echo 'Copyright (c) 1994-2006 Ralf S. Engelschall [EMAIL PROTECTED]'
  +echo This is GNU shtool, version 2.0.7 (19-May-2007)
  +echo 'Copyright (c) 1994-2007 Ralf S. Engelschall [EMAIL PROTECTED]'
   echo 'Report bugs to [EMAIL PROTECTED]'
   echo ''
   echo 'Usage: shtool [options] [cmd-name [cmd-options] 
[cmd-args]]'
  @@ -157,7 +157,7 @@
   exit 0
   fi
   if [ .$1 = .-v ] || [ .$1 = .--version ]; then
  -echo GNU shtool 2.0.6 (19-Apr-2006)
  +echo GNU shtool 2.0.7 (19-May-2007)
   exit 0
   fi
   if [ .$1 = .-r ] || [ .$1 = .--recreate ]; then
  @@ -647,7 +647,7 @@
   echo )
   ##
   ##  echo -- Print string with optional construct expansion
  -##  Copyright (c) 1998-2006 Ralf S. Engelschall [EMAIL PROTECTED]
  +##  Copyright (c) 1998-2007 Ralf S. Engelschall [EMAIL PROTECTED]
   ##
   
   text=$*
  @@ -958,7 +958,7 @@
   ##
   ##  mdate -- Pretty-print modification time of a file or dir
   ##  Copyright (c) 1995-1997 Free Software Foundation, Inc.
  -##  Copyright (c) 1998-2006 Ralf S. Engelschall [EMAIL PROTECTED]
  +##  Copyright (c) 1998-2007 Ralf S. Engelschall [EMAIL PROTECTED]
   ##
   
   fod=$1
  @@ -1086,7 +1086,7 @@
   table )
   ##
   ##  table -- Pretty-print a field-separated list as a table
  -##  Copyright (c) 1998-2006 Ralf S. Engelschall [EMAIL PROTECTED]
  +##  Copyright (c) 1998-2007 Ralf S. Engelschall [EMAIL PROTECTED]
   ##
   
   if [ $opt_c -gt 4 ]; then
  @@ -1151,7 +1151,7 @@
   prop )
   ##
   ##  prop -- Display progress with a running propeller
  -##  Copyright (c) 1998-2006 Ralf S. Engelschall [EMAIL PROTECTED]
  +##  Copyright (c) 1998-2007 Ralf S. Engelschall [EMAIL PROTECTED]
   ##
   
   perl=''
  @@ -1197,7 +1197,7 @@
   move )
   ##
   ##  move -- Move files with 

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

2007-05-19 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:   19-May-2007 22:09:58
  Branch: HEAD Handle: 2007051921095701

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to OSSP uuid 1.6.0

  Summary:
RevisionChanges Path
1.452   +1  -0  openpkg-src/openpkg/HISTORY
1.587   +1  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.451 -r1.452 HISTORY
  --- openpkg-src/openpkg/HISTORY   19 May 2007 19:44:13 -  1.451
  +++ openpkg-src/openpkg/HISTORY   19 May 2007 20:09:57 -  1.452
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070519 upgrade to OSSP uuid 1.6.0
   20070519 upgrade to official GNU shtool 2.0.7
   20070514 upgrade to newer GNU shtool snapshot which fixes shtool mkln and 
shtool install commands
   20070511 upgrade to openpkg executable version 2.0.1-C, do not rise 
privileges for openpkg rpm when given -[bt]* options
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.586 -r1.587 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  19 May 2007 19:44:13 -  1.586
  +++ openpkg-src/openpkg/openpkg.spec  19 May 2007 20:09:58 -  1.587
  @@ -53,7 +53,7 @@
   %define   V_patch2.5.9
   %define   V_tar  1.16.1
   %define   V_bash 3.2
  -%define   V_uuid 1.5.1
  +%define   V_uuid 1.6.0
   %define   V_config   20060923
   %define   V_registry 1.1.2
   %define   V_perl 5.8.8
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec shtool

2007-05-15 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   15-May-2007 21:36:32
  Branch: HEAD Handle: 2007051520363200

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec shtool

  Log:
upgrade to newer GNU shtool snapshot which fixes shtool mkln and
shtool install commands

  Summary:
RevisionChanges Path
1.450   +1  -0  openpkg-src/openpkg/HISTORY
1.585   +1  -1  openpkg-src/openpkg/openpkg.spec
1.36+15 -10 openpkg-src/openpkg/shtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.449 -r1.450 HISTORY
  --- openpkg-src/openpkg/HISTORY   11 May 2007 13:11:30 -  1.449
  +++ openpkg-src/openpkg/HISTORY   15 May 2007 19:36:32 -  1.450
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070514 upgrade to newer GNU shtool snapshot which fixes shtool mkln and 
shtool install commands
   20070511 upgrade to openpkg executable version 2.0.1-C, do not rise 
privileges for openpkg rpm when given -[bt]* options
   20070507 workaround PIC/DSO related problems under FreeBSD on sparc64 by 
enforcing -fPIC
   20070419 meticulously obey order when creating user, group, login shell 
relationships
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.584 -r1.585 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  11 May 2007 13:11:30 -  1.584
  +++ openpkg-src/openpkg/openpkg.spec  15 May 2007 19:36:32 -  1.585
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070511
  +%define   V_openpkg  20070515
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/shtool
  
  $ cvs diff -u -r1.35 -r1.36 shtool
  --- openpkg-src/openpkg/shtool29 Sep 2006 06:54:05 -  1.35
  +++ openpkg-src/openpkg/shtool15 May 2007 19:36:32 -  1.36
  @@ -1375,12 +1375,12 @@
   if [ .$opt_t = .yes ]; then
   echo cp $src $dsttmp 12
   fi
  -cp $src $dsttmp || shtool_exit $?
  +cp $src $dsttmp || shtool_exit $?
   else
   if [ .$opt_t = .yes ]; then
   echo mv $src $dsttmp 12
   fi
  -mv $src $dsttmp || shtool_exit $?
  +mv $src $dsttmp || shtool_exit $?
   fi
   
   #   adjust the target file
  @@ -1391,7 +1391,7 @@
   do
   sed=$sed -e '$e'
   done
  -cp $dsttmp $dsttmp.old
  +cp $dsttmp $dsttmp.old
   chmod u+w $dsttmp
   eval $sed $dsttmp.old $dsttmp || shtool_exit $?
   rm -f $dsttmp.old
  @@ -1426,7 +1426,7 @@
   quick=no
   if [ .$opt_C = .yes ]; then
   if [ -r $dst ]; then
  -if cmp -s $src $dst; then
  +if cmp -s $src $dst; then
   quick=yes
   fi
   fi
  @@ -1645,12 +1645,17 @@
   #   determine source prefix which is the reverse directory
   #   step-up corresponding to the destination directory
   srcpre=
  -
  -isroot=0
  -if [ .$prefix = . ] || [ .$prefix = ./ ]; then
  -isroot=1
  -fi
  -if [ $oneisabs = 0 ] || [ $isroot = 0 ]; then
  +allow_relative_srcpre=no
  +if [ .$prefix != . ]  [ .$prefix != ./ ]; then
  +allow_relative_srcpre=yes
  +fi  
  +if [ $oneisabs = 0 ]; then
  +allow_relative_srcpre=yes
  +fi  
  +if [ .$opt_s != .yes ]; then
  +allow_relative_srcpre=no
  +fi  
  +if [ .$allow_relative_srcpre = .yes ]; then
   pl=$dstdir/
   OIFS=$IFS; IFS='/'
   for pe in $pl; do
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-05-11 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   11-May-2007 15:11:31
  Branch: HEAD Handle: 2007051114113000

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070507 - 20070511

  Summary:
RevisionChanges Path
1.449   +1  -0  openpkg-src/openpkg/HISTORY
1.584   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.448 -r1.449 HISTORY
  --- openpkg-src/openpkg/HISTORY   6 May 2007 22:17:02 -   1.448
  +++ openpkg-src/openpkg/HISTORY   11 May 2007 13:11:30 -  1.449
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070511 upgrade to openpkg executable version 2.0.1-C, do not rise 
privileges for openpkg rpm when given -[bt]* options
   20070507 workaround PIC/DSO related problems under FreeBSD on sparc64 by 
enforcing -fPIC
   20070419 meticulously obey order when creating user, group, login shell 
relationships
   20070418 use bootstrapped bash to prevent problems when /bin/sh is not a 
bourne shell
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.583 -r1.584 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  6 May 2007 22:17:02 -   1.583
  +++ openpkg-src/openpkg/openpkg.spec  11 May 2007 13:11:30 -  1.584
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070507
  +%define   V_openpkg  20070511
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -59,7 +59,7 @@
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8e
   %define   V_tools1.4.4
  -%define   V_exec 2.0.0-C
  +%define   V_exec 2.0.1-C
   
   #   package information
   Name: openpkg
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY aux.wrapsrc.sh openpkg.boo...

2007-04-19 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   19-Apr-2007 12:41:53
  Branch: HEAD Handle: 2007041911415101

  Modified files:
openpkg-src/openpkg HISTORY aux.wrapsrc.sh openpkg.boot openpkg.spec
rpmmacros

  Log:
support %l_as macro and --use_as bootstrap option to complement ar, ld, 
strip handling
sponsored by BinckBank

  Summary:
RevisionChanges Path
1.445   +1  -0  openpkg-src/openpkg/HISTORY
1.24+1  -1  openpkg-src/openpkg/aux.wrapsrc.sh
1.64+4  -2  openpkg-src/openpkg/openpkg.boot
1.580   +14 -1  openpkg-src/openpkg/openpkg.spec
1.82+1  -0  openpkg-src/openpkg/rpmmacros
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.444 -r1.445 HISTORY
  --- openpkg-src/openpkg/HISTORY   11 Apr 2007 15:48:48 -  1.444
  +++ openpkg-src/openpkg/HISTORY   19 Apr 2007 10:41:51 -  1.445
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070417 support %l_as macro and --use_as bootstrap option to complement ar, 
ld, strip handling
   20070411 upgrade to cURL 7.16.2
   20070329 add variables to expand uuid(8) information in the openpkg 
release format
   20070322 cosmetic: align code variable name with documentation
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/aux.wrapsrc.sh
  
  $ cvs diff -u -r1.23 -r1.24 aux.wrapsrc.sh
  --- openpkg-src/openpkg/aux.wrapsrc.sh1 Jan 2007 17:40:18 -   
1.23
  +++ openpkg-src/openpkg/aux.wrapsrc.sh19 Apr 2007 10:41:51 -  
1.24
  @@ -60,7 +60,7 @@
   echo[--{s,m,r,n}usr=usr] [--{s,m,r,n}grp=grp] 21
   echo[--{s,m,r,n}uid=uid] [--{s,m,r,n}gid=gid] 21
   echo[--use_tar=tar] [--use_make=make] [--use_cc=cc] 21
  -echo[--use_ar=ar] [--use_ld=ld] [--use_strip=strip] 21
  +echo[--use_ar=ar] [--use_ld=ld] [--use_as=as] 
[--use_strip=strip] 21
   echo[-t|--tar] [-h|--help] [-v|--version] 21
   exit 1
   fi
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.boot
  
  $ cvs diff -u -r1.63 -r1.64 openpkg.boot
  --- openpkg-src/openpkg/openpkg.boot  21 Feb 2007 10:42:44 -  1.63
  +++ openpkg-src/openpkg/openpkg.boot  19 Apr 2007 10:41:51 -  1.64
  @@ -56,7 +56,7 @@
   muid=''; mgid=''
   ruid=''; rgid=''
   nuid=''; ngid=''
  -use_tar=''; use_make=''; use_cc=''; use_ar=''; use_ld=''; use_strip=''
  +use_tar=''; use_make=''; use_cc=''; use_ar=''; use_ld=''; use_as=''; 
use_strip=''
   bs=0
   
   #   parse command line options
  @@ -94,6 +94,7 @@
   --use_cc=*   ) use_cc=$arg;;
   --use_ar=*   ) use_ar=$arg;;
   --use_ld=*   ) use_ld=$arg;;
  +--use_as=*   ) use_as=$arg;;
   --use_strip=*) use_strip=$arg ;;
   -bs | -s ) bs=1;;
   *) help=1  ;;
  @@ -109,7 +110,7 @@
   echo[--{s,m,r,n}usr=usr] [--{s,m,r,n}grp=grp] 21
   echo[--{s,m,r,n}uid=uid] [--{s,m,r,n}gid=gid] 21
   echo[--use_tar=tar] [--use_make=make] [--use_cc=cc] 21
  -echo[--use_ar=ar] [--use_ld=ld] [--use_strip=strip] 21
  +echo[--use_ar=ar] [--use_ld=ld] [--use_as=as] 
[--use_strip=strip] 21
   echo[-t|--tar] [-h|--help] [-v|--version] 21
   exit 1
   fi
  @@ -285,6 +286,7 @@
 echo use_cc=$use_cc
 echo use_ar=$use_ar
 echo use_ld=$use_ld
  +  echo use_as=$use_as
 echo use_strip=$use_strip
 grep '%define' $spec | \
 sed \
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.579 -r1.580 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  11 Apr 2007 15:48:48 -  1.579
  +++ openpkg-src/openpkg/openpkg.spec  19 Apr 2007 10:41:51 -  1.580
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070411
  +%define   V_openpkg  20070417
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -381,6 +381,19 @@
   fi
   echo l_ld=\$l_ld\; export l_ld .buildenv
   
  +#   manually make sure as(1) is available
  +l_as=; export l_as
  +[ .%{?l_as:set}   = .set ]  

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.boot openpkg.spec

2007-04-19 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   19-Apr-2007 12:44:20
  Branch: HEAD Handle: 2007041911441801

  Modified files:
openpkg-src/openpkg HISTORY openpkg.boot openpkg.spec

  Log:
use bootstrapped bash to prevent problems when /bin/sh is not a bourne 
shell;
Fixes a problem on AIX where ksh is used an LOGNAME being set readonly;
sponsored by BinckBank

  Summary:
RevisionChanges Path
1.446   +1  -0  openpkg-src/openpkg/HISTORY
1.65+1  -3  openpkg-src/openpkg/openpkg.boot
1.581   +1  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.445 -r1.446 HISTORY
  --- openpkg-src/openpkg/HISTORY   19 Apr 2007 10:41:51 -  1.445
  +++ openpkg-src/openpkg/HISTORY   19 Apr 2007 10:44:18 -  1.446
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070418 use bootstrapped bash to prevent problems when /bin/sh is not a 
bourne shell
   20070417 support %l_as macro and --use_as bootstrap option to complement ar, 
ld, strip handling
   20070411 upgrade to cURL 7.16.2
   20070329 add variables to expand uuid(8) information in the openpkg 
release format
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.boot
  
  $ cvs diff -u -r1.64 -r1.65 openpkg.boot
  --- openpkg-src/openpkg/openpkg.boot  19 Apr 2007 10:41:51 -  1.64
  +++ openpkg-src/openpkg/openpkg.boot  19 Apr 2007 10:44:19 -  1.65
  @@ -401,7 +401,7 @@
   -e s;^\\(%_sourcedir *\\).*;\\1 $distdir; \
   -e s;^\\(%_builddir *\\).*;\\1 $tmpdir; \
   -e s;^\\(%_tmppath *\\).*;\\1 $tmpdir; \
  --e s;^\\(%_buildshell *\\).*;\\1 /bin/sh; \
  +-e s;^\\(%_buildshell *\\).*;\\1 env -i OPENPKG_BOOT=1 
%{l_build_shell_cmd} %{l_build_shell_opt}; \
   -e s;@l_build_path@;/bin:/sbin:/usr/bin:/usr/sbin;g \
   -e s;@l_build_ldlp@;/usr/lib;g \
   -e s;@l_build_ulim@;:;g
  @@ -435,8 +435,6 @@
   ##
   
   echo ++ re-iterating over RPM specification procedures
  -OPENPKG_BOOT=1
  -export OPENPKG_BOOT
   $tmpdir/rpm -bb $spec
   
   ##
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.580 -r1.581 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  19 Apr 2007 10:41:51 -  1.580
  +++ openpkg-src/openpkg/openpkg.spec  19 Apr 2007 10:44:19 -  1.581
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070417
  +%define   V_openpkg  20070418
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-04-19 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   19-Apr-2007 12:47:31
  Branch: HEAD Handle: 2007041911472901

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
meticulously obey order when creating user, group, login shell 
relationships;
AIX does not allow us to cheat and assign a nonexisting group or
nonexisting, insecure or nonexecutable shell. The shell setting can
be deferred to %post but group correction must occur before openpkg
setuid wrapper goes to action; sponsored by BinckBank

  Summary:
RevisionChanges Path
1.447   +1  -0  openpkg-src/openpkg/HISTORY
1.582   +12 -3  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.446 -r1.447 HISTORY
  --- openpkg-src/openpkg/HISTORY   19 Apr 2007 10:44:18 -  1.446
  +++ openpkg-src/openpkg/HISTORY   19 Apr 2007 10:47:29 -  1.447
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070419 meticulously obey order when creating user, group, login shell 
relationships
   20070418 use bootstrapped bash to prevent problems when /bin/sh is not a 
bourne shell
   20070417 support %l_as macro and --use_as bootstrap option to complement ar, 
ld, strip handling
   20070411 upgrade to cURL 7.16.2
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.581 -r1.582 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  19 Apr 2007 10:44:19 -  1.581
  +++ openpkg-src/openpkg/openpkg.spec  19 Apr 2007 10:47:30 -  1.582
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070418
  +%define   V_openpkg  20070419
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -1721,6 +1721,9 @@
   fi
   fi
   
  +#   clear pending deferred actions
  +rm -f %{l_prefix}.pre-group-process.sh %{l_prefix}.pre-post-process.sh 
/dev/null 21
  +
   #   create the hierarchy user/group
   for req in superuser:${susr}:${suid}:${sgrp}:${sgid} \
  management:${musr}:${muid}:${mgrp}:${mgid} \
  @@ -1805,8 +1808,8 @@
   rm -f /etc/security/login.cfg.bak /dev/null 21
   #   defer both the setting of the primary group and 
the shell,
   #   as they do not exist at this stage of processing.
  -( echo chuser pgrp=\${grp}\ shell=\${shell}\ 
\${usr}\
  -) %{l_prefix}.pre-post-process.sh
  +echo chuser pgrp=\${grp}\ \${usr}\ 
%{l_prefix}.pre-group-process.sh
  +echo chuser shell=\${shell}\ \${usr}\ 
%{l_prefix}.pre-post-process.sh
   ;;
   * )
   cp $file $file.bak  \
  @@ -1853,6 +1856,12 @@
   fi
   done
   
  +#   optional group processing (deferred adjustment of primary group)
  +if [ -f %{l_prefix}.pre-group-process.sh ]; then
  +sh %{l_prefix}.pre-group-process.sh
  +rm -f %{l_prefix}.pre-group-process.sh
  +fi
  +
   #   invalidate passwd and group tables from Name Service Cache Daemon to
   #   ensure chown/chgrp works immediately after pwconv on Linux and 
Solaris
   if [ -x /usr/sbin/nscd ]; then
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-04-11 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:   11-Apr-2007 17:48:51
  Branch: HEAD Handle: 2007041116484800

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070329 - 20070411

  Summary:
RevisionChanges Path
1.444   +1  -0  openpkg-src/openpkg/HISTORY
1.579   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.443 -r1.444 HISTORY
  --- openpkg-src/openpkg/HISTORY   29 Mar 2007 07:35:01 -  1.443
  +++ openpkg-src/openpkg/HISTORY   11 Apr 2007 15:48:48 -  1.444
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070411 upgrade to cURL 7.16.2
   20070329 add variables to expand uuid(8) information in the openpkg 
release format
   20070322 cosmetic: align code variable name with documentation
   20070321 upgrade to openpkg-registry 1.1.2 replace HOSTNAME with FQDN when 
creating OPENPKG_DESC default
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.578 -r1.579 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  29 Mar 2007 07:35:01 -  1.578
  +++ openpkg-src/openpkg/openpkg.spec  11 Apr 2007 15:48:48 -  1.579
  @@ -39,14 +39,14 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070329
  +%define   V_openpkg  20070411
   
   #   the used software versions
   %define   V_rpm  4.2.1
   %define   V_zlib 1.2.3
   %define   V_bzip21.0.4
   %define   V_beecrypt 4.1.2
  -%define   V_curl 7.16.1
  +%define   V_curl 7.16.2
   %define   V_make 3.81
   %define   V_gzip 1.3.11
   %define   V_gzip_r   1.12
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec release.8 rel...

2007-03-29 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   29-Mar-2007 09:35:05
  Branch: HEAD Handle: 2007032908350102

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec release.8 release.pod
release.sh

  Log:
add variables to expand uuid(8) information in the openpkg release
format

  Summary:
RevisionChanges Path
1.443   +1  -0  openpkg-src/openpkg/HISTORY
1.578   +1  -1  openpkg-src/openpkg/openpkg.spec
1.3 +7  -2  openpkg-src/openpkg/release.8
1.3 +8  -2  openpkg-src/openpkg/release.pod
1.6 +6  -0  openpkg-src/openpkg/release.sh
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.442 -r1.443 HISTORY
  --- openpkg-src/openpkg/HISTORY   22 Mar 2007 21:52:58 -  1.442
  +++ openpkg-src/openpkg/HISTORY   29 Mar 2007 07:35:01 -  1.443
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070329 add variables to expand uuid(8) information in the openpkg 
release format
   20070322 cosmetic: align code variable name with documentation
   20070321 upgrade to openpkg-registry 1.1.2 replace HOSTNAME with FQDN when 
creating OPENPKG_DESC default
   20070320 automatic (re-)registration if previous registration, community 
series or release set to openpkg URLs
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.577 -r1.578 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  22 Mar 2007 21:52:58 -  1.577
  +++ openpkg-src/openpkg/openpkg.spec  29 Mar 2007 07:35:01 -  1.578
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070322
  +%define   V_openpkg  20070329
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/release.8
  
  $ cvs diff -u -r1.2 -r1.3 release.8
  --- openpkg-src/openpkg/release.8 25 Aug 2006 08:58:49 -  1.2
  +++ openpkg-src/openpkg/release.8 29 Mar 2007 07:35:02 -  1.3
  @@ -148,8 +148,10 @@
   The output format specification. The argument \fIformat\fR is an arbitrary
   string which can contain the special expansion constructs \f(CW%t\fR\*(L 
for
   expanding the release tag, \*(R\f(CW%u\fR\*(L for expanding the 
distribution \s-1URL\s0
  -and \*(R\f(CW\*(C`\en\*(C'\fR for expanding an embedded newline character. 
The default
  -\\fIformat\fR is \f(CW\*(C`OpenPKG\-%t %u\*(C'\fR.
  +and \*(R\f(CW\*(C`\en\*(C'\fR for expanding an embedded newline character. 
  +The instance \s-1UUID\s0 information is also availble by expanding
  +\\f(CW%r\fR to \s-1UUID_REGISTRY\s0, \f(CW%i\fR to \s-1UUID_INSTANCE\s0, 
\f(CW%p\fR to \s-1UUID_PLATFORM\s0.
  +The default \fIformat\fR is \f(CW\*(C`OpenPKG\-%t %u\*(C'\fR.
   .IP \fB\-r\fR, \fB\-\-release\fR \fIrelease\fR 4
   .IX Item -r, --release release
   The package \f(CW\*(C`Release\*(C'\fR header value to use for deriving the 
release
  @@ -214,6 +216,9 @@
   \ TAG=2-STABLE-20060622
   \ URL=ftp://ftp.example.com/mirror/openpkg.org/*
   .Ve
  +.SH SEE ALSO
  +.IX Header SEE ALSO
  +\\fIuuid\fR\|(8)
   .SH HISTORY
   .IX Header HISTORY
   The \fBopenpkg release\fR command first appeared in \fBOpenPKG 
2\-STABLE\-20060622\fR.
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/release.pod
  
  $ cvs diff -u -r1.2 -r1.3 release.pod
  --- openpkg-src/openpkg/release.pod   1 Jan 2007 17:40:19 -   1.2
  +++ openpkg-src/openpkg/release.pod   29 Mar 2007 07:35:03 -  1.3
  @@ -48,8 +48,10 @@
   The output format specification. The argument Iformat is an arbitrary
   string which can contain the special expansion constructs C%t for
   expanding the release tag, C%u for expanding the distribution URL
  -and C\n for expanding an embedded newline character. The default
  -Iformat is COpenPKG-%t %u.
  +and C\n for expanding an embedded newline character. 
  +The instance UUID information is also availble by expanding
  +C%r to UUID_REGISTRY, C%i to UUID_INSTANCE, C%p to UUID_PLATFORM.
  +The default Iformat is COpenPKG-%t %u.
   
   =item B-r, B--release Irelease
   
  @@ -114,6 +116,10 @@
TAG=2-STABLE-20060622
URL=ftp://ftp.example.com/mirror/openpkg.org/*
   
  +=head1 SEE ALSO
  +
  +uuid(8)
  +
   

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

2007-03-22 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   22-Mar-2007 22:52:59
  Branch: HEAD Handle: 2007032221525800

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
cosmetic: align code variable name with documentation

  Summary:
RevisionChanges Path
1.442   +1  -0  openpkg-src/openpkg/HISTORY
1.577   +14 -14 openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.441 -r1.442 HISTORY
  --- openpkg-src/openpkg/HISTORY   21 Mar 2007 10:09:16 -  1.441
  +++ openpkg-src/openpkg/HISTORY   22 Mar 2007 21:52:58 -  1.442
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070322 cosmetic: align code variable name with documentation
   20070321 upgrade to openpkg-registry 1.1.2 replace HOSTNAME with FQDN when 
creating OPENPKG_DESC default
   20070320 automatic (re-)registration if previous registration, community 
series or release set to openpkg URLs
   20070320 improve generation of UUID_PLATFORM by using a better (no longer IP 
based) discriminator value
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.576 -r1.577 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  21 Mar 2007 10:09:17 -  1.576
  +++ openpkg-src/openpkg/openpkg.spec  22 Mar 2007 21:52:58 -  1.577
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070321
  +%define   V_openpkg  20070322
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -1627,12 +1627,12 @@
   [ .$prefix = . ]  prefix=%{l_prefix}
   prefix=`echo $prefix | sed -e 's;//*;/;g' -e 's;/$;;'`
   
  -#   register the OpenPKG instance in /etc/openpkg
  -registry=/etc/openpkg
  -exists=`cat $registry 2/dev/null | egrep ^ *${prefix} *\$`
  +#   register instance in presence file
  +presence=/etc/openpkg
  +exists=`cat $presence 2/dev/null | egrep ^ *${prefix} *\$`
   if [ .$exists = . ]; then
   ( umask 022
  -  echo ${prefix} $registry
  +  echo ${prefix} $presence
   ) 2/dev/null || true
   fi
   
  @@ -2487,19 +2487,19 @@
   r=`(uname -r) 2/dev/null` || r='0.0'
   plid=${s}/${r}
   
  -#   unregister the OpenPKG instance in /etc/openpkg
  -registry=/etc/openpkg
  -exists=`cat $registry 2/dev/null | egrep ^ *${prefix} *\$`
  +#   unregister instance in presence file
  +presence=/etc/openpkg
  +exists=`cat $presence 2/dev/null | egrep ^ *${prefix} *\$`
   if [ .$exists != . ]; then
   if [ .$cusr != .root ]; then
  -echo openpkg:WARNING: skipping unregistering of $prefix in 
$registry 12
  +echo openpkg:WARNING: skipping unregistering of $prefix in 
$presence 12
   echo openpkg:WARNING: (would require root-privileges) 12
   else
  -cp $registry $registry.bak  \
  -egrep -v ^ *${prefix} *\$ $registry.bak $registry
  -rm -f $registry.bak /dev/null 21
  -if [ .`cat $registry` = . ]; then
  -rm -f $registry /dev/null 21
  +cp $presence $presence.bak  \
  +egrep -v ^ *${prefix} *\$ $presence.bak $presence
  +rm -f $presence.bak /dev/null 21
  +if [ .`cat $presence` = . ]; then
  +rm -f $presence /dev/null 21
   fi
   fi
   fi
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-03-21 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   21-Mar-2007 11:09:17
  Branch: HEAD Handle: 2007032110091601

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070320 - 20070321

  Summary:
RevisionChanges Path
1.441   +1  -0  openpkg-src/openpkg/HISTORY
1.576   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.440 -r1.441 HISTORY
  --- openpkg-src/openpkg/HISTORY   20 Mar 2007 22:12:43 -  1.440
  +++ openpkg-src/openpkg/HISTORY   21 Mar 2007 10:09:16 -  1.441
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070321 upgrade to openpkg-registry 1.1.2 replace HOSTNAME with FQDN when 
creating OPENPKG_DESC default
   20070320 automatic (re-)registration if previous registration, community 
series or release set to openpkg URLs
   20070320 improve generation of UUID_PLATFORM by using a better (no longer IP 
based) discriminator value
   20070320 remove old support for never finished rcng
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.575 -r1.576 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  20 Mar 2007 11:29:50 -  1.575
  +++ openpkg-src/openpkg/openpkg.spec  21 Mar 2007 10:09:17 -  1.576
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070320
  +%define   V_openpkg  20070321
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -55,7 +55,7 @@
   %define   V_bash 3.2
   %define   V_uuid 1.5.1
   %define   V_config   20060923
  -%define   V_registry 1.1.1
  +%define   V_registry 1.1.2
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8e
   %define   V_tools1.4.4
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rc rc.func

2007-03-20 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:   20-Mar-2007 12:29:51
  Branch: HEAD Handle: 2007032011295001

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rc rc.func

  Log:
remove old code which is no longer required

  Summary:
RevisionChanges Path
1.438   +2  -0  openpkg-src/openpkg/HISTORY
1.575   +1  -1  openpkg-src/openpkg/openpkg.spec
1.66+0  -6  openpkg-src/openpkg/rc
1.18+0  -36 openpkg-src/openpkg/rc.func
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.437 -r1.438 HISTORY
  --- openpkg-src/openpkg/HISTORY   18 Mar 2007 23:56:28 -  1.437
  +++ openpkg-src/openpkg/HISTORY   20 Mar 2007 11:29:50 -  1.438
  @@ -2,6 +2,8 @@
   2007
   
   
  +20070320 remove old support for never finished rcng
  +20070320 remove old backward compatibility from rc.func for OpenPKG 1.2's 
opXXX functions
   20070319 change rc to not check permissions for --print operations
   20070319 fix eval rc in rc.func which relies on PATH and conflicts with 
Plan 9 shell
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.574 -r1.575 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  18 Mar 2007 23:42:17 -  1.574
  +++ openpkg-src/openpkg/openpkg.spec  20 Mar 2007 11:29:50 -  1.575
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070319
  +%define   V_openpkg  20070320
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rc
  
  $ cvs diff -u -r1.65 -r1.66 rc
  --- openpkg-src/openpkg/rc18 Mar 2007 23:56:28 -  1.65
  +++ openpkg-src/openpkg/rc20 Mar 2007 11:29:50 -  1.66
  @@ -48,12 +48,6 @@
   NL=
   
   
  -#   provide hook for openpkg-rc package which contains the
  -#   new OSSP rc implementation as a replacement for this script.
  -if [ -f $prefix/lib/openpkg/rcng ]; then
  -exec $prefix/lib/openpkg/rcng ${1+$@}
  -fi
  -
   ##
   ##  command line option parsing
   ##
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rc.func
  
  $ cvs diff -u -r1.17 -r1.18 rc.func
  --- openpkg-src/openpkg/rc.func   18 Mar 2007 23:42:17 -  1.17
  +++ openpkg-src/openpkg/rc.func   20 Mar 2007 11:29:51 -  1.18
  @@ -208,39 +208,3 @@
   esac
   }
   
  -#
  -#   BACKWARD COMPATIBILITY FOR OPENPKG 1.2 ONLY:
  -#   Mapping between old opXXX and new rcXXX functions.
  -#
  -
  -opWarn () {
  -rcMsg -w $*
  -}
  -opErr () {
  -rcMsg -e $*
  -}
  -opPathAdd () {
  -rcPath -a $@
  -}
  -opPathDel () {
  -rcPath -r $@
  -}
  -opServiceEnabled () {
  -rcService ${1} enable yes
  -}
  -opService () {
  -rcService $@
  -}
  -opTmpDirGen () {
  -rcTmp -i -p ${1}
  -}
  -opTmpDirFile () {
  -eval ${3}=\$(rcTmp -f -n ${2})
  -}
  -opTmpDirDel () {
  -rcTmp -k
  -}
  -opVarIsYes () {
  -rcVarIsYes $@
  -}
  -
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY uuid.sh

2007-03-20 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:   20-Mar-2007 13:50:59
  Branch: HEAD Handle: 2007032012505800

  Modified files:
openpkg-src/openpkg HISTORY uuid.sh

  Log:
improve generation of UUID_PLATFORM by using a better (no longer IP
based) discriminator value

  Summary:
RevisionChanges Path
1.439   +1  -0  openpkg-src/openpkg/HISTORY
1.11+11 -33 openpkg-src/openpkg/uuid.sh
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.438 -r1.439 HISTORY
  --- openpkg-src/openpkg/HISTORY   20 Mar 2007 11:29:50 -  1.438
  +++ openpkg-src/openpkg/HISTORY   20 Mar 2007 12:50:58 -  1.439
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070320 improve generation of UUID_PLATFORM by using a better (no longer IP 
based) discriminator value
   20070320 remove old support for never finished rcng
   20070320 remove old backward compatibility from rc.func for OpenPKG 1.2's 
opXXX functions
   20070319 change rc to not check permissions for --print operations
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/uuid.sh
  
  $ cvs diff -u -r1.10 -r1.11 uuid.sh
  --- openpkg-src/openpkg/uuid.sh   1 Jan 2007 17:40:20 -   1.10
  +++ openpkg-src/openpkg/uuid.sh   20 Mar 2007 12:50:58 -  1.11
  @@ -29,6 +29,7 @@
   mgrp=@l_mgrp@
   prog_rpm=$prefix/libexec/openpkg/rpm
   prog_shtool=$prefix/lib/openpkg/shtool
  +prog_miniperl=$prefix/lib/openpkg/miniperl
   prog_uuid=$prefix/lib/openpkg/uuid
   file_uuid=$prefix/etc/openpkg/uuid
   
  @@ -62,34 +63,17 @@
   eval `$prog_rpm --eval $query 2/dev/null`
   
   #   query OS information
  -Q_platform=`$prog_shtool platform --type=binary 2/dev/null`
  +Q_platform=`$prog_shtool platform --type=binary 2/dev/null |\
  +sed -e 's;^\([^-][^-]*-[^.-][^.-]*\)\..*$;\1;'`
   if [ .$Q_platform = . ]; then
   Q_platform=unknown
   fi
  -Q_hostname=`$prog_shtool echo -e '%h%d' 2/dev/null`
  -if [ .$Q_hostname = . ]; then
  -Q_hostname=unknown
  -fi
  -Q_ipaddr=
  -ifconfig=`$prog_shtool path -p /sbin:/usr/sbin:/bin:/usr/bin:$PATH 
ifconfig`
  -if [ .$ifconfig != . ]; then
  -ips=`$ifconfig -a 21 | grep 'inet' | \
  - sed -e 's;inet6;inet;g' \
  - -e 's;inet addr:;inet ;' \
  - -e 's;^;X;' \
  - -e 's;^X.*inet  *\([^ ][^ ]*\).*$;\1;' \
  - -e 's;^X.*;;' | \
  - sort`
  -for ip in $ips; do
  -if [ .$Q_ipaddr = . ]; then
  -Q_ipaddr=$ip
  -else
  -Q_ipaddr=$Q_ipaddr,$ip
  -fi
  -done
  -fi
  -if [ .$Q_ipaddr = . ]; then
  -Q_ipaddr=unknown
  +Q_discriminator=`$prog_uuid -v1 | $prog_uuid -d -- - | awk 
'/node:.*global unicast/ { printf(mac:%s, $2); }'`
  +if [ .$Q_discriminator = . ]; then
  +Q_discriminator=`$prog_miniperl -e 'if (-f /etc/openpkg) { 
printf(inode:%s, (stat(/etc/openpkg))[1]); }' 2/dev/null`
  +if [ .$Q_discriminator = . ]; then
  +Q_discriminator=`$prog_shtool echo -e 'fqdn:%h%d' 2/dev/null`
  +fi
   fi
   }
   
  @@ -221,8 +205,7 @@
   
   #   update platform UUID
   name=${Q_platform}
  -name=$name:${Q_hostname}
  -name=$name:${Q_ipaddr}
  +name=$name:${Q_discriminator}
   if [ .$opt_v = .yes ]; then
   echo uuid: querying OpenPKG Platform OID
   echo uuid:  $prog_rpm --eval '%{l_openpkg_oid_platform}'
  @@ -282,12 +265,7 @@
   echo 
   echo OpenPKG Platform
   echo Platform Id:   $Q_platform
  -echo Host Name: $Q_hostname
  -n=1
  -for ip in `echo $Q_ipaddr | sed -e 's;,; ;g'`; do
  -echo . | awk '{ printf(Host IP Address %-6s %s\n, num, ip); }' 
num=#$n ip=$ip
  -n=`expr $n + 1`
  -done
  +echo Discriminator: $Q_discriminator
   echo UUID_PLATFORM: $UUID_PLATFORM
   echo 
   echo (run \$0 --verbose update\ to reproduce the UUID generation)
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-03-20 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   20-Mar-2007 23:12:43
  Branch: HEAD Handle: 2007032022124300

  Modified files:
openpkg-src/openpkg HISTORY rc.openpkg

  Log:
automatic (re-)registration if previous registration, community series
or release set to openpkg URLs

  Summary:
RevisionChanges Path
1.440   +1  -0  openpkg-src/openpkg/HISTORY
1.23+12 -6  openpkg-src/openpkg/rc.openpkg
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.439 -r1.440 HISTORY
  --- openpkg-src/openpkg/HISTORY   20 Mar 2007 12:50:58 -  1.439
  +++ openpkg-src/openpkg/HISTORY   20 Mar 2007 22:12:43 -  1.440
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070320 automatic (re-)registration if previous registration, community 
series or release set to openpkg URLs
   20070320 improve generation of UUID_PLATFORM by using a better (no longer IP 
based) discriminator value
   20070320 remove old support for never finished rcng
   20070320 remove old backward compatibility from rc.func for OpenPKG 1.2's 
opXXX functions
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rc.openpkg
  
  $ cvs diff -u -r1.22 -r1.23 rc.openpkg
  --- openpkg-src/openpkg/rc.openpkg21 Feb 2007 10:42:44 -  1.22
  +++ openpkg-src/openpkg/rc.openpkg20 Mar 2007 22:12:43 -  1.23
  @@ -28,12 +28,18 @@
   
   %hourly -u @l_musr@
   rcService openpkg enable yes || exit 0
  -reregister=0; @l_prefix@/bin/openpkg register --printstatus /dev/null 
21  reregister=1
  -#   check for openpkg executable from the OpenPKG Community series
  -#   if OSS, register with openpkg.org
  -[EMAIL PROTECTED]@/bin/openpkg --license 2/dev/null | \
  -sed -e 'q' | egrep '[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*-C'`
  -if [ .$community_version != . -o $reregister -eq 1 ]; then
  +#   automatic (re-)registration
  +reregister=0
  +#   re-register if previously registered
  +@l_prefix@/bin/openpkg register --printstatus /dev/null 21  
reregister=1
  +#   re-register if openpkg executable from community series
  +[ $reregister -eq 0 ]  @l_prefix@/bin/openpkg --license 2/dev/null \
  +| sed -e 'q' | egrep '[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*-C' 
/dev/null  reregister=1
  +#   re-register if openpkg release configured to pull packages 
directly from openpkg.(org|com|net)
  +[ $reregister -eq 0 ]  @l_prefix@/bin/openpkg release --fmt='%u' \
  +| egrep '^[^:]*://(([^:]*:)?([EMAIL 
PROTECTED]@)?)?([^/]*\.)?openpkg\.(com|org|net)/' /dev/null  reregister=1
  +#   perform (re-)registration
  +if [ $reregister -eq 1 ]; then
   [ $openpkg_reghour -lt 00 -o $openpkg_reghour -gt 23 ]  
openpkg_reghour=3
   now=`date '+%H'`
   [ $openpkg_reghour -eq $now ] || exit 0
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rc.func

2007-03-18 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   19-Mar-2007 00:42:18
  Branch: HEAD Handle: 2007031823421601

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rc.func

  Log:
fix eval rc in rc.func which relies on PATH and conflicts with Plan
9 shell

  Summary:
RevisionChanges Path
1.436   +5  -0  openpkg-src/openpkg/HISTORY
1.574   +1  -1  openpkg-src/openpkg/openpkg.spec
1.17+1  -1  openpkg-src/openpkg/rc.func
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.435 -r1.436 HISTORY
  --- openpkg-src/openpkg/HISTORY   5 Mar 2007 22:41:39 -   1.435
  +++ openpkg-src/openpkg/HISTORY   18 Mar 2007 23:42:16 -  1.436
  @@ -2,8 +2,13 @@
   2007
   
   
  +20070319 fix eval rc in rc.func which relies on PATH and conflicts with 
Plan 9 shell
  +
  +20070319  RELEASE AS PART OF OPENPKG 2.20070319 
   20070305 invalidate passwd and group tables from Name Service Cache Daemon 
after pwconv
   20070305 upgrade to rpmtool 1.1.0 remove dormant code for system user/group 
addition/removal
  +
  +20070303  RELEASE AS PART OF OPENPKG 2.20070303 
   20070302 upgrade to openpkg-registry 1.1.1 upgrade safety
   20070302 upgrade to openpkg-tools 1.4.3 direct access relative path names 
(identified by leading ./); minor re fix in 1.4.4
   20070226 upgrade to openpkg-tools 1.4.2 direct access absolut path names 
(identified by leading /), download from URLs (including file://)
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.573 -r1.574 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  5 Mar 2007 22:41:40 -   1.573
  +++ openpkg-src/openpkg/openpkg.spec  18 Mar 2007 23:42:17 -  1.574
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070305
  +%define   V_openpkg  20070319
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rc.func
  
  $ cvs diff -u -r1.16 -r1.17 rc.func
  --- openpkg-src/openpkg/rc.func   1 Jan 2007 17:40:19 -   1.16
  +++ openpkg-src/openpkg/rc.func   18 Mar 2007 23:42:17 -  1.17
  @@ -176,7 +176,7 @@
   local chk=${3}
   eval local val=\$${var}
   if [ .${val} = . ]; then
  -eval `rc ${1} status`
  +eval [EMAIL PROTECTED]@/bin/openpkg rc 2/dev/null --silent ${1} 
status || true`
   eval local val=\$${var}
   fi
   if [ .${val} = .${chk} ]; then
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY rc

2007-03-18 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   19-Mar-2007 00:56:30
  Branch: HEAD Handle: 2007031823562800

  Modified files:
openpkg-src/openpkg HISTORY rc

  Log:
change rc to not check permissions for --print operations

  Summary:
RevisionChanges Path
1.437   +1  -0  openpkg-src/openpkg/HISTORY
1.65+1  -1  openpkg-src/openpkg/rc
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.436 -r1.437 HISTORY
  --- openpkg-src/openpkg/HISTORY   18 Mar 2007 23:42:16 -  1.436
  +++ openpkg-src/openpkg/HISTORY   18 Mar 2007 23:56:28 -  1.437
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070319 change rc to not check permissions for --print operations
   20070319 fix eval rc in rc.func which relies on PATH and conflicts with 
Plan 9 shell
   
   20070319  RELEASE AS PART OF OPENPKG 2.20070319 
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rc
  
  $ cvs diff -u -r1.64 -r1.65 rc
  --- openpkg-src/openpkg/rc1 Jan 2007 17:40:19 -   1.64
  +++ openpkg-src/openpkg/rc18 Mar 2007 23:56:28 -  1.65
  @@ -341,7 +341,7 @@
   done
   
   #   sanity check: is operation supported by current environment?
  -if [ .$s_user != .$user -a .$user != .root ]; then
  +if [ .$s_user != .$user -a .$user != .root -a .$print 
= .0 ]; then
   echo openpkg:rc:ERROR: $s_name:%$cmd: require root 
privileges to run as user \$s_user\ 12
   exit 1
   fi
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY

2007-03-05 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   05-Mar-2007 23:33:08
  Branch: HEAD Handle: 2007030522330800

  Modified files:
openpkg-src/openpkg HISTORY

  Log:
mention minor re fix

  Summary:
RevisionChanges Path
1.433   +1  -1  openpkg-src/openpkg/HISTORY
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.432 -r1.433 HISTORY
  --- openpkg-src/openpkg/HISTORY   2 Mar 2007 10:10:51 -   1.432
  +++ openpkg-src/openpkg/HISTORY   5 Mar 2007 22:33:08 -   1.433
  @@ -3,7 +3,7 @@
   
   
   20070302 upgrade to openpkg-registry 1.1.1 upgrade safety
  -20070302 upgrade to openpkg-tools 1.4.3 direct access relative path names 
(identified by leading ./) 
  +20070302 upgrade to openpkg-tools 1.4.3 direct access relative path names 
(identified by leading ./); minor re fix in 1.4.4
   20070226 upgrade to openpkg-tools 1.4.2 direct access absolut path names 
(identified by leading /), download from URLs (including file://)
   20070223 upgrade to OpenSSL 0.9.8e
   20070222 upgrade to openpkg-tools 1.4.1 avoid openpkg curl to emit 
confusing error trying read config messages
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY rpmtool rpmtool.8 rpmtool....

2007-03-05 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   05-Mar-2007 23:39:15
  Branch: HEAD Handle: 2007030522391400

  Modified files:
openpkg-src/openpkg HISTORY rpmtool rpmtool.8 rpmtool.pod

  Log:
remove dormant code for system user/group addition/removal from
rpmtool

  Summary:
RevisionChanges Path
1.434   +1  -0  openpkg-src/openpkg/HISTORY
1.54+2  -286openpkg-src/openpkg/rpmtool
1.13+0  -6  openpkg-src/openpkg/rpmtool.8
1.18+0  -8  openpkg-src/openpkg/rpmtool.pod
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.433 -r1.434 HISTORY
  --- openpkg-src/openpkg/HISTORY   5 Mar 2007 22:33:08 -   1.433
  +++ openpkg-src/openpkg/HISTORY   5 Mar 2007 22:39:14 -   1.434
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070305 upgrade to rpmtool 1.1.0 remove dormant code for system user/group 
addition/removal
   20070302 upgrade to openpkg-registry 1.1.1 upgrade safety
   20070302 upgrade to openpkg-tools 1.4.3 direct access relative path names 
(identified by leading ./); minor re fix in 1.4.4
   20070226 upgrade to openpkg-tools 1.4.2 direct access absolut path names 
(identified by leading /), download from URLs (including file://)
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool
  
  $ cvs diff -u -r1.53 -r1.54 rpmtool
  --- openpkg-src/openpkg/rpmtool   4 Feb 2007 22:57:31 -   1.53
  +++ openpkg-src/openpkg/rpmtool   5 Mar 2007 22:39:14 -   1.54
  @@ -25,8 +25,8 @@
   
   prog_path=$0
   prog_name=rpmtool
  -prog_vers=1.0.2
  -prog_date=03-Aug-2001
  +prog_vers=1.1.0
  +prog_date=05-Mar-2007
   
   if [ $# -eq 0 ]; then
   echo $0:Error: invalid command line 12
  @@ -51,9 +51,6 @@
   echo '  cppflags [-p prefix] [subdir ...]'
   echo '  ldflags  [-p prefix] [subdir ...]'
   echo '  files  [-v] [-o outfile] [-r buildroot] [filelist]'
  -echo '  user   [-c] [-d] [-p passwd] [-n realname] [-d homedir]'
  -echo ' [-s shell] [-u min-uid] username'
  -echo '  group  [-c] [-d] groupname min-gid [username ...]'
   echo '  signal [-v] [-t] [-n] [-c] [-d delay] [-p pid] [-m 
pattern] sig [sig ...]'
   echo '  config [-v] [-s] [-a] [-r] [-b ext] [-p tagprefix] [-t 
tagname] [-i tagid] file'
   echo '  msg[-b] [-r] [-t type]'
  @@ -115,26 +112,6 @@
   opt_o=''
   opt_r=''
   ;;
  -user )
  -str_usage=[-a] [-r] [-p passwd] [-n realname] [-d homedir] 
[-s shell] [-u min-uid] username
  -arg_spec=1=
  -opt_spec=a.r.p:n:d:s:u:
  -opt_a=no
  -opt_r=no
  -opt_p=''
  -opt_n=''
  -opt_d=''
  -opt_s=''
  -opt_u=1000
  -;;
  -group )
  -str_usage=[-a] [-r] [-g min-gid] groupname [username ...]
  -arg_spec=1+
  -opt_spec=a.r.g:
  -opt_a=no
  -opt_r=no
  -opt_g=1000
  -;;
   signal )
   str_usage=[-v] [-t] [-n] [-c] [-d delay] [-p pid] [-m 
pattern] sig [sig ...]
   arg_spec=1+
  @@ -912,267 +889,6 @@
   fi
   ;;
   
  -user )
  -#   calling convention
  -if [ .$opt_a = .no -a .$opt_r = .no ]; then
  -echo $msgprefix:Error: either -a or -r has to be given 12
  -exit 1
  -fi
  -if [ .$opt_a = .yes -a .$opt_r = .yes ]; then
  -echo $msgprefix:Error: only -a or -r can be given 12
  -exit 1
  -fi
  -user=$1
  -
  -#   default values
  -if [ .$opt_n = . ]; then
  -opt_n=$user
  -fi
  -if [ .$opt_s = . ]; then
  -opt_s=`which false 2/dev/null`
  -if [ .$opt_s = . ]; then
  -opt_s=/bin/false
  -fi
  -fi
  -if [ .$opt_d = . ]; then
  -opt_d=/nowhere
  -fi
  -
  -#   add user
  -if [ .$opt_a = .yes ]; then
  -case $platform in
  -*:Darwin:*:* )
  -exists=`(cat /etc/passwd; nidump passwd .) 2/dev/null | 
grep ^$user:`
  -;;
  -* )
  -exists=`grep ^$user: /etc/passwd`
  -;;
  -esac
  -if [ .$exists != . ]; then
  -echo $msgprefix:Error: user \`$user' already exists 12
  -exit 

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

2007-03-05 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   05-Mar-2007 23:41:40
  Branch: HEAD Handle: 2007030522413901

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
invalidate passwd and group tables from Name Service Cache Daemon
after pwconv

  Summary:
RevisionChanges Path
1.435   +1  -0  openpkg-src/openpkg/HISTORY
1.573   +15 -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.434 -r1.435 HISTORY
  --- openpkg-src/openpkg/HISTORY   5 Mar 2007 22:39:14 -   1.434
  +++ openpkg-src/openpkg/HISTORY   5 Mar 2007 22:41:39 -   1.435
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070305 invalidate passwd and group tables from Name Service Cache Daemon 
after pwconv
   20070305 upgrade to rpmtool 1.1.0 remove dormant code for system user/group 
addition/removal
   20070302 upgrade to openpkg-registry 1.1.1 upgrade safety
   20070302 upgrade to openpkg-tools 1.4.3 direct access relative path names 
(identified by leading ./); minor re fix in 1.4.4
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.572 -r1.573 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  2 Mar 2007 10:10:51 -   1.572
  +++ openpkg-src/openpkg/openpkg.spec  5 Mar 2007 22:41:40 -   1.573
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070302
  +%define   V_openpkg  20070305
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -1840,6 +1840,13 @@
   fi
   done
   
  +#   invalidate passwd and group tables from Name Service Cache Daemon to
  +#   ensure chown/chgrp works immediately after pwconv on Linux and 
Solaris
  +if [ -x /usr/sbin/nscd ]; then
  +/usr/sbin/nscd -i passwd /dev/null 21 || true
  +/usr/sbin/nscd -i group /dev/null 21 || true
  +fi
  +
   #   create the startup/shutdown transfer script
   name=`echo $prefix | sed -e 's;/;;g'`
   if [ .$cusr != .root ]; then
  @@ -2613,6 +2620,13 @@
   fi
   done
   
  +#   invalidate passwd and group tables from Name Service Cache Daemon to
  +#   ensure chown/chgrp works immediately after pwconv on Linux and 
Solaris
  +if [ -x /usr/sbin/nscd ]; then
  +/usr/sbin/nscd -i passwd /dev/null 21 || true
  +/usr/sbin/nscd -i group /dev/null 21 || true
  +fi
  +
   #   remove the startup/shutdown transfer scripts
   name=`echo $prefix | sed -e 's;/;;g'`
   if [ .$cusr != .root ]; then
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-03-02 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   02-Mar-2007 09:56:11
  Branch: HEAD Handle: 2007030208561001

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070226 - 20070302

  Summary:
RevisionChanges Path
1.431   +3  -2  openpkg-src/openpkg/HISTORY
1.570   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.430 -r1.431 HISTORY
  --- openpkg-src/openpkg/HISTORY   26 Feb 2007 17:42:32 -  1.430
  +++ openpkg-src/openpkg/HISTORY   2 Mar 2007 08:56:10 -   1.431
  @@ -2,9 +2,10 @@
   2007
   
   
  -20070226 upgrade to openpkg-tools 1.4.2 (download from URLs (including 
file://), direct access absolut path names (identified by leading /) 
  +20070302 upgrade to openpkg-tools 1.4.3 direct access relative path names 
(identified by leading ./) 
  +20070226 upgrade to openpkg-tools 1.4.2 direct access absolut path names 
(identified by leading /), download from URLs (including file://)
   20070223 upgrade to OpenSSL 0.9.8e
  -20070222 upgrade to openpkg-tools 1.4.1 (avoid openpkg curl to emit 
confusing error trying read config messages)
  +20070222 upgrade to openpkg-tools 1.4.1 avoid openpkg curl to emit 
confusing error trying read config messages
   
   20070221  RELEASE AS PART OF OPENPKG 2.20070221 
   20070221 autoregister for community series; always reregister
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.569 -r1.570 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  26 Feb 2007 17:42:32 -  1.569
  +++ openpkg-src/openpkg/openpkg.spec  2 Mar 2007 08:56:11 -   1.570
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070226
  +%define   V_openpkg  20070302
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -58,7 +58,7 @@
   %define   V_registry 1.1.0
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8e
  -%define   V_tools1.4.2
  +%define   V_tools1.4.3
   %define   V_exec 2.0.0-C
   
   #   package information
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-03-02 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   02-Mar-2007 11:10:52
  Branch: HEAD Handle: 2007030210105100

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
modifying package: openpkg-20070302 20070302 again

  Summary:
RevisionChanges Path
1.432   +1  -0  openpkg-src/openpkg/HISTORY
1.572   +1  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.431 -r1.432 HISTORY
  --- openpkg-src/openpkg/HISTORY   2 Mar 2007 08:56:10 -   1.431
  +++ openpkg-src/openpkg/HISTORY   2 Mar 2007 10:10:51 -   1.432
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070302 upgrade to openpkg-registry 1.1.1 upgrade safety
   20070302 upgrade to openpkg-tools 1.4.3 direct access relative path names 
(identified by leading ./) 
   20070226 upgrade to openpkg-tools 1.4.2 direct access absolut path names 
(identified by leading /), download from URLs (including file://)
   20070223 upgrade to OpenSSL 0.9.8e
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.571 -r1.572 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  2 Mar 2007 09:51:54 -   1.571
  +++ openpkg-src/openpkg/openpkg.spec  2 Mar 2007 10:10:51 -   1.572
  @@ -55,7 +55,7 @@
   %define   V_bash 3.2
   %define   V_uuid 1.5.1
   %define   V_config   20060923
  -%define   V_registry 1.1.0
  +%define   V_registry 1.1.1
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8e
   %define   V_tools1.4.4
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-02-26 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   26-Feb-2007 18:42:33
  Branch: HEAD Handle: 2007022617423200

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070223 - 20070226

  Summary:
RevisionChanges Path
1.430   +1  -0  openpkg-src/openpkg/HISTORY
1.569   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.429 -r1.430 HISTORY
  --- openpkg-src/openpkg/HISTORY   23 Feb 2007 16:24:56 -  1.429
  +++ openpkg-src/openpkg/HISTORY   26 Feb 2007 17:42:32 -  1.430
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070226 upgrade to openpkg-tools 1.4.2 (download from URLs (including 
file://), direct access absolut path names (identified by leading /) 
   20070223 upgrade to OpenSSL 0.9.8e
   20070222 upgrade to openpkg-tools 1.4.1 (avoid openpkg curl to emit 
confusing error trying read config messages)
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.568 -r1.569 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  23 Feb 2007 16:24:56 -  1.568
  +++ openpkg-src/openpkg/openpkg.spec  26 Feb 2007 17:42:32 -  1.569
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070223
  +%define   V_openpkg  20070226
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -58,7 +58,7 @@
   %define   V_registry 1.1.0
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8e
  -%define   V_tools1.4.1
  +%define   V_tools1.4.2
   %define   V_exec 2.0.0-C
   
   #   package information
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-02-23 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:   23-Feb-2007 17:24:56
  Branch: HEAD Handle: 2007022316245600

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to OpenSSL 0.9.8e

  Summary:
RevisionChanges Path
1.429   +3  -0  openpkg-src/openpkg/HISTORY
1.568   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.428 -r1.429 HISTORY
  --- openpkg-src/openpkg/HISTORY   22 Feb 2007 16:36:53 -  1.428
  +++ openpkg-src/openpkg/HISTORY   23 Feb 2007 16:24:56 -  1.429
  @@ -2,7 +2,10 @@
   2007
   
   
  +20070223 upgrade to OpenSSL 0.9.8e
   20070222 upgrade to openpkg-tools 1.4.1 (avoid openpkg curl to emit 
confusing error trying read config messages)
  +
  +20070221  RELEASE AS PART OF OPENPKG 2.20070221 
   20070221 autoregister for community series; always reregister
   20070221 backout capability to seed registry user/link information to avoid 
register.conf file conflict
   20070221 upgrade to openpkg-tools 1.4.0 (openpkg curl), upgrade to 
openpkg-registry 1.1.0 (autoregister)
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.567 -r1.568 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  22 Feb 2007 16:36:53 -  1.567
  +++ openpkg-src/openpkg/openpkg.spec  23 Feb 2007 16:24:56 -  1.568
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070222
  +%define   V_openpkg  20070223
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -57,7 +57,7 @@
   %define   V_config   20060923
   %define   V_registry 1.1.0
   %define   V_perl 5.8.8
  -%define   V_openssl  0.9.8d
  +%define   V_openssl  0.9.8e
   %define   V_tools1.4.1
   %define   V_exec 2.0.0-C
   
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-02-22 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   22-Feb-2007 17:36:54
  Branch: HEAD Handle: 2007022216365300

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070221 - 20070222

  Summary:
RevisionChanges Path
1.428   +1  -0  openpkg-src/openpkg/HISTORY
1.567   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.427 -r1.428 HISTORY
  --- openpkg-src/openpkg/HISTORY   21 Feb 2007 10:42:44 -  1.427
  +++ openpkg-src/openpkg/HISTORY   22 Feb 2007 16:36:53 -  1.428
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070222 upgrade to openpkg-tools 1.4.1 (avoid openpkg curl to emit 
confusing error trying read config messages)
   20070221 autoregister for community series; always reregister
   20070221 backout capability to seed registry user/link information to avoid 
register.conf file conflict
   20070221 upgrade to openpkg-tools 1.4.0 (openpkg curl), upgrade to 
openpkg-registry 1.1.0 (autoregister)
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.566 -r1.567 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  21 Feb 2007 10:42:44 -  1.566
  +++ openpkg-src/openpkg/openpkg.spec  22 Feb 2007 16:36:53 -  1.567
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070221
  +%define   V_openpkg  20070222
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -58,7 +58,7 @@
   %define   V_registry 1.1.0
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools1.4.0
  +%define   V_tools1.4.1
   %define   V_exec 2.0.0-C
   
   #   package information
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.boot openpkg.spec ...

2007-02-21 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   21-Feb-2007 11:42:44
  Branch: HEAD Handle: 2007022110424400

  Modified files:
openpkg-src/openpkg HISTORY openpkg.boot openpkg.spec rc.openpkg

  Log:
backout capability to seed registry user/link information to avoid
register.conf file conflict; autoregister for community series; always
reregister

  Summary:
RevisionChanges Path
1.427   +2  -0  openpkg-src/openpkg/HISTORY
1.63+0  -6  openpkg-src/openpkg/openpkg.boot
1.566   +2  -5  openpkg-src/openpkg/openpkg.spec
1.22+13 -7  openpkg-src/openpkg/rc.openpkg
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.426 -r1.427 HISTORY
  --- openpkg-src/openpkg/HISTORY   20 Feb 2007 23:57:44 -  1.426
  +++ openpkg-src/openpkg/HISTORY   21 Feb 2007 10:42:44 -  1.427
  @@ -2,6 +2,8 @@
   2007
   
   
  +20070221 autoregister for community series; always reregister
  +20070221 backout capability to seed registry user/link information to avoid 
register.conf file conflict
   20070221 upgrade to openpkg-tools 1.4.0 (openpkg curl), upgrade to 
openpkg-registry 1.1.0 (autoregister)
   20070207 upgrade to openpkg-tools 1.3.2
   20070206 upgrade to GNU gzip 1.3.11
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.boot
  
  $ cvs diff -u -r1.62 -r1.63 openpkg.boot
  --- openpkg-src/openpkg/openpkg.boot  20 Feb 2007 23:57:44 -  1.62
  +++ openpkg-src/openpkg/openpkg.boot  21 Feb 2007 10:42:44 -  1.63
  @@ -57,7 +57,6 @@
   ruid=''; rgid=''
   nuid=''; ngid=''
   use_tar=''; use_make=''; use_cc=''; use_ar=''; use_ld=''; use_strip=''
  -reg_user=''; reg_link=''
   bs=0
   
   #   parse command line options
  @@ -96,8 +95,6 @@
   --use_ar=*   ) use_ar=$arg;;
   --use_ld=*   ) use_ld=$arg;;
   --use_strip=*) use_strip=$arg ;;
  ---reg_user=* ) reg_user=$arg ;;
  ---reg_link=* ) reg_link=$arg ;;
   -bs | -s ) bs=1;;
   *) help=1  ;;
   esac
  @@ -113,7 +110,6 @@
   echo[--{s,m,r,n}uid=uid] [--{s,m,r,n}gid=gid] 21
   echo[--use_tar=tar] [--use_make=make] [--use_cc=cc] 21
   echo[--use_ar=ar] [--use_ld=ld] [--use_strip=strip] 21
  -echo[--reg_user=user] [--reg_link=token] 21
   echo[-t|--tar] [-h|--help] [-v|--version] 21
   exit 1
   fi
  @@ -290,8 +286,6 @@
 echo use_ar=$use_ar
 echo use_ld=$use_ld
 echo use_strip=$use_strip
  -  echo reg_user=$reg_user
  -  echo reg_link=$reg_link
 grep '%define' $spec | \
 sed \
   -e 's:^%define *\([^ ]*\) *\(.*\):\1=\2:'
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.565 -r1.566 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  20 Feb 2007 23:57:44 -  1.565
  +++ openpkg-src/openpkg/openpkg.spec  21 Feb 2007 10:42:44 -  1.566
  @@ -1320,11 +1320,8 @@
   chmod 644 $RPM_BUILD_ROOT%{l_prefix}/etc/openpkg/uuid
   
   #   install registry configuration files (ghost)
  -(
  -echo REGISTRY_USER=\$reg_user\
  -echo REGISTRY_LINK=\$reg_link\
  -) $RPM_BUILD_ROOT%{l_prefix}/etc/openpkg/register.conf
   touch \
  +$RPM_BUILD_ROOT%{l_prefix}/etc/openpkg/register.conf \
   $RPM_BUILD_ROOT%{l_prefix}/etc/openpkg/register.prep \
   $RPM_BUILD_ROOT%{l_prefix}/etc/openpkg/register.tran \
   $RPM_BUILD_ROOT%{l_prefix}/etc/openpkg/register.util
  @@ -1401,7 +1398,7 @@
   %config %{l_prefix}/etc/openpkg/platform
   %config %{l_prefix}/etc/openpkg/rpmmacros
   %config %{l_prefix}/etc/openpkg/rpmrc
  -%config %{l_prefix}/etc/openpkg/register.conf
  +%ghost %{l_prefix}/etc/openpkg/register.conf
   %ghost %{l_prefix}/etc/openpkg/register.prep
   %ghost %{l_prefix}/etc/openpkg/register.tran
   %ghost %{l_prefix}/etc/openpkg/register.util
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rc.openpkg
  
  $ cvs diff -u -r1.21 -r1.22 rc.openpkg
  --- openpkg-src/openpkg/rc.openpkg20 Feb 2007 23:57:44 -  1.21
  +++ openpkg-src/openpkg/rc.openpkg21 Feb 2007 10:42:44 

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.boot openpkg.spec ...

2007-02-20 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   21-Feb-2007 00:57:46
  Branch: HEAD Handle: 2007022023574400

  Modified files:
openpkg-src/openpkg HISTORY openpkg.boot openpkg.spec rc.openpkg

  Log:
upgrade to openpkg-tools 1.4.0 (openpkg curl), upgrade to
openpkg-registry 1.1.0 (autoregister)

  Summary:
RevisionChanges Path
1.426   +1  -0  openpkg-src/openpkg/HISTORY
1.62+6  -0  openpkg-src/openpkg/openpkg.boot
1.565   +16 -5  openpkg-src/openpkg/openpkg.spec
1.21+12 -0  openpkg-src/openpkg/rc.openpkg
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.425 -r1.426 HISTORY
  --- openpkg-src/openpkg/HISTORY   7 Feb 2007 07:53:53 -   1.425
  +++ openpkg-src/openpkg/HISTORY   20 Feb 2007 23:57:44 -  1.426
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070221 upgrade to openpkg-tools 1.4.0 (openpkg curl), upgrade to 
openpkg-registry 1.1.0 (autoregister)
   20070207 upgrade to openpkg-tools 1.3.2
   20070206 upgrade to GNU gzip 1.3.11
   20070204 rpmtool cflags tool detection must handle relative pathes (no gcc) 
and absolute pathes (with gcc)
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.boot
  
  $ cvs diff -u -r1.61 -r1.62 openpkg.boot
  --- openpkg-src/openpkg/openpkg.boot  1 Jan 2007 17:40:19 -   1.61
  +++ openpkg-src/openpkg/openpkg.boot  20 Feb 2007 23:57:44 -  1.62
  @@ -57,6 +57,7 @@
   ruid=''; rgid=''
   nuid=''; ngid=''
   use_tar=''; use_make=''; use_cc=''; use_ar=''; use_ld=''; use_strip=''
  +reg_user=''; reg_link=''
   bs=0
   
   #   parse command line options
  @@ -95,6 +96,8 @@
   --use_ar=*   ) use_ar=$arg;;
   --use_ld=*   ) use_ld=$arg;;
   --use_strip=*) use_strip=$arg ;;
  +--reg_user=* ) reg_user=$arg ;;
  +--reg_link=* ) reg_link=$arg ;;
   -bs | -s ) bs=1;;
   *) help=1  ;;
   esac
  @@ -110,6 +113,7 @@
   echo[--{s,m,r,n}uid=uid] [--{s,m,r,n}gid=gid] 21
   echo[--use_tar=tar] [--use_make=make] [--use_cc=cc] 21
   echo[--use_ar=ar] [--use_ld=ld] [--use_strip=strip] 21
  +echo[--reg_user=user] [--reg_link=token] 21
   echo[-t|--tar] [-h|--help] [-v|--version] 21
   exit 1
   fi
  @@ -286,6 +290,8 @@
 echo use_ar=$use_ar
 echo use_ld=$use_ld
 echo use_strip=$use_strip
  +  echo reg_user=$reg_user
  +  echo reg_link=$reg_link
 grep '%define' $spec | \
 sed \
   -e 's:^%define *\([^ ]*\) *\(.*\):\1=\2:'
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.564 -r1.565 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  7 Feb 2007 07:53:53 -   1.564
  +++ openpkg-src/openpkg/openpkg.spec  20 Feb 2007 23:57:44 -  1.565
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070207
  +%define   V_openpkg  20070221
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -55,10 +55,10 @@
   %define   V_bash 3.2
   %define   V_uuid 1.5.1
   %define   V_config   20060923
  -%define   V_registry 1.0.1
  +%define   V_registry 1.1.0
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools1.3.2
  +%define   V_tools1.4.0
   %define   V_exec 2.0.0-C
   
   #   package information
  @@ -1165,6 +1165,7 @@
   
   #   install OpenPKG Tool Chain command subset
   ( cd openpkg-tools-%{V_tools}
  +  cp cmd/curl.sh $RPM_BUILD_ROOT%{l_prefix}/libexec/openpkg/curl.sh
 cp cmd/build.pl $RPM_BUILD_ROOT%{l_prefix}/libexec/openpkg/build.pl
 chmod 644 $RPM_BUILD_ROOT%{l_prefix}/libexec/openpkg/build.pl
 cp cmd/build.8 $RPM_BUILD_ROOT%{l_prefix}/libexec/openpkg/build.8
  @@ -1291,6 +1292,7 @@
   chmod 644 $RPM_BUILD_ROOT%{l_prefix}/etc/rc.func
   mkdir $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d
   sed -e s:@l_prefix@:%{l_prefix}:g \
  +-e s:@l_musr@:%{l_musr}:g \
   `SOURCE rc.openpkg` \
   $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/rc.openpkg
   chmod 755 $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/rc.openpkg
  @@ -1318,11 +1320,16 @@
   chmod 644 

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

2007-02-06 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:   06-Feb-2007 17:50:37
  Branch: HEAD Handle: 2007020616503700

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to GNU gzip 1.3.11

  Summary:
RevisionChanges Path
1.424   +1  -0  openpkg-src/openpkg/HISTORY
1.563   +3  -3  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.423 -r1.424 HISTORY
  --- openpkg-src/openpkg/HISTORY   4 Feb 2007 22:57:30 -   1.423
  +++ openpkg-src/openpkg/HISTORY   6 Feb 2007 16:50:37 -   1.424
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070206 upgrade to GNU gzip 1.3.11
   20070204 rpmtool cflags tool detection must handle relative pathes (no gcc) 
and absolute pathes (with gcc)
   20070204 unbreak rpmtool cflags tool detection
   20070130 minor fixes in rpmtool and the corresponding man page
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.562 -r1.563 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  4 Feb 2007 20:12:55 -   1.562
  +++ openpkg-src/openpkg/openpkg.spec  6 Feb 2007 16:50:37 -   1.563
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070204
  +%define   V_openpkg  20070206
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -48,8 +48,8 @@
   %define   V_beecrypt 4.1.2
   %define   V_curl 7.16.1
   %define   V_make 3.81
  -%define   V_gzip 1.3.10
  -%define   V_gzip_r   1.11
  +%define   V_gzip 1.3.11
  +%define   V_gzip_r   1.12
   %define   V_patch2.5.9
   %define   V_tar  1.16.1
   %define   V_bash 3.2
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-02-06 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:   07-Feb-2007 08:53:54
  Branch: HEAD Handle: 2007020707535300

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070206 - 20070207

  Summary:
RevisionChanges Path
1.425   +1  -0  openpkg-src/openpkg/HISTORY
1.564   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.424 -r1.425 HISTORY
  --- openpkg-src/openpkg/HISTORY   6 Feb 2007 16:50:37 -   1.424
  +++ openpkg-src/openpkg/HISTORY   7 Feb 2007 07:53:53 -   1.425
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070207 upgrade to openpkg-tools 1.3.2
   20070206 upgrade to GNU gzip 1.3.11
   20070204 rpmtool cflags tool detection must handle relative pathes (no gcc) 
and absolute pathes (with gcc)
   20070204 unbreak rpmtool cflags tool detection
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.563 -r1.564 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  6 Feb 2007 16:50:37 -   1.563
  +++ openpkg-src/openpkg/openpkg.spec  7 Feb 2007 07:53:53 -   1.564
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070206
  +%define   V_openpkg  20070207
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -58,7 +58,7 @@
   %define   V_registry 1.0.1
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools1.3.1
  +%define   V_tools1.3.2
   %define   V_exec 2.0.0-C
   
   #   package information
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpmtool

2007-02-04 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   04-Feb-2007 21:12:56
  Branch: HEAD Handle: 2007020420125500

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpmtool

  Log:
unbreak rpmtool cflags tool detection

  Summary:
RevisionChanges Path
1.422   +1  -0  openpkg-src/openpkg/HISTORY
1.562   +1  -1  openpkg-src/openpkg/openpkg.spec
1.52+4  -2  openpkg-src/openpkg/rpmtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.421 -r1.422 HISTORY
  --- openpkg-src/openpkg/HISTORY   30 Jan 2007 17:36:29 -  1.421
  +++ openpkg-src/openpkg/HISTORY   4 Feb 2007 20:12:55 -   1.422
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070204 unbreak rpmtool cflags tool detection
   20070130 minor fixes in rpmtool and the corresponding man page
   20070130 upgrade to cURL 7.16.1
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.561 -r1.562 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  30 Jan 2007 08:34:29 -  1.561
  +++ openpkg-src/openpkg/openpkg.spec  4 Feb 2007 20:12:55 -   1.562
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070130
  +%define   V_openpkg  20070204
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool
  
  $ cvs diff -u -r1.51 -r1.52 rpmtool
  --- openpkg-src/openpkg/rpmtool   30 Jan 2007 13:15:42 -  1.51
  +++ openpkg-src/openpkg/rpmtool   4 Feb 2007 20:12:55 -   1.52
  @@ -450,11 +450,13 @@
   
   cflags )
   tool=$1
  -isgcc=no
  -if [ ! -x $tool -o -d $tool ]; then
  +shtool=`echo $prog_path | sed -e 's;/[^/]*$;/shtool;'`
  +sh $shtool path --suppress $tool
  +if [ $? -ne 0 ]; then
   echo $msgprefix:Error: specified tool \`$tool' not found or not 
executable 12
   exit 1
   fi
  +isgcc=no
   if [ .`($tool -v; $tool --version) /dev/null 21 | grep -i 
'gcc'` != . ]; then
   isgcc=yes
   fi
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY rpmtool

2007-02-04 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   04-Feb-2007 23:57:31
  Branch: HEAD Handle: 2007020422573001

  Modified files:
openpkg-src/openpkg HISTORY rpmtool

  Log:
rpmtool cflags tool detection must handle relative pathes (no gcc) and
absolute pathes (with gcc) - thanks to cs for pointing out

  Summary:
RevisionChanges Path
1.423   +1  -0  openpkg-src/openpkg/HISTORY
1.53+13 -5  openpkg-src/openpkg/rpmtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.422 -r1.423 HISTORY
  --- openpkg-src/openpkg/HISTORY   4 Feb 2007 20:12:55 -   1.422
  +++ openpkg-src/openpkg/HISTORY   4 Feb 2007 22:57:30 -   1.423
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070204 rpmtool cflags tool detection must handle relative pathes (no gcc) 
and absolute pathes (with gcc)
   20070204 unbreak rpmtool cflags tool detection
   20070130 minor fixes in rpmtool and the corresponding man page
   20070130 upgrade to cURL 7.16.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool
  
  $ cvs diff -u -r1.52 -r1.53 rpmtool
  --- openpkg-src/openpkg/rpmtool   4 Feb 2007 20:12:55 -   1.52
  +++ openpkg-src/openpkg/rpmtool   4 Feb 2007 22:57:31 -   1.53
  @@ -450,11 +450,19 @@
   
   cflags )
   tool=$1
  -shtool=`echo $prog_path | sed -e 's;/[^/]*$;/shtool;'`
  -sh $shtool path --suppress $tool
  -if [ $? -ne 0 ]; then
  -echo $msgprefix:Error: specified tool \`$tool' not found or not 
executable 12
  -exit 1
  +echo $tool | grep ^/ /dev/null
  +if [ $? -eq 0 ]; then
  +if [ ! -x $tool -o -d $tool ]; then
  +echo $msgprefix:Error: specified tool \`$tool' not found or 
not executable 12
  +exit 1
  +fi
  +else
  +shtool=`echo $prog_path | sed -e 's;/[^/]*$;/shtool;'`
  +sh $shtool path --suppress $tool
  +if [ $? -ne 0 ]; then
  +echo $msgprefix:Error: specified tool \`$tool' not found in 
PATH 12
  +exit 1
  +fi
   fi
   isgcc=no
   if [ .`($tool -v; $tool --version) /dev/null 21 | grep -i 
'gcc'` != . ]; then
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-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-2007 09:34:30
  Branch: HEAD Handle: 2007013008342900

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20070105 - 20070130

  Summary:
RevisionChanges Path
1.419   +2  -0  openpkg-src/openpkg/HISTORY
1.561   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.418 -r1.419 HISTORY
  --- openpkg-src/openpkg/HISTORY   5 Jan 2007 20:31:23 -   1.418
  +++ openpkg-src/openpkg/HISTORY   30 Jan 2007 08:34:29 -  1.419
  @@ -2,6 +2,8 @@
   2007
   
   
  +20070130 upgrade to cURL 7.16.1
  +
   20070105  RELEASE AS PART OF OPENPKG 2.20070105 
   20070105 upgrade to GNU bzip2 1.0.4
   20070102 upgrade to openpkg-tools 1.3.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.560 -r1.561 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  5 Jan 2007 18:26:56 -   1.560
  +++ openpkg-src/openpkg/openpkg.spec  30 Jan 2007 08:34:29 -  1.561
  @@ -39,14 +39,14 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070105
  +%define   V_openpkg  20070130
   
   #   the used software versions
   %define   V_rpm  4.2.1
   %define   V_zlib 1.2.3
   %define   V_bzip21.0.4
   %define   V_beecrypt 4.1.2
  -%define   V_curl 7.16.0
  +%define   V_curl 7.16.1
   %define   V_make 3.81
   %define   V_gzip 1.3.10
   %define   V_gzip_r   1.11
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY rpmtool

2007-01-30 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Jan-2007 14:15:43
  Branch: HEAD Handle: 2007013013154101

  Modified files:
openpkg-src/openpkg HISTORY rpmtool

  Log:
minor fixes in rpmtool

  Summary:
RevisionChanges Path
1.420   +1  -0  openpkg-src/openpkg/HISTORY
1.51+12 -8  openpkg-src/openpkg/rpmtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.419 -r1.420 HISTORY
  --- openpkg-src/openpkg/HISTORY   30 Jan 2007 08:34:29 -  1.419
  +++ openpkg-src/openpkg/HISTORY   30 Jan 2007 13:15:41 -  1.420
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070130 minor fixes in rpmtool
   20070130 upgrade to cURL 7.16.1
   
   20070105  RELEASE AS PART OF OPENPKG 2.20070105 
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool
  
  $ cvs diff -u -r1.50 -r1.51 rpmtool
  --- openpkg-src/openpkg/rpmtool   1 Jan 2007 17:40:20 -   1.50
  +++ openpkg-src/openpkg/rpmtool   30 Jan 2007 13:15:42 -  1.51
  @@ -364,7 +364,7 @@
   fi
   ;;
   *:FreeBSD:[4567].*:* )
  -n=`/sbin/sysctl hw.ncpu | awk '{ print $2; }'`
  +n=`/sbin/sysctl -n hw.ncpu`
   if [ .$n != . ]; then
   if [ $n -gt 1 ]; then
   n=`expr $n \* 2`
  @@ -375,8 +375,8 @@
   fi
   fi
   ;;
  -*:NetBSD:1.[56]*:* | *:NetBSD:[234].*:* )
  -n=`/sbin/sysctl hw.ncpu | awk '{ print $3; }'`
  +*:NetBSD:1.[56]*:* | *:NetBSD:[2345].*:* )
  +n=`/sbin/sysctl -n hw.ncpu`
   if [ .$n != . ]; then
   if [ $n -gt 1 ]; then
   n=`expr $n \* 2`
  @@ -388,7 +388,7 @@
   fi
   ;;
   *:Linux:*:* )
  -n=`cat /proc/cpuinfo | grep processor | wc -l | awk '{ 
print $1; }'`
  +n=`grep ^processor /proc/cpuinfo | wc -l | awk '{ print 
$1; }'`
   if [ .$n != . ]; then
   if [ $n -gt 1 ]; then
   n=`expr $n \* 2`
  @@ -451,6 +451,10 @@
   cflags )
   tool=$1
   isgcc=no
  +if [ ! -x $tool -o -d $tool ]; then
  +echo $msgprefix:Error: specified tool \`$tool' not found or not 
executable 12
  +exit 1
  +fi
   if [ .`($tool -v; $tool --version) /dev/null 21 | grep -i 
'gcc'` != . ]; then
   isgcc=yes
   fi
  @@ -935,7 +939,7 @@
   ;;
   esac
   if [ .$exists != . ]; then
  -echo $msgprefix:Error: user $user already exists 12
  +echo $msgprefix:Error: user \`$user' already exists 12
   exit 1
   fi
   
  @@ -1019,7 +1023,7 @@
   ;;
   esac
   if [ .$exists = . ]; then
  -echo $msgprefix:Error: user $user does not exist 12
  +echo $msgprefix:Error: user \`$user' does not exist 12
   exit 1
   fi
   
  @@ -1095,7 +1099,7 @@
   ;;
   esac
   if [ .$exists != . ]; then
  -echo $msgprefix:Error: group $group already exists 12
  +echo $msgprefix:Error: group \`$group' already exists 12
   exit 1
   fi
   
  @@ -1141,7 +1145,7 @@
   ;;
   esac
   if [ .$exists = . ]; then
  -echo $msgprefix:Error: group $group does not exist 12
  +echo $msgprefix:Error: group \`$group' does not exist 12
   exit 1
   fi
   
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY rpmtool.8 rpmtool.pod

2007-01-30 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Jan-2007 18:36:30
  Branch: HEAD Handle: 2007013017362900

  Modified files:
openpkg-src/openpkg HISTORY rpmtool.8 rpmtool.pod

  Log:
typos in rpmtool man page

  Summary:
RevisionChanges Path
1.421   +1  -1  openpkg-src/openpkg/HISTORY
1.12+4  -4  openpkg-src/openpkg/rpmtool.8
1.17+4  -4  openpkg-src/openpkg/rpmtool.pod
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.420 -r1.421 HISTORY
  --- openpkg-src/openpkg/HISTORY   30 Jan 2007 13:15:41 -  1.420
  +++ openpkg-src/openpkg/HISTORY   30 Jan 2007 17:36:29 -  1.421
  @@ -2,7 +2,7 @@
   2007
   
   
  -20070130 minor fixes in rpmtool
  +20070130 minor fixes in rpmtool and the corresponding man page
   20070130 upgrade to cURL 7.16.1
   
   20070105  RELEASE AS PART OF OPENPKG 2.20070105 
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool.8
  
  $ cvs diff -u -r1.11 -r1.12 rpmtool.8
  --- openpkg-src/openpkg/rpmtool.8 25 Aug 2006 08:58:49 -  1.11
  +++ openpkg-src/openpkg/rpmtool.8 30 Jan 2007 17:36:29 -  1.12
  @@ -182,7 +182,7 @@
   Example:
   .Sp
   .Vb 1
  -\ CC=$CC CFLAGS=`rpmtool mflags -O $CC` ./configure ...
  +\ CC=$CC CFLAGS=`rpmtool cflags -O $CC` ./configure ...
   .Ve
   .ie n .IP \fBcppflags\fR [\fB\-p\fR \fIprefix\fR] 
[[\*(C`+|\-\*(C'\fR\fIsubdir ...] 4
   .el .IP \fBcppflags\fR [\fB\-p\fR \fIprefix\fR] 
[[\f(CW\*(C`+|\-\*(C'\fR\fIsubdir\fR ...] 4
  @@ -229,7 +229,7 @@
   .IX Item Trailing Tags
   \\s-1RPM\s0 requires that all tags (like \f(CW\*(C`%attr(...)\*(C'\fR or 
\f(CW%dir\fR) preceed the
   path in a file list entry. This sometimes leads to ugly and unreadable
  -file lists, because all paths cannot be left\-aligned. With 
\fIrpmtool\fR\|(1)
  +file lists, because all paths cannot be left\-aligned. With 
\fIrpmtool\fR\|(8)
   tags in the input file list can be at leading and trailing positions.
   The output file list will nevertheless have all tags in leading
   positions for \s-1RPM\s0.
  @@ -237,7 +237,7 @@
   .IX Item Syntactical Set Pattern
   \\s-1RPM\s0 supports simple wildcard patterns like 
\f(CW\*(C`/path/*\*(C'\fR or \f(CW\*(C`/path/[a\-z]\*(C'\fR,
   etc. Sometimes it is convenient, to also have (in addition to character
  -sets) string sets like \f(CW\*(C`/path/{foo,bar,quux}\*(C'\fR. 
\fIrpmtool\fR\|(1) provides this
  +sets) string sets like \f(CW\*(C`/path/{foo,bar,quux}\*(C'\fR. 
\fIrpmtool\fR\|(8) provides this
   by syntactically (without checking the filesystem) expanding those
   string sets.
   .IP \fBOverriding Entries\fR 4
  @@ -247,7 +247,7 @@
   directory in a file list and then implicitly expands this recursively
   into its contents, it unfortunately does not allow one to later
   explcitly override particular entries (usually if an individual
  -\\f(CW\*(C`%attr(...)\*(C'\fR tag is required). \fIrpmtool\fR\|(1) now 
supports overriding
  +\\f(CW\*(C`%attr(...)\*(C'\fR tag is required). \fIrpmtool\fR\|(8) now 
supports overriding
   entries, i.e., if a path occurs multiple times, only the last occurance
   is kept.
   .IP \fBNegation Tag\fR 4
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool.pod
  
  $ cvs diff -u -r1.16 -r1.17 rpmtool.pod
  --- openpkg-src/openpkg/rpmtool.pod   1 Jan 2007 17:40:20 -   1.16
  +++ openpkg-src/openpkg/rpmtool.pod   30 Jan 2007 17:36:29 -  1.17
  @@ -79,7 +79,7 @@
   
   Example:
   
  - CC=$CC CFLAGS=`rpmtool mflags -O $CC` ./configure ...
  + CC=$CC CFLAGS=`rpmtool cflags -O $CC` ./configure ...
   
   =item Bcppflags [B-p Iprefix] [[C+|-Isubdir ...]
   
  @@ -124,7 +124,7 @@
   
   RPM requires that all tags (like C%attr(...) or C%dir) preceed the
   path in a file list entry. This sometimes leads to ugly and unreadable
  -file lists, because all paths cannot be left-aligned. With rpmtool(1)
  +file lists, because all paths cannot be left-aligned. With rpmtool(8)
   tags in the input file list can be at leading and trailing positions.
   The output file list will nevertheless have all tags in leading
   positions for RPM.
  @@ -133,7 +133,7 @@
   
   RPM supports simple wildcard patterns like C/path/* or C/path/[a-z],
   etc. Sometimes it is convenient, to also have (in addition to character
  -sets) string sets like 

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

2007-01-05 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:   05-Jan-2007 19:26:56
  Branch: HEAD Handle: 2007010518265600

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to GNU bzip2 1.0.4

  Summary:
RevisionChanges Path
1.417   +1  -0  openpkg-src/openpkg/HISTORY
1.560   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.416 -r1.417 HISTORY
  --- openpkg-src/openpkg/HISTORY   2 Jan 2007 09:10:14 -   1.416
  +++ openpkg-src/openpkg/HISTORY   5 Jan 2007 18:26:56 -   1.417
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070105 upgrade to GNU bzip2 1.0.4
   20070102 upgrade to openpkg-tools 1.3.1
   20070101 upgrade to GNU gzip 1.3.10
   20070101 adjust copyright year in all messages to cover new year 2007
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.559 -r1.560 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  2 Jan 2007 09:10:14 -   1.559
  +++ openpkg-src/openpkg/openpkg.spec  5 Jan 2007 18:26:56 -   1.560
  @@ -39,12 +39,12 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070102
  +%define   V_openpkg  20070105
   
   #   the used software versions
   %define   V_rpm  4.2.1
   %define   V_zlib 1.2.3
  -%define   V_bzip21.0.3
  +%define   V_bzip21.0.4
   %define   V_beecrypt 4.1.2
   %define   V_curl 7.16.0
   %define   V_make 3.81
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-01-02 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:   02-Jan-2007 10:10:15
  Branch: HEAD Handle: 2007010209101400

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to openpkg-tools 1.3.1

  Summary:
RevisionChanges Path
1.416   +1  -0  openpkg-src/openpkg/HISTORY
1.559   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.415 -r1.416 HISTORY
  --- openpkg-src/openpkg/HISTORY   1 Jan 2007 17:53:56 -   1.415
  +++ openpkg-src/openpkg/HISTORY   2 Jan 2007 09:10:14 -   1.416
  @@ -2,6 +2,7 @@
   2007
   
   
  +20070102 upgrade to openpkg-tools 1.3.1
   20070101 upgrade to GNU gzip 1.3.10
   20070101 adjust copyright year in all messages to cover new year 2007
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.558 -r1.559 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  1 Jan 2007 17:53:57 -   1.558
  +++ openpkg-src/openpkg/openpkg.spec  2 Jan 2007 09:10:14 -   1.559
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20070101
  +%define   V_openpkg  20070102
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -58,7 +58,7 @@
   %define   V_registry 1.0.1
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools1.3.0
  +%define   V_tools1.3.1
   %define   V_exec 2.0.0-C
   
   #   package information
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2007-01-01 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:   01-Jan-2007 18:54:04
  Branch: HEAD Handle: 2007010117535601

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to GNU gzip 1.3.10

  Summary:
RevisionChanges Path
1.415   +6  -0  openpkg-src/openpkg/HISTORY
1.558   +3  -3  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.414 -r1.415 HISTORY
  --- openpkg-src/openpkg/HISTORY   23 Dec 2006 10:16:41 -  1.414
  +++ openpkg-src/openpkg/HISTORY   1 Jan 2007 17:53:56 -   1.415
  @@ -1,4 +1,10 @@
   
  +2007
  +
  +
  +20070101 upgrade to GNU gzip 1.3.10
  +20070101 adjust copyright year in all messages to cover new year 2007
  +
   2006
   
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.557 -r1.558 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  1 Jan 2007 17:40:19 -   1.557
  +++ openpkg-src/openpkg/openpkg.spec  1 Jan 2007 17:53:57 -   1.558
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061223
  +%define   V_openpkg  20070101
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -48,8 +48,8 @@
   %define   V_beecrypt 4.1.2
   %define   V_curl 7.16.0
   %define   V_make 3.81
  -%define   V_gzip 1.3.8
  -%define   V_gzip_r   1.10
  +%define   V_gzip 1.3.10
  +%define   V_gzip_r   1.11
   %define   V_patch2.5.9
   %define   V_tar  1.16.1
   %define   V_bash 3.2
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-12-23 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:   23-Dec-2006 11:16:42
  Branch: HEAD Handle: 2006122310164101

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to openpkg-tools 1.3.0

  Summary:
RevisionChanges Path
1.414   +1  -0  openpkg-src/openpkg/HISTORY
1.556   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.413 -r1.414 HISTORY
  --- openpkg-src/openpkg/HISTORY   10 Dec 2006 09:30:27 -  1.413
  +++ openpkg-src/openpkg/HISTORY   23 Dec 2006 10:16:41 -  1.414
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061223 upgrade to openpkg-tools 1.3.0
   20061210 upgrade to GNU tar 1.16.1
   20061210 upgrade to GNU gzip 1.3.8
   20061208 upgrade to GNU gzip 1.3.7
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.555 -r1.556 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  10 Dec 2006 09:30:27 -  1.555
  +++ openpkg-src/openpkg/openpkg.spec  23 Dec 2006 10:16:42 -  1.556
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061210
  +%define   V_openpkg  20061223
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -58,7 +58,7 @@
   %define   V_registry 1.0.1
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools1.1.1
  +%define   V_tools1.3.0
   %define   V_exec 2.0.0-C
   
   #   package information
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.c openpkg.spec

2006-12-07 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:   07-Dec-2006 11:36:00
  Branch: HEAD Handle: 2006120710355800

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec
  Removed files:
openpkg-src/openpkg openpkg.c

  Log:
upgrade to openpkg executable version 2.0.0-C

  Summary:
RevisionChanges Path
1.408   +1  -1  openpkg-src/openpkg/HISTORY
1.5 +0  -467openpkg-src/openpkg/openpkg.c
1.552   +79 -62 openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.407 -r1.408 HISTORY
  --- openpkg-src/openpkg/HISTORY   6 Dec 2006 12:57:01 -   1.407
  +++ openpkg-src/openpkg/HISTORY   7 Dec 2006 10:35:58 -   1.408
  @@ -2,7 +2,7 @@
   2006
   
   
  -20061206  RELEASE AS PART OF OPENPKG 2.20061206 ***
  +20061207 upgrade to openpkg executable version 2.0.0-C
   20061206 apply the GNU Bash 3.2 upstream patches 001-005
   20061206 switch GNU gzip from pre-patched OpenPKG tarball to pristine 
upstream tarball plus OpenPKG update tarball
   20061206 enhance openpkg release robustness when config file defines same 
value repeatedly
  @@ .
  rm -f openpkg-src/openpkg/openpkg.c '@@ .'
  Index: openpkg-src/openpkg/openpkg.c
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.551 -r1.552 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  6 Dec 2006 11:19:25 -   1.551
  +++ openpkg-src/openpkg/openpkg.spec  7 Dec 2006 10:35:58 -   1.552
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061206
  +%define   V_openpkg  20061207
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -59,6 +59,7 @@
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
   %define   V_tools1.1.1
  +%define   V_exec 2.0.0-C
   
   #   package information
   Name: openpkg
  @@ -74,44 +75,44 @@
   Release:  %{V_openpkg}
   
   #   list of sources
  -Source0:  ftp://ftp.openpkg.org/sources/CPY/openpkg/rpm-%{V_rpm}.tar.gz
  -Source1:  ftp://ftp.ossp.org/pkg/lib/uuid/uuid-%{V_uuid}.tar.gz
  -Source2:  ftp://ftp.openpkg.org/sources/CPY/openpkg/gzip-%{V_gzip}.tar
  -Source3:  
ftp://ftp.openpkg.org/sources/CPY/openpkg/gzip-%{V_gzip}-openpkg-r%{V_gzip_r}.tar
  -Source4:  ftp://alpha.gnu.org/gnu/patch/patch-%{V_patch}.tar.gz
  -Source5:  ftp://ftp.gnu.org/gnu/tar/tar-%{V_tar}.tar.gz
  -Source6:  ftp://ftp.cwru.edu/pub/bash/bash-%{V_bash}.tar.gz
  -Source7:  
ftp://ftp.openpkg.org/sources/CPY/config/config-%{V_config}.tar.gz
  -Source8:  ftp://ftp.gnu.org/gnu/make/make-%{V_make}.tar.gz
  -Source9:  http://www.bzip.org/%{V_bzip2}/bzip2-%{V_bzip2}.tar.gz
  -Source10: http://curl.haxx.se/download/curl-%{V_curl}.tar.gz
  -Source11: 
http://switch.dl.sourceforge.net/beecrypt/beecrypt-%{V_beecrypt}.tar.gz
  -Source12: http://www.zlib.net/zlib-%{V_zlib}.tar.gz
  -Source13: 
ftp://ftp.openpkg.org/sources/CPY/openpkg-registry/openpkg-registry-%{V_registry}.tar.gz
  -Source14: 
ftp://ftp.openpkg.org/sources/CPY/openpkg-tools/openpkg-tools-%{V_tools}.tar.gz
  -Source15: 
ftp://ftp.openpkg.org/sources/CPY/perl/perl-%{V_perl}-mini.tar.gz
  -Source16: ftp://ftp.openssl.org/source/openssl-%{V_openssl}.tar.gz
  -Source17: HISTORY
  -Source18: README
  -Source19: aux.prereq.sh
  -Source20: aux.usrgrp.sh
  -Source21: aux.wrapbin.sh
  -Source22: aux.wrapsrc.sh
  -Source23: bash.patch
  -Source24: beecrypt.patch
  -Source25: dot.bash_login
  -Source26: dot.bashrc
  -Source27: dot.lsyncrc
  -Source28: install.sh
  -Source29: local.README
  -Source30: lsync
  -Source31: lsync.8
  -Source32: lsync.pod
  -Source33: make.patch
  -Source34: man.sh
  -Source35: openpkg.1
  -Source36: openpkg.boot
  -Source37: openpkg.c
  +Source0:  ftp://alpha.gnu.org/gnu/patch/patch-%{V_patch}.tar.gz
  +Source1:  ftp://ftp.cwru.edu/pub/bash/bash-%{V_bash}.tar.gz
  +Source2:  ftp://ftp.gnu.org/gnu/make/make-%{V_make}.tar.gz
  +Source3:  ftp://ftp.gnu.org/gnu/tar/tar-%{V_tar}.tar.gz
  +Source4:  

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

2006-12-07 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:   07-Dec-2006 11:38:29
  Branch: HEAD Handle: 2006120710382800

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
fix Solaris build issues with the newer GNU gzip 1.3.6

  Summary:
RevisionChanges Path
1.409   +1  -0  openpkg-src/openpkg/HISTORY
1.553   +1  -0  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.408 -r1.409 HISTORY
  --- openpkg-src/openpkg/HISTORY   7 Dec 2006 10:35:58 -   1.408
  +++ openpkg-src/openpkg/HISTORY   7 Dec 2006 10:38:28 -   1.409
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061207 fix Solaris build issues with the newer GNU gzip 1.3.6
   20061207 upgrade to openpkg executable version 2.0.0-C
   20061206 apply the GNU Bash 3.2 upstream patches 001-005
   20061206 switch GNU gzip from pre-patched OpenPKG tarball to pristine 
upstream tarball plus OpenPKG update tarball
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.552 -r1.553 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  7 Dec 2006 10:35:58 -   1.552
  +++ openpkg-src/openpkg/openpkg.spec  7 Dec 2006 10:38:28 -   1.553
  @@ -515,6 +515,7 @@
 Darwin/* ) echo gzip_cv_assembler=no config.cache ;;
 esac
 CC=${l_cc} \
  +  GREP=grep \
 ./configure \
 --cache-file=./config.cache
 ${l_make} || exit $?
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY rpmdb

2006-12-07 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:   07-Dec-2006 11:41:03
  Branch: HEAD Handle: 2006120710410201

  Modified files:
openpkg-src/openpkg HISTORY rpmdb

  Log:
fix incorrect double-import of OpenPGP keys by first fixating the RPM
DB

  Summary:
RevisionChanges Path
1.410   +2  -0  openpkg-src/openpkg/HISTORY
1.10+4  -4  openpkg-src/openpkg/rpmdb
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.409 -r1.410 HISTORY
  --- openpkg-src/openpkg/HISTORY   7 Dec 2006 10:38:28 -   1.409
  +++ openpkg-src/openpkg/HISTORY   7 Dec 2006 10:41:02 -   1.410
  @@ -2,6 +2,8 @@
   2006
   
   
  +20061207  RELEASE AS PART OF OPENPKG 2.20061207 
  +20061207 fix incorrect double-import of OpenPGP keys by first fixating the 
RPM DB
   20061207 fix Solaris build issues with the newer GNU gzip 1.3.6
   20061207 upgrade to openpkg executable version 2.0.0-C
   20061206 apply the GNU Bash 3.2 upstream patches 001-005
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmdb
  
  $ cvs diff -u -r1.9 -r1.10 rpmdb
  --- openpkg-src/openpkg/rpmdb 30 Oct 2006 08:13:48 -  1.9
  +++ openpkg-src/openpkg/rpmdb 7 Dec 2006 10:41:03 -   1.10
  @@ -391,8 +391,8 @@
   db_init
   db_extend
   db_rebuild
  -db_operate
   db_fixate
  +db_operate
   ;;
   
   rebuild )
  @@ -401,8 +401,8 @@
   db_extend
   db_reload
   db_rebuild
  -db_operate
   db_fixate
  +db_operate
   ;;
   
   cleanup )
  @@ -410,15 +410,15 @@
   db_unbreak
   db_extend
   db_rebuild
  -db_operate
   db_fixate
  +db_operate
   ;;
   
   fixate )
   verbose 1 FIXATING EXISTING RPM DATABASE ($dbpath)
   db_extend
  -db_operate
   db_fixate
  +db_operate
   ;;
   
   list )
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.pod

2006-12-07 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:   07-Dec-2006 11:50:16
  Branch: HEAD Handle: 2006120710501500

  Modified files:
openpkg-src/openpkg HISTORY openpkg.pod

  Log:
remove obsolete references to openpkg-bugdb@openpkg.org and
rt.openpkg.org and add the missing asterisks in HISTORY

  Summary:
RevisionChanges Path
1.411   +33 -32 openpkg-src/openpkg/HISTORY
1.6 +0  -2  openpkg-src/openpkg/openpkg.pod
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.410 -r1.411 HISTORY
  --- openpkg-src/openpkg/HISTORY   7 Dec 2006 10:41:02 -   1.410
  +++ openpkg-src/openpkg/HISTORY   7 Dec 2006 10:50:15 -   1.411
  @@ -3,6 +3,7 @@
   
   
   20061207  RELEASE AS PART OF OPENPKG 2.20061207 
  +20061207 remove obsolete references to openpkg-bugdb@openpkg.org and 
rt.openpkg.org
   20061207 fix incorrect double-import of OpenPGP keys by first fixating the 
RPM DB
   20061207 fix Solaris build issues with the newer GNU gzip 1.3.6
   20061207 upgrade to openpkg executable version 2.0.0-C
  @@ -17,21 +18,21 @@
   20061112 install zlib's zconf.h header as it is required by zlib.h
   20061030 upgrade to cURL 7.16.0
   
  -20061030  RELEASE AS PART OF OPENPKG 2.20061030 ***
  +20061030  RELEASE AS PART OF OPENPKG 2.20061030 
   20061030 upgrade to openpkg-tools 1.1.0
   20061030 switch from a single OpenPGP key openpkg.pgp (.org) to three 
openpkg.{org,com,net}.pgp keys
   20061026 fix number of CPU detection in rpmtool to support recent FreeBSDs  
NetBSDs
   
  -20061024  RELEASE AS PART OF OPENPKG 2.20061024 ***
  +20061024  RELEASE AS PART OF OPENPKG 2.20061024 
   20061024 try to workaround GNU tar build problems
   
  -20061023  RELEASE AS PART OF OPENPKG 2.20061023 ***
  +20061023  RELEASE AS PART OF OPENPKG 2.20061023 
   20061023 upgrade to openpkg-tools 1.0.1
   20061022 upgrade to openpkg-registry 1.0.1
   20061022 upgrade to GNU tar 1.16
   20061022 fix License header of openpkg package
   
  -20061018  RELEASE AS PART OF OPENPKG 2.20061018 ***
  +20061018  RELEASE AS PART OF OPENPKG 2.20061018 
   20061016 upgrade to openpkg-tools 1.0.0 with no functional change to 0.8.80
   20061008 upgrade to openpkg-registry 1.0.0 with no functional change to 0.7.2
   20061016 upgrade to openpkg-tools 0.8.80
  @@ -48,7 +49,7 @@
   20060923 upgrade to GNU config 20060923
   20060923 upgrade to openpkg-tools 0.8.73
   
  -20060913  RELEASE AS PART OF OPENPKG 2.20060913 ***
  +20060913  RELEASE AS PART OF OPENPKG 2.20060913 
   20060913 if CWD is NO LONGER accessible, try to switch to home of target 
identity to prevent failures in e.g. GNU bash
   20060913 unpack source RPM package files as management user if called by 
super user (openpkg rpm -Uvh *.src.rpm)
   20060913 do not rise privileges for openpkg rc when given --eval or 
--print options
  @@ -59,21 +60,21 @@
   20060825 cleanup build procedure of Perl to allow it to build under 
RHEL4/amd64 (attempt 1)
   20060825 cleanup and bring up-to-date the source tree documentation
   
  -20060824  RELEASE AS PART OF OPENPKG 2.20060824 ***
  +20060824  RELEASE AS PART OF OPENPKG 2.20060824 
   20060823 upgrade to openpkg-tools 0.8.70
   20060823 create fallback/override directories with owner/group musr/mgrp
   20060823 make prefix/bin/openpkg set-uid for allowing it to 
downgrade/upgrade privileges automatically
   20060823 upgrade to openpkg-tools 0.8.69 (no longer uses curl -q in 
openpkg build)
   20060823 fix openpkg release with workaround for Solaris sed(1) which 
ignores lines without trailing newlines
   
  -20060818  RELEASE AS PART OF OPENPKG 2.20060818 ***
  +20060818  RELEASE AS PART OF OPENPKG 2.20060818 
   20060818 upgrade to openpkg-tools 0.8.68
   20060818 try to workaround grep -e Autoconf issues on Solaris with OSSP 
uuid.
   
  -20060815  RELEASE AS PART OF OPENPKG 2.20060815 ***
  +20060815  RELEASE AS PART OF OPENPKG 2.20060815 
   20060815 upgrade to openpkg-tools 0.8.67 (finally allows openpkg build to 
really run under miniperl)
   
  -20060812  RELEASE AS PART OF OPENPKG 2.20060812 ***
  +20060812  RELEASE AS PART OF OPENPKG 2.20060812 
   20060811 let old openpkg install command use the openpkg build command
   20060811 replace openpkg build wrapper with a copy of the real openpkg 
build command
   20060808 make openpkg uuid update processing more robust by detecting 
empty 

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

2006-12-07 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:   08-Dec-2006 08:33:32
  Branch: HEAD Handle: 2006120807333001

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to GNU gzip 1.3.7

  Summary:
RevisionChanges Path
1.412   +2  -0  openpkg-src/openpkg/HISTORY
1.554   +3  -3  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.411 -r1.412 HISTORY
  --- openpkg-src/openpkg/HISTORY   7 Dec 2006 10:50:15 -   1.411
  +++ openpkg-src/openpkg/HISTORY   8 Dec 2006 07:33:30 -   1.412
  @@ -2,6 +2,8 @@
   2006
   
   
  +20061208 upgrade to GNU gzip 1.3.7
  +
   20061207  RELEASE AS PART OF OPENPKG 2.20061207 
   20061207 remove obsolete references to openpkg-bugdb@openpkg.org and 
rt.openpkg.org
   20061207 fix incorrect double-import of OpenPGP keys by first fixating the 
RPM DB
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.553 -r1.554 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  7 Dec 2006 10:38:28 -   1.553
  +++ openpkg-src/openpkg/openpkg.spec  8 Dec 2006 07:33:31 -   1.554
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061207
  +%define   V_openpkg  20061208
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -48,8 +48,8 @@
   %define   V_beecrypt 4.1.2
   %define   V_curl 7.16.0
   %define   V_make 3.81
  -%define   V_gzip 1.3.6
  -%define   V_gzip_r   1.7
  +%define   V_gzip 1.3.7
  +%define   V_gzip_r   1.9
   %define   V_patch2.5.9
   %define   V_tar  1.16
   %define   V_bash 3.2
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-12-06 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   06-Dec-2006 10:11:25
  Branch: HEAD Handle: 2006120609112401

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec release.sh

  Log:
enhance openpkg release robustness when config file defines same
value repeatedly (fixes problems where calls to rpm print error
messages like sed: -e expression ... unterminated ... command)

  Summary:
RevisionChanges Path
1.404   +1  -0  openpkg-src/openpkg/HISTORY
1.550   +1  -1  openpkg-src/openpkg/openpkg.spec
1.3 +4  -2  openpkg-src/openpkg/release.sh
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.403 -r1.404 HISTORY
  --- openpkg-src/openpkg/HISTORY   5 Dec 2006 12:27:45 -   1.403
  +++ openpkg-src/openpkg/HISTORY   6 Dec 2006 09:11:24 -   1.404
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061206 enhance openpkg release robustness when config file defines same 
value repeatedly
   20061205 skip build of irrelevant parts of the GNU tar distribution
   20061129 upgrade to GNU gzip 1.3.6
   20061129 ajust wordings in package class hints according to current 
classification
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.549 -r1.550 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  5 Dec 2006 12:27:45 -   1.549
  +++ openpkg-src/openpkg/openpkg.spec  6 Dec 2006 09:11:24 -   1.550
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061205
  +%define   V_openpkg  20061206
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/release.sh
  
  $ cvs diff -u -r1.2 -r1.3 release.sh
  --- openpkg-src/openpkg/release.sh23 Aug 2006 06:54:43 -  1.2
  +++ openpkg-src/openpkg/release.sh6 Dec 2006 09:11:25 -   1.3
  @@ -74,7 +74,8 @@
   tag=`(cat $prefix/etc/openpkg/release; echo ) | sed \
   -e 's;^;X;' \
   -e 's;^X *TAG *= *\([^ ][^ ]*\).*;\1;' \
  --e '/^X/d'`
  +-e '/^X/d' \
  +| sed -n '$p'`
   else
   tag=`$prefix/bin/openpkg rpm \
   -q --qf '%{VERSION}\n' openpkg | number_to_tag`
  @@ -90,7 +91,8 @@
   url=`(cat $prefix/etc/openpkg/release; echo ) | sed \
   -e 's;^;X;' \
   -e 's;^X *URL *= *\([^ ][^ ]*\).*;\1;' \
  --e '/^X/d'`
  +-e '/^X/d' \
  +| sed -n '$p'`
   fi
   if [ .$url = . ]; then
   url=ftp://ftp.openpkg.org/*;
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-12-06 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:   06-Dec-2006 12:19:25
  Branch: HEAD Handle: 2006120611192500

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
switch GNU gzip from pre-patched OpenPKG tarball to pristine upstream
tarball plus OpenPKG update tarball

  Summary:
RevisionChanges Path
1.405   +1  -0  openpkg-src/openpkg/HISTORY
1.551   +82 -73 openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.404 -r1.405 HISTORY
  --- openpkg-src/openpkg/HISTORY   6 Dec 2006 09:11:24 -   1.404
  +++ openpkg-src/openpkg/HISTORY   6 Dec 2006 11:19:25 -   1.405
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061206 switch GNU gzip from pre-patched OpenPKG tarball to pristine 
upstream tarball plus OpenPKG update tarball
   20061206 enhance openpkg release robustness when config file defines same 
value repeatedly
   20061205 skip build of irrelevant parts of the GNU tar distribution
   20061129 upgrade to GNU gzip 1.3.6
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.550 -r1.551 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  6 Dec 2006 09:11:24 -   1.550
  +++ openpkg-src/openpkg/openpkg.spec  6 Dec 2006 11:19:25 -   1.551
  @@ -49,6 +49,7 @@
   %define   V_curl 7.16.0
   %define   V_make 3.81
   %define   V_gzip 1.3.6
  +%define   V_gzip_r   1.7
   %define   V_patch2.5.9
   %define   V_tar  1.16
   %define   V_bash 3.2
  @@ -75,78 +76,79 @@
   #   list of sources
   Source0:  ftp://ftp.openpkg.org/sources/CPY/openpkg/rpm-%{V_rpm}.tar.gz
   Source1:  ftp://ftp.ossp.org/pkg/lib/uuid/uuid-%{V_uuid}.tar.gz
  -Source2:  
ftp://ftp.openpkg.org/sources/CPY/openpkg/gzip-%{V_gzip}-openpkg.tar
  -Source3:  ftp://alpha.gnu.org/gnu/patch/patch-%{V_patch}.tar.gz
  -Source4:  ftp://ftp.gnu.org/gnu/tar/tar-%{V_tar}.tar.gz
  -Source5:  ftp://ftp.cwru.edu/pub/bash/bash-%{V_bash}.tar.gz
  -Source6:  
ftp://ftp.openpkg.org/sources/CPY/config/config-%{V_config}.tar.gz
  -Source7:  ftp://ftp.gnu.org/gnu/make/make-%{V_make}.tar.gz
  -Source8:  http://www.bzip.org/%{V_bzip2}/bzip2-%{V_bzip2}.tar.gz
  -Source9:  http://curl.haxx.se/download/curl-%{V_curl}.tar.gz
  -Source10: 
http://switch.dl.sourceforge.net/beecrypt/beecrypt-%{V_beecrypt}.tar.gz
  -Source11: http://www.zlib.net/zlib-%{V_zlib}.tar.gz
  -Source12: 
ftp://ftp.openpkg.org/sources/CPY/openpkg-registry/openpkg-registry-%{V_registry}.tar.gz
  -Source13: 
ftp://ftp.openpkg.org/sources/CPY/openpkg-tools/openpkg-tools-%{V_tools}.tar.gz
  -Source14: 
ftp://ftp.openpkg.org/sources/CPY/perl/perl-%{V_perl}-mini.tar.gz
  -Source15: ftp://ftp.openssl.org/source/openssl-%{V_openssl}.tar.gz
  -Source16: HISTORY
  -Source17: README
  -Source18: aux.prereq.sh
  -Source19: aux.usrgrp.sh
  -Source20: aux.wrapbin.sh
  -Source21: aux.wrapsrc.sh
  -Source22: bash.patch
  -Source23: beecrypt.patch
  -Source24: dot.bash_login
  -Source25: dot.bashrc
  -Source26: dot.lsyncrc
  -Source27: install.sh
  -Source28: local.README
  -Source29: lsync
  -Source30: lsync.8
  -Source31: lsync.pod
  -Source32: make.patch
  -Source33: man.sh
  -Source34: openpkg.1
  -Source35: openpkg.boot
  -Source36: openpkg.c
  -Source37: openpkg.com.pgp
  -Source38: openpkg.net.pgp
  -Source39: openpkg.org.pgp
  -Source40: openpkg.pod
  -Source41: openpkg.sh
  -Source42: openssl.patch
  -Source43: perl.patch
  -Source44: pod2man.sh
  -Source45: rc
  -Source46: rc.8
  -Source47: rc.conf
  -Source48: rc.func
  -Source49: rc.openpkg
  -Source50: rc.pod
  -Source51: release.8
  -Source52: release.pod
  -Source53: release.sh
  -Source54: root.README
  -Source55: rpm-config.8
  -Source56: rpm-config.pod
  -Source57: rpm-config.sh
  -Source58: rpm.patch.bugfix
  -Source59: rpm.patch.feature
  -Source60: rpm.patch.porting
  -Source61: rpm.patch.regen
  -Source62: rpmdb
  -Source63: rpmmacros
  -Source64: rpmpopt
  -Source65: rpmrc
  -Source66: rpmtool
  -Source67: rpmtool.8
  -Source68: rpmtool.pod
  -Source69: shtool
  -Source70: tar.patch
  -Source71: uuid.8

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY

2006-12-06 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:   06-Dec-2006 12:22:20
  Branch: HEAD Handle: 2006120611222000

  Modified files:
openpkg-src/openpkg HISTORY

  Log:
fix typo

  Summary:
RevisionChanges Path
1.406   +1  -1  openpkg-src/openpkg/HISTORY
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.405 -r1.406 HISTORY
  --- openpkg-src/openpkg/HISTORY   6 Dec 2006 11:19:25 -   1.405
  +++ openpkg-src/openpkg/HISTORY   6 Dec 2006 11:22:20 -   1.406
  @@ -6,7 +6,7 @@
   20061206 enhance openpkg release robustness when config file defines same 
value repeatedly
   20061205 skip build of irrelevant parts of the GNU tar distribution
   20061129 upgrade to GNU gzip 1.3.6
  -20061129 ajust wordings in package class hints according to current 
classification
  +20061129 adjust wordings in package class hints according to current 
classification
   20061114 upgrade to openpkg-tools 1.1.1
   20061114 provide %{l_miniperl} and %{l_openssl} macros
   20061112 install zlib's zconf.h header as it is required by zlib.h
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY bash.patch

2006-12-06 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:   06-Dec-2006 13:57:02
  Branch: HEAD Handle: 2006120612570100

  Modified files:
openpkg-src/openpkg HISTORY bash.patch

  Log:
apply the GNU Bash 3.2 upstream patches 001-005

  Summary:
RevisionChanges Path
1.407   +2  -0  openpkg-src/openpkg/HISTORY
1.12+254 -6 openpkg-src/openpkg/bash.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.406 -r1.407 HISTORY
  --- openpkg-src/openpkg/HISTORY   6 Dec 2006 11:22:20 -   1.406
  +++ openpkg-src/openpkg/HISTORY   6 Dec 2006 12:57:01 -   1.407
  @@ -2,6 +2,8 @@
   2006
   
   
  +20061206  RELEASE AS PART OF OPENPKG 2.20061206 ***
  +20061206 apply the GNU Bash 3.2 upstream patches 001-005
   20061206 switch GNU gzip from pre-patched OpenPKG tarball to pristine 
upstream tarball plus OpenPKG update tarball
   20061206 enhance openpkg release robustness when config file defines same 
value repeatedly
   20061205 skip build of irrelevant parts of the GNU tar distribution
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/bash.patch
  
  $ cvs diff -u -r1.11 -r1.12 bash.patch
  --- openpkg-src/openpkg/bash.patch11 Oct 2006 16:11:48 -  1.11
  +++ openpkg-src/openpkg/bash.patch6 Dec 2006 12:57:01 -   1.12
  @@ -74,18 +74,266 @@
   
   -
   
  -Accumulated vendor patches Bash 3.2 001-XXX
  +Accumulated vendor patches Bash 3.2 001-005
  +
   Generated via:
   
  -$ cat bash32-* | patch -p0 -Vt -b
  +$ gunzip bash-3.2.tar.gz | tar xf -
  +$ pushd bash-3.2
  +$ cat bash32-[0-9]* | patch -p0 -Vt -b
   $ shtool move -e '*.~1~' '%1.orig'
  +$ pushd /tmp
  +$ curl -O ftp://ftp.gnu.org/gnu/bison/bison-1.28.tar.gz
  +$ cd bison-1.28
  +$ ./configure --prefix=/tmp/bison
  +$ make
  +$ make install
  +$ popd
   $ mv y.tab.c y.tab.c.orig
   $ mv y.tab.h y.tab.h.orig
   $ /tmp/bison/bin/bison -y -d parse.y
  +$ rm -rf /tmp/bison /tmp/bison-1.28 /tmp/bison-1.28.tar.gz
   $ shtool subst -b.dummy \
  -  -e 's;parse\.y;/usr/src/local/chet/src/bash/src/parse.y;g' \
  +  -e 's;parse\.y;/Users/chet/src/bash/src/parse.y;g' \
 -e 's;/tmp/bison/share/bison\.simple;/usr/share/bison.simple;g' y.tab.c
  -$ svs diff
  -
  -[CURRENTLY NONE]
  +$ svs diff /tmp/bash.patch
  +$ popd
  +$ rm -rf bash-3.2
   
  +Index: parse.y
  +--- parse.y.orig 2006-09-19 22:37:21 +0200
   parse.y  2006-12-06 13:32:45 +0100
  +@@ -1029,6 +1029,7 @@
  + #define PST_CMDTOKEN0x1000  /* command token OK - unused */
  + #define PST_COMPASSIGN  0x2000  /* parsing x=(...) compound 
assignment */
  + #define PST_ASSIGNOK0x4000  /* assignment statement ok in 
this context */
  ++#define PST_REGEXP  0x8000  /* parsing an ERE/BRE as a single word 
*/
  + 
  + /* Initial size to allocate for tokens, and the
  +amount to grow them by. */
  +@@ -2591,6 +2592,9 @@
  +   return (character);
  + }
  + 
  ++  if (parser_state  PST_REGEXP)
  ++goto tokword;
  ++
  +   /* Shell meta-characters. */
  +   if MBTEST(shellmeta (character)  ((parser_state  PST_DBLPAREN) == 0))
  + {
  +@@ -2698,6 +2702,7 @@
  +   if MBTEST(character == '-'  (last_read_token == LESS_AND || 
last_read_token == GREATER_AND))
  + return (character);
  + 
  ++tokword:
  +   /* Okay, if we got this far, we have to read a word.  Read one,
  +  and then check it against the known ones. */
  +   result = read_token_word (character);
  +@@ -2735,7 +2740,7 @@
  + /* itrace(parse_matched_pair: open = %c close = %c, open, close); */
  +   count = 1;
  +   pass_next_character = backq_backslash = was_dollar = in_comment = 0;
  +-  check_comment = (flags  P_COMMAND)  qc != '\''  qc != ''  (flags 
 P_DQUOTE) == 0;
  ++  check_comment = (flags  P_COMMAND)  qc != '`'  qc != '\''  qc != 
''  (flags  P_DQUOTE) == 0;
  + 
  +   /* RFLAGS is the set of flags we want to pass to recursive calls. */
  +   rflags = (qc == '') ? P_DQUOTE : (flags  P_DQUOTE);
  +@@ -3202,8 +3207,11 @@
  +   if (tok == WORD  test_binop (yylval.word-word))
  + op = yylval.word;
  + #if defined (COND_REGEXP)
  +-  else if (tok == WORD  STREQ (yylval.word-word,=~))
  +-op = yylval.word;
  ++  else if (tok == WORD  STREQ (yylval.word-word, =~))
  ++{
  ++  op = yylval.word;
  ++  parser_state |= 

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec tar.patch ope...

2006-12-05 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   05-Dec-2006 13:27:46
  Branch: HEAD Handle: 2006120512274501

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec tar.patch
openpkg-src/tar tar.patch tar.spec

  Log:
skip build of irrelevant parts of the GNU tar distribution

  Summary:
RevisionChanges Path
1.403   +1  -0  openpkg-src/openpkg/HISTORY
1.549   +1  -1  openpkg-src/openpkg/openpkg.spec
1.7 +12 -11 openpkg-src/openpkg/tar.patch
1.15+12 -11 openpkg-src/tar/tar.patch
1.56+1  -1  openpkg-src/tar/tar.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.402 -r1.403 HISTORY
  --- openpkg-src/openpkg/HISTORY   29 Nov 2006 17:14:15 -  1.402
  +++ openpkg-src/openpkg/HISTORY   5 Dec 2006 12:27:45 -   1.403
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061205 skip build of irrelevant parts of the GNU tar distribution
   20061129 upgrade to GNU gzip 1.3.6
   20061129 ajust wordings in package class hints according to current 
classification
   20061114 upgrade to openpkg-tools 1.1.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.548 -r1.549 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  29 Nov 2006 17:14:16 -  1.548
  +++ openpkg-src/openpkg/openpkg.spec  5 Dec 2006 12:27:45 -   1.549
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061129
  +%define   V_openpkg  20061205
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/tar.patch
  
  $ cvs diff -u -r1.6 -r1.7 tar.patch
  --- openpkg-src/openpkg/tar.patch 22 Oct 2006 11:11:49 -  1.6
  +++ openpkg-src/openpkg/tar.patch 5 Dec 2006 12:27:45 -   1.7
  @@ -1,3 +1,15 @@
  +Index: Makefile.in
  +--- Makefile.in.orig 2006-10-21 17:41:31 +0200
   Makefile.in  2006-12-05 10:09:24 +0100
  +@@ -310,7 +310,7 @@
  + target_alias = @target_alias@
  + ACLOCAL_AMFLAGS = -I m4
  + EXTRA_DIST = ChangeLog.1 PORTS
  +-SUBDIRS = doc lib rmt src scripts po tests
  ++SUBDIRS = doc lib src
  + all: config.h
  + $(MAKE) $(AM_MAKEFLAGS) all-recursive
  + 
   Index: lib/argp-help.c
   --- lib/argp-help.c.orig 2006-09-12 10:59:04 +0200
   +++ lib/argp-help.c  2006-10-22 11:35:12 +0200
  @@ -20,17 +32,6 @@
until_short (const struct argp_option *opt, const struct argp_option *real,
 const char *domain, void *cookie)
{
  -Index: rmt/rmt.c
   rmt/rmt.c.orig   2006-09-27 10:54:46 +0200
  -+++ rmt/rmt.c2006-10-22 11:35:12 +0200
  -@@ -43,6 +43,7 @@
  - #include obstack.h
  - #include getopt.h
  - #include sys/socket.h
  -+#include locale.h
  - 
  - #ifndef EXIT_FAILURE
  - # define EXIT_FAILURE 1
   Index: src/compare.c
   --- src/compare.c.orig   2006-03-20 10:23:29 +0100
   +++ src/compare.c2006-10-22 11:36:29 +0200
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/tar/tar.patch
  
  $ cvs diff -u -r1.14 -r1.15 tar.patch
  --- openpkg-src/tar/tar.patch 22 Oct 2006 09:48:40 -  1.14
  +++ openpkg-src/tar/tar.patch 5 Dec 2006 12:27:46 -   1.15
  @@ -1,3 +1,15 @@
  +Index: Makefile.in
  +--- Makefile.in.orig 2006-10-21 17:41:31 +0200
   Makefile.in  2006-12-05 10:09:24 +0100
  +@@ -310,7 +310,7 @@
  + target_alias = @target_alias@
  + ACLOCAL_AMFLAGS = -I m4
  + EXTRA_DIST = ChangeLog.1 PORTS
  +-SUBDIRS = doc lib rmt src scripts po tests
  ++SUBDIRS = doc lib src
  + all: config.h
  + $(MAKE) $(AM_MAKEFLAGS) all-recursive
  + 
   Index: lib/argp-help.c
   --- lib/argp-help.c.orig 2006-09-12 10:59:04 +0200
   +++ lib/argp-help.c  2006-10-22 11:35:12 +0200
  @@ -20,17 +32,6 @@
until_short (const struct argp_option *opt, const struct argp_option *real,
 const char *domain, void *cookie)
{
  -Index: rmt/rmt.c
   rmt/rmt.c.orig   2006-09-27 10:54:46 +0200
  -+++ rmt/rmt.c2006-10-22 11:35:12 +0200
  -@@ -43,6 +43,7 @@
  - #include obstack.h
  - #include getopt.h
  - #include sys/socket.h
  -+#include locale.h
  - 
  - #ifndef EXIT_FAILURE
  - # define EXIT_FAILURE 1
   Index: src/compare.c
   --- src/compare.c.orig   

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpmtool

2006-11-29 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:   29-Nov-2006 11:36:43
  Branch: HEAD Handle: 2006112910364201

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpmtool

  Log:
ajust wordings in package class hints according to current
classification (where especially PLUS is of a better grade than in the
past)

  Summary:
RevisionChanges Path
1.401   +1  -0  openpkg-src/openpkg/HISTORY
1.547   +1  -1  openpkg-src/openpkg/openpkg.spec
1.49+13 -12 openpkg-src/openpkg/rpmtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.400 -r1.401 HISTORY
  --- openpkg-src/openpkg/HISTORY   14 Nov 2006 16:13:00 -  1.400
  +++ openpkg-src/openpkg/HISTORY   29 Nov 2006 10:36:42 -  1.401
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061129 ajust wordings in package class hints according to current 
classification
   20061114 upgrade to openpkg-tools 1.1.1
   20061114 provide %{l_miniperl} and %{l_openssl} macros
   20061112 install zlib's zconf.h header as it is required by zlib.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.546 -r1.547 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  14 Nov 2006 16:13:00 -  1.546
  +++ openpkg-src/openpkg/openpkg.spec  29 Nov 2006 10:36:42 -  1.547
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061114
  +%define   V_openpkg  20061129
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool
  
  $ cvs diff -u -r1.48 -r1.49 rpmtool
  --- openpkg-src/openpkg/rpmtool   26 Oct 2006 19:51:24 -  1.48
  +++ openpkg-src/openpkg/rpmtool   29 Nov 2006 10:36:43 -  1.49
  @@ -1378,34 +1378,35 @@
   #   check package class from within .spec file macro expansion for 
%prep section
   class=$1; shift
   case $class in
  -BASE|CORE )
  +CORE|BASE )
   ;;
   PLUS )
   echo set +x
   ( echo This OpenPKG package is of class PLUS.
  -  echo It is in prerelease state and might be ready for 
release soon.
  -  echo Nevertheless, use it with great care in production 
environments.
  -  echo It might be unstable and break your environment.
  -  echo Only CORE and BASE class packages are production 
grade.
  +  echo This means it is still in extended QUALITY ASSURANCE 
state.
  +  echo Hence it is still NOT ready for careless use.
  +  echo Do not use it in critical production environments.
  +  echo It might be still potentially unstable under 
run-time.
   ) | sh $prog_path msg -r -t notice | sed -e 's;^;echo ;' -e 
's;$;;'
   echo set -x
   ;;
   EVAL )
   echo set +x
   ( echo This OpenPKG package is of class EVAL.
  -  echo It is in evaluation state and still not ready for 
release.
  -  echo Hence, do not use it in production environments.
  -  echo It might be unstable or incompletely packaged.
  -  echo Only CORE and BASE class packages are production 
grade.
  +  echo This means it is still in EVALUATION and QUALITY 
ASSURANCE state.
  +  echo Hence it is still NOT ready for general use.
  +  echo Do not use it in production environments.
  +  echo It might be unstable under run-time or still 
incompletely packaged.
   ) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ;' -e 
's;$;;'
   echo set -x
   ;;
   JUNK )
   echo set +x
   ( echo This OpenPKG package is of class JUNK.
  -  echo It is in development state and still not even ready 
for evaluation.
  -  echo Do not use it at all, as it is definitely unstable 
and incomplete.
  -  echo Only CORE and BASE class packages are production 
grade.
  +  echo This means it is still in DEVELOPMENT 

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY gzip.c openpkg.spec

2006-11-29 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:   29-Nov-2006 18:14:16
  Branch: HEAD Handle: 2006112917141501

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec
  Removed files:
openpkg-src/openpkg gzip.c

  Log:
upgrade to GNU gzip 1.3.6

  Summary:
RevisionChanges Path
1.402   +1  -0  openpkg-src/openpkg/HISTORY
1.4 +0  -1882   openpkg-src/openpkg/gzip.c
1.548   +65 -68 openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.401 -r1.402 HISTORY
  --- openpkg-src/openpkg/HISTORY   29 Nov 2006 10:36:42 -  1.401
  +++ openpkg-src/openpkg/HISTORY   29 Nov 2006 17:14:15 -  1.402
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061129 upgrade to GNU gzip 1.3.6
   20061129 ajust wordings in package class hints according to current 
classification
   20061114 upgrade to openpkg-tools 1.1.1
   20061114 provide %{l_miniperl} and %{l_openssl} macros
  @@ .
  rm -f openpkg-src/openpkg/gzip.c '@@ .'
  Index: openpkg-src/openpkg/gzip.c
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.547 -r1.548 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  29 Nov 2006 10:36:42 -  1.547
  +++ openpkg-src/openpkg/openpkg.spec  29 Nov 2006 17:14:16 -  1.548
  @@ -48,7 +48,7 @@
   %define   V_beecrypt 4.1.2
   %define   V_curl 7.16.0
   %define   V_make 3.81
  -%define   V_gzip 1.3.5
  +%define   V_gzip 1.3.6
   %define   V_patch2.5.9
   %define   V_tar  1.16
   %define   V_bash 3.2
  @@ -75,7 +75,7 @@
   #   list of sources
   Source0:  ftp://ftp.openpkg.org/sources/CPY/openpkg/rpm-%{V_rpm}.tar.gz
   Source1:  ftp://ftp.ossp.org/pkg/lib/uuid/uuid-%{V_uuid}.tar.gz
  -Source2:  ftp://alpha.gnu.org/gnu/gzip/gzip-%{V_gzip}.tar
  +Source2:  
ftp://ftp.openpkg.org/sources/CPY/openpkg/gzip-%{V_gzip}-openpkg.tar
   Source3:  ftp://alpha.gnu.org/gnu/patch/patch-%{V_patch}.tar.gz
   Source4:  ftp://ftp.gnu.org/gnu/tar/tar-%{V_tar}.tar.gz
   Source5:  ftp://ftp.cwru.edu/pub/bash/bash-%{V_bash}.tar.gz
  @@ -85,69 +85,68 @@
   Source9:  http://curl.haxx.se/download/curl-%{V_curl}.tar.gz
   Source10: 
http://switch.dl.sourceforge.net/beecrypt/beecrypt-%{V_beecrypt}.tar.gz
   Source11: http://www.zlib.net/zlib-%{V_zlib}.tar.gz
  -Source12: HISTORY
  -Source13: README
  -Source14: aux.prereq.sh
  -Source15: aux.usrgrp.sh
  -Source16: aux.wrapbin.sh
  -Source17: aux.wrapsrc.sh
  -Source18: bash.patch
  -Source19: beecrypt.patch
  -Source20: dot.bash_login
  -Source21: dot.bashrc
  -Source22: dot.lsyncrc
  -Source23: gzip.c
  -Source24: local.README
  -Source25: lsync
  -Source26: lsync.8
  -Source27: lsync.pod
  -Source28: make.patch
  -Source29: install.sh
  -Source30: man.sh
  -Source31: openpkg.1
  -Source32: openpkg.boot
  -Source33: openpkg.org.pgp
  -Source34: openpkg.pod
  -Source35: openpkg.sh
  -Source36: pod2man.sh
  -Source37: rc
  -Source38: rc.8
  -Source39: rc.conf
  -Source40: rc.func
  -Source41: rc.openpkg
  -Source42: rc.pod
  -Source43: root.README
  -Source44: rpm-config.8
  -Source45: rpm-config.pod
  -Source46: rpm-config.sh
  -Source47: rpm.patch.bugfix
  -Source48: rpm.patch.feature
  -Source49: rpm.patch.porting
  -Source50: rpm.patch.regen
  -Source51: rpmdb
  -Source52: rpmmacros
  -Source53: rpmpopt
  -Source54: rpmrc
  -Source55: rpmtool
  -Source56: rpmtool.8
  -Source57: rpmtool.pod
  -Source58: shtool
  -Source59: tar.patch
  -Source60: uuid.8
  -Source61: uuid.pod
  -Source62: uuid.sh
  -Source63: 
ftp://ftp.openpkg.org/sources/CPY/openpkg-registry/openpkg-registry-%{V_registry}.tar.gz
  -Source64: 
ftp://ftp.openpkg.org/sources/CPY/openpkg-tools/openpkg-tools-%{V_tools}.tar.gz
  -Source65: 
ftp://ftp.openpkg.org/sources/CPY/perl/perl-%{V_perl}-mini.tar.gz
  -Source66: ftp://ftp.openssl.org/source/openssl-%{V_openssl}.tar.gz
  -Source67: perl.patch
  -Source68: openssl.patch
  -Source69: release.sh
  -Source70: 

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpmmacros

2006-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:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   14-Nov-2006 09:33:30
  Branch: HEAD Handle: 2006111408332900

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpmmacros

  Log:
provide %{l_miniperl} and %{l_openssl} macros

  Summary:
RevisionChanges Path
1.399   +1  -0  openpkg-src/openpkg/HISTORY
1.545   +1  -1  openpkg-src/openpkg/openpkg.spec
1.80+2  -0  openpkg-src/openpkg/rpmmacros
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.398 -r1.399 HISTORY
  --- openpkg-src/openpkg/HISTORY   12 Nov 2006 21:01:02 -  1.398
  +++ openpkg-src/openpkg/HISTORY   14 Nov 2006 08:33:29 -  1.399
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061114 provide %{l_miniperl} and %{l_openssl} macros
   20061112 install zlib's zconf.h header as it is required by zlib.h
   20061030 upgrade to cURL 7.16.0
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.544 -r1.545 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  12 Nov 2006 21:01:02 -  1.544
  +++ openpkg-src/openpkg/openpkg.spec  14 Nov 2006 08:33:29 -  1.545
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061112
  +%define   V_openpkg  20061114
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmmacros
  
  $ cvs diff -u -r1.79 -r1.80 rpmmacros
  --- openpkg-src/openpkg/rpmmacros 13 Oct 2006 19:48:13 -  1.79
  +++ openpkg-src/openpkg/rpmmacros 14 Nov 2006 08:33:29 -  1.80
  @@ -263,6 +263,8 @@
   %l_flex  %{l_tool_locate flex flex}
   %l_bison %{l_tool_locate bisonbison}
   %l_perl  %{l_tool_locate perl perl}
  +%l_miniperl  %{l_tool_locate miniperl miniperl}
  +%l_openssl   %{l_tool_locate openssl  openssl}
   %l_xmkmf %{l_tool_locate xmkmfxmkmf}
   %l_vcheck%{l_tool_locate vcheck   vcheck}
   
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-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:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   14-Nov-2006 17:13:01
  Branch: HEAD Handle: 200611141613

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to openpkg-tools 1.1.1

  Summary:
RevisionChanges Path
1.400   +1  -0  openpkg-src/openpkg/HISTORY
1.546   +1  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.399 -r1.400 HISTORY
  --- openpkg-src/openpkg/HISTORY   14 Nov 2006 08:33:29 -  1.399
  +++ openpkg-src/openpkg/HISTORY   14 Nov 2006 16:13:00 -  1.400
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061114 upgrade to openpkg-tools 1.1.1
   20061114 provide %{l_miniperl} and %{l_openssl} macros
   20061112 install zlib's zconf.h header as it is required by zlib.h
   20061030 upgrade to cURL 7.16.0
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.545 -r1.546 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  14 Nov 2006 08:33:29 -  1.545
  +++ openpkg-src/openpkg/openpkg.spec  14 Nov 2006 16:13:00 -  1.546
  @@ -57,7 +57,7 @@
   %define   V_registry 1.0.1
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools1.1.0
  +%define   V_tools1.1.1
   
   #   package information
   Name: openpkg
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-11-12 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:   12-Nov-2006 22:01:03
  Branch: HEAD Handle: 2006111221010200

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
install zlib's zconf.h header as it is required by zlib.h

  Summary:
RevisionChanges Path
1.398   +1  -0  openpkg-src/openpkg/HISTORY
1.544   +3  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.397 -r1.398 HISTORY
  --- openpkg-src/openpkg/HISTORY   30 Oct 2006 18:30:22 -  1.397
  +++ openpkg-src/openpkg/HISTORY   12 Nov 2006 21:01:02 -  1.398
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061112 install zlib's zconf.h header as it is required by zlib.h
   20061030 upgrade to cURL 7.16.0
   
   20061030  RELEASE AS PART OF OPENPKG 2.20061030 ***
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.543 -r1.544 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  30 Oct 2006 18:30:22 -  1.543
  +++ openpkg-src/openpkg/openpkg.spec  12 Nov 2006 21:01:02 -  1.544
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061030
  +%define   V_openpkg  20061112
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -1056,6 +1056,7 @@
   #   add additional development files
   cp rpm-%{V_rpm}/misc/glob.h $RPM_BUILD_ROOT%{l_prefix}/include/rpm/
   cp zlib-%{V_zlib}/zlib.h $RPM_BUILD_ROOT%{l_prefix}/include/rpm/
  +cp zlib-%{V_zlib}/zconf.h $RPM_BUILD_ROOT%{l_prefix}/include/rpm/
   cp zlib-%{V_zlib}/libz.a $RPM_BUILD_ROOT%{l_prefix}/lib/librpmz.a
   cp bzip2-%{V_bzip2}/bzlib.h $RPM_BUILD_ROOT%{l_prefix}/include/rpm/
   cp bzip2-%{V_bzip2}/libbz2.a $RPM_BUILD_ROOT%{l_prefix}/lib/librpmbz2.a
  @@ -1428,6 +1429,7 @@
   %{l_prefix}/include/openpkg/rpm/stringbuf.h
   %{l_prefix}/include/openpkg/rpm/ugid.h
   %{l_prefix}/include/openpkg/rpm/zlib.h
  +%{l_prefix}/include/openpkg/rpm/zconf.h
   %dir %{l_prefix}/info
   %dir %{l_prefix}/lib
   %dir %{l_prefix}/lib/openpkg
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY README openpkg.com.pgp ope...

2006-10-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-Oct-2006 09:13:49
  Branch: HEAD Handle: 2006103008134800

  Added files:
openpkg-src/openpkg openpkg.com.pgp openpkg.net.pgp openpkg.org.pgp
  Modified files:
openpkg-src/openpkg HISTORY README openpkg.spec rpmdb
  Removed files:
openpkg-src/openpkg openpkg.pgp

  Log:
Switch from a single OpenPGP key openpkg.pgp (.org) to three
openpkg.{org,com,net}.pgp keys in order to give every OpenPKG
organisation their own OpenPGP key.

  Summary:
RevisionChanges Path
1.395   +2  -0  openpkg-src/openpkg/HISTORY
1.25+3  -1  openpkg-src/openpkg/README
1.1 +33 -0  openpkg-src/openpkg/openpkg.com.pgp
1.1 +33 -0  openpkg-src/openpkg/openpkg.net.pgp
1.1 +32 -0  openpkg-src/openpkg/openpkg.org.pgp
1.3 +0  -29 openpkg-src/openpkg/openpkg.pgp
1.541   +13 -5  openpkg-src/openpkg/openpkg.spec
1.9 +12 -6  openpkg-src/openpkg/rpmdb
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.394 -r1.395 HISTORY
  --- openpkg-src/openpkg/HISTORY   26 Oct 2006 19:51:23 -  1.394
  +++ openpkg-src/openpkg/HISTORY   30 Oct 2006 08:13:48 -  1.395
  @@ -2,7 +2,9 @@
   2006
   
   
  +20061030 switch from a single OpenPGP key openpkg.pgp (.org) to three 
openpkg.{org,com,net}.pgp keys
   20061026 fix number of CPU detection in rpmtool to support recent FreeBSDs  
NetBSDs
  +
   20061024  RELEASE AS PART OF OPENPKG 2.20061024 ***
   20061024 try to workaround GNU tar build problems
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/README
  
  $ cvs diff -u -r1.24 -r1.25 README
  --- openpkg-src/openpkg/README25 Aug 2006 08:31:55 -  1.24
  +++ openpkg-src/openpkg/README30 Oct 2006 08:13:48 -  1.25
  @@ -98,7 +98,9 @@
 man.sh .. helper script for openpkg man command
 install.sh .. helper script for openpkg install command
   
  -  openpkg.pgp . the OpenPGP public key of The OpenPKG Project
  +  openpkg.org.pgp . the OpenPGP public key OpenPKG [EMAIL 
PROTECTED]
  +  openpkg.com.pgp . the OpenPGP public key OpenPKG GmbH [EMAIL 
PROTECTED]
  +  openpkg.net.pgp . the OpenPGP public key OpenPKG Foundation e.V. 
[EMAIL PROTECTED]
   
 The Bootstrapping Procedure
 ---
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.com.pgp
  
  $ cvs diff -u -r0 -r1.1 openpkg.com.pgp
  --- /dev/null 2006-10-30 09:12:34 +0100
  +++ openpkg.com.pgp   2006-10-30 09:13:49 +0100
  @@ -0,0 +1,33 @@
  +-BEGIN PGP PUBLIC KEY BLOCK-
  +Comment: OpenPKG GmbH [EMAIL PROTECTED]
  +Comment: http://openpkg.com/openpkg.com.pgp
  +Comment: gpg-pubkey-61b7ae34-4544a6af
  +Comment: 7D12 1A8F C05D C18A 4329 E9EF 6704 2EC9 61B7 AE34
  +
  +mQGiBEVEpq8RBAD0cBTeK8ukoS5/GlbKbBgs7SkZBMXBvUZkh/qKYqqVtciw9tfj
  +ifbRmY/ug8AU+BDgFQdoJN5HcM5c0YyQjs1RhstNGm0qQITfF6byh78F/pqdxjOd
  +MKDMjgYHRPojjH2dElqtH5gFhpuyp12Ueg/wN9g9pk8EjTp9/qvTtv3ZpwCg29Hu
  +I7CLKuwiXfpTbZTqWerL+ikD/ixPat8L5lnVpz3UFV0Mk8tkDg9odnKtdyRd11WK
  +PyZ3VL01XTb3E1NQS6jbOycDi8GUwN92QCZ4NRrk7lA0mRtSjtxOhrhdSPgbDIli
  +s5lHtZzeUKWMSfz8GY5mRs0eCz7zV0VscUW5GpJUKtWiHiOddoNQdcBP5L8JN888
  +wd3yA/9PGzwK752HMTELlpUExaQoc7HiCkhRNJ8271NknkyrWjVAgLNWvQ/7hTiM
  +Ns6Pmk7Nlla9hRkorxQ6MB/h7ZmQmLmqJlVcoXe2nAADdD30/p+o9BL15FEei0Ci
  +o7349iKh1qlieeSM0vmHL5Y2drshZEWSggCPHQHtd5rxWrkXUrQiT3BlblBLRyBH
  +bWJIIDxvcGVucGtnQG9wZW5wa2cuY29tPohhBBMRAgAhBQJFRKavAhsDBwsJCAcD
  +AgEEFQIIAwQWAgMBAh4BAheAAAoJEGcELslht640NYcAoL0yn8Ofk+B8cRFTY2CL
  +j1uIDiM8AKCQieJH/AX1UuQ505cKFGwGtYbVAbkCDQRFRKa3EAgAgXE7Gx0q+OH1
  +6U2ZDDPsLRe1WwSVaXvS3Ra1ee2Jq4Tu/uja36r8IR/7JfBiG+qGvcrKdIsdNFhh
  +OL0Dd8O8BwMPAAvzUT35VC29lHzewPHnquSF7X7Q8Xsr+mwGLHPS8brX56XWmWtf
  +1L1Ulx+KbcM/d/B+vssxSB3FsIvK+C666wiX4oZWbxcA3sC66Jxs1tuo1jWDxcGD
  +hb63FMdWsZODBNOqlKrOCfT/PMaKVftG5lpKFd6H60pIbx0OagqnFML6FeHGy1O7
  +PkghOgbX+NfuH30dJKFYdwpZEcsaSTI9vedcjg2SL9frQyW8QIrK5zbCZFD9lPXP
  +Cl+XM0APGwADBgf/Yjj0IUSNJ4kYq1/Ofa+TvC4hVRpvQAHq+81LoN+XDXerAtmc
  +okr3fgHqMJypVfnGt5p+q9LvyCyKThOIOcvRfPeN49vnbdgIgJADmOmGQ35naF4Y
  +6LIuqgugVr16hMJqJn3vZXdJptt0am2oZyy0lpOGOlm5A7nwpJcD08ywOfcWXPrX
  +ybv08mjl8WMAZZdwdP/WStw3sDmsBl8dMPoAGnbTzzu2TeNC1W0373lonj6cdkgl
  

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

2006-10-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-Oct-2006 19:30:23
  Branch: HEAD Handle: 2006103018302200

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to cURL 7.16.0

  Summary:
RevisionChanges Path
1.397   +2  -0  openpkg-src/openpkg/HISTORY
1.543   +1  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.396 -r1.397 HISTORY
  --- openpkg-src/openpkg/HISTORY   30 Oct 2006 10:08:10 -  1.396
  +++ openpkg-src/openpkg/HISTORY   30 Oct 2006 18:30:22 -  1.397
  @@ -2,6 +2,8 @@
   2006
   
   
  +20061030 upgrade to cURL 7.16.0
  +
   20061030  RELEASE AS PART OF OPENPKG 2.20061030 ***
   20061030 upgrade to openpkg-tools 1.1.0
   20061030 switch from a single OpenPGP key openpkg.pgp (.org) to three 
openpkg.{org,com,net}.pgp keys
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.542 -r1.543 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  30 Oct 2006 10:08:10 -  1.542
  +++ openpkg-src/openpkg/openpkg.spec  30 Oct 2006 18:30:22 -  1.543
  @@ -46,7 +46,7 @@
   %define   V_zlib 1.2.3
   %define   V_bzip21.0.3
   %define   V_beecrypt 4.1.2
  -%define   V_curl 7.15.5
  +%define   V_curl 7.16.0
   %define   V_make 3.81
   %define   V_gzip 1.3.5
   %define   V_patch2.5.9
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpmtool

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

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   26-Oct-2006 21:51:25
  Branch: HEAD Handle: 2006102620512301

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpmtool

  Log:
fix number of CPU detection in rpmtool to support recent FreeBSDs 
NetBSDs

  Summary:
RevisionChanges Path
1.394   +1  -0  openpkg-src/openpkg/HISTORY
1.540   +1  -1  openpkg-src/openpkg/openpkg.spec
1.48+2  -2  openpkg-src/openpkg/rpmtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.393 -r1.394 HISTORY
  --- openpkg-src/openpkg/HISTORY   24 Oct 2006 08:36:29 -  1.393
  +++ openpkg-src/openpkg/HISTORY   26 Oct 2006 19:51:23 -  1.394
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061026 fix number of CPU detection in rpmtool to support recent FreeBSDs  
NetBSDs
   20061024  RELEASE AS PART OF OPENPKG 2.20061024 ***
   20061024 try to workaround GNU tar build problems
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.539 -r1.540 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  24 Oct 2006 08:36:29 -  1.539
  +++ openpkg-src/openpkg/openpkg.spec  26 Oct 2006 19:51:23 -  1.540
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061024
  +%define   V_openpkg  20061026
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmtool
  
  $ cvs diff -u -r1.47 -r1.48 rpmtool
  --- openpkg-src/openpkg/rpmtool   13 May 2006 17:21:28 -  1.47
  +++ openpkg-src/openpkg/rpmtool   26 Oct 2006 19:51:24 -  1.48
  @@ -363,7 +363,7 @@
   fi
   fi
   ;;
  -*:FreeBSD:[45].*:* )
  +*:FreeBSD:[4567].*:* )
   n=`/sbin/sysctl hw.ncpu | awk '{ print $2; }'`
   if [ .$n != . ]; then
   if [ $n -gt 1 ]; then
  @@ -375,7 +375,7 @@
   fi
   fi
   ;;
  -*:NetBSD:1.[56]*:* )
  +*:NetBSD:1.[56]*:* | *:NetBSD:[234].*:* )
   n=`/sbin/sysctl hw.ncpu | awk '{ print $3; }'`
   if [ .$n != . ]; then
   if [ $n -gt 1 ]; then
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-10-24 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:   24-Oct-2006 10:36:30
  Branch: HEAD Handle: 2006102409362900

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
try to workaround GNU tar build problems

  Summary:
RevisionChanges Path
1.393   +4  -1  openpkg-src/openpkg/HISTORY
1.539   +2  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.392 -r1.393 HISTORY
  --- openpkg-src/openpkg/HISTORY   23 Oct 2006 07:53:31 -  1.392
  +++ openpkg-src/openpkg/HISTORY   24 Oct 2006 08:36:29 -  1.393
  @@ -2,7 +2,10 @@
   2006
   
   
  -20061018  RELEASE AS PART OF OPENPKG 2.20061023 ***
  +20061024  RELEASE AS PART OF OPENPKG 2.20061024 ***
  +20061024 try to workaround GNU tar build problems
  +
  +20061023  RELEASE AS PART OF OPENPKG 2.20061023 ***
   20061023 upgrade to openpkg-tools 1.0.1
   20061022 upgrade to openpkg-registry 1.0.1
   20061022 upgrade to GNU tar 1.16
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.538 -r1.539 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  23 Oct 2006 07:48:05 -  1.538
  +++ openpkg-src/openpkg/openpkg.spec  24 Oct 2006 08:36:29 -  1.539
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061023
  +%define   V_openpkg  20061024
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -556,6 +556,7 @@
 -e 's;^rm conftest\.sed;rm -f conftest.sed;' \
 configure
 CC=${l_cc} \
  +  MAKEINFO=true \
 GREP=grep \
 ./configure \
 --cache-file=./config.cache \
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-10-23 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:   23-Oct-2006 09:48:06
  Branch: HEAD Handle: 2006102308480500

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to openpkg-tools 1.0.1

  Summary:
RevisionChanges Path
1.391   +2  -1  openpkg-src/openpkg/HISTORY
1.538   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.390 -r1.391 HISTORY
  --- openpkg-src/openpkg/HISTORY   22 Oct 2006 17:39:18 -  1.390
  +++ openpkg-src/openpkg/HISTORY   23 Oct 2006 07:48:05 -  1.391
  @@ -2,7 +2,8 @@
   2006
   
   
  -20061008 upgrade to openpkg-registry 1.0.1
  +20061023 upgrade to openpkg-tools 1.0.1
  +20061022 upgrade to openpkg-registry 1.0.1
   20061022 upgrade to GNU tar 1.16
   20061022 fix License header of openpkg package
   
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.537 -r1.538 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  22 Oct 2006 17:39:18 -  1.537
  +++ openpkg-src/openpkg/openpkg.spec  23 Oct 2006 07:48:05 -  1.538
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061022
  +%define   V_openpkg  20061023
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -57,7 +57,7 @@
   %define   V_registry 1.0.1
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools1.0.0
  +%define   V_tools1.0.1
   
   #   package information
   Name: openpkg
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY

2006-10-23 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:   23-Oct-2006 09:53:32
  Branch: HEAD Handle: 2006102308533100

  Modified files:
openpkg-src/openpkg HISTORY

  Log:
remember MFC

  Summary:
RevisionChanges Path
1.392   +1  -0  openpkg-src/openpkg/HISTORY
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.391 -r1.392 HISTORY
  --- openpkg-src/openpkg/HISTORY   23 Oct 2006 07:48:05 -  1.391
  +++ openpkg-src/openpkg/HISTORY   23 Oct 2006 07:53:31 -  1.392
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061018  RELEASE AS PART OF OPENPKG 2.20061023 ***
   20061023 upgrade to openpkg-tools 1.0.1
   20061022 upgrade to openpkg-registry 1.0.1
   20061022 upgrade to GNU tar 1.16
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-10-22 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:   22-Oct-2006 13:11:49
  Branch: HEAD Handle: 2006102212114900

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec tar.patch

  Log:
- upgrade to GNU tar 1.16
- fix License header of openpkg package

  Summary:
RevisionChanges Path
1.389   +5  -1  openpkg-src/openpkg/HISTORY
1.536   +4  -3  openpkg-src/openpkg/openpkg.spec
1.6 +88 -76 openpkg-src/openpkg/tar.patch
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.388 -r1.389 HISTORY
  --- openpkg-src/openpkg/HISTORY   16 Oct 2006 10:11:53 -  1.388
  +++ openpkg-src/openpkg/HISTORY   22 Oct 2006 11:11:49 -  1.389
  @@ -2,8 +2,12 @@
   2006
   
   
  +20061022 upgrade to GNU tar 1.16
  +20061022 fix License header of openpkg package
  +
  +20061018  RELEASE AS PART OF OPENPKG 2.20061018 ***
   20061016 upgrade to openpkg-tools 1.0.0 with no functional change to 0.8.80
  -20060808 upgrade to openpkg-registry 1.0.0 with no functional change to 0.7.2
  +20061008 upgrade to openpkg-registry 1.0.0 with no functional change to 0.7.2
   20061016 upgrade to openpkg-tools 0.8.80
   20061013 allow %{l_cc} and %{l_cxx} to be set in ~/.rpmmacros to values 
containing spaces
   20061013 new world order for Packager and Distribution headers
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.535 -r1.536 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  16 Oct 2006 10:11:53 -  1.535
  +++ openpkg-src/openpkg/openpkg.spec  22 Oct 2006 11:11:49 -  1.536
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061016
  +%define   V_openpkg  20061022
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -50,7 +50,7 @@
   %define   V_make 3.81
   %define   V_gzip 1.3.5
   %define   V_patch2.5.9
  -%define   V_tar  1.15.1
  +%define   V_tar  1.16
   %define   V_bash 3.2
   %define   V_uuid 1.5.1
   %define   V_config   20060923
  @@ -68,7 +68,7 @@
   Distribution: OpenPKG Community
   Class:CORE
   Group:Bootstrapping
  -License:  GPL
  +License:  MIT/BSD/LGPL/GPL
   Version:  %{V_openpkg}
   Release:  %{V_openpkg}
   
  @@ -556,6 +556,7 @@
 -e 's;^rm conftest\.sed;rm -f conftest.sed;' \
 configure
 CC=${l_cc} \
  +  GREP=grep \
 ./configure \
 --cache-file=./config.cache \
 --prefix=%{l_prefix} \
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/tar.patch
  
  $ cvs diff -u -r1.5 -r1.6 tar.patch
  --- openpkg-src/openpkg/tar.patch 31 Jan 2005 20:45:06 -  1.5
  +++ openpkg-src/openpkg/tar.patch 22 Oct 2006 11:11:49 -  1.6
  @@ -1,18 +1,85 @@
  -Index: src/incremen.c
   src/incremen.c.orig  2004-09-06 13:30:42 +0200
  -+++ src/incremen.c   2004-12-20 19:55:06 +0100
  -@@ -133,6 +133,8 @@
  -   if (! dirp)
  +Index: lib/argp-help.c
  +--- lib/argp-help.c.orig 2006-09-12 10:59:04 +0200
   lib/argp-help.c  2006-10-22 11:35:12 +0200
  +@@ -567,8 +567,7 @@
  +   return val;
  + }
  + 
  +-static inline int
  +-__attribute__ ((always_inline))
  ++static int
  + hol_entry_long_iterate (const struct hol_entry *entry,
  + int (*func)(const struct argp_option *opt,
  + const struct argp_option *real,
  +@@ -592,7 +591,7 @@
  + }
  + 
  + /* Iterator that returns true for the first short option.  */
  +-static inline int
  ++static int
  + until_short (const struct argp_option *opt, const struct argp_option *real,
  +  const char *domain, void *cookie)
  + {
  +Index: rmt/rmt.c
  +--- rmt/rmt.c.orig   2006-09-27 10:54:46 +0200
   rmt/rmt.c2006-10-22 11:35:12 +0200
  +@@ -43,6 +43,7 @@
  + #include obstack.h
  + #include getopt.h
  + #include sys/socket.h
  ++#include locale.h
  + 
  + #ifndef EXIT_FAILURE
  + # define EXIT_FAILURE 1
  +Index: src/compare.c
  +--- src/compare.c.orig   2006-03-20 10:23:29 +0100
   src/compare.c2006-10-22 11:36:29 +0200
  +@@ -295,7 +295,7 @@
  +   size_t len = strlen (current_stat_info.link_name);
  +   char *linkbuf = alloca (len + 1);
  + 
  +-  int status = 

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

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

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   16-Oct-2006 08:36:53
  Branch: HEAD Handle: 2006101607365201

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to openpkg-tools 0.8.80

  Summary:
RevisionChanges Path
1.386   +1  -0  openpkg-src/openpkg/HISTORY
1.533   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.385 -r1.386 HISTORY
  --- openpkg-src/openpkg/HISTORY   14 Oct 2006 09:31:44 -  1.385
  +++ openpkg-src/openpkg/HISTORY   16 Oct 2006 06:36:52 -  1.386
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061016 upgrade to openpkg-tools 0.8.80
   20061013 allow %{l_cc} and %{l_cxx} to be set in ~/.rpmmacros to values 
containing spaces
   20061013 new world order for Packager and Distribution headers
   20061012 remove Alpha and add PPC and AMD64 to rpmrc
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.532 -r1.533 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  13 Oct 2006 17:30:58 -  1.532
  +++ openpkg-src/openpkg/openpkg.spec  16 Oct 2006 06:36:53 -  1.533
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061013
  +%define   V_openpkg  20061016
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -57,7 +57,7 @@
   %define   V_registry 0.7.2
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools0.8.76
  +%define   V_tools0.8.80
   
   #   package information
   Name: openpkg
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-10-16 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   16-Oct-2006 11:14:38
  Branch: HEAD Handle: 2006101610143800

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
modifying package: openpkg-20061016 20061016 again

  Summary:
RevisionChanges Path
1.387   +1  -0  openpkg-src/openpkg/HISTORY
1.534   +1  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.386 -r1.387 HISTORY
  --- openpkg-src/openpkg/HISTORY   16 Oct 2006 06:36:52 -  1.386
  +++ openpkg-src/openpkg/HISTORY   16 Oct 2006 09:14:38 -  1.387
  @@ -2,6 +2,7 @@
   2006
   
   
  +20060808 upgrade to openpkg-registry 1.0.0 with no functional change to 0.7.2
   20061016 upgrade to openpkg-tools 0.8.80
   20061013 allow %{l_cc} and %{l_cxx} to be set in ~/.rpmmacros to values 
containing spaces
   20061013 new world order for Packager and Distribution headers
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.533 -r1.534 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  16 Oct 2006 06:36:53 -  1.533
  +++ openpkg-src/openpkg/openpkg.spec  16 Oct 2006 09:14:38 -  1.534
  @@ -54,7 +54,7 @@
   %define   V_bash 3.2
   %define   V_uuid 1.5.1
   %define   V_config   20060923
  -%define   V_registry 0.7.2
  +%define   V_registry 1.0.0
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
   %define   V_tools0.8.80
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

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

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   16-Oct-2006 12:11:53
  Branch: HEAD Handle: 200610165300

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to openpkg-tools 1.0.0 with no functional change to 0.8.80

  Summary:
RevisionChanges Path
1.388   +1  -0  openpkg-src/openpkg/HISTORY
1.535   +1  -1  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.387 -r1.388 HISTORY
  --- openpkg-src/openpkg/HISTORY   16 Oct 2006 09:14:38 -  1.387
  +++ openpkg-src/openpkg/HISTORY   16 Oct 2006 10:11:53 -  1.388
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061016 upgrade to openpkg-tools 1.0.0 with no functional change to 0.8.80
   20060808 upgrade to openpkg-registry 1.0.0 with no functional change to 0.7.2
   20061016 upgrade to openpkg-tools 0.8.80
   20061013 allow %{l_cc} and %{l_cxx} to be set in ~/.rpmmacros to values 
containing spaces
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.534 -r1.535 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  16 Oct 2006 09:14:38 -  1.534
  +++ openpkg-src/openpkg/openpkg.spec  16 Oct 2006 10:11:53 -  1.535
  @@ -57,7 +57,7 @@
   %define   V_registry 1.0.0
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools0.8.80
  +%define   V_tools1.0.0
   
   #   package information
   Name: openpkg
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY rpmmacros

2006-10-13 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:   13-Oct-2006 21:48:14
  Branch: HEAD Handle: 2006101320481300

  Modified files:
openpkg-src/openpkg HISTORY rpmmacros

  Log:
allow %{l_cc} and %{l_cxx} to be set in ~/.rpmmacros to values
containing spaces

  Summary:
RevisionChanges Path
1.384   +1  -0  openpkg-src/openpkg/HISTORY
1.79+3  -3  openpkg-src/openpkg/rpmmacros
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.383 -r1.384 HISTORY
  --- openpkg-src/openpkg/HISTORY   12 Oct 2006 14:44:24 -  1.383
  +++ openpkg-src/openpkg/HISTORY   13 Oct 2006 19:48:13 -  1.384
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061013 allow %{l_cc} and %{l_cxx} to be set in ~/.rpmmacros to values 
containing spaces
   20061012 remove Alpha and add PPC and AMD64 to rpmrc
   20061011 upgrade to GNU Bash 3.2.0
   20060930 upgrade to openpkg-tools 0.8.76
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmmacros
  
  $ cvs diff -u -r1.78 -r1.79 rpmmacros
  --- openpkg-src/openpkg/rpmmacros 29 Sep 2006 06:54:05 -  1.78
  +++ openpkg-src/openpkg/rpmmacros 13 Oct 2006 19:48:13 -  1.79
  @@ -267,9 +267,9 @@
   %l_vcheck%{l_tool_locate vcheck   vcheck}
   
   #   tool options
  -%l_mflags(O) %(%{l_sane_env}; %{l_rpmtool} mflags %{-O:-O} 
%{l_make})
  -%l_cflags(O) %(%{l_sane_env}; %{l_rpmtool} cflags %{-O:-O} 
%{l_cc})
  -%l_cxxflags(O)   %(%{l_sane_env}; %{l_rpmtool} cflags %{-O:-O} 
%{l_cxx})
  +%l_mflags(O) %(%{l_sane_env}; %{l_rpmtool} mflags %{-O:-O} 
%{l_make})
  +%l_cflags(O) %(%{l_sane_env}; %{l_rpmtool} cflags %{-O:-O} 
%{l_cc})
  +%l_cxxflags(O)   %(%{l_sane_env}; %{l_rpmtool} cflags %{-O:-O} 
%{l_cxx})
   %l_cppflags(i)   %(%{l_sane_env}; %{l_rpmtool} cppflags 
-p%{l_prefix} %{-i:-i} -- %*)
   %l_ldflags() %(%{l_sane_env}; %{l_rpmtool} ldflags  
-p%{l_prefix}  -- %*)
   
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.spec rpmrc

2006-10-12 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:   12-Oct-2006 16:44:24
  Branch: HEAD Handle: 2006101215442400

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpmrc

  Log:
remove Alpha and add PPC and AMD64 to rpmrc

  Summary:
RevisionChanges Path
1.383   +1  -0  openpkg-src/openpkg/HISTORY
1.531   +1  -1  openpkg-src/openpkg/openpkg.spec
1.24+9  -4  openpkg-src/openpkg/rpmrc
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.382 -r1.383 HISTORY
  --- openpkg-src/openpkg/HISTORY   11 Oct 2006 16:11:48 -  1.382
  +++ openpkg-src/openpkg/HISTORY   12 Oct 2006 14:44:24 -  1.383
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061012 remove Alpha and add PPC and AMD64 to rpmrc
   20061011 upgrade to GNU Bash 3.2.0
   20060930 upgrade to openpkg-tools 0.8.76
   20060929 fix error message in openpkg setuid wrapper
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.530 -r1.531 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  11 Oct 2006 16:11:48 -  1.530
  +++ openpkg-src/openpkg/openpkg.spec  12 Oct 2006 14:44:24 -  1.531
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20061011
  +%define   V_openpkg  20061012
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/rpmrc
  
  $ cvs diff -u -r1.23 -r1.24 rpmrc
  --- openpkg-src/openpkg/rpmrc 1 Jan 2006 13:17:53 -   1.23
  +++ openpkg-src/openpkg/rpmrc 12 Oct 2006 14:44:24 -  1.24
  @@ -46,10 +46,10 @@
   arch_compat:ia64:   ia64 ix86 noarch
   buildarch_compat:   ia64:   ia64 ix86 noarch
   
  -#   Compaq Alpha
  -arch_canon: alpha:  alpha 2
  -arch_compat:alpha:  alpha noarch
  -buildarch_compat:   alpha:  alpha noarch
  +#   AMD/Intel AMD64/EM64T
  +arch_canon: amd64:  amd64 2
  +arch_compat:amd64:  amd64 ix86 noarch
  +buildarch_compat:   amd64:  amd64 ix86 noarch
   
   #   Sun SPARC
   arch_canon: sparc:  sparc   3
  @@ -64,6 +64,11 @@
   arch_compat:hppa:   hppa noarch
   buildarch_compat:   hppa:   hppa noarch
   
  +#   IBM PowerPC
  +arch_canon: ppc:ppc 5
  +arch_compat:ppc:ppc noarch
  +buildarch_compat:   ppc:ppc noarch
  +
   #
   #   Operating System Mappings
   #   (currently intentionally left out to avoid any magic)
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-10-11 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:   11-Oct-2006 18:11:49
  Branch: HEAD Handle: 2006101117114800

  Modified files:
openpkg-src/openpkg HISTORY bash.patch openpkg.spec

  Log:
upgrade to GNU Bash 3.2.0

  Summary:
RevisionChanges Path
1.382   +1  -0  openpkg-src/openpkg/HISTORY
1.11+7  -367openpkg-src/openpkg/bash.patch
1.530   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.381 -r1.382 HISTORY
  --- openpkg-src/openpkg/HISTORY   30 Sep 2006 17:43:30 -  1.381
  +++ openpkg-src/openpkg/HISTORY   11 Oct 2006 16:11:48 -  1.382
  @@ -2,6 +2,7 @@
   2006
   
   
  +20061011 upgrade to GNU Bash 3.2.0
   20060930 upgrade to openpkg-tools 0.8.76
   20060929 fix error message in openpkg setuid wrapper
   20060929 make passwd/group lookups more efficient by performing key-based 
lookups instead of full dumps when possible
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/bash.patch
  
  $ cvs diff -u -r1.10 -r1.11 bash.patch
  --- openpkg-src/openpkg/bash.patch6 Mar 2006 22:32:58 -   1.10
  +++ openpkg-src/openpkg/bash.patch11 Oct 2006 16:11:48 -  1.11
  @@ -4,7 +4,7 @@
   Index: doc/bash.1
   --- doc/bash.1.orig  2004-07-12 17:27:08 +0200
   +++ doc/bash.1   2004-07-27 19:47:10 +0200
  -@@ -113,6 +113,12 @@
  +@@ -116,6 +116,12 @@
This option allows the positional parameters to be set
when invoking an interactive shell.
.TP
  @@ -20,51 +20,12 @@
   
   -
   
  -This patch makes sure a signal state variable is declared volatile so
  -it is consistent throughout signal handling. This patch is derived from
  -SuSE Linux.
  -
  -Index: quit.h
   quit.h.orig  2001-09-10 16:08:33 +0200
  -+++ quit.h   2004-07-27 19:47:10 +0200
  -@@ -22,7 +22,7 @@
  - #define _QUIT_H_
  - 
  - /* Non-zero means SIGINT has already ocurred. */
  --extern int interrupt_state;
  -+extern volatile int interrupt_state;
  - 
  - /* Macro to call a great deal.  SIGINT just sets above variable.  When
  -it is safe, put QUIT in the code, and the interrupt will take place. */
  -Index: sig.c
   sig.c.orig   2003-12-19 22:11:35 +0100
  -+++ sig.c2004-07-27 19:47:10 +0200
  -@@ -59,7 +59,7 @@
  - extern int parse_and_execute_level, shell_initialized;
  - 
  - /* Non-zero after SIGINT. */
  --int interrupt_state;
  -+volatile int interrupt_state = 0;
  - 
  - /* The environment at the top-level R-E loop.  We use this in
  -the case of error return. */
  -@@ -71,7 +71,7 @@
  - #endif /* JOB_CONTROL */
  - 
  - /* When non-zero, we throw_to_top_level (). */
  --int interrupt_immediately = 0;
  -+volatile int interrupt_immediately = 0;
  - 
  - static void initialize_shell_signals __P((void));
  - 
  --
  -
   Port to HP-UX 11i and similar less smart platforms.
   
   Index: configure
   --- configure.orig   2004-07-21 22:18:56 +0200
   +++ configure2004-07-27 19:47:10 +0200
  -@@ -1479,6 +1479,7 @@
  +@@ -1517,6 +1517,7 @@
*-beos*)opt_bash_malloc=no ;;   # they say it's suitable
*-cygwin*)  opt_bash_malloc=no ;;   # Cygnus's CYGWIN environment
*-opennt*|*-interix*)   opt_bash_malloc=no ;;   # Interix, now owned by 
Microsoft
  @@ -72,7 +33,7 @@
esac

# memory scrambling on free()
  -@@ -1624,7 +1625,7 @@
  +@@ -1662,7 +1663,7 @@

else
MALLOC_LIB=
  @@ -113,10 +74,10 @@
   
   -
   
  -Accumulated vendor patches Bash 3.1 001-011
  +Accumulated vendor patches Bash 3.2 001-XXX
   Generated via:
   
  -$ cat bash31-* | patch -p0 -Vt -b
  +$ cat bash32-* | patch -p0 -Vt -b
   $ shtool move -e '*.~1~' '%1.orig'
   $ mv y.tab.c y.tab.c.orig
   $ mv y.tab.h y.tab.h.orig
  @@ -126,326 +87,5 @@
 -e 's;/tmp/bison/share/bison\.simple;/usr/share/bison.simple;g' y.tab.c
   $ svs diff
   
  -Index: jobs.c
   jobs.c.orig  2005-11-12 05:13:27 +0100
  -+++ jobs.c   2006-03-06 23:11:10 +0100
  -@@ -619,8 +619,11 @@
  -* once in the parent and once in each child.  This is where
  -* the parent gives it away.
  -*
  -+   * Don't give the terminal away if this shell is an asynchronous
  

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

2006-09-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-Sep-2006 19:43:30
  Branch: HEAD Handle: 2006093018433000

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrade to openpkg-tools 0.8.76

  Summary:
RevisionChanges Path
1.381   +1  -0  openpkg-src/openpkg/HISTORY
1.529   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.380 -r1.381 HISTORY
  --- openpkg-src/openpkg/HISTORY   29 Sep 2006 14:31:22 -  1.380
  +++ openpkg-src/openpkg/HISTORY   30 Sep 2006 17:43:30 -  1.381
  @@ -2,6 +2,7 @@
   2006
   
   
  +20060930 upgrade to openpkg-tools 0.8.76
   20060929 fix error message in openpkg setuid wrapper
   20060929 make passwd/group lookups more efficient by performing key-based 
lookups instead of full dumps when possible
   20060929 upgrade to openpkg-tools 0.8.75
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.528 -r1.529 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  29 Sep 2006 06:54:04 -  1.528
  +++ openpkg-src/openpkg/openpkg.spec  30 Sep 2006 17:43:30 -  1.529
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20060929
  +%define   V_openpkg  20060930
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -57,7 +57,7 @@
   %define   V_registry 0.7.2
   %define   V_perl 5.8.8
   %define   V_openssl  0.9.8d
  -%define   V_tools0.8.75
  +%define   V_tools0.8.76
   
   #   package information
   Name: openpkg
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY aux.usrgrp.sh aux.wrapsrc....

2006-09-29 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:   29-Sep-2006 08:54:06
  Branch: HEAD Handle: 2006092907540401

  Modified files:
openpkg-src/openpkg HISTORY aux.usrgrp.sh aux.wrapsrc.sh openpkg.spec
rpmmacros shtool

  Log:
- passwd/group lookups more efficient by performing key-based lookups 
instead of full dumps when possible
- upgrade to latest tools

  Summary:
RevisionChanges Path
1.379   +2  -0  openpkg-src/openpkg/HISTORY
1.17+24 -24 openpkg-src/openpkg/aux.usrgrp.sh
1.22+4  -4  openpkg-src/openpkg/aux.wrapsrc.sh
1.528   +40 -12 openpkg-src/openpkg/openpkg.spec
1.78+8  -8  openpkg-src/openpkg/rpmmacros
1.35+22 -10 openpkg-src/openpkg/shtool
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.378 -r1.379 HISTORY
  --- openpkg-src/openpkg/HISTORY   28 Sep 2006 15:18:00 -  1.378
  +++ openpkg-src/openpkg/HISTORY   29 Sep 2006 06:54:04 -  1.379
  @@ -2,6 +2,8 @@
   2006
   
   
  +20060929 make passwd/group lookups more efficient by performing key-based 
lookups instead of full dumps when possible
  +20060929 upgrade to openpkg-tools 0.8.75
   20060928 upgrade to OpenSSL 0.9.8d
   20060926 upgrade to openpkg-tools 0.8.74
   20060923 upgrade to GNU config 20060923
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/aux.usrgrp.sh
  
  $ cvs diff -u -r1.16 -r1.17 aux.usrgrp.sh
  --- openpkg-src/openpkg/aux.usrgrp.sh 1 Jan 2006 13:17:48 -   1.16
  +++ openpkg-src/openpkg/aux.usrgrp.sh 29 Sep 2006 06:54:04 -  1.17
  @@ -79,11 +79,11 @@
 (who am i | cut -d  -f1) 2/dev/null ||\
 echo $LOGNAME`
   cgid=`(id -g $cusr) 2/dev/null ||\
  -  ((getent passwd; cat /etc/passwd; ypcat passwd) 2/dev/null |\
  -   grep ^${cusr}: | sed -n -e '1p' | awk -F: '{ print $4; }')`
  +  ((getent passwd ${cusr}; grep ^${cusr}: /etc/passwd; ypmatch 
${cusr} passwd; nismatch ${cusr} passwd; nidump passwd . | grep 
^${cusr}:) 2/dev/null |\
  +   sed -n -e '1p' | awk -F: '{ print $4; }')`
   cgrp=`(id -gn $cusr) 2/dev/null ||\
  -  ((getent group; cat /etc/group; ypcat group) 2/dev/null |\
  -   grep :${cgid}: | sed -n -e '1p' | awk -F: '{ print $1; }')`
  +  ((getent group; cat /etc/group; ypcat group; niscat group; nidump 
group .) 2/dev/null | grep ^[^:]*:[^:]*:${cgid}: |\
  +   sed -n -e '1p' | awk -F: '{ print $1; }')`
   [ .$cgrp = . ]  cgrp=$cusr
   
   #   determine OpenPKG susr/sgrp
  @@ -97,12 +97,12 @@
   if [ .$sgrp = . ]; then
   sgrp=`(id -gn $susr) 2/dev/null`
   if [ .$sgrp = . ]; then
  -tgid=`(getent passwd; cat /etc/passwd; ypcat passwd) 2/dev/null |\
  -  grep ^${susr}: | sed -n -e '1p' | awk -F: '{ print $4; }'`
  +tgid=`(getent passwd ${susr}; grep ^${susr}: /etc/passwd; 
ypmatch ${susr} passwd; nismatch ${susr} passwd; nidump passwd . | grep 
^${susr}:) 2/dev/null |\
  +  sed -n -e '1p' | awk -F: '{ print $4; }'`
   if [ .$tgid != . ]; then
   sgid=${tgid}
  -sgrp=`(getent group; cat /etc/group; ypcat group) 2/dev/null |\
  -  grep :${sgid}: | sed -n -e '1p' | awk -F: '{ print $1; 
}'`
  +sgrp=`(getent group; cat /etc/group; ypcat group; niscat group; 
nidump group .) 2/dev/null |\
  +  grep ^[^:]*:[^:]*:${sgid}: | sed -n -e '1p' | awk -F: '{ 
print $1; }'`
   fi
   if [ .$sgrp = . ]; then
   sgrp=wheel
  @@ -120,12 +120,12 @@
   if [ .$mgrp = . ]; then
   mgrp=`(id -gn $musr) 2/dev/null`
   if [ .$mgrp = . ]; then
  -tgid=`(getent passwd; cat /etc/passwd; ypcat passwd) 2/dev/null |\
  -  grep ^${musr}: | sed -n -e '1p' | awk -F: '{ print $4; }'`
  +tgid=`(getent passwd ${musr}; grep ^${musr}: /etc/passwd; 
ypmatch ${musr} passwd; nismatch ${musr} passwd; nidump passwd . | grep 
^${musr}:) 2/dev/null |\
  +  sed -n -e '1p' | awk -F: '{ print $4; }'`
   if [ .$tgid != . ]; then
   mgid=${tgid}
  -mgrp=`(getent group; cat /etc/group; ypcat group) 2/dev/null |\
  -  grep :${mgid}: | sed -n -e '1p' | awk -F: '{ print $1; 
}'`
  +mgrp=`(getent group; cat /etc/group; ypcat group; niscat group; 
nidump group .) 2/dev/null |\
  +  grep ^[^:]*:[^:]*:${mgid}: | sed 

[CVS] OpenPKG: openpkg-src/openpkg/ HISTORY openpkg.c

2006-09-29 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:   29-Sep-2006 16:31:25
  Branch: HEAD Handle: 2006092915312201

  Modified files:
openpkg-src/openpkg HISTORY openpkg.c

  Log:
fix error message

  Summary:
RevisionChanges Path
1.380   +1  -0  openpkg-src/openpkg/HISTORY
1.4 +1  -1  openpkg-src/openpkg/openpkg.c
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.379 -r1.380 HISTORY
  --- openpkg-src/openpkg/HISTORY   29 Sep 2006 06:54:04 -  1.379
  +++ openpkg-src/openpkg/HISTORY   29 Sep 2006 14:31:22 -  1.380
  @@ -2,6 +2,7 @@
   2006
   
   
  +20060929 fix error message in openpkg setuid wrapper
   20060929 make passwd/group lookups more efficient by performing key-based 
lookups instead of full dumps when possible
   20060929 upgrade to openpkg-tools 0.8.75
   20060928 upgrade to OpenSSL 0.9.8d
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.c
  
  $ cvs diff -u -r1.3 -r1.4 openpkg.c
  --- openpkg-src/openpkg/openpkg.c 13 Sep 2006 14:46:25 -  1.3
  +++ openpkg-src/openpkg/openpkg.c 29 Sep 2006 14:31:23 -  1.4
  @@ -408,7 +408,7 @@
   if ((pw = getpwuid(my_uid)) == NULL)
   fatal(unable to resolve current user id %d: %s\n, my_uid, 
strerror(errno));
   if ((gr = getgrgid(my_gid)) == NULL)
  -fatal(unable to resolve current user id %d: %s\n, my_uid, 
strerror(errno));
  +fatal(unable to resolve current group id %d: %s\n, my_gid, 
strerror(errno));
   debug(current-user: usr=%s uid=%d euid=%d grp=%s gid=%d egid=%d,
 pw-pw_name, my_uid, my_euid, gr-gr_name, my_gid, my_egid);
   
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2006-09-28 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   28-Sep-2006 17:18:01
  Branch: HEAD Handle: 200609281618

  Modified files:
openpkg-src/openpkg HISTORY openpkg.spec

  Log:
upgrading package: openpkg 20060926 - 20060928

  Summary:
RevisionChanges Path
1.378   +1  -0  openpkg-src/openpkg/HISTORY
1.527   +2  -2  openpkg-src/openpkg/openpkg.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/HISTORY
  
  $ cvs diff -u -r1.377 -r1.378 HISTORY
  --- openpkg-src/openpkg/HISTORY   26 Sep 2006 15:09:20 -  1.377
  +++ openpkg-src/openpkg/HISTORY   28 Sep 2006 15:18:00 -  1.378
  @@ -2,6 +2,7 @@
   2006
   
   
  +20060928 upgrade to OpenSSL 0.9.8d
   20060926 upgrade to openpkg-tools 0.8.74
   20060923 upgrade to GNU config 20060923
   20060923 upgrade to openpkg-tools 0.8.73
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  
  $ cvs diff -u -r1.526 -r1.527 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  26 Sep 2006 15:09:20 -  1.526
  +++ openpkg-src/openpkg/openpkg.spec  28 Sep 2006 15:18:00 -  1.527
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define   V_openpkg  20060926
  +%define   V_openpkg  20060928
   
   #   the used software versions
   %define   V_rpm  4.2.1
  @@ -56,7 +56,7 @@
   %define   V_config   20060923
   %define   V_registry 0.7.2
   %define   V_perl 5.8.8
  -%define   V_openssl  0.9.8c
  +%define   V_openssl  0.9.8d
   %define   V_tools0.8.74
   
   #   package information
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


  1   2   3   >