forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-php/PHP_CodeSniffer: bump to v3.6.1
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann <[email protected]>
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
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? ( | ||
${RDEPEND} | ||
<dev-php/phpunit-6 | ||
)" | ||
|
||
DOCS=( CONTRIBUTING.md README.md ) | ||
|
||
src_prepare() { | ||
sed -i "s~@data_dir@~${EPREFIX}/usr/share/php/data~" src/Config.php || die | ||
default | ||
} | ||
|
||
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" | ||
} | ||
|
||
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 | ||
} |