OpenPKG CVS Repository
  http://cvs.openpkg.org/
  ____________________________________________________________________________

  Server: cvs.openpkg.org                  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs                   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web openpkg$ Date:   23-Feb-2003 20:50:03
  Branch: HEAD                             Handle: 2003022319500102

  Modified files:
    openpkg-re/vcheck       vc.coreutils
    openpkg-src/coreutils   coreutils.patch coreutils.spec
    openpkg-web             news.txt

  Log:
    upgrading package: coreutils 4.5.7 -> 4.5.8

  Summary:
    Revision    Changes     Path
    1.7         +1  -1      openpkg-re/vcheck/vc.coreutils
    1.2         +22 -13     openpkg-src/coreutils/coreutils.patch
    1.14        +2  -2      openpkg-src/coreutils/coreutils.spec
    1.3426      +1  -0      openpkg-web/news.txt
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-re/vcheck/vc.coreutils
  ============================================================================
  $ cvs diff -u -r1.6 -r1.7 vc.coreutils
  --- openpkg-re/vcheck/vc.coreutils    9 Feb 2003 09:11:52 -0000       1.6
  +++ openpkg-re/vcheck/vc.coreutils    23 Feb 2003 19:50:01 -0000      1.7
  @@ -2,7 +2,7 @@
   }
   
   prog coreutils = {
  -  version   = 4.5.7
  +  version   = 4.5.8
     url       = ftp://alpha.gnu.org/gnu/coreutils/
     regex     = coreutils-(__VER__)\.tar\.(gz|bz2)
   }
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/coreutils/coreutils.patch
  ============================================================================
  $ cvs diff -u -r1.1 -r1.2 coreutils.patch
  --- openpkg-src/coreutils/coreutils.patch     12 Jan 2003 12:19:07 -0000      1.1
  +++ openpkg-src/coreutils/coreutils.patch     23 Feb 2003 19:50:03 -0000      1.2
  @@ -13,35 +13,44 @@
    #include "system.h"
    
    #include "closeout.h"
  ---- src/test.c.orig  Wed Sep 25 10:22:37 2002
  -+++ src/test.c       Sun Jan 12 11:49:50 2003
  -@@ -151,7 +151,7 @@
  -    and don't make the mistake of telling root that any file is executable.
  -    But this loses when the containing filesystem is mounted e.g. read-only.  */
  +--- src/test.c.orig  Mon Feb 10 10:19:09 2003
  ++++ src/test.c       Sun Feb 23 20:44:50 2003
  +@@ -139,7 +139,7 @@
  + /* Do the same thing access(2) does, but use the effective uid and gid.  */
  + 
    static int
  --eaccess (char *path, int mode)
  -+myeaccess (char *path, int mode)
  +-eaccess (char const *file, int mode)
  ++my_eaccess (char const *file, int mode)
    {
  -   struct stat st;
  -   static uid_t euid = -1;
  -@@ -645,17 +645,17 @@
  +   static int have_ids;
  +   static uid_t uid, euid;
  +@@ -172,7 +172,7 @@
  +   return result;
  + }
  + #else
  +-# define eaccess(F, M) euidaccess (F, M)
  ++# define my_eaccess(F, M) euidaccess (F, M)
  + #endif
  + 
  + /* Increment our position in the argument list.  Check that we're not
  +@@ -635,17 +635,17 @@
    
        case 'r':                       /* file is readable? */
          unary_advance ();
   -      value = -1 != eaccess (argv[pos - 1], R_OK);
  -+      value = -1 != myeaccess (argv[pos - 1], R_OK);
  ++      value = -1 != my_eaccess (argv[pos - 1], R_OK);
          return (TRUE == value);
    
        case 'w':                       /* File is writable? */
          unary_advance ();
   -      value = -1 != eaccess (argv[pos - 1], W_OK);
  -+      value = -1 != myeaccess (argv[pos - 1], W_OK);
  ++      value = -1 != my_eaccess (argv[pos - 1], W_OK);
          return (TRUE == value);
    
        case 'x':                       /* File is executable? */
          unary_advance ();
   -      value = -1 != eaccess (argv[pos - 1], X_OK);
  -+      value = -1 != myeaccess (argv[pos - 1], X_OK);
  ++      value = -1 != my_eaccess (argv[pos - 1], X_OK);
          return (TRUE == value);
    
        case 'O':                       /* File is owned by you? */
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/coreutils/coreutils.spec
  ============================================================================
  $ cvs diff -u -r1.13 -r1.14 coreutils.spec
  --- openpkg-src/coreutils/coreutils.spec      9 Feb 2003 09:11:55 -0000       1.13
  +++ openpkg-src/coreutils/coreutils.spec      23 Feb 2003 19:50:03 -0000      1.14
  @@ -32,8 +32,8 @@
   Distribution: OpenPKG [BASE]
   Group:        Utility
   License:      GPL
  -Version:      4.5.7
  -Release:      20030209
  +Version:      4.5.8
  +Release:      20030223
   
   #   list of sources
   Source0:      ftp://alpha.gnu.org/gnu/coreutils/coreutils-%{version}.tar.bz2
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  ============================================================================
  $ cvs diff -u -r1.3425 -r1.3426 news.txt
  --- openpkg-web/news.txt      23 Feb 2003 19:49:39 -0000      1.3425
  +++ openpkg-web/news.txt      23 Feb 2003 19:50:01 -0000      1.3426
  @@ -1,3 +1,4 @@
  +23-Feb-2003: Upgraded package: P<coreutils-4.5.8-20030223>
   23-Feb-2003: Upgraded package: P<w3m-0.4-20030223>
   23-Feb-2003: Upgraded package: P<openpkg-20030223-20030223>
   23-Feb-2003: Upgraded package: P<ifile-1.3.0-20030223>
  @@ .
______________________________________________________________________
The OpenPKG Project                                    www.openpkg.org
CVS Repository Commit List                     [EMAIL PROTECTED]

Reply via email to