Received: by mail.netbsd.org (Postfix, from userid 605) id 9D9DE84DCC; Fri, 11 Sep 2020 01:18:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 236D284D8E for ; Fri, 11 Sep 2020 01:18:57 +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 kJ6_fH4wD-HM for ; Fri, 11 Sep 2020 01:18:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 81CEE84D36 for ; Fri, 11 Sep 2020 01:18:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 74FD9FB28; Fri, 11 Sep 2020 01:18:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159978713594480" MIME-Version: 1.0 Date: Fri, 11 Sep 2020 01:18:55 +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: <20200911011855.74FD9FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_159978713594480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: js Date: Fri Sep 11 01:18:55 UTC 2020 Modified Files: pkgsrc/chat: Makefile Added Files: pkgsrc/chat/py-mautrix: DESCR Makefile PLIST distinfo Log Message: Add chat/py-mautrix To generate a diff of this commit: cvs rdiff -u -r1.251 -r1.252 pkgsrc/chat/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/chat/py-mautrix/DESCR \ pkgsrc/chat/py-mautrix/Makefile pkgsrc/chat/py-mautrix/PLIST \ pkgsrc/chat/py-mautrix/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159978713594480 Content-Disposition: inline Content-Length: 24562 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/Makefile diff -u pkgsrc/chat/Makefile:1.251 pkgsrc/chat/Makefile:1.252 --- pkgsrc/chat/Makefile:1.251 Thu Sep 10 02:39:01 2020 +++ pkgsrc/chat/Makefile Fri Sep 11 01:18:55 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.251 2020/09/10 02:39:01 jnemeth Exp $ +# $NetBSD: Makefile,v 1.252 2020/09/11 01:18:55 js Exp $ # COMMENT= Communication programs @@ -104,6 +104,7 @@ SUBDIR+= py-axolotl SUBDIR+= py-axolotl-curve25519 SUBDIR+= py-hangups SUBDIR+= py-mastodon +SUBDIR+= py-mautrix SUBDIR+= py-nbxmpp SUBDIR+= py-xmpppy SUBDIR+= quassel Added files: Index: pkgsrc/chat/py-mautrix/DESCR diff -u /dev/null pkgsrc/chat/py-mautrix/DESCR:1.1 --- /dev/null Fri Sep 11 01:18:55 2020 +++ pkgsrc/chat/py-mautrix/DESCR Fri Sep 11 01:18:55 2020 @@ -0,0 +1,22 @@ +A Python 3.6+ asyncio Matrix framework. + +Components: + + - Basic HTTP request sender (mautrix.api) + - Client API endpoints as functions (mautrix.client.api) + - Medium-level application service framework (mautrix.appservice) + - Basic transaction and user/alias query support (based on Cadair's + python-appservice-framework) + - Basic room state storage + - Intent wrapper around the client API functions (design based on + matrix-appservice-bridge) + - Medium-level end-to-end encryption framework (mautrix.crypto) + - Handles all the complicated e2ee key exchange + - High-level bridging utility framework (mautrix.bridge) + - Base class for bridges + - Common bridge configuration and appservice registration generation things + - Double-puppeting helper + - End-to-bridge encryption helper + - High-level client framework (mautrix.client) + - Syncing and event handling helper. + - End-to-end encryption helper. Index: pkgsrc/chat/py-mautrix/Makefile diff -u /dev/null pkgsrc/chat/py-mautrix/Makefile:1.1 --- /dev/null Fri Sep 11 01:18:55 2020 +++ pkgsrc/chat/py-mautrix/Makefile Fri Sep 11 01:18:55 2020 @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1 2020/09/11 01:18:55 js Exp $ + +GITHUB_PROJECT= mautrix-python +GITHUB_TAG= v${PKGVERSION_NOREV} +DISTNAME= v${PKGVERSION_NOREV} +PKGNAME= ${PYPKGPREFIX}-mautrix-0.7.1 +EGG_NAME= mautrix-${PKGVERSION_NOREV} +CATEGORIES= chat python +MASTER_SITES= ${MASTER_SITE_GITHUB:=tulir/} +DIST_SUBDIR= ${GITHUB_PROJECT} + +MAINTAINER= js@pkgsrc.org +HOMEPAGE= https://github.com/tulir/mautrix-python +COMMENT= Python 3 asyncio Matrix framework +LICENSE= mpl-2.0 + +DEPENDS+= ${PYPKGPREFIX}-aiohttp>=3:../../www/py-aiohttp +DEPENDS+= ${PYPKGPREFIX}-attrs>=18.1.0:../../devel/py-attrs + +WRKSRC= ${WRKDIR}/mautrix-python-0.7.1 +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/chat/py-mautrix/PLIST diff -u /dev/null pkgsrc/chat/py-mautrix/PLIST:1.1 --- /dev/null Fri Sep 11 01:18:55 2020 +++ pkgsrc/chat/py-mautrix/PLIST Fri Sep 11 01:18:55 2020 @@ -0,0 +1,444 @@ +@comment $NetBSD: PLIST,v 1.1 2020/09/11 01:18:55 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}/mautrix/__init__.py +${PYSITELIB}/mautrix/__init__.pyc +${PYSITELIB}/mautrix/__init__.pyo +${PYSITELIB}/mautrix/api.py +${PYSITELIB}/mautrix/api.pyc +${PYSITELIB}/mautrix/api.pyo +${PYSITELIB}/mautrix/appservice/__init__.py +${PYSITELIB}/mautrix/appservice/__init__.pyc +${PYSITELIB}/mautrix/appservice/__init__.pyo +${PYSITELIB}/mautrix/appservice/api/__init__.py +${PYSITELIB}/mautrix/appservice/api/__init__.pyc +${PYSITELIB}/mautrix/appservice/api/__init__.pyo +${PYSITELIB}/mautrix/appservice/api/appservice.py +${PYSITELIB}/mautrix/appservice/api/appservice.pyc +${PYSITELIB}/mautrix/appservice/api/appservice.pyo +${PYSITELIB}/mautrix/appservice/api/intent.py +${PYSITELIB}/mautrix/appservice/api/intent.pyc +${PYSITELIB}/mautrix/appservice/api/intent.pyo +${PYSITELIB}/mautrix/appservice/appservice.py +${PYSITELIB}/mautrix/appservice/appservice.pyc +${PYSITELIB}/mautrix/appservice/appservice.pyo +${PYSITELIB}/mautrix/appservice/as_handler.py +${PYSITELIB}/mautrix/appservice/as_handler.pyc +${PYSITELIB}/mautrix/appservice/as_handler.pyo +${PYSITELIB}/mautrix/appservice/state_store/__init__.py +${PYSITELIB}/mautrix/appservice/state_store/__init__.pyc +${PYSITELIB}/mautrix/appservice/state_store/__init__.pyo +${PYSITELIB}/mautrix/appservice/state_store/asyncpg.py +${PYSITELIB}/mautrix/appservice/state_store/asyncpg.pyc +${PYSITELIB}/mautrix/appservice/state_store/asyncpg.pyo +${PYSITELIB}/mautrix/appservice/state_store/file.py +${PYSITELIB}/mautrix/appservice/state_store/file.pyc +${PYSITELIB}/mautrix/appservice/state_store/file.pyo +${PYSITELIB}/mautrix/appservice/state_store/memory.py +${PYSITELIB}/mautrix/appservice/state_store/memory.pyc +${PYSITELIB}/mautrix/appservice/state_store/memory.pyo +${PYSITELIB}/mautrix/appservice/state_store/sqlalchemy.py +${PYSITELIB}/mautrix/appservice/state_store/sqlalchemy.pyc +${PYSITELIB}/mautrix/appservice/state_store/sqlalchemy.pyo +${PYSITELIB}/mautrix/bridge/__init__.py +${PYSITELIB}/mautrix/bridge/__init__.pyc +${PYSITELIB}/mautrix/bridge/__init__.pyo +${PYSITELIB}/mautrix/bridge/_community.py +${PYSITELIB}/mautrix/bridge/_community.pyc +${PYSITELIB}/mautrix/bridge/_community.pyo +${PYSITELIB}/mautrix/bridge/bridge.py +${PYSITELIB}/mautrix/bridge/bridge.pyc +${PYSITELIB}/mautrix/bridge/bridge.pyo +${PYSITELIB}/mautrix/bridge/commands/__init__.py +${PYSITELIB}/mautrix/bridge/commands/__init__.pyc +${PYSITELIB}/mautrix/bridge/commands/__init__.pyo +${PYSITELIB}/mautrix/bridge/commands/handler.py +${PYSITELIB}/mautrix/bridge/commands/handler.pyc +${PYSITELIB}/mautrix/bridge/commands/handler.pyo +${PYSITELIB}/mautrix/bridge/commands/meta.py +${PYSITELIB}/mautrix/bridge/commands/meta.pyc +${PYSITELIB}/mautrix/bridge/commands/meta.pyo +${PYSITELIB}/mautrix/bridge/config.py +${PYSITELIB}/mautrix/bridge/config.pyc +${PYSITELIB}/mautrix/bridge/config.pyo +${PYSITELIB}/mautrix/bridge/crypto_state_store.py +${PYSITELIB}/mautrix/bridge/crypto_state_store.pyc +${PYSITELIB}/mautrix/bridge/crypto_state_store.pyo +${PYSITELIB}/mautrix/bridge/custom_puppet.py +${PYSITELIB}/mautrix/bridge/custom_puppet.pyc +${PYSITELIB}/mautrix/bridge/custom_puppet.pyo +${PYSITELIB}/mautrix/bridge/e2ee.py +${PYSITELIB}/mautrix/bridge/e2ee.pyc +${PYSITELIB}/mautrix/bridge/e2ee.pyo +${PYSITELIB}/mautrix/bridge/matrix.py +${PYSITELIB}/mautrix/bridge/matrix.pyc +${PYSITELIB}/mautrix/bridge/matrix.pyo +${PYSITELIB}/mautrix/bridge/notification_disabler.py +${PYSITELIB}/mautrix/bridge/notification_disabler.pyc +${PYSITELIB}/mautrix/bridge/notification_disabler.pyo +${PYSITELIB}/mautrix/bridge/portal.py +${PYSITELIB}/mautrix/bridge/portal.pyc +${PYSITELIB}/mautrix/bridge/portal.pyo +${PYSITELIB}/mautrix/bridge/puppet.py +${PYSITELIB}/mautrix/bridge/puppet.pyc +${PYSITELIB}/mautrix/bridge/puppet.pyo +${PYSITELIB}/mautrix/bridge/state_store/__init__.py +${PYSITELIB}/mautrix/bridge/state_store/__init__.pyc +${PYSITELIB}/mautrix/bridge/state_store/__init__.pyo +${PYSITELIB}/mautrix/bridge/state_store/asyncpg.py +${PYSITELIB}/mautrix/bridge/state_store/asyncpg.pyc +${PYSITELIB}/mautrix/bridge/state_store/asyncpg.pyo +${PYSITELIB}/mautrix/bridge/state_store/sqlalchemy.py +${PYSITELIB}/mautrix/bridge/state_store/sqlalchemy.pyc +${PYSITELIB}/mautrix/bridge/state_store/sqlalchemy.pyo +${PYSITELIB}/mautrix/bridge/user.py +${PYSITELIB}/mautrix/bridge/user.pyc +${PYSITELIB}/mautrix/bridge/user.pyo +${PYSITELIB}/mautrix/client/__init__.py +${PYSITELIB}/mautrix/client/__init__.pyc +${PYSITELIB}/mautrix/client/__init__.pyo +${PYSITELIB}/mautrix/client/api/__init__.py +${PYSITELIB}/mautrix/client/api/__init__.pyc +${PYSITELIB}/mautrix/client/api/__init__.pyo +${PYSITELIB}/mautrix/client/api/authentication.py +${PYSITELIB}/mautrix/client/api/authentication.pyc +${PYSITELIB}/mautrix/client/api/authentication.pyo +${PYSITELIB}/mautrix/client/api/base.py +${PYSITELIB}/mautrix/client/api/base.pyc +${PYSITELIB}/mautrix/client/api/base.pyo +${PYSITELIB}/mautrix/client/api/client.py +${PYSITELIB}/mautrix/client/api/client.pyc +${PYSITELIB}/mautrix/client/api/client.pyo +${PYSITELIB}/mautrix/client/api/events.py +${PYSITELIB}/mautrix/client/api/events.pyc +${PYSITELIB}/mautrix/client/api/events.pyo +${PYSITELIB}/mautrix/client/api/filtering.py +${PYSITELIB}/mautrix/client/api/filtering.pyc +${PYSITELIB}/mautrix/client/api/filtering.pyo +${PYSITELIB}/mautrix/client/api/modules/__init__.py +${PYSITELIB}/mautrix/client/api/modules/__init__.pyc +${PYSITELIB}/mautrix/client/api/modules/__init__.pyo +${PYSITELIB}/mautrix/client/api/modules/account_data.py +${PYSITELIB}/mautrix/client/api/modules/account_data.pyc +${PYSITELIB}/mautrix/client/api/modules/account_data.pyo +${PYSITELIB}/mautrix/client/api/modules/crypto.py +${PYSITELIB}/mautrix/client/api/modules/crypto.pyc +${PYSITELIB}/mautrix/client/api/modules/crypto.pyo +${PYSITELIB}/mautrix/client/api/modules/media_repository.py +${PYSITELIB}/mautrix/client/api/modules/media_repository.pyc +${PYSITELIB}/mautrix/client/api/modules/media_repository.pyo +${PYSITELIB}/mautrix/client/api/modules/misc.py +${PYSITELIB}/mautrix/client/api/modules/misc.pyc +${PYSITELIB}/mautrix/client/api/modules/misc.pyo +${PYSITELIB}/mautrix/client/api/rooms.py +${PYSITELIB}/mautrix/client/api/rooms.pyc +${PYSITELIB}/mautrix/client/api/rooms.pyo +${PYSITELIB}/mautrix/client/api/user_data.py +${PYSITELIB}/mautrix/client/api/user_data.pyc +${PYSITELIB}/mautrix/client/api/user_data.pyo +${PYSITELIB}/mautrix/client/client.py +${PYSITELIB}/mautrix/client/client.pyc +${PYSITELIB}/mautrix/client/client.pyo +${PYSITELIB}/mautrix/client/dispatcher.py +${PYSITELIB}/mautrix/client/dispatcher.pyc +${PYSITELIB}/mautrix/client/dispatcher.pyo +${PYSITELIB}/mautrix/client/encryption_manager.py +${PYSITELIB}/mautrix/client/encryption_manager.pyc +${PYSITELIB}/mautrix/client/encryption_manager.pyo +${PYSITELIB}/mautrix/client/state_store/__init__.py +${PYSITELIB}/mautrix/client/state_store/__init__.pyc +${PYSITELIB}/mautrix/client/state_store/__init__.pyo +${PYSITELIB}/mautrix/client/state_store/abstract.py +${PYSITELIB}/mautrix/client/state_store/abstract.pyc +${PYSITELIB}/mautrix/client/state_store/abstract.pyo +${PYSITELIB}/mautrix/client/state_store/asyncpg/__init__.py +${PYSITELIB}/mautrix/client/state_store/asyncpg/__init__.pyc +${PYSITELIB}/mautrix/client/state_store/asyncpg/__init__.pyo +${PYSITELIB}/mautrix/client/state_store/asyncpg/store.py +${PYSITELIB}/mautrix/client/state_store/asyncpg/store.pyc +${PYSITELIB}/mautrix/client/state_store/asyncpg/store.pyo +${PYSITELIB}/mautrix/client/state_store/asyncpg/upgrade.py +${PYSITELIB}/mautrix/client/state_store/asyncpg/upgrade.pyc +${PYSITELIB}/mautrix/client/state_store/asyncpg/upgrade.pyo +${PYSITELIB}/mautrix/client/state_store/file.py +${PYSITELIB}/mautrix/client/state_store/file.pyc +${PYSITELIB}/mautrix/client/state_store/file.pyo +${PYSITELIB}/mautrix/client/state_store/memory.py +${PYSITELIB}/mautrix/client/state_store/memory.pyc +${PYSITELIB}/mautrix/client/state_store/memory.pyo +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/__init__.py +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/__init__.pyc +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/__init__.pyo +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/mx_room_state.py +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/mx_room_state.pyc +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/mx_room_state.pyo +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/mx_user_profile.py +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/mx_user_profile.pyc +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/mx_user_profile.pyo +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/sqlstatestore.py +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/sqlstatestore.pyc +${PYSITELIB}/mautrix/client/state_store/sqlalchemy/sqlstatestore.pyo +${PYSITELIB}/mautrix/client/state_store/sync.py +${PYSITELIB}/mautrix/client/state_store/sync.pyc +${PYSITELIB}/mautrix/client/state_store/sync.pyo +${PYSITELIB}/mautrix/client/store_updater.py +${PYSITELIB}/mautrix/client/store_updater.pyc +${PYSITELIB}/mautrix/client/store_updater.pyo +${PYSITELIB}/mautrix/client/syncer.py +${PYSITELIB}/mautrix/client/syncer.pyc +${PYSITELIB}/mautrix/client/syncer.pyo +${PYSITELIB}/mautrix/crypto/__init__.py +${PYSITELIB}/mautrix/crypto/__init__.pyc +${PYSITELIB}/mautrix/crypto/__init__.pyo +${PYSITELIB}/mautrix/crypto/account.py +${PYSITELIB}/mautrix/crypto/account.pyc +${PYSITELIB}/mautrix/crypto/account.pyo +${PYSITELIB}/mautrix/crypto/attachments/__init__.py +${PYSITELIB}/mautrix/crypto/attachments/__init__.pyc +${PYSITELIB}/mautrix/crypto/attachments/__init__.pyo +${PYSITELIB}/mautrix/crypto/attachments/async_attachments.py +${PYSITELIB}/mautrix/crypto/attachments/async_attachments.pyc +${PYSITELIB}/mautrix/crypto/attachments/async_attachments.pyo +${PYSITELIB}/mautrix/crypto/attachments/attachments.py +${PYSITELIB}/mautrix/crypto/attachments/attachments.pyc +${PYSITELIB}/mautrix/crypto/attachments/attachments.pyo +${PYSITELIB}/mautrix/crypto/base.py +${PYSITELIB}/mautrix/crypto/base.pyc +${PYSITELIB}/mautrix/crypto/base.pyo +${PYSITELIB}/mautrix/crypto/decrypt_megolm.py +${PYSITELIB}/mautrix/crypto/decrypt_megolm.pyc +${PYSITELIB}/mautrix/crypto/decrypt_megolm.pyo +${PYSITELIB}/mautrix/crypto/decrypt_olm.py +${PYSITELIB}/mautrix/crypto/decrypt_olm.pyc +${PYSITELIB}/mautrix/crypto/decrypt_olm.pyo +${PYSITELIB}/mautrix/crypto/device_lists.py +${PYSITELIB}/mautrix/crypto/device_lists.pyc +${PYSITELIB}/mautrix/crypto/device_lists.pyo +${PYSITELIB}/mautrix/crypto/encrypt_megolm.py +${PYSITELIB}/mautrix/crypto/encrypt_megolm.pyc +${PYSITELIB}/mautrix/crypto/encrypt_megolm.pyo +${PYSITELIB}/mautrix/crypto/encrypt_olm.py +${PYSITELIB}/mautrix/crypto/encrypt_olm.pyc +${PYSITELIB}/mautrix/crypto/encrypt_olm.pyo +${PYSITELIB}/mautrix/crypto/key_request.py +${PYSITELIB}/mautrix/crypto/key_request.pyc +${PYSITELIB}/mautrix/crypto/key_request.pyo +${PYSITELIB}/mautrix/crypto/key_share.py +${PYSITELIB}/mautrix/crypto/key_share.pyc +${PYSITELIB}/mautrix/crypto/key_share.pyo +${PYSITELIB}/mautrix/crypto/machine.py +${PYSITELIB}/mautrix/crypto/machine.pyc +${PYSITELIB}/mautrix/crypto/machine.pyo +${PYSITELIB}/mautrix/crypto/sessions.py +${PYSITELIB}/mautrix/crypto/sessions.pyc +${PYSITELIB}/mautrix/crypto/sessions.pyo +${PYSITELIB}/mautrix/crypto/store/__init__.py +${PYSITELIB}/mautrix/crypto/store/__init__.pyc +${PYSITELIB}/mautrix/crypto/store/__init__.pyo +${PYSITELIB}/mautrix/crypto/store/abstract.py +${PYSITELIB}/mautrix/crypto/store/abstract.pyc +${PYSITELIB}/mautrix/crypto/store/abstract.pyo +${PYSITELIB}/mautrix/crypto/store/asyncpg/__init__.py +${PYSITELIB}/mautrix/crypto/store/asyncpg/__init__.pyc +${PYSITELIB}/mautrix/crypto/store/asyncpg/__init__.pyo +${PYSITELIB}/mautrix/crypto/store/asyncpg/store.py +${PYSITELIB}/mautrix/crypto/store/asyncpg/store.pyc +${PYSITELIB}/mautrix/crypto/store/asyncpg/store.pyo +${PYSITELIB}/mautrix/crypto/store/asyncpg/upgrade.py +${PYSITELIB}/mautrix/crypto/store/asyncpg/upgrade.pyc +${PYSITELIB}/mautrix/crypto/store/asyncpg/upgrade.pyo +${PYSITELIB}/mautrix/crypto/store/memory.py +${PYSITELIB}/mautrix/crypto/store/memory.pyc +${PYSITELIB}/mautrix/crypto/store/memory.pyo +${PYSITELIB}/mautrix/crypto/store/pickle.py +${PYSITELIB}/mautrix/crypto/store/pickle.pyc +${PYSITELIB}/mautrix/crypto/store/pickle.pyo +${PYSITELIB}/mautrix/crypto/types.py +${PYSITELIB}/mautrix/crypto/types.pyc +${PYSITELIB}/mautrix/crypto/types.pyo +${PYSITELIB}/mautrix/errors/__init__.py +${PYSITELIB}/mautrix/errors/__init__.pyc +${PYSITELIB}/mautrix/errors/__init__.pyo +${PYSITELIB}/mautrix/errors/base.py +${PYSITELIB}/mautrix/errors/base.pyc +${PYSITELIB}/mautrix/errors/base.pyo +${PYSITELIB}/mautrix/errors/crypto.py +${PYSITELIB}/mautrix/errors/crypto.pyc +${PYSITELIB}/mautrix/errors/crypto.pyo +${PYSITELIB}/mautrix/errors/request.py +${PYSITELIB}/mautrix/errors/request.pyc +${PYSITELIB}/mautrix/errors/request.pyo +${PYSITELIB}/mautrix/types/__init__.py +${PYSITELIB}/mautrix/types/__init__.pyc +${PYSITELIB}/mautrix/types/__init__.pyo +${PYSITELIB}/mautrix/types/auth.py +${PYSITELIB}/mautrix/types/auth.pyc +${PYSITELIB}/mautrix/types/auth.pyo +${PYSITELIB}/mautrix/types/crypto.py +${PYSITELIB}/mautrix/types/crypto.pyc +${PYSITELIB}/mautrix/types/crypto.pyo +${PYSITELIB}/mautrix/types/event/__init__.py +${PYSITELIB}/mautrix/types/event/__init__.pyc +${PYSITELIB}/mautrix/types/event/__init__.pyo +${PYSITELIB}/mautrix/types/event/account_data.py +${PYSITELIB}/mautrix/types/event/account_data.pyc +${PYSITELIB}/mautrix/types/event/account_data.pyo +${PYSITELIB}/mautrix/types/event/base.py +${PYSITELIB}/mautrix/types/event/base.pyc +${PYSITELIB}/mautrix/types/event/base.pyo +${PYSITELIB}/mautrix/types/event/encrypted.py +${PYSITELIB}/mautrix/types/event/encrypted.pyc +${PYSITELIB}/mautrix/types/event/encrypted.pyo +${PYSITELIB}/mautrix/types/event/ephemeral.py +${PYSITELIB}/mautrix/types/event/ephemeral.pyc +${PYSITELIB}/mautrix/types/event/ephemeral.pyo +${PYSITELIB}/mautrix/types/event/generic.py +${PYSITELIB}/mautrix/types/event/generic.pyc +${PYSITELIB}/mautrix/types/event/generic.pyo +${PYSITELIB}/mautrix/types/event/message.py +${PYSITELIB}/mautrix/types/event/message.pyc +${PYSITELIB}/mautrix/types/event/message.pyo +${PYSITELIB}/mautrix/types/event/reaction.py +${PYSITELIB}/mautrix/types/event/reaction.pyc +${PYSITELIB}/mautrix/types/event/reaction.pyo +${PYSITELIB}/mautrix/types/event/redaction.py +${PYSITELIB}/mautrix/types/event/redaction.pyc +${PYSITELIB}/mautrix/types/event/redaction.pyo +${PYSITELIB}/mautrix/types/event/state.py +${PYSITELIB}/mautrix/types/event/state.pyc +${PYSITELIB}/mautrix/types/event/state.pyo +${PYSITELIB}/mautrix/types/event/to_device.py +${PYSITELIB}/mautrix/types/event/to_device.pyc +${PYSITELIB}/mautrix/types/event/to_device.pyo +${PYSITELIB}/mautrix/types/event/type.py +${PYSITELIB}/mautrix/types/event/type.pyc +${PYSITELIB}/mautrix/types/event/type.pyo +${PYSITELIB}/mautrix/types/filter.py +${PYSITELIB}/mautrix/types/filter.pyc +${PYSITELIB}/mautrix/types/filter.pyo +${PYSITELIB}/mautrix/types/media.py +${PYSITELIB}/mautrix/types/media.pyc +${PYSITELIB}/mautrix/types/media.pyo +${PYSITELIB}/mautrix/types/misc.py +${PYSITELIB}/mautrix/types/misc.pyc +${PYSITELIB}/mautrix/types/misc.pyo +${PYSITELIB}/mautrix/types/primitive.py +${PYSITELIB}/mautrix/types/primitive.pyc +${PYSITELIB}/mautrix/types/primitive.pyo +${PYSITELIB}/mautrix/types/users.py +${PYSITELIB}/mautrix/types/users.pyc +${PYSITELIB}/mautrix/types/users.pyo +${PYSITELIB}/mautrix/types/util/__init__.py +${PYSITELIB}/mautrix/types/util/__init__.pyc +${PYSITELIB}/mautrix/types/util/__init__.pyo +${PYSITELIB}/mautrix/types/util/enum.py +${PYSITELIB}/mautrix/types/util/enum.pyc +${PYSITELIB}/mautrix/types/util/enum.pyo +${PYSITELIB}/mautrix/types/util/obj.py +${PYSITELIB}/mautrix/types/util/obj.pyc +${PYSITELIB}/mautrix/types/util/obj.pyo +${PYSITELIB}/mautrix/types/util/serializable.py +${PYSITELIB}/mautrix/types/util/serializable.pyc +${PYSITELIB}/mautrix/types/util/serializable.pyo +${PYSITELIB}/mautrix/types/util/serializable_attrs.py +${PYSITELIB}/mautrix/types/util/serializable_attrs.pyc +${PYSITELIB}/mautrix/types/util/serializable_attrs.pyo +${PYSITELIB}/mautrix/util/__init__.py +${PYSITELIB}/mautrix/util/__init__.pyc +${PYSITELIB}/mautrix/util/__init__.pyo +${PYSITELIB}/mautrix/util/async_db/__init__.py +${PYSITELIB}/mautrix/util/async_db/__init__.pyc +${PYSITELIB}/mautrix/util/async_db/__init__.pyo +${PYSITELIB}/mautrix/util/async_db/database.py +${PYSITELIB}/mautrix/util/async_db/database.pyc +${PYSITELIB}/mautrix/util/async_db/database.pyo +${PYSITELIB}/mautrix/util/async_db/upgrade.py +${PYSITELIB}/mautrix/util/async_db/upgrade.pyc +${PYSITELIB}/mautrix/util/async_db/upgrade.pyo +${PYSITELIB}/mautrix/util/color_log.py +${PYSITELIB}/mautrix/util/color_log.pyc +${PYSITELIB}/mautrix/util/color_log.pyo +${PYSITELIB}/mautrix/util/config/__init__.py +${PYSITELIB}/mautrix/util/config/__init__.pyc +${PYSITELIB}/mautrix/util/config/__init__.pyo +${PYSITELIB}/mautrix/util/config/base.py +${PYSITELIB}/mautrix/util/config/base.pyc +${PYSITELIB}/mautrix/util/config/base.pyo +${PYSITELIB}/mautrix/util/config/file.py +${PYSITELIB}/mautrix/util/config/file.pyc +${PYSITELIB}/mautrix/util/config/file.pyo +${PYSITELIB}/mautrix/util/config/proxy.py +${PYSITELIB}/mautrix/util/config/proxy.pyc +${PYSITELIB}/mautrix/util/config/proxy.pyo +${PYSITELIB}/mautrix/util/config/recursive_dict.py +${PYSITELIB}/mautrix/util/config/recursive_dict.pyc +${PYSITELIB}/mautrix/util/config/recursive_dict.pyo +${PYSITELIB}/mautrix/util/config/string.py +${PYSITELIB}/mautrix/util/config/string.pyc +${PYSITELIB}/mautrix/util/config/string.pyo +${PYSITELIB}/mautrix/util/config/validation.py +${PYSITELIB}/mautrix/util/config/validation.pyc +${PYSITELIB}/mautrix/util/config/validation.pyo +${PYSITELIB}/mautrix/util/db/__init__.py +${PYSITELIB}/mautrix/util/db/__init__.pyc +${PYSITELIB}/mautrix/util/db/__init__.pyo +${PYSITELIB}/mautrix/util/db/base.py +${PYSITELIB}/mautrix/util/db/base.pyc +${PYSITELIB}/mautrix/util/db/base.pyo +${PYSITELIB}/mautrix/util/file_store.py +${PYSITELIB}/mautrix/util/file_store.pyc +${PYSITELIB}/mautrix/util/file_store.pyo +${PYSITELIB}/mautrix/util/formatter/__init__.py +${PYSITELIB}/mautrix/util/formatter/__init__.pyc +${PYSITELIB}/mautrix/util/formatter/__init__.pyo +${PYSITELIB}/mautrix/util/formatter/entity_string.py +${PYSITELIB}/mautrix/util/formatter/entity_string.pyc +${PYSITELIB}/mautrix/util/formatter/entity_string.pyo +${PYSITELIB}/mautrix/util/formatter/formatted_string.py +${PYSITELIB}/mautrix/util/formatter/formatted_string.pyc +${PYSITELIB}/mautrix/util/formatter/formatted_string.pyo +${PYSITELIB}/mautrix/util/formatter/html_reader.py +${PYSITELIB}/mautrix/util/formatter/html_reader.pyc +${PYSITELIB}/mautrix/util/formatter/html_reader.pyo +${PYSITELIB}/mautrix/util/formatter/html_reader_htmlparser.py +${PYSITELIB}/mautrix/util/formatter/html_reader_htmlparser.pyc +${PYSITELIB}/mautrix/util/formatter/html_reader_htmlparser.pyo +${PYSITELIB}/mautrix/util/formatter/html_reader_lxml.py +${PYSITELIB}/mautrix/util/formatter/html_reader_lxml.pyc +${PYSITELIB}/mautrix/util/formatter/html_reader_lxml.pyo +${PYSITELIB}/mautrix/util/formatter/markdown_string.py +${PYSITELIB}/mautrix/util/formatter/markdown_string.pyc +${PYSITELIB}/mautrix/util/formatter/markdown_string.pyo +${PYSITELIB}/mautrix/util/formatter/parser.py +${PYSITELIB}/mautrix/util/formatter/parser.pyc +${PYSITELIB}/mautrix/util/formatter/parser.pyo +${PYSITELIB}/mautrix/util/logging/__init__.py +${PYSITELIB}/mautrix/util/logging/__init__.pyc +${PYSITELIB}/mautrix/util/logging/__init__.pyo +${PYSITELIB}/mautrix/util/logging/color.py +${PYSITELIB}/mautrix/util/logging/color.pyc +${PYSITELIB}/mautrix/util/logging/color.pyo +${PYSITELIB}/mautrix/util/logging/trace.py +${PYSITELIB}/mautrix/util/logging/trace.pyc +${PYSITELIB}/mautrix/util/logging/trace.pyo +${PYSITELIB}/mautrix/util/manhole.py +${PYSITELIB}/mautrix/util/manhole.pyc +${PYSITELIB}/mautrix/util/manhole.pyo +${PYSITELIB}/mautrix/util/markdown.py +${PYSITELIB}/mautrix/util/markdown.pyc +${PYSITELIB}/mautrix/util/markdown.pyo +${PYSITELIB}/mautrix/util/program.py +${PYSITELIB}/mautrix/util/program.pyc +${PYSITELIB}/mautrix/util/program.pyo +${PYSITELIB}/mautrix/util/signed_token.py +${PYSITELIB}/mautrix/util/signed_token.pyc +${PYSITELIB}/mautrix/util/signed_token.pyo +${PYSITELIB}/mautrix/util/simple_lock.py +${PYSITELIB}/mautrix/util/simple_lock.pyc +${PYSITELIB}/mautrix/util/simple_lock.pyo +${PYSITELIB}/mautrix/util/simple_template.py +${PYSITELIB}/mautrix/util/simple_template.pyc +${PYSITELIB}/mautrix/util/simple_template.pyo Index: pkgsrc/chat/py-mautrix/distinfo diff -u /dev/null pkgsrc/chat/py-mautrix/distinfo:1.1 --- /dev/null Fri Sep 11 01:18:55 2020 +++ pkgsrc/chat/py-mautrix/distinfo Fri Sep 11 01:18:55 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/09/11 01:18:55 js Exp $ + +SHA1 (mautrix-python/v0.7.1.tar.gz) = 75190c6b9fabe3c83f148bbd948727f57de41181 +RMD160 (mautrix-python/v0.7.1.tar.gz) = 0f23fb38661651208f51ee3ba6ab214ab852e68a +SHA512 (mautrix-python/v0.7.1.tar.gz) = 199dc0c046b87c72bd5ee3b3cf3123cdefda317908a54fdb066666347f7f6c1a550852897d76a7b9cf84509922fdb25b47290fc2f5f0b058472aba0adfc64daf +Size (mautrix-python/v0.7.1.tar.gz) = 136287 bytes --_----------=_159978713594480--