From 4ed7a1653e95bee0aa88ee9a9e091585985b28c6 Mon Sep 17 00:00:00 2001 From: B. Watson Date: Sat, 25 Jan 2020 12:27:28 -0500 Subject: audio/jack2: Removed (renamed to jack). Signed-off-by: B. Watson --- audio/jack2/README | 42 --------------- audio/jack2/jack2.SlackBuild | 119 ------------------------------------------- audio/jack2/jack2.info | 10 ---- audio/jack2/setcap.sh | 16 ------ audio/jack2/slack-desc | 19 ------- 5 files changed, 206 deletions(-) delete mode 100644 audio/jack2/README delete mode 100644 audio/jack2/jack2.SlackBuild delete mode 100644 audio/jack2/jack2.info delete mode 100644 audio/jack2/setcap.sh delete mode 100644 audio/jack2/slack-desc (limited to 'audio') diff --git a/audio/jack2/README b/audio/jack2/README deleted file mode 100644 index f812939e7c..0000000000 --- a/audio/jack2/README +++ /dev/null @@ -1,42 +0,0 @@ -jackdmp (aka JACK2) is a C++ version of the JACK low-latency audio -server for multi-processor machines. It is a new implementation -of the JACK server core features that aims in removing some -limitations of the JACK1 design. The activation system has been -changed for a data flow model and lock-free programming techniques -for graph access have been used to have a more dynamic and -robust system. - -- jackdmp use a new client activation model that allows simultaneous -client execution (on a smp machine) when parallel clients exist -in the graph (client that have the same inputs). This activation model -allows to better use available CPU on a smp machine, but also works -on a mono-processor machine. - -- jackdmp use a lock-free way to access (read/write) the client graph, -thus allowing connections/disconnection to be done without -interrupting the audio stream. The result is that -connections/disconnections are glitch-free. - -- jackdmp can work in 2 different modes at the server level : - - synchronous activation : in a given cycle, the server waits for - all clients to be finished (similar to normal jackd) - - asynchronous activation : in a given cycle, the server does not - wait for all clients to be finished and use output buffer - computed the previous cycle. - -The audible result of this mode is that if a client is not activated -during one cycle, other clients may still run and the resulting audio -stream will still be produced (even if its partial in some way). -This mode usually result in fewer (less audible) audio glitches in a -loaded system. - -NOTE: this package conflicts with jack-audio-connection-kit: install -only one of the two. - -This package uses POSIX filesystem capabilities to execute with -elevated privileges (required for realtime audio processing). This -may be considered a security/stability risk. Please read -http://www.slackbuilds.org/caps/ for more information. To disable -capabilities, pass SETCAP=no to the script. - -Optional dependencies are celt, libffado and opus. diff --git a/audio/jack2/jack2.SlackBuild b/audio/jack2/jack2.SlackBuild deleted file mode 100644 index b181f22420..0000000000 --- a/audio/jack2/jack2.SlackBuild +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/sh - -# Slackware build script for "jack2". - -# Copyright 2014 Yanes Checcacci Balod , Brazil -# Copyright 2014-2015 Marcel Saegebarth -# Copyright 2018 B. Watson -# 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. - -# 20200112 bkw: get rid of --profile (thanks, dive!), BUILD=2. -# 20191201 bkw: update for v1.9.14 (including new python3 dep). -# 20180714 bkw: -# - Take over maintenance. -# - Update for v1.9.12. -# - Move HTML docs to proper Slackware doc dir. -# - i486 => i586. - -PRGNAM=jack2 -VERSION=${VERSION:-1.9.14} -BUILD=${BUILD:-2} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i586" - 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 -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ - \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ - -# Minor source of incompatibility between jack 1.x and 2.x: some jack -# apps don't add -lpthread to their CFLAGS because they assume jack.pc -# will already include it (it does, in 1.x). So make 2 act like 1: -sed -i '/^Libs:/s,$, -lpthread,' jack.pc.in - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./waf configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --mandir=/usr/man/man1 \ - --htmldir=/usr/doc/$PRGNAM-$VERSION/html \ - --classic \ - --dbus \ - --alsa - -./waf build -./waf install --destdir=$PKG - -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/$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 - -# Only add capability stuff if not disabled: -if [ "${SETCAP:-yes}" = "yes" ]; then - cat $CWD/setcap.sh >> $PKG/install/doinst.sh - # Only allow execution by audio group - chown root:audio $PKG/usr/bin/* - chmod 0750 $PKG/usr/bin/* -fi - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/audio/jack2/jack2.info b/audio/jack2/jack2.info deleted file mode 100644 index aca468f978..0000000000 --- a/audio/jack2/jack2.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="jack2" -VERSION="1.9.14" -HOMEPAGE="http://jackaudio.org/" -DOWNLOAD="https://github.com/jackaudio/jack2/archive/v1.9.14/jack2-1.9.14.tar.gz" -MD5SUM="b63b5cf65fc43ccf9585d274fe91069f" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="python3" -MAINTAINER="B. Watson" -EMAIL="yalhcru@gmail.com" diff --git a/audio/jack2/setcap.sh b/audio/jack2/setcap.sh deleted file mode 100644 index 44b2180da1..0000000000 --- a/audio/jack2/setcap.sh +++ /dev/null @@ -1,16 +0,0 @@ -if [ -x /sbin/setcap ]; then - bin=( - jackdbus jack_monitor_client jack_latent_client alsa_in - jack_midi_dump jack_showtime jack_rec jack_zombie jack_midiseq - jack_thru jack_connect jack_net_slave jack_bufsize jack_wait - alsa_out jack_freewheel jack_server_control jack_net_master - jack_evmon jack_metro jack_simple_client jack_lsp jack_cpu - jack_control jack_netsource jack_test jack_session_notify - jack_alias jack_iodelay jackd jack_simple_session_client - jack_midisine jack_unload jack_load jack_samplerate - jack_midi_latency_test jack_cpu_load jack_multiple_metro) - - for i in ${bin[@]}; do - /sbin/setcap cap_ipc_lock,cap_sys_nice=ep usr/bin/$i - done -fi diff --git a/audio/jack2/slack-desc b/audio/jack2/slack-desc deleted file mode 100644 index fe5696c4ca..0000000000 --- a/audio/jack2/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------------------------------------------------------| -jack2: jack2 (Jack Sound Server) -jack2: -jack2: JACK is system for handling real-time, low latency audio (and MIDI). -jack2: It can connect a number of different applications to an audio device, -jack2: as well as allowing them to share audio between themselves. -jack2: Its clients can run in their own processes (ie. as normal apps), or -jack2: run in their own processes (ie. as normal applications), or can run -jack2: within the JACK server (ie. as a "plugin"). JACK also has support for -jack2: distributing audio processing across a network, both fast & reliable -jack2: LANs as well as slower, less reliable WANs. -jack2: -- cgit v1.2.3