Changeset ac00c8f for npl/overig


Ignore:
Timestamp:
09/30/19 19:59:45 (6 years ago)
Author:
Edwin Eefting <edwin@datux.nl>
Branches:
master
Children:
9befa48
Parents:
42fa616
Message:

update to libreswan 3.29

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/sh
     1#!/bin/bash
    22# Copyright 2005, 2006, 2008, 2009, 2010, 2012  Eric Hameleers, Eindhoven, NL
    3 # Copyright 2013, 2014, 2015  Patrick J. Volkerding, Sebeka, MN, USA
     3# Copyright 2013, 2014, 2015, 2017, 2018  Patrick J. Volkerding, Sebeka, MN, USA
    44# All rights reserved.
    55#
     
    2323# -----------------------------------------------------------------------------
    2424
     25cd $(dirname $0) ; CWD=$(pwd)
     26
    2527PKGNAM=mozilla-nss
    2628SRCNAM=nss
    27 VERSION=${VERSION:-3.23}
    28 NSPR=${NSPR:-4.12}
     29VERSION=${VERSION:-3.46}
     30NSPR=${NSPR:-4.22}
    2931BUILD=${BUILD:-1}
    3032
     
    3941    *)       export ARCH=$MARCH ;;
    4042  esac
     43fi
     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.
     48if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
     49  echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
     50  exit 0
    4151fi
    4252
     
    5666fi
    5767
    58 CWD=$(pwd)
    5968TMP=${TMP:-/tmp}
    6069PKG=$TMP/package-$PKGNAM
    6170
    6271# Seems parallel build does not work with this.
    63 #NUMJOBS=${NUMJOBS:-" -j7 "}
     72#NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
    6473
    6574rm -rf $PKG
     
    6978rm -rf nss-${VERSION}
    7079rm -rf nspr-${NSPR}
    71 tar xvf $CWD/nss-$VERSION.tar.?z* || exit 1
     80tar xvf $CWD/nss-$VERSION.tar.?z || exit 1
    7281cd nss-$VERSION
    73 tar xvf $CWD/nspr-$NSPR.tar.?z* || exit 1
     82tar xvf $CWD/nspr-$NSPR.tar.?z || exit 1
    7483mv nspr*/nspr .
     84
     85# -Werror is problematic with gcc7:
     86sed -i "s|\ -Werror| |" nss/coreconf/Werror.mk || exit 1
    7587
    7688# Make sure ownerships and permissions are sane:
     
    92104cd nss
    93105  # 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
    96108cd -
    97109
  • npl/overig/mozilla_nss/mozilla_nss.SlackBuild

    r42fa616 rac00c8f  
    55# Created at Mon Apr 18 23:56:32 CEST 2016
    66#DEP:sqlite
    7 
     7#DEP:zlib
    88
    99########### source original slackbuild (hopefully we dont need to modify it)
    1010CWD=`pwd`
    1111set -e
    12 unset MAKEFLAGS
     12#unset MAKEFLAGS
    1313source ./mozilla-nss.SlackBuild.orig
    1414
  • npl/overig/mozilla_nss/mozilla_nss.build

    r42fa616 rac00c8f  
    1 6477
     11
  • npl/overig/mozilla_nss/mozilla_nss.depver

    r42fa616 rac00c8f  
    11sqlite  2
     2zlib    0
  • npl/overig/mozilla_nss/mozilla_nss.md5

    r42fa616 rac00c8f  
    22751419260aa954499f7abaabaa882bbe  ./gpl-2.0.txt
    33243b725d71bb5df4a1e5920b344b86ad  ./lgpl-2.1.txt
    4 3c3b1a73d4e67e4d0cc724eb4d2a5d18  ./mozilla_nss_dev.pkg
    5 487ce02bcdefe4774b5d1adbd3fd429d  ./mozilla_nss.pkg
    6 6b5d02888abb1cbdcba805b324ed517d  ./mozilla_nss.SlackBuild
    7 3c47548e084b5c6fe1aee8ceab579d2c  ./mozilla_nss.SlackBuild.log.gz
    8 194636fea4b877ce66e45d0225040587  ./mozilla-nss.SlackBuild.orig
     4474e5707d10914321f2a8879668dc0ab  ./mozilla_nss_dev.pkg
     524b33fee92f8d023af33408178fecb61  ./mozilla_nss.pkg
     63b1456678c56557519f04e2be7a8c893  ./mozilla_nss.SlackBuild
     7fe3b6f7a2c1c9a492136e022d7f592fb  ./mozilla_nss.SlackBuild.log.gz
     8307a540418961fd4d093cf2e5fd9e359  ./mozilla-nss.SlackBuild.orig
    99bfe1f75d606912a4111c90743d6c7325  ./MPL-1.1.txt
    10 9adc1f58e62379d9f8f634eb59d4290f  ./nspr-4.12.tar.xz
    11 bbc70aac06f945b406aa339ea320a411  ./nss-3.23.tar.xz
     10cb7595bc9f2516fe60941b97a31f5194  ./nspr-4.22.tar.lz
     11f1ce881ca83d801fcea65dab1e5bd9f9  ./nss-3.46.tar.lz
    121246bee81908f1e5b26d6a7a2e14c64d9f  ./nss-config.in
    13 595b1c2bf29a738662b3fda1edf729dd  ./slack-desc
     13d6181c85e24c9c0caff648ec5bf26707  ./slack-desc
  • npl/overig/mozilla_nss/mozilla_nss.version

    r42fa616 rac00c8f  
    1 3.23
     13.46
  • npl/overig/mozilla_nss/mozilla_nss_dev.build

    r42fa616 rac00c8f  
    1 6477
     11
  • npl/overig/mozilla_nss/mozilla_nss_dev.version

    r42fa616 rac00c8f  
    1 3.23
     13.46
  • npl/overig/mozilla_nss/slack-desc

    r42fa616 rac00c8f  
    11# HOW TO EDIT THIS FILE:
    2 # The "handy ruler" below makes it easier to edit a package description.  Line
     2# The "handy ruler" below makes it easier to edit a package description. Line
    33# 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.  You must
    5 # make exactly 11 lines for the formatting to be correct.  It's also
     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
    66# customary to leave one space after the ':'.
    77
Note: See TracChangeset for help on using the changeset viewer.