Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Dec 2015 12:58:13 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r404565 - in head/irc: . py-limnoria
Message-ID:  <201512271258.tBRCwDV9046106@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Sun Dec 27 12:58:13 2015
New Revision: 404565
URL: https://svnweb.freebsd.org/changeset/ports/404565

Log:
  [NEW] irc/py-limnoria: Modified version of Supybot (an IRC bot and framework)
  
  A robust, full-featured Python IRC bot with a clean and flexible plugin API.
  
  Equipped with a complete ACL system for specifying user permissions with as
  much as per-command granularity. Batteries are included in the form of
  numerous plugins already written.
  
  WWW: https://github.com/ProgVal/Limnoria
  
  Requested by: Brenden Molloy (via IRC)

Added:
  head/irc/py-limnoria/
  head/irc/py-limnoria/Makefile   (contents, props changed)
  head/irc/py-limnoria/distinfo   (contents, props changed)
  head/irc/py-limnoria/pkg-descr   (contents, props changed)
Modified:
  head/irc/Makefile

Modified: head/irc/Makefile
==============================================================================
--- head/irc/Makefile	Sun Dec 27 12:53:32 2015	(r404564)
+++ head/irc/Makefile	Sun Dec 27 12:58:13 2015	(r404565)
@@ -97,6 +97,7 @@
     SUBDIR += py-fishcrypt
     SUBDIR += py-gozerbot
     SUBDIR += py-irc
+    SUBDIR += py-limnoria
     SUBDIR += py-supybot
     SUBDIR += py-supybot-plugins
     SUBDIR += quassel

Added: head/irc/py-limnoria/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/py-limnoria/Makefile	Sun Dec 27 12:58:13 2015	(r404565)
@@ -0,0 +1,35 @@
+# Created by: Kubilay Kocak <koobs@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	limnoria
+PORTVERSION=	2015.12.12
+CATEGORIES=	irc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs@FreeBSD.org
+COMMENT=	Modified version of Supybot (an IRC bot and framework)
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}chardet>=0:${PORTSDIR}/textproc/py-chardet \
+		${PYTHON_PKGNAMEPREFIX}pytz>=0:${PORTSDIR}/devel/py-pytz \
+		${PYTHON_PKGNAMEPREFIX}dateutil>=0:${PORTSDIR}/devel/py-dateutil \
+		${PYTHON_PKGNAMEPREFIX}python-gnupg>=0:${PORTSDIR}/security/py-python-gnupg \
+		${PYTHON_PKGNAMEPREFIX}feedparser>=0:${PORTSDIR}/textproc/py-feedparser \
+		${PYTHON_PKGNAMEPREFIX}sqlalchemy>=0:${PORTSDIR}/databases/py-sqlalchemy \
+		${PYTHON_PKGNAMEPREFIX}pysocks>=0:${PORTSDIR}/net/py-pysocks \
+		${PYTHON_PKGNAMEPREFIX}ecdsa>0:${PORTSDIR}/security/py-ecdsa
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+# Needs to be installed first to work.
+
+do-test:
+	@cd ${WRKSRC} && ${LOCALBASE}/bin/supybot-test \
+		--no-network \
+		--plugins-dir="./build/lib*/supybot/plugins/" \
+		--disable-multiprocessing
+
+.include <bsd.port.mk>

Added: head/irc/py-limnoria/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/py-limnoria/distinfo	Sun Dec 27 12:58:13 2015	(r404565)
@@ -0,0 +1,2 @@
+SHA256 (limnoria-2015.12.12.tar.gz) = 98ae63dd0b1be56ebe687a48d34d0dfe7b7173e7555f8d4efeaa924024cf9ce8
+SIZE (limnoria-2015.12.12.tar.gz) = 863846

Added: head/irc/py-limnoria/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/py-limnoria/pkg-descr	Sun Dec 27 12:58:13 2015	(r404565)
@@ -0,0 +1,7 @@
+A robust, full-featured Python IRC bot with a clean and flexible plugin API.
+
+Equipped with a complete ACL system for specifying user permissions with as
+much as per-command granularity. Batteries are included in the form of
+numerous plugins already written.
+
+WWW: https://github.com/ProgVal/Limnoria



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