From owner-svn-ports-head@freebsd.org Mon Jul 25 18:04:08 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE317B9C4F6; Mon, 25 Jul 2016 18:04:08 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 923371173; Mon, 25 Jul 2016 18:04:08 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6PI47t4025702; Mon, 25 Jul 2016 18:04:07 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6PI47x3025698; Mon, 25 Jul 2016 18:04:07 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201607251804.u6PI47x3025698@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Mon, 25 Jul 2016 18:04:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419053 - in head/net-im: . py-python-telegram-bot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jul 2016 18:04:08 -0000 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 +# $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 + +.if ${PYTHON_REL} < 3400 +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi +.endif + +.include 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/