From owner-svn-ports-all@freebsd.org Sat Mar 24 06:43:31 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D975BF4C9BD; Sat, 24 Mar 2018 06:43:30 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8D5767C6B5; Sat, 24 Mar 2018 06:43:30 +0000 (UTC) (envelope-from ygy@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8842734C7; Sat, 24 Mar 2018 06:43:30 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2O6hU97033694; Sat, 24 Mar 2018 06:43:30 GMT (envelope-from ygy@FreeBSD.org) Received: (from ygy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2O6hUk7033690; Sat, 24 Mar 2018 06:43:30 GMT (envelope-from ygy@FreeBSD.org) Message-Id: <201803240643.w2O6hUk7033690@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ygy set sender to ygy@FreeBSD.org using -f From: Guangyuan Yang Date: Sat, 24 Mar 2018 06:43:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465429 - in head/www: . websocketd X-SVN-Group: ports-head X-SVN-Commit-Author: ygy X-SVN-Commit-Paths: in head/www: . websocketd X-SVN-Commit-Revision: 465429 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: Sat, 24 Mar 2018 06:43:31 -0000 Author: ygy (doc committer) Date: Sat Mar 24 06:43:29 2018 New Revision: 465429 URL: https://svnweb.freebsd.org/changeset/ports/465429 Log: - Add websocketd 0.3.0 websocketd is the WebSocket daemon. It takes care of handling the WebSocket connections, launching your programs to handle the WebSockets, and passing messages between programs and web-browser. PR: 226867 Approved by: adamw Added: head/www/websocketd/ head/www/websocketd/Makefile (contents, props changed) head/www/websocketd/distinfo (contents, props changed) head/www/websocketd/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Mar 24 06:39:41 2018 (r465428) +++ head/www/Makefile Sat Mar 24 06:43:29 2018 (r465429) @@ -2453,6 +2453,7 @@ SUBDIR += webreport SUBDIR += webresolve SUBDIR += websh + SUBDIR += websocketd SUBDIR += webstats SUBDIR += webstone SUBDIR += webstone-ssl Added: head/www/websocketd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/websocketd/Makefile Sat Mar 24 06:43:29 2018 (r465429) @@ -0,0 +1,26 @@ +# Created by: Guangyuan Yang +# $FreeBSD$ + +PORTNAME= websocketd +DISTVERSION= 0.3.0 +CATEGORIES= www +MASTER_SITES= https://github.com/joewalnes/${PORTNAME}/releases/download/v${DISTVERSION}/ +DISTNAME= ${PORTNAME}-${DISTVERSION}-freebsd_${ARCH:S/i386/386/:S/x86_64/amd64/} + +MAINTAINER= ygy@FreeBSD.org +COMMENT= Access any command-line tool via a WebSocket + +LICENSE= BSD2CLAUSE + +ONLY_FOR_ARCHS= amd64 i386 + +NO_WRKSUBDIR= yes +PLIST_FILES= bin/${PORTNAME} + +NO_BUILD= yes +USES= zip + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include Added: head/www/websocketd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/websocketd/distinfo Sat Mar 24 06:43:29 2018 (r465429) @@ -0,0 +1,5 @@ +TIMESTAMP = 1521782495 +SHA256 (websocketd-0.3.0-freebsd_amd64.zip) = 89e3c0b007a643c870c6b59eecb611cb0757780fcabe402bbb6cbb190ab478be +SIZE (websocketd-0.3.0-freebsd_amd64.zip) = 2555193 +SHA256 (websocketd-0.3.0-freebsd_386.zip) = b5de6e70273ba0be28b9ee3c76491f6502045def69c8acdf0db5142502439f1e +SIZE (websocketd-0.3.0-freebsd_386.zip) = 2404543 Added: head/www/websocketd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/websocketd/pkg-descr Sat Mar 24 06:43:29 2018 (r465429) @@ -0,0 +1,8 @@ +websocketd is a small command-line tool that will wrap an existing command-line +interface program, and allow it to be accessed via a WebSocket. + +WebSocket-capable applications can now be built very easily in any language. As +long as you can write an executable program that reads `STDIN` and writes to +`STDOUT`, you can build a WebSocket server. + +WWW: http://websocketd.com/