public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opus/
Date: Thu, 25 May 2017 15:48:58 +0000 (UTC)	[thread overview]
Message-ID: <1495727327.2ff651fe335420e3a3c82f154cdb19cd28ba18de.aballier@gentoo> (raw)

commit:     2ff651fe335420e3a3c82f154cdb19cd28ba18de
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu May 25 15:20:18 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu May 25 15:48:47 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ff651fe

media-libs/opus: bump to 1.1.5

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/opus/Manifest          |  1 +
 media-libs/opus/opus-1.1.5.ebuild | 47 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/media-libs/opus/Manifest b/media-libs/opus/Manifest
index 95c830b94d6..7e91854f28e 100644
--- a/media-libs/opus/Manifest
+++ b/media-libs/opus/Manifest
@@ -1,3 +1,4 @@
 DIST opus-1.1.3.tar.gz 978848 SHA256 58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633 SHA512 99fe272ade3f072e38101ec29f9125c9f4f2bacbcc002a9caca6e64a721f6c4193d7b1b81bd8370225693249c94293c4eea980e66c704424939dabbab890ab43 WHIRLPOOL 21137bae340d95ff99c45ff8014a89a104ee3557ddc366639e0badd317de072b135eec3c5292db3e47fb92da1abf3854a62d29e4d9d9fded109ddc272e86d38c
 DIST opus-1.1.4.tar.gz 978830 SHA256 9122b6b380081dd2665189f97bfd777f04f92dc3ab6698eea1dbb27ad59d8692 SHA512 57f14b9e8037eaa02a4d86535d3bbcceca249310fbc9ef1a452cc19dd442d4cf338d5db241d20605c236e22549df2c8266b7486c5f1666b80c532afd52cb3585 WHIRLPOOL 6331d567689bf4cf6151dcec6768a69fad455e3b92cfaca2b23bf6d1fa3fcfedb49e90762e51c96a5ec16ac5e90665849c38474d4fb55b8352f02fabb283e33d
+DIST opus-1.1.5.tar.gz 978844 SHA256 eb84981ca0f40a3e5d5e58d2e8582cb2fee05a022825a6dfe14d14b04eb563e4 SHA512 20a211caf3c363a77f042abb5c6da0ca186887511b467d3434e927d0e3b8850ac6ee32c671a60c549343d38617fca77cc10ca01a7e9cc864ecc2dcebed95c6bd WHIRLPOOL d3bbe160af0acb287e9676369b3210c65008306c5d59b8a5fddb6a1dc97e96c08caeaf82e380d8c1f284e7d1e010f5d0974fad3e985aa880dac5deb3ee59a90a
 DIST opus-1.2-alpha2.tar.gz 990837 SHA256 c0e90507259cf21ce7b2c82fb9ac55367d8543dae91cc3d4d2c59afd37f44023 SHA512 2bf69fe719c396e455cbc5d4e21114eb8483cc8b90bda698b9ff140782a65d0acf3dd9724684f5911ae05c93a96f6e96124c9cc55320c8208860be6faef9fd91 WHIRLPOOL 05b5166cba227470900e3d255bf5c8dbbc55b34d0dd2e5372f99b32c14c8a1b7e1f92007b94d4b3a925435c328fee05000301f20b8d7fffb3e047643e0e79b85

