From owner-svn-ports-all@freebsd.org Sun Aug 18 10:50:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 333F7C3AEA; Sun, 18 Aug 2019 10:50:15 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46BDNR0ZPnz4PrW; Sun, 18 Aug 2019 10:50:15 +0000 (UTC) (envelope-from pi@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 E9822CC4; Sun, 18 Aug 2019 10:50:14 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7IAoERj076223; Sun, 18 Aug 2019 10:50:14 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7IAoEjE076217; Sun, 18 Aug 2019 10:50:14 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201908181050.x7IAoEjE076217@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 18 Aug 2019 10:50:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509200 - in head/net: . tsctp X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/net: . tsctp X-SVN-Commit-Revision: 509200 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.29 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, 18 Aug 2019 10:50:15 -0000 Author: pi Date: Sun Aug 18 10:50:13 2019 New Revision: 509200 URL: https://svnweb.freebsd.org/changeset/ports/509200 Log: New port: net/tsctp TSCTP is an SCTP test tool. Its purpose is to perform basic SCTP functionality tests to check implementations interoperability and to verify that the SCTP stack is working. WWW: https://www.uni-due.de/~be0001/tsctp/ PR: 239846 Submitted by: dreibh@iem.uni-due.de Added: head/net/tsctp/ head/net/tsctp/Makefile (contents, props changed) head/net/tsctp/distinfo (contents, props changed) head/net/tsctp/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Aug 18 10:42:52 2019 (r509199) +++ head/net/Makefile Sun Aug 18 10:50:13 2019 (r509200) @@ -1460,6 +1460,7 @@ SUBDIR += tramp SUBDIR += trickle SUBDIR += tsclient + SUBDIR += tsctp SUBDIR += tshark SUBDIR += tshark-lite SUBDIR += tsocks Added: head/net/tsctp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tsctp/Makefile Sun Aug 18 10:50:13 2019 (r509200) @@ -0,0 +1,20 @@ +# Created by: Thomas Dreibholz +# $FreeBSD$ + +PORTNAME= tsctp +PORTVERSION= 0.7.3 +CATEGORIES= net +MASTER_SITES= https://www.uni-due.de/~be0001/tsctp/download/ + +MAINTAINER= dreibh@iem.uni-due.de +COMMENT= SCTP Test Tool + +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= tar:xz cmake + +PLIST_FILES= bin/tsctp man/man1/tsctp.1.gz +CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR=${PREFIX}/man + +.include Added: head/net/tsctp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tsctp/distinfo Sun Aug 18 10:50:13 2019 (r509200) @@ -0,0 +1,3 @@ +TIMESTAMP = 1565194937 +SHA256 (tsctp-0.7.3.tar.xz) = 2084beb0f6fb8ae166b0044751f3b9b7feda5a87bd9446d5657560d2c72e6160 +SIZE (tsctp-0.7.3.tar.xz) = 49536 Added: head/net/tsctp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tsctp/pkg-descr Sun Aug 18 10:50:13 2019 (r509200) @@ -0,0 +1,5 @@ +TSCTP is an SCTP test tool. Its purpose is to perform basic SCTP +functionality tests to check implementations interoperability and +to verify that the SCTP stack is working. + +WWW: https://www.uni-due.de/~be0001/tsctp/