commit:     ccbd53c6ee533d4226fe635c409d2dd8a3ce8f03
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 26 20:53:07 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 26 20:53:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccbd53c6

dev-php/PHP_CodeSniffer: bump to v3.5.6

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 dev-php/PHP_CodeSniffer/Manifest                   |  1 +
 .../PHP_CodeSniffer/PHP_CodeSniffer-3.5.6.ebuild   | 52 ++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-php/PHP_CodeSniffer/Manifest b/dev-php/PHP_CodeSniffer/Manifest
index 586511271be..34a3ea45afc 100644
--- a/dev-php/PHP_CodeSniffer/Manifest
+++ b/dev-php/PHP_CodeSniffer/Manifest
@@ -1 +1,2 @@
 DIST PHP_CodeSniffer-3.5.4.tgz 697668 BLAKE2B 
f5915bcb73c0db0d8dcab3eda5ab647268888e490d244568f0d0e7fff38c4764cfe62fcc79dabe8095adcef56b1e6d0367d46c36b18d0c4e0fb04a048c697737
 SHA512 
3e8024aac18111741637f014629eeaf5863b2f080a673e5b379a676fafb69859d1889ae13289b0149a9810641b0a140123a970ae1178fcd2cf6da1c414233bfd
+DIST PHP_CodeSniffer-3.5.6.tgz 706080 BLAKE2B 
1d9d097e7c60f520973a0dff16e6b31c9e259599ded3f58ac6dda2f10419969b03c18d1ce7c38f19a0f3474b0d5cf4afc5abb889f820da0d5d9e8f0574a0a354
 SHA512 
392c162cc8cb8d8fe455990d7f358cc59f486d8083387dc3bf60af6ca7aa0e75b72ed337f624b08948d8060cc96bd2d03373b7508fb9179da6a4e6b83adf06a7

diff --git a/dev-php/PHP_CodeSniffer/PHP_CodeSniffer-3.5.6.ebuild 
b/dev-php/PHP_CodeSniffer/PHP_CodeSniffer-3.5.6.ebuild
new file mode 100644
index 00000000000..ceba450516c
--- /dev/null
+++ b/dev-php/PHP_CodeSniffer/PHP_CodeSniffer-3.5.6.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Detect violations of PHP code standards"
+HOMEPAGE="https://github.com/squizlabs/PHP_CodeSniffer";
+
+# The test suite isn't part of the Github tarball at the moment. Keep an
+# eye on https://github.com/squizlabs/PHP_CodeSniffer/issues/548
+SRC_URI="http://download.pear.php.net/package/${P}.tgz";
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-lang/php:*[cli(-),tokenizer(-),xmlwriter(-)]"
+DEPEND="test? ( <dev-php/phpunit-6 ${RDEPEND} )"
+
+DOCS=( CONTRIBUTING.md README.md )
+
+src_prepare() {
+       sed -i "s~@data_dir@~${EPREFIX}/usr/share/php/data~" src/Config.php || 
die
+       default
+}
+
+src_install() {
+       local MY_PN="PHP/CodeSniffer" script
+       # The PEAR eclass would install everything into the wrong location.
+       insinto "/usr/share/php/${MY_PN}"
+       doins -r src autoload.php
+
+       insinto "/usr/share/php/data/${MY_PN}"
+       doins CodeSniffer.conf.dist
+       # These load code via relative paths, so they have to be symlinked
+       # and not dobin'd.
+       exeinto "/usr/share/php/${MY_PN}/bin"
+       for script in phpcbf phpcs; do
+               doexe "bin/${script}"
+               dosym "../share/php/${MY_PN}/bin/${script}" "/usr/bin/${script}"
+       done
+
+       einstalldocs
+}
+
+src_test() {
+       # The test suite will fail if date.timezone isn't set in php.ini.
+       phpunit -d date.timezone=UTC tests/AllTests.php \
+               || die "test suite failed"
+}

Reply via email to