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 709A4138334 for ; Mon, 16 Jul 2018 09:04:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24593E0801; Mon, 16 Jul 2018 09:04:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 ED825E0801 for ; Mon, 16 Jul 2018 09:04:26 +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 D325B335C42 for ; Mon, 16 Jul 2018 09:04:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 886E9349 for ; Mon, 16 Jul 2018 09:04:22 +0000 (UTC) From: "Hanno Boeck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Boeck" Message-ID: <1531731839.c38e9c07638d7db84e8e98b3e999cefaf50745db.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-gnupg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-gnupg/pecl-gnupg-1.4.0-r2.ebuild X-VCS-Directories: dev-php/pecl-gnupg/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Boeck X-VCS-Revision: c38e9c07638d7db84e8e98b3e999cefaf50745db X-VCS-Branch: master Date: Mon, 16 Jul 2018 09:04: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-Archives-Salt: 093db95b-2c9f-485b-8ef1-6eaa0f0f62e6 X-Archives-Hash: 797ddf9da9754db930a56ae05d316c72 commit: c38e9c07638d7db84e8e98b3e999cefaf50745db Author: Hanno gentoo org> AuthorDate: Mon Jul 16 09:03:59 2018 +0000 Commit: Hanno Boeck gentoo org> CommitDate: Mon Jul 16 09:03:59 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38e9c07 dev-php/pecl-gnupg: Allow gnupg 2. The existing package is not installable due to conflicting dependencies. Basic functionality works with gnupg 2. Some tests fail, therefore restricting tests. Closes: https://bugs.gentoo.org/657048 Package-Manager: Portage-2.3.42, Repoman-2.3.9 dev-php/pecl-gnupg/pecl-gnupg-1.4.0-r2.ebuild | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-php/pecl-gnupg/pecl-gnupg-1.4.0-r2.ebuild b/dev-php/pecl-gnupg/pecl-gnupg-1.4.0-r2.ebuild new file mode 100644 index 00000000000..d4642afe226 --- /dev/null +++ b/dev-php/pecl-gnupg/pecl-gnupg-1.4.0-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +MY_P="${PN/pecl-/}-${PV/_rc/RC}" +PHP_EXT_NAME="gnupg" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +PHP_EXT_PECL_FILENAME="${MY_P}.tgz" +PHP_EXT_S="${WORKDIR}/${MY_P}" + +USE_PHP="php5-6 php7-0 php7-1 php7-2" + +inherit php-ext-pecl-r3 + +S="${PHP_EXT_S}" + +KEYWORDS="~amd64 ~x86" +DESCRIPTION="PHP wrapper around the gpgme library" +LICENSE="BSD-2" +SLOT="0" +IUSE="" + +DEPEND="app-crypt/gpgme app-crypt/gnupg" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/1.3.2/01-large_file_system.patch ) + +# tests are broken with gnupg 2.0/2.1, see: +# https://github.com/php-gnupg/php-gnupg/issues/2 +# https://github.com/php-gnupg/php-gnupg/issues/3 +RESTRICT="test"