diff --git a/media-libs/opus/opus-1.1.5.ebuild b/media-libs/opus/opus-1.1.5.ebuild
new file mode 100644
index 00000000000..d297f50f18f
--- /dev/null
+++ b/media-libs/opus/opus-1.1.5.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit multilib-minimal
+
+if [[ ${PV} == *9999 ]] ; then
+	inherit git-2
+	EGIT_REPO_URI="git://git.opus-codec.org/opus.git"
+else
+	SRC_URI="https://archive.mozilla.org/pub/${PN}/${P}.tar.gz
+		http://downloads.xiph.org/releases/${PN}/${P}.tar.gz"
+	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+fi
+
+DESCRIPTION="Open codec designed for internet transmission of interactive speech and audio"
+HOMEPAGE="http://opus-codec.org/"
+SRC_URI="http://downloads.xiph.org/releases/opus/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+
+# ABI -> intrinsics cpu flag (must have only one flag per abi)
+INTRINSIC_ABI_MAP="x86:cpu_flags_x86_sse amd64:cpu_flags_x86_sse arm:neon arm64:neon"
+IUSE="ambisonics custom-modes doc static-libs"
+for i in ${INTRINSIC_ABI_MAP} ; do
+	IUSE="${IUSE} ${i#*:}"
+done
+
+DEPEND="doc? ( app-doc/doxygen )"
+
+multilib_src_configure() {
+	local myeconfargs=(
+		$(use_enable custom-modes)
+		$(use_enable ambisonics)
+		$(use_enable doc)
+	)
+	for i in ${INTRINSIC_ABI_MAP} ; do
+		local abi=${i%:*}
+		local flag=${i#*:}
+		if [ x"${ABI}" = x"${abi}" ] ; then
+			use ${flag} || myeconfargs+=( --disable-intrinsics )
+		fi
+	done
+	ECONF_SOURCE="${S}" \
+	econf "${myeconfargs[@]}"
+}


             reply	other threads:[~2017-05-25 15:49 UTC|newest]

Thread overview: 115+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-25 15:48 Alexis Ballier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-30  9:44 [gentoo-commits] repo/gentoo:master commit in: media-libs/opus/ Miroslav Šulc
2024-07-30  9:42 Miroslav Šulc
2024-05-26  8:22 Miroslav Šulc
2024-05-25 17:31 Arthur Zamarin
2024-05-19 17:03 Arthur Zamarin
2024-05-17 13:05 Sam James
2024-05-17 12:48 Sam James
2024-05-17 12:48 Sam James
2024-05-17 12:48 Sam James
2024-05-17 12:48 Sam James
2024-04-16  8:09 Miroslav Šulc
2024-04-05  9:06 Arthur Zamarin
2024-04-05  9:06 Arthur Zamarin
2024-04-05  9:06 Arthur Zamarin
2024-03-05 12:04 Miroslav Šulc
2024-03-05 11:35 Sam James
2024-03-05 11:26 Miroslav Šulc
2023-12-10  1:38 Ionen Wolkens
2023-07-12  6:39 Jakov Smolić
2023-05-29 20:34 Sam James
2023-05-27 11:12 Sam James
2023-05-27 11:12 Sam James
2023-05-23 15:16 Arthur Zamarin
2023-05-23 15:16 Arthur Zamarin
2023-04-23  7:46 Sam James
2023-04-20 15:41 Sam James
2023-01-23  3:29 Sam James
2022-08-30 19:06 Sam James
2022-04-23  1:21 Sam James
2022-01-10 12:41 James Le Cuirot
2021-07-13 11:21 Marek Szuba
2021-06-13  6:41 Miroslav Šulc
2021-06-13  6:30 Agostino Sarubbo
2021-06-13  6:28 Agostino Sarubbo
2021-06-13  3:45 Sam James
2021-06-12 16:05 Sam James
2021-06-12 16:05 Sam James
2021-06-12 15:43 Sam James
2021-06-12 15:43 Sam James
2021-05-28 15:37 David Seifert
2021-05-28 15:37 David Seifert
2020-10-19 16:53 Mike Gilbert
2020-02-10 15:37 David Seifert
2020-02-10 15:30 Jory Pratt
2020-02-08 11:40 Sergei Trofimovich
2020-02-07 13:16 Agostino Sarubbo
2020-02-07 12:12 Agostino Sarubbo
2020-02-06  9:04 Sergei Trofimovich
2020-02-06  8:26 Sergei Trofimovich
2020-02-06  8:21 Agostino Sarubbo
2020-02-06  7:51 Sergei Trofimovich
2020-02-05 19:26 Sergei Trofimovich
2019-05-22  1:25 Stefan Strogin
2019-05-08  1:31 Stefan Strogin
2019-05-08  1:31 Stefan Strogin
2019-05-03  8:44 Pacho Ramos
2019-05-02 21:10 Mikle Kolyada
2019-04-02  1:37 Thomas Deutschmann
2019-03-30 19:05 Mikle Kolyada
2019-03-25 22:18 Sergei Trofimovich
2019-03-24 20:25 Sergei Trofimovich
2019-03-24 20:12 Sergei Trofimovich
2019-03-24 19:44 Sergei Trofimovich
2019-03-24 13:08 Sergei Trofimovich
2019-03-24 10:01 Agostino Sarubbo
2018-11-08 15:55 Andreas Sturmlechner
2018-11-08 15:55 Andreas Sturmlechner
2018-11-08 15:55 Andreas Sturmlechner
2018-09-24 16:10 Lars Wendler
2018-04-15 14:19 Sergei Trofimovich
2018-04-02 21:32 Sergei Trofimovich
2018-03-28 22:41 Matt Turner
2018-03-15 16:30 Mikle Kolyada
2018-03-05 14:52 Tobias Klausmann
2018-02-25 18:21 Thomas Deutschmann
2018-02-24 11:06 Sergei Trofimovich
2018-02-24  8:55 Sergei Trofimovich
2018-02-24  7:20 Jason Zaman
2018-02-23 23:17 Sergei Trofimovich
2017-08-31 12:58 Tim Harder
2017-08-31 12:58 Tim Harder
2017-08-31 12:58 Tim Harder
2017-08-31 12:58 Tim Harder
2017-08-31 12:58 Tim Harder
2017-07-13  6:22 Tim Harder
2017-06-21 11:19 Alexis Ballier
2017-06-21 11:17 Alexis Ballier
2017-06-16 10:10 Alexis Ballier
2017-05-26 11:20 Lars Wendler
2017-05-25 21:57 Lars Wendler
2017-05-18 15:43 Lars Wendler
2017-02-15 20:12 Alexis Ballier
2017-02-15 18:18 Markus Meier
2017-01-23 16:27 Agostino Sarubbo
2017-01-21 17:16 Agostino Sarubbo
2017-01-21 14:10 Jeroen Roovers
2017-01-21 11:37 Tobias Klausmann
2017-01-20 18:57 David Seifert
2017-01-14 12:47 Jeroen Roovers
2016-12-24 10:26 Agostino Sarubbo
2016-12-22  9:34 Agostino Sarubbo
2016-12-20  9:44 Agostino Sarubbo
2016-12-19 15:12 Agostino Sarubbo
2016-12-19 14:35 Agostino Sarubbo
2016-12-18 15:57 Agostino Sarubbo
2016-12-18  2:15 Aaron Bauman
2016-12-14  9:14 Tobias Klausmann
2016-11-26 21:27 Lars Wendler
2016-11-26 21:27 Lars Wendler
2016-09-22  9:52 Alexis Ballier
2016-07-18 10:08 Lars Wendler
2016-07-18 10:08 Lars Wendler
2016-01-16 14:02 Alexis Ballier
2015-12-03  9:02 Alexis Ballier

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=1495727327.2ff651fe335420e3a3c82f154cdb19cd28ba18de.aballier@gentoo \
    --to=aballier@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