From 77c1472edf9e3b2b5dd6efb421ef9aa0b9753baf Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 6 Nov 2016 19:06:06 +0100 Subject: php-sentry: import from Fedora --- php-sentry.spec | 188 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 188 insertions(+) create mode 100644 php-sentry.spec (limited to 'php-sentry.spec') diff --git a/php-sentry.spec b/php-sentry.spec new file mode 100644 index 0000000..59ffb5f --- /dev/null +++ b/php-sentry.spec @@ -0,0 +1,188 @@ +# +# Fedora spec file for php-sentry +# +# Copyright (c) 2016 Shawn Iwinski +# +# License: MIT +# http://opensource.org/licenses/MIT +# +# Please preserve the changelog entries +# + +%global github_owner getsentry +%global github_name sentry-php +%global github_version 0.22.0 +%global github_commit 49d4c0c4f2c298c9f15a07416debb5352a209b79 + +%global composer_vendor sentry +%global composer_project sentry + +# "php": ">=5.2.4" +%global php_min_ver 5.2.4 +# "monolog/monolog": "*" +# NOTE: Min version because autoloader required +%global monolog_min_ver 1.15.0 + +# Build using "--without tests" to disable tests +%global with_tests 0%{!?_without_tests:1} + +%{!?phpdir: %global phpdir %{_datadir}/php} + +Name: php-%{composer_project} +Version: %{github_version} +Release: 1%{?github_release}%{?dist} +Summary: PHP client for Sentry + +Group: Development/Libraries +# ASL 2.0: +# - lib/Raven/Serializer.php +# BSD: +# - Everything else +License: BSD and ASL 2.0 +URL: https://github.com/%{github_owner}/%{github_name} + +# GitHub export does not include tests. +# Run php-sentry-get-source.sh to create full source. +Source0: %{name}-%{github_version}-%{github_commit}.tar.gz +Source1: %{name}-get-source.sh + +BuildArch: noarch +# Library version value check +BuildRequires: php-cli +# Tests +%if %{with_tests} +## composer.json +BuildRequires: php(language) >= %{php_min_ver} +BuildRequires: php-composer(phpunit/phpunit) +BuildRequires: php-composer(monolog/monolog) >= %{monolog_min_ver} +BuildRequires: php-curl +## phpcompatinfo (computed from version 0.22.0) +BuildRequires: php-date +BuildRequires: php-hash +BuildRequires: php-mbstring +BuildRequires: php-pcre +BuildRequires: php-reflection +BuildRequires: php-session +BuildRequires: php-spl +BuildRequires: php-zlib +%if 0%{?fedora} >= 25 +# Required for PHPUnit with PHP 7 +# See https://github.com/getsentry/sentry-php/pull/365 +BuildRequires: php-uopz +%endif +# Conflict because Monolog will load obsoleted package's autoloader and classes. +BuildConflicts: php-Raven +%endif + +Requires: php-cli +Requires: ca-certificates +# composer.json +Requires: php(language) >= %{php_min_ver} +Requires: php-composer(monolog/monolog) >= %{monolog_min_ver} +Requires: php-curl +# phpcompatinfo (computed from version 0.22.0) +Requires: php-date +Requires: php-hash +Requires: php-mbstring +Requires: php-pcre +Requires: php-reflection +Requires: php-session +Requires: php-spl +Requires: php-zlib + +# Standard "php-{COMPOSER_VENDOR}-{COMPOSER_PROJECT}" naming +Provides: php-%{composer_vendor}-%{composer_project} = %{version}-%{release} +# Composer +Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} + +# Rename +Obsoletes: php-Raven < %{version} +Provides: php-Raven = %{version}-%{release} +Provides: php-composer(raven/raven) = %{version} + + +%description +%{summary} (http://getsentry.com). + +Autoloader: %{phpdir}/Raven/autoload.php + + +%prep +%setup -qn %{github_name}-%{github_commit} + +: Remove bundled cert +rm -rf lib/Raven/data +sed "/return.*cacert\.pem/s#.*# return '%{_sysconfdir}/pki/tls/cert.pem';#" \ + -i lib/Raven/Client.php + +: Update autoloader require in bin +sed "/require.*Autoloader/s#.*#require_once '%{phpdir}/Raven/Autoloader.php';#" \ + -i bin/sentry + + +%build +: Create autoloader +cat <<'AUTOLOAD' | tee lib/Raven/autoload.php + - 0.22.0-1 +- Initial package -- cgit