From 1343e1e326ebf255d251f98d4175f46146d252e2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 26 Apr 2016 16:37:38 +0200 Subject: php-pecl-amqp: switch the spec --- REFLECTION | 98 +++- REFLECTION-DEV | 1207 ------------------------------------------------ php-pecl-amqp-dev.spec | 396 ---------------- php-pecl-amqp.spec | 17 +- 4 files changed, 95 insertions(+), 1623 deletions(-) delete mode 100644 REFLECTION-DEV delete mode 100644 php-pecl-amqp-dev.spec diff --git a/REFLECTION b/REFLECTION index 8d33050..fb6ae1b 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #74 amqp version 1.6.1 ] { +Extension [ extension #74 amqp version 1.7.0alpha2 ] { - INI { Entry [ amqp.host ] @@ -82,7 +82,18 @@ Extension [ extension #74 amqp version 1.6.1 ] { - Static methods [0] { } - - Properties [0] { + - Properties [11] { + Property [ private $login ] + Property [ private $password ] + Property [ private $host ] + Property [ private $vhost ] + Property [ private $port ] + Property [ private $read_timeout ] + Property [ private $write_timeout ] + Property [ private $connect_timeout ] + Property [ private $channel_max ] + Property [ private $frame_max ] + Property [ private $heartbeat ] } - Methods [29] { @@ -282,14 +293,17 @@ Extension [ extension #74 amqp version 1.6.1 ] { - Static methods [0] { } - - Properties [0] { + - Properties [3] { + Property [ private $connection ] + Property [ private $prefetch_count ] + Property [ private $prefetch_size ] } - Methods [13] { Method [ public method __construct ] { - Parameters [1] { - Parameter #0 [ $amqp_connection ] + Parameter #0 [ AMQPConnection $amqp_connection ] } } @@ -383,14 +397,23 @@ Extension [ extension #74 amqp version 1.6.1 ] { - Static methods [0] { } - - Properties [0] { + - Properties [9] { + Property [ private $connection ] + Property [ private $channel ] + Property [ private $name ] + Property [ private $consumer_tag ] + Property [ private $passive ] + Property [ private $durable ] + Property [ private $exclusive ] + Property [ private $auto_delete ] + Property [ private $arguments ] } - - Methods [24] { + - Methods [25] { Method [ public method __construct ] { - Parameters [1] { - Parameter #0 [ $amqp_channel ] + Parameter #0 [ AMQPChannel $amqp_channel ] } } @@ -448,6 +471,13 @@ Extension [ extension #74 amqp version 1.6.1 ] { } } + Method [ public method hasArgument ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + Method [ public method declareQueue ] { - Parameters [0] { @@ -569,14 +599,23 @@ Extension [ extension #74 amqp version 1.6.1 ] { - Static methods [0] { } - - Properties [0] { + - Properties [9] { + Property [ private $connection ] + Property [ private $channel ] + Property [ private $name ] + Property [ private $type ] + Property [ private $passive ] + Property [ private $durable ] + Property [ private $auto_delete ] + Property [ private $internal ] + Property [ private $arguments ] } - - Methods [19] { + - Methods [20] { Method [ public method __construct ] { - Parameters [1] { - Parameter #0 [ $amqp_channel ] + Parameter #0 [ AMQPChannel $amqp_channel ] } } @@ -647,6 +686,13 @@ Extension [ extension #74 amqp version 1.6.1 ] { } } + Method [ public method hasArgument ] { + + - Parameters [1] { + Parameter #0 [ $argument ] + } + } + Method [ public method declareExchange ] { - Parameters [0] { @@ -720,10 +766,28 @@ Extension [ extension #74 amqp version 1.6.1 ] { - Static methods [0] { } - - Properties [0] { + - Properties [18] { + Property [ private $body ] + Property [ private $delivery_tag ] + Property [ private $is_redelivery ] + Property [ private $exchange_name ] + Property [ private $routing_key ] + Property [ private $content_type ] + Property [ private $content_encoding ] + Property [ private $headers ] + Property [ private $delivery_mode ] + Property [ private $priority ] + Property [ private $correlation_id ] + Property [ private $reply_to ] + Property [ private $expiration ] + Property [ private $message_id ] + Property [ private $timestamp ] + Property [ private $type ] + Property [ private $user_id ] + Property [ private $app_id ] } - - Methods [20] { + - Methods [21] { Method [ public method __construct ] { - Parameters [0] { @@ -840,7 +904,15 @@ Extension [ extension #74 amqp version 1.6.1 ] { Method [ public method getHeader ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ $name ] + } + } + + Method [ public method hasHeader ] { + + - Parameters [1] { + Parameter #0 [ $name ] } } } diff --git a/REFLECTION-DEV b/REFLECTION-DEV deleted file mode 100644 index fb6ae1b..0000000 --- a/REFLECTION-DEV +++ /dev/null @@ -1,1207 +0,0 @@ -Extension [ extension #74 amqp version 1.7.0alpha2 ] { - - - INI { - Entry [ amqp.host ] - Current = 'localhost' - } - Entry [ amqp.vhost ] - Current = '/' - } - Entry [ amqp.port ] - Current = '5672' - } - Entry [ amqp.timeout ] - Current = '' - } - Entry [ amqp.read_timeout ] - Current = '0' - } - Entry [ amqp.write_timeout ] - Current = '0' - } - Entry [ amqp.connect_timeout ] - Current = '0' - } - Entry [ amqp.login ] - Current = 'guest' - } - Entry [ amqp.password ] - Current = 'guest' - } - Entry [ amqp.auto_ack ] - Current = '0' - } - Entry [ amqp.prefetch_count ] - Current = '3' - } - Entry [ amqp.channel_max ] - Current = '256' - } - Entry [ amqp.frame_max ] - Current = '131072' - } - Entry [ amqp.heartbeat ] - Current = '0' - } - } - - - Constants [22] { - Constant [ integer AMQP_NOPARAM ] { 0 } - Constant [ integer AMQP_JUST_CONSUME ] { 1 } - Constant [ integer AMQP_DURABLE ] { 2 } - Constant [ integer AMQP_PASSIVE ] { 4 } - Constant [ integer AMQP_EXCLUSIVE ] { 8 } - Constant [ integer AMQP_AUTODELETE ] { 16 } - Constant [ integer AMQP_INTERNAL ] { 32 } - Constant [ integer AMQP_NOLOCAL ] { 64 } - Constant [ integer AMQP_AUTOACK ] { 128 } - Constant [ integer AMQP_IFEMPTY ] { 256 } - Constant [ integer AMQP_IFUNUSED ] { 512 } - Constant [ integer AMQP_MANDATORY ] { 1024 } - Constant [ integer AMQP_IMMEDIATE ] { 2048 } - Constant [ integer AMQP_MULTIPLE ] { 4096 } - Constant [ integer AMQP_NOWAIT ] { 8192 } - Constant [ integer AMQP_REQUEUE ] { 16384 } - Constant [ string AMQP_EX_TYPE_DIRECT ] { direct } - Constant [ string AMQP_EX_TYPE_FANOUT ] { fanout } - Constant [ string AMQP_EX_TYPE_TOPIC ] { topic } - Constant [ string AMQP_EX_TYPE_HEADERS ] { headers } - Constant [ integer AMQP_OS_SOCKET_TIMEOUT_ERRNO ] { 536870923 } - Constant [ integer PHP_AMQP_MAX_CHANNELS ] { 256 } - } - - - Classes [10] { - Class [ class AMQPConnection ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [11] { - Property [ private $login ] - Property [ private $password ] - Property [ private $host ] - Property [ private $vhost ] - Property [ private $port ] - Property [ private $read_timeout ] - Property [ private $write_timeout ] - Property [ private $connect_timeout ] - Property [ private $channel_max ] - Property [ private $frame_max ] - Property [ private $heartbeat ] - } - - - Methods [29] { - Method [ public method __construct ] { - - - Parameters [1] { - Parameter #0 [ array $credentials ] - } - } - - Method [ public method isConnected ] { - - - Parameters [0] { - } - } - - Method [ public method connect ] { - - - Parameters [0] { - } - } - - Method [ public method pconnect ] { - - - Parameters [0] { - } - } - - Method [ public method pdisconnect ] { - - - Parameters [0] { - } - } - - Method [ public method disconnect ] { - - - Parameters [0] { - } - } - - Method [ public method reconnect ] { - - - Parameters [0] { - } - } - - Method [ public method preconnect ] { - - - Parameters [0] { - } - } - - Method [ public method getLogin ] { - - - Parameters [0] { - } - } - - Method [ public method setLogin ] { - - - Parameters [1] { - Parameter #0 [ $login ] - } - } - - Method [ public method getPassword ] { - - - Parameters [0] { - } - } - - Method [ public method setPassword ] { - - - Parameters [1] { - Parameter #0 [ $password ] - } - } - - Method [ public method getHost ] { - - - Parameters [0] { - } - } - - Method [ public method setHost ] { - - - Parameters [1] { - Parameter #0 [ $host ] - } - } - - Method [ public method getPort ] { - - - Parameters [0] { - } - } - - Method [ public method setPort ] { - - - Parameters [1] { - Parameter #0 [ $port ] - } - } - - Method [ public method getVhost ] { - - - Parameters [0] { - } - } - - Method [ public method setVhost ] { - - - Parameters [1] { - Parameter #0 [ $vhost ] - } - } - - Method [ public method getTimeout ] { - - - Parameters [0] { - } - } - - Method [ public method setTimeout ] { - - - Parameters [1] { - Parameter #0 [ $timeout ] - } - } - - Method [ public method getReadTimeout ] { - - - Parameters [0] { - } - } - - Method [ public method setReadTimeout ] { - - - Parameters [1] { - Parameter #0 [ $timeout ] - } - } - - Method [ public method getWriteTimeout ] { - - - Parameters [0] { - } - } - - Method [ public method setWriteTimeout ] { - - - Parameters [1] { - Parameter #0 [ $timeout ] - } - } - - Method [ public method getUsedChannels ] { - - - Parameters [0] { - } - } - - Method [ public method getMaxChannels ] { - - - Parameters [0] { - } - } - - Method [ public method isPersistent ] { - - - Parameters [0] { - } - } - - Method [ public method getHeartbeatInterval ] { - - - Parameters [0] { - } - } - - Method [ public method getMaxFrameSize ] { - - - Parameters [0] { - } - } - } - } - - Class [ class AMQPChannel ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [3] { - Property [ private $connection ] - Property [ private $prefetch_count ] - Property [ private $prefetch_size ] - } - - - Methods [13] { - Method [ public method __construct ] { - - - Parameters [1] { - Parameter #0 [ AMQPConnection $amqp_connection ] - } - } - - Method [ public method isConnected ] { - - - Parameters [0] { - } - } - - Method [ public method getChannelId ] { - - - Parameters [0] { - } - } - - Method [ public method setPrefetchSize ] { - - - Parameters [1] { - Parameter #0 [ $size ] - } - } - - Method [ public method getPrefetchSize ] { - - - Parameters [0] { - } - } - - Method [ public method setPrefetchCount ] { - - - Parameters [1] { - Parameter #0 [ $count ] - } - } - - Method [ public method getPrefetchCount ] { - - - Parameters [0] { - } - } - - Method [ public method qos ] { - - - Parameters [2] { - Parameter #0 [ $size ] - Parameter #1 [ $count ] - } - } - - Method [ public method startTransaction ] { - - - Parameters [0] { - } - } - - Method [ public method commitTransaction ] { - - - Parameters [0] { - } - } - - Method [ public method rollbackTransaction ] { - - - Parameters [0] { - } - } - - Method [ public method getConnection ] { - - - Parameters [0] { - } - } - - Method [ public method basicRecover ] { - - - Parameters [1] { - Parameter #0 [ $requeue ] - } - } - } - } - - Class [ class AMQPQueue ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [9] { - Property [ private $connection ] - Property [ private $channel ] - Property [ private $name ] - Property [ private $consumer_tag ] - Property [ private $passive ] - Property [ private $durable ] - Property [ private $exclusive ] - Property [ private $auto_delete ] - Property [ private $arguments ] - } - - - Methods [25] { - Method [ public method __construct ] { - - - Parameters [1] { - Parameter #0 [ AMQPChannel $amqp_channel ] - } - } - - Method [ public method getName ] { - - - Parameters [0] { - } - } - - Method [ public method setName ] { - - - Parameters [1] { - Parameter #0 [ $queue_name ] - } - } - - Method [ public method getFlags ] { - - - Parameters [0] { - } - } - - Method [ public method setFlags ] { - - - Parameters [1] { - Parameter #0 [ $flags ] - } - } - - Method [ public method getArgument ] { - - - Parameters [1] { - Parameter #0 [ $argument ] - } - } - - Method [ public method getArguments ] { - - - Parameters [0] { - } - } - - Method [ public method setArgument ] { - - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - } - } - - Method [ public method setArguments ] { - - - Parameters [1] { - Parameter #0 [ array $arguments ] - } - } - - Method [ public method hasArgument ] { - - - Parameters [1] { - Parameter #0 [ $key ] - } - } - - Method [ public method declareQueue ] { - - - Parameters [0] { - } - } - - Method [ public method bind ] { - - - Parameters [3] { - Parameter #0 [ $exchange_name ] - Parameter #1 [ $routing_key ] - Parameter #2 [ $arguments ] - } - } - - Method [ public method get ] { - - - Parameters [1] { - Parameter #0 [ $flags ] - } - } - - Method [ public method consume ] { - - - Parameters [3] { - Parameter #0 [ $callback ] - Parameter #1 [ $flags ] - Parameter #2 [ $consumer_tag ] - } - } - - Method [ public method ack ] { - - - Parameters [2] { - Parameter #0 [ $delivery_tag ] - Parameter #1 [ $flags ] - } - } - - Method [ public method nack ] { - - - Parameters [2] { - Parameter #0 [ $delivery_tag ] - Parameter #1 [ $flags ] - } - } - - Method [ public method reject ] { - - - Parameters [2] { - Parameter #0 [ $delivery_tag ] - Parameter #1 [ $flags ] - } - } - - Method [ public method purge ] { - - - Parameters [0] { - } - } - - Method [ public method cancel ] { - - - Parameters [1] { - Parameter #0 [ $consumer_tag ] - } - } - - Method [ public method delete ] { - - - Parameters [1] { - Parameter #0 [ $flags ] - } - } - - Method [ public method unbind ] { - - - Parameters [3] { - Parameter #0 [ $exchange_name ] - Parameter #1 [ $routing_key ] - Parameter #2 [ $arguments ] - } - } - - Method [ public method getChannel ] { - - - Parameters [0] { - } - } - - Method [ public method getConnection ] { - - - Parameters [0] { - } - } - - Method [ public method getConsumerTag ] { - - - Parameters [0] { - } - } - - Method [ public method declare ] { - - - Parameters [0] { - } - } - } - } - - Class [ class AMQPExchange ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [9] { - Property [ private $connection ] - Property [ private $channel ] - Property [ private $name ] - Property [ private $type ] - Property [ private $passive ] - Property [ private $durable ] - Property [ private $auto_delete ] - Property [ private $internal ] - Property [ private $arguments ] - } - - - Methods [20] { - Method [ public method __construct ] { - - - Parameters [1] { - Parameter #0 [ AMQPChannel $amqp_channel ] - } - } - - Method [ public method getName ] { - - - Parameters [0] { - } - } - - Method [ public method setName ] { - - - Parameters [1] { - Parameter #0 [ $exchange_name ] - } - } - - Method [ public method getFlags ] { - - - Parameters [0] { - } - } - - Method [ public method setFlags ] { - - - Parameters [1] { - Parameter #0 [ $flags ] - } - } - - Method [ public method getType ] { - - - Parameters [0] { - } - } - - Method [ public method setType ] { - - - Parameters [1] { - Parameter #0 [ $exchange_type ] - } - } - - Method [ public method getArgument ] { - - - Parameters [1] { - Parameter #0 [ $argument ] - } - } - - Method [ public method getArguments ] { - - - Parameters [0] { - } - } - - Method [ public method setArgument ] { - - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - } - } - - Method [ public method setArguments ] { - - - Parameters [1] { - Parameter #0 [ array $arguments ] - } - } - - Method [ public method hasArgument ] { - - - Parameters [1] { - Parameter #0 [ $argument ] - } - } - - Method [ public method declareExchange ] { - - - Parameters [0] { - } - } - - Method [ public method bind ] { - - - Parameters [3] { - Parameter #0 [ $exchange_name ] - Parameter #1 [ $routing_key ] - Parameter #2 [ $flags ] - } - } - - Method [ public method unbind ] { - - - Parameters [3] { - Parameter #0 [ $exchange_name ] - Parameter #1 [ $routing_key ] - Parameter #2 [ $flags ] - } - } - - Method [ public method delete ] { - - - Parameters [2] { - Parameter #0 [ $exchange_name ] - Parameter #1 [ $flags ] - } - } - - Method [ public method publish ] { - - - Parameters [4] { - Parameter #0 [ $message ] - Parameter #1 [ $routing_key ] - Parameter #2 [ $flags ] - Parameter #3 [ array $headers ] - } - } - - Method [ public method getChannel ] { - - - Parameters [0] { - } - } - - Method [ public method getConnection ] { - - - Parameters [0] { - } - } - - Method [ public method declare ] { - - - Parameters [0] { - } - } - } - } - - Class [ class AMQPEnvelope ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [18] { - Property [ private $body ] - Property [ private $delivery_tag ] - Property [ private $is_redelivery ] - Property [ private $exchange_name ] - Property [ private $routing_key ] - Property [ private $content_type ] - Property [ private $content_encoding ] - Property [ private $headers ] - Property [ private $delivery_mode ] - Property [ private $priority ] - Property [ private $correlation_id ] - Property [ private $reply_to ] - Property [ private $expiration ] - Property [ private $message_id ] - Property [ private $timestamp ] - Property [ private $type ] - Property [ private $user_id ] - Property [ private $app_id ] - } - - - Methods [21] { - Method [ public method __construct ] { - - - Parameters [0] { - } - } - - Method [ public method getBody ] { - - - Parameters [0] { - } - } - - Method [ public method getRoutingKey ] { - - - Parameters [0] { - } - } - - Method [ public method getDeliveryTag ] { - - - Parameters [0] { - } - } - - Method [ public method getDeliveryMode ] { - - - Parameters [0] { - } - } - - Method [ public method getExchangeName ] { - - - Parameters [0] { - } - } - - Method [ public method isRedelivery ] { - - - Parameters [0] { - } - } - - Method [ public method getContentType ] { - - - Parameters [0] { - } - } - - Method [ public method getContentEncoding ] { - - - Parameters [0] { - } - } - - Method [ public method getType ] { - - - Parameters [0] { - } - } - - Method [ public method getTimestamp ] { - - - Parameters [0] { - } - } - - Method [ public method getPriority ] { - - - Parameters [0] { - } - } - - Method [ public method getExpiration ] { - - - Parameters [0] { - } - } - - Method [ public method getUserId ] { - - - Parameters [0] { - } - } - - Method [ public method getAppId ] { - - - Parameters [0] { - } - } - - Method [ public method getMessageId ] { - - - Parameters [0] { - } - } - - Method [ public method getReplyTo ] { - - - Parameters [0] { - } - } - - Method [ public method getCorrelationId ] { - - - Parameters [0] { - } - } - - Method [ public method getHeaders ] { - - - Parameters [0] { - } - } - - Method [ public method getHeader ] { - - - Parameters [1] { - Parameter #0 [ $name ] - } - } - - Method [ public method hasHeader ] { - - - Parameters [1] { - Parameter #0 [ $name ] - } - } - } - } - - Class [ class AMQPException extends Exception ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - Method [ final public method getMessage ] { - } - - Method [ final public method getCode ] { - } - - Method [ final public method getFile ] { - } - - Method [ final public method getLine ] { - } - - Method [ final public method getTrace ] { - } - - Method [ final public method getPrevious ] { - } - - Method [ final public method getTraceAsString ] { - } - - Method [ public method __toString ] { - } - } - } - - Class [ class AMQPConnectionException extends AMQPException ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - Method [ final public method getMessage ] { - } - - Method [ final public method getCode ] { - } - - Method [ final public method getFile ] { - } - - Method [ final public method getLine ] { - } - - Method [ final public method getTrace ] { - } - - Method [ final public method getPrevious ] { - } - - Method [ final public method getTraceAsString ] { - } - - Method [ public method __toString ] { - } - } - } - - Class [ class AMQPChannelException extends AMQPException ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - Method [ final public method getMessage ] { - } - - Method [ final public method getCode ] { - } - - Method [ final public method getFile ] { - } - - Method [ final public method getLine ] { - } - - Method [ final public method getTrace ] { - } - - Method [ final public method getPrevious ] { - } - - Method [ final public method getTraceAsString ] { - } - - Method [ public method __toString ] { - } - } - } - - Class [ class AMQPQueueException extends AMQPException ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - Method [ final public method getMessage ] { - } - - Method [ final public method getCode ] { - } - - Method [ final public method getFile ] { - } - - Method [ final public method getLine ] { - } - - Method [ final public method getTrace ] { - } - - Method [ final public method getPrevious ] { - } - - Method [ final public method getTraceAsString ] { - } - - Method [ public method __toString ] { - } - } - } - - Class [ class AMQPExchangeException extends AMQPException ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - Method [ final public method getMessage ] { - } - - Method [ final public method getCode ] { - } - - Method [ final public method getFile ] { - } - - Method [ final public method getLine ] { - } - - Method [ final public method getTrace ] { - } - - Method [ final public method getPrevious ] { - } - - Method [ final public method getTraceAsString ] { - } - - Method [ public method __toString ] { - } - } - } - } -} - diff --git a/php-pecl-amqp-dev.spec b/php-pecl-amqp-dev.spec deleted file mode 100644 index 2501e7a..0000000 --- a/php-pecl-amqp-dev.spec +++ /dev/null @@ -1,396 +0,0 @@ -# remirepo spec file for php-pecl-amqp -# with SCL compatibility, from: -# -# Fedora spec file for php-pecl-amqp -# -# Copyright (c) 2012-2016 Remi Collet -# License: CC-BY-SA -# http://creativecommons.org/licenses/by-sa/4.0/ -# -# Please, preserve the changelog entries -# -%if 0%{?scl:1} -%if "%{scl}" == "rh-php56" -%global sub_prefix more-php56- -%else -%global sub_prefix %{scl_prefix} -%endif -%endif - -%{?scl: %scl_package php-pecl-amqp} - -%global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} -%global with_tests 0%{?_with_tests:1} -%global pecl_name amqp -%if "%{php_version}" < "5.6" -%global ini_name %{pecl_name}.ini -%else -%global ini_name 40-%{pecl_name}.ini -%endif -%global prever alpha2 - -Summary: Communicate with any AMQP compliant server -Name: %{?sub_prefix}php-pecl-amqp -Version: 1.7.0 -Release: 0.3.%{prever}%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} -License: PHP -Group: Development/Languages -URL: http://pecl.php.net/package/amqp -Source0: http://pecl.php.net/get/%{pecl_name}-%{version}%{?prever}.tgz - -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -BuildRequires: %{?scl_prefix}php-devel > 5.2.0 -BuildRequires: %{?scl_prefix}php-pear -%if "%{?vendor}" == "Remi Collet" -# Upstream requires 0.5.2, set 0.7.0 to ensure "last" is used. -BuildRequires: librabbitmq-devel >= 0.7.0 -%else -BuildRequires: librabbitmq-devel >= 0.5.2 -%endif -%if %{with_tests} -BuildRequires: rabbitmq-server -%endif - -Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} -Requires: %{?scl_prefix}php(api) = %{php_core_api} -%{?_sclreq:Requires: %{?scl_prefix}runtime%{?_sclreq}%{?_isa}} - -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} -Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version}-%{release} -Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} - -%if "%{?vendor}" == "Remi Collet" && 0%{!?scl:1} -# Other third party repo stuff -Obsoletes: php53-pecl-%{pecl_name} <= %{version} -Obsoletes: php53u-pecl-%{pecl_name} <= %{version} -Obsoletes: php54-pecl-%{pecl_name} <= %{version} -Obsoletes: php54w-pecl-%{pecl_name} <= %{version} -%if "%{php_version}" > "5.5" -Obsoletes: php55u-pecl-%{pecl_name} <= %{version} -Obsoletes: php55w-pecl-%{pecl_name} <= %{version} -%endif -%if "%{php_version}" > "5.6" -Obsoletes: php56u-pecl-%{pecl_name} <= %{version} -Obsoletes: php56w-pecl-%{pecl_name} <= %{version} -%endif -%if "%{php_version}" > "7.0" -Obsoletes: php70u-pecl-%{pecl_name} <= %{version} -Obsoletes: php70w-pecl-%{pecl_name} <= %{version} -%endif -%endif - -%if 0%{?fedora} < 20 && 0%{?rhel} < 7 -# filter private shared -%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} -%{?filter_setup} -%endif - - -%description -This extension can communicate with any AMQP spec 0-9-1 compatible server, -such as RabbitMQ, OpenAMQP and Qpid, giving you the ability to create and -delete exchanges and queues, as well as publish to any exchange and consume -from any queue. - -Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}. - - -%prep -%setup -q -c - -# Don't install/register tests -sed -e 's/role="test"/role="src"/' \ - %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \ - -i package.xml - -mv %{pecl_name}-%{version}%{?prever} NTS -cd NTS - -# Upstream often forget to change this -extver=$(sed -n '/#define PHP_AMQP_VERSION/{s/.* "//;s/".*$//;p}' php_amqp.h) -if test "x${extver}" != "x%{version}%{?prever}"; then - : Error: Upstream version is ${extver}, expecting %{version}%{?prever}. - exit 1 -fi -cd .. - -cat > %{ini_name} << 'EOF' -; Enable %{pecl_name} extension module -extension = %{pecl_name}.so - -; Whether calls to AMQPQueue::get() and AMQPQueue::consume() -; should require that the client explicitly acknowledge messages. -; Setting this value to 1 will pass in the AMQP_AUTOACK flag to -; the above method calls if the flags field is omitted. -;amqp.auto_ack = 0 - -; The host to which to connect. -;amqp.host = localhost - -; The login to use while connecting to the broker. -;amqp.login = guest - -; The password to use while connecting to the broker. -;amqp.password = guest - -; The port on which to connect. -;amqp.port = 5672 - -; The number of messages to prefect from the server during a -; call to AMQPQueue::get() or AMQPQueue::consume() during which -; the AMQP_AUTOACK flag is not set. -;amqp.prefetch_count = 3 - -; The virtual host on the broker to which to connect. -;amqp.vhost = / - -; Timeout -;amqp.timeout = -;amqp.read_timeout = 0 -;amqp.write_timeout = 0 -;amqp.connect_timeout = 0 - -;amqp.channel_max = 256 -;amqp.frame_max = 131072 -;amqp.heartbeat = 0 -EOF - -%if %{with_zts} -cp -pr NTS ZTS -%endif - - -%build -cd NTS -%{_bindir}/phpize -%configure --with-php-config=%{_bindir}/php-config -make %{?_smp_mflags} - -%if %{with_zts} -cd ../ZTS -%{_bindir}/zts-phpize -%configure --with-php-config=%{_bindir}/zts-php-config -make %{?_smp_mflags} -%endif - - -%install -rm -rf %{buildroot} -make -C NTS install INSTALL_ROOT=%{buildroot} - -# Drop in the bit of configuration -install -Dpm 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} - -# Install XML package description -install -Dpm 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml - -%if %{with_zts} -make -C ZTS install INSTALL_ROOT=%{buildroot} -install -Dpm 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} -%endif - -# Documentation -cd NTS -for i in $(grep 'role="doc"' ../package.xml | sed -e 's/^.*name="//;s/".*$//') -do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i -done - - -%check -: Minimal load test for NTS extension -%{__php} --no-php-ini \ - --define extension=NTS/modules/%{pecl_name}.so \ - -m | grep %{pecl_name} - -%if %{with_zts} -: Minimal load test for ZTS extension -%{__ztsphp} --no-php-ini \ - --define extension=ZTS/modules/%{pecl_name}.so \ - -m | grep %{pecl_name} -%endif - -%if %{with_tests} -mkdir log run base -: Launch the RabbitMQ service -export RABBITMQ_PID_FILE=$PWD/run/pid -export RABBITMQ_LOG_BASE=$PWD/log -export RABBITMQ_MNESIA_BASE=$PWD/base -/usr/lib/rabbitmq/bin/rabbitmq-server &>log/output & -/usr/lib/rabbitmq/bin/rabbitmqctl wait $RABBITMQ_PID_FILE - -ret=0 -pushd NTS -: Run the upstream test Suite for NTS extension -TEST_PHP_EXECUTABLE=%{__php} \ -TEST_PHP_ARGS="-n -d extension=$PWD/modules/%{pecl_name}.so" \ -NO_INTERACTION=1 \ -REPORT_EXIT_STATUS=1 \ -%{__php} -n run-tests.php --show-diff || ret=1 -popd - -%if %{with_zts} -pushd ZTS -: Run the upstream test Suite for ZTS extension -TEST_PHP_EXECUTABLE=%{__ztsphp} \ -TEST_PHP_ARGS="-n -d extension=$PWD/modules/%{pecl_name}.so" \ -NO_INTERACTION=1 \ -REPORT_EXIT_STATUS=1 \ -%{__ztsphp} -n run-tests.php --show-diff || ret=1 -popd -%endif - -: Cleanup -if [ -s $RABBITMQ_PID_FILE ]; then - kill $(cat $RABBITMQ_PID_FILE) -fi -rm -rf log run base - -exit $ret -%endif - - -%clean -rm -rf %{buildroot} - - -%if 0%{?fedora} < 24 -# when pear installed alone, after us -%triggerin -- %{?scl_prefix}php-pear -if [ -x %{__pecl} ] ; then - %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : -fi - -# posttrans as pear can be installed after us -%posttrans -if [ -x %{__pecl} ] ; then - %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : -fi - -%postun -if [ $1 -eq 0 -a -x %{__pecl} ] ; then - %{pecl_uninstall} %{pecl_name} >/dev/null || : -fi -%endif - - -%files -%defattr(-,root,root,-) -%{?_licensedir:%license NTS/LICENSE} -%doc %{pecl_docdir}/%{pecl_name} -%{pecl_xmldir}/%{name}.xml - -%config(noreplace) %{php_inidir}/%{ini_name} -%{php_extdir}/%{pecl_name}.so - -%if %{with_zts} -%config(noreplace) %{php_ztsinidir}/%{ini_name} -%{php_ztsextdir}/%{pecl_name}.so -%endif - - -%changelog -* Fri Mar 4 2016 Remi Collet - 1.7.0-0.3.alpha2 -- adapt for F24 - -* Sat Dec 26 2015 Remi Collet - 1.7.0-0.2.alpha2 -- update to 1.7.0alpha2 - -* Thu Nov 12 2015 Remi Collet - 1.7.0-0.1.alpha1 -- update to 1.7.0alpha1 - -* Tue Nov 3 2015 Remi Collet - 1.6.0-2 -- update to 1.6.0 (stable) -- fix typo in config file - -* Fri Sep 18 2015 Remi Collet - 1.6.0-0.4.beta4 -- open https://github.com/pdezwart/php-amqp/pull/178 - librabbitmq 0.5 -- open https://github.com/pdezwart/php-amqp/pull/179 --with-libdir - -* Fri Sep 18 2015 Remi Collet - 1.6.0-0.3.beta4 -- update to 1.6.0beta4 - -* Fri Jun 19 2015 Remi Collet - 1.6.0-0.2.beta3 -- allow build against rh-php56 (as more-php56) - -* Mon Apr 20 2015 Remi Collet - 1.6.0-0.1.beta3 -- update to 1.6.0beta3 -- drop runtime dependency on pear, new scriptlets -- don't install/register tests - -* Wed Dec 24 2014 Remi Collet - 1.4.0-1.1 -- Fedora 21 SCL mass rebuild - -* Mon Aug 25 2014 Remi Collet - 1.4.0-1 -- improve SCL build - -* Tue Apr 15 2014 Remi Collet - 1.4.0-1 -- update to 1.6.0 (stable) - -* Wed Apr 9 2014 Remi Collet - 1.4.0-0.3.beta2 -- add numerical prefix to extension configuration file - -* Sun Mar 9 2014 Remi Collet - 1.4.0-0.2.beta2 -- update to 1.4.0beta2 - -* Thu Jan 16 2014 Remi Collet - 1.4.0-0.1.beta1 -- update to 1.4.0beta1 -- adapt for SCL - -* Mon Nov 25 2013 Remi Collet - 1.3.0-1 -- update to 1.3.0 (beta) -- cleanups for Copr -- install doc in pecl doc_dir -- install tests in pecl test_dir (in devel) -- add --with tests option to run upstream tests during build - -* Sat Sep 28 2013 Remi Collet - 1.2.0-2 -- rebuild with librabbitmq 0.4.1 - -* Thu May 30 2013 Remi Collet - 1.2.0-1 -- Update to 1.2.0 (stable) - -* Fri Apr 19 2013 Remi Collet - 1.0.10-1 -- Update to 1.0.10 (stable) - -* Wed Mar 13 2013 Remi Collet - 1.0.9-3 -- rebuild for new librabbitmq - -* Tue Nov 13 2012 Remi Collet - 1.0.9-1 -- update to 1.0.9 (stable) - -* Mon Nov 12 2012 Remi Collet - 1.0.8-1 -- update to 1.0.8 (stable) -- build ZTS extension -- also provides php-amqp - -* Wed Sep 12 2012 Remi Collet - 1.0.7-1 -- update to 1.0.7 (stable) -- cleanups - -* Mon Aug 27 2012 Remi Collet - 1.0.5-1 -- update to 1.0.5 -- LICENSE now provided in upstream tarball - -* Wed Aug 01 2012 Remi Collet - 1.0.4-1 -- update to 1.0.4 - -* Sat Jul 21 2012 Fedora Release Engineering - 1.0.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat May 19 2012 Remi Collet - 1.0.3-1 -- update to 1.0.3 -- add extension version check (and fix) - -* Mon Mar 19 2012 Remi Collet - 1.0.1-3 -- clean EL-5 stuff as requires php 5.2.0, https://bugs.php.net/61351 - -* Sat Mar 10 2012 Remi Collet - 1.0.1-2 -- rebuild for PHP 5.4 - -* Sat Mar 10 2012 Remi Collet - 1.0.1-1 -- Initial RPM release without ZTS extension -- open request for LICENSE file https://bugs.php.net/61337 - diff --git a/php-pecl-amqp.spec b/php-pecl-amqp.spec index cf6fcfc..2501e7a 100644 --- a/php-pecl-amqp.spec +++ b/php-pecl-amqp.spec @@ -19,7 +19,7 @@ %{?scl: %scl_package php-pecl-amqp} -%global with_zts 0%{?__ztsphp:1} +%global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global with_tests 0%{?_with_tests:1} %global pecl_name amqp %if "%{php_version}" < "5.6" @@ -27,12 +27,12 @@ %else %global ini_name 40-%{pecl_name}.ini %endif -#global prever beta4 +%global prever alpha2 Summary: Communicate with any AMQP compliant server Name: %{?sub_prefix}php-pecl-amqp -Version: 1.6.1 -Release: 2%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +Version: 1.7.0 +Release: 0.3.%{prever}%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/amqp @@ -292,11 +292,14 @@ fi %changelog -* Mon Mar 7 2016 Remi Collet - 1.6.1-2 +* Fri Mar 4 2016 Remi Collet - 1.7.0-0.3.alpha2 - adapt for F24 -* Wed Nov 25 2015 Remi Collet - 1.6.1-1 -- update to 1.6.1 (stable) +* Sat Dec 26 2015 Remi Collet - 1.7.0-0.2.alpha2 +- update to 1.7.0alpha2 + +* Thu Nov 12 2015 Remi Collet - 1.7.0-0.1.alpha1 +- update to 1.7.0alpha1 * Tue Nov 3 2015 Remi Collet - 1.6.0-2 - update to 1.6.0 (stable) -- cgit