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          Date:   09-Sep-2003 10:58:45
  Branch: HEAD                             Handle: 2003090909584301

  Modified files:
    openpkg-src/openpkg     HISTORY openpkg.spec rpm.patch.bugfix
                            rpm.patch.feature rpm.patch.porting
                            rpm.patch.regen
    openpkg-web             news.txt

  Log:
    remove one more GCC extensional feature (in RPM's file/file.h)

  Summary:
    Revision    Changes     Path
    1.42        +1  -0      openpkg-src/openpkg/HISTORY
    1.213       +1  -1      openpkg-src/openpkg/openpkg.spec
    1.15        +1  -1      openpkg-src/openpkg/rpm.patch.bugfix
    1.15        +1  -1      openpkg-src/openpkg/rpm.patch.feature
    1.19        +20 -1      openpkg-src/openpkg/rpm.patch.porting
    1.14        +1  -1      openpkg-src/openpkg/rpm.patch.regen
    1.6457      +1  -0      openpkg-web/news.txt
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/HISTORY
  ============================================================================
  $ cvs diff -u -r1.41 -r1.42 HISTORY
  --- openpkg-src/openpkg/HISTORY       8 Sep 2003 19:59:38 -0000       1.41
  +++ openpkg-src/openpkg/HISTORY       9 Sep 2003 08:58:44 -0000       1.42
  @@ -2,6 +2,7 @@
   2003
   ====
   
  +20030909 remove one more GCC extensional feature (in RPM's file/file.h)
   20030908 upgrade "platform" script to new "OSSP platform" implementation and 
provide %{l_platform}
   20030907 add rpm-config(8) utility and add librpmbeecrypt.a to installation tree
   20030904 apply new BeeCrypt and Bash patch files
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/openpkg.spec
  ============================================================================
  $ cvs diff -u -r1.212 -r1.213 openpkg.spec
  --- openpkg-src/openpkg/openpkg.spec  8 Sep 2003 19:59:38 -0000       1.212
  +++ openpkg-src/openpkg/openpkg.spec  9 Sep 2003 08:58:44 -0000       1.213
  @@ -39,7 +39,7 @@
   #   o any cc(1)
   
   #   the package version/release
  -%define       V_openpkg  20030908
  +%define       V_openpkg  20030909
   
   #   the used software versions
   %define       V_rpm      4.2.1
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/rpm.patch.bugfix
  ============================================================================
  $ cvs diff -u -r1.14 -r1.15 rpm.patch.bugfix
  --- openpkg-src/openpkg/rpm.patch.bugfix      4 Sep 2003 05:29:57 -0000       1.14
  +++ openpkg-src/openpkg/rpm.patch.bugfix      9 Sep 2003 08:58:44 -0000       1.15
  @@ -10,7 +10,7 @@
   ##  'patch' tool to upgrade those files. Each patch snippet is annotated
   ##  with a short description.
   ##
  -##  Created on: 04-Sep-2003
  +##  Created on: 09-Sep-2003
   ##
   ##  ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
   ##             RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/rpm.patch.feature
  ============================================================================
  $ cvs diff -u -r1.14 -r1.15 rpm.patch.feature
  --- openpkg-src/openpkg/rpm.patch.feature     4 Sep 2003 05:29:57 -0000       1.14
  +++ openpkg-src/openpkg/rpm.patch.feature     9 Sep 2003 08:58:44 -0000       1.15
  @@ -10,7 +10,7 @@
   ##  'patch' tool to upgrade those files. Each patch snippet is annotated
   ##  with a short description.
   ##
  -##  Created on: 04-Sep-2003
  +##  Created on: 09-Sep-2003
   ##
   ##  ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
   ##             RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/rpm.patch.porting
  ============================================================================
  $ cvs diff -u -r1.18 -r1.19 rpm.patch.porting
  --- openpkg-src/openpkg/rpm.patch.porting     4 Sep 2003 05:29:57 -0000       1.18
  +++ openpkg-src/openpkg/rpm.patch.porting     9 Sep 2003 08:58:44 -0000       1.19
  @@ -10,7 +10,7 @@
   ##  'patch' tool to upgrade those files. Each patch snippet is annotated
   ##  with a short description.
   ##
  -##  Created on: 04-Sep-2003
  +##  Created on: 09-Sep-2003
   ##
   ##  ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
   ##             RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
  @@ -247,6 +247,25 @@
        return rcsid(p = id); \
    }
    #endif
  +
  ++---------------------------------------------------------------------------
  +| Use GCC extensional features only if compiled with GCC.
  ++---------------------------------------------------------------------------
  +Index: file/file.h
  +--- file/file.h      24 Jan 2003 19:41:56 -0000      1.1.1.1
  ++++ file/file.h      9 Sep 2003 08:54:43 -0000
  +@@ -95,7 +95,11 @@
  +     } value;                /* either number or string */
  +     uint32_t mask;  /* mask before comparison with value */
  +     char desc[MAXDESC];     /* description */
  ++#if defined(__GNUC__)
  + } __attribute__((__packed__));
  ++#else
  ++};
  ++#endif
  + 
  + #define BIT(A)   (1 << (A))
  + #define STRING_IGNORE_LOWERCASE             BIT(0)
   
   +---------------------------------------------------------------------------
   | Use GNU libtool's weaker -static (link with own static libraries)
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openpkg/rpm.patch.regen
  ============================================================================
  $ cvs diff -u -r1.13 -r1.14 rpm.patch.regen
  --- openpkg-src/openpkg/rpm.patch.regen       4 Sep 2003 05:29:58 -0000       1.13
  +++ openpkg-src/openpkg/rpm.patch.regen       9 Sep 2003 08:58:44 -0000       1.14
  @@ -10,7 +10,7 @@
   ##  'patch' tool to upgrade those files. Each patch snippet is annotated
   ##  with a short description.
   ##
  -##  Created on: 04-Sep-2003
  +##  Created on: 09-Sep-2003
   ##
   ##  ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
   ##             RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  ============================================================================
  $ cvs diff -u -r1.6456 -r1.6457 news.txt
  --- openpkg-web/news.txt      9 Sep 2003 08:46:42 -0000       1.6456
  +++ openpkg-web/news.txt      9 Sep 2003 08:58:43 -0000       1.6457
  @@ -1,3 +1,4 @@
  +09-Sep-2003: Upgraded package: P<openpkg-20030909-20030909>
   09-Sep-2003: Upgraded package: P<beecrypt-3.1.0-20030909>
   09-Sep-2003: Upgraded package: P<dmalloc-5.2.2-20030909>
   09-Sep-2003: Upgraded package: P<perl-ars-20030909-20030909>
  @@ .
______________________________________________________________________
The OpenPKG Project                                    www.openpkg.org
CVS Repository Commit List                     [EMAIL PROTECTED]

Reply via email to