From 1f30180f4a500d34dc4f2570dbba6af1290dc7e6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 12 Nov 2015 11:02:41 +0100 Subject: php-pecl-amqp: 1.7.0alpha1 --- REFLECTION-DEV | 1207 ++++++++++++++++++++++++++++++++++++++++++++++++ amqp-pr182.patch | 43 ++ php-pecl-amqp-dev.spec | 15 +- 3 files changed, 1261 insertions(+), 4 deletions(-) create mode 100644 REFLECTION-DEV create mode 100644 amqp-pr182.patch diff --git a/REFLECTION-DEV b/REFLECTION-DEV new file mode 100644 index 0000000..de8b6e9 --- /dev/null +++ b/REFLECTION-DEV @@ -0,0 +1,1207 @@ +Extension [ extension #71 amqp version 1.7.0alpha1 ] { + + - 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 implements Throwable ] { + + - 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 implements Throwable ] { + + - 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 implements Throwable ] { + + - 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 implements Throwable ] { + + - 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 implements Throwable ] { + + - 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/amqp-pr182.patch b/amqp-pr182.patch new file mode 100644 index 0000000..ed2905e --- /dev/null +++ b/amqp-pr182.patch @@ -0,0 +1,43 @@ +From b5f8ad6da275665dfb871e478a676969bda02d3c Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Thu, 12 Nov 2015 10:41:54 +0100 +Subject: [PATCH] fix build with old gcc + +--- + php_amqp.h | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/php_amqp.h b/php_amqp.h +index 49afd55..ef13d44 100644 +--- a/php_amqp.h ++++ b/php_amqp.h +@@ -118,7 +118,7 @@ typedef struct _amqp_channel_object { + #endif + } amqp_channel_object; + +-typedef struct _amqp_connection_resource { ++struct _amqp_connection_resource { + zend_bool is_connected; + zend_bool is_persistent; + zend_bool is_dirty; +@@ -131,9 +131,9 @@ typedef struct _amqp_connection_resource { + PHP5to7_param_str_len_type_t resource_key_len; + amqp_connection_state_t connection_state; + amqp_socket_t *socket; +-} amqp_connection_resource; ++}; + +-typedef struct _amqp_connection_object { ++struct _amqp_connection_object { + #if PHP_MAJOR_VERSION >= 7 + amqp_connection_resource *connection_resource; + zend_object zo; +@@ -141,7 +141,7 @@ typedef struct _amqp_connection_object { + zend_object zo; + amqp_connection_resource *connection_resource; + #endif +-} amqp_connection_object; ++}; + + #define DEFAULT_PORT "5672" /* default AMQP port */ + #define DEFAULT_HOST "localhost" diff --git a/php-pecl-amqp-dev.spec b/php-pecl-amqp-dev.spec index 44f5370..bdace1f 100644 --- a/php-pecl-amqp-dev.spec +++ b/php-pecl-amqp-dev.spec @@ -22,7 +22,7 @@ %{!?__pecl: %global __pecl %{_bindir}/pecl} %{!?__php: %global __php %{_bindir}/php} -%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" @@ -30,17 +30,20 @@ %else %global ini_name 40-%{pecl_name}.ini %endif -#global prever beta4 +%global prever alpha1 Summary: Communicate with any AMQP compliant server Name: %{?sub_prefix}php-pecl-amqp -Version: 1.6.0 -Release: 2%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +Version: 1.7.0 +Release: 0.1.%{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 +# https://github.com/pdezwart/php-amqp/pull/182 +Patch0: %{pecl_name}-pr182.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: %{?scl_prefix}php-devel > 5.2.0 BuildRequires: %{?scl_prefix}php-pear @@ -107,6 +110,7 @@ sed -e 's/role="test"/role="src"/' -i package.xml mv %{pecl_name}-%{version}%{?prever} NTS cd NTS +%patch0 -p1 -b .pr182 # Upstream often forget to change this extver=$(sed -n '/#define PHP_AMQP_VERSION/{s/.* "//;s/".*$//;p}' php_amqp.h) @@ -288,6 +292,9 @@ fi %changelog +* 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 -- cgit