[php-phpdocumentor-reflection-docblock] import from review #1188530

Remi Collet remi at fedoraproject.org
Tue Feb 24 07:28:35 UTC 2015


commit e1f64e9cb140c8acc69e67851431f9b54769de21
Author: Remi Collet <remi at fedoraproject.org>
Date:   Tue Feb 24 08:27:58 2015 +0100

    import from review #1188530

 .gitignore                                 |   1 +
 php-phpdocumentor-reflection-docblock.spec | 101 +++++++++++++++++++++++++++++
 sources                                    |   1 +
 3 files changed, 103 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..ee8936d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/ReflectionDocBlock-2.0.4.tar.gz
diff --git a/php-phpdocumentor-reflection-docblock.spec b/php-phpdocumentor-reflection-docblock.spec
new file mode 100644
index 0000000..1941aef
--- /dev/null
+++ b/php-phpdocumentor-reflection-docblock.spec
@@ -0,0 +1,101 @@
+# spec file for php-phpdocumentor-reflection-docblock
+#
+# Copyright (c) 2014-2015 Remi Collet
+# License: CC-BY-SA
+# http://creativecommons.org/licenses/by-sa/4.0/
+#
+# Please, preserve the changelog entries
+#
+%global gh_commit    d68dbdc53dc358a816f00b300704702b2eaff7b8
+%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.4
+Release:        1%{?dist}
+Summary:        DocBlock parser
+
+Group:          Development/Libraries
+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}
+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
+* Wed Feb 11 2015 Remi Collet <remi at fedoraproject.org> - 2.0.4-1
+- update to 2.0.4
+- LICENSE is in upstream archive
+
+* Tue Feb  3 2015 Remi Collet <remi at fedoraproject.org> - 2.0.3-2
+- add LICENSE from upstream repository
+
+* Fri Dec 19 2014 Remi Collet <remi at fedoraproject.org> - 2.0.3-1
+- initial package
+- open https://github.com/phpDocumentor/ReflectionDocBlock/issues/40
+  for missing LICENSE file
diff --git a/sources b/sources
index e69de29..0346ad9 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+9b7c04bcd6130e15d42cf5e9108bb57e  ReflectionDocBlock-2.0.4.tar.gz


More information about the scm-commits mailing list