From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 303A81382C5 for ; Mon, 31 May 2021 23:47:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 627DAE0848; Mon, 31 May 2021 23:47:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E501BE0844 for ; Mon, 31 May 2021 23:47:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82549340E13 for ; Mon, 31 May 2021 23:47:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DEF37720 for ; Mon, 31 May 2021 23:47:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1622503393.f10567f449cd30b59cd17dcf9fc61d005025e63f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libimobiledevice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild X-VCS-Directories: app-pda/libimobiledevice/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f10567f449cd30b59cd17dcf9fc61d005025e63f X-VCS-Branch: master Date: Mon, 31 May 2021 23:47:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d76276da-2ef0-46a2-9af1-4db4e029f74b X-Archives-Hash: b2bedc43b025e6b334bba83dd7463b94 commit: f10567f449cd30b59cd17dcf9fc61d005025e63f Author: Sam James gentoo org> AuthorDate: Mon May 31 23:23:13 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 31 23:23:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f10567f4 app-pda/libimobiledevice: add Python 3.9 Signed-off-by: Sam James gentoo.org> app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild b/app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild index a2de4548e90..2ab8f78335d 100644 --- a/app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild +++ b/app-pda/libimobiledevice/libimobiledevice-1.3.0-r1.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) + +PYTHON_COMPAT=( python3_{7,8,9} ) inherit autotools python-r1 @@ -12,9 +13,7 @@ SRC_URI="https://github.com/libimobiledevice/libimobiledevice/releases/download/ # While COPYING* doesn't mention 'or any later version', all the headers do, hence use + LICENSE="GPL-2+ LGPL-2.1+" - SLOT="0/1.0-6" # based on SONAME of libimobiledevice-1.0.so - KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86" IUSE="doc gnutls python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -25,19 +24,19 @@ RDEPEND=" gnutls? ( dev-libs/libgcrypt:0 >=dev-libs/libtasn1-1.1 - >=net-libs/gnutls-2.2.0 ) + >=net-libs/gnutls-2.2.0 + ) !gnutls? ( dev-libs/openssl:0= ) python? ( ${PYTHON_DEPS} - app-pda/libplist[python(-),${PYTHON_USEDEP}] ) + app-pda/libplist[python(-),${PYTHON_USEDEP}] + ) " - DEPEND=" ${RDEPEND} " - BDEPEND=" virtual/pkgconfig doc? ( app-doc/doxygen )