From owner-svn-ports-head@freebsd.org Mon Dec 10 21:09:40 2018 Return-Path: Delivered-To: svn-ports-head@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 E90C41333A88; Mon, 10 Dec 2018 21:09:39 +0000 (UTC) (envelope-from zeising@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 8C6C86EE07; Mon, 10 Dec 2018 21:09:39 +0000 (UTC) (envelope-from zeising@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 633CC25349; Mon, 10 Dec 2018 21:09:39 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBAL9dEo063893; Mon, 10 Dec 2018 21:09:39 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBAL9c7Q063889; Mon, 10 Dec 2018 21:09:38 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201812102109.wBAL9c7Q063889@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Mon, 10 Dec 2018 21:09:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487201 - in head/net: . bredbandskollen X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/net: . bredbandskollen X-SVN-Commit-Revision: 487201 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8C6C86EE07 X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Dec 2018 21:09:40 -0000 Author: zeising Date: Mon Dec 10 21:09:38 2018 New Revision: 487201 URL: https://svnweb.freebsd.org/changeset/ports/487201 Log: Add new port net/bredbandskollen Add a new port, net/bredbandskollen (broad band check in English). This is a tool to test and measure the speed of broad band connections. It is made available by the Internet Foundation In Sweden. This is the cli client tool, a similar check can be made from a web application. The optional GNUTLS option makes it possible to run measurments over SSL connections. WWW: https://github.com/dotse/bbk http://www.bredbandskollen.se/ Sponsored by: B3 Init Added: head/net/bredbandskollen/ head/net/bredbandskollen/Makefile (contents, props changed) head/net/bredbandskollen/distinfo (contents, props changed) head/net/bredbandskollen/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Dec 10 20:49:34 2018 (r487200) +++ head/net/Makefile Mon Dec 10 21:09:38 2018 (r487201) @@ -65,6 +65,7 @@ SUBDIR += bosh-bootloader SUBDIR += bosh-cli SUBDIR += bounce + SUBDIR += bredbandskollen SUBDIR += bsdec2-image-upload SUBDIR += bsdproxy SUBDIR += bsdrcmds Added: head/net/bredbandskollen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bredbandskollen/Makefile Mon Dec 10 21:09:38 2018 (r487201) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= bredbandskollen +PORTVERSION= 0.20181210 +CATEGORIES= net + +MAINTAINER= zeising@FreeBSD.org +COMMENT= Command line tool to check internet connection speed + +LICENSE= GPLv2 + +USES= gmake + +USE_GITHUB= yes +GH_ACCOUNT= dotse +GH_PROJECT= bbk +GH_TAGNAME= 39b47a1 + +BUILD_WRKSRC= ${WRKSRC}/src/cli + +PLIST_FILES= bin/bbk_cli \ + bin/bredbandskollen + +OPTIONS_DEFINE= GNUTLS + +GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls +GNUTLS_MAKE_ARGS= GNUTLS=1 + +do-install: + ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/cli ${STAGEDIR}/${PREFIX}/bin/bbk_cli + ${LN} -sf bbk_cli ${STAGEDIR}/${PREFIX}/bin/bredbandskollen + +.include Added: head/net/bredbandskollen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bredbandskollen/distinfo Mon Dec 10 21:09:38 2018 (r487201) @@ -0,0 +1,3 @@ +TIMESTAMP = 1544469797 +SHA256 (dotse-bbk-0.20181210-39b47a1_GH0.tar.gz) = 20e66a5acb806125dca45fc2563bea28b308f90873c85a4b109db6a067b91147 +SIZE (dotse-bbk-0.20181210-39b47a1_GH0.tar.gz) = 3636881 Added: head/net/bredbandskollen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/bredbandskollen/pkg-descr Mon Dec 10 21:09:38 2018 (r487201) @@ -0,0 +1,8 @@ +Bredbandskollen (broad band check in English) is a tool to test the speed of +internet connections. The tool is made available from the Internet Foundation +In Sweden. + +This is a command line tool that can be used instead of the web application. + +WWW: https://https://github.com/dotse/bbk + http://bredbandskollen.se