Date: Thu, 22 Oct 2020 17:54:32 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r553029 - in head/net: . py-errbot py-errbot/files Message-ID: <202010221754.09MHsWk3060280@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Thu Oct 22 17:54:32 2020 New Revision: 553029 URL: https://svnweb.freebsd.org/changeset/ports/553029 Log: Add py-errbot 6.1.5 Errbot is a chatbot. It allows you to start scripts interactively from your chatrooms for any reason: random humour, chatops, starting a build, monitoring commits, triggering alerts... WWW: https://github.com/errbotio/errbot Added: head/net/py-errbot/ head/net/py-errbot/Makefile (contents, props changed) head/net/py-errbot/distinfo (contents, props changed) head/net/py-errbot/files/ head/net/py-errbot/files/patch-setup.py (contents, props changed) head/net/py-errbot/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Oct 22 17:54:26 2020 (r553028) +++ head/net/Makefile Thu Oct 22 17:54:32 2020 (r553029) @@ -1005,6 +1005,7 @@ SUBDIR += py-dpkt SUBDIR += py-dugong SUBDIR += py-ec2-cli-tools + SUBDIR += py-errbot SUBDIR += py-eventlet SUBDIR += py-flask-xml-rpc SUBDIR += py-gntp Added: head/net/py-errbot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-errbot/Makefile Thu Oct 22 17:54:32 2020 (r553029) @@ -0,0 +1,33 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= errbot +PORTVERSION= 6.1.5 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Chatbot designed to be simple to extend with plugins + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ansi>=0:devel/py-ansi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}colorlog>=0:devel/py-colorlog@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}deepmerge>=0.1.0:devel/py-deepmerge@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dulwich>=0.19.16:devel/dulwich@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Flask>=0:www/py-flask@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}markdown>=0<3.0:textproc/py-markdown@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pygments>=2.0.2:textproc/py-pygments@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}openssl>=0:security/py-openssl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}WebTest>=0:www/py-WebTest@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/net/py-errbot/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-errbot/distinfo Thu Oct 22 17:54:32 2020 (r553029) @@ -0,0 +1,3 @@ +TIMESTAMP = 1603378091 +SHA256 (errbot-6.1.5.tar.gz) = 2947fdca8226450fdc77738151fd5b29adbd019222e948e40f7040c43079262e +SIZE (errbot-6.1.5.tar.gz) = 211958 Added: head/net/py-errbot/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-errbot/files/patch-setup.py Thu Oct 22 17:54:32 2020 (r553029) @@ -0,0 +1,10 @@ +--- setup.py.orig 2020-10-10 16:25:15 UTC ++++ setup.py +@@ -36,7 +36,6 @@ deps = ['webtest', + 'markdown<3.0', # rendering stuff, 3.0+ deprecates 'safe()' + 'ansi', + 'Pygments>=2.0.2', +- 'pygments-markdown-lexer>=0.1.0.dev39', # sytax coloring to debug md + 'dulwich>=0.19.16', # python implementation of git + 'deepmerge>=0.1.0', + ] Added: head/net/py-errbot/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-errbot/pkg-descr Thu Oct 22 17:54:32 2020 (r553029) @@ -0,0 +1,5 @@ +Errbot is a chatbot. It allows you to start scripts interactively from your +chatrooms for any reason: random humour, chatops, starting a build, monitoring +commits, triggering alerts... + +WWW: https://github.com/errbotio/errbot
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010221754.09MHsWk3060280>