From owner-svn-ports-head@freebsd.org Fri Feb 26 06:48:50 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 428BC55766C; Fri, 26 Feb 2021 06:48:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Dn0cL1SRzz4rkb; Fri, 26 Feb 2021 06:48:50 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2507D25E4A; Fri, 26 Feb 2021 06:48:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11Q6moVA030919; Fri, 26 Feb 2021 06:48:50 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11Q6mnpi030915; Fri, 26 Feb 2021 06:48:49 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202102260648.11Q6mnpi030915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 26 Feb 2021 06:48:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566584 - in head/devel: . py-qasync X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-qasync X-SVN-Commit-Revision: 566584 X-SVN-Commit-Repository: ports 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.34 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: Fri, 26 Feb 2021 06:48:50 -0000 Author: yuri Date: Fri Feb 26 06:48:49 2021 New Revision: 566584 URL: https://svnweb.freebsd.org/changeset/ports/566584 Log: New port: devel/py-qasync: Implementation of the PEP 3156 Event-Loop with Qt Added: head/devel/py-qasync/ head/devel/py-qasync/Makefile (contents, props changed) head/devel/py-qasync/distinfo (contents, props changed) head/devel/py-qasync/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Feb 26 06:40:59 2021 (r566583) +++ head/devel/Makefile Fri Feb 26 06:48:49 2021 (r566584) @@ -5000,6 +5000,7 @@ SUBDIR += py-pyxb SUBDIR += py-pyyaml-include SUBDIR += py-q + SUBDIR += py-qasync SUBDIR += py-qt5 SUBDIR += py-qt5-core SUBDIR += py-qt5-dbus Added: head/devel/py-qasync/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-qasync/Makefile Fri Feb 26 06:48:49 2021 (r566584) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= qasync +DISTVERSION= 0.13.0 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Implementation of the PEP 3156 Event-Loop with Qt + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}AnyQt>0:x11-toolkits/py-AnyQt@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include Added: head/devel/py-qasync/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-qasync/distinfo Fri Feb 26 06:48:49 2021 (r566584) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614321839 +SHA256 (qasync-0.13.0.tar.gz) = 07a194a9f17706eec908596b3a40b469d2cbf81c1b9d3395357a4c91044ba2f2 +SIZE (qasync-0.13.0.tar.gz) = 13320 Added: head/devel/py-qasync/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-qasync/pkg-descr Fri Feb 26 06:48:49 2021 (r566584) @@ -0,0 +1,4 @@ +qasync allows coroutines to be used in PyQt/PySide applications by providing an +implementation of the PEP 3156 event-loop. + +WWW: https://github.com/CabbageDevelopment/qasync