From 9a1642993e87ad9ab0401f7d7b88957e387f5e28 Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Tue, 13 Jul 2021 20:51:28 +0000 Subject: Tue Jul 13 20:51:28 UTC 2021 xap/seamonkey-2.53.8-x86_64-2.txz: Rebuilt. Fixed desktop files changing Terminal=0 to Terminal=false. Thanks to marav. --- source/kde/kde/build/minuet | 2 +- source/l/fluidsynth/doinst.sh | 6 ++ source/l/fluidsynth/fluidsynth.SlackBuild | 17 +++-- .../charset-normalizer.url | 1 + .../python-charset-normalizer.SlackBuild | 82 ++++++++++++++++++++++ source/l/python-charset-normalizer/slack-desc | 19 +++++ source/l/python-idna/python-idna.SlackBuild | 2 +- .../l/python-requests/python-requests.SlackBuild | 2 +- source/n/samba/samba.url | 4 +- .../audacious-plugins/audacious-plugins.SlackBuild | 2 +- .../audacious-plugins.SlackBuild.meson | 2 +- source/xap/seamonkey/seamonkey-mail.desktop | 2 +- source/xap/seamonkey/seamonkey.SlackBuild | 2 +- source/xap/seamonkey/seamonkey.desktop | 2 +- 14 files changed, 128 insertions(+), 17 deletions(-) create mode 100644 source/l/fluidsynth/doinst.sh create mode 100644 source/l/python-charset-normalizer/charset-normalizer.url create mode 100755 source/l/python-charset-normalizer/python-charset-normalizer.SlackBuild create mode 100644 source/l/python-charset-normalizer/slack-desc (limited to 'source') diff --git a/source/kde/kde/build/minuet b/source/kde/kde/build/minuet index d00491fd..0cfbf088 100644 --- a/source/kde/kde/build/minuet +++ b/source/kde/kde/build/minuet @@ -1 +1 @@ -1 +2 diff --git a/source/l/fluidsynth/doinst.sh b/source/l/fluidsynth/doinst.sh new file mode 100644 index 00000000..69043064 --- /dev/null +++ b/source/l/fluidsynth/doinst.sh @@ -0,0 +1,6 @@ +# If there's no default soundfont and minuet is installed, point to that one: +if [ ! -r usr/share/soundfonts/default.sf2 ]; then + if [ -r usr/share/minuet/soundfonts/GeneralUser-v1.47.sf2 ]; then + ln -sf /usr/share/minuet/soundfonts/GeneralUser-v1.47.sf2 usr/share/soundfonts/default.sf2 + fi +fi diff --git a/source/l/fluidsynth/fluidsynth.SlackBuild b/source/l/fluidsynth/fluidsynth.SlackBuild index 31dc7458..2cb19551 100755 --- a/source/l/fluidsynth/fluidsynth.SlackBuild +++ b/source/l/fluidsynth/fluidsynth.SlackBuild @@ -2,7 +2,8 @@ # Slackware build script for fluidsynth -# Copyright 2008-2013 Heinz Wiesinger, Amsterdam, The Netherlands +# Copyright 2008-2013 Heinz Wiesinger, Amsterdam, The Netherlands +# Copyright 2021 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,8 +26,8 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=fluidsynth -VERSION=$(printf ${PKGNAM}-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev) -BUILD=${BUILD:-4} +VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +BUILD=${BUILD:-1} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} @@ -88,19 +89,20 @@ cd build cmake \ -DCMAKE_C_FLAGS="$SLKCFLAGS" \ -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \ - -DCMAKE_EXE_LINKER_FLAGS="-ltermcap" \ - -DCMAKE_SHARED_LINKER_FLAGS="-ltermcap" \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_SUFFIX="$LIBDIRSUFFIX" \ -DDOC_INSTALL_DIR="doc" \ -DMAN_INSTALL_DIR="man/man1" \ - -Denable-ladspa=no \ + -Denable-ladspa=ON \ .. || exit 1 make $NUMJOBS || make || exit 1 make install DESTDIR=$PKG || exit 1 cd .. +# Create a directory for soundfonts: +mkdir -p $PKG/usr/share/soundfonts + 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 @@ -120,7 +122,7 @@ if [ -d $PKG/usr/man ]; then fi mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION -cp -a AUTHORS* COPYING* INSTALL LICENSE NEWS* README* THANKS* TODO* \ +cp -a AUTHORS* CONTRIBUTING* COPYING* INSTALL LICENSE* NEWS* README* THANKS* TODO* \ $PKG/usr/doc/$PKGNAM-$VERSION # If there's a ChangeLog, installing at least part of the recent history @@ -132,6 +134,7 @@ if [ -r ChangeLog ]; then fi mkdir -p $PKG/install +zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG diff --git a/source/l/python-charset-normalizer/charset-normalizer.url b/source/l/python-charset-normalizer/charset-normalizer.url new file mode 100644 index 00000000..058588e5 --- /dev/null +++ b/source/l/python-charset-normalizer/charset-normalizer.url @@ -0,0 +1 @@ +https://pypi.org/project/charset-normalizer diff --git a/source/l/python-charset-normalizer/python-charset-normalizer.SlackBuild b/source/l/python-charset-normalizer/python-charset-normalizer.SlackBuild new file mode 100755 index 00000000..b263f159 --- /dev/null +++ b/source/l/python-charset-normalizer/python-charset-normalizer.SlackBuild @@ -0,0 +1,82 @@ +#!/bin/bash + +# Copyright 2021 Patrick J. Volkerding, Sebeka, MN, 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=python-charset-normalizer +SRCNAM=charset-normalizer +VERSION=${VERSION:-$(echo $SRCNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +BUILD=${BUILD:-1} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +# If the variable PRINT_PACKAGE_NAME is set, then this script will report what +# the name of the created package would be, and then exit. This information +# could be useful to other scripts. +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz" + exit 0 +fi + +TMP=${TMP:-/tmp} +PKG=$TMP/package-$PKGNAM + +rm -rf $PKG +mkdir -p $TMP $PKG +cd $TMP +rm -rf $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.?z || exit 1 +cd $SRCNAM-$VERSION || exit 1 + +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 {} \+ + +python3 setup.py install --root=$PKG || exit 1 + +mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION +cp -a *.rst LICENSE* NOTICE PKG-INFO \ + $PKG/usr/doc/$PKGNAM-$VERSION +find $PKG/usr/doc/$PKGNAM-$VERSION -type f -exec chmod 0644 {} \+ + +# If there's a HISTORY.rst, installing at least part of the recent history +# is useful, but don't let it get totally out of control: +if [ -r HISTORY.rst ]; then + DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION) + cat HISTORY.rst | head -n 1000 > $DOCSDIR/HISTORY.rst + touch -r HISTORY.rst $DOCSDIR/HISTORY.rst +fi + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz diff --git a/source/l/python-charset-normalizer/slack-desc b/source/l/python-charset-normalizer/slack-desc new file mode 100644 index 00000000..52313660 --- /dev/null +++ b/source/l/python-charset-normalizer/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------------------------------------------------------| +python-charset-normalizer: python-charset-normalizer (charset detection for python) +python-charset-normalizer: +python-charset-normalizer: This library helps read text from an unknown charset encoding, +python-charset-normalizer: providing an alternative to the Universal Charset Encoding Detector, +python-charset-normalizer: also known as Chardet. +python-charset-normalizer: +python-charset-normalizer: +python-charset-normalizer: +python-charset-normalizer: +python-charset-normalizer: +python-charset-normalizer: diff --git a/source/l/python-idna/python-idna.SlackBuild b/source/l/python-idna/python-idna.SlackBuild index a5e6f9d2..3ce4eb5f 100755 --- a/source/l/python-idna/python-idna.SlackBuild +++ b/source/l/python-idna/python-idna.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=python-idna VERSION=${VERSION:-$(echo idna-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} SRCNAM=idna diff --git a/source/l/python-requests/python-requests.SlackBuild b/source/l/python-requests/python-requests.SlackBuild index 1c942570..cd667504 100755 --- a/source/l/python-requests/python-requests.SlackBuild +++ b/source/l/python-requests/python-requests.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=python-requests VERSION=${VERSION:-$(echo requests-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-3} +BUILD=${BUILD:-1} SRCNAM=requests diff --git a/source/n/samba/samba.url b/source/n/samba/samba.url index e75de9bb..b4e7ea85 100644 --- a/source/n/samba/samba.url +++ b/source/n/samba/samba.url @@ -1,2 +1,2 @@ -https://download.samba.org/pub/samba/stable/samba-4.14.5.tar.gz -https://download.samba.org/pub/samba/stable/samba-4.14.5.tar.asc +https://download.samba.org/pub/samba/stable/samba-4.14.6.tar.gz +https://download.samba.org/pub/samba/stable/samba-4.14.6.tar.asc diff --git a/source/xap/audacious-plugins/audacious-plugins.SlackBuild b/source/xap/audacious-plugins/audacious-plugins.SlackBuild index 65d939a2..5e6ce17d 100755 --- a/source/xap/audacious-plugins/audacious-plugins.SlackBuild +++ b/source/xap/audacious-plugins/audacious-plugins.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=audacious-plugins VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} # Whether to include faad/aac support: FAAD=${FAAD:---disable-aac} diff --git a/source/xap/audacious-plugins/audacious-plugins.SlackBuild.meson b/source/xap/audacious-plugins/audacious-plugins.SlackBuild.meson index bfb33c58..a49c0c4a 100755 --- a/source/xap/audacious-plugins/audacious-plugins.SlackBuild.meson +++ b/source/xap/audacious-plugins/audacious-plugins.SlackBuild.meson @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=audacious-plugins VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-3} # Whether to include faad/aac support: FAAD=${FAAD:-false} diff --git a/source/xap/seamonkey/seamonkey-mail.desktop b/source/xap/seamonkey/seamonkey-mail.desktop index 1e0b62b1..f53d8cb8 100644 --- a/source/xap/seamonkey/seamonkey-mail.desktop +++ b/source/xap/seamonkey/seamonkey-mail.desktop @@ -3,6 +3,6 @@ Name=SeaMonkey Mail Comment=Read Mail with SeaMonkey Exec=/usr/bin/seamonkey -mail Icon=/usr/share/pixmaps/seamonkey-mail-icon.png -Terminal=0 +Terminal=false Type=Application Categories=Application;Network; diff --git a/source/xap/seamonkey/seamonkey.SlackBuild b/source/xap/seamonkey/seamonkey.SlackBuild index 77b65112..a18e3814 100755 --- a/source/xap/seamonkey/seamonkey.SlackBuild +++ b/source/xap/seamonkey/seamonkey.SlackBuild @@ -26,7 +26,7 @@ PKGNAM=seamonkey TARBALLVER=${VERSION:-$(basename $(ls seamonkey-*.tar.* | cut -d - -f 2 | rev | cut -f 3- -d . | rev) .source)} # Strip the end from beta versions: VERSION=$(echo $TARBALLVER | cut -f 1 -d b) -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/xap/seamonkey/seamonkey.desktop b/source/xap/seamonkey/seamonkey.desktop index eaf81ddf..827ac20b 100644 --- a/source/xap/seamonkey/seamonkey.desktop +++ b/source/xap/seamonkey/seamonkey.desktop @@ -3,7 +3,7 @@ Name=SeaMonkey Comment=Web Browser Exec=/usr/bin/seamonkey Icon=/usr/share/pixmaps/seamonkey-icon.png -Terminal=0 +Terminal=false Type=Application MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https; Categories=Application;Network; -- cgit v1.2.3