From 8e40a85b15d82781db0816ef2f04a20947e6e308 Mon Sep 17 00:00:00 2001 From: Andrew Clemons Date: Thu, 17 Feb 2022 21:20:52 +1300 Subject: system/spl-solaris: Removed (fails to build, unused). Newer versions of zfs-on-linux no longer need this and it no longer builds on 15.0. Signed-off-by: Andrew Clemons Signed-off-by: Willy Sudiarto Raharjo --- system/spl-solaris/README | 19 ----- system/spl-solaris/doinst.sh | 3 - system/spl-solaris/slack-desc | 19 ----- system/spl-solaris/spl-solaris.SlackBuild | 119 ------------------------------ system/spl-solaris/spl-solaris.info | 10 --- 5 files changed, 170 deletions(-) delete mode 100644 system/spl-solaris/README delete mode 100644 system/spl-solaris/doinst.sh delete mode 100644 system/spl-solaris/slack-desc delete mode 100644 system/spl-solaris/spl-solaris.SlackBuild delete mode 100644 system/spl-solaris/spl-solaris.info diff --git a/system/spl-solaris/README b/system/spl-solaris/README deleted file mode 100644 index bda1ca4944..0000000000 --- a/system/spl-solaris/README +++ /dev/null @@ -1,19 +0,0 @@ -The Solaris Porting Layer (SPL) is a Linux kernel module which -provides many of the Solaris kernel APIs. This shim layer makes -it possible to run Solaris kernel code in the Linux kernel with -relatively minimal modification. - -This can be particularly useful when you want to track upstream -Solaris development closely and do not want the overhead of -maintaining a large patch which converts Solaris primitives to Linux -primitives. - -You need this if you want to run ZFS on Linux. - -NOTE: You'll need the kernel source code to be able to compile this. -This package is kernel dependent, so you'll need to recompile it for -every new kernel you choose to run. - -If you're building this for a kernel that isn't currently running, -you'll need to pass what that kernel's 'uname -r' output will be -to the KERN variable when running the build script, e.g. KERN=4.14.9 diff --git a/system/spl-solaris/doinst.sh b/system/spl-solaris/doinst.sh deleted file mode 100644 index ddc5b85c14..0000000000 --- a/system/spl-solaris/doinst.sh +++ /dev/null @@ -1,3 +0,0 @@ -if [ -x /sbin/depmod ]; then - chroot . /sbin/depmod -a >/dev/null 2>&1 -fi diff --git a/system/spl-solaris/slack-desc b/system/spl-solaris/slack-desc deleted file mode 100644 index ffce6023f9..0000000000 --- a/system/spl-solaris/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -spl-solaris: spl-solaris (solaris kernel API for linux) -spl-solaris: -spl-solaris: The Solaris Porting Layer (SPL) is a Linux kernel module -spl-solaris: which provides many of the Solaris kernel APIs. -spl-solaris: This shim layer makes it possible to run Solaris kernel code -spl-solaris: in the Linux kernel with relatively minimal modification. -spl-solaris: -spl-solaris: Homepage: https://zfsonlinux.org -spl-solaris: -spl-solaris: -spl-solaris: diff --git a/system/spl-solaris/spl-solaris.SlackBuild b/system/spl-solaris/spl-solaris.SlackBuild deleted file mode 100644 index 4ff4a42517..0000000000 --- a/system/spl-solaris/spl-solaris.SlackBuild +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/bash - -# Slackware build script for spl-solaris - -# Copyright 2017 Marcin Szychowski , Poland -# Copyright 2016 Kevin Paulus , Belgium -# Copyright 2013-2014 Petr Hejl - Czech Republic -# 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. - -# Modified by the SlackBuilds.org project - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=spl-solaris -SRCNAM=spl -VERSION=${VERSION:-0.7.13} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -KERN=${KERN:-"$(uname -r)"} -PKGVER="$(printf %s "${VERSION}_${KERN}" | tr - _)" - -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 "$PRGNAM-$PKGVER-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -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 - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -fr $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION -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 {} \; - -env -u ARCH \ -CFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --localstatedir=/var \ - --sysconfdir=/etc \ - --sbindir=/sbin \ - --includedir=/usr/include \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --with-linux="/lib/modules/${KERN}/source" \ - --with-linux-obj="/lib/modules/${KERN}/source" \ - --build=$ARCH-slackware-linux - -env -u ARCH make -env -u ARCH make install DESTDIR=$PKG - -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/$PRGNAM-$VERSION -cp -a AUTHORS COPYING DISCLAIMER $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$PKGVER-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/system/spl-solaris/spl-solaris.info b/system/spl-solaris/spl-solaris.info deleted file mode 100644 index d9263db039..0000000000 --- a/system/spl-solaris/spl-solaris.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="spl-solaris" -VERSION="0.7.13" -HOMEPAGE="https://zfsonlinux.org" -DOWNLOAD="https://github.com/zfsonlinux/zfs/releases/download/zfs-0.7.13/spl-0.7.13.tar.gz" -MD5SUM="b36a84314e7fc8ebb68affeb1e22a9dd" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Marcin Szychowski" -EMAIL="szycha@gmail.com" -- cgit v1.2.3