diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2021-07-15 22:37:59 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2021-07-16 08:59:48 +0200 |
commit | 3c1ca4fba7f2eb67b5526d02b29849e5ff7cb2c7 (patch) | |
tree | 62df56661568921dfc5b7c93db02453e5e02eaff /source | |
parent | a5c7f74c57c8159bdc2580c9792c75a723bf66c1 (diff) | |
download | current-3c1ca4fba7f2eb67b5526d02b29849e5ff7cb2c7.tar.gz |
Thu Jul 15 22:37:59 UTC 202120210715223759
d/cmake-3.21.0-x86_64-1.txz: Upgraded.
d/python-setuptools-57.2.0-x86_64-1.txz: Upgraded.
kde/ktexteditor-5.84.0-x86_64-2.txz: Rebuilt.
Recompiled to use editorconfig-core-c-0.12.5. Thanks to Heinz Wiesinger.
l/editorconfig-core-c-0.12.5-x86_64-1.txz: Added.
Thanks to David Demelier.
l/python-charset-normalizer-2.0.2-x86_64-1.txz: Upgraded.
l/talloc-2.3.3-x86_64-1.txz: Upgraded.
l/tdb-1.4.4-x86_64-1.txz: Upgraded.
l/tevent-0.11.0-x86_64-1.txz: Upgraded.
x/mesa-21.1.5-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source')
-rw-r--r-- | source/kde/kde/build/ktexteditor | 2 | ||||
-rwxr-xr-x | source/l/editorconfig-core-c/editorconfig-core-c.SlackBuild | 107 | ||||
-rw-r--r-- | source/l/editorconfig-core-c/editorconfig-core-c.url | 1 | ||||
-rw-r--r-- | source/l/editorconfig-core-c/slack-desc | 19 | ||||
-rwxr-xr-x | source/l/talloc/talloc.SlackBuild | 2 | ||||
-rwxr-xr-x | source/l/tdb/tdb.SlackBuild | 2 | ||||
-rwxr-xr-x | source/l/tevent/tevent.SlackBuild | 4 | ||||
-rw-r--r-- | source/x/mesa/README.GIT | 16 |
8 files changed, 132 insertions, 21 deletions
diff --git a/source/kde/kde/build/ktexteditor b/source/kde/kde/build/ktexteditor index d00491fd..0cfbf088 100644 --- a/source/kde/kde/build/ktexteditor +++ b/source/kde/kde/build/ktexteditor @@ -1 +1 @@ -1 +2 diff --git a/source/l/editorconfig-core-c/editorconfig-core-c.SlackBuild b/source/l/editorconfig-core-c/editorconfig-core-c.SlackBuild new file mode 100755 index 00000000..4c7137f6 --- /dev/null +++ b/source/l/editorconfig-core-c/editorconfig-core-c.SlackBuild @@ -0,0 +1,107 @@ +#!/bin/bash + +# Copyright 2019 David Demelier, France +# Copyright 2021 Heinz Wiesinger, Amsterdam, NL +# 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=editorconfig-core-c +VERSION=${VERSION:-$(echo $PKGNAM-*.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 + +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 + +rm -rf $PKG +mkdir -p $TMP $PKG +cd $TMP +rm -rf $PKGNAM-$VERSION +tar xvf $CWD/$PKGNAM-$VERSION.tar.?z || exit 1 +cd $PKGNAM-$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 {} \+ + +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_MANDIR=/usr/man \ + -DCMAKE_BUILD_TYPE=Release \ + .. + make $NUMJOBS || make || exit 1 + make install/strip DESTDIR=$PKG || exit 1 +cd .. + +# Remove static lib +rm -f $PKG/usr/lib$LIBDIRSUFFIX/*.a + +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 + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION +cp -a \ + CHANGELOG* CONTRIB* INSTALL* LICENSE* README* \ + $PKG/usr/doc/$PKGNAM-$VERSION + +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/editorconfig-core-c/editorconfig-core-c.url b/source/l/editorconfig-core-c/editorconfig-core-c.url new file mode 100644 index 00000000..6b2c7ae5 --- /dev/null +++ b/source/l/editorconfig-core-c/editorconfig-core-c.url @@ -0,0 +1 @@ +https://github.com/editorconfig/editorconfig-core-c diff --git a/source/l/editorconfig-core-c/slack-desc b/source/l/editorconfig-core-c/slack-desc new file mode 100644 index 00000000..1e432dc4 --- /dev/null +++ b/source/l/editorconfig-core-c/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------------------------------------------------------| +editorconfig-core-c: editorconfig-core-c (EditorConfig core C library) +editorconfig-core-c: +editorconfig-core-c: EditorConfig makes it easy to maintain the correct coding style when +editorconfig-core-c: switching between different text editors and between different +editorconfig-core-c: projects. The EditorConfig project maintains a file format and plugins +editorconfig-core-c: for various text editors which allow this file format to be read and +editorconfig-core-c: used by those editors. For information on the file format and +editorconfig-core-c: supported text editors, see the EditorConfig website. +editorconfig-core-c: +editorconfig-core-c: Homepage: https://editorconfig.org +editorconfig-core-c: diff --git a/source/l/talloc/talloc.SlackBuild b/source/l/talloc/talloc.SlackBuild index ed8204ca..da040d03 100755 --- a/source/l/talloc/talloc.SlackBuild +++ b/source/l/talloc/talloc.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=talloc VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/l/tdb/tdb.SlackBuild b/source/l/tdb/tdb.SlackBuild index b7f4bfa7..2a1ec9ac 100755 --- a/source/l/tdb/tdb.SlackBuild +++ b/source/l/tdb/tdb.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=tdb VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-6} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/l/tevent/tevent.SlackBuild b/source/l/tevent/tevent.SlackBuild index c5ff4b3f..7bb29af5 100755 --- a/source/l/tevent/tevent.SlackBuild +++ b/source/l/tevent/tevent.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=tevent VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-6} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -98,7 +98,7 @@ CFLAGS="$SLKCFLAGS" \ --infodir=/usr/info \ --disable-rpath \ --disable-rpath-install \ - --bundled-libraries=NONE \ + --bundled-libraries=cmocka \ --builtin-libraries=replace \ --disable-silent-rules \ --build=$ARCH-slackware-linux || exit 1 diff --git a/source/x/mesa/README.GIT b/source/x/mesa/README.GIT deleted file mode 100644 index 4e79f374..00000000 --- a/source/x/mesa/README.GIT +++ /dev/null @@ -1,16 +0,0 @@ -Anonymous git Access - - To get the Mesa sources anonymously (read-only): - - 1. Install the git software on your computer if needed. - - 2. Get an initial, local copy of the repository with: - - git clone git://anongit.freedesktop.org/git/mesa/mesa - - - 3. Later, you can update your tree from the master repository with: - - git pull origin - - |