From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/asterisk-core-sounds/
Date: Thu, 26 Mar 2020 07:22:21 +0000 (UTC) [thread overview]
Message-ID: <1585207321.002ccc2c7714d75bdaaeda5a8f6e6e057d417f92.juippis@gentoo> (raw)
commit: 002ccc2c7714d75bdaaeda5a8f6e6e057d417f92
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Sat Mar 21 18:03:09 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Mar 26 07:22:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=002ccc2c
net-misc/asterisk-core-sounds: Don't force install gsm.
This clones the REQUIRED_USE mechanism from asterisk-extra-sounds in
order to provide the user with more flexibility.
http => https where possible.
Revision bump due to alteration of USE flags.
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/15043
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
.../asterisk-core-sounds-1.6.1-r1.ebuild | 69 ++++++++++++++++++++++
1 file changed, 69 insertions(+)
diff --git a/net-misc/asterisk-core-sounds/asterisk-core-sounds-1.6.1-r1.ebuild b/net-misc/asterisk-core-sounds/asterisk-core-sounds-1.6.1-r1.ebuild
new file mode 100644
index 00000000000..b109eb85043
--- /dev/null
+++ b/net-misc/asterisk-core-sounds/asterisk-core-sounds-1.6.1-r1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+DESCRIPTION="Core sounds for asterisk"
+HOMEPAGE="https://www.asterisk.org/"
+MY_L10N="^en en_AU en_GB es fr it ja ru sv" # ^ is used to indicate to the loops below to NOT set this as an optional
+CODECS="alaw g722 g729 +gsm siren7 siren14 sln16 ulaw wav"
+
+SRC_URI=""
+IUSE="${CODECS}"
+for l in ${MY_L10N}; do
+ [[ "${l}" != ^* ]] && IUSE+=" l10n_${l//_/-}" && SRC_URI+=" l10n_${l//_/-}? ("
+ for c in ${CODECS}; do
+ SRC_URI+=" ${c#+}? ( https://downloads.asterisk.org/pub/telephony/sounds/releases/${PN}-${l#^}-${c#+}-${PV}.tar.gz )"
+ done
+ [[ "${l}" = ^* ]] || SRC_URI+=" )"
+done
+
+REQUIRED_USE="|| ( ${CODECS//+/} )"
+
+LICENSE="CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+S="${WORKDIR}"
+
+RDEPEND="!<net-misc/asterisk-extra-sounds-1.5.2"
+
+src_unpack() {
+ local ar
+ local c
+
+ for ar in ${A}; do
+ l="${ar#${PN}-}"
+ l=${l%%-*}
+ c="${ar#${PN}-*-}"
+ c=${c%%-*}
+ ebegin "Unpacking ${c} audio files for \"${l}\""
+ [ -d "${WORKDIR}/${l}" ] || mkdir "${WORKDIR}/${l}" || die "Error creating unpack directory"
+ tar xf "${DISTDIR}/${ar}" -C "${WORKDIR}/${l}" || die "Error unpacking ${ar}"
+ eend $?
+ done
+}
+
+src_install() {
+ local l
+ local pf
+ for l in ${MY_L10N}; do
+ if [[ "${l}" = ^* ]] || use l10n_${l//_/-}; then
+ l="${l#^}"
+ dodoc ${l}/${PN#asterisk-}-${l}.txt
+ rm ${l}/${PN#asterisk-}-${l}.txt
+ for pf in CHANGES CREDITS LICENSE; do
+ dodoc ${l}/${pf}-${PN%-sounds}-${l}-${PV}
+ rm ${l}/${pf}-${PN%-sounds}-${l}-${PV}
+ done
+ fi
+ done
+
+ diropts -m 0755 -o root -g root
+ insopts -m 0644 -o root -g root
+
+ ebegin "Installing audio files"
+ insinto /var/lib/asterisk/sounds
+ doins -r .
+ eend $?
+}
next reply other threads:[~2020-03-26 7:22 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-26 7:22 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-01-12 8:30 [gentoo-commits] repo/gentoo:master commit in: net-misc/asterisk-core-sounds/ Arthur Zamarin
2020-09-12 1:50 Sam James
2020-07-20 12:24 Sam James
2020-07-16 17:45 Sam James
2020-05-06 6:48 Sergei Trofimovich
2020-04-11 16:12 Agostino Sarubbo
2020-04-11 16:00 Agostino Sarubbo
2020-04-10 14:39 Agostino Sarubbo
2019-11-28 16:34 Joonas Niilola
2019-11-27 15:18 Joonas Niilola
2018-10-06 18:40 Sergei Trofimovich
2018-03-17 7:11 Matt Turner
2018-01-07 12:03 Ulrich Müller
2017-02-23 8:59 Michael Weber
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=1585207321.002ccc2c7714d75bdaaeda5a8f6e6e057d417f92.juippis@gentoo \
--to=juippis@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