Changeset ac00c8f for npl/overig
- Timestamp:
- 09/30/19 19:59:45 (6 years ago)
- Branches:
- master
- Children:
- 9befa48
- Parents:
- 42fa616
- Location:
- npl/overig/mozilla_nss
- Files:
-
- 2 added
- 9 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
npl/overig/mozilla_nss/mozilla-nss.SlackBuild.orig
r42fa616 rac00c8f 1 #!/bin/ sh1 #!/bin/bash 2 2 # Copyright 2005, 2006, 2008, 2009, 2010, 2012 Eric Hameleers, Eindhoven, NL 3 # Copyright 2013, 2014, 2015 Patrick J. Volkerding, Sebeka, MN, USA3 # Copyright 2013, 2014, 2015, 2017, 2018 Patrick J. Volkerding, Sebeka, MN, USA 4 4 # All rights reserved. 5 5 # … … 23 23 # ----------------------------------------------------------------------------- 24 24 25 cd $(dirname $0) ; CWD=$(pwd) 26 25 27 PKGNAM=mozilla-nss 26 28 SRCNAM=nss 27 VERSION=${VERSION:-3. 23}28 NSPR=${NSPR:-4. 12}29 VERSION=${VERSION:-3.46} 30 NSPR=${NSPR:-4.22} 29 31 BUILD=${BUILD:-1} 30 32 … … 39 41 *) export ARCH=$MARCH ;; 40 42 esac 43 fi 44 45 # If the variable PRINT_PACKAGE_NAME is set, then this script will report what 46 # the name of the created package would be, and then exit. This information 47 # could be useful to other scripts. 48 if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then 49 echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz" 50 exit 0 41 51 fi 42 52 … … 56 66 fi 57 67 58 CWD=$(pwd)59 68 TMP=${TMP:-/tmp} 60 69 PKG=$TMP/package-$PKGNAM 61 70 62 71 # Seems parallel build does not work with this. 63 #NUMJOBS=${NUMJOBS:-" -j 7"}72 #NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} 64 73 65 74 rm -rf $PKG … … 69 78 rm -rf nss-${VERSION} 70 79 rm -rf nspr-${NSPR} 71 tar xvf $CWD/nss-$VERSION.tar.?z *|| exit 180 tar xvf $CWD/nss-$VERSION.tar.?z || exit 1 72 81 cd nss-$VERSION 73 tar xvf $CWD/nspr-$NSPR.tar.?z *|| exit 182 tar xvf $CWD/nspr-$NSPR.tar.?z || exit 1 74 83 mv nspr*/nspr . 84 85 # -Werror is problematic with gcc7: 86 sed -i "s|\ -Werror| |" nss/coreconf/Werror.mk || exit 1 75 87 76 88 # Make sure ownerships and permissions are sane: … … 92 104 cd nss 93 105 # Seems parallel build does not work with this. 94 #make $NUMJOBS nss_build_all export 95 make nss_build_all export 106 #make $NUMJOBS nss_build_all export || exit 1 107 make nss_build_all export || exit 1 96 108 cd - 97 109 -
npl/overig/mozilla_nss/mozilla_nss.SlackBuild
r42fa616 rac00c8f 5 5 # Created at Mon Apr 18 23:56:32 CEST 2016 6 6 #DEP:sqlite 7 7 #DEP:zlib 8 8 9 9 ########### source original slackbuild (hopefully we dont need to modify it) 10 10 CWD=`pwd` 11 11 set -e 12 unset MAKEFLAGS12 #unset MAKEFLAGS 13 13 source ./mozilla-nss.SlackBuild.orig 14 14 -
npl/overig/mozilla_nss/mozilla_nss.build
r42fa616 rac00c8f 1 6477 1 1 -
npl/overig/mozilla_nss/mozilla_nss.depver
r42fa616 rac00c8f 1 1 sqlite 2 2 zlib 0 -
npl/overig/mozilla_nss/mozilla_nss.md5
r42fa616 rac00c8f 2 2 751419260aa954499f7abaabaa882bbe ./gpl-2.0.txt 3 3 243b725d71bb5df4a1e5920b344b86ad ./lgpl-2.1.txt 4 3c3b1a73d4e67e4d0cc724eb4d2a5d18./mozilla_nss_dev.pkg5 487ce02bcdefe4774b5d1adbd3fd429d./mozilla_nss.pkg6 6b5d02888abb1cbdcba805b324ed517d./mozilla_nss.SlackBuild7 3c47548e084b5c6fe1aee8ceab579d2c./mozilla_nss.SlackBuild.log.gz8 194636fea4b877ce66e45d0225040587./mozilla-nss.SlackBuild.orig4 474e5707d10914321f2a8879668dc0ab ./mozilla_nss_dev.pkg 5 24b33fee92f8d023af33408178fecb61 ./mozilla_nss.pkg 6 3b1456678c56557519f04e2be7a8c893 ./mozilla_nss.SlackBuild 7 fe3b6f7a2c1c9a492136e022d7f592fb ./mozilla_nss.SlackBuild.log.gz 8 307a540418961fd4d093cf2e5fd9e359 ./mozilla-nss.SlackBuild.orig 9 9 bfe1f75d606912a4111c90743d6c7325 ./MPL-1.1.txt 10 9adc1f58e62379d9f8f634eb59d4290f ./nspr-4.12.tar.xz11 bbc70aac06f945b406aa339ea320a411 ./nss-3.23.tar.xz10 cb7595bc9f2516fe60941b97a31f5194 ./nspr-4.22.tar.lz 11 f1ce881ca83d801fcea65dab1e5bd9f9 ./nss-3.46.tar.lz 12 12 46bee81908f1e5b26d6a7a2e14c64d9f ./nss-config.in 13 595b1c2bf29a738662b3fda1edf729dd./slack-desc13 d6181c85e24c9c0caff648ec5bf26707 ./slack-desc -
npl/overig/mozilla_nss/mozilla_nss.version
r42fa616 rac00c8f 1 3. 231 3.46 -
npl/overig/mozilla_nss/mozilla_nss_dev.build
r42fa616 rac00c8f 1 6477 1 1 -
npl/overig/mozilla_nss/mozilla_nss_dev.version
r42fa616 rac00c8f 1 3. 231 3.46 -
npl/overig/mozilla_nss/slack-desc
r42fa616 rac00c8f 1 1 # HOW TO EDIT THIS FILE: 2 # The "handy ruler" below makes it easier to edit a package description. 2 # The "handy ruler" below makes it easier to edit a package description. Line 3 3 # up the first '|' above the ':' following the base package name, and the '|' 4 # on the right side marks the last column you can put a character in. 5 # make exactly 11 lines for the formatting to be correct. 4 # on the right side marks the last column you can put a character in. You must 5 # make exactly 11 lines for the formatting to be correct. It's also 6 6 # customary to leave one space after the ':'. 7 7
Note: See TracChangeset
for help on using the changeset viewer.