From owner-svn-ports-all@freebsd.org Fri Dec 28 15:04:30 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 ED559143B4AA; Fri, 28 Dec 2018 15:04:29 +0000 (UTC) (envelope-from 0mp@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 3E2848E134; Fri, 28 Dec 2018 15:04:29 +0000 (UTC) (envelope-from 0mp@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 26DDD248B7; Fri, 28 Dec 2018 15:04:29 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBSF4SA1006848; Fri, 28 Dec 2018 15:04:28 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBSF4SL3006844; Fri, 28 Dec 2018 15:04:28 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <201812281504.wBSF4SL3006844@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Fri, 28 Dec 2018 15:04:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r488606 - in head/net-im: . py-slixmpp X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: in head/net-im: . py-slixmpp X-SVN-Commit-Revision: 488606 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3E2848E134 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Fri, 28 Dec 2018 15:04:30 -0000 Author: 0mp Date: Fri Dec 28 15:04:28 2018 New Revision: 488606 URL: https://svnweb.freebsd.org/changeset/ports/488606 Log: New port: net-im/py-slimxmpp: Threadless Poezio-oriented fork of SleekXMPP using asyncio Slixmpp is an MIT licensed XMPP library for Python 3.5+. It is a fork of SleekXMPP. Slixmpp's goals is to only rewrite the core of the library (the low level socket handling, the timers, the events dispatching) in order to remove all threads. WWW: https://git.poez.io/slixmpp/ Reviewed by: mat Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D18668 Added: head/net-im/py-slixmpp/ head/net-im/py-slixmpp/Makefile (contents, props changed) head/net-im/py-slixmpp/distinfo (contents, props changed) head/net-im/py-slixmpp/pkg-descr (contents, props changed) Modified: head/net-im/Makefile Modified: head/net-im/Makefile ============================================================================== --- head/net-im/Makefile Fri Dec 28 14:58:25 2018 (r488605) +++ head/net-im/Makefile Fri Dec 28 15:04:28 2018 (r488606) @@ -154,6 +154,7 @@ SUBDIR += py-skype4py SUBDIR += py-slackclient SUBDIR += py-sleekxmpp + SUBDIR += py-slixmpp SUBDIR += py-telepot SUBDIR += py-toxcore-c SUBDIR += py-unmessage Added: head/net-im/py-slixmpp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/py-slixmpp/Makefile Fri Dec 28 15:04:28 2018 (r488606) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= slixmpp +DISTVERSION= 1.4.1 +CATEGORIES= net-im python +MASTER_SITES= https://git.poez.io/slixmpp/snapshot/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= slix-${DISTVERSION} + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Threadless Poezio-oriented fork of SleekXMPP using asyncio + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${LOCALBASE}/lib/libidn.so:dns/libidn +TEST_DEPENDS= gpg:security/gnupg + +USES= python:3.5+ +USE_PYTHON= distutils autoplist cython + +NO_ARCH= yes + +do-test: + cd ${WRKSRC} && ${PYTHON_CMD} run_tests.py + +.include Added: head/net-im/py-slixmpp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/py-slixmpp/distinfo Fri Dec 28 15:04:28 2018 (r488606) @@ -0,0 +1,3 @@ +TIMESTAMP = 1545919194 +SHA256 (slix-1.4.1.tar.gz) = 2ae5755c9d593d5e2e31985dffe4829670d947273f78a7a34ec263617eece0d6 +SIZE (slix-1.4.1.tar.gz) = 1009754 Added: head/net-im/py-slixmpp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/py-slixmpp/pkg-descr Fri Dec 28 15:04:28 2018 (r488606) @@ -0,0 +1,8 @@ +Slixmpp is an MIT licensed XMPP library for Python 3.5+. It is a fork of +SleekXMPP. + +Slixmpp's goals is to only rewrite the core of the library (the low level +socket handling, the timers, the events dispatching) in order to remove all +threads. + +WWW: https://git.poez.io/slixmpp/