diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2018-07-31 05:53:40 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-07-31 21:00:36 +0200 |
commit | da51cf8739bc365374ee8a91bb2db905b5e38b82 (patch) | |
tree | fbec692c9236193c40158a822a6e8d20c294c002 /source | |
parent | 0cffe669e3c3f960f8a0fcc2a1593bec82d2755d (diff) | |
download | current-da51cf8739bc365374ee8a91bb2db905b5e38b82.tar.gz current-da51cf8739bc365374ee8a91bb2db905b5e38b82.tar.xz |
Tue Jul 31 05:53:40 UTC 201820180731055340
a/kernel-firmware-20180730_7b5835f-noarch-1.txz: Upgraded.
l/fuse-2.9.8-x86_64-1.txz: Upgraded.
l/gdbm-1.17-x86_64-1.txz: Upgraded.
l/seamonkey-solibs-2.49.4-x86_64-1.txz: Upgraded.
l/utf8proc-2.2.0-x86_64-1.txz: Upgraded.
xap/seamonkey-2.49.4-x86_64-1.txz: Upgraded.
This update contains security fixes and improvements.
For more information, see:
http://www.seamonkey-project.org/releases/seamonkey2.49.4
(* Security fix *)
Diffstat (limited to 'source')
-rwxr-xr-x | source/l/fuse/convert-gz-to-lz-drop-huge-html.sh | 33 | ||||
-rwxr-xr-x | source/l/fuse/fuse.SlackBuild | 2 | ||||
-rw-r--r-- | source/l/fuse/slack-desc | 4 | ||||
-rwxr-xr-x | source/xap/seamonkey/seamonkey.SlackBuild | 2 |
4 files changed, 37 insertions, 4 deletions
diff --git a/source/l/fuse/convert-gz-to-lz-drop-huge-html.sh b/source/l/fuse/convert-gz-to-lz-drop-huge-html.sh new file mode 100755 index 000000000..97d0080dc --- /dev/null +++ b/source/l/fuse/convert-gz-to-lz-drop-huge-html.sh @@ -0,0 +1,33 @@ +#!/bin/sh + +# Copyright 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# 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. + +cd $(dirname $0) ; CWD=$(pwd) + +PKGNAM=fuse +VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +rm -rf fuse-${VERSION} fuse-${VERSION}.tar fuse-${VERSION}.tar.lz +gpg --verify fuse-${VERSION}.tar.gz.asc || exit 1 +tar xf fuse-${VERSION}.tar.gz || exit 1 +rm -f fuse-${VERSION}/doc/html/* +tar cf fuse-${VERSION}.tar fuse-${VERSION} +plzip -9 fuse-${VERSION}.tar +rm -rf fuse-${VERSION} diff --git a/source/l/fuse/fuse.SlackBuild b/source/l/fuse/fuse.SlackBuild index daead1229..80b23fd34 100755 --- a/source/l/fuse/fuse.SlackBuild +++ b/source/l/fuse/fuse.SlackBuild @@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=fuse VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} NUMJOBS=${NUMJOBS:-" -j7 "} diff --git a/source/l/fuse/slack-desc b/source/l/fuse/slack-desc index b3f87e442..7199c74e7 100644 --- a/source/l/fuse/slack-desc +++ b/source/l/fuse/slack-desc @@ -6,14 +6,14 @@ # customary to leave one space after the ':'. |-----handy-ruler------------------------------------------------------| -fuse: FUSE (Filesystem in Userspace) +fuse: fuse (Filesystem in Userspace) fuse: fuse: FUSE is a simple interface for userspace programs to export a virtual fuse: filesystem to the Linux kernel. FUSE also aims to provide a secure fuse: method for non privileged users to create and mount their own fuse: filesystem implementations. fuse: -fuse: The FUSE web site can be found here: http://fuse.sourceforge.net +fuse: Homepage: https://github.com/libfuse/libfuse fuse: fuse: fuse: diff --git a/source/xap/seamonkey/seamonkey.SlackBuild b/source/xap/seamonkey/seamonkey.SlackBuild index c26a13249..c0f0a8cb9 100755 --- a/source/xap/seamonkey/seamonkey.SlackBuild +++ b/source/xap/seamonkey/seamonkey.SlackBuild @@ -171,7 +171,7 @@ echo "ac_add_options --enable-optimize=\"${OPTIMIZE_FLAG}\"" >> .mozconfig for option in $OPTIONS; do echo "ac_add_options $option" >> .mozconfig; done echo "ac_add_options --disable-tests" >> .mozconfig -make -f client.mk build || exit 1 +make -f client.mk build || make -f client.mk build || exit 1 make -f client.mk install DESTDIR=$PKG || exit 1 # Keep the "obsolete" nspr headers: |