Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libimobiledevice/
Date: Mon, 31 May 2021 23:47:27
Message-Id: 1622503393.f10567f449cd30b59cd17dcf9fc61d005025e63f.sam@gentoo
1 commit: f10567f449cd30b59cd17dcf9fc61d005025e63f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 23:23:13 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 23:23:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f10567f4
7
8 app-pda/libimobiledevice: add Python 3.9
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild | 13 ++++++-------
13 1 file changed, 6 insertions(+), 7 deletions(-)
14
15 diff --git a/app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild b/app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild
16 index a2de4548e90..2ab8f78335d 100644
17 --- a/app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild
18 +++ b/app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild
19 @@ -2,7 +2,8 @@
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=7
23 -PYTHON_COMPAT=( python3_{7,8} )
24 +
25 +PYTHON_COMPAT=( python3_{7,8,9} )
26
27 inherit autotools python-r1
28
29 @@ -12,9 +13,7 @@ SRC_URI="https://github.com/libimobiledevice/libimobiledevice/releases/download/
30
31 # While COPYING* doesn't mention 'or any later version', all the headers do, hence use +
32 LICENSE="GPL-2+ LGPL-2.1+"
33 -
34 SLOT="0/1.0-6" # based on SONAME of libimobiledevice-1.0.so
35 -
36 KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86"
37 IUSE="doc gnutls python static-libs"
38 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
39 @@ -25,19 +24,19 @@ RDEPEND="
40 gnutls? (
41 dev-libs/libgcrypt:0
42 >=dev-libs/libtasn1-1.1
43 - >=net-libs/gnutls-2.2.0 )
44 + >=net-libs/gnutls-2.2.0
45 + )
46 !gnutls? (
47 dev-libs/openssl:0=
48 )
49 python? (
50 ${PYTHON_DEPS}
51 - app-pda/libplist[python(-),${PYTHON_USEDEP}] )
52 + app-pda/libplist[python(-),${PYTHON_USEDEP}]
53 + )
54 "
55 -
56 DEPEND="
57 ${RDEPEND}
58 "
59 -
60 BDEPEND="
61 virtual/pkgconfig
62 doc? ( app-doc/doxygen )