From owner-svn-ports-all@freebsd.org Wed Mar 25 18:06:00 2020 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 8FC502A7768; Wed, 25 Mar 2020 18:06:00 +0000 (UTC) (envelope-from db@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 48nbdh0HLwz49DY; Wed, 25 Mar 2020 18:06:00 +0000 (UTC) (envelope-from db@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 018651F079; Wed, 25 Mar 2020 17:58:44 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02PHwiOS057578; Wed, 25 Mar 2020 17:58:44 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02PHwhHk057573; Wed, 25 Mar 2020 17:58:43 GMT (envelope-from db@FreeBSD.org) Message-Id: <202003251758.02PHwhHk057573@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Wed, 25 Mar 2020 17:58:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529112 - in head/net: . libarcus X-SVN-Group: ports-head X-SVN-Commit-Author: db X-SVN-Commit-Paths: in head/net: . libarcus X-SVN-Commit-Revision: 529112 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: Wed, 25 Mar 2020 18:06:01 -0000 Author: db Date: Wed Mar 25 17:58:43 2020 New Revision: 529112 URL: https://svnweb.freebsd.org/changeset/ports/529112 Log: libArcus This library contains C++ code and Python3 bindings for creating a socket in a thread and using this socket to send and receive messages based on the Protocol Buffers library. It is designed to facilitate the communication between Cura and its backend and similar code. WWW: https://github.com/Ultimaker/libArcus Added: head/net/libarcus/ head/net/libarcus/Makefile (contents, props changed) head/net/libarcus/distinfo (contents, props changed) head/net/libarcus/pkg-descr (contents, props changed) head/net/libarcus/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Mar 25 17:33:26 2020 (r529111) +++ head/net/Makefile Wed Mar 25 17:58:43 2020 (r529112) @@ -345,6 +345,7 @@ SUBDIR += ldapsh SUBDIR += leproxy SUBDIR += lft + SUBDIR += libarcus SUBDIR += libarms SUBDIR += libbgpdump SUBDIR += libcapn Added: head/net/libarcus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libarcus/Makefile Wed Mar 25 17:58:43 2020 (r529112) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= libArcus +PORTVERSION= 15.06.03 +CATEGORIES= net cad +DIST_SUBDIR= Ultimaker + +MAINTAINER= db@FreeBSD.org +COMMENT= Communication library between internal components for Ultimaker + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= sip:devel/py-sip@${PY_FLAVOR} +LIB_DEPENDS= libprotobuf.so:devel/protobuf + +USES= cmake python:3.4+ +USE_GITHUB= yes +GH_ACCOUNT= Ultimaker +USE_LDCONFIG= yes +GH_TAGNAME= d0f1ac1 + +.include Added: head/net/libarcus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libarcus/distinfo Wed Mar 25 17:58:43 2020 (r529112) @@ -0,0 +1,3 @@ +TIMESTAMP = 1583929164 +SHA256 (Ultimaker/Ultimaker-libArcus-15.06.03-d0f1ac1_GH0.tar.gz) = b51148ca15e0aa158c97b480b27d2321da5d732a36ae0f2b7a10366ecf6e183b +SIZE (Ultimaker/Ultimaker-libArcus-15.06.03-d0f1ac1_GH0.tar.gz) = 31955 Added: head/net/libarcus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libarcus/pkg-descr Wed Mar 25 17:58:43 2020 (r529112) @@ -0,0 +1,8 @@ +Arcus + +This library contains C++ code and Python3 bindings for creating a socket +in a thread and using this socket to send and receive messages based on +the Protocol Buffers library. It is designed to facilitate the communication +between Cura and its backend and similar code. + +WWW: https://github.com/Ultimaker/libArcus Added: head/net/libarcus/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libarcus/pkg-plist Wed Mar 25 17:58:43 2020 (r529112) @@ -0,0 +1,14 @@ +include/Arcus/ArcusExport.h +include/Arcus/Error.h +include/Arcus/MessageTypeStore.h +include/Arcus/Socket.h +include/Arcus/SocketListener.h +include/Arcus/Types.h +lib/cmake/Arcus/Arcus-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Arcus/Arcus-targets.cmake +lib/cmake/Arcus/ArcusConfig.cmake +lib/cmake/Arcus/ArcusConfigVersion.cmake +lib/libArcus.so +lib/libArcus.so.1.1.0 +lib/libArcus.so.3 +%%PYTHON_SITELIBDIR%%/Arcus.so