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 2394B138334 for ; Thu, 26 Dec 2019 10:23:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D9ABE0C50; Thu, 26 Dec 2019 10:23:23 +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 114FCE0C4D for ; Thu, 26 Dec 2019 10:23:22 +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 C4A9E34DB88 for ; Thu, 26 Dec 2019 10:23:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44B0642 for ; Thu, 26 Dec 2019 10:23:20 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1577355791.103364303be3bac5f7d4a9df1c47fe0b8d6ec1c4.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-taint/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-taint/Manifest dev-php/pecl-taint/pecl-taint-2.0.6.ebuild X-VCS-Directories: dev-php/pecl-taint/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 103364303be3bac5f7d4a9df1c47fe0b8d6ec1c4 X-VCS-Branch: master Date: Thu, 26 Dec 2019 10:23:20 +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: db1208fc-e37e-4ec8-8f69-1d0892c6ba8e X-Archives-Hash: 9d68c47a042037622c3085bd8b1039df commit: 103364303be3bac5f7d4a9df1c47fe0b8d6ec1c4 Author: Thomas Deutschmann gentoo org> AuthorDate: Thu Dec 26 10:16:54 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Thu Dec 26 10:23:11 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10336430 dev-php/pecl-taint: bump to v2.0.6 Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: Thomas Deutschmann gentoo.org> dev-php/pecl-taint/Manifest | 1 + dev-php/pecl-taint/pecl-taint-2.0.6.ebuild | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/dev-php/pecl-taint/Manifest b/dev-php/pecl-taint/Manifest index 46539a37c8a..1193d63d8be 100644 --- a/dev-php/pecl-taint/Manifest +++ b/dev-php/pecl-taint/Manifest @@ -1 +1,2 @@ DIST taint-2.0.5.tgz 18203 BLAKE2B 1e7d31f5a4eee810923420606892f2cd672d4fdcaf6decda1966d0ad44f779cf019a624c0f5971a44e8ceadf37159359f41ff52f523157eace26d7335405bad6 SHA512 625809e553d782dc6bb41b4dace1a32bf47157e3438430b3717e0ca692959625b293011220e47f95f4b484558e39454138b0760806fcd1e4ae42f608ab290b31 +DIST taint-2.0.6.tgz 18321 BLAKE2B dfa2765a0045072506e85664805c36beec2663b2d54c5bb385b3c1f624f1124bdafada38578d335a5054fb4c823cd4713d76fddb5588b2e1065ae30289539059 SHA512 ea99d738a73f98f881eb2ad82a756d915fbb43faa4ddf7bce52aaca2590d5cff0d4f3739015754d256f97a81cc54183900250dec249397aab1aebe9587140f6c diff --git a/dev-php/pecl-taint/pecl-taint-2.0.6.ebuild b/dev-php/pecl-taint/pecl-taint-2.0.6.ebuild new file mode 100644 index 00000000000..33166802822 --- /dev/null +++ b/dev-php/pecl-taint/pecl-taint-2.0.6.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +USE_PHP="php7-1 php7-2 php7-3 php7-4" +inherit php-ext-pecl-r3 + +DESCRIPTION="Extension used for detecting XSS code (tainted strings)" +LICENSE="PHP-3.01" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +pkg_postinst() { + elog 'To enable this extension, add' + elog ' taint.enable=1' + elog 'to /etc/php/-/ext/taint.ini' +}