From owner-svn-ports-all@freebsd.org Sun Aug 5 19:06:06 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86A19105A634; Sun, 5 Aug 2018 19:06:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 23409711FF; Sun, 5 Aug 2018 19:06:06 +0000 (UTC) (envelope-from sunpoet@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 EC2532242C; Sun, 5 Aug 2018 19:06:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w75J65I2002950; Sun, 5 Aug 2018 19:06:05 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w75J6403002946; Sun, 5 Aug 2018 19:06:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201808051906.w75J6403002946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 5 Aug 2018 19:06:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476424 - in head/devel: . py-jeepney X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-jeepney X-SVN-Commit-Revision: 476424 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Aug 2018 19:06:06 -0000 Author: sunpoet Date: Sun Aug 5 19:06:04 2018 New Revision: 476424 URL: https://svnweb.freebsd.org/changeset/ports/476424 Log: Add py-jeepney 0.3.1 This is a low-level, pure Python DBus protocol client. It has an I/O-free core, and integration modules for different event loops. DBus is an inter-process communication system, mainly used in Linux. WWW: https://gitlab.com/takluyver/jeepney Added: head/devel/py-jeepney/ head/devel/py-jeepney/Makefile (contents, props changed) head/devel/py-jeepney/distinfo (contents, props changed) head/devel/py-jeepney/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 5 18:54:04 2018 (r476423) +++ head/devel/Makefile Sun Aug 5 19:06:04 2018 (r476424) @@ -4649,6 +4649,7 @@ SUBDIR += py-jcc SUBDIR += py-jdcal SUBDIR += py-jedi + SUBDIR += py-jeepney SUBDIR += py-jellyfish SUBDIR += py-jenkins-job-builder SUBDIR += py-jep Added: head/devel/py-jeepney/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jeepney/Makefile Sun Aug 5 19:06:04 2018 (r476424) @@ -0,0 +1,19 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= jeepney +PORTVERSION= 0.3.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Low-level, pure Python DBus protocol wrapper + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_PYTHON= autoplist distutils +USES= python:3.5+ + +.include Added: head/devel/py-jeepney/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jeepney/distinfo Sun Aug 5 19:06:04 2018 (r476424) @@ -0,0 +1,3 @@ +TIMESTAMP = 1533241066 +SHA256 (jeepney-0.3.1.tar.gz) = a6f2aa72e61660248d4d524dfccb6405f17c693b69af5d60dd7f2bab807d907e +SIZE (jeepney-0.3.1.tar.gz) = 22271 Added: head/devel/py-jeepney/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jeepney/pkg-descr Sun Aug 5 19:06:04 2018 (r476424) @@ -0,0 +1,6 @@ +This is a low-level, pure Python DBus protocol client. It has an I/O-free core, +and integration modules for different event loops. + +DBus is an inter-process communication system, mainly used in Linux. + +WWW: https://gitlab.com/takluyver/jeepney