[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/, media-libs/alsa-lib/files/

2020-04-22 Thread Anthony G. Basile
commit: 5d84c357c6bc3e1a3b3e432fb0018e7340aaa5be
Author: Michael Everitt  veremit  xyz>
AuthorDate: Mon Apr 20 22:24:10 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Apr 22 21:38:17 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=5d84c357

Stdint types fixed upstream in adab355. Missing files patch exists in ::gentoo

In-repo version compiles fine:
>>> Completed installing media-libs/alsa-lib-1.2.1.2 into 
>>> /var/tmp/portage/media-libs/alsa-lib-1.2.1.2/image

Signed-off-by: Michael Everitt  veremit.xyz>
Signed-off-by: Anthony G. Basile  gentoo.org>

 media-libs/alsa-lib/Manifest   |   3 -
 media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild|  91 --
 media-libs/alsa-lib/alsa-lib-1.1.5.ebuild  |  87 -
 media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild   |  85 -
 .../alsa-lib/files/alsa-lib-1.1.3-stdint.patch |  29 ---
 .../files/alsa-lib-1.1.6-missing_files.patch   | 196 -
 media-libs/alsa-lib/metadata.xml   |  14 --
 7 files changed, 505 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
deleted file mode 100644
index 05d198b..000
--- a/media-libs/alsa-lib/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST alsa-lib-1.1.4.1.tar.bz2 974584 BLAKE2B 
f3221fa55dc11c04f4a1bc3ee90d2a679ca9b8bde65e2801ae5762fa456ef8e45532624efa57bf7d62f82e5c172eaf10f2286f9acace5a47e20123acf5ce04d2
 SHA512 
7b548c4ee29c4a1230a0edcd5d19219831290f96a214180a6530628acc05278d1348376195287d188f4f44d6be1914391c63994f1b50985c3eee74352da26b0b
-DIST alsa-lib-1.1.5.tar.bz2 979225 BLAKE2B 
75683b17bfd51c1e54f1a460ed32a170b07eb227bd6b9ee481d123116464f5c16bbb49f29dfc8d08baaf2f69c5333bf71b70c33b5d420c43e56ae4ace76a6ab0
 SHA512 
c79ceaa1ebfeda2caf41a0495ea31dd2748a11795989aebc341ae13a5c96d21495e4542571d5590e68b2575ceddd6e84059a950ddb78e6c0b9d94861faee4f58
-DIST alsa-lib-1.1.6.tar.bz2 989316 BLAKE2B 
2aec62d262148571cc1b93ac8053002b61266951caf8b2855fc65b699ec928672748a21ba11a25e14e752a4a85f68b2f77b5ad6af9b2f1fc5e9de41313ace54a
 SHA512 
00117769a3d5c609019b975188d6e7a07d035bd0461f54c5f291e14667620506f1adb6d61350f78d54648850f31965aae3ab0e697bf9e09c988e2d15bf6b09f0

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild
deleted file mode 100644
index 42e66a4..000
--- a/media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# no support for python3_2 or above yet wrt #471326
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools eutils multilib multilib-minimal python-single-r1
-
-DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="https://alsa-project.org/;
-SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
-IUSE="alisp debug doc elibc_uclibc python"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
-   doc? ( >=app-doc/doxygen-1.2.6 )"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.1.3-stdint.patch
-)
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || 
die
-   # https://bugs.gentoo.org/509886
-   use elibc_uclibc && { sed -i -e 's:oldapi queue_timer:queue_timer:' 
test/Makefile.am || die; }
-   # https://bugs.gentoo.org/545950
-   sed -i -e '5s:^$:\nAM_CPPFLAGS = -I$(top_srcdir)/include:' 
test/lsb/Makefile.am || die
-   default
-   eautoreconf
-}
-
-multilib_src_configure() {
-   local myconf
-   # enable Python only on final ABI
-   if multilib_is_native_abi; then
-   myconf="$(use_enable python)"
-   else
-   myconf="--disable-python"
-   fi
-   use elibc_uclibc && myconf+=" --without-versioned"
-
-   ECONF_SOURCE=${S} \
-   econf \
-   --disable-maintainer-mode \
-   --enable-shared \
-   --disable-resmgr \
-   --enable-rawmidi \
-   --enable-seq \
-   --enable-aload \
-   --without-versioned \
-   $(use_with debug) \
-   $(use_enable alisp) \
-   ${myconf}
-}
-
-multilib_src_compile() {
-   emake
-
-   if multilib_is_native_abi && use doc; then
-   emake doc
-   fgrep -Zrl "${S}" doc/doxygen/html | \
-   xargs -0 sed -i -e "s:${S}::"
-   fi
-}
-
-multilib_src_install() {
-   emake DESTDIR="${D}" install
-   if multilib_is_native_abi && use doc; then
-   docinto html
-   dodoc -r doc/doxygen/html/.
-   fi
-}
-
-multilib_src_install_all() {
-   prune_libtool_files --all
-   find "${ED}"/usr/$(get_libdir)/alsa-lib 

[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/

2019-02-04 Thread Anthony G. Basile
commit: e7fa0d3f23716be66c65632b1f8c18c2507ac2d7
Author: stefson  yahoo  de>
AuthorDate: Mon Feb  4 12:38:52 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Feb  4 12:44:16 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=e7fa0d3f

media-libs/alsa: sync keywords with tree

Signed-off-by: Anthony G. Basile  gentoo.org>

 media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild
index 4aa8394..25a7eb3 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~sh ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ~mips ppc ~sh sparc x86"
 IUSE="alisp debug doc elibc_uclibc python +thread-safety"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )"



[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/

2018-04-05 Thread Aric Belsito
commit: 045b14568706a6c3248112d4360642fb3d570544
Author: Aric Belsito  gmail  com>
AuthorDate: Thu Apr  5 17:17:41 2018 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu Apr  5 17:17:41 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=045b1456

media-libs/alsa-lib: fix metadata.xml

 media-libs/alsa-lib/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/alsa-lib/metadata.xml b/media-libs/alsa-lib/metadata.xml
index d1e2102..356924f 100644
--- a/media-libs/alsa-lib/metadata.xml
+++ b/media-libs/alsa-lib/metadata.xml
@@ -6,6 +6,7 @@
   
   
 Enable support for ALISP (ALSA LISP) interpreter for 
advanced features.
+thread-safe API functions
   
   
 cpe:/a:alsa-project:alsa-lib



[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/files/, media-libs/alsa-lib/

2018-04-05 Thread Aric Belsito
commit: 6f3b916011828188ae6e86244c7480471b09f1b3
Author: Aric Belsito  gmail  com>
AuthorDate: Thu Apr  5 17:13:22 2018 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu Apr  5 17:13:22 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=6f3b9160

media-libs/alsa-lib: version bump to 1.1.6-r1

 ...a-lib-1.1.6.ebuild => alsa-lib-1.1.6-r1.ebuild} |   7 +-
 .../files/alsa-lib-1.1.6-missing_files.patch   | 196 +
 2 files changed, 201 insertions(+), 2 deletions(-)

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.6.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild
similarity index 95%
rename from media-libs/alsa-lib/alsa-lib-1.1.6.ebuild
rename to media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild
index 5056439..97c2184 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.6.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.6-r1.ebuild
@@ -3,8 +3,7 @@
 
 EAPI=6
 
-# no support for python3_2 or above yet wrt #471326
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
 
 inherit autotools multilib multilib-minimal python-single-r1
 
@@ -23,6 +22,10 @@ DEPEND="${RDEPEND}
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
+PATCHES=(
+   "${FILESDIR}/${P}-missing_files.patch" #652422
+)
+
 pkg_setup() {
use python && python-single-r1_pkg_setup
 }

diff --git a/media-libs/alsa-lib/files/alsa-lib-1.1.6-missing_files.patch 
b/media-libs/alsa-lib/files/alsa-lib-1.1.6-missing_files.patch
new file mode 100644
index 000..909a00b
--- /dev/null
+++ b/media-libs/alsa-lib/files/alsa-lib-1.1.6-missing_files.patch
@@ -0,0 +1,196 @@
+https://bugs.gentoo.org/652422
+
+--- alsa-lib-1.1.6/src/conf/cards/aliases.alisp
 alsa-lib-1.1.6/src/conf/cards/aliases.alisp
+@@ -0,0 +1,29 @@
++(setq snd_card_aliases_array
++  (
++("YMF724" . "YMF744")
++("YMF724F". "YMF744")
++("YMF740" . "YMF744")
++("YMF740C". "YMF744")
++("YMF754" . "YMF744")
++("CMIPCI" . "CMI8338")
++("CMI8738". "CMI8338")
++("CMI8738-MC4". "CMI8738-MC6")
++("E-mu APS"   . "EMU10K1")
++("GUS Max". "GUS")
++("GUS ACE". "GUS")
++("GUS Extreme". "GUS")
++("AMD InterWave"  . "GUS")
++("Dynasonic 3-D"  . "GUS")
++("InterWave STB"  . "GUS")
++  )
++)
++
++(defun snd_card_alias (cardname)
++  (setq r (assq cardname snd_card_aliases_array))
++  (setq r (if (null r) cardname r))
++  (unsetq r)
++)
++
++(defun snd_card_alias_unset ()
++  (unsetq snd_card_aliases_array snd_card_alias)
++)
+--- alsa-lib-1.1.6/src/conf/cards/SI7018/sndoc-mixer.alisp
 alsa-lib-1.1.6/src/conf/cards/SI7018/sndoc-mixer.alisp
+@@ -0,0 +1,11 @@
++;
++; SiS SI7018 mixer abstract layer
++;
++; Copyright (c) 2003 Jaroslav Kysela 
++; License: GPL v2 (http://www.gnu.org/licenses/gpl.html)
++;
++
++(defun sndoc_mixer_open (hctl pcm)
++  (princ "sndoc_mixer_open: hctl=" hctl " pcm=" pcm "\n")
++  0
++)
+--- alsa-lib-1.1.6/src/conf/cards/SI7018/sndop-mixer.alisp
 alsa-lib-1.1.6/src/conf/cards/SI7018/sndop-mixer.alisp
+@@ -0,0 +1,11 @@
++;
++; SiS SI7018 mixer abstract layer
++;
++; Copyright (c) 2003 Jaroslav Kysela 
++; License: GPL v2 (http://www.gnu.org/licenses/gpl.html)
++;
++
++(defun sndop_mixer_open (hctl pcm)
++  (princ "sndop_mixer_open: hctl=" hctl " pcm=" pcm "\n")
++  0
++)
+--- alsa-lib-1.1.6/src/conf/smixer.conf
 alsa-lib-1.1.6/src/conf/smixer.conf
+@@ -0,0 +1,13 @@
++_full smixer-python.so
++usb {
++  searchl "USB"
++  lib smixer-usb.so
++}
++ac97 {
++  searchl "AC97a:"
++  lib smixer-ac97.so
++}
++hda {
++  searchl "HDA:"
++  lib smixer-hda.so
++}
+--- alsa-lib-1.1.6/src/conf/sndo-mixer.alisp
 alsa-lib-1.1.6/src/conf/sndo-mixer.alisp
+@@ -0,0 +1,115 @@
++;
++; Toplevel configuration for the ALSA Ordinary Mixer Interface
++;
++; Copyright (c) 2003 Jaroslav Kysela 
++; License: GPL v2 (http://www.gnu.org/licenses/gpl.html)
++;
++
++(defun sndo_include (hctl stream)
++  (setq info (Acall "ctl_card_info" (Acall "hctl_ctl" hctl)))
++  (if (= (Aerror info) 0)
++(progn
++  (setq info (Aresult info))
++  (setq driver (cdr (assq "driver" (unsetq info
++  (setq file (concat (path "data") "/alsa/cards/" (snd_card_alias driver) 
"/sndo" stream "-mixer.alisp"))
++  (setq r (include file))
++  (when (= r -2) (Asyserr "unable to find file " file))
++)
++(setq r (Aerror info))
++  )
++  (unsetq info driver file r)
++)
++
++(defun sndo_mixer_open_fcn (hctl stream pcm)
++  (setq fcn (concat "sndo" stream "_mixer_open"))
++  (setq r (if (exfun fcn) (funcall fcn hctl pcm) 0))
++  (when (= r 0)
++(setq hctls (if hctls (cons hctls (cons hctl)) hctl))
++  )
++  (unsetq fcn r)
++)
++
++(defun sndo_mixer_open_hctl (name stream pcm)
++  (setq hctl (Acall "hctl_open" name nil))
++  (setq r (Aerror hctl))
++  (when 

[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/

2018-04-04 Thread Aric Belsito
commit: fd7471129f057894992515c2d9297e84d99f7822
Author: Aric Belsito  gmail  com>
AuthorDate: Wed Apr  4 16:48:40 2018 +
Commit: Aric Belsito  gmail  com>
CommitDate: Wed Apr  4 16:48:40 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=fd747112

media-libs/alsa-lib: version bump to 1.1.6

 media-libs/alsa-lib/Manifest   |  5 +-
 media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild|  4 +-
 media-libs/alsa-lib/alsa-lib-1.1.5.ebuild  |  4 +-
 ...alsa-lib-1.1.5.ebuild => alsa-lib-1.1.6.ebuild} | 57 +-
 4 files changed, 31 insertions(+), 39 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index 7101b63..05d198b 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1,2 +1,3 @@
-DIST alsa-lib-1.1.4.1.tar.bz2 974584 SHA256 
91bb870c14d1c7c269213285eeed874fa3d28112077db061a3af8010d0885b76 SHA512 
7b548c4ee29c4a1230a0edcd5d19219831290f96a214180a6530628acc05278d1348376195287d188f4f44d6be1914391c63994f1b50985c3eee74352da26b0b
 WHIRLPOOL 
2fc84b8a3c6023dac7953f1d2960a8eb5279f58cf2e59b8f5d04293df7595b9f0ebca5738bf4a333f8b20586c7fd579b9e7bdeeffd64518649be3a8c5d588fd8
-DIST alsa-lib-1.1.5.tar.bz2 979225 SHA256 
f4f68ad3c6da36b0b5241ac3c798a7a71e0e97d51f972e9f723b3f20a9650ae6 SHA512 
c79ceaa1ebfeda2caf41a0495ea31dd2748a11795989aebc341ae13a5c96d21495e4542571d5590e68b2575ceddd6e84059a950ddb78e6c0b9d94861faee4f58
 WHIRLPOOL 
7b327499e8576c07e4ed7fe293f788283e158f08efd10ad5b7ca9f980cbe5dcd9fcc290a9880726a971bd180f5a0c57215d5f337e5294ace25fe5923ea6fbcbd
+DIST alsa-lib-1.1.4.1.tar.bz2 974584 BLAKE2B 
f3221fa55dc11c04f4a1bc3ee90d2a679ca9b8bde65e2801ae5762fa456ef8e45532624efa57bf7d62f82e5c172eaf10f2286f9acace5a47e20123acf5ce04d2
 SHA512 
7b548c4ee29c4a1230a0edcd5d19219831290f96a214180a6530628acc05278d1348376195287d188f4f44d6be1914391c63994f1b50985c3eee74352da26b0b
+DIST alsa-lib-1.1.5.tar.bz2 979225 BLAKE2B 
75683b17bfd51c1e54f1a460ed32a170b07eb227bd6b9ee481d123116464f5c16bbb49f29dfc8d08baaf2f69c5333bf71b70c33b5d420c43e56ae4ace76a6ab0
 SHA512 
c79ceaa1ebfeda2caf41a0495ea31dd2748a11795989aebc341ae13a5c96d21495e4542571d5590e68b2575ceddd6e84059a950ddb78e6c0b9d94861faee4f58
+DIST alsa-lib-1.1.6.tar.bz2 989316 BLAKE2B 
2aec62d262148571cc1b93ac8053002b61266951caf8b2855fc65b699ec928672748a21ba11a25e14e752a4a85f68b2f77b5ad6af9b2f1fc5e9de41313ace54a
 SHA512 
00117769a3d5c609019b975188d6e7a07d035bd0461f54c5f291e14667620506f1adb6d61350f78d54648850f31965aae3ab0e697bf9e09c988e2d15bf6b09f0

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild
index 444e11e..a9bd0ec 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit autotools eutils multilib multilib-minimal python-single-r1
 
 DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="http://www.alsa-project.org/;
+HOMEPAGE="https://alsa-project.org/;
 SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1"

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.5.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.5.ebuild
index 0c76804..7ff825c 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.5.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit autotools eutils multilib multilib-minimal python-single-r1
 
 DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="http://www.alsa-project.org/;
+HOMEPAGE="https://alsa-project.org/;
 SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1"

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.5.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.6.ebuild
similarity index 57%
copy from media-libs/alsa-lib/alsa-lib-1.1.5.ebuild
copy to media-libs/alsa-lib/alsa-lib-1.1.6.ebuild
index 0c76804..5056439 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.5.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,22 +6,18 @@ EAPI=6
 # no support for python3_2 or above yet wrt #471326
 PYTHON_COMPAT=( python2_7 )
 
-inherit autotools eutils multilib multilib-minimal python-single-r1
+inherit autotools multilib multilib-minimal python-single-r1
 
 DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="http://www.alsa-project.org/;
+HOMEPAGE="https://alsa-project.org/;
 SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
 

[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/

2017-11-15 Thread Aric Belsito
commit: 9ef56afdc78ffecb234fd103ae720d5d2442ea7a
Author: Aric Belsito  gmail  com>
AuthorDate: Thu Nov 16 01:14:37 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu Nov 16 01:14:37 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=9ef56afd

media-libs/alsa-lib: version bump to 1.1.5

 media-libs/alsa-lib/Manifest  |  1 +
 media-libs/alsa-lib/alsa-lib-1.1.5.ebuild | 91 +++
 2 files changed, 92 insertions(+)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index 14e323f..7101b63 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1 +1,2 @@
 DIST alsa-lib-1.1.4.1.tar.bz2 974584 SHA256 
91bb870c14d1c7c269213285eeed874fa3d28112077db061a3af8010d0885b76 SHA512 
7b548c4ee29c4a1230a0edcd5d19219831290f96a214180a6530628acc05278d1348376195287d188f4f44d6be1914391c63994f1b50985c3eee74352da26b0b
 WHIRLPOOL 
2fc84b8a3c6023dac7953f1d2960a8eb5279f58cf2e59b8f5d04293df7595b9f0ebca5738bf4a333f8b20586c7fd579b9e7bdeeffd64518649be3a8c5d588fd8
+DIST alsa-lib-1.1.5.tar.bz2 979225 SHA256 
f4f68ad3c6da36b0b5241ac3c798a7a71e0e97d51f972e9f723b3f20a9650ae6 SHA512 
c79ceaa1ebfeda2caf41a0495ea31dd2748a11795989aebc341ae13a5c96d21495e4542571d5590e68b2575ceddd6e84059a950ddb78e6c0b9d94861faee4f58
 WHIRLPOOL 
7b327499e8576c07e4ed7fe293f788283e158f08efd10ad5b7ca9f980cbe5dcd9fcc290a9880726a971bd180f5a0c57215d5f337e5294ace25fe5923ea6fbcbd

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.5.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.5.ebuild
new file mode 100644
index 000..f517f08
--- /dev/null
+++ b/media-libs/alsa-lib/alsa-lib-1.1.5.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# no support for python3_2 or above yet wrt #471326
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools eutils multilib multilib-minimal python-single-r1
+
+DESCRIPTION="Advanced Linux Sound Architecture Library"
+HOMEPAGE="http://www.alsa-project.org/;
+SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+IUSE="alisp debug doc elibc_uclibc python"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )
+   abi_x86_32? (
+   !<=app-emulation/emul-linux-x86-soundlibs-20130224-r1
+   !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)]
+   )"
+DEPEND="${RDEPEND}
+   doc? ( >=app-doc/doxygen-1.2.6 )"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || 
die
+   # https://bugs.gentoo.org/509886
+   use elibc_uclibc && { sed -i -e 's:oldapi queue_timer:queue_timer:' 
test/Makefile.am || die; }
+   # https://bugs.gentoo.org/545950
+   sed -i -e '5s:^$:\nAM_CPPFLAGS = -I$(top_srcdir)/include:' 
test/lsb/Makefile.am || die
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   local myconf
+   # enable Python only on final ABI
+   if multilib_is_native_abi; then
+   myconf="$(use_enable python)"
+   else
+   myconf="--disable-python"
+   fi
+   use elibc_uclibc && myconf+=" --without-versioned"
+
+   ECONF_SOURCE=${S} \
+   econf \
+   --disable-maintainer-mode \
+   --enable-shared \
+   --disable-resmgr \
+   --enable-rawmidi \
+   --enable-seq \
+   --enable-aload \
+   --without-versioned \
+   $(use_with debug) \
+   $(use_enable alisp) \
+   ${myconf}
+}
+
+multilib_src_compile() {
+   emake
+
+   if multilib_is_native_abi && use doc; then
+   emake doc
+   fgrep -Zrl "${S}" doc/doxygen/html | \
+   xargs -0 sed -i -e "s:${S}::"
+   fi
+}
+
+multilib_src_install() {
+   emake DESTDIR="${D}" install
+   if multilib_is_native_abi && use doc; then
+   docinto html
+   dodoc -r doc/doxygen/html/.
+   fi
+}
+
+multilib_src_install_all() {
+   prune_libtool_files --all
+   find "${ED}"/usr/$(get_libdir)/alsa-lib -name '*.a' -exec rm -f {} +
+   docinto ""
+   dodoc ChangeLog doc/asoundrc.txt NOTES TODO
+}



[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/

2017-06-02 Thread Aric Belsito
commit: aff51d74f1432be713db290d6df1fc5406676eae
Author: Aric Belsito  gmail  com>
AuthorDate: Fri Jun  2 22:37:04 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Fri Jun  2 22:37:04 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=aff51d74

media-libs/alsa-lib: version bump to 1.1.4.1

 media-libs/alsa-lib/Manifest  | 4 ++--
 .../alsa-lib/{alsa-lib-1.1.4.ebuild => alsa-lib-1.1.4.1.ebuild}   | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index 374eb16..16b450f 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1,4 +1,4 @@
 AUX alsa-lib-1.1.3-stdint.patch 1322 SHA256 
a0ef37c76bcd4936086465faf79c0bb5e41388bda668068e9dd105085c16edd2 SHA512 
5f518c1096c64d0a10c5f26ab703d588bd27a6bcd8b9e833ece7dd3f459fb942e16b32c2a1a38f435c7519dd730325e69316af829a03c640c5d2435e456c86bd
 WHIRLPOOL 
3eb786187b720240911d8e10af9805cbb09353eb9dae02bbcad9668c33ef34f855ebc2883a1b33d8ff1b2c8e6def8654e76b2e3173466809cbbb75f5c3440a6b
-DIST alsa-lib-1.1.4.tar.bz2 973825 SHA256 
82f50a09487079755d93e4c9384912196995bade6280bce9bfdcabf094bfb515 SHA512 
8dfc5cc8872138b9e7e234934e317d797e100ac99dac86a2a2e4bdcc0d49e8a05b4089b98341051b407750bed93c2713fae5218318e5ce6cc7db2801165a1c10
 WHIRLPOOL 
74eb6742d93b6f2988ea9f583623edd985897db278e5dcac6916b3e9b772f16db326feb37b81a191405cc43ec2a55d313e74293ccbb43281b15f3056bd8f623f
-EBUILD alsa-lib-1.1.4.ebuild 2326 SHA256 
78af4e452a502d43dc3b0a844429ad63a049a5cdf801d94a2545297f26be83e9 SHA512 
cd5f8253b0d54acb8400ea22c0912fde6202434e5a5660d51eea92dca0172af1bbfc328bff826f2a357f085ee48e4e7d8bda73638f0bcf95539e0dafd21bb4f0
 WHIRLPOOL 
4d0931f4e2b674c8c68113434e7a960c632a7b1b031146124111e5f25ab02e996f5e631c6de375d6715aafd36d46a7a0eae6488b86bdd8563d5c690597ed5741
+DIST alsa-lib-1.1.4.1.tar.bz2 974584 SHA256 
91bb870c14d1c7c269213285eeed874fa3d28112077db061a3af8010d0885b76 SHA512 
7b548c4ee29c4a1230a0edcd5d19219831290f96a214180a6530628acc05278d1348376195287d188f4f44d6be1914391c63994f1b50985c3eee74352da26b0b
 WHIRLPOOL 
2fc84b8a3c6023dac7953f1d2960a8eb5279f58cf2e59b8f5d04293df7595b9f0ebca5738bf4a333f8b20586c7fd579b9e7bdeeffd64518649be3a8c5d588fd8
+EBUILD alsa-lib-1.1.4.1.ebuild 2326 SHA256 
78af4e452a502d43dc3b0a844429ad63a049a5cdf801d94a2545297f26be83e9 SHA512 
cd5f8253b0d54acb8400ea22c0912fde6202434e5a5660d51eea92dca0172af1bbfc328bff826f2a357f085ee48e4e7d8bda73638f0bcf95539e0dafd21bb4f0
 WHIRLPOOL 
4d0931f4e2b674c8c68113434e7a960c632a7b1b031146124111e5f25ab02e996f5e631c6de375d6715aafd36d46a7a0eae6488b86bdd8563d5c690597ed5741
 MISC metadata.xml 438 SHA256 
f2bec88238bb4a607fc2bb215e5967996ddb2f4bbcfa4692934c387db292db92 SHA512 
1e3a7f5a2f9ea84793ec938eb657fcbd6d5748f1cb055d085c638e30d1b5c1154a9dc0026d6e3592de074125c17926a4429757844f7d02b960f4a9a8d94a0433
 WHIRLPOOL 
e1c1cdc7aa789e26c847575bf1d5b64c62ca652254cd54068cf1b2e5580d5512ec31157ccd9c524dcbf654f401779a93dde9f9ca7481b69083db41c70fe247e7

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild
similarity index 100%
rename from media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
rename to media-libs/alsa-lib/alsa-lib-1.1.4.1.ebuild



[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/, media-libs/alsa-lib/files/

2017-05-18 Thread Aric Belsito
commit: 6d829ba2cd73a073d23e9bcd3caa3ed04f9ab92a
Author: Aric Belsito  gmail  com>
AuthorDate: Thu May 18 16:43:06 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu May 18 16:43:06 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=6d829ba2

media-libs/alsa-lib: remove unneccessary patch

 media-libs/alsa-lib/Manifest  |  3 +--
 media-libs/alsa-lib/alsa-lib-1.1.4.ebuild |  1 -
 media-libs/alsa-lib/files/alsa-lib-1.1.3-missing-limits.patch | 11 ---
 3 files changed, 1 insertion(+), 14 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index e125259..374eb16 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1,5 +1,4 @@
-AUX alsa-lib-1.1.3-missing-limits.patch 438 SHA256 
0209a6a218550f4c5edafef92daec6f04e402d554d37c70e9a8b77997aaaef03 SHA512 
cac154be8e27cac5c36e04f7b3df881234e6497bf49c777962a82176fcc745ec7c4f0cdd71a55c390bf415808ae76b3d5e7b383a9f59d00a0cfb5148b5653552
 WHIRLPOOL 
d790cd8469769c53896b188950c8ec474a0ebae5765d1953a5d4c9344d061667dae48341af7368e6d198d1749e9f506440298f991c179a7b4838a1787d283f6d
 AUX alsa-lib-1.1.3-stdint.patch 1322 SHA256 
a0ef37c76bcd4936086465faf79c0bb5e41388bda668068e9dd105085c16edd2 SHA512 
5f518c1096c64d0a10c5f26ab703d588bd27a6bcd8b9e833ece7dd3f459fb942e16b32c2a1a38f435c7519dd730325e69316af829a03c640c5d2435e456c86bd
 WHIRLPOOL 
3eb786187b720240911d8e10af9805cbb09353eb9dae02bbcad9668c33ef34f855ebc2883a1b33d8ff1b2c8e6def8654e76b2e3173466809cbbb75f5c3440a6b
 DIST alsa-lib-1.1.4.tar.bz2 973825 SHA256 
82f50a09487079755d93e4c9384912196995bade6280bce9bfdcabf094bfb515 SHA512 
8dfc5cc8872138b9e7e234934e317d797e100ac99dac86a2a2e4bdcc0d49e8a05b4089b98341051b407750bed93c2713fae5218318e5ce6cc7db2801165a1c10
 WHIRLPOOL 
74eb6742d93b6f2988ea9f583623edd985897db278e5dcac6916b3e9b772f16db326feb37b81a191405cc43ec2a55d313e74293ccbb43281b15f3056bd8f623f
-EBUILD alsa-lib-1.1.4.ebuild 2374 SHA256 
cef2a9339fd1e34a8c1594853087dbf95f7e970a3f3193ef99d3004480ef5c49 SHA512 
e0e4305053e8cf1c61153423f620c5f4782a1f816101e9cc8ab170fdacda7eef9e53cc13a76a2317fa18c27b09092bed0112f0cf9cfd089c50af0ec6dc795b23
 WHIRLPOOL 
921f1b6f5f6b26cea96139cdf0b79410ad57c37f41e1af802ea850e692546c0f7ef07ff515cfd6fd6067c569806e52ef2c101bec39e074199d576976825f4dc7
+EBUILD alsa-lib-1.1.4.ebuild 2326 SHA256 
78af4e452a502d43dc3b0a844429ad63a049a5cdf801d94a2545297f26be83e9 SHA512 
cd5f8253b0d54acb8400ea22c0912fde6202434e5a5660d51eea92dca0172af1bbfc328bff826f2a357f085ee48e4e7d8bda73638f0bcf95539e0dafd21bb4f0
 WHIRLPOOL 
4d0931f4e2b674c8c68113434e7a960c632a7b1b031146124111e5f25ab02e996f5e631c6de375d6715aafd36d46a7a0eae6488b86bdd8563d5c690597ed5741
 MISC metadata.xml 438 SHA256 
f2bec88238bb4a607fc2bb215e5967996ddb2f4bbcfa4692934c387db292db92 SHA512 
1e3a7f5a2f9ea84793ec938eb657fcbd6d5748f1cb055d085c638e30d1b5c1154a9dc0026d6e3592de074125c17926a4429757844f7d02b960f4a9a8d94a0433
 WHIRLPOOL 
e1c1cdc7aa789e26c847575bf1d5b64c62ca652254cd54068cf1b2e5580d5512ec31157ccd9c524dcbf654f401779a93dde9f9ca7481b69083db41c70fe247e7

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
index daa89a4..ff90158 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
@@ -28,7 +28,6 @@ DEPEND="${RDEPEND}
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-1.1.3-missing-limits.patch
"${FILESDIR}"/${PN}-1.1.3-stdint.patch
 )
 

diff --git a/media-libs/alsa-lib/files/alsa-lib-1.1.3-missing-limits.patch 
b/media-libs/alsa-lib/files/alsa-lib-1.1.3-missing-limits.patch
deleted file mode 100644
index 09ba400..000
--- a/media-libs/alsa-lib/files/alsa-lib-1.1.3-missing-limits.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Naur alsa-lib-1.1.3.orig/src/ucm/parser.c alsa-lib-1.1.3/src/ucm/parser.c
 alsa-lib-1.1.3.orig/src/ucm/parser.c   2016-12-22 15:21:20.756308973 
-0800
-+++ alsa-lib-1.1.3/src/ucm/parser.c2016-12-22 15:21:51.996612346 -0800
-@@ -32,6 +32,7 @@
- 
- #include "ucm_local.h"
- #include 
-+#include 
- 
- /** The name of the environment variable containing the UCM directory */
- #define ALSA_CONFIG_UCM_VAR "ALSA_CONFIG_UCM"



[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/

2017-05-18 Thread Aric Belsito
commit: 430123078ffb225d8ca643b9e77336451de1cc59
Author: Aric Belsito  gmail  com>
AuthorDate: Thu May 18 16:41:06 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu May 18 16:41:06 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=43012307

media-libs/alsa-lib: fix patch names

 media-libs/alsa-lib/Manifest  | 2 +-
 media-libs/alsa-lib/alsa-lib-1.1.4.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index e813ec4..e125259 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1,5 +1,5 @@
 AUX alsa-lib-1.1.3-missing-limits.patch 438 SHA256 
0209a6a218550f4c5edafef92daec6f04e402d554d37c70e9a8b77997aaaef03 SHA512 
cac154be8e27cac5c36e04f7b3df881234e6497bf49c777962a82176fcc745ec7c4f0cdd71a55c390bf415808ae76b3d5e7b383a9f59d00a0cfb5148b5653552
 WHIRLPOOL 
d790cd8469769c53896b188950c8ec474a0ebae5765d1953a5d4c9344d061667dae48341af7368e6d198d1749e9f506440298f991c179a7b4838a1787d283f6d
 AUX alsa-lib-1.1.3-stdint.patch 1322 SHA256 
a0ef37c76bcd4936086465faf79c0bb5e41388bda668068e9dd105085c16edd2 SHA512 
5f518c1096c64d0a10c5f26ab703d588bd27a6bcd8b9e833ece7dd3f459fb942e16b32c2a1a38f435c7519dd730325e69316af829a03c640c5d2435e456c86bd
 WHIRLPOOL 
3eb786187b720240911d8e10af9805cbb09353eb9dae02bbcad9668c33ef34f855ebc2883a1b33d8ff1b2c8e6def8654e76b2e3173466809cbbb75f5c3440a6b
 DIST alsa-lib-1.1.4.tar.bz2 973825 SHA256 
82f50a09487079755d93e4c9384912196995bade6280bce9bfdcabf094bfb515 SHA512 
8dfc5cc8872138b9e7e234934e317d797e100ac99dac86a2a2e4bdcc0d49e8a05b4089b98341051b407750bed93c2713fae5218318e5ce6cc7db2801165a1c10
 WHIRLPOOL 
74eb6742d93b6f2988ea9f583623edd985897db278e5dcac6916b3e9b772f16db326feb37b81a191405cc43ec2a55d313e74293ccbb43281b15f3056bd8f623f
-EBUILD alsa-lib-1.1.4.ebuild 2360 SHA256 
e34a789e7e1302fdc610056011cf1951b2f690b25ed1c8994aacac7f23c6b853 SHA512 
554da12c5733310ab180bea162969c2b4fd22787eb424c187f643274b04d41235949eb36c35dc7cdb6cb68c48e0efe45f1a08ce1eb2c3296d65b1ddebdfea565
 WHIRLPOOL 
3b20d8724b1d929373a4b87abbdbb1d705ae7b3916ff1ccb22606424fe8bf7014c5154e4479ca672023f6e7a67922f11105c2fa4469143488ae54458af29e6f2
+EBUILD alsa-lib-1.1.4.ebuild 2374 SHA256 
cef2a9339fd1e34a8c1594853087dbf95f7e970a3f3193ef99d3004480ef5c49 SHA512 
e0e4305053e8cf1c61153423f620c5f4782a1f816101e9cc8ab170fdacda7eef9e53cc13a76a2317fa18c27b09092bed0112f0cf9cfd089c50af0ec6dc795b23
 WHIRLPOOL 
921f1b6f5f6b26cea96139cdf0b79410ad57c37f41e1af802ea850e692546c0f7ef07ff515cfd6fd6067c569806e52ef2c101bec39e074199d576976825f4dc7
 MISC metadata.xml 438 SHA256 
f2bec88238bb4a607fc2bb215e5967996ddb2f4bbcfa4692934c387db292db92 SHA512 
1e3a7f5a2f9ea84793ec938eb657fcbd6d5748f1cb055d085c638e30d1b5c1154a9dc0026d6e3592de074125c17926a4429757844f7d02b960f4a9a8d94a0433
 WHIRLPOOL 
e1c1cdc7aa789e26c847575bf1d5b64c62ca652254cd54068cf1b2e5580d5512ec31157ccd9c524dcbf654f401779a93dde9f9ca7481b69083db41c70fe247e7

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
index a3de032..daa89a4 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
@@ -28,8 +28,8 @@ DEPEND="${RDEPEND}
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 PATCHES=(
-   "${FILESDIR}"/${P}-missing-limits.patch
-   "${FILESDIR}"/${P}-stdint.patch
+   "${FILESDIR}"/${PN}-1.1.3-missing-limits.patch
+   "${FILESDIR}"/${PN}-1.1.3-stdint.patch
 )
 
 pkg_setup() {



[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/

2017-05-18 Thread Aric Belsito
commit: 3fdacf44c1401a0ee5831f2449de28a165160437
Author: Aric Belsito  gmail  com>
AuthorDate: Thu May 18 16:22:14 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu May 18 16:22:14 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=3fdacf44

media-libs/alsa-lib: version bump to 1.1.4

 media-libs/alsa-lib/Manifest | 4 ++--
 media-libs/alsa-lib/{alsa-lib-1.1.3.ebuild => alsa-lib-1.1.4.ebuild} | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index b9aa3df..e813ec4 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1,5 +1,5 @@
 AUX alsa-lib-1.1.3-missing-limits.patch 438 SHA256 
0209a6a218550f4c5edafef92daec6f04e402d554d37c70e9a8b77997aaaef03 SHA512 
cac154be8e27cac5c36e04f7b3df881234e6497bf49c777962a82176fcc745ec7c4f0cdd71a55c390bf415808ae76b3d5e7b383a9f59d00a0cfb5148b5653552
 WHIRLPOOL 
d790cd8469769c53896b188950c8ec474a0ebae5765d1953a5d4c9344d061667dae48341af7368e6d198d1749e9f506440298f991c179a7b4838a1787d283f6d
 AUX alsa-lib-1.1.3-stdint.patch 1322 SHA256 
a0ef37c76bcd4936086465faf79c0bb5e41388bda668068e9dd105085c16edd2 SHA512 
5f518c1096c64d0a10c5f26ab703d588bd27a6bcd8b9e833ece7dd3f459fb942e16b32c2a1a38f435c7519dd730325e69316af829a03c640c5d2435e456c86bd
 WHIRLPOOL 
3eb786187b720240911d8e10af9805cbb09353eb9dae02bbcad9668c33ef34f855ebc2883a1b33d8ff1b2c8e6def8654e76b2e3173466809cbbb75f5c3440a6b
-DIST alsa-lib-1.1.3.tar.bz2 962001 SHA256 
71282502184c592c1a008e256c22ed0ba5728ca65e05273ceb480c70f515969c SHA512 
f5dbe2375a8c66af14378314a5238284d4ed63dfc86a750c0c6e8f6cdb6b1ea2d8ef26f870b5d152dc0b77d9b40821cab523f6734902b91583beb08e28c66850
 WHIRLPOOL 
f33871789a7cc06a9db83fd659abdfeb7940d61a24ad7c71866f843d8c0c29eaf0e0770a2034dee2526c96835935b88c2fe882184c86528c98e7d4901f94b27d
-EBUILD alsa-lib-1.1.3.ebuild 2360 SHA256 
30103597f5d73fe3c7110cec1fa0d033bba25855c7c06523851d624717c7a0aa SHA512 
c3e8a086a62ec84f88e2adfc3e3067834db8f44b16bcb007bec81551d9ff870b02b9e0ab62d3ba425c60a823e66fb7a7961c1d3f85505c3caa421783acb4df6a
 WHIRLPOOL 
9046135b9a8f5cc48313a37001be5ae871365452644893575f731aabd7d50d2feaf00fb7f6147cf34534c21b6fe11d58d1d7cd4cb5acf08c2df66994d12e44ad
+DIST alsa-lib-1.1.4.tar.bz2 973825 SHA256 
82f50a09487079755d93e4c9384912196995bade6280bce9bfdcabf094bfb515 SHA512 
8dfc5cc8872138b9e7e234934e317d797e100ac99dac86a2a2e4bdcc0d49e8a05b4089b98341051b407750bed93c2713fae5218318e5ce6cc7db2801165a1c10
 WHIRLPOOL 
74eb6742d93b6f2988ea9f583623edd985897db278e5dcac6916b3e9b772f16db326feb37b81a191405cc43ec2a55d313e74293ccbb43281b15f3056bd8f623f
+EBUILD alsa-lib-1.1.4.ebuild 2360 SHA256 
e34a789e7e1302fdc610056011cf1951b2f690b25ed1c8994aacac7f23c6b853 SHA512 
554da12c5733310ab180bea162969c2b4fd22787eb424c187f643274b04d41235949eb36c35dc7cdb6cb68c48e0efe45f1a08ce1eb2c3296d65b1ddebdfea565
 WHIRLPOOL 
3b20d8724b1d929373a4b87abbdbb1d705ae7b3916ff1ccb22606424fe8bf7014c5154e4479ca672023f6e7a67922f11105c2fa4469143488ae54458af29e6f2
 MISC metadata.xml 438 SHA256 
f2bec88238bb4a607fc2bb215e5967996ddb2f4bbcfa4692934c387db292db92 SHA512 
1e3a7f5a2f9ea84793ec938eb657fcbd6d5748f1cb055d085c638e30d1b5c1154a9dc0026d6e3592de074125c17926a4429757844f7d02b960f4a9a8d94a0433
 WHIRLPOOL 
e1c1cdc7aa789e26c847575bf1d5b64c62ca652254cd54068cf1b2e5580d5512ec31157ccd9c524dcbf654f401779a93dde9f9ca7481b69083db41c70fe247e7

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
similarity index 98%
rename from media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
rename to media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
index 56ecb71..a3de032 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6



[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/

2017-05-07 Thread Aric Belsito
commit: cd65d9c7ddd5c750ac354fe8cd5ea9ddadbaa71b
Author: Aric Belsito  gmail  com>
AuthorDate: Mon May  8 03:59:02 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon May  8 03:59:14 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=cd65d9c7

media-libs/alsa-lib: disable symvers

musl doesn't really support them.

 media-libs/alsa-lib/Manifest  | 2 +-
 media-libs/alsa-lib/alsa-lib-1.1.3.ebuild | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index fd24ee3..b9aa3df 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1,5 +1,5 @@
 AUX alsa-lib-1.1.3-missing-limits.patch 438 SHA256 
0209a6a218550f4c5edafef92daec6f04e402d554d37c70e9a8b77997aaaef03 SHA512 
cac154be8e27cac5c36e04f7b3df881234e6497bf49c777962a82176fcc745ec7c4f0cdd71a55c390bf415808ae76b3d5e7b383a9f59d00a0cfb5148b5653552
 WHIRLPOOL 
d790cd8469769c53896b188950c8ec474a0ebae5765d1953a5d4c9344d061667dae48341af7368e6d198d1749e9f506440298f991c179a7b4838a1787d283f6d
 AUX alsa-lib-1.1.3-stdint.patch 1322 SHA256 
a0ef37c76bcd4936086465faf79c0bb5e41388bda668068e9dd105085c16edd2 SHA512 
5f518c1096c64d0a10c5f26ab703d588bd27a6bcd8b9e833ece7dd3f459fb942e16b32c2a1a38f435c7519dd730325e69316af829a03c640c5d2435e456c86bd
 WHIRLPOOL 
3eb786187b720240911d8e10af9805cbb09353eb9dae02bbcad9668c33ef34f855ebc2883a1b33d8ff1b2c8e6def8654e76b2e3173466809cbbb75f5c3440a6b
 DIST alsa-lib-1.1.3.tar.bz2 962001 SHA256 
71282502184c592c1a008e256c22ed0ba5728ca65e05273ceb480c70f515969c SHA512 
f5dbe2375a8c66af14378314a5238284d4ed63dfc86a750c0c6e8f6cdb6b1ea2d8ef26f870b5d152dc0b77d9b40821cab523f6734902b91583beb08e28c66850
 WHIRLPOOL 
f33871789a7cc06a9db83fd659abdfeb7940d61a24ad7c71866f843d8c0c29eaf0e0770a2034dee2526c96835935b88c2fe882184c86528c98e7d4901f94b27d
-EBUILD alsa-lib-1.1.3.ebuild 2336 SHA256 
cbd446f34fe96beb4668dee079e5d4bb6378c2537f98c955dbe4873c984da91b SHA512 
ce3ae724b0cfec68b69601bad1390d60125bc31172b87b07c81f59581dc0e8565d83251c7d64b6db143e490d765e096828011308350646fb5371b708807450b0
 WHIRLPOOL 
d4a90452c5bfd672a13d7beb7ee33749c114c0d2906d6c9508b8da212d571f7653bc6b577f604138c5e53ba290cb99ba43a187523f5ff8afa90e980ab8d08baf
+EBUILD alsa-lib-1.1.3.ebuild 2360 SHA256 
30103597f5d73fe3c7110cec1fa0d033bba25855c7c06523851d624717c7a0aa SHA512 
c3e8a086a62ec84f88e2adfc3e3067834db8f44b16bcb007bec81551d9ff870b02b9e0ab62d3ba425c60a823e66fb7a7961c1d3f85505c3caa421783acb4df6a
 WHIRLPOOL 
9046135b9a8f5cc48313a37001be5ae871365452644893575f731aabd7d50d2feaf00fb7f6147cf34534c21b6fe11d58d1d7cd4cb5acf08c2df66994d12e44ad
 MISC metadata.xml 438 SHA256 
f2bec88238bb4a607fc2bb215e5967996ddb2f4bbcfa4692934c387db292db92 SHA512 
1e3a7f5a2f9ea84793ec938eb657fcbd6d5748f1cb055d085c638e30d1b5c1154a9dc0026d6e3592de074125c17926a4429757844f7d02b960f4a9a8d94a0433
 WHIRLPOOL 
e1c1cdc7aa789e26c847575bf1d5b64c62ca652254cd54068cf1b2e5580d5512ec31157ccd9c524dcbf654f401779a93dde9f9ca7481b69083db41c70fe247e7

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
index 3febe2c..56ecb71 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
@@ -64,6 +64,7 @@ multilib_src_configure() {
--enable-rawmidi \
--enable-seq \
--enable-aload \
+   --without-versioned \
$(use_with debug) \
$(use_enable alisp) \
${myconf}



[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/files/, media-libs/alsa-lib/

2017-05-07 Thread Aric Belsito
commit: de85f71000b972bec865a7b793d4cbbeb46f5235
Author: Aric Belsito  gmail  com>
AuthorDate: Mon May  8 03:24:16 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon May  8 03:24:16 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=de85f710

media-libs/alsa-lib: fix patch

voidlinux patch does not use a `p1` path.

 media-libs/alsa-lib/Manifest  | 2 +-
 media-libs/alsa-lib/files/alsa-lib-1.1.3-stdint.patch | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index 7f2175b..fd24ee3 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1,5 +1,5 @@
 AUX alsa-lib-1.1.3-missing-limits.patch 438 SHA256 
0209a6a218550f4c5edafef92daec6f04e402d554d37c70e9a8b77997aaaef03 SHA512 
cac154be8e27cac5c36e04f7b3df881234e6497bf49c777962a82176fcc745ec7c4f0cdd71a55c390bf415808ae76b3d5e7b383a9f59d00a0cfb5148b5653552
 WHIRLPOOL 
d790cd8469769c53896b188950c8ec474a0ebae5765d1953a5d4c9344d061667dae48341af7368e6d198d1749e9f506440298f991c179a7b4838a1787d283f6d
-AUX alsa-lib-1.1.3-stdint.patch 1287 SHA256 
f353da22fdb6c742f7782cd8bf5401071a13775cd18e070418271d33cf5bbee1 SHA512 
e04ef4d7063166411895200fb293a1b4f73b1c73ea9543caed0c8557970b865da0bffb5a5b02ec7c0703ef44e33483bb931538f23e283b580fbac5831a46a42f
 WHIRLPOOL 
aa34af230d37b9a51a9bbd86bd5c327575dcaa9713671fd43036a1e2b51bfab9020ad31229a2cb6e00270a4f6377056810686bc8b397fcc1df013fec27ba4703
+AUX alsa-lib-1.1.3-stdint.patch 1322 SHA256 
a0ef37c76bcd4936086465faf79c0bb5e41388bda668068e9dd105085c16edd2 SHA512 
5f518c1096c64d0a10c5f26ab703d588bd27a6bcd8b9e833ece7dd3f459fb942e16b32c2a1a38f435c7519dd730325e69316af829a03c640c5d2435e456c86bd
 WHIRLPOOL 
3eb786187b720240911d8e10af9805cbb09353eb9dae02bbcad9668c33ef34f855ebc2883a1b33d8ff1b2c8e6def8654e76b2e3173466809cbbb75f5c3440a6b
 DIST alsa-lib-1.1.3.tar.bz2 962001 SHA256 
71282502184c592c1a008e256c22ed0ba5728ca65e05273ceb480c70f515969c SHA512 
f5dbe2375a8c66af14378314a5238284d4ed63dfc86a750c0c6e8f6cdb6b1ea2d8ef26f870b5d152dc0b77d9b40821cab523f6734902b91583beb08e28c66850
 WHIRLPOOL 
f33871789a7cc06a9db83fd659abdfeb7940d61a24ad7c71866f843d8c0c29eaf0e0770a2034dee2526c96835935b88c2fe882184c86528c98e7d4901f94b27d
 EBUILD alsa-lib-1.1.3.ebuild 2336 SHA256 
cbd446f34fe96beb4668dee079e5d4bb6378c2537f98c955dbe4873c984da91b SHA512 
ce3ae724b0cfec68b69601bad1390d60125bc31172b87b07c81f59581dc0e8565d83251c7d64b6db143e490d765e096828011308350646fb5371b708807450b0
 WHIRLPOOL 
d4a90452c5bfd672a13d7beb7ee33749c114c0d2906d6c9508b8da212d571f7653bc6b577f604138c5e53ba290cb99ba43a187523f5ff8afa90e980ab8d08baf
 MISC metadata.xml 438 SHA256 
f2bec88238bb4a607fc2bb215e5967996ddb2f4bbcfa4692934c387db292db92 SHA512 
1e3a7f5a2f9ea84793ec938eb657fcbd6d5748f1cb055d085c638e30d1b5c1154a9dc0026d6e3592de074125c17926a4429757844f7d02b960f4a9a8d94a0433
 WHIRLPOOL 
e1c1cdc7aa789e26c847575bf1d5b64c62ca652254cd54068cf1b2e5580d5512ec31157ccd9c524dcbf654f401779a93dde9f9ca7481b69083db41c70fe247e7

diff --git a/media-libs/alsa-lib/files/alsa-lib-1.1.3-stdint.patch 
b/media-libs/alsa-lib/files/alsa-lib-1.1.3-stdint.patch
index 38a1e87..88b2d33 100644
--- a/media-libs/alsa-lib/files/alsa-lib-1.1.3-stdint.patch
+++ b/media-libs/alsa-lib/files/alsa-lib-1.1.3-stdint.patch
@@ -1,8 +1,8 @@
 Use stdlib.h defined types uint8_t, uint16_t, uint32_t and uint64_t
 for compatibility with musl libc
 
 include/pcm.h  2015-02-26 13:34:52.0 +0100
-+++ include/pcm.h  2015-07-28 13:44:32.423885625 +0200
+--- alsa-lib-1.1.3.orig/include/pcm.h  2015-02-26 13:34:52.0 +0100
 alsa-lib-1.1.3/include/pcm.h   2015-07-28 13:44:32.423885625 +0200
 @@ -29,6 +29,8 @@
  #ifndef __ALSA_PCM_H
  #define __ALSA_PCM_H



[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/files/, media-libs/alsa-lib/

2017-05-07 Thread Aric Belsito
commit: 75b700c7eb92e71fa4bebc7b797eaf33e98c1e09
Author: Aric Belsito  gmail  com>
AuthorDate: Mon May  8 02:34:23 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon May  8 02:34:23 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=75b700c7

media-libs/alsa-lib: fix int types in pcm.h

 media-libs/alsa-lib/Manifest   |  3 ++-
 media-libs/alsa-lib/alsa-lib-1.1.3.ebuild  |  6 +++--
 .../alsa-lib/files/alsa-lib-1.1.3-stdint.patch | 29 ++
 3 files changed, 35 insertions(+), 3 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index 54af2dd..7f2175b 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1,4 +1,5 @@
 AUX alsa-lib-1.1.3-missing-limits.patch 438 SHA256 
0209a6a218550f4c5edafef92daec6f04e402d554d37c70e9a8b77997aaaef03 SHA512 
cac154be8e27cac5c36e04f7b3df881234e6497bf49c777962a82176fcc745ec7c4f0cdd71a55c390bf415808ae76b3d5e7b383a9f59d00a0cfb5148b5653552
 WHIRLPOOL 
d790cd8469769c53896b188950c8ec474a0ebae5765d1953a5d4c9344d061667dae48341af7368e6d198d1749e9f506440298f991c179a7b4838a1787d283f6d
+AUX alsa-lib-1.1.3-stdint.patch 1287 SHA256 
f353da22fdb6c742f7782cd8bf5401071a13775cd18e070418271d33cf5bbee1 SHA512 
e04ef4d7063166411895200fb293a1b4f73b1c73ea9543caed0c8557970b865da0bffb5a5b02ec7c0703ef44e33483bb931538f23e283b580fbac5831a46a42f
 WHIRLPOOL 
aa34af230d37b9a51a9bbd86bd5c327575dcaa9713671fd43036a1e2b51bfab9020ad31229a2cb6e00270a4f6377056810686bc8b397fcc1df013fec27ba4703
 DIST alsa-lib-1.1.3.tar.bz2 962001 SHA256 
71282502184c592c1a008e256c22ed0ba5728ca65e05273ceb480c70f515969c SHA512 
f5dbe2375a8c66af14378314a5238284d4ed63dfc86a750c0c6e8f6cdb6b1ea2d8ef26f870b5d152dc0b77d9b40821cab523f6734902b91583beb08e28c66850
 WHIRLPOOL 
f33871789a7cc06a9db83fd659abdfeb7940d61a24ad7c71866f843d8c0c29eaf0e0770a2034dee2526c96835935b88c2fe882184c86528c98e7d4901f94b27d
-EBUILD alsa-lib-1.1.3.ebuild 2309 SHA256 
9b128b3ffd95a16796305ff68440ec80ee87c99dc15fc7d180edd098bd0f72ba SHA512 
f890e5ae7dde1d915aaa5524eeb6034aee0270bf2df388b9792352541cdd7b0312cafb20b3fea4850e7773644dcb6a26915a0acfa52fe3b4488ee6b6a3c6b442
 WHIRLPOOL 
334a39d5f9b3dce527a35b8b06bf93c7565105653a3b02c3f6a632657a08a05fff9dcbfcdcee24c45b6b76c211da06645b8bd6a00faafe119910ad538aaf2cc2
+EBUILD alsa-lib-1.1.3.ebuild 2336 SHA256 
cbd446f34fe96beb4668dee079e5d4bb6378c2537f98c955dbe4873c984da91b SHA512 
ce3ae724b0cfec68b69601bad1390d60125bc31172b87b07c81f59581dc0e8565d83251c7d64b6db143e490d765e096828011308350646fb5371b708807450b0
 WHIRLPOOL 
d4a90452c5bfd672a13d7beb7ee33749c114c0d2906d6c9508b8da212d571f7653bc6b577f604138c5e53ba290cb99ba43a187523f5ff8afa90e980ab8d08baf
 MISC metadata.xml 438 SHA256 
f2bec88238bb4a607fc2bb215e5967996ddb2f4bbcfa4692934c387db292db92 SHA512 
1e3a7f5a2f9ea84793ec938eb657fcbd6d5748f1cb055d085c638e30d1b5c1154a9dc0026d6e3592de074125c17926a4429757844f7d02b960f4a9a8d94a0433
 WHIRLPOOL 
e1c1cdc7aa789e26c847575bf1d5b64c62ca652254cd54068cf1b2e5580d5512ec31157ccd9c524dcbf654f401779a93dde9f9ca7481b69083db41c70fe247e7

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
index 317b317..3febe2c 100644
--- a/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
+++ b/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
@@ -1,6 +1,5 @@
 # Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
 EAPI=6
 
@@ -28,7 +27,10 @@ DEPEND="${RDEPEND}
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-PATCHES=( "${FILESDIR}"/${P}-missing-limits.patch )
+PATCHES=(
+   "${FILESDIR}"/${P}-missing-limits.patch
+   "${FILESDIR}"/${P}-stdint.patch
+)
 
 pkg_setup() {
use python && python-single-r1_pkg_setup

diff --git a/media-libs/alsa-lib/files/alsa-lib-1.1.3-stdint.patch 
b/media-libs/alsa-lib/files/alsa-lib-1.1.3-stdint.patch
new file mode 100644
index 000..38a1e87
--- /dev/null
+++ b/media-libs/alsa-lib/files/alsa-lib-1.1.3-stdint.patch
@@ -0,0 +1,29 @@
+Use stdlib.h defined types uint8_t, uint16_t, uint32_t and uint64_t
+for compatibility with musl libc
+
+--- include/pcm.h  2015-02-26 13:34:52.0 +0100
 include/pcm.h  2015-07-28 13:44:32.423885625 +0200
+@@ -29,6 +29,8 @@
+ #ifndef __ALSA_PCM_H
+ #define __ALSA_PCM_H
+ 
++#include/* uint_ types */
++
+ #ifdef __cplusplus
+ extern "C" {
+ #endif
+@@ -1063,10 +1065,10 @@
+ int snd_pcm_format_physical_width(snd_pcm_format_t format);   /* in 
bits */
+ snd_pcm_format_t snd_pcm_build_linear_format(int width, int pwidth, int 
unsignd, int big_endian);
+ ssize_t snd_pcm_format_size(snd_pcm_format_t format, size_t samples);
+-u_int8_t snd_pcm_format_silence(snd_pcm_format_t format);
+-u_int16_t snd_pcm_format_silence_16(snd_pcm_format_t format);
+-u_int32_t snd_pcm_format_silence_32(snd_pcm_format_t format);
+-u_int64_t snd_pcm_format_silence_64(snd_pcm_format_t format);
++uint8_t 

[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/, media-libs/alsa-lib/files/

2016-12-22 Thread Aric Belsito
commit: e0d8fc262719125c62dc8dba0131dba3e0d355d4
Author: Aric Belsito  gmail  com>
AuthorDate: Thu Dec 22 23:24:52 2016 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu Dec 22 23:24:52 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=e0d8fc26

media-libs/alsa-lib: Add most recent version

Fails to compile because PATH_MAX is undeclared.

 media-libs/alsa-lib/Manifest   |  4 +
 media-libs/alsa-lib/alsa-lib-1.1.3.ebuild  | 93 ++
 .../files/alsa-lib-1.1.3-missing-limits.patch  | 11 +++
 media-libs/alsa-lib/metadata.xml   | 13 +++
 4 files changed, 121 insertions(+)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
new file mode 100644
index 000..54af2dd
--- /dev/null
+++ b/media-libs/alsa-lib/Manifest
@@ -0,0 +1,4 @@
+AUX alsa-lib-1.1.3-missing-limits.patch 438 SHA256 
0209a6a218550f4c5edafef92daec6f04e402d554d37c70e9a8b77997aaaef03 SHA512 
cac154be8e27cac5c36e04f7b3df881234e6497bf49c777962a82176fcc745ec7c4f0cdd71a55c390bf415808ae76b3d5e7b383a9f59d00a0cfb5148b5653552
 WHIRLPOOL 
d790cd8469769c53896b188950c8ec474a0ebae5765d1953a5d4c9344d061667dae48341af7368e6d198d1749e9f506440298f991c179a7b4838a1787d283f6d
+DIST alsa-lib-1.1.3.tar.bz2 962001 SHA256 
71282502184c592c1a008e256c22ed0ba5728ca65e05273ceb480c70f515969c SHA512 
f5dbe2375a8c66af14378314a5238284d4ed63dfc86a750c0c6e8f6cdb6b1ea2d8ef26f870b5d152dc0b77d9b40821cab523f6734902b91583beb08e28c66850
 WHIRLPOOL 
f33871789a7cc06a9db83fd659abdfeb7940d61a24ad7c71866f843d8c0c29eaf0e0770a2034dee2526c96835935b88c2fe882184c86528c98e7d4901f94b27d
+EBUILD alsa-lib-1.1.3.ebuild 2309 SHA256 
9b128b3ffd95a16796305ff68440ec80ee87c99dc15fc7d180edd098bd0f72ba SHA512 
f890e5ae7dde1d915aaa5524eeb6034aee0270bf2df388b9792352541cdd7b0312cafb20b3fea4850e7773644dcb6a26915a0acfa52fe3b4488ee6b6a3c6b442
 WHIRLPOOL 
334a39d5f9b3dce527a35b8b06bf93c7565105653a3b02c3f6a632657a08a05fff9dcbfcdcee24c45b6b76c211da06645b8bd6a00faafe119910ad538aaf2cc2
+MISC metadata.xml 438 SHA256 
f2bec88238bb4a607fc2bb215e5967996ddb2f4bbcfa4692934c387db292db92 SHA512 
1e3a7f5a2f9ea84793ec938eb657fcbd6d5748f1cb055d085c638e30d1b5c1154a9dc0026d6e3592de074125c17926a4429757844f7d02b960f4a9a8d94a0433
 WHIRLPOOL 
e1c1cdc7aa789e26c847575bf1d5b64c62ca652254cd54068cf1b2e5580d5512ec31157ccd9c524dcbf654f401779a93dde9f9ca7481b69083db41c70fe247e7

diff --git a/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
new file mode 100644
index 000..317b317
--- /dev/null
+++ b/media-libs/alsa-lib/alsa-lib-1.1.3.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+# no support for python3_2 or above yet wrt #471326
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools eutils multilib multilib-minimal python-single-r1
+
+DESCRIPTION="Advanced Linux Sound Architecture Library"
+HOMEPAGE="http://www.alsa-project.org/;
+SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+IUSE="alisp debug doc elibc_uclibc python"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )
+   abi_x86_32? (
+   !<=app-emulation/emul-linux-x86-soundlibs-20130224-r1
+   !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)]
+   )"
+DEPEND="${RDEPEND}
+   doc? ( >=app-doc/doxygen-1.2.6 )"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+PATCHES=( "${FILESDIR}"/${P}-missing-limits.patch )
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || 
die
+   # https://bugs.gentoo.org/509886
+   use elibc_uclibc && { sed -i -e 's:oldapi queue_timer:queue_timer:' 
test/Makefile.am || die; }
+   # https://bugs.gentoo.org/545950
+   sed -i -e '5s:^$:\nAM_CPPFLAGS = -I$(top_srcdir)/include:' 
test/lsb/Makefile.am || die
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   local myconf
+   # enable Python only on final ABI
+   if multilib_is_native_abi; then
+   myconf="$(use_enable python)"
+   else
+   myconf="--disable-python"
+   fi
+   use elibc_uclibc && myconf+=" --without-versioned"
+
+   ECONF_SOURCE=${S} \
+   econf \
+   --disable-maintainer-mode \
+   --enable-shared \
+   --disable-resmgr \
+   --enable-rawmidi \
+   --enable-seq \
+   --enable-aload \
+   $(use_with debug) \
+   $(use_enable alisp) \
+   ${myconf}
+}
+
+multilib_src_compile() {
+   emake
+
+   if multilib_is_native_abi && use doc; then
+   emake doc
+   fgrep -Zrl "${S}" doc/doxygen/html | \
+   xargs -0 

[gentoo-commits] proj/musl:master commit in: media-libs/alsa-lib/, media-libs/alsa-lib/files/

2015-11-24 Thread Anthony G. Basile
commit: b734a22c5afc83ded511acf3019d969de8200282
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Nov 25 01:01:03 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Nov 25 01:01:03 2015 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=b734a22c

media-libs/alsa-lib: in tree version works.

 media-libs/alsa-lib/Manifest   |  7 --
 media-libs/alsa-lib/alsa-lib-1.0.27.1-r99.ebuild   | 79 --
 .../alsa-lib/files/alsa-lib-1.0.25-pcm-h.patch | 27 
 .../alsa-lib/files/alsa-lib-1.0.27.1-musl.patch| 24 ---
 .../alsa-lib/files/alsa-lib-1.0.27.1-rewind.patch  | 40 ---
 .../files/alsa-lib-1.0.27.2-portable-mutex.patch   | 35 --
 media-libs/alsa-lib/metadata.xml   | 14 
 7 files changed, 226 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
deleted file mode 100644
index 0dcd29d..000
--- a/media-libs/alsa-lib/Manifest
+++ /dev/null
@@ -1,7 +0,0 @@
-AUX alsa-lib-1.0.25-pcm-h.patch 1177 SHA256 
e6525c81b77f5b5ba48ce2ba16be2622f54a7090e1268be5f5198e2490c9cf45 SHA512 
de62a1a1bfed51fc0482a145ed5fce7451b314a84a8c616f2af5f5e1f033da78f2a7800dc0b0921022d934efba110598a9d98d846c71b7861f2867c04093def2
 WHIRLPOOL 
395ccc8faa5bc59cee8f442224ddee9d1908c24918fd1bdfdd041454eaead4ba1f3e0895bf6d55f1ccbd92378bdc08e6681040ea01c713413aacbf500e008000
-AUX alsa-lib-1.0.27.1-musl.patch 965 SHA256 
f0f7079e38691bbb65418b097c4c66de2837237d33f0873b2403eca9145b7489 SHA512 
6cee79a298214c3a541cb5f523ed44957b169b8bef14d47792cc1f17b0887ae59018097e150c602fef4e70e486da983d495499916691dd7e5e0b512c6e194051
 WHIRLPOOL 
52767ab59ea59a127fac6470c6b0a843bcba9389b5b34ba5133f91f1b5d70e7b06846e9ae1d4ca73791a98cdc4be17ee6948ae0ea51d80733b69567fd93c532d
-AUX alsa-lib-1.0.27.1-rewind.patch 1514 SHA256 
b13b1758f1d54cae12510ccfc29ae3ccca0ab8e7ff97798d1de834a30f252fea SHA512 
67b38120d4d8be74fecf55af639fb1a3c9c118f1f0b1c55eee81b65693d1fee753c02eea6cabdd0273299d0c6af6e155a91e88efb900040c3069901fc8b2774e
 WHIRLPOOL 
fc6adbb7f833efaabfd40f3a4b76f27d1f5a7afdd02ca2b405a91ebf3f483fa03078710223116e0e1f1f2e273c8e26df9a5d5747db247b3617f9ff893cfc
-AUX alsa-lib-1.0.27.2-portable-mutex.patch 894 SHA256 
a26d381704f336fef02de6d8413434c56b6cc1401f30d66c10f5602cfd4ec523 SHA512 
e4fa707e714fe61628da3cb42adf9c69edfdde48ea034dd72ec34def26b9918f61000ab2343cffe97a55c275a3db0c8b0e7173bfc4c64a5eb74b1887ff4126dc
 WHIRLPOOL 
2b611d0737b9e57fe8a3f089e2ea81ee69e923c8168e17758565601cb94d31616908496fa4073cb0bd8687e8ef2b0fa303f52404469b64f4844c96a8962e1958
-DIST alsa-lib-1.0.27.1.tar.bz2 906234 SHA256 
690e07a3ef6270d40ed2130638dba3c18395aae8db4a109bcc473643ce29a03b SHA512 
546a52c5c23d51e3a49a36565c0bdda98efc3bbe8ba217c72cfb6986b0e1a6104a3040bc223a74966139416ce39709421a3131f3edb29362a3f949b0ae939909
 WHIRLPOOL 
485a5b260edc208776ca553d13065d242f1266e38b25dab252596fc8d4c9c3482d11fd3e472c7c96c97b396718a715ca12f36c76635bd069ebe09edc6815693f
-EBUILD alsa-lib-1.0.27.1-r99.ebuild 1953 SHA256 
4ea3f30026bc63720345cd2a8b0c1553c06d58e253675bb37df59155601e852d SHA512 
25fea6eeba3366a639eda1cd1c6d8ac51d2545553c3454ccb4ddeea17928236a47a830877b641091cb019670ca33d219867bc67b6a64018b17f571dacff9f563
 WHIRLPOOL 
46c3c5ed70df92ed41e1c4af461a468b632402d7947d429ef30b326cd22c4af81e6397b349be8c551e05fc097be1bc4262b31e7274340612a2db56ef6c7534d1
-MISC metadata.xml 443 SHA256 
2c3e6e0b3b3cfb7d4cd1b35cb092bc3e0fb60688f7aaedc29133408d00437fba SHA512 
ba3c80c882e081177bf371ebd8d8fa3696f0cdd8c214333f4a5515e7d2997884ffddb56559ce51e818fdf8516af0529eaed01e6048f582feddc701d9f27bdb30
 WHIRLPOOL 
8537995f235dbfaf3c242868af177df5199762de1842f0f7085388dbe86e7821ffe137bb3ea6591d45a36bed5499128e7724a8675bff124b676994e723062a2b

diff --git a/media-libs/alsa-lib/alsa-lib-1.0.27.1-r99.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.0.27.1-r99.ebuild
deleted file mode 100644
index 0967bf4..000
--- a/media-libs/alsa-lib/alsa-lib-1.0.27.1-r99.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.27.1.ebuild,v 1.15 
2013/09/01 18:36:03 ago Exp $
-
-EAPI=5
-
-# no support for python3_2 or above yet wrt #471326
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools eutils multilib python-single-r1
-
-DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="http://www.alsa-project.org/;
-SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 arm ~mips ppc x86"
-IUSE="doc debug alisp python"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
-   doc? ( >=app-doc/doxygen-1.2.6 )"
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || 
die
-   # force use of correct python-config wrt #478802
-   if [[ ${ABI} ==