Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id A48EC1A921F for ; Wed, 18 Nov 2020 23:13:27 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E2899850D9; Wed, 18 Nov 2020 23:13:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DAEBC84DFC for ; Wed, 18 Nov 2020 23:11:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id cqLDLrWfP-5J for ; Wed, 18 Nov 2020 23:11:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 63CA184D22 for ; Wed, 18 Nov 2020 23:11:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5D7F1FA9D; Wed, 18 Nov 2020 23:11:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160574111747400" MIME-Version: 1.0 Date: Wed, 18 Nov 2020 23:11:57 +0000 From: "Jonathan Schleifer" Subject: CVS commit: pkgsrc/chat To: pkgsrc-changes@NetBSD.org Reply-To: js@netbsd.org X-Mailer: log_accum Message-Id: <20201118231157.5D7F1FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160574111747400 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: js Date: Wed Nov 18 23:11:57 UTC 2020 Modified Files: pkgsrc/chat: Makefile Added Files: pkgsrc/chat/py-telethon: DESCR Makefile PLIST distinfo Log Message: Add chat/py-telethon Telegram is a popular messaging application. This library is meant to make it easy for you to write Python programs that can interact with Telegram. Think of it as a wrapper that has already done the heavy job for you, so you can focus on developing an application. To generate a diff of this commit: cvs rdiff -u -r1.256 -r1.257 pkgsrc/chat/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/chat/py-telethon/DESCR \ pkgsrc/chat/py-telethon/Makefile pkgsrc/chat/py-telethon/PLIST \ pkgsrc/chat/py-telethon/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160574111747400 Content-Disposition: inline Content-Length: 20828 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/Makefile diff -u pkgsrc/chat/Makefile:1.256 pkgsrc/chat/Makefile:1.257 --- pkgsrc/chat/Makefile:1.256 Thu Oct 8 02:54:54 2020 +++ pkgsrc/chat/Makefile Wed Nov 18 23:11:57 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.256 2020/10/08 02:54:54 jnemeth Exp $ +# $NetBSD: Makefile,v 1.257 2020/11/18 23:11:57 js Exp $ # COMMENT= Communication programs @@ -108,6 +108,7 @@ SUBDIR+= py-hangups SUBDIR+= py-mastodon SUBDIR+= py-mautrix SUBDIR+= py-nbxmpp +SUBDIR+= py-telethon SUBDIR+= py-xmpppy SUBDIR+= quassel SUBDIR+= quirc Added files: Index: pkgsrc/chat/py-telethon/DESCR diff -u /dev/null pkgsrc/chat/py-telethon/DESCR:1.1 --- /dev/null Wed Nov 18 23:11:57 2020 +++ pkgsrc/chat/py-telethon/DESCR Wed Nov 18 23:11:57 2020 @@ -0,0 +1,4 @@ +Telegram is a popular messaging application. This library is meant to make it +easy for you to write Python programs that can interact with Telegram. Think of +it as a wrapper that has already done the heavy job for you, so you can focus +on developing an application. Index: pkgsrc/chat/py-telethon/Makefile diff -u /dev/null pkgsrc/chat/py-telethon/Makefile:1.1 --- /dev/null Wed Nov 18 23:11:57 2020 +++ pkgsrc/chat/py-telethon/Makefile Wed Nov 18 23:11:57 2020 @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2020/11/18 23:11:57 js Exp $ + +DISTNAME= Telethon-1.17.5 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} +CATEGORIES= chat python +MASTER_SITES= ${MASTER_SITE_PYPI:=T/Telethon/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/LonamiWebs/Telethon +COMMENT= Full-featured Telegram client library for Python 3 +LICENSE= mit + +DEPENDS+= ${PYPKGPREFIX}-aes-[0-9]*:../../security/py-aes +DEPENDS+= ${PYPKGPREFIX}-rsa-[0-9]*:../../security/py-rsa + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/chat/py-telethon/PLIST diff -u /dev/null pkgsrc/chat/py-telethon/PLIST:1.1 --- /dev/null Wed Nov 18 23:11:57 2020 +++ pkgsrc/chat/py-telethon/PLIST Wed Nov 18 23:11:57 2020 @@ -0,0 +1,402 @@ +@comment $NetBSD: PLIST,v 1.1 2020/11/18 23:11:57 js Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/telethon/__init__.py +${PYSITELIB}/telethon/__init__.pyc +${PYSITELIB}/telethon/__init__.pyo +${PYSITELIB}/telethon/client/__init__.py +${PYSITELIB}/telethon/client/__init__.pyc +${PYSITELIB}/telethon/client/__init__.pyo +${PYSITELIB}/telethon/client/account.py +${PYSITELIB}/telethon/client/account.pyc +${PYSITELIB}/telethon/client/account.pyo +${PYSITELIB}/telethon/client/auth.py +${PYSITELIB}/telethon/client/auth.pyc +${PYSITELIB}/telethon/client/auth.pyo +${PYSITELIB}/telethon/client/bots.py +${PYSITELIB}/telethon/client/bots.pyc +${PYSITELIB}/telethon/client/bots.pyo +${PYSITELIB}/telethon/client/buttons.py +${PYSITELIB}/telethon/client/buttons.pyc +${PYSITELIB}/telethon/client/buttons.pyo +${PYSITELIB}/telethon/client/chats.py +${PYSITELIB}/telethon/client/chats.pyc +${PYSITELIB}/telethon/client/chats.pyo +${PYSITELIB}/telethon/client/dialogs.py +${PYSITELIB}/telethon/client/dialogs.pyc +${PYSITELIB}/telethon/client/dialogs.pyo +${PYSITELIB}/telethon/client/downloads.py +${PYSITELIB}/telethon/client/downloads.pyc +${PYSITELIB}/telethon/client/downloads.pyo +${PYSITELIB}/telethon/client/messageparse.py +${PYSITELIB}/telethon/client/messageparse.pyc +${PYSITELIB}/telethon/client/messageparse.pyo +${PYSITELIB}/telethon/client/messages.py +${PYSITELIB}/telethon/client/messages.pyc +${PYSITELIB}/telethon/client/messages.pyo +${PYSITELIB}/telethon/client/telegrambaseclient.py +${PYSITELIB}/telethon/client/telegrambaseclient.pyc +${PYSITELIB}/telethon/client/telegrambaseclient.pyo +${PYSITELIB}/telethon/client/telegramclient.py +${PYSITELIB}/telethon/client/telegramclient.pyc +${PYSITELIB}/telethon/client/telegramclient.pyo +${PYSITELIB}/telethon/client/updates.py +${PYSITELIB}/telethon/client/updates.pyc +${PYSITELIB}/telethon/client/updates.pyo +${PYSITELIB}/telethon/client/uploads.py +${PYSITELIB}/telethon/client/uploads.pyc +${PYSITELIB}/telethon/client/uploads.pyo +${PYSITELIB}/telethon/client/users.py +${PYSITELIB}/telethon/client/users.pyc +${PYSITELIB}/telethon/client/users.pyo +${PYSITELIB}/telethon/crypto/__init__.py +${PYSITELIB}/telethon/crypto/__init__.pyc +${PYSITELIB}/telethon/crypto/__init__.pyo +${PYSITELIB}/telethon/crypto/aes.py +${PYSITELIB}/telethon/crypto/aes.pyc +${PYSITELIB}/telethon/crypto/aes.pyo +${PYSITELIB}/telethon/crypto/aesctr.py +${PYSITELIB}/telethon/crypto/aesctr.pyc +${PYSITELIB}/telethon/crypto/aesctr.pyo +${PYSITELIB}/telethon/crypto/authkey.py +${PYSITELIB}/telethon/crypto/authkey.pyc +${PYSITELIB}/telethon/crypto/authkey.pyo +${PYSITELIB}/telethon/crypto/cdndecrypter.py +${PYSITELIB}/telethon/crypto/cdndecrypter.pyc +${PYSITELIB}/telethon/crypto/cdndecrypter.pyo +${PYSITELIB}/telethon/crypto/factorization.py +${PYSITELIB}/telethon/crypto/factorization.pyc +${PYSITELIB}/telethon/crypto/factorization.pyo +${PYSITELIB}/telethon/crypto/libssl.py +${PYSITELIB}/telethon/crypto/libssl.pyc +${PYSITELIB}/telethon/crypto/libssl.pyo +${PYSITELIB}/telethon/crypto/rsa.py +${PYSITELIB}/telethon/crypto/rsa.pyc +${PYSITELIB}/telethon/crypto/rsa.pyo +${PYSITELIB}/telethon/entitycache.py +${PYSITELIB}/telethon/entitycache.pyc +${PYSITELIB}/telethon/entitycache.pyo +${PYSITELIB}/telethon/errors/__init__.py +${PYSITELIB}/telethon/errors/__init__.pyc +${PYSITELIB}/telethon/errors/__init__.pyo +${PYSITELIB}/telethon/errors/common.py +${PYSITELIB}/telethon/errors/common.pyc +${PYSITELIB}/telethon/errors/common.pyo +${PYSITELIB}/telethon/errors/rpcbaseerrors.py +${PYSITELIB}/telethon/errors/rpcbaseerrors.pyc +${PYSITELIB}/telethon/errors/rpcbaseerrors.pyo +${PYSITELIB}/telethon/errors/rpcerrorlist.py +${PYSITELIB}/telethon/errors/rpcerrorlist.pyc +${PYSITELIB}/telethon/errors/rpcerrorlist.pyo +${PYSITELIB}/telethon/events/__init__.py +${PYSITELIB}/telethon/events/__init__.pyc +${PYSITELIB}/telethon/events/__init__.pyo +${PYSITELIB}/telethon/events/album.py +${PYSITELIB}/telethon/events/album.pyc +${PYSITELIB}/telethon/events/album.pyo +${PYSITELIB}/telethon/events/callbackquery.py +${PYSITELIB}/telethon/events/callbackquery.pyc +${PYSITELIB}/telethon/events/callbackquery.pyo +${PYSITELIB}/telethon/events/chataction.py +${PYSITELIB}/telethon/events/chataction.pyc +${PYSITELIB}/telethon/events/chataction.pyo +${PYSITELIB}/telethon/events/common.py +${PYSITELIB}/telethon/events/common.pyc +${PYSITELIB}/telethon/events/common.pyo +${PYSITELIB}/telethon/events/inlinequery.py +${PYSITELIB}/telethon/events/inlinequery.pyc +${PYSITELIB}/telethon/events/inlinequery.pyo +${PYSITELIB}/telethon/events/messagedeleted.py +${PYSITELIB}/telethon/events/messagedeleted.pyc +${PYSITELIB}/telethon/events/messagedeleted.pyo +${PYSITELIB}/telethon/events/messageedited.py +${PYSITELIB}/telethon/events/messageedited.pyc +${PYSITELIB}/telethon/events/messageedited.pyo +${PYSITELIB}/telethon/events/messageread.py +${PYSITELIB}/telethon/events/messageread.pyc +${PYSITELIB}/telethon/events/messageread.pyo +${PYSITELIB}/telethon/events/newmessage.py +${PYSITELIB}/telethon/events/newmessage.pyc +${PYSITELIB}/telethon/events/newmessage.pyo +${PYSITELIB}/telethon/events/raw.py +${PYSITELIB}/telethon/events/raw.pyc +${PYSITELIB}/telethon/events/raw.pyo +${PYSITELIB}/telethon/events/userupdate.py +${PYSITELIB}/telethon/events/userupdate.pyc +${PYSITELIB}/telethon/events/userupdate.pyo +${PYSITELIB}/telethon/extensions/__init__.py +${PYSITELIB}/telethon/extensions/__init__.pyc +${PYSITELIB}/telethon/extensions/__init__.pyo +${PYSITELIB}/telethon/extensions/binaryreader.py +${PYSITELIB}/telethon/extensions/binaryreader.pyc +${PYSITELIB}/telethon/extensions/binaryreader.pyo +${PYSITELIB}/telethon/extensions/html.py +${PYSITELIB}/telethon/extensions/html.pyc +${PYSITELIB}/telethon/extensions/html.pyo +${PYSITELIB}/telethon/extensions/markdown.py +${PYSITELIB}/telethon/extensions/markdown.pyc +${PYSITELIB}/telethon/extensions/markdown.pyo +${PYSITELIB}/telethon/extensions/messagepacker.py +${PYSITELIB}/telethon/extensions/messagepacker.pyc +${PYSITELIB}/telethon/extensions/messagepacker.pyo +${PYSITELIB}/telethon/helpers.py +${PYSITELIB}/telethon/helpers.pyc +${PYSITELIB}/telethon/helpers.pyo +${PYSITELIB}/telethon/hints.py +${PYSITELIB}/telethon/hints.pyc +${PYSITELIB}/telethon/hints.pyo +${PYSITELIB}/telethon/network/__init__.py +${PYSITELIB}/telethon/network/__init__.pyc +${PYSITELIB}/telethon/network/__init__.pyo +${PYSITELIB}/telethon/network/authenticator.py +${PYSITELIB}/telethon/network/authenticator.pyc +${PYSITELIB}/telethon/network/authenticator.pyo +${PYSITELIB}/telethon/network/connection/__init__.py +${PYSITELIB}/telethon/network/connection/__init__.pyc +${PYSITELIB}/telethon/network/connection/__init__.pyo +${PYSITELIB}/telethon/network/connection/connection.py +${PYSITELIB}/telethon/network/connection/connection.pyc +${PYSITELIB}/telethon/network/connection/connection.pyo +${PYSITELIB}/telethon/network/connection/http.py +${PYSITELIB}/telethon/network/connection/http.pyc +${PYSITELIB}/telethon/network/connection/http.pyo +${PYSITELIB}/telethon/network/connection/tcpabridged.py +${PYSITELIB}/telethon/network/connection/tcpabridged.pyc +${PYSITELIB}/telethon/network/connection/tcpabridged.pyo +${PYSITELIB}/telethon/network/connection/tcpfull.py +${PYSITELIB}/telethon/network/connection/tcpfull.pyc +${PYSITELIB}/telethon/network/connection/tcpfull.pyo +${PYSITELIB}/telethon/network/connection/tcpintermediate.py +${PYSITELIB}/telethon/network/connection/tcpintermediate.pyc +${PYSITELIB}/telethon/network/connection/tcpintermediate.pyo +${PYSITELIB}/telethon/network/connection/tcpmtproxy.py +${PYSITELIB}/telethon/network/connection/tcpmtproxy.pyc +${PYSITELIB}/telethon/network/connection/tcpmtproxy.pyo +${PYSITELIB}/telethon/network/connection/tcpobfuscated.py +${PYSITELIB}/telethon/network/connection/tcpobfuscated.pyc +${PYSITELIB}/telethon/network/connection/tcpobfuscated.pyo +${PYSITELIB}/telethon/network/mtprotoplainsender.py +${PYSITELIB}/telethon/network/mtprotoplainsender.pyc +${PYSITELIB}/telethon/network/mtprotoplainsender.pyo +${PYSITELIB}/telethon/network/mtprotosender.py +${PYSITELIB}/telethon/network/mtprotosender.pyc +${PYSITELIB}/telethon/network/mtprotosender.pyo +${PYSITELIB}/telethon/network/mtprotostate.py +${PYSITELIB}/telethon/network/mtprotostate.pyc +${PYSITELIB}/telethon/network/mtprotostate.pyo +${PYSITELIB}/telethon/network/requeststate.py +${PYSITELIB}/telethon/network/requeststate.pyc +${PYSITELIB}/telethon/network/requeststate.pyo +${PYSITELIB}/telethon/password.py +${PYSITELIB}/telethon/password.pyc +${PYSITELIB}/telethon/password.pyo +${PYSITELIB}/telethon/requestiter.py +${PYSITELIB}/telethon/requestiter.pyc +${PYSITELIB}/telethon/requestiter.pyo +${PYSITELIB}/telethon/sessions/__init__.py +${PYSITELIB}/telethon/sessions/__init__.pyc +${PYSITELIB}/telethon/sessions/__init__.pyo +${PYSITELIB}/telethon/sessions/abstract.py +${PYSITELIB}/telethon/sessions/abstract.pyc +${PYSITELIB}/telethon/sessions/abstract.pyo +${PYSITELIB}/telethon/sessions/memory.py +${PYSITELIB}/telethon/sessions/memory.pyc +${PYSITELIB}/telethon/sessions/memory.pyo +${PYSITELIB}/telethon/sessions/sqlite.py +${PYSITELIB}/telethon/sessions/sqlite.pyc +${PYSITELIB}/telethon/sessions/sqlite.pyo +${PYSITELIB}/telethon/sessions/string.py +${PYSITELIB}/telethon/sessions/string.pyc +${PYSITELIB}/telethon/sessions/string.pyo +${PYSITELIB}/telethon/statecache.py +${PYSITELIB}/telethon/statecache.pyc +${PYSITELIB}/telethon/statecache.pyo +${PYSITELIB}/telethon/sync.py +${PYSITELIB}/telethon/sync.pyc +${PYSITELIB}/telethon/sync.pyo +${PYSITELIB}/telethon/tl/__init__.py +${PYSITELIB}/telethon/tl/__init__.pyc +${PYSITELIB}/telethon/tl/__init__.pyo +${PYSITELIB}/telethon/tl/alltlobjects.py +${PYSITELIB}/telethon/tl/alltlobjects.pyc +${PYSITELIB}/telethon/tl/alltlobjects.pyo +${PYSITELIB}/telethon/tl/core/__init__.py +${PYSITELIB}/telethon/tl/core/__init__.pyc +${PYSITELIB}/telethon/tl/core/__init__.pyo +${PYSITELIB}/telethon/tl/core/gzippacked.py +${PYSITELIB}/telethon/tl/core/gzippacked.pyc +${PYSITELIB}/telethon/tl/core/gzippacked.pyo +${PYSITELIB}/telethon/tl/core/messagecontainer.py +${PYSITELIB}/telethon/tl/core/messagecontainer.pyc +${PYSITELIB}/telethon/tl/core/messagecontainer.pyo +${PYSITELIB}/telethon/tl/core/rpcresult.py +${PYSITELIB}/telethon/tl/core/rpcresult.pyc +${PYSITELIB}/telethon/tl/core/rpcresult.pyo +${PYSITELIB}/telethon/tl/core/tlmessage.py +${PYSITELIB}/telethon/tl/core/tlmessage.pyc +${PYSITELIB}/telethon/tl/core/tlmessage.pyo +${PYSITELIB}/telethon/tl/custom/__init__.py +${PYSITELIB}/telethon/tl/custom/__init__.pyc +${PYSITELIB}/telethon/tl/custom/__init__.pyo +${PYSITELIB}/telethon/tl/custom/adminlogevent.py +${PYSITELIB}/telethon/tl/custom/adminlogevent.pyc +${PYSITELIB}/telethon/tl/custom/adminlogevent.pyo +${PYSITELIB}/telethon/tl/custom/button.py +${PYSITELIB}/telethon/tl/custom/button.pyc +${PYSITELIB}/telethon/tl/custom/button.pyo +${PYSITELIB}/telethon/tl/custom/chatgetter.py +${PYSITELIB}/telethon/tl/custom/chatgetter.pyc +${PYSITELIB}/telethon/tl/custom/chatgetter.pyo +${PYSITELIB}/telethon/tl/custom/conversation.py +${PYSITELIB}/telethon/tl/custom/conversation.pyc +${PYSITELIB}/telethon/tl/custom/conversation.pyo +${PYSITELIB}/telethon/tl/custom/dialog.py +${PYSITELIB}/telethon/tl/custom/dialog.pyc +${PYSITELIB}/telethon/tl/custom/dialog.pyo +${PYSITELIB}/telethon/tl/custom/draft.py +${PYSITELIB}/telethon/tl/custom/draft.pyc +${PYSITELIB}/telethon/tl/custom/draft.pyo +${PYSITELIB}/telethon/tl/custom/file.py +${PYSITELIB}/telethon/tl/custom/file.pyc +${PYSITELIB}/telethon/tl/custom/file.pyo +${PYSITELIB}/telethon/tl/custom/forward.py +${PYSITELIB}/telethon/tl/custom/forward.pyc +${PYSITELIB}/telethon/tl/custom/forward.pyo +${PYSITELIB}/telethon/tl/custom/inlinebuilder.py +${PYSITELIB}/telethon/tl/custom/inlinebuilder.pyc +${PYSITELIB}/telethon/tl/custom/inlinebuilder.pyo +${PYSITELIB}/telethon/tl/custom/inlineresult.py +${PYSITELIB}/telethon/tl/custom/inlineresult.pyc +${PYSITELIB}/telethon/tl/custom/inlineresult.pyo +${PYSITELIB}/telethon/tl/custom/inlineresults.py +${PYSITELIB}/telethon/tl/custom/inlineresults.pyc +${PYSITELIB}/telethon/tl/custom/inlineresults.pyo +${PYSITELIB}/telethon/tl/custom/inputsizedfile.py +${PYSITELIB}/telethon/tl/custom/inputsizedfile.pyc +${PYSITELIB}/telethon/tl/custom/inputsizedfile.pyo +${PYSITELIB}/telethon/tl/custom/message.py +${PYSITELIB}/telethon/tl/custom/message.pyc +${PYSITELIB}/telethon/tl/custom/message.pyo +${PYSITELIB}/telethon/tl/custom/messagebutton.py +${PYSITELIB}/telethon/tl/custom/messagebutton.pyc +${PYSITELIB}/telethon/tl/custom/messagebutton.pyo +${PYSITELIB}/telethon/tl/custom/participantpermissions.py +${PYSITELIB}/telethon/tl/custom/participantpermissions.pyc +${PYSITELIB}/telethon/tl/custom/participantpermissions.pyo +${PYSITELIB}/telethon/tl/custom/qrlogin.py +${PYSITELIB}/telethon/tl/custom/qrlogin.pyc +${PYSITELIB}/telethon/tl/custom/qrlogin.pyo +${PYSITELIB}/telethon/tl/custom/sendergetter.py +${PYSITELIB}/telethon/tl/custom/sendergetter.pyc +${PYSITELIB}/telethon/tl/custom/sendergetter.pyo +${PYSITELIB}/telethon/tl/functions/__init__.py +${PYSITELIB}/telethon/tl/functions/__init__.pyc +${PYSITELIB}/telethon/tl/functions/__init__.pyo +${PYSITELIB}/telethon/tl/functions/account.py +${PYSITELIB}/telethon/tl/functions/account.pyc +${PYSITELIB}/telethon/tl/functions/account.pyo +${PYSITELIB}/telethon/tl/functions/auth.py +${PYSITELIB}/telethon/tl/functions/auth.pyc +${PYSITELIB}/telethon/tl/functions/auth.pyo +${PYSITELIB}/telethon/tl/functions/bots.py +${PYSITELIB}/telethon/tl/functions/bots.pyc +${PYSITELIB}/telethon/tl/functions/bots.pyo +${PYSITELIB}/telethon/tl/functions/channels.py +${PYSITELIB}/telethon/tl/functions/channels.pyc +${PYSITELIB}/telethon/tl/functions/channels.pyo +${PYSITELIB}/telethon/tl/functions/contacts.py +${PYSITELIB}/telethon/tl/functions/contacts.pyc +${PYSITELIB}/telethon/tl/functions/contacts.pyo +${PYSITELIB}/telethon/tl/functions/folders.py +${PYSITELIB}/telethon/tl/functions/folders.pyc +${PYSITELIB}/telethon/tl/functions/folders.pyo +${PYSITELIB}/telethon/tl/functions/help.py +${PYSITELIB}/telethon/tl/functions/help.pyc +${PYSITELIB}/telethon/tl/functions/help.pyo +${PYSITELIB}/telethon/tl/functions/langpack.py +${PYSITELIB}/telethon/tl/functions/langpack.pyc +${PYSITELIB}/telethon/tl/functions/langpack.pyo +${PYSITELIB}/telethon/tl/functions/messages.py +${PYSITELIB}/telethon/tl/functions/messages.pyc +${PYSITELIB}/telethon/tl/functions/messages.pyo +${PYSITELIB}/telethon/tl/functions/payments.py +${PYSITELIB}/telethon/tl/functions/payments.pyc +${PYSITELIB}/telethon/tl/functions/payments.pyo +${PYSITELIB}/telethon/tl/functions/phone.py +${PYSITELIB}/telethon/tl/functions/phone.pyc +${PYSITELIB}/telethon/tl/functions/phone.pyo +${PYSITELIB}/telethon/tl/functions/photos.py +${PYSITELIB}/telethon/tl/functions/photos.pyc +${PYSITELIB}/telethon/tl/functions/photos.pyo +${PYSITELIB}/telethon/tl/functions/stats.py +${PYSITELIB}/telethon/tl/functions/stats.pyc +${PYSITELIB}/telethon/tl/functions/stats.pyo +${PYSITELIB}/telethon/tl/functions/stickers.py +${PYSITELIB}/telethon/tl/functions/stickers.pyc +${PYSITELIB}/telethon/tl/functions/stickers.pyo +${PYSITELIB}/telethon/tl/functions/updates.py +${PYSITELIB}/telethon/tl/functions/updates.pyc +${PYSITELIB}/telethon/tl/functions/updates.pyo +${PYSITELIB}/telethon/tl/functions/upload.py +${PYSITELIB}/telethon/tl/functions/upload.pyc +${PYSITELIB}/telethon/tl/functions/upload.pyo +${PYSITELIB}/telethon/tl/functions/users.py +${PYSITELIB}/telethon/tl/functions/users.pyc +${PYSITELIB}/telethon/tl/functions/users.pyo +${PYSITELIB}/telethon/tl/patched/__init__.py +${PYSITELIB}/telethon/tl/patched/__init__.pyc +${PYSITELIB}/telethon/tl/patched/__init__.pyo +${PYSITELIB}/telethon/tl/tlobject.py +${PYSITELIB}/telethon/tl/tlobject.pyc +${PYSITELIB}/telethon/tl/tlobject.pyo +${PYSITELIB}/telethon/tl/types/__init__.py +${PYSITELIB}/telethon/tl/types/__init__.pyc +${PYSITELIB}/telethon/tl/types/__init__.pyo +${PYSITELIB}/telethon/tl/types/account.py +${PYSITELIB}/telethon/tl/types/account.pyc +${PYSITELIB}/telethon/tl/types/account.pyo +${PYSITELIB}/telethon/tl/types/auth.py +${PYSITELIB}/telethon/tl/types/auth.pyc +${PYSITELIB}/telethon/tl/types/auth.pyo +${PYSITELIB}/telethon/tl/types/channels.py +${PYSITELIB}/telethon/tl/types/channels.pyc +${PYSITELIB}/telethon/tl/types/channels.pyo +${PYSITELIB}/telethon/tl/types/contacts.py +${PYSITELIB}/telethon/tl/types/contacts.pyc +${PYSITELIB}/telethon/tl/types/contacts.pyo +${PYSITELIB}/telethon/tl/types/help.py +${PYSITELIB}/telethon/tl/types/help.pyc +${PYSITELIB}/telethon/tl/types/help.pyo +${PYSITELIB}/telethon/tl/types/messages.py +${PYSITELIB}/telethon/tl/types/messages.pyc +${PYSITELIB}/telethon/tl/types/messages.pyo +${PYSITELIB}/telethon/tl/types/payments.py +${PYSITELIB}/telethon/tl/types/payments.pyc +${PYSITELIB}/telethon/tl/types/payments.pyo +${PYSITELIB}/telethon/tl/types/phone.py +${PYSITELIB}/telethon/tl/types/phone.pyc +${PYSITELIB}/telethon/tl/types/phone.pyo +${PYSITELIB}/telethon/tl/types/photos.py +${PYSITELIB}/telethon/tl/types/photos.pyc +${PYSITELIB}/telethon/tl/types/photos.pyo +${PYSITELIB}/telethon/tl/types/stats.py +${PYSITELIB}/telethon/tl/types/stats.pyc +${PYSITELIB}/telethon/tl/types/stats.pyo +${PYSITELIB}/telethon/tl/types/storage.py +${PYSITELIB}/telethon/tl/types/storage.pyc +${PYSITELIB}/telethon/tl/types/storage.pyo +${PYSITELIB}/telethon/tl/types/updates.py +${PYSITELIB}/telethon/tl/types/updates.pyc +${PYSITELIB}/telethon/tl/types/updates.pyo +${PYSITELIB}/telethon/tl/types/upload.py +${PYSITELIB}/telethon/tl/types/upload.pyc +${PYSITELIB}/telethon/tl/types/upload.pyo +${PYSITELIB}/telethon/utils.py +${PYSITELIB}/telethon/utils.pyc +${PYSITELIB}/telethon/utils.pyo +${PYSITELIB}/telethon/version.py +${PYSITELIB}/telethon/version.pyc +${PYSITELIB}/telethon/version.pyo Index: pkgsrc/chat/py-telethon/distinfo diff -u /dev/null pkgsrc/chat/py-telethon/distinfo:1.1 --- /dev/null Wed Nov 18 23:11:57 2020 +++ pkgsrc/chat/py-telethon/distinfo Wed Nov 18 23:11:57 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/11/18 23:11:57 js Exp $ + +SHA1 (Telethon-1.17.5.tar.gz) = e2df4cf8826516bb36a88f06ab951a0b474e1324 +RMD160 (Telethon-1.17.5.tar.gz) = 54bb9fcf8246120e9e1a4a5245a23dc162db00f0 +SHA512 (Telethon-1.17.5.tar.gz) = 4f66591fb24c8ed13a2b8833eed5e5c7b819a79ad9b63810b9ffc3b870f965fbc98085298a08c004452afc89093864ed94495a0aae80bca78ba286204605a1c9 +Size (Telethon-1.17.5.tar.gz) = 429717 bytes --_----------=_160574111747400--