From owner-svn-ports-all@freebsd.org Wed Feb 14 18:34:33 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 73262F15A54; Wed, 14 Feb 2018 18:34:33 +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.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 23C0586EBA; Wed, 14 Feb 2018 18:34:33 +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 0523A1388F; Wed, 14 Feb 2018 18:34:33 +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 w1EIYWVA050979; Wed, 14 Feb 2018 18:34:32 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1EIYW8E050975; Wed, 14 Feb 2018 18:34:32 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802141834.w1EIYW8E050975@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 14 Feb 2018 18:34:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461830 - in head/devel: . py-notify2 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-notify2 X-SVN-Commit-Revision: 461830 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.25 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: Wed, 14 Feb 2018 18:34:33 -0000 Author: yuri Date: Wed Feb 14 18:34:32 2018 New Revision: 461830 URL: https://svnweb.freebsd.org/changeset/ports/461830 Log: New port: devel/py-notify2: Python interface to DBus notifications See https://pypi.python.org/pypi/notify2 Submitted by: myself Approved by: tcberner Differential Revision: https://reviews.freebsd.org/D14374 Added: head/devel/py-notify2/ head/devel/py-notify2/Makefile (contents, props changed) head/devel/py-notify2/distinfo (contents, props changed) head/devel/py-notify2/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Feb 14 18:31:04 2018 (r461829) +++ head/devel/Makefile Wed Feb 14 18:34:32 2018 (r461830) @@ -4633,6 +4633,7 @@ SUBDIR += py-noseofyeti SUBDIR += py-notifier SUBDIR += py-notify + SUBDIR += py-notify2 SUBDIR += py-numba SUBDIR += py-ocempgui SUBDIR += py-odfpy Added: head/devel/py-notify2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-notify2/Makefile Wed Feb 14 18:34:32 2018 (r461830) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= notify2 +DISTVERSION= 0.3.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python interface to DBus notifications + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>0:devel/py-dbus@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-notify2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-notify2/distinfo Wed Feb 14 18:34:32 2018 (r461830) @@ -0,0 +1,3 @@ +TIMESTAMP = 1518630067 +SHA256 (notify2-0.3.1.tar.gz) = 33fa108d50c42f3cd3407cc437518ad3f6225d1bb237011f16393c9dd3ce197d +SIZE (notify2-0.3.1.tar.gz) = 17792 Added: head/devel/py-notify2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-notify2/pkg-descr Wed Feb 14 18:34:32 2018 (r461830) @@ -0,0 +1,5 @@ +notify2 is a pure-python replacement for notify-python, using python-dbus +to communicate with the notifications server directly. It's compatible with +Python 2 and 3, and its callbacks can work with Gtk 3 or Qt 4 applications. + +WWW: https://bitbucket.org/takluyver/pynotify2