From 3e9b2274d543bdd1a385e91df9635691324c507a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 15 Apr 2016 14:06:33 +0200 Subject: php-nikic-php-parser: 2.0.1 (new package) --- Makefile | 4 + composer.json | 30 ++++++++ php-nikic-php-parser-autoload.php | 19 +++++ php-nikic-php-parser-pr268.patch | 22 ++++++ php-nikic-php-parser-pr269.patch | 32 ++++++++ php-nikic-php-parser-rpm.patch | 40 ++++++++++ php-nikic-php-parser.spec | 156 ++++++++++++++++++++++++++++++++++++++ 7 files changed, 303 insertions(+) create mode 100644 Makefile create mode 100644 composer.json create mode 100644 php-nikic-php-parser-autoload.php create mode 100644 php-nikic-php-parser-pr268.patch create mode 100644 php-nikic-php-parser-pr269.patch create mode 100644 php-nikic-php-parser-rpm.patch create mode 100644 php-nikic-php-parser.spec diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91b0fd5 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../common/Makefile + diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e494f43 --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "nikic/php-parser", + "description": "A PHP parser written in PHP", + "keywords": ["php", "parser"], + "type": "library", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Nikita Popov" + } + ], + "require": { + "php": ">=5.4", + "ext-tokenizer": "*" + }, + "require-dev": { + "phpunit/phpunit": "~4.0" + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "bin": ["bin/php-parse"], + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + } +} diff --git a/php-nikic-php-parser-autoload.php b/php-nikic-php-parser-autoload.php new file mode 100644 index 0000000..61dca27 --- /dev/null +++ b/php-nikic-php-parser-autoload.php @@ -0,0 +1,19 @@ +register(true); +} + +$fedoraPsr4ClassLoader->addPrefix('PhpParser\\', __DIR__); + diff --git a/php-nikic-php-parser-pr268.patch b/php-nikic-php-parser-pr268.patch new file mode 100644 index 0000000..edca1d9 --- /dev/null +++ b/php-nikic-php-parser-pr268.patch @@ -0,0 +1,22 @@ +From 352125814fe223a18f89510b55989c36f92f4ee0 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Fri, 15 Apr 2016 13:53:04 +0200 +Subject: [PATCH] make autoloader more PSR-4 + +--- + lib/PhpParser/Autoloader.php | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/PhpParser/Autoloader.php b/lib/PhpParser/Autoloader.php +index 560a8d9..809a06e 100644 +--- a/lib/PhpParser/Autoloader.php ++++ b/lib/PhpParser/Autoloader.php +@@ -31,7 +31,7 @@ static public function register($prepend = false) { + */ + static public function autoload($class) { + if (0 === strpos($class, 'PhpParser\\')) { +- $fileName = dirname(__DIR__) . '/' . strtr($class, '\\', '/') . '.php'; ++ $fileName = __DIR__ . strtr(substr($class, 9), '\\', '/') . '.php'; + if (file_exists($fileName)) { + require $fileName; + } diff --git a/php-nikic-php-parser-pr269.patch b/php-nikic-php-parser-pr269.patch new file mode 100644 index 0000000..03bc429 --- /dev/null +++ b/php-nikic-php-parser-pr269.patch @@ -0,0 +1,32 @@ +From 7fe074c38c7e7d5359e92d8ed43ed3a5cdf65266 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Fri, 15 Apr 2016 13:58:42 +0200 +Subject: [PATCH] support -h and --help standard options + +--- + bin/php-parse | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/bin/php-parse b/bin/php-parse +index db6c411..f6ce166 100755 +--- a/bin/php-parse ++++ b/bin/php-parse +@@ -101,6 +101,7 @@ Operations is a list of the following options (--dump by default): + --var-dump var_dump() nodes (for exact structure) + -N, --resolve-names Resolve names using NodeVisitor\NameResolver + -c, --with-column-info Show column-numbers for errors (if available) ++ -h, --help Display this page + + Example: + php-parse -d -p -N -d file.php +@@ -150,6 +151,10 @@ function parseArgs($args) { + case '-c'; + $attributes['with-column-info'] = true; + break; ++ case '--help': ++ case '-h'; ++ showHelp(''); ++ break; + case '--': + $parseOptions = false; + break; diff --git a/php-nikic-php-parser-rpm.patch b/php-nikic-php-parser-rpm.patch new file mode 100644 index 0000000..d8bc078 --- /dev/null +++ b/php-nikic-php-parser-rpm.patch @@ -0,0 +1,40 @@ +diff -up ./bin/php-parse.rpm ./bin/php-parse +--- ./bin/php-parse.rpm 2016-02-28 20:48:28.000000000 +0100 ++++ ./bin/php-parse 2016-04-15 13:26:30.804687996 +0200 +@@ -1,12 +1,7 @@ + #!/usr/bin/env php + = 5.4 +BuildRequires: php-tokenizer +BuildRequires: php-filter +BuildRequires: php-pcre +BuildRequires: php-spl +BuildRequires: php-xmlreader +BuildRequires: php-xmlwriter +# From composer.json, "require-dev": { +# "phpunit/phpunit": "~4.0" +BuildRequires: php-composer(phpunit/phpunit) >= 4.0 +%endif + +# From composer.json, "require": { +# "php": ">=5.4", +# "ext-tokenizer": "*" +Requires: php(language) >= 5.4 +Requires: php-tokenizer +# From phpcompatinfo report for version 2.0.1 +Requires: php-filter +Requires: php-pcre +Requires: php-spl +Requires: php-xmlreader +Requires: php-xmlwriter +%if %{eolv1} +Obsoletes: php-PHPParser < 2 +Requires: php-cli +%endif + +Provides: php-composer(%{gh_owner}/%{pk_project}) = %{version} + + +%description +This is a PHP 5.2 to PHP 7.0 parser written in PHP. +Its purpose is to simplify static code analysis and manipulation. +%if %{eolv1} +This package provides the php-parse command. +%else +The php-PHPParser package provides the library version 1.x +and the php-parse command. +%endif +Documentation: https://github.com/nikic/PHP-Parser/tree/master/doc + +Autoloader: %{php_home}/PhpParser2/autoload.php + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + +%patch0 -p1 -b .rpm +%patch1 -p1 -b .pr268 +%patch2 -p1 -b .pr269 + +: Cleanup to not install backup files +find lib/PhpParser -name \*.pr268 -exec rm {} \; -print + + +%build +# Empty build section, most likely nothing required. + + +%install +rm -rf %{buildroot} + +: Library +mkdir -p %{buildroot}%{php_home} +cp -pr lib/PhpParser %{buildroot}%{php_home}/PhpParser2 +cp -p lib/bootstrap.php %{buildroot}%{php_home}/PhpParser2/autoload.php + +%if %{eolv1} +: Command +install -Dpm 0755 bin/php-parse %{buildroot}%{_bindir}/php-parse +%endif + + +%check +%if %{with_tests} +: Test the command +sed -e 's:%{php_home}:%{buildroot}%{php_home}:' \ + bin/php-parse > bin/php-parse-test +php bin/php-parse-test --help + +: Test suite autoloader +sed -e 's:@BUILDROOT@:%{buildroot}:' -i test/bootstrap.php + +: Upstream test suite +%{_bindir}/phpunit --verbose + +if which php70; then + php70 %{_bindir}/phpunit --verbose +fi +%else +: Test suite disabled +%endif + + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%{!?_licensedir:%global license %%doc} +%license LICENSE +%doc composer.json +%doc *.md +%if %{eolv1} +%{_bindir}/php-parse +%else +%doc bin/php-parse +%endif +%{php_home}/PhpParser2 + + +%changelog +* Fri Apr 15 2016 Remi Collet - 2.0.0-1 +- initial package, version 2.0.1 + -- cgit