diff options
| author | Remi Collet <fedora@famillecollet.com> | 2016-07-18 07:41:06 +0200 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2016-07-18 07:41:06 +0200 | 
| commit | 43d7341bfc33e45b98b40e8eeb4f6af77901bbfe (patch) | |
| tree | 02a3164ffa3825c1275d71813230db77b29452ec | |
| parent | df836f007d0f0393162746da61a1e15a937eb9ee (diff) | |
php-pecl-hdr-histogram: 0.2.0
| -rw-r--r-- | REFLECTION | 8 | ||||
| -rw-r--r-- | php-pecl-hdr-histogram.spec | 25 | 
2 files changed, 19 insertions, 14 deletions
@@ -1,4 +1,4 @@ -Extension [ <persistent> extension #101 hdrhistogram version 0.1.0 ] { +Extension [ <persistent> extension #86 hdrhistogram version 0.2.0 ] {    - Functions {      Function [ <internal:hdrhistogram> function hdr_init ] { @@ -19,6 +19,8 @@ Extension [ <persistent> extension #101 hdrhistogram version 0.1.0 ] {      }      Function [ <internal:hdrhistogram> function hdr_max ] {      } +    Function [ <internal:hdrhistogram> function hdr_total_count ] { +    }      Function [ <internal:hdrhistogram> function hdr_reset ] {      }      Function [ <internal:hdrhistogram> function hdr_count_at_value ] { @@ -41,6 +43,10 @@ Extension [ <persistent> extension #101 hdrhistogram version 0.1.0 ] {      }      Function [ <internal:hdrhistogram> function hdr_import ] {      } +    Function [ <internal:hdrhistogram> function hdr_base64_encode ] { +    } +    Function [ <internal:hdrhistogram> function hdr_base64_decode ] { +    }    }  } diff --git a/php-pecl-hdr-histogram.spec b/php-pecl-hdr-histogram.spec index 93fae04..d127e2f 100644 --- a/php-pecl-hdr-histogram.spec +++ b/php-pecl-hdr-histogram.spec @@ -12,10 +12,9 @@  %else  %global sub_prefix %{scl_prefix}  %endif +%scl_package        php-pecl-hdr-histogram  %endif -%{?scl:          %scl_package        php-pecl-hdr-histogram} -  %global with_zts   0%{?__ztsphp:1}  %global pecl_name  hdr_histogram  %global ext_name   hdrhistogram @@ -27,15 +26,14 @@  Summary:       PHP extension wrapper for the C hdrhistogram API  Name:          %{?sub_prefix}php-pecl-hdr-histogram -Version:       0.1.0 -Release:       2%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +Version:       0.2.0 +Release:       1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}  License:       MIT  Group:         Development/Languages  URL:           http://pecl.php.net/package/%{pecl_name}  Source:        http://pecl.php.net/get/%{pecl_name}-%{version}.tgz -BuildRoot:     %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)  BuildRequires: %{?scl_prefix}php-devel >= 5.4  BuildRequires: %{?scl_prefix}php-pear  BuildRequires: hdrhistogram-devel @@ -48,8 +46,10 @@ Provides:      %{?scl_prefix}php-%{pecl_name}               = %{version}  Provides:      %{?scl_prefix}php-%{pecl_name}%{?_isa}       = %{version}  Provides:      %{?scl_prefix}php-pecl(%{pecl_name})         = %{version}  Provides:      %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} +%if "%{?scl_prefix}" != "%{?sub_prefix}"  Provides:      %{?scl_prefix}php-pecl-%{pecl_name}          = %{version}-%{release}  Provides:      %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa}  = %{version}-%{release} +%endif  %if "%{?vendor}" == "Remi Collet" && 0%{!?scl:1}  # Other third party repo stuff @@ -67,6 +67,10 @@ Obsoletes:     php56w-pecl-hdr-histogram <= %{version}  Obsoletes:     php70u-pecl-hdr-histogram <= %{version}  Obsoletes:     php70w-pecl-hdr-histogram <= %{version}  %endif +%if "%{php_version}" > "7.1" +Obsoletes:     php71u-pecl-hdr-histogram <= %{version} +Obsoletes:     php71w-pecl-hdr-histogram <= %{version} +%endif  %endif  %if 0%{?fedora} < 20 && 0%{?rhel} < 7 @@ -156,9 +160,6 @@ done  %check -sed -e 's/82016/820%d/' \ -    -e 's/EXPECT/EXPECTF/' \ -    -i ?TS/tests/hdrhistogram_001.phpt  cd NTS  : Minimal load test for NTS extension  %{__php} --no-php-ini \ @@ -189,10 +190,6 @@ REPORT_EXIT_STATUS=1 \  %endif -%clean -rm -rf %{buildroot} - -  %if 0%{?fedora} < 24  # when pear installed alone, after us  %triggerin -- %{?scl_prefix}php-pear @@ -214,7 +211,6 @@ fi  %files -%defattr(-, root, root, -)  %{?_licensedir:%license NTS/LICENSE}  %doc %{pecl_docdir}/%{pecl_name}  %{pecl_xmldir}/%{name}.xml @@ -229,6 +225,9 @@ fi  %changelog +* Mon Jul 18 2016 Remi Collet <remi@fedoraproject.org> - 0.2.0-1 +- Update to 0.2.0 +  * Sat Mar  5 2016 Remi Collet <remi@fedoraproject.org> - 0.1.0-2  - adapt for F24  | 
