Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsndfile/
Date: Sat, 09 Feb 2019 12:46:49
Message-Id: 1549716386.4877a1904c5c92472bc5aa18eebbe37ffeaede65.soap@gentoo
1 commit: 4877a1904c5c92472bc5aa18eebbe37ffeaede65
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 9 12:46:26 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 9 12:46:26 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4877a190
7
8 media-libs/libsndfile: Update live ebuild
9
10 * Fix BDEPEND
11 * Add python 3.7 support
12
13 Package-Manager: Portage-2.3.59, Repoman-2.3.12
14 Signed-off-by: David Seifert <soap <AT> gentoo.org>
15
16 media-libs/libsndfile/libsndfile-9999.ebuild | 14 +++++++-------
17 1 file changed, 7 insertions(+), 7 deletions(-)
18
19 diff --git a/media-libs/libsndfile/libsndfile-9999.ebuild b/media-libs/libsndfile/libsndfile-9999.ebuild
20 index 1b23d479803..fe5341352a3 100644
21 --- a/media-libs/libsndfile/libsndfile-9999.ebuild
22 +++ b/media-libs/libsndfile/libsndfile-9999.ebuild
23 @@ -1,9 +1,9 @@
24 -# Copyright 1999-2018 Gentoo Authors
25 +# Copyright 1999-2019 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=7
29
30 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
31 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy{,3} )
32
33 if [[ ${PV} == *9999 ]]; then
34 inherit autotools git-r3
35 @@ -23,18 +23,18 @@ IUSE="alsa minimal sqlite static-libs test"
36
37 RDEPEND="
38 !minimal? (
39 - >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]
40 - >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
41 - >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
42 + >=media-libs/flac-1.2.1-r5:=[${MULTILIB_USEDEP}]
43 + >=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]
44 + >=media-libs/libvorbis-1.3.3-r1:=[${MULTILIB_USEDEP}]
45 )
46 - alsa? ( media-libs/alsa-lib )
47 + alsa? ( media-libs/alsa-lib:= )
48 sqlite? ( >=dev-db/sqlite-3.2 )"
49 DEPEND="${RDEPEND}"
50 BDEPEND="
51 virtual/pkgconfig
52 test? ( ${PYTHON_DEPS} )"
53 if [[ ${PV} == *9999 ]]; then
54 - BDEPEND="
55 + BDEPEND+="
56 ${PYTHON_DEPS}
57 sys-devel/autogen
58 "