From 1574fdf67501a81e2fe67cc3a6cf324703b22c7f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 4 Nov 2020 16:14:22 +0100 Subject: New package --- php-clue-reactphp-ssh-proxy.spec | 195 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 195 insertions(+) create mode 100644 php-clue-reactphp-ssh-proxy.spec (limited to 'php-clue-reactphp-ssh-proxy.spec') diff --git a/php-clue-reactphp-ssh-proxy.spec b/php-clue-reactphp-ssh-proxy.spec new file mode 100644 index 0000000..ad59d4f --- /dev/null +++ b/php-clue-reactphp-ssh-proxy.spec @@ -0,0 +1,195 @@ +# remirepo/fedora spec file for php-clue-reactphp-ssh-proxy +# +# Copyright (c) 2020 Remi Collet, Shawn Iwinski +# +# License: MIT +# http://opensource.org/licenses/MIT +# +# Please preserve changelog entries +# + +%global github_owner clue +%global github_name reactphp-ssh-proxy +%global github_version 1.2.0 +%global github_commit 051ff509c283da139438ad2dcf76d65829b23ed3 + +%global composer_vendor %{github_owner} +%global composer_project %{github_name} + + +# Build using "--without tests" to disable tests +%bcond_without tests + +%{!?phpdir: %global phpdir %{_datadir}/php} + +Name: php-%{composer_vendor}-%{composer_project} +Version: %{github_version} +Release: 1%{?github_release}%{?dist} +Summary: Async SSH proxy connector and forwarder + +License: MIT +URL: https://github.com/%{github_owner}/%{github_name} + +# GitHub export does not include tests +# Run php-clue-socks-react-get-source.sh to create full source +Source0: %{name}-%{github_version}-%{github_commit}.tar.gz +Source1: %{name}-get-source.sh + +BuildArch: noarch +# Tests +%if %{with tests} +BuildRequires: php(language) >= 5.3 +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +BuildRequires: (php-composer(clue/socks-react) >= 1.0 with php-composer(clue/socks-react) < 2) +BuildRequires: (php-composer(react/child-process) >= 0.6 with php-composer(react/child-process) < 1) +BuildRequires: (php-composer(react/event-loop) >= 1.0 with php-composer(react/event-loop) < 2) +BuildRequires: (php-composer(react/promise) >= 2.1 with php-composer(react/promise) < 3) +BuildRequires: (php-composer(react/socket) >= 1.1 with php-composer(react/socket) < 2) +BuildRequires: (php-composer(react/stream) >= 1.0 with php-composer(react/stream) < 2) +## composer.json +# "clue/block-react": "^1.3", +# "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36", +# "react/http": "^1.0", +# "react/mysql": "^0.5.3" +# ignore react/http and react/mysql only used in examples +BuildRequires: (php-composer(clue/block-react) >= 1.1 with php-composer(clue/block-react) < 2) +%else +BuildRequires: php-clue-socks-react >= 1.0 +BuildRequires: php-react-child-process >= 0.6 +BuildRequires: php-react-event-loop >= 1.0 +BuildRequires: php-react-promise >= 2.1 +BuildRequires: php-react-socket >= 1.1 +BuildRequires: php-react-stream >= 1.0 +BuildRequires: php-clue-block-react >= 1.1 +%endif +%if 0%{?fedora} >= 32 || 0%{?rhel} >= 9 +%global phpunit %{_bindir}/phpunit9 +BuildRequires: phpunit9 >= 9.3 +%else +%global phpunit %{_bindir}/phpunit +BuildRequires: php-phpunit-PHPUnit >= 4.8 +%endif +## phpcompatinfo (computed from version 1.2.0) +BuildRequires: php-filter +BuildRequires: php-pcre +BuildRequires: php-spl +## Autoloader +BuildRequires: php-composer(fedora/autoloader) +%endif + +# composer.json +# "php": ">=5.3", +# "clue/socks-react": "^1.0", +# "react/child-process": "^0.6", +# "react/event-loop": "^1.0 || ^0.5", +# "react/promise": "^2.1 || ^1.2.1", +# "react/socket": "^1.1", +# "react/stream": "^1.0 || ^0.7.2" +Requires: php(language) >= 5.3 +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +Requires: (php-composer(clue/socks-react) >= 1.0 with php-composer(clue/socks-react) < 2) +Requires: (php-composer(react/child-process) >= 0.6 with php-composer(react/child-process) < 1) +Requires: (php-composer(react/event-loop) >= 1.0 with php-composer(react/event-loop) < 2) +Requires: (php-composer(react/promise) >= 2.1 with php-composer(react/promise) < 3) +Requires: (php-composer(react/socket) >= 1.1 with php-composer(react/socket) < 2) +Requires: (php-composer(react/stream) >= 1.0 with php-composer(react/stream) < 2) +%else +Requires: php-clue-socks-react >= 1.0 +Requires: php-react-child-process >= 0.6 +Requires: php-react-event-loop >= 1.0 +Requires: php-react-promise >= 2.1 +Requires: php-react-socket >= 1.1 +Requires: php-react-stream >= 1.0 +%endif +# phpcompatinfo (computed from version 1.2.0) +Requires: php-filter +Requires: php-pcre +Requires: php-spl +# Autoloader +Requires: php-composer(fedora/autoloader) + +# Composer +Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} + +%description +Async SSH proxy connector and forwarder, tunnel any TCP/IP-based +protocol through an SSH server, built on top of ReactPHP [1]. + +Autoloader: %{phpdir}/Clue/React/SshProxy/autoload.php + +[1] http://reactphp.org/ + + +%prep +%setup -qn %{github_name}-%{github_commit} + + +%build +: Create autoloader +cat <<'AUTOLOAD' | tee src/autoload.php + - 1.2.0-1 +- Initial package -- cgit