From owner-dev-commits-ports-main@freebsd.org Tue Jun 29 01:17:13 2021 Return-Path: Delivered-To: dev-commits-ports-main@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 6B3CF6404B1; Tue, 29 Jun 2021 01:17:13 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GDRQx2bL8z4vj7; Tue, 29 Jun 2021 01:17:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 374417E68; Tue, 29 Jun 2021 01:17:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15T1HD43075096; Tue, 29 Jun 2021 01:17:13 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15T1HDLx075095; Tue, 29 Jun 2021 01:17:13 GMT (envelope-from git) Date: Tue, 29 Jun 2021 01:17:13 GMT Message-Id: <202106290117.15T1HDLx075095@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yuri Victorovich Subject: git: 01e46eed8d2d - main - net-im/toxext: New port: Extension library for tox MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yuri X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 01e46eed8d2d9a00a9bce6216f03a49f184d6e6e Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jun 2021 01:17:13 -0000 The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=01e46eed8d2d9a00a9bce6216f03a49f184d6e6e commit 01e46eed8d2d9a00a9bce6216f03a49f184d6e6e Author: Yuri Victorovich AuthorDate: 2021-06-29 01:14:13 +0000 Commit: Yuri Victorovich CommitDate: 2021-06-29 01:17:10 +0000 net-im/toxext: New port: Extension library for tox --- net-im/Makefile | 1 + net-im/toxext/Makefile | 24 ++++++++++++++++++++++++ net-im/toxext/distinfo | 3 +++ net-im/toxext/pkg-descr | 10 ++++++++++ net-im/toxext/pkg-plist | 8 ++++++++ 5 files changed, 46 insertions(+) diff --git a/net-im/Makefile b/net-im/Makefile index fc5601fd1bb4..5b868c71941e 100644 --- a/net-im/Makefile +++ b/net-im/Makefile @@ -171,6 +171,7 @@ SUBDIR += toot SUBDIR += tox SUBDIR += toxbot + SUBDIR += toxext SUBDIR += toxic SUBDIR += toxins SUBDIR += tut diff --git a/net-im/toxext/Makefile b/net-im/toxext/Makefile new file mode 100644 index 000000000000..071218b7e7b4 --- /dev/null +++ b/net-im/toxext/Makefile @@ -0,0 +1,24 @@ +PORTNAME= toxext +DISTVERSIONPREFIX= v +DISTVERSION= 0.0.2 +CATEGORIES= net-im net-p2p + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Extension library for tox + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libopus.so:audio/opus \ + libsodium.so:security/libsodium \ + libtoxcore.so:net-im/tox \ + libvpx.so:multimedia/libvpx + +USES= cmake localbase:ldflags pkgconfig +USE_GITHUB= yes + +CMAKE_ON= BUILD_SHARED_LIBS + +CFLAGS+= -fPIC # see https://github.com/toxext/toxext/issues/7 + +.include diff --git a/net-im/toxext/distinfo b/net-im/toxext/distinfo new file mode 100644 index 000000000000..3e1f3294627a --- /dev/null +++ b/net-im/toxext/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1624921343 +SHA256 (toxext-toxext-v0.0.2_GH0.tar.gz) = 047093eeed396ea9b4a3f0cd0a6bc4e0e09b339e2b03ba4b676e30888fe6acde +SIZE (toxext-toxext-v0.0.2_GH0.tar.gz) = 34178 diff --git a/net-im/toxext/pkg-descr b/net-im/toxext/pkg-descr new file mode 100644 index 000000000000..06c009f5734a --- /dev/null +++ b/net-im/toxext/pkg-descr @@ -0,0 +1,10 @@ +Tox provides a reasonable base set of features, but new features are slow to +implement, and may not be wanted by all clients. This is reasonable as any +protocol changes are API breaking and force clients to update to use them. Once +the features are in they are there forever meaning quality of the API and the +network layer have to be very strong. + +An extension library with negotiation allows more experimentation with less risk +resulting in more features for tox clients. + +WWW: https://github.com/toxext/toxext diff --git a/net-im/toxext/pkg-plist b/net-im/toxext/pkg-plist new file mode 100644 index 000000000000..ac62b07b8aa7 --- /dev/null +++ b/net-im/toxext/pkg-plist @@ -0,0 +1,8 @@ +include/toxext/mock_fixtures.h +include/toxext/mock_tox.h +include/toxext/toxext.h +include/toxext/toxext_util.h +lib/cmake/ToxExt/ToxExtConfig-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/ToxExt/ToxExtConfig.cmake +lib/libtoxext.so +lib/libtoxext_mock.so