From e0fcd88271d39b90d26e68af886e8479b43b7844 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 19 Dec 2014 16:28:56 +0100 Subject: php-phpdocumentor-reflection-docblock: new package, WIP --- Makefile | 4 ++ php-phpdocumentor-reflection-docblock.spec | 98 ++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+) create mode 100644 Makefile create mode 100644 php-phpdocumentor-reflection-docblock.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/php-phpdocumentor-reflection-docblock.spec b/php-phpdocumentor-reflection-docblock.spec new file mode 100644 index 0000000..4995c1c --- /dev/null +++ b/php-phpdocumentor-reflection-docblock.spec @@ -0,0 +1,98 @@ +# spec file for php-phpdocumentor-reflection-docblock +# +# Copyright (c) 2014 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/3.0/ +# +# Please, preserve the changelog entries +# +%global gh_commit 38743b677965c48a637097b2746a281264ae2347 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner phpDocumentor +%global gh_project ReflectionDocBlock +%global with_tests %{?_without_tests:0}%{!?_without_tests:1} + +Name: php-phpdocumentor-reflection-docblock +Version: 2.0.3 +Release: 1%{?dist} +Summary: DocBlock parser + +Group: Development/Libraries +# https://github.com/phpDocumentor/ReflectionDocBlock/issues/40 +License: MIT +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}.tar.gz + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: php(language) >= 5.3.3 +BuildRequires: php-phpunit-PHPUnit +BuildRequires: php-theseer-autoload + +# From composer.json, require +# "php": ">=5.3.3" +# From composer.json, suggest +# "dflydev/markdown": "1.0.*", +# "erusev/parsedown": "~0.7" +Requires: php(language) >= 5.3.3 +# From phpcompatinfo report for 2.0.3 +Requires: php-pcre +Requires: php-spl + +Provides: php-composer(phpdocumentor/reflection-docblock) = %{version} + + +%description +The ReflectionDocBlock component of phpDocumentor provides a DocBlock +parser that is fully compatible with the PHPDoc standard. + +With this component, a library can provide support for annotations via +DocBlocks or otherwise retrieve information that is embedded in a DocBlock. + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + + +%build +phpab \ + --basedir src/phpDocumentor/Reflection/DocBlock \ + --output src/phpDocumentor/Reflection/DocBlock/autoload.php \ + src/phpDocumentor/Reflection + + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{_datadir}/php +cp -pr src/* %{buildroot}%{_datadir}/php + + +%check +%if %{with_tests} +# Upstream issue (reported by Travis) +rm tests/phpDocumentor/Reflection/DocBlock/Tag/MethodTagTest.php + +phpunit --bootstrap %{buildroot}%{_datadir}/php/phpDocumentor/Reflection/DocBlock/autoload.php +%else +: Test suite disabled +%endif + + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%{!?_licensedir:%global license %%doc} +#license LICENSE +%doc *.md +%doc composer.json +%{_datadir}/php/phpDocumentor + + +%changelog +* Fri Dec 19 2014 Remi Collet - 2.0.3-1 +- initial package +- open https://github.com/phpDocumentor/ReflectionDocBlock/issues/40 + for missing LICENSE file \ No newline at end of file -- cgit