Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/sndio/
Date: Tue, 21 Sep 2021 12:12:37
Message-Id: 1632226329.4664be70a414935a18a2cb476410e33a79c0a333.arthurzam@gentoo
1 commit: 4664be70a414935a18a2cb476410e33a79c0a333
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Tue Sep 21 11:57:31 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 21 12:12:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4664be70
7
8 media-sound/sndio: Version cleanup, 1.7.0-r1
9
10 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
11 Closes: https://github.com/gentoo/gentoo/pull/22350
12 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
13
14 media-sound/sndio/Manifest | 1 -
15 media-sound/sndio/sndio-1.7.0-r1.ebuild | 53 ---------------------------------
16 2 files changed, 54 deletions(-)
17
18 diff --git a/media-sound/sndio/Manifest b/media-sound/sndio/Manifest
19 index a26a8429f5f..c039233d8e4 100644
20 --- a/media-sound/sndio/Manifest
21 +++ b/media-sound/sndio/Manifest
22 @@ -1,2 +1 @@
23 -DIST sndio-1.7.0.tar.gz 147989 BLAKE2B 20f5969cfd6d6a62d9c04e493eda7648f686ad394db18e43ae574db235f31a025705f40f9c6ea821e04449bc1cdbc35c23dbeff9575b71fccc92c24140341d7e SHA512 f9db7bad5f30e8790488c4d20198c8a5a51f04f94e4b1067eadd7fe0fcc6f6ced3250173a627439d661dcf6faabc7bc4786b30af013788a5c88d972f1c9dc1f8
24 DIST sndio-1.8.0.tar.gz 156249 BLAKE2B 46d279c0a9ab40253d9f4abf5892d6c2cbbbeeeeb5ff72f45287b16adce122550025ee2d50b45de5e6952dfac1f25041e520692b0afc31ce9cfa5e122d8799fa SHA512 c3225e59e50c3dee41df7df1d87d32ed616117ea6883d9c643a57091b2239b03988c00230882c32f68331952852781dccb8bdc5a6c92780d97a294a1bd9d8ef8
25
26 diff --git a/media-sound/sndio/sndio-1.7.0-r1.ebuild b/media-sound/sndio/sndio-1.7.0-r1.ebuild
27 deleted file mode 100644
28 index f7fa4e0c449..00000000000
29 --- a/media-sound/sndio/sndio-1.7.0-r1.ebuild
30 +++ /dev/null
31 @@ -1,53 +0,0 @@
32 -# Copyright 2020-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit multilib-minimal toolchain-funcs
38 -
39 -DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
40 -HOMEPAGE="http://www.sndio.org/"
41 -if [[ "${PV}" == "9999" ]]; then
42 - inherit git-r3
43 - EGIT_REPO_URI="https://caoua.org/git/sndio"
44 - EGIT_MIN_CLONE_TYPE="single+tags"
45 -else
46 - SRC_URI="http://www.sndio.org/${P}.tar.gz"
47 - KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
48 -fi
49 -
50 -LICENSE="ISC"
51 -SLOT="0/7.0"
52 -IUSE="alsa"
53 -
54 -DEPEND="
55 - dev-libs/libbsd[${MULTILIB_USEDEP}]
56 - alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
57 -"
58 -RDEPEND="
59 - ${DEPEND}
60 - acct-user/sndiod
61 -"
62 -
63 -src_prepare() {
64 - default
65 - multilib_copy_sources
66 -}
67 -
68 -multilib_src_configure() {
69 - tc-export CC
70 -
71 - ./configure \
72 - --prefix="${EPREFIX}"/usr \
73 - --libdir="${EPREFIX}"/usr/$(get_libdir) \
74 - --privsep-user=sndiod \
75 - --with-libbsd \
76 - $(use_enable alsa) \
77 - || die "Configure failed"
78 -}
79 -
80 -src_install() {
81 - multilib-minimal_src_install
82 -
83 - doinitd "${FILESDIR}/sndiod"
84 -}