# remirepo spec file for php-react-dns, from: # # Fedora spec file for php-react-dns # # Copyright (c) 2017 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner reactphp %global github_name dns %global github_version 0.4.7 %global github_commit e09ca286e3e18fea93317315dd7fc59d7963af8a %global composer_vendor react %global composer_project dns # "php": ">=5.3.0" %global php_min_ver 5.3.0 # "react/cache": "~0.4.0|~0.3.0" %global react_cache_min_ver 0.3.0 %global react_cache_max_ver 0.5.0 # "react/promise": "~2.1|~1.2" # NOTE: Min version not 1.2 to restrict to one major version %global react_promise_min_ver 2.1 %global react_promise_max_ver 3.0 # "react/promise-timer": "~1.1" %global react_promise_timer_min_ver 1.1 %global react_promise_timer_max_ver 2.0 # "react/socket": "^0.7 || ^0.6 || ^0.5 || ^0.4.4" %global react_socket_min_ver 0.4.4 %global react_socket_max_ver 1.0 # "react/stream": "^0.6 || ^0.5 || ^0.4.5" %global react_stream_min_ver 0.4.5 %global react_stream_max_ver 1.0 # 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: Async DNS resolver 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 BuildArch: noarch # Tests %if %{with_tests} ## composer.json BuildRequires: php(language) >= %{php_min_ver} BuildRequires: php-composer(phpunit/phpunit) BuildRequires: php-composer(react/cache) < %{react_cache_max_ver} BuildRequires: php-composer(react/cache) >= %{react_cache_min_ver} BuildRequires: php-composer(react/promise-timer) < %{react_promise_timer_max_ver} BuildRequires: php-composer(react/promise-timer) >= %{react_promise_timer_min_ver} BuildRequires: php-composer(react/promise) < %{react_promise_max_ver} BuildRequires: php-composer(react/promise) >= %{react_promise_min_ver} BuildRequires: php-composer(react/socket) < %{react_socket_max_ver} BuildRequires: php-composer(react/socket) >= %{react_socket_min_ver} BuildRequires: php-composer(react/stream) < %{react_stream_max_ver} BuildRequires: php-composer(react/stream) >= %{react_stream_min_ver} ## phpcompatinfo (computed from version 0.4.7) BuildRequires: php-date BuildRequires: php-pcre BuildRequires: php-reflection BuildRequires: php-spl ## Autoloader BuildRequires: php-composer(fedora/autoloader) %endif # composer.json Requires: php(language) >= %{php_min_ver} Requires: php-composer(react/cache) < %{react_cache_max_ver} Requires: php-composer(react/cache) >= %{react_cache_min_ver} Requires: php-composer(react/promise-timer) < %{react_promise_timer_max_ver} Requires: php-composer(react/promise-timer) >= %{react_promise_timer_min_ver} Requires: php-composer(react/promise) < %{react_promise_max_ver} Requires: php-composer(react/promise) >= %{react_promise_min_ver} Requires: php-composer(react/socket) < %{react_socket_max_ver} Requires: php-composer(react/socket) >= %{react_socket_min_ver} Requires: php-composer(react/stream) < %{react_stream_max_ver} Requires: php-composer(react/stream) >= %{react_stream_min_ver} # phpcompatinfo (computed from version 0.4.7) Requires: php-date Requires: php-pcre Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description Async DNS resolver. The main point of the DNS component is to provide async DNS resolution. However, it is really a toolkit for working with DNS messages, and could easily be used to create a DNS server. Autoloader: %{phpdir}/React/Dns/autoload.php %prep %setup -qn %{github_name}-%{github_commit} %build : Create autoloader cat <<'AUTOLOAD' | tee src/autoload.php = 70100 ? 0 : 1);' ; then : Skip tests known to fail : See https://github.com/reactphp/dns/issues/55 : See https://github.com/reactphp/dns/pull/56 # These test functions do not start with "test" and instead are marked with "/** @test */" for FUNC in \ resolveShouldRetryWithTcpIfResponseIsTruncated \ resolveShouldRetryWithTcpIfUdpThrows \ resolveShouldCancelTimerWhenFullResponseIsReceived do # Get function line FUNC_LINE=$(grep -n "function ${FUNC}" tests/Query/ExecutorTest.php | cut -d : -f 1) # Delete previous line (i.e. "/** @test */") LINE=$(expr ${FUNC_LINE} - 1) sed "${LINE}d" -i tests/Query/ExecutorTest.php done fi $PHP_EXEC %{_bindir}/phpunit --verbose --bootstrap bootstrap.php || RETURN_CODE=1 fi done exit $RETURN_CODE %else : Tests skipped %endif %files %{!?_licensedir:%global license %%doc} %license LICENSE %doc *.md %doc composer.json %{phpdir}/React/Dns %changelog * Sun Apr 02 2017 Shawn Iwinski - 0.4.7-1 - Update to 0.4.7 (RHBZ #1421888) * Sat Mar 18 2017 Shawn Iwinski - 0.4.6-1 - Update to 0.4.6 (RHBZ #1421888) * Thu Jan 26 2017 Remi Collet - 0.4.3-3 - backport * Wed Jan 25 2017 Shawn Iwinski - 0.4.3-3 - Skip test requiring network access * Tue Jan 24 2017 Shawn Iwinski - 0.4.3-2 - Restrict react/promise dependency to one major version - Minor update to SCL tests (only php54 and php55 if rhel) * Tue Jan 17 2017 Shawn Iwinski - 0.4.3-1 - Initial package