Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl_audiolib/
Date: Thu, 30 Jun 2022 02:03:04
Message-Id: 1656553840.19ea29f12e8fb208c3013a38b67fcd5d5812eec5.ionen@gentoo
1 commit: 19ea29f12e8fb208c3013a38b67fcd5d5812eec5
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 30 01:24:35 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 01:50:40 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19ea29f1
7
8 media-libs/sdl_audiolib: drop 0_pre20220410
9
10 Don't believe this was ever used, so let's cleanup right away.
11
12 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
13
14 media-libs/sdl_audiolib/Manifest | 1 -
15 .../sdl_audiolib/sdl_audiolib-0_pre20220410.ebuild | 59 ----------------------
16 2 files changed, 60 deletions(-)
17
18 diff --git a/media-libs/sdl_audiolib/Manifest b/media-libs/sdl_audiolib/Manifest
19 index e5637c68f6b6..952a696c3054 100644
20 --- a/media-libs/sdl_audiolib/Manifest
21 +++ b/media-libs/sdl_audiolib/Manifest
22 @@ -1,2 +1 @@
23 DIST sdl_audiolib-0_p20220622.tar.gz 1138752 BLAKE2B 01e565506b29e922f3eb5ff2705a0614e53c6afd43526d781eb83d86f54dab6692689de51d618e07779fe8c97ee2cfbe3de744f29c1798e3f10205141dcb28ea SHA512 ec6267665fb1a98fcfb91a40ebbd86f7bb14e9fed36509a903ba5408d0f4b8672b19421943de6a4b3d2d0b187f9531dae4b7c9f766ee07f9c1aefa08ab6a51e3
24 -DIST sdl_audiolib-0_pre20220410.tar.xz 223932 BLAKE2B 09f35684b64b2b96fd0230612cc8458a8c7b0b94860c9d616c90141cd6d8088048e783170180191ed9998b2601676892686dc7d8373c8507d71db59b919c178b SHA512 01ef7f4d8987e1e27b4413d21eefbb8a83ab720f64ed76fd6314244d0d53bed5a061f4a22d4967e21cc9f6086532d33fea233f3e72e8a7abc5a80108f74710c1
25
26 diff --git a/media-libs/sdl_audiolib/sdl_audiolib-0_pre20220410.ebuild b/media-libs/sdl_audiolib/sdl_audiolib-0_pre20220410.ebuild
27 deleted file mode 100644
28 index d993c84aa88b..000000000000
29 --- a/media-libs/sdl_audiolib/sdl_audiolib-0_pre20220410.ebuild
30 +++ /dev/null
31 @@ -1,59 +0,0 @@
32 -# Copyright 1999-2022 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -inherit cmake
38 -
39 -DESCRIPTION="audio decoding, resampling and mixing library"
40 -HOMEPAGE="https://github.com/realnc/SDL_audiolib"
41 -if [[ "${PV}" == *9999 ]] ; then
42 - inherit git-r3
43 - EGIT_REPO_URI="https://github.com/realnc/SDL_audiolib.git"
44 -else
45 - # No official releases from upstream yet
46 - SRC_URI="https://dev.gentoo.org/~polynomial-c/dist/${P}.tar.xz"
47 - KEYWORDS="~amd64 ~x86"
48 -fi
49 -LICENSE="LGPL-3"
50 -SLOT="0"
51 -
52 -IUSE="fluidsynth libsamplerate modplug mpg123 musepack openmpt opus sndfile soxr vorbis"
53 -
54 -RDEPEND="
55 - media-libs/libsdl2
56 - fluidsynth? ( media-sound/fluidsynth )
57 - libsamplerate? ( media-libs/libsamplerate )
58 - modplug? ( media-libs/libmodplug )
59 - mpg123? ( media-sound/mpg123 )
60 - musepack? ( media-sound/musepack-tools )
61 - openmpt? ( media-libs/libopenmpt )
62 - opus? ( media-libs/opusfile )
63 - sndfile? ( media-libs/libsndfile )
64 - soxr? ( media-libs/soxr )
65 - vorbis? ( media-libs/libvorbis )
66 -"
67 -DEPEND="${RDEPEND}"
68 -BDEPEND="
69 - virtual/pkgconfig
70 -"
71 -
72 -src_configure() {
73 - local mycmakeargs=(
74 - -DUSE_DEC_ADLMIDI=OFF
75 - -DUSE_DEC_BASSMIDI=OFF
76 - -DUSE_DEC_FLUIDSYNTH="$(usex fluidsynth)"
77 - -DUSE_DEC_MODPLUG="$(usex modplug)"
78 - -DUSE_DEC_MPG123="$(usex mpg123)"
79 - -DUSE_DEC_MUSEPACK="$(usex musepack)"
80 - -DUSE_DEC_OPENMPT="$(usex openmpt)"
81 - -DUSE_DEC_LIBOPUSFILE="$(usex opus)"
82 - -DUSE_DEC_SNDFILE="$(usex sndfile)"
83 - -DUSE_DEC_LIBVORBIS="$(usex vorbis)"
84 - -DUSE_DEC_WILDMIDI=OFF
85 - -DUSE_DEC_XMP=OFF
86 - -DUSE_RESAMP_SOXR="$(usex soxr)"
87 - -DUSE_RESAMP_SRC="$(usex libsamplerate)"
88 - )
89 - cmake_src_configure
90 -}