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:   25-Sep-2003 14:41:59
  Branch: OPENPKG_1_3_SOLID HEAD           Handle: 2003092513415701

  Added files:              (Branch: OPENPKG_1_3_SOLID)
    openpkg-src/openssl     openssl.patch
  Modified files:
    openpkg-web             news.txt
  Modified files:           (Branch: OPENPKG_1_3_SOLID)
    openpkg-src/openssl     openssl.spec

  Log:
    MFC: make sure some Perl versions do not break on division by zero

  Summary:
    Revision    Changes     Path
    1.7.2.3.2.1 +11 -0      openpkg-src/openssl/openssl.patch
    1.37.2.5.2.2+3  -1      openpkg-src/openssl/openssl.spec
    1.6731      +1  -0      openpkg-web/news.txt
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-src/openssl/openssl.patch
  ============================================================================
  $ cvs diff -u -r0 -r1.7.2.3.2.1 openssl.patch
  --- /dev/null 2003-09-25 14:41:58.000000000 +0200
  +++ openssl.patch     2003-09-25 14:41:59.000000000 +0200
  @@ -0,0 +1,11 @@
  +--- crypto/bn/bn_prime.pl.orig       Wed Feb 16 14:24:06 2000
  ++++ crypto/bn/bn_prime.pl    Wed Aug  6 10:49:34 2003
  +@@ -11,7 +11,7 @@
  +     $p+=2;
  +     $s=int(sqrt($p));
  + 
  +-    for ($i=0; $primes[$i]<=$s; $i++)
  ++    for ($i=0; defined($primes[$i]) && $primes[$i]<=$s; $i++)
  +             {
  +             next loop if (($p%$primes[$i]) == 0);
  +             }
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/openssl/openssl.spec
  ============================================================================
  $ cvs diff -u -r1.37.2.5.2.1 -r1.37.2.5.2.2 openssl.spec
  --- openpkg-src/openssl/openssl.spec  29 Jul 2003 15:00:22 -0000      1.37.2.5.2.1
  +++ openpkg-src/openssl/openssl.spec  25 Sep 2003 12:41:58 -0000      1.37.2.5.2.2
  @@ -33,7 +33,7 @@
   Group:        Cryptography
   License:      BSD-style
   Version:      0.9.7b
  -Release:      1.3.0
  +Release:      1.3.1
   
   #   package options
   %option       with_zlib     no
  @@ -42,6 +42,7 @@
   
   #   list of sources
   Source0:      ftp://ftp.openssl.org/source/openssl-%{version}.tar.gz
  +Patch0:       openssl.patch
   
   #   build information
   Prefix:       %{l_prefix}
  @@ -62,6 +63,7 @@
   
   %prep
       %setup -q
  +    %patch -p0
       %{l_shtool} subst \
           -e 's;-m486;-march=i486;g' \
           -e 's;-DZLIB;%{l_cppflags} -DZLIB;' \
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  ============================================================================
  $ cvs diff -u -r1.6730 -r1.6731 news.txt
  --- openpkg-web/news.txt      25 Sep 2003 12:33:09 -0000      1.6730
  +++ openpkg-web/news.txt      25 Sep 2003 12:41:57 -0000      1.6731
  @@ -1,3 +1,4 @@
  +25-Sep-2003: Upgraded package: P<openssl-0.9.7b-1.3.1>
   25-Sep-2003: Upgraded package: P<postfix-2.0.13-1.3.1>
   25-Sep-2003: Upgraded package: P<x11-1.3.1-1.3.1>
   25-Sep-2003: Upgraded package: P<pam-1.3.1-1.3.1>
  @@ .
______________________________________________________________________
The OpenPKG Project                                    www.openpkg.org
CVS Repository Commit List                     [EMAIL PROTECTED]

Reply via email to