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-libs/alsa-lib/
Date: Thu, 22 Dec 2016 10:51:35
Message-Id: 1482403874.451789abdbf808a3b1424b69cc34283166320493.polynomial-c@gentoo
1 commit: 451789abdbf808a3b1424b69cc34283166320493
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 22 10:30:46 2016 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 22 10:51:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=451789ab
7
8 media-libs/alsa-lib: Bump to version 1.1.3
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 media-libs/alsa-lib/Manifest | 1 +
13 media-libs/alsa-lib/alsa-lib-1.1.3.ebuild | 91 +++++++++++++++++++++++++++++++
14 2 files changed, 92 insertions(+)
15
16 diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
17 index 9f7ab2c..27eb5ee 100644
18 --- a/media-libs/alsa-lib/Manifest
19 +++ b/media-libs/alsa-lib/Manifest
20 @@ -1,3 +1,4 @@
21 DIST alsa-lib-1.0.29.tar.bz2 905417 SHA256 73043c35eb9636be0f4af6a240235c213f12a25feb1f04aeeac8cb7e30fcbdd0 SHA512 c9c2dcd3105abadcfdff104770a1f7683d83f6b9df64eebe9f9efc1ecab3ca4cef43718b5b15526bdabf2862ce55ec665732bb0390fc8e6492e2c1cebec9294c WHIRLPOOL 330877960733e847c12f133f93acc58a2053303b4437c5aaf21e2c4df0c47389df28ed093ab6606ee3cb854389b359d981dc547fba08bab03cff1c99f93e72d8
22 DIST alsa-lib-1.1.1.tar.bz2 932105 SHA256 8ac76c3144ed2ed49da7622ab65ac5415205913ccbedde877972383cbc234269 SHA512 dacd0a74adc682ac0034cbeba2de3d1a141e0ac2e564c9e04dae202ffaf87ef3a1e01307afc2fd2d9cfe679e5b101c379f9b6ea5f7ccceeed14a427bd5232bc7 WHIRLPOOL c383ee51592e87c08a1bb25e358482afe6116b4feaf45121296fb887e77c930fb3b8e864f3265bf7bd4c57227fdcbc71994031bb9356621d69de7a252bed65a4
23 DIST alsa-lib-1.1.2.tar.bz2 947423 SHA256 d38dacd9892b06b8bff04923c380b38fb2e379ee5538935ff37e45b395d861d6 SHA512 a6c6675b1fd86955ef5072b9e6090795fc6b0b16f32481bece049e5f100e689be48b6416ff7cf36abfc67e0b94f420e08c15ff13a9701987d6bb69a8fa567e8a WHIRLPOOL 7aa68f305cb5ad58e9bdaeb3eee5fa7a37e9f606640789a9c778ff1bfd9b458d80e6ccfa9f73f9ad5b3a229ea988fa9b6d64b929c87f64ea9376a778f30eed0d
24 +DIST alsa-lib-1.1.3.tar.bz2 962001 SHA256 71282502184c592c1a008e256c22ed0ba5728ca65e05273ceb480c70f515969c SHA512 f5dbe2375a8c66af14378314a5238284d4ed63dfc86a750c0c6e8f6cdb6b1ea2d8ef26f870b5d152dc0b77d9b40821cab523f6734902b91583beb08e28c66850 WHIRLPOOL f33871789a7cc06a9db83fd659abdfeb7940d61a24ad7c71866f843d8c0c29eaf0e0770a2034dee2526c96835935b88c2fe882184c86528c98e7d4901f94b27d
25
26 diff --git a/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild b/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
27 new file mode 100644
28 index 00000000..ce74768
29 --- /dev/null
30 +++ b/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
31 @@ -0,0 +1,91 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +# no support for python3_2 or above yet wrt #471326
39 +PYTHON_COMPAT=( python2_7 )
40 +
41 +inherit autotools eutils multilib multilib-minimal python-single-r1
42 +
43 +DESCRIPTION="Advanced Linux Sound Architecture Library"
44 +HOMEPAGE="http://www.alsa-project.org/"
45 +SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
46 +
47 +LICENSE="LGPL-2.1"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
50 +IUSE="alisp debug doc elibc_uclibc python"
51 +
52 +RDEPEND="python? ( ${PYTHON_DEPS} )
53 + abi_x86_32? (
54 + !<=app-emulation/emul-linux-x86-soundlibs-20130224-r1
55 + !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)]
56 + )"
57 +DEPEND="${RDEPEND}
58 + doc? ( >=app-doc/doxygen-1.2.6 )"
59 +
60 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
61 +
62 +pkg_setup() {
63 + use python && python-single-r1_pkg_setup
64 +}
65 +
66 +src_prepare() {
67 + find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || die
68 + # https://bugs.gentoo.org/509886
69 + use elibc_uclibc && { sed -i -e 's:oldapi queue_timer:queue_timer:' test/Makefile.am || die; }
70 + # https://bugs.gentoo.org/545950
71 + sed -i -e '5s:^$:\nAM_CPPFLAGS = -I$(top_srcdir)/include:' test/lsb/Makefile.am || die
72 + default
73 + eautoreconf
74 +}
75 +
76 +multilib_src_configure() {
77 + local myconf
78 + # enable Python only on final ABI
79 + if multilib_is_native_abi; then
80 + myconf="$(use_enable python)"
81 + else
82 + myconf="--disable-python"
83 + fi
84 + use elibc_uclibc && myconf+=" --without-versioned"
85 +
86 + ECONF_SOURCE=${S} \
87 + econf \
88 + --disable-maintainer-mode \
89 + --enable-shared \
90 + --disable-resmgr \
91 + --enable-rawmidi \
92 + --enable-seq \
93 + --enable-aload \
94 + $(use_with debug) \
95 + $(use_enable alisp) \
96 + ${myconf}
97 +}
98 +
99 +multilib_src_compile() {
100 + emake
101 +
102 + if multilib_is_native_abi && use doc; then
103 + emake doc
104 + fgrep -Zrl "${S}" doc/doxygen/html | \
105 + xargs -0 sed -i -e "s:${S}::"
106 + fi
107 +}
108 +
109 +multilib_src_install() {
110 + emake DESTDIR="${D}" install
111 + if multilib_is_native_abi && use doc; then
112 + docinto html
113 + dodoc -r doc/doxygen/html/.
114 + fi
115 +}
116 +
117 +multilib_src_install_all() {
118 + prune_libtool_files --all
119 + find "${ED}"/usr/$(get_libdir)/alsa-lib -name '*.a' -exec rm -f {} +
120 + docinto ""
121 + dodoc ChangeLog doc/asoundrc.txt NOTES TODO
122 +}