From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/openal/
Date: Sat, 25 Jun 2022 08:56:08 +0000 (UTC) [thread overview]
Message-ID: <1656147366.05ae3e3e69fe3bba242c5515207346ca87633fde.fordfrog@gentoo> (raw)
commit: 05ae3e3e69fe3bba242c5515207346ca87633fde
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 25 08:55:57 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Jun 25 08:56:06 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05ae3e3e
media-libs/openal: bump to 1.22.1, cleanup of dep versions
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-libs/openal/Manifest | 1 +
media-libs/openal/openal-1.22.1.ebuild | 83 ++++++++++++++++++++++++++++++++++
2 files changed, 84 insertions(+)
diff --git a/media-libs/openal/Manifest b/media-libs/openal/Manifest
index 7550926d98a7..2aa401c4acf4 100644
--- a/media-libs/openal/Manifest
+++ b/media-libs/openal/Manifest
@@ -1 +1,2 @@
DIST openal-soft-1.22.0.tar.bz2 606420 BLAKE2B c244c28a253168a6651230d31608449b885d3519d07bf66669befb51a5618c2cab6166496f69230969ff38982eb2c82e1e467a741376a2af38dfe59687143411 SHA512 1e3df371d126e19e369dd01e3c5e95d6a32b664adf54ee37836d51ca7bc829f275d945388d8a40a3ac92c1151380bd68bbab4f8a08f59ea67dd1bd9b9a1d0cbd
+DIST openal-soft-1.22.1.tar.bz2 606062 BLAKE2B a7f18ab35fc67488b31b62ed7049e70b22dadfdf9db1f0d8132bb5391be144611d82ea938692761909edd38ca3b3b9828b4f5a9eb8730c0a7673c346a18321c6 SHA512 1685890c358319a74a9fd1bd0333354d13194287697aa63d149323b98fc56837d574d7c74d2f54e0fdf5671c6effe5909fec54060e471a294d14dc82ba1dc38a
diff --git a/media-libs/openal/openal-1.22.1.ebuild b/media-libs/openal/openal-1.22.1.ebuild
new file mode 100644
index 000000000000..3e5f3a6b9593
--- /dev/null
+++ b/media-libs/openal/openal-1.22.1.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_ECLASS=cmake
+inherit cmake-multilib
+
+MY_P="${PN}-soft-${PV}"
+
+DESCRIPTION="A software implementation of the OpenAL 3D audio API"
+HOMEPAGE="https://www.openal-soft.org/"
+SRC_URI="https://www.openal-soft.org/openal-releases/${MY_P}.tar.bz2"
+
+# See https://github.com/kcat/openal-soft/blob/e0097c18b82d5da37248c4823fde48b6e0002cdd/BSD-3Clause
+# Some components are under BSD
+LICENSE="LGPL-2+ BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="
+ alsa coreaudio debug jack oss portaudio pulseaudio sdl sndio qt5
+ cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse4_1
+ cpu_flags_arm_neon
+"
+
+RDEPEND="
+ alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+ jack? ( virtual/jack[${MULTILIB_USEDEP}] )
+ portaudio? ( media-libs/portaudio[${MULTILIB_USEDEP}] )
+ pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
+ qt5? (
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ )
+ sdl? ( media-libs/libsdl2[${MULTILIB_USEDEP}] )
+ sndio? ( media-sound/sndio:=[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+ oss? ( virtual/os-headers )"
+
+S="${WORKDIR}/${MY_P}"
+
+DOCS=( alsoftrc.sample docs/env-vars.txt docs/hrtf.txt ChangeLog README.md )
+
+src_configure() {
+ # -DEXAMPLES=OFF to avoid FFmpeg dependency wrt #481670
+ my_configure() {
+ local mycmakeargs=(
+ -DALSOFT_REQUIRE_ALSA=$(usex alsa)
+ -DALSOFT_REQUIRE_COREAUDIO=$(usex coreaudio)
+ -DALSOFT_REQUIRE_JACK=$(usex jack)
+ -DALSOFT_REQUIRE_OSS=$(usex oss)
+ -DALSOFT_REQUIRE_PORTAUDIO=$(usex portaudio)
+ -DALSOFT_REQUIRE_PULSEAUDIO=$(usex pulseaudio)
+ -DALSOFT_REQUIRE_SDL2=$(usex sdl)
+ # See bug #809314 for getting both options for sndio
+ -DALSOFT_{BACKEND,REQUIRE}_SNDIO=$(usex sndio)
+ -DALSOFT_UTILS=$(multilib_is_native_abi && echo "ON" || echo "OFF")
+ -DALSOFT_NO_CONFIG_UTIL=$(usex qt5 "$(multilib_is_native_abi && echo "OFF" || echo "ON")" ON)
+ -DALSOFT_EXAMPLES=OFF
+ )
+
+ # Avoid unused variable warnings, bug #738240
+ if use amd64 || use x86 ; then
+ mycmakeargs+=(
+ -DALSOFT_CPUEXT_SSE=$(usex cpu_flags_x86_sse)
+ -DALSOFT_CPUEXT_SSE2=$(usex cpu_flags_x86_sse2)
+ -DALSOFT_CPUEXT_SSE4_1=$(usex cpu_flags_x86_sse4_1)
+ )
+ fi
+
+ if use arm || use arm64 ; then
+ mycmakeargs+=(
+ -DALSOFT_CPUEXT_NEON=$(usex cpu_flags_arm_neon)
+ )
+ fi
+
+ cmake_src_configure
+ }
+
+ multilib_parallel_foreach_abi my_configure
+}
next reply other threads:[~2022-06-25 8:56 UTC|newest]
Thread overview: 142+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-25 8:56 Miroslav Šulc [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-23 2:00 [gentoo-commits] repo/gentoo:master commit in: media-libs/openal/ Sam James
2025-02-16 4:15 Sam James
2025-02-15 15:58 Sam James
2025-02-13 0:18 Sam James
2025-02-13 0:18 Sam James
2025-02-12 18:23 Sam James
2025-02-12 18:23 Sam James
2025-01-12 10:44 Miroslav Šulc
2024-12-21 3:11 Sam James
2024-12-20 22:58 Sam James
2024-12-20 22:58 Sam James
2024-12-20 22:58 Sam James
2024-12-20 22:58 Sam James
2024-12-20 15:43 Sam James
2024-12-20 15:43 Sam James
2024-11-17 13:14 Miroslav Šulc
2023-06-11 10:44 Andreas Sturmlechner
2023-05-12 19:28 Sam James
2023-05-12 10:50 Arthur Zamarin
2023-05-12 10:50 Arthur Zamarin
2023-05-12 10:50 Arthur Zamarin
2023-05-12 10:50 Arthur Zamarin
2023-05-12 8:49 Arthur Zamarin
2023-05-12 8:49 Arthur Zamarin
2023-04-12 6:15 Miroslav Šulc
2023-03-25 5:46 Miroslav Šulc
2023-03-24 20:12 Arthur Zamarin
2023-03-11 9:10 Arthur Zamarin
2023-03-11 9:03 Arthur Zamarin
2023-03-11 8:38 Arthur Zamarin
2023-02-05 8:38 Miroslav Šulc
2022-10-19 10:07 WANG Xuerui
2022-09-22 6:11 Miroslav Šulc
2022-09-21 12:27 Agostino Sarubbo
2022-09-21 12:26 Agostino Sarubbo
2022-09-21 12:24 Agostino Sarubbo
2022-09-21 12:24 Agostino Sarubbo
2022-09-21 12:23 Agostino Sarubbo
2022-09-21 5:58 Jakov Smolić
2022-09-21 5:58 Jakov Smolić
2022-08-21 6:22 Sam James
2022-08-21 3:07 Sam James
2022-07-30 4:00 Miroslav Šulc
2022-07-29 11:20 Agostino Sarubbo
2022-07-29 8:01 Agostino Sarubbo
2022-07-29 8:01 Agostino Sarubbo
2022-07-29 7:59 Agostino Sarubbo
2022-07-29 7:59 Agostino Sarubbo
2022-07-29 7:47 Arthur Zamarin
2022-07-29 7:47 Arthur Zamarin
2022-06-28 4:02 Miroslav Šulc
2022-05-26 4:48 Miroslav Šulc
2022-05-25 11:23 Jakov Smolić
2022-05-25 11:23 Jakov Smolić
2022-05-25 10:50 Jakov Smolić
2022-05-25 7:39 Jakov Smolić
2022-05-25 7:24 Jakov Smolić
2022-05-25 7:11 Jakov Smolić
2022-05-25 7:11 Jakov Smolić
2022-04-25 6:04 Miroslav Šulc
2021-08-27 2:48 Sam James
2021-04-25 6:08 Miroslav Šulc
2021-04-23 16:13 Sam James
2021-04-22 12:23 Sam James
2021-04-21 19:03 Sam James
2021-04-20 23:35 Sam James
2021-04-20 23:35 Sam James
2021-04-20 23:35 Sam James
2021-04-20 23:35 Sam James
2021-02-15 5:49 Sam James
2021-02-15 5:35 Sam James
2021-02-15 0:38 Sam James
2021-02-06 20:56 Sam James
2021-02-05 12:29 Sam James
2021-02-05 5:03 Sam James
2021-02-05 5:03 Sam James
2021-02-03 0:20 Sam James
2021-02-01 13:33 Sam James
2021-02-01 13:31 Sam James
2021-02-01 13:30 Sam James
2021-01-23 21:13 Andreas Sturmlechner
2021-01-01 0:20 Sam James
2020-09-03 23:57 Sam James
2020-09-02 17:49 Sam James
2020-09-01 16:04 Sam James
2020-08-30 19:10 Thomas Deutschmann
2020-08-29 13:00 Sam James
2020-08-29 1:27 Sam James
2020-08-28 16:53 Sergei Trofimovich
2020-04-05 9:38 Andreas Sturmlechner
2020-04-05 9:35 Mart Raudsepp
2020-02-11 13:58 Lars Wendler
2020-01-27 11:35 Mikle Kolyada
2020-01-21 10:42 Agostino Sarubbo
2020-01-21 10:34 Agostino Sarubbo
2020-01-21 10:33 Agostino Sarubbo
2020-01-21 8:53 Agostino Sarubbo
2020-01-21 8:52 Agostino Sarubbo
2020-01-20 12:52 Agostino Sarubbo
2019-12-02 13:21 Lars Wendler
2019-11-30 12:08 Andreas Sturmlechner
2019-06-28 22:19 Sergei Trofimovich
2019-06-12 13:01 Andreas Sturmlechner
2019-05-12 20:56 Thomas Deutschmann
2019-05-11 12:20 Mikle Kolyada
2019-05-06 18:04 Tobias Klausmann
2019-04-08 0:18 Aaron Bauman
2019-04-07 21:00 Sergei Trofimovich
2019-03-10 10:19 Andreas Sturmlechner
2018-10-26 14:19 Lars Wendler
2018-10-26 14:19 Lars Wendler
2018-10-26 14:19 Lars Wendler
2018-09-10 12:37 Lars Wendler
2018-05-20 19:10 Andreas Sturmlechner
2018-03-28 22:38 Sergei Trofimovich
2018-03-25 17:18 Markus Meier
2018-03-20 8:12 Sergei Trofimovich
2018-03-04 11:34 Tobias Klausmann
2018-02-07 22:47 Sergei Trofimovich
2018-01-21 20:30 Thomas Deutschmann
2018-01-15 19:03 Tobias Klausmann
2018-01-14 19:45 Sergei Trofimovich
2018-01-14 11:55 Andreas Sturmlechner
2018-01-14 11:55 Andreas Sturmlechner
2017-10-02 10:21 Lars Wendler
2017-09-30 1:07 Lars Wendler
2017-09-30 1:07 Lars Wendler
2017-08-01 8:08 Lars Wendler
2017-06-18 11:56 Alexis Ballier
2017-06-18 11:56 Alexis Ballier
2017-06-09 1:19 Lars Wendler
2017-06-09 1:19 Lars Wendler
2017-01-29 19:15 Fabian Groffen
2016-01-28 18:31 Alexis Ballier
2016-01-28 18:31 Alexis Ballier
2016-01-04 17:27 Michael Sterrett
2015-12-09 23:38 Patrice Clement
2015-12-09 23:38 Patrice Clement
2015-12-09 23:38 Patrice Clement
2015-12-09 23:38 Patrice Clement
2015-12-01 23:40 Michael Sterrett
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1656147366.05ae3e3e69fe3bba242c5515207346ca87633fde.fordfrog@gentoo \
--to=fordfrog@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox