From 325f1a9660e67c1baf343a8b8c859c43c67d1996 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 9 Jan 2017 18:59:29 +0100 Subject: php-victorjonsson-markdowndocs: import from Fedora --- php-victorjonsson-markdowndocs-bin.patch | 19 +++ php-victorjonsson-markdowndocs-cli-version.patch | 14 ++ ...ictorjonsson-markdowndocs-pull-request-10.patch | 34 ++++ php-victorjonsson-markdowndocs.spec | 171 +++++++++++++++++++++ 4 files changed, 238 insertions(+) create mode 100644 php-victorjonsson-markdowndocs-bin.patch create mode 100644 php-victorjonsson-markdowndocs-cli-version.patch create mode 100644 php-victorjonsson-markdowndocs-pull-request-10.patch create mode 100644 php-victorjonsson-markdowndocs.spec diff --git a/php-victorjonsson-markdowndocs-bin.patch b/php-victorjonsson-markdowndocs-bin.patch new file mode 100644 index 0000000..470129f --- /dev/null +++ b/php-victorjonsson-markdowndocs-bin.patch @@ -0,0 +1,19 @@ +diff --git a/bin/phpdoc-md b/bin/phpdoc-md +index 280a8c0..f74b4e9 100755 +--- a/bin/phpdoc-md ++++ b/bin/phpdoc-md +@@ -1,13 +1,7 @@ + #!/usr/bin/env php + version); ++ parent::__construct('PHP Markdown Documentation Generator', '__VERSION__'); + } + + /** diff --git a/php-victorjonsson-markdowndocs-pull-request-10.patch b/php-victorjonsson-markdowndocs-pull-request-10.patch new file mode 100644 index 0000000..001fc2f --- /dev/null +++ b/php-victorjonsson-markdowndocs-pull-request-10.patch @@ -0,0 +1,34 @@ +From 35fb15aed3409e5ec621fdff8669d67dc3c73d61 Mon Sep 17 00:00:00 2001 +From: Shawn Iwinski +Date: Mon, 26 Dec 2016 19:00:05 -0500 +Subject: [PATCH] Add LICENSE file + +--- + LICENSE | 18 ++++++++++++++++++ + 1 file changed, 18 insertions(+) + create mode 100644 LICENSE + +diff --git a/LICENSE b/LICENSE +new file mode 100644 +index 0000000..e97b959 +--- /dev/null ++++ b/LICENSE +@@ -0,0 +1,18 @@ ++Copyright (c) 2015-2016 Victor Jonsson ++ ++Permission is hereby granted, free of charge, to any person obtaining a copy of ++this software and associated documentation files (the "Software"), to deal in ++the Software without restriction, including without limitation the rights to ++use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of ++the Software, and to permit persons to whom the Software is furnished to do so, ++subject to the following conditions: ++ ++The above copyright notice and this permission notice shall be included in all ++copies or substantial portions of the Software. ++ ++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ++IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS ++FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR ++COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER ++IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN ++CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/php-victorjonsson-markdowndocs.spec b/php-victorjonsson-markdowndocs.spec new file mode 100644 index 0000000..12e6a3d --- /dev/null +++ b/php-victorjonsson-markdowndocs.spec @@ -0,0 +1,171 @@ +# +# Fedora spec file for php-victorjonsson-markdowndocs +# +# Copyright (c) 2016 Shawn Iwinski +# +# License: MIT +# http://opensource.org/licenses/MIT +# +# Please preserve changelog entries +# + +%global github_owner victorjonsson +%global github_name PHP-Markdown-Documentation-Generator +%global github_version 1.3.7 +%global github_commit a8244617cdce4804cd94ea508c82e8d7e29a273a + +%global composer_vendor victorjonsson +%global composer_project markdowndocs + +# "php" : ">=5.5.0" +%global php_min_ver 5.5.0 +# "symfony/console": ">=2.6" +%global symfony_min_ver 2.6 +%global symfony_max_ver 3 + +# Build using "--without tests" to disable tests +%global with_tests 0%{!?_without_tests:1} + +%{!?phpdir: %global phpdir %{_datadir}/php} + +Name: php-%{composer_vendor}-%{composer_project} +Version: %{github_version} +Release: 1%{?github_release}%{?dist} +Summary: Command line tool for generating markdown-formatted class documentation + +Group: Development/Libraries +License: MIT +URL: https://github.com/%{github_owner}/%{github_name} +Source0: %{url}/archive/%{github_commit}/%{name}-%{github_version}-%{github_commit}.tar.gz + +# Add LICENSE file +# https://patch-diff.githubusercontent.com/raw/victorjonsson/PHP-Markdown-Documentation-Generator/pull/10 +Patch0: %{name}-pull-request-10.patch +# Set CLI version (instead of reading composer.json) +Patch1: %{name}-cli-version.patch +# Modify bin autoloader +Patch2: %{name}-bin.patch + + +BuildArch: noarch +# Tests +%if %{with_tests} +## composer.json +BuildRequires: php(language) >= %{php_min_ver} +BuildRequires: php-composer(phpunit/phpunit) +BuildRequires: php-composer(symfony/console) < %{symfony_max_ver} +BuildRequires: php-composer(symfony/console) >= %{symfony_min_ver} +## phpcompatinfo (computed from version 1.3.7) +BuildRequires: php-json +BuildRequires: php-pcre +BuildRequires: php-reflection +BuildRequires: php-spl +## Autoloader +BuildRequires: php-composer(fedora/autoloader) +%endif + +Requires: php-cli +# composer.json +Requires: php(language) >= %{php_min_ver} +Requires: php-composer(symfony/console) < %{symfony_max_ver} +Requires: php-composer(symfony/console) >= %{symfony_min_ver} +# phpcompatinfo (computed from version 1.3.7) +Requires: php-json +Requires: php-pcre +Requires: php-reflection +Requires: php-spl +# Autoloader +Requires: php-composer(fedora/autoloader) + +# Composer +Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} + +%description +Documentation is just as important as the code it's referring to. With this +command line tool you will be able to write your documentation once, and only +once! + +This project will write a single-page markdown-formatted API document based on +the DocBlock comments in your source code. The phpdoc standard is used. + +Autoloader: %{phpdir}/PHPDocsMD/autoload.php + + +%prep +%setup -qn %{github_name}-%{github_commit} + +: Add LICENSE file +%patch0 -p1 + +: Set CLI version -- instead of reading composer.json +%patch1 -p1 +sed -i 's#__VERSION__#%{version}#' src/PHPDocsMD/Console/CLI.php + +: Modify bin autoloader +%patch2 -p1 +sed -i 's#__PHPDIR__#%{phpdir}#' bin/phpdoc-md + +: Fix rpmlint "wrong-file-end-of-line-encoding" warning +sed -i 's/\r$//' README.md + + +%build +: Create autoloader +cat <<'AUTOLOAD' | tee src/PHPDocsMD/autoload.php + - 1.3.7-1 +- Initial package -- cgit