From owner-svn-ports-head@freebsd.org Thu Jan 2 07:57:56 2020 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 679811EFC7C; Thu, 2 Jan 2020 07:57:56 +0000 (UTC) (envelope-from tcberner@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47pL4N1x4Lz41P5; Thu, 2 Jan 2020 07:57:56 +0000 (UTC) (envelope-from tcberner@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 3D8E21828E; Thu, 2 Jan 2020 07:57:56 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0027vu8N082057; Thu, 2 Jan 2020 07:57:56 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0027vtxG082053; Thu, 2 Jan 2020 07:57:55 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202001020757.0027vtxG082053@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Thu, 2 Jan 2020 07:57:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r521800 - in head/devel: . py-python-dbusmock X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/devel: . py-python-dbusmock X-SVN-Commit-Revision: 521800 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.29 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: Thu, 02 Jan 2020 07:57:56 -0000 Author: tcberner Date: Thu Jan 2 07:57:55 2020 New Revision: 521800 URL: https://svnweb.freebsd.org/changeset/ports/521800 Log: [NEW PORT] devel/py-python-dbusmock: Mock D-Bus objects for tests With this program/Python library you can easily create mock objects on D-Bus. This is useful for writing tests for software which talks to D-Bus services such as upower, systemd, logind, gnome-session or others, and it is hard (or impossible without root privileges) to set the state of the real services to what you expect in your tests. WWW: https://pypi.org/project/python-dbusmock PR: 243029 Submitted by: Hiroki Tagato Added: head/devel/py-python-dbusmock/ head/devel/py-python-dbusmock/Makefile (contents, props changed) head/devel/py-python-dbusmock/distinfo (contents, props changed) head/devel/py-python-dbusmock/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jan 2 07:30:42 2020 (r521799) +++ head/devel/Makefile Thu Jan 2 07:57:55 2020 (r521800) @@ -4912,6 +4912,7 @@ SUBDIR += py-pytest-xprocess SUBDIR += py-python-Levenshtein SUBDIR += py-python-bugzilla + SUBDIR += py-python-dbusmock SUBDIR += py-python-distutils-extra SUBDIR += py-python-dtrace SUBDIR += py-python-easyconfig Added: head/devel/py-python-dbusmock/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-python-dbusmock/Makefile Thu Jan 2 07:57:55 2020 (r521800) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= python-dbusmock +PORTVERSION= 0.18.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tagattie@yandex.com +COMMENT= Mock D-Bus objects for tests + +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>0:devel/py-dbus@${PY_FLAVOR} + +USES= gnome python +USE_GNOME= pygobject3 +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/devel/py-python-dbusmock/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-python-dbusmock/distinfo Thu Jan 2 07:57:55 2020 (r521800) @@ -0,0 +1,3 @@ +TIMESTAMP = 1576560286 +SHA256 (python-dbusmock-0.18.3.tar.gz) = 994a178268b6d74aeb158c0f155cd141e9a0cfae14226a764cd022c4949fe242 +SIZE (python-dbusmock-0.18.3.tar.gz) = 72049 Added: head/devel/py-python-dbusmock/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-python-dbusmock/pkg-descr Thu Jan 2 07:57:55 2020 (r521800) @@ -0,0 +1,7 @@ +With this program/Python library you can easily create mock objects on +D-Bus. This is useful for writing tests for software which talks to +D-Bus services such as upower, systemd, logind, gnome-session or +others, and it is hard (or impossible without root privileges) to set +the state of the real services to what you expect in your tests. + +WWW: https://pypi.org/project/python-dbusmock