Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Oct 2014 17:11:05 +0000 (UTC)
From:      Ruslan Makhmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r370096 - in head/net-im: . py-nbxmpp
Message-ID:  <201410051711.s95HB5gt098141@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rm
Date: Sun Oct  5 17:11:04 2014
New Revision: 370096
URL: https://svnweb.freebsd.org/changeset/ports/370096
QAT: https://qat.redports.org/buildarchive/r370096/

Log:
  The goal of this python library is to provide a way for python applications
  to use Jabber/XMPP networks in a non-blocking way. This library is initialy a
  fork of xmpppy one, but using non-blocking sockets.
  
  WWW: https://python-nbxmpp.gajim.org/

Added:
  head/net-im/py-nbxmpp/
  head/net-im/py-nbxmpp/Makefile   (contents, props changed)
  head/net-im/py-nbxmpp/distinfo   (contents, props changed)
  head/net-im/py-nbxmpp/pkg-descr   (contents, props changed)
Modified:
  head/net-im/Makefile

Modified: head/net-im/Makefile
==============================================================================
--- head/net-im/Makefile	Sun Oct  5 16:12:04 2014	(r370095)
+++ head/net-im/Makefile	Sun Oct  5 17:11:04 2014	(r370096)
@@ -118,6 +118,7 @@
     SUBDIR += py-jabber
     SUBDIR += py-jabberbot
     SUBDIR += py-libturpial
+    SUBDIR += py-nbxmpp
     SUBDIR += py-punjab
     SUBDIR += py-pyxmpp
     SUBDIR += py-skype4py

Added: head/net-im/py-nbxmpp/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-im/py-nbxmpp/Makefile	Sun Oct  5 17:11:04 2014	(r370096)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	nbxmpp
+PORTVERSION=	0.5.1
+CATEGORIES=	net-im devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	rm@FreeBSD.org
+COMMENT=	Non blocking Jabber/XMPP module
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}openssl>0:${PORTSDIR}/security/py-openssl \
+		${PYTHON_PKGNAMEPREFIX}zope.interface>0:${PORTSDIR}/devel/py-zope.interface
+
+USES=		python twisted:run
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/net-im/py-nbxmpp/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-im/py-nbxmpp/distinfo	Sun Oct  5 17:11:04 2014	(r370096)
@@ -0,0 +1,2 @@
+SHA256 (nbxmpp-0.5.1.tar.gz) = fa312db1e912434b60545e6ccd64edb54d00f8afcc04e84d9ffa16e8cbf17ba5
+SIZE (nbxmpp-0.5.1.tar.gz) = 1514900

Added: head/net-im/py-nbxmpp/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-im/py-nbxmpp/pkg-descr	Sun Oct  5 17:11:04 2014	(r370096)
@@ -0,0 +1,5 @@
+The goal of this python library is to provide a way for python applications
+to use Jabber/XMPP networks in a non-blocking way. This library is initialy a
+fork of xmpppy one, but using non-blocking sockets.
+
+WWW: https://python-nbxmpp.gajim.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410051711.s95HB5gt098141>