diff options
author | Brian Evans <grknight@gentoo.org> | 2020-01-31 13:59:27 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2020-01-31 13:59:27 -0500 |
commit | 13a4a0026f8569d27b5a8eb86ffd2922648c1584 (patch) | |
tree | 4a8acb09b9fcb33f6759e23790facf358c071007 /dev-php/PHP_CodeSniffer/PHP_CodeSniffer-3.5.4.ebuild | |
parent | www-client/httrack: Drop old + de-warn AbsoluteSymlink (diff) | |
download | gentoo-13a4a0026f8569d27b5a8eb86ffd2922648c1584.tar.gz gentoo-13a4a0026f8569d27b5a8eb86ffd2922648c1584.tar.bz2 gentoo-13a4a0026f8569d27b5a8eb86ffd2922648c1584.zip |
dev-php/PHP_CodeSniffer: Version bump for 3.5.4
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'dev-php/PHP_CodeSniffer/PHP_CodeSniffer-3.5.4.ebuild')
-rw-r--r-- | dev-php/PHP_CodeSniffer/PHP_CodeSniffer-3.5.4.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-php/PHP_CodeSniffer/PHP_CodeSniffer-3.5.4.ebuild b/dev-php/PHP_CodeSniffer/PHP_CodeSniffer-3.5.4.ebuild new file mode 100644 index 000000000000..3907599536c6 --- /dev/null +++ b/dev-php/PHP_CodeSniffer/PHP_CodeSniffer-3.5.4.ebuild @@ -0,0 +1,53 @@ +# 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" # Currently broken with latest PHPUnit +#RESTRICT="!test? ( test )" + +RDEPEND="dev-lang/php:*[cli(-),tokenizer(-),xmlwriter(-)]" +DEPEND="test? ( >=dev-php/phpunit-4 ${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" +} |