From 04e830d1232aba0ee40e03256a30076c2ee01c52 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 22 Jan 2020 16:18:45 +0100 Subject: new package --- .gitignore | 8 ++ Makefile | 3 + composer.json | 71 ++++++++++++++ makesrc.sh | 28 ++++++ php-laminas-httphandlerrunner.spec | 193 +++++++++++++++++++++++++++++++++++++ 5 files changed, 303 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 composer.json create mode 100755 makesrc.sh create mode 100644 php-laminas-httphandlerrunner.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc9aa8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +clog +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a2cd659 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../../common/Makefile diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..8ed12ff --- /dev/null +++ b/composer.json @@ -0,0 +1,71 @@ +{ + "name": "laminas/laminas-httphandlerrunner", + "description": "Execute PSR-15 RequestHandlerInterface instances and emit responses they generate.", + "license": "BSD-3-Clause", + "keywords": [ + "laminas", + "components", + "mezzio", + "psr-7", + "psr-15" + ], + "homepage": "https://laminas.dev", + "support": { + "docs": "https://docs.laminas.dev/laminas-httphandlerrunner/", + "issues": "https://github.com/laminas/laminas-httphandlerrunner/issues", + "source": "https://github.com/laminas/laminas-httphandlerrunner", + "rss": "https://github.com/laminas/laminas-httphandlerrunner/releases.atom", + "chat": "https://laminas.dev/chat", + "forum": "https://discourse.laminas.dev" + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev", + "dev-develop": "1.2.x-dev" + }, + "laminas": { + "config-provider": "Laminas\\HttpHandlerRunner\\ConfigProvider" + } + }, + "require": { + "php": "^7.1", + "laminas/laminas-zendframework-bridge": "^1.0", + "psr/http-message": "^1.0", + "psr/http-message-implementation": "^1.0", + "psr/http-server-handler": "^1.0" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-diactoros": "^1.7 || ^2.1.1", + "phpunit/phpunit": "^7.0.2" + }, + "autoload": { + "psr-4": { + "Laminas\\HttpHandlerRunner\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "LaminasTest\\HttpHandlerRunner\\": "test/" + }, + "files": [ + "test/TestAsset/SapiResponse.php" + ] + }, + "scripts": { + "check": [ + "@cs-check", + "@test" + ], + "cs-check": "phpcs", + "cs-fix": "phpcbf", + "test": "phpunit --colors=always", + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "replace": { + "zendframework/zend-httphandlerrunner": "self.version" + } +} diff --git a/makesrc.sh b/makesrc.sh new file mode 100755 index 0000000..87d223d --- /dev/null +++ b/makesrc.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +NAME=$(basename $PWD) +OWNER=$(sed -n '/^%global gh_owner/{s/.* //;p}' $NAME.spec) +PROJECT=$(sed -n '/^%global gh_project/{s/.* //;p}' $NAME.spec) +VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec) +COMMIT=$(sed -n '/^%global gh_commit/{s/.* //;p}' $NAME.spec) +SHORT=${COMMIT:0:7} + +echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION\n" + +echo "Cloning..." +rm -rf $PROJECT-$COMMIT +git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT + +echo "Getting commit..." +pushd $PROJECT-$COMMIT +git checkout $COMMIT +cp composer.json ../composer.json +popd + +echo "Archiving..." +tar czf $NAME-$VERSION-$SHORT.tgz --exclude .git $PROJECT-$COMMIT + +echo "Cleaning..." +rm -rf $PROJECT-$COMMIT + +echo "Done." diff --git a/php-laminas-httphandlerrunner.spec b/php-laminas-httphandlerrunner.spec new file mode 100644 index 0000000..4b6ea0e --- /dev/null +++ b/php-laminas-httphandlerrunner.spec @@ -0,0 +1,193 @@ +# remirepo/Fedora spec file for php-laminas-httphandlerrunner +# +# Copyright (c) 2020 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# +%global bootstrap 0 +%global gh_commit 296f5ff35074dd981d1570a66b95596c81808087 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner laminas +%global gh_project laminas-httphandlerrunner +%global zf_name zend-httphandlerrunner +%global php_home %{_datadir}/php +%global namespace Laminas +%global library HttpHandlerRunner +%if %{bootstrap} +%global with_tests 0%{?_with_tests:1} +%else +%global with_tests 0%{!?_without_tests:1} +%endif + +Name: php-%{gh_project} +Version: 1.1.0 +Release: 1%{?dist} +Summary: %{namespace} Framework %{library} component + +License: BSD +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: %{gh_commit}/%{name}-%{version}-%{gh_short}.tgz +Source1: makesrc.sh + +BuildArch: noarch +# Tests +%if %{with_tests} +BuildRequires: php(language) >= 5.6 +# remirepo:1 +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +BuildRequires: (php-autoloader(%{gh_owner}/laminas-zendframework-bridge) >= 1.0 with php-autoloader(%{gh_owner}/laminas-zendframework-bridge) < 2) +BuildRequires: (php-composer(psr/http-message) >= 1.0 with php-composer(psr/http-message) < 2) +BuildRequires: (php-composer(psr/http-server-handler) >= 1.0 with php-composer(psr/http-server-handler) < 2) +# From composer, "require-dev": { +# "laminas/laminas-coding-standard": "~1.0.0", +# "laminas/laminas-diactoros": "^1.7 || ^2.1.1", +# "phpunit/phpunit": "^7.0.2" +BuildRequires: (php-autoloader(%{gh_owner}/laminas-diactoros) >= 1.7 with php-autoloader(%{gh_owner}/laminas-diactoros) < 3) +# remirepo:7 +%else +BuildRequires: php-laminas-zendframework-bridge +BuildRequires: php-psr-http-message +BuildRequires: php-psr-http-server-handler +BuildRequires: php-laminas-diactoros +%endif +%global phpunit %{_bindir}/phpunit7 +BuildRequires: phpunit7 >= 7.0.2 +BuildRequires: php-pcre +BuildRequires: php-spl +%endif +# Autoloader +BuildRequires: php-fedora-autoloader-devel + +# From composer, "require": { +# "php": "^7.1", +# "laminas/laminas-zendframework-bridge": "^1.0", +# "psr/http-message": "^1.0", +# "psr/http-message-implementation": "^1.0", +# "psr/http-server-handler": "^1.0" +Requires: php(language) >= 7.1 +# remirepo:1 +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +Requires: (php-autoloader(%{gh_owner}/laminas-zendframework-bridge) >= 1.0 with php-autoloader(%{gh_owner}/laminas-zendframework-bridge) < 2) +Requires: (php-composer(psr/http-message) >= 1.0 with php-composer(psr/http-message) < 2) +Requires: (php-composer(psr/http-server-handler) >= 1.0 with php-composer(psr/http-server-handler) < 2) +# remirepo:5 +%else +Requires: php-laminas-zendframework-bridge +Requires: php-psr-http-message +Requires: php-psr-http-server-handler +%endif +# Autoloader +Requires: php-composer(fedora/autoloader) +# From phpcompatinfo report for version 1.1.0 +Requires: php-pcre +Requires: php-spl + +Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version} +Provides: php-composer(zendframework/%{zf_name}) = %{version} +Provides: php-autoloader(%{gh_owner}/%{gh_project}) = %{version} +Provides: php-autoloader(zendframework/%{zf_name}) = %{version} + + +%description +This library provides utilities for: + +* Emitting PSR-7 responses. +* Running PSR-15 server request handlers, which involves marshaling a PSR-7 + ServerRequestInterface, handling exceptions due to request creation, + and emitting the response returned by the composed request handler. + +The RequestHandlerRunner will be used in the bootstrap of your application +to fire off the RequestHandlerInterface representing your application. + +Documentation: https://docs.laminas.dev/%{gh_project}/ + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + +mv LICENSE.md LICENSE + + +%build +: Generate autoloader +phpab --template fedora --output src/autoload.php src +cat << 'EOF' | tee -a src/autoload.php +\Fedora\Autoloader\Dependencies::optional([ + '%{php_home}/Psr/Http/Message/autoload.php', + '%{php_home}/Psr/Http/Server/autoload.php', +]); +EOF + +cat << 'EOF' | tee zf.php + - 1.1.0-1 +- initial package -- cgit