From c2e3780e4fedf3d73883fa9e28a45bd8f196352d Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Mon, 1 Apr 2013 22:51:22 +0200 Subject: [PATCH] first commit --- LICENSE | 32 +++++++++++++++++++++++++ README.md | 3 +++ npm2tgz | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 106 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100755 npm2tgz diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2ec1bf9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,32 @@ +# Author:: Gwenhael Le Moine +# Copyright:: Copyright (c) 2013, Gwenhael Le Moine +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# +# * Neither the name of the @organization@ nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GWENHAEL LE +MOINE BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN +# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..e36c48d --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +npm2tgz generates a Slackware compatible package from a node module + usage: npm2tgz + The resulting package is located under /tmp diff --git a/npm2tgz b/npm2tgz new file mode 100755 index 0000000..15881a5 --- /dev/null +++ b/npm2tgz @@ -0,0 +1,71 @@ +#!/bin/sh +# +# Author:: Gwenhael Le Moine +# Copyright:: Copyright (c) 2013, Gwenhael Le Moine +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# +# * Neither the name of the @organization@ nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GWENHAEL LE MOINE BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN +# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# + +BUILD=${BUILD:=1} +TAG=${TAG:=SBo} +OUTPUT=${OUTPUT:=/tmp} +ARCH=${ARCH:=npmjs} +PREFIX=${PREFIX:=/usr} +NPMBIN=${NPMBIN:=/usr/bin/npm} + +PKG=/tmp/$TAG/pkg-$PRGNAM + +[ ! -x $NPMBIN ] && echo "npm missing" && exit 1 +if [ "x$1" == "x" ] || [ "x$1" == "x--help" ] || [ "x$1" == "x-h" ]; then + echo "$0 generates a Slackware compatible package from a node module" + echo " usage: $0 " + echo " The resulting package is located under $OUTPUT" + echo " possible OPTIONS are:" + echo " BUILD= (currently: $BUILD)" + echo " TAG= (currently: $TAG)" + echo " OUTPUT= (currently: $OUTPUT)" + echo " ARCH= (currently: $ARCH)" + echo " PREFIX= (currently: $PREFIX)" + echo " NPMBIN= (currently: $NPMBIN)" + + exit 1 +fi + +PRGNAM=$1 + +[ -e $PKG ] && rm -fr $PKG +mkdir -p $PKG + +DESTDIR=$PKG npm install -g $PRGNAM + +VERSION=$(grep -i "\"version\": \"\(.*\)\"," $PKG/usr/lib$(uname -m | grep -o "64")/node_modules/$PRGNAM/package.json | sed 's|^[ ]*"version": "\(.*\)",$|\1|g') + +cd $PKG +makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | tr - .)-$ARCH-$BUILD$TAG.txz