summaryrefslogtreecommitdiffstats
path: root/trinity-base/arts
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-11-28 19:20:53 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-12-01 23:25:44 +0100
commit62d47dd844d191b892ae0edec58ff2cdf3532e40 (patch)
tree45e551b6261dbe852fb69037566f2f23f4bad2c9 /trinity-base/arts
parenteb922946c6680e0c88a256e2897a27b3b6a757a6 (diff)
downloadtde-packaging-gentoo-62d47dd844d191b892ae0edec58ff2cdf3532e40.tar.gz
tde-packaging-gentoo-62d47dd844d191b892ae0edec58ff2cdf3532e40.zip
*/*: Remove 14.0.7 packages
Fixes were only made to 14.0.8 and CI is still very red for 14.0.7. Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'trinity-base/arts')
-rw-r--r--trinity-base/arts/Manifest1
-rw-r--r--trinity-base/arts/arts-14.0.7.ebuild60
2 files changed, 0 insertions, 61 deletions
diff --git a/trinity-base/arts/Manifest b/trinity-base/arts/Manifest
index d389303b..17019aaa 100644
--- a/trinity-base/arts/Manifest
+++ b/trinity-base/arts/Manifest
@@ -1,2 +1 @@
-DIST arts-trinity-14.0.7.tar.xz 681500 BLAKE2B 7b5c5dfe9d5eb3ef39da630c28b15e3fdef8b6b099c3390bb00d70f6c31f803dfd5a739174a8d7c2d6038f633c9822bbd4a900f9f812d6bfffd0b63540121ec9 SHA512 d877a885d827d14a3080266e3572a6ec141deca371aec45796e59f66658d1288b75a47b3036ccfa70d1371cd80bc7161ed1b1816d9aa09a21a4b3f7a1295c9fa
DIST arts-trinity-14.0.8.tar.xz 681888 BLAKE2B 986bed9f7450d39a26629077f9f966e2f34861539893250773e85d85c394e7ee2312a00066b5dacc653195d5b22f996fdc44ffddc188517e5a54d7cd15fce467 SHA512 e42d06787cb8e5c409b82db3470659a9d8066896a5116a5148d0ee30921a5bc4ce50155cdf5bac90f6afd3857038f8a5a3fe131b1d3e043a258859a24c183753
diff --git a/trinity-base/arts/arts-14.0.7.ebuild b/trinity-base/arts/arts-14.0.7.ebuild
deleted file mode 100644
index 1993272b..00000000
--- a/trinity-base/arts/arts-14.0.7.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Copyright 2020 The Trinity Desktop Project
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-TRINITY_MODULE_TYPE="dependencies"
-TRINITY_MODULE_NAME="arts"
-
-inherit trinity-base-2
-
-set-trinityver
-
-DESCRIPTION="aRts, the Trinity sound (and all-around multimedia) server/output manager"
-HOMEPAGE="https://trinitydesktop.org/"
-LICENSE="|| ( GPL-2 GPL-3 )"
-
-KEYWORDS="~amd64 ~x86"
-
-IUSE="alsa -artswrappersuid jack mp3 vorbis"
-SLOT="${TRINITY_VER}"
-
-DEPEND="~dev-tqt/tqtinterface-${PV}
- dev-libs/glib
- media-libs/audiofile
- mp3? ( media-libs/libmad )
- alsa? ( media-libs/alsa-lib )
- vorbis? ( media-libs/libogg media-libs/libvorbis )
- jack? ( media-sound/jack-audio-connection-kit )"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- mycmakeargs=(
- -DWITH_AUDIOFILE=ON
- -DWITH_MAD="$(usex mp3)"
- -DWITH_ALSA="$(usex alsa)"
- -DWITH_VORBIS="$(usex vorbis)"
- -DWITH_JACK="$(usex jack)"
- -DWITH_ESOUND=OFF
- -DWITH_SNDIO=OFF
- )
-
- trinity-base-2_src_configure
-}
-
-src_install() {
- trinity-base-2_src_install
-
- # Used for realtime priority, but off by default as it is a security hazard
- use artswrappersuid && chmod u+s "${D}/${TDEDIR}/bin/artswrapper"
-}
-
-pkg_postinst() {
- if ! use artswrappersuid ; then
- elog "Run chmod u+s ${TDEDIR}/bin/artswrapper to let artsd use realtime"
- elog "priority and so avoid possible skips in sound. However, on untrusted systems"
- elog "this creates the possibility of a DoS attack that'll use 100% cpu at realtime"
- elog "priority, and so is off by default. See Gentoo bug #7883."
- elog "Or, you can set the artswrappersuid USE flag to make the ebuild do this."
- fi
-}