From owner-svn-ports-head@freebsd.org Thu Oct 18 18:52:19 2018 Return-Path: Delivered-To: svn-ports-head@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 175CBEFEA4C; Thu, 18 Oct 2018 18:52:19 +0000 (UTC) (envelope-from ericbsd@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 C297977CFC; Thu, 18 Oct 2018 18:52:18 +0000 (UTC) (envelope-from ericbsd@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 BD74B23C9C; Thu, 18 Oct 2018 18:52:18 +0000 (UTC) (envelope-from ericbsd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9IIqIKL051762; Thu, 18 Oct 2018 18:52:18 GMT (envelope-from ericbsd@FreeBSD.org) Received: (from ericbsd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9IIqIiE051759; Thu, 18 Oct 2018 18:52:18 GMT (envelope-from ericbsd@FreeBSD.org) Message-Id: <201810181852.w9IIqIiE051759@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ericbsd set sender to ericbsd@FreeBSD.org using -f From: Eric Turgeon Date: Thu, 18 Oct 2018 18:52:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482351 - in head/x11: . py-xcffib X-SVN-Group: ports-head X-SVN-Commit-Author: ericbsd X-SVN-Commit-Paths: in head/x11: . py-xcffib X-SVN-Commit-Revision: 482351 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, 18 Oct 2018 18:52:19 -0000 Author: ericbsd Date: Thu Oct 18 18:52:17 2018 New Revision: 482351 URL: https://svnweb.freebsd.org/changeset/ports/482351 Log: add port x11/py-xcffib xcffib is intended to be a (mostly) drop-in replacement for xpyb. xpyb has an inactive upstream, several memory leaks, is python2 only and doesn't have pypy support. xcffib is a binding which uses cffi, which mitigates some of the issues described above. xcffib also builds bindings for 27 of the 29 (xprint and xkb are missing) X extensions in 1.10. Approved by: wg (mentor) Added: head/x11/py-xcffib/ head/x11/py-xcffib/Makefile (contents, props changed) head/x11/py-xcffib/distinfo (contents, props changed) head/x11/py-xcffib/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Thu Oct 18 18:47:19 2018 (r482350) +++ head/x11/Makefile Thu Oct 18 18:52:17 2018 (r482351) @@ -279,6 +279,7 @@ SUBDIR += py-pyvirtualdisplay SUBDIR += py-qt4-opengl SUBDIR += py-qt5-opengl + SUBDIR += py-xcffib SUBDIR += py-xdot SUBDIR += py-xdot06 SUBDIR += qimageblitz Added: head/x11/py-xcffib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/py-xcffib/Makefile Thu Oct 18 18:52:17 2018 (r482351) @@ -0,0 +1,25 @@ +# Created by: Eric Turgeon +# $FreeBSD$ + +PORTNAME= xcffib +PORTVERSION= 0.6.0 +CATEGORIES= x11 python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ericbsd@FreeBSD.org +COMMENT= Xcffib is a replacement for xpyb, also is a XCB python binding + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libxcb.so:x11/libxcb +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.1.0:devel/py-cffi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/x11/py-xcffib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/py-xcffib/distinfo Thu Oct 18 18:52:17 2018 (r482351) @@ -0,0 +1,3 @@ +TIMESTAMP = 1539873693 +SHA256 (xcffib-0.6.0.tar.gz) = 36142cb72535933e8e1ed39ff2c45559fa7038823bd6be6961ef8ee5bb0f6912 +SIZE (xcffib-0.6.0.tar.gz) = 84360 Added: head/x11/py-xcffib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/py-xcffib/pkg-descr Thu Oct 18 18:52:17 2018 (r482351) @@ -0,0 +1,7 @@ +xcffib is intended to be a (mostly) drop-in replacement for xpyb. xpyb has +an inactive upstream, several memory leaks, is python2 only and doesn't have +pypy support. xcffib is a binding which uses cffi, which mitigates some of +the issues described above. xcffib also builds bindings for 27 of the 29 +(xprint and xkb are missing) X extensions in 1.10. + +WWW: https://github.com/tych0/xcffib