diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-01-14 11:49:00 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-01-17 19:46:32 +0700 |
commit | f354c13382083c4a53544ff51a6041348a24b1a6 (patch) | |
tree | 8f9763fdf234d8a80fbea80caa3cd76d815a01db /development/yarn | |
parent | 1f9de7430fac551cbdffb44aab252a0f77811b8a (diff) | |
download | slackbuilds-f354c13382083c4a53544ff51a6041348a24b1a6.tar.gz slackbuilds-f354c13382083c4a53544ff51a6041348a24b1a6.tar.xz |
development/yarn: Added (Secure Dependency Management).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development/yarn')
-rw-r--r-- | development/yarn/README | 5 | ||||
-rw-r--r-- | development/yarn/slack-desc | 19 | ||||
-rw-r--r-- | development/yarn/yarn.SlackBuild | 92 | ||||
-rw-r--r-- | development/yarn/yarn.info | 10 |
4 files changed, 126 insertions, 0 deletions
diff --git a/development/yarn/README b/development/yarn/README new file mode 100644 index 00000000000..0fd60986032 --- /dev/null +++ b/development/yarn/README @@ -0,0 +1,5 @@ +yarn is a fast, reliable, and secure dependency management. + +It allows you to use and share code with other developers from around +the world. Yarn does this quickly, securely, and reliably so you don't ever +have to worry. diff --git a/development/yarn/slack-desc b/development/yarn/slack-desc new file mode 100644 index 00000000000..8124a3e8c71 --- /dev/null +++ b/development/yarn/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +yarn: yarn (Secure Dependency Management) +yarn: +yarn: yarn is a fast, reliable, and secure dependency management. +yarn: +yarn: It allows you to use and share code with other developers from around +yarn: the world. +yarn: +yarn: Yarn does this quickly, securely, and reliably so you don't ever +yarn: have to worry. +yarn: +yarn: Project URL: https://yarnpkg.com/ diff --git a/development/yarn/yarn.SlackBuild b/development/yarn/yarn.SlackBuild new file mode 100644 index 00000000000..7d0d960847f --- /dev/null +++ b/development/yarn/yarn.SlackBuild @@ -0,0 +1,92 @@ +#!/bin/sh + +# Slackware build script for yarn + +# Copyright 2018 Willy Sudiarto Raharjo <willysr@slackbuilds.org> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 THE AUTHOR 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. + +PRGNAM=yarn +VERSION=${VERSION:-1.3.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-v$VERSION +tar xvf $CWD/$PRGNAM-v$VERSION.tar.gz +cd $PRGNAM-v$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +mkdir -p $PKG/usr/bin/ $PKG/usr/lib${LIBDIRSUFFIX}/node_modules/yarn +cp -R * $PKG/usr/lib${LIBDIRSUFFIX}/node_modules/yarn + +( + cd $PKG/usr/bin/ + ln -s /usr/lib${LIBDIRSUFFIX}/node_modules/yarn/bin/yarn.js yarn + ln -s /usr/lib${LIBDIRSUFFIX}/node_modules/yarn/bin/yarn.js yarnpkg +) + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a LICENSE README.md $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/yarn/yarn.info b/development/yarn/yarn.info new file mode 100644 index 00000000000..14862ceae1d --- /dev/null +++ b/development/yarn/yarn.info @@ -0,0 +1,10 @@ +PRGNAM="yarn" +VERSION="1.3.2" +HOMEPAGE="https://yarnpkg.com/" +DOWNLOAD="https://github.com/yarnpkg/yarn/releases/download/v1.3.2/yarn-v1.3.2.tar.gz" +MD5SUM="db82fa09c996e9318f2f1d2ab99228f9" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="nodejs" +MAINTAINER="Willy Sudiarto Raharjo" +EMAIL="willysr@slackbuilds.org" |