From owner-svn-ports-all@freebsd.org Sun Dec 31 16:20:43 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6B69E82F24; Sun, 31 Dec 2017 16:20:43 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 714A478BB1; Sun, 31 Dec 2017 16:20:43 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBVGKgrL020167; Sun, 31 Dec 2017 16:20:42 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBVGKglj020163; Sun, 31 Dec 2017 16:20:42 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201712311620.vBVGKglj020163@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 31 Dec 2017 16:20:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457703 - in head/net: . rubygem-mqtt X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/net: . rubygem-mqtt X-SVN-Commit-Revision: 457703 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Dec 2017 16:20:43 -0000 Author: antoine Date: Sun Dec 31 16:20:42 2017 New Revision: 457703 URL: https://svnweb.freebsd.org/changeset/ports/457703 Log: New port: net/rubygem-mqtt Pure Ruby gem that implements the MQTT protocol, a lightweight protocol for publish/subscribe messaging. WWW: http://github.com/njh/ruby-mqtt Added: head/net/rubygem-mqtt/ head/net/rubygem-mqtt/Makefile (contents, props changed) head/net/rubygem-mqtt/distinfo (contents, props changed) head/net/rubygem-mqtt/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Dec 31 16:16:20 2017 (r457702) +++ head/net/Makefile Sun Dec 31 16:20:42 2017 (r457703) @@ -1210,6 +1210,7 @@ SUBDIR += rubygem-iproto SUBDIR += rubygem-lita-gems SUBDIR += rubygem-macaddr + SUBDIR += rubygem-mqtt SUBDIR += rubygem-net-ldap SUBDIR += rubygem-net-netrc SUBDIR += rubygem-net-ping Added: head/net/rubygem-mqtt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-mqtt/Makefile Sun Dec 31 16:20:42 2017 (r457703) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= mqtt +PORTVERSION= 0.5.0 +CATEGORIES= net rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Implementation of the MQTT protocol + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +NO_ARCH= yes +USES= gem +USE_RUBY= yes + +.include Added: head/net/rubygem-mqtt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-mqtt/distinfo Sun Dec 31 16:20:42 2017 (r457703) @@ -0,0 +1,3 @@ +TIMESTAMP = 1514734178 +SHA256 (rubygem/mqtt-0.5.0.gem) = 29e6fb74d2b8f6f1936967eb798e40c8aebc890b699b3c801fc6d5e2b3863334 +SIZE (rubygem/mqtt-0.5.0.gem) = 39936 Added: head/net/rubygem-mqtt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-mqtt/pkg-descr Sun Dec 31 16:20:42 2017 (r457703) @@ -0,0 +1,4 @@ +Pure Ruby gem that implements the MQTT protocol, a lightweight protocol for +publish/subscribe messaging. + +WWW: http://github.com/njh/ruby-mqtt