Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/bluez-alsa/
Date: Thu, 29 Nov 2018 11:50:32
Message-Id: 1543492220.9bc8473e8db6a5230bcedb3b0e57a92a80a1e59b.polynomial-c@gentoo
1 commit: 9bc8473e8db6a5230bcedb3b0e57a92a80a1e59b
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 29 11:48:58 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 29 11:50:20 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc8473e
7
8 media-sound/bluez-alsa: Removed old.
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 media-sound/bluez-alsa/Manifest | 1 -
14 media-sound/bluez-alsa/bluez-alsa-1.3.0.ebuild | 60 --------------------------
15 2 files changed, 61 deletions(-)
16
17 diff --git a/media-sound/bluez-alsa/Manifest b/media-sound/bluez-alsa/Manifest
18 index 10bb72ecff7..13f954a70ae 100644
19 --- a/media-sound/bluez-alsa/Manifest
20 +++ b/media-sound/bluez-alsa/Manifest
21 @@ -1,2 +1 @@
22 -DIST bluez-alsa-1.3.0.tar.gz 86109 BLAKE2B 0a026c590a3e8f655db367e38891142d757eabc8ba647c655451e7b5ff9beabcc71ec33e16522ee7818be7513c9ecc4c5512ce6a2358651b4d8e77cd90f6a25f SHA512 f355873622290bc0193799a77660adf1e3622d3ad77a8e0cbf46d59b3c015009c8b3318c414b855c569d40bbe450a490f53c8d5382350beadfff6e65ab8e58bc
23 DIST bluez-alsa-1.3.1.tar.gz 87333 BLAKE2B 0479baa103b9e6e5c26d061df59b0a36a24a74ee04c882a888d63458da96a980bc9f39a6219cd4ad9f8c04b0d58fb337a960584eb7b93455474111a71ddbeb9f SHA512 2b2f7b26b7b8cff70517bf8a24170330038be40f1a5a2fc75d20853b7beca6c9f9e2e6068f6b0f4fa9b6fc61f374ff59961434be8daa3b4d283abfd165be9cbf
24
25 diff --git a/media-sound/bluez-alsa/bluez-alsa-1.3.0.ebuild b/media-sound/bluez-alsa/bluez-alsa-1.3.0.ebuild
26 deleted file mode 100644
27 index 6c59d2ee4e2..00000000000
28 --- a/media-sound/bluez-alsa/bluez-alsa-1.3.0.ebuild
29 +++ /dev/null
30 @@ -1,60 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -inherit autotools multilib-minimal
36 -
37 -DESCRIPTION="Bluetooth Audio ALSA Backend"
38 -HOMEPAGE="https://github.com/Arkq/bluez-alsa"
39 -
40 -if [[ ${PV} == "9999" ]] ; then
41 - inherit git-r3
42 - EGIT_REPO_URI="https://github.com/Arkq/${PN}"
43 -else
44 - SRC_URI="https://github.com/Arkq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 - KEYWORDS="~amd64 ~x86"
46 -fi
47 -
48 -LICENSE="MIT"
49 -SLOT="0"
50 -IUSE="aac debug hcitop static-libs"
51 -
52 -RDEPEND=">=dev-libs/glib-2.26[dbus,${MULTILIB_USEDEP}]
53 - >=media-libs/alsa-lib-1.0[${MULTILIB_USEDEP}]
54 - >=media-libs/sbc-1.2[${MULTILIB_USEDEP}]
55 - >=net-wireless/bluez-5.0[${MULTILIB_USEDEP}]
56 - aac? ( >=media-libs/fdk-aac-0.1.1[${MULTILIB_USEDEP}] )
57 - hcitop? (
58 - dev-libs/libbsd
59 - sys-libs/ncurses:0=
60 - )"
61 -DEPEND="${RDEPEND}
62 - virtual/pkgconfig"
63 -
64 -src_prepare() {
65 - default
66 - eautoreconf
67 -}
68 -
69 -multilib_src_configure() {
70 - local myeconfargs=(
71 - --enable-rfcomm
72 - $(use_enable aac)
73 - $(use_enable debug)
74 - $(use_enable static-libs static)
75 - $(multilib_native_use_enable hcitop)
76 - )
77 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
78 -}
79 -
80 -multilib_src_install_all() {
81 - default
82 - find "${ED}" -name "*.la" -delete || die
83 -
84 - newinitd "${FILESDIR}"/bluealsa-init.d bluealsa
85 - newconfd "${FILESDIR}"/bluealsa-conf.d-2 bluealsa
86 -}
87 -
88 -pkg_postinst() {
89 - elog "Users can use this service when they are members of the \"audio\" group."
90 -}