public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/openal/
Date: Fri,  1 Jan 2021 00:20:22 +0000 (UTC)	[thread overview]
Message-ID: <1609460419.68a709f813aaaf95bb49f77ed1394f7ebbe94101.sam@gentoo> (raw)

commit:     68a709f813aaaf95bb49f77ed1394f7ebbe94101
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  1 00:11:31 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan  1 00:20:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68a709f8

media-libs/openal: bump to 1.21.0

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/openal/Manifest             |  1 +
 media-libs/openal/openal-1.21.0.ebuild | 68 ++++++++++++++++++++++++++++++++++
 2 files changed, 69 insertions(+)

diff --git a/media-libs/openal/Manifest b/media-libs/openal/Manifest
index d3069547bac..d966abffd37 100644
--- a/media-libs/openal/Manifest
+++ b/media-libs/openal/Manifest
@@ -1,2 +1,3 @@
 DIST openal-soft-1.20.0.tar.bz2 587550 BLAKE2B 4ce0b520db65e0298d334bae104dc0e38c2daf41680e40c259451741f7d4c8b06948f00b96efb31aec528e18b65e3f7099ea8b2fbc4cef963cf9a912f51c276a SHA512 7b103ffeeb8a6541d4bd31245ca5e34fec27d121fe04c21655480fb3907604f4171f912411f1e49622ec27db79d6cb85eb452ed78523abc906f18af57ffb755e
 DIST openal-soft-1.20.1.tar.bz2 512971 BLAKE2B be0abb32698d5ea77e8667e1b00fb123673325b0361c711d6c232d96d1add6d5c9a3e2ba7a3d04afcad27fe4f18ae803f690b14c98d198b77c75f1865679081f SHA512 a8a03a2162b5d35e66adc079e81d7fa075b83a3ee1cec3412cb40f7789263ed8bd005beefb7ef995f464dfa43aac22ea0f547b752dfc7533ed9120a95fb92513
+DIST openal-soft-1.21.0.tar.bz2 525483 BLAKE2B 28d44cfddd93bf6637b476cdcc44c5f69a1a8036c17d63be2defdce47d038bf54c29c9248070a65e7c6f86497ed3b79fd5548832bd67a1ebb67ffc363e46de9b SHA512 12e7dca4040765e06658d2945e984af01f21c65b7d44f9daee3a55457c27bd050bf74665e91ebfefdac09739774ace3e7a4bfc02870778cd65268941314aeb3b

diff --git a/media-libs/openal/openal-1.21.0.ebuild b/media-libs/openal/openal-1.21.0.ebuild
new file mode 100644
index 00000000000..049cee97b81
--- /dev/null
+++ b/media-libs/openal/openal-1.21.0.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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"
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="
+	alsa coreaudio debug jack oss portaudio pulseaudio sdl qt5
+	cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse4_1
+	cpu_flags_arm_neon
+"
+
+RDEPEND="
+	alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
+	jack? ( virtual/jack[${MULTILIB_USEDEP}] )
+	portaudio? ( >=media-libs/portaudio-19_pre20111121-r1[${MULTILIB_USEDEP}] )
+	pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
+	qt5? (
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtwidgets:5
+	)
+	sdl? ( media-libs/libsdl2[${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)
+			-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)
+			-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
+		)
+
+		use cpu_flags_arm_neon && mycmakeargs+=( -DALSOFT_CPUEXT_NEON=$(usex cpu_flags_arm_neon) )
+
+		cmake_src_configure
+	}
+
+	multilib_parallel_foreach_abi my_configure
+}


             reply	other threads:[~2021-01-01  0:20 UTC|newest]

Thread overview: 126+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-01  0:20 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-06-11 10:44 [gentoo-commits] repo/gentoo:master commit in: media-libs/openal/ 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-06-25  8:56 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
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=1609460419.68a709f813aaaf95bb49f77ed1394f7ebbe94101.sam@gentoo \
    --to=sam@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