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/
This commit is contained in:
Dmitry Sivachenko 2016-07-25 18:04:07 +00:00
parent aa86468e19
commit 053a9a7cca
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=419053
4 changed files with 40 additions and 0 deletions

View file

@ -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

View file

@ -0,0 +1,30 @@
# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
# $FreeBSD$
PORTNAME= python-telegram-bot
PORTVERSION= 5.0.0
CATEGORIES= net-im devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= demon@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>

View file

@ -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

View file

@ -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/