[Pkg-javascript-devel] Bug#675856: [PATCH 4/5] upstream now supports native compile

2012-06-03 Thread Shawn Landden
From: Shawn Landen 

---
 debian/patches/0014_disable_cross_build.patch |   25 -
 debian/patches/series |1 -
 2 files changed, 26 deletions(-)
 delete mode 100644 debian/patches/0014_disable_cross_build.patch

diff --git a/debian/patches/0014_disable_cross_build.patch 
b/debian/patches/0014_disable_cross_build.patch
deleted file mode 100644
index dfdd6ab..000
--- a/debian/patches/0014_disable_cross_build.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Description: arm and mips targets are cross compiled by default, disable this.
-Forwarded: not-needed, upstream do not promote building on same host as target 
arch.
-Author: Jérémy Lal 
-Last-Update: 2011-12-28
 a/Makefile
-+++ b/Makefile
-@@ -216,14 +216,14 @@
- -Ibuild/standalone.gypi --depth=. -Dtarget_arch=x64 \
- -S-x64 $(GYPFLAGS)
- 
--$(OUTDIR)/Makefile-arm: $(GYPFILES) $(ENVFILE) build/armu.gypi
-+$(OUTDIR)/Makefile-arm: $(GYPFILES) $(ENVFILE)
-   gyp --generator-output="$(OUTDIR)" build/all.gyp \
---Ibuild/standalone.gypi --depth=. -Ibuild/armu.gypi \
-+-Ibuild/standalone.gypi --depth=. -Dtarget_arch=arm \
- -S-arm $(GYPFLAGS)
- 
--$(OUTDIR)/Makefile-mips: $(GYPFILES) $(ENVFILE) build/mipsu.gypi
-+$(OUTDIR)/Makefile-mips: $(GYPFILES) $(ENVFILE)
-   gyp --generator-output="$(OUTDIR)" build/all.gyp \
---Ibuild/standalone.gypi --depth=. -Ibuild/mipsu.gypi \
-+-Ibuild/standalone.gypi --depth=. -Dtarget_arch=mips \
- -S-mips $(GYPFLAGS)
- 
- $(OUTDIR)/Makefile-native: $(GYPFILES) $(ENVFILE)
diff --git a/debian/patches/series b/debian/patches/series
index c8e6e7a..474ea22 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
 0011_use_system_gyp.patch
-0014_disable_cross_build.patch
-- 
1.7.10




___
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#675856: [PATCH 3/5] update use_system_gyp.patch

2012-06-03 Thread Shawn Landden
From: Shawn Landen 

---
 debian/patches/0011_use_system_gyp.patch |   45 +-
 1 file changed, 19 insertions(+), 26 deletions(-)

diff --git a/debian/patches/0011_use_system_gyp.patch 
b/debian/patches/0011_use_system_gyp.patch
index dae1631..7440a43 100644
--- a/debian/patches/0011_use_system_gyp.patch
+++ b/debian/patches/0011_use_system_gyp.patch
@@ -1,39 +1,32 @@
 Description: Use gyp package, not build/gyp/gyp.
 Forwarded: not-needed
 Author: Jérémy Lal 
-Last-Update: 2011-10-22
+Last-Update: 2012-06-03
 --- a/Makefile
 +++ b/Makefile
-@@ -207,27 +207,27 @@
- 
- # GYP file generation targets.
- $(OUTDIR)/Makefile-ia32: $(GYPFILES) $(ENVFILE)
--  build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
-+  gyp --generator-output="$(OUTDIR)" build/all.gyp \
- -Ibuild/standalone.gypi --depth=. -Dtarget_arch=ia32 \
- -S-ia32 $(GYPFLAGS)
- 
- $(OUTDIR)/Makefile-x64: $(GYPFILES) $(ENVFILE)
+@@ -214,14 +214,14 @@
+ MAKEFILES = $(addprefix $(OUTDIR)/Makefile.,$(ARCHES))
+ $(MAKEFILES): $(GYPFILES) $(ENVFILE)
+   GYP_GENERATORS=make \
 -  build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
 +  gyp --generator-output="$(OUTDIR)" build/all.gyp \
- -Ibuild/standalone.gypi --depth=. -Dtarget_arch=x64 \
- -S-x64 $(GYPFLAGS)
+ -Ibuild/standalone.gypi --depth=. \
+ -Dv8_target_arch=$(subst .,,$(suffix $@)) \
+ -S.$(subst .,,$(suffix $@)) $(GYPFLAGS)
  
- $(OUTDIR)/Makefile-arm: $(GYPFILES) $(ENVFILE) build/armu.gypi
+ $(OUTDIR)/Makefile.native: $(GYPFILES) $(ENVFILE)
+   GYP_GENERATORS=make \
 -  build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
 +  gyp --generator-output="$(OUTDIR)" build/all.gyp \
- -Ibuild/standalone.gypi --depth=. -Ibuild/armu.gypi \
- -S-arm $(GYPFLAGS)
+ -Ibuild/standalone.gypi --depth=. -S.native $(GYPFLAGS)
  
