Date: Sun, 25 Jan 2015 22:32:45 +0000 (UTC) From: Jun Kuriyama <kuriyama@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377905 - in head/net: . go-amqp Message-ID: <201501252232.t0PMWjQm026697@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kuriyama Date: Sun Jan 25 22:32:44 2015 New Revision: 377905 URL: https://svnweb.freebsd.org/changeset/ports/377905 QAT: https://qat.redports.org/buildarchive/r377905/ Log: AMQP client with RabbitMQ extensions in Go. WWW: https://github.com/streadway/amqp Added: head/net/go-amqp/ head/net/go-amqp/Makefile (contents, props changed) head/net/go-amqp/distinfo (contents, props changed) head/net/go-amqp/pkg-descr (contents, props changed) head/net/go-amqp/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Jan 25 21:37:31 2015 (r377904) +++ head/net/Makefile Sun Jan 25 22:32:44 2015 (r377905) @@ -152,6 +152,7 @@ SUBDIR += gnome-online-miners SUBDIR += gnu-dico SUBDIR += gnu-radius + SUBDIR += go-amqp SUBDIR += go-cs SUBDIR += go.net SUBDIR += gofish Added: head/net/go-amqp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-amqp/Makefile Sun Jan 25 22:32:44 2015 (r377905) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= amqp +PORTVERSION= 0.0.0.20140916 +CATEGORIES= net +MASTER_SITES= GH GHC +PKGNAMEPREFIX= go- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Go library for AMQP client with RabbitMQ extensions + +LICENSE= BSD2CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= streadway +GH_PROJECT= ${PORTNAME} +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 7d6d180 + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/lang/go/files/bsd.go.mk" +.include <bsd.port.post.mk> Added: head/net/go-amqp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-amqp/distinfo Sun Jan 25 22:32:44 2015 (r377905) @@ -0,0 +1,2 @@ +SHA256 (amqp-0.0.0.20140916.tar.gz) = 29dbd44b1cd66a2d28a6515319842a4256a41b354680435584c6ef9155183614 +SIZE (amqp-0.0.0.20140916.tar.gz) = 76086 Added: head/net/go-amqp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-amqp/pkg-descr Sun Jan 25 22:32:44 2015 (r377905) @@ -0,0 +1,3 @@ +AMQP client with RabbitMQ extensions in Go. + +WWW: https://github.com/streadway/amqp Added: head/net/go-amqp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-amqp/pkg-plist Sun Jan 25 22:32:44 2015 (r377905) @@ -0,0 +1,30 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/auth.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/certs.sh +%%GO_SRCDIR%%/%%GO_PKGNAME%%/channel.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/client_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/connection.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/consumers.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/delivery.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/doc.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples/pubsub/pubsub.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples/simple-consumer/consumer.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples/simple-producer/producer.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/gen.sh +%%GO_SRCDIR%%/%%GO_PKGNAME%%/integration_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/read.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/reconnect_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/registry.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/return.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/shared_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/spec/amqp0-9-1.stripped.extended.xml +%%GO_SRCDIR%%/%%GO_PKGNAME%%/spec/gen.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/spec091.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/tls_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/types.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/uri.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/uri_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/write.go
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501252232.t0PMWjQm026697>