pkgsrc/net/ruby-amqp/Makefile
taca 29fba11bb8 Update ruby-amqp to 1.5.0.
## Changes Between 1.4.x and 1.5.0

### Only Await basic.consume-ok If nowait is false

Contributed by Rian McGuire.

### Server-Named Queue Recovery Fix

Server-named queues are now correctly recovered again.

Contributed by Jack C Hong.


## Changes Between 1.3.x and 1.4.0

### connection.blocked Support

[connection.blocked](https://www.rabbitmq.com/connection-blocked.html) notifications
are now correctly supported by the library:

``` ruby
EventMachine.run do
  connection = AMQP.connect(:host => '127.0.0.1')

  connection.on_blocked do |conn, conn_blocked|
    puts "Connection blocked, reason: #{conn_blocked.reason}"
  end

  connection.on_unblocked do |conn, _|
    puts "Connection unblocked"
  end
end
```
2015-02-04 15:47:45 +00:00

15 lines
472 B
Makefile

# $NetBSD: Makefile,v 1.17 2015/02/04 15:47:45 taca Exp $
DISTNAME= amqp-1.5.0
CATEGORIES= net
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://github.com/ruby-amqp/amqp
COMMENT= AMQP client implementation in Ruby/EventMachine
LICENSE= ruby-license
DEPENDS+= ${RUBY_PKGPREFIX}-eventmachine>=0:../../devel/ruby-eventmachine
DEPENDS+= ${RUBY_PKGPREFIX}-amq-protocol>=1.9.2:../../net/ruby-amq-protocol
.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"