svn commit: r419053 - in head/net-im: . py-python-telegram-bot
Dmitry Sivachenko
demon at FreeBSD.org
Mon Jul 25 18:04:08 UTC 2016
Author: demon
Date: Mon Jul 25 18:04:07 2016
New Revision: 419053
URL: https://svnweb.freebsd.org/changeset/ports/419053
Log:
New port: python-telegram-bot.
This library provides a pure Python interface for the Telegram Bot API.
In addition to the pure API implementation, this library features a number of
high-level classes to make the development of bots easy and straightforward.
These classes are contained in the telegram.ext submodule.
WWW: https://python-telegram-bot.org/
Added:
head/net-im/py-python-telegram-bot/
head/net-im/py-python-telegram-bot/Makefile (contents, props changed)
head/net-im/py-python-telegram-bot/distinfo (contents, props changed)
head/net-im/py-python-telegram-bot/pkg-descr (contents, props changed)
Modified:
head/net-im/Makefile
Modified: head/net-im/Makefile
==============================================================================
--- head/net-im/Makefile Mon Jul 25 18:03:59 2016 (r419052)
+++ head/net-im/Makefile Mon Jul 25 18:04:07 2016 (r419053)
@@ -131,6 +131,7 @@
SUBDIR += py-libturpial
SUBDIR += py-nbxmpp
SUBDIR += py-punjab
+ SUBDIR += py-python-telegram-bot
SUBDIR += py-pyxmpp
SUBDIR += py-skype4py
SUBDIR += py-slackclient
Added: head/net-im/py-python-telegram-bot/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net-im/py-python-telegram-bot/Makefile Mon Jul 25 18:04:07 2016 (r419053)
@@ -0,0 +1,30 @@
+# Created by: Dmitry Sivachenko <demon at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= python-telegram-bot
+PORTVERSION= 5.0.0
+CATEGORIES= net-im devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= demon at FreeBSD.org
+COMMENT= Not just a Python wrapper around the Telegram Bot API
+
+LICENSE= LGPL3
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future \
+ ${PYTHON_PKGNAMEPREFIX}urllib3>0:net/py-urllib3
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future \
+ ${PYTHON_PKGNAMEPREFIX}urllib3>0:net/py-urllib3
+
+USES= python
+USE_PYTHON= distutils autoplist
+
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} < 3400
+BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi
+RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi
+.endif
+
+.include <bsd.port.post.mk>
Added: head/net-im/py-python-telegram-bot/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net-im/py-python-telegram-bot/distinfo Mon Jul 25 18:04:07 2016 (r419053)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1469462136
+SHA256 (python-telegram-bot-5.0.0.tar.gz) = 68f86beb03bbf8fd88f6c395a1a32e7bd199e0e07d6c67cd8f4fb6ee1b1cb6ab
+SIZE (python-telegram-bot-5.0.0.tar.gz) = 73003
Added: head/net-im/py-python-telegram-bot/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net-im/py-python-telegram-bot/pkg-descr Mon Jul 25 18:04:07 2016 (r419053)
@@ -0,0 +1,6 @@
+This library provides a pure Python interface for the Telegram Bot API.
+In addition to the pure API implementation, this library features a number of
+high-level classes to make the development of bots easy and straightforward.
+These classes are contained in the telegram.ext submodule.
+
+WWW: https://python-telegram-bot.org/
More information about the svn-ports-all
mailing list