[Pkg-javascript-commits] [node-gyp] 02/82: Initial and incomplete debianization.

Ximin Luo infinity0 at debian.org
Mon Aug 31 00:40:49 UTC 2015


This is an automated email from the git hooks/post-receive script.

infinity0 pushed a commit to branch master
in repository node-gyp.

commit b765111650c2f08a27dec40e2b6d212960e10f55
Author: Jérémy Lal <kapouer at melix.org>
Date:   Wed Mar 21 12:31:09 2012 +0100

    Initial and incomplete debianization.
---
 debian/changelog     | 16 ++++++++++++++++
 debian/compat        |  1 +
 debian/control       | 38 ++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 28 ++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/install       |  2 ++
 debian/manpages      |  1 +
 debian/rules         |  8 ++++++++
 debian/source/format |  1 +
 debian/watch         |  4 ++++
 10 files changed, 100 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..49342aa
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,16 @@
+node-gyp (0.3.7-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #664836)
+
+  [TODO]
+  * ./debian/node-gyp.1
+  * node-ansi needs to be packaged
+  * ./legacy/* : CHECK COPYRIGHT (hint : Joyent, Google).
+    This directory is needed (except for gyp itself) when using nodejs-dev < 0.8
+  * ./updateLegacy.sh can be ignored
+  * check where node-gyp wants to install/remove nodejs development files,
+    try to make sure it is absolutely not needed to do that ! A debian user
+    should install nodejs-dev package.
+  * nodejs-dev search path is probably broken
+
+ -- Jérémy Lal <kapouer at melix.org>  Tue, 21 Feb 2012 23:39:28 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..24154f0
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,38 @@
+Source: node-gyp
+Section: web
+Priority: extra
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Jérémy Lal <kapouer at melix.org>
+Build-Depends:
+ debhelper (>= 8.0.0)
+ , dh-buildinfo
+Standards-Version: 3.9.3
+Homepage: https://github.com/TooTallNate/node-gyp
+Vcs-Git: git://git.debian.org/collab-maint/node-gyp.git
+Vcs-Browser: http://git.debian.org/?p=collab-maint/node-gyp.git;a=summary
+
+Package: node-gyp
+Architecture: all
+Depends:
+ ${misc:Depends}
+ , gyp
+ , nodejs-dev (>= 0.6.12~)
+ , node-ansi
+ , node-glob
+ , node-graceful-fs
+ , node-fstream
+ , node-minimatch
+ , node-mkdirp
+ , node-nopt
+ , node-request (>= 2.9.153)
+ , node-rimraf
+ , node-semver
+ , node-tar
+ , node-which
+Description: Native addon build tool for Node.js
+ node-gyp is a cross-platform command-line tool written in Node.js
+ for compiling native addon modules for Node.js, which takes away the
+ pain of dealing with the various differences in build platforms.
+ node-gyp will replace node-waf program in Node.js version 0.8.
+ .
+ Node.js is  an event-based server-side javascript engine.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5c73b9c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files: *
+Copyright: 2012, Nathan Rajlich <nathan at tootallnate.net>
+License: Expat
+
+Files: debian/*
+Copyright: 2012, Jérémy Lal <kapouer at melix.org>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..6c843e5
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+lib	usr/lib/nodejs/node-gyp/
+bin	usr/lib/nodejs/node-gyp/
diff --git a/debian/manpages b/debian/manpages
new file mode 100644
index 0000000..bf02213
--- /dev/null
+++ b/debian/manpages
@@ -0,0 +1 @@
+./debian/node-gyp.1
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..218df65
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..6b1e0eb
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=downloadurlmangle=s/.*\/([\d.-]+)/http\:\/\/registry\.npmjs\.org\/node\-gyp\/-\/node\-gyp\-$1\.tgz/,\
+filenamemangle=s/.*\/([\d.-]+)/node-gyp-$1\.tar\.gz/ \
+https://github.com/TooTallNate/node-gyp/tags .*/tarball/([\d.-]+)	

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-gyp.git



More information about the Pkg-javascript-commits mailing list