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-Feb-2007 17:12:39
  Branch: HEAD                             Handle: 2007022416123800

  Modified files:
    openpkg-src/js          js.patch js.spec

  Log:
    repair patch

  Summary:
    Revision    Changes     Path
    1.15        +28 -27     openpkg-src/js/js.patch
    1.38        +1  -1      openpkg-src/js/js.spec
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-src/js/js.patch
  ============================================================================
  $ cvs diff -u -r1.14 -r1.15 js.patch
  --- openpkg-src/js/js.patch   22 Feb 2007 06:25:45 -0000      1.14
  +++ openpkg-src/js/js.patch   24 Feb 2007 16:12:38 -0000      1.15
  @@ -1,7 +1,28 @@
  +Index: JavaScript-1.03/Makefile.PL
  +--- JavaScript-1.03/Makefile.PL.orig 2007-02-21 16:57:19 +0100
  ++++ JavaScript-1.03/Makefile.PL      2007-02-24 17:10:08 +0100
  +@@ -94,7 +94,7 @@
  +     push @defines, "JS_THREADSAFE" if $ENV{JS_THREADSAFE};
  + }
  + else {
  +-    my $enable_threadsafe = prompt("Is your SpiderMonkey compiled with 
JS_THREADSAFE (most things will fail if you answer wrong)? [y/N]");
  ++    my $enable_threadsafe = 'n';
  +     push @defines, "JS_THREADSAFE" if $enable_threadsafe eq 'y';
  + }
  + 
  +@@ -103,7 +103,7 @@
  +     push @defines, "JS_C_STRINGS_ARE_UTF8" if $ENV{JS_UTF8};
  + }
  + else {
  +-    my $enable_utf8 = prompt("Is your SpiderMonkey compiled with support 
for unicode (t/23-unicode.t will fail if you answer wrong) ? [y/N]", "N");
  ++    my $enable_utf8 = 'n';
  +     push @defines, "JS_C_STRINGS_ARE_UTF8" if $enable_utf8 eq 'y';
  + }
  + 
   Index: JavaScript-SpiderMonkey-0.17/Makefile.PL
  ---- JavaScript-SpiderMonkey-0.17/Makefile.PL.orig    2006-07-22 22:49:27 
+0200
  -+++ JavaScript-SpiderMonkey-0.17/Makefile.PL 2006-07-22 22:51:30 +0200
  -@@ -27,6 +27,7 @@
  +--- JavaScript-SpiderMonkey-0.17/Makefile.PL.orig    2006-07-28 11:30:08 
+0200
  ++++ JavaScript-SpiderMonkey-0.17/Makefile.PL 2007-02-24 17:09:41 +0100
  +@@ -30,6 +30,7 @@
    );
    
    my %possible_install_paths = (
  @@ -9,7 +30,7 @@
      "../js/src/*"      => "../js/src",
      "/usr/lib"         => "/usr/include",
      "/usr/local/lib"   => "/usr/local/include",
  -@@ -108,7 +108,6 @@
  +@@ -120,7 +121,6 @@
        'NAME'          => 'JavaScript::SpiderMonkey',
        'VERSION_FROM'  => 'SpiderMonkey.pm', # finds $VERSION
        'PREREQ_PM'             => {
  @@ -18,8 +39,8 @@
                               }, # e.g., Module::Name => 1.1
        ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
   Index: JavaScript-SpiderMonkey-0.17/SpiderMonkey.pm
  ---- JavaScript-SpiderMonkey-0.17/SpiderMonkey.pm.orig        2006-06-13 
15:46:00 +0200
  -+++ JavaScript-SpiderMonkey-0.17/SpiderMonkey.pm     2006-06-29 19:20:44 
+0200
  +--- JavaScript-SpiderMonkey-0.17/SpiderMonkey.pm.orig        2006-07-28 
11:36:39 +0200
  ++++ JavaScript-SpiderMonkey-0.17/SpiderMonkey.pm     2007-02-24 17:09:41 
+0100
   @@ -75,7 +75,6 @@
    use strict;
    use warnings;
  @@ -28,7 +49,7 @@
    
    require Exporter;
    require DynaLoader;
  -@@ -555,14 +554,7 @@
  +@@ -557,14 +556,7 @@
    ##################################################
    sub debug_enabled {
    ##################################################
  @@ -44,23 +65,3 @@
    }
    
    1;
  -Index: JavaScript-1.03/Makefile.PL
  ---- JavaScript-1.03/Makefile.PL      2007-02-21 16:57:19 +0100
  -+++ JavaScript-1.03/Makefile.PL      2007-02-22 07:15:52 +0100
  -@@ -94,7 +94,7 @@
  -     push @defines, "JS_THREADSAFE" if $ENV{JS_THREADSAFE};
  - }
  - else {
  --    my $enable_threadsafe = prompt("Is your SpiderMonkey compiled with 
JS_THREADSAFE (most things will fail if you answer wrong)? [y/N]");
  -+    my $enable_threadsafe = 'n';
  -     push @defines, "JS_THREADSAFE" if $enable_threadsafe eq 'y';
  - }
  - 
  -@@ -103,7 +103,6 @@
  -     push @defines, "JS_C_STRINGS_ARE_UTF8" if $ENV{JS_UTF8};
  - }
  - else {
  --    my $enable_utf8 = prompt("Is your SpiderMonkey compiled with support 
for unicode (t/23-unicode.t will fail if you answer wrong) ? [y/N]", "N");
  -     push @defines, "JS_C_STRINGS_ARE_UTF8" if $enable_utf8 eq 'y';
  - }
  - 
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/js/js.spec
  ============================================================================
  $ cvs diff -u -r1.37 -r1.38 js.spec
  --- openpkg-src/js/js.spec    22 Feb 2007 06:25:45 -0000      1.37
  +++ openpkg-src/js/js.spec    24 Feb 2007 16:12:38 -0000      1.38
  @@ -42,7 +42,7 @@
   Group:        Language
   License:      MPL/GPL/LGPL
   Version:      %{V_js}
  -Release:      20070222
  +Release:      20070224
   
   #   package options
   %option       with_file        yes
  @@ .
______________________________________________________________________
OpenPKG                                             http://openpkg.org
CVS Repository Commit List                     [email protected]

Reply via email to