- $(OUTDIR)/Makefile-mips: $(GYPFILES) $(ENVFILE) build/mipsu.gypi
+ $(OUTDIR)/Makefile.android: $(GYPFILES) $(ENVFILE) build/android.gypi \
+@@ -229,7 +229,7 @@
+   GYP_GENERATORS=make \
+   CC="${ANDROID_TOOL_PREFIX}-gcc" \
+   CXX="${ANDROID_TOOL_PREFIX}-g++" \
 -  build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
 +  gyp --generator-output="$(OUTDIR)" build/all.gyp \
- -Ibuild/standalone.gypi --depth=. -Ibuild/mipsu.gypi \
- -S-mips $(GYPFLAGS)
- 
- $(OUTDIR)/Makefile-native: $(GYPFILES) $(ENVFILE)
--  build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
-+  gyp --generator-output="$(OUTDIR)" build/all.gyp \
- -Ibuild/standalone.gypi --depth=. -S-native $(GYPFLAGS)
- 
- $(OUTDIR)/Makefile-android: $(GYPFILES) $(ENVFILE) build/android.gypi \
+ -Ibuild/standalone.gypi --depth=. -Ibuild/android.gypi \
+ -S.android $(GYPFLAGS)
+
-- 
1.7.10




___
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#675856: [PATCH 5/5] update changelog

2012-06-03 Thread Shawn Landden
From: Shawn Landen 

---
 debian/changelog  |7 +++
 debian/control.in |6 +++---
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 98e4823..6e8046e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libv8 (3.11.8-1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * New Upstream version.
+
+ -- Shawn Landden   Sun, 03 Jun 2012 17:26:16 +
+
 libv8 (3.8.9.20-1) unstable; urgency=low
 
   [ Jérémy Lal ]
diff --git a/debian/control.in b/debian/control.in
index e861692..9f627f8 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -15,7 +15,7 @@ Vcs-Git: git://git.debian.org/git/collab-maint/libv8.git
 Package: libv8-dev
 Section: libdevel
 Architecture: i386 amd64 armel armhf
-Depends: libv8-3.8.9.20 (= ${binary:Version}), ${misc:Depends}
+Depends: libv8-3.11.8 (= ${binary:Version}), ${misc:Depends}
 Description: v8 JavaScript engine - development files
  V8 is a high performance JavaScript engine written in C++.  It is used
  in the web browser Chromium.
@@ -23,7 +23,7 @@ Description: v8 JavaScript engine - development files
  Install this package if you wish to develop your own programs using the
  v8 JavaScript engine.
 
-Package: libv8-3.8.9.20
+Package: libv8-3.11.8
 Architecture: i386 amd64 armel armhf
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: v8 JavaScript engine - runtime library
@@ -37,7 +37,7 @@ Package: libv8-dbg
 Priority: extra
 Section: debug
 Architecture: i386 amd64 armel armhf
-Depends: libv8-3.8.9.20 (= ${binary:Version}), ${misc:Depends}
+Depends: libv8-3.11.8 (= ${binary:Version}), ${misc:Depends}
 Description: v8 JavaScript engine - debugging symbols
  V8 is a high performance JavaScript engine written in C++.  It is used
  in the web browser Chromium.
-- 
1.7.10




___
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#675856: [PATCH 2/5] applied upstream in differn't form

2012-06-03 Thread Shawn Landden
From: Shawn Landen 

---
 debian/patches/0008_mksnapshot_stdout.patch |   16 
 debian/patches/series   |1 -
 2 files changed, 17 deletions(-)
 delete mode 100644 debian/patches/0008_mksnapshot_stdout.patch

diff --git a/debian/patches/0008_mksnapshot_stdout.patch 
b/debian/patches/0008_mksnapshot_stdout.patch
deleted file mode 100644
index b9f3d64..000
--- a/debian/patches/0008_mksnapshot_stdout.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Description: Redirect mksnapshot log to stdout
- armel builds typically fail at mksnapshot, for which it is useful to be able 
to get the actual log.
-Forwarded: not-needed
-Author: Jérémy Lal 
-Last-Update: 2011-10-25
 a/tools/gyp/v8.gyp
-+++ b/tools/gyp/v8.gyp
-@@ -144,7 +144,7 @@
-   'variables': {
- 'mksnapshot_flags': [
-   '--log-snapshot-positions',
--  '--logfile', '<(INTERMEDIATE_DIR)/snapshot.log',
-+  '--logfile', '-',
- ],
-   },
-   'conditions': [
diff --git a/debian/patches/series b/debian/patches/series
index 03c1b28..c8e6e7a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,2 @@
-0008_mksnapshot_stdout.patch
 0011_use_system_gyp.patch
 0014_disable_cross_build.patch
-- 
1.7.10




___
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#675856: [PATCH 1/5] unneeded patch, merged upstream

2012-06-03 Thread Shawn Landden
From: Shawn Landen 

---
 debian/patches/issue9316131_5001.diff |   28 
 debian/patches/series |1 -
 2 files changed, 29 deletions(-)
 delete mode 100644 debian/patches/issue9316131_5001.diff

diff --git a/debian/patches/issue9316131_5001.diff 
b/debian/patches/issue9316131_5001.diff
deleted file mode 100644
index 60f8060..000
--- a/debian/patches/issue9316131_5001.diff
+++ /dev/null
@@ -1,28 +0,0 @@
-Description: Properly initialize element-transitioning array literals on ARM
- Closes: http://bugs.debian.org/666906
-Origin:upstream,https://chromiumcodereview.appspot.com/9316131
-Forwarded: not-needed
-Last-Update: 2012-04-02
 a/src/arm/code-stubs-arm.cc
-+++ b/src/arm/code-stubs-arm.cc
-@@ -7311,7 +7311,7 @@
-   // Array literal has ElementsKind of FAST_DOUBLE_ELEMENTS.
-   __ bind(&double_elements);
-   __ ldr(r5, FieldMemOperand(r1, JSObject::kElementsOffset));
--  __ StoreNumberToDoubleElements(r0, r3, r1, r5, r6, r7, r9, r10,
-+  __ StoreNumberToDoubleElements(r0, r3, r1, r5, r6, r7, r9, r2,
-  &slow_elements);
-   __ Ret();
- }
 a/src/arm/macro-assembler-arm.h
-+++ b/src/arm/macro-assembler-arm.h
-@@ -787,7 +787,8 @@
- 
-   // Check to see if maybe_number can be stored as a double in
-   // FastDoubleElements. If it can, store it at the index specified by key in
--  // the FastDoubleElements array elements, otherwise jump to fail.
-+  // the FastDoubleElements array elements. Otherwise jump to fail, in which
-+  // case scratch2, scratch3 and scratch4 are unmodified.
-   void StoreNumberToDoubleElements(Register value_reg,
-Register key_reg,
-Register receiver_reg,
diff --git a/debian/patches/series b/debian/patches/series
index 4a76142..03c1b28 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
 0008_mksnapshot_stdout.patch
 0011_use_system_gyp.patch
 0014_disable_cross_build.patch
-issue9316131_5001.diff
-- 
1.7.10




___
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel


[Pkg-javascript-devel] Bug#715195: node-gyp: please update to fix issue #270

2013-07-06 Thread Shawn Landden
Package: node-gyp
Version: 0.9.5-2
Severity: wishlist

upstream added a error message describing that nothing will build without HOME 
env var set

i ran into this problem

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.9-1-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages node-gyp depends on:
ii  gyp   0.1~svn1625-1
ii  node-fstream  0.1.22-1
ii  node-glob 3.2.1-2
ii  node-graceful-fs  1.2.1-2
ii  node-inherits 0.1-1
ii  node-minimatch0.2.11-1
ii  node-mkdirp   0.3.3-1
ii  node-nopt 2.1.1-1
ii  node-npmlog   0.0.2-1
ii  node-request  2.9.153-1
ii  node-rimraf   2.1.4-1
ii  node-semver   1.1.4-1
ii  node-tar  0.1.17-1
ii  node-which1.0.5-2
ii  nodejs0.10.11~dfsg1-1
ii  nodejs-dev0.10.11~dfsg1-1

Versions of packages node-gyp recommends:
ii  build-essential  11.6

node-gyp suggests no packages.

-- no debconf information

___
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel


[Pkg-javascript-devel] Bug#715325: npm: leaves lots of stuff in /tmp

2013-07-07 Thread Shawn Landden
Package: npm
Version: 1.2.18~dfsg-3
Severity: normal

I installed a few packages yesterday, and today realized npm was wasting 50M
of my ram with copies of what it downloaded still in /tmp/npm-# folders

it should clean this up, put it in /var/cache, and/or have a command to clean up

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.9-1-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages npm depends on:
ii  node-abbrev 1.0.4-1
ii  node-ansi   0.1.2~dfsg1-1
ii  node-archy  0.0.2-1
ii  node-block-stream   0.0.6-1
ii  node-fstream0.1.22-1
ii  node-fstream-ignore 0.0.6-2
ii  node-glob   3.2.1-2
ii  node-graceful-fs1.2.1-2
ii  node-gyp0.9.5-2
ii  node-inherits   0.1-1
ii  node-ini1.1.0-1
ii  node-lockfile   0.3.1-1
ii  node-lru-cache  2.3.0-1
ii  node-minimatch  0.2.11-1
ii  node-mkdirp 0.3.3-1
ii  node-nopt   2.1.1-1
ii  node-npmlog 0.0.2-1
ii  node-once   1.1.1-1
ii  node-osenv  0.0.3-1
ii  node-read   1.0.4-1
ii  node-read-package-json  0.3.1-3
ii  node-request2.9.153-1
ii  node-retry  0.6.0-1
ii  node-rimraf 2.1.4-1
ii  node-semver 1.1.4-1
ii  node-slide  1.1.4-1
ii  node-tar0.1.17-1
ii  node-which  1.0.5-2
ii  nodejs  0.10.11~dfsg1-1

npm recommends no packages.

npm suggests no packages.

-- no debconf information

___
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel