From owner-svn-ports-all@freebsd.org Fri Jan 1 18:01:32 2021 Return-Path: Delivered-To: svn-ports-all@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 F092C4CF89C; Fri, 1 Jan 2021 18:01:32 +0000 (UTC) (envelope-from rene@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D6tBN6XDCz3PZW; Fri, 1 Jan 2021 18:01:32 +0000 (UTC) (envelope-from rene@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 D1B4826F45; Fri, 1 Jan 2021 18:01:32 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 101I1W6V096279; Fri, 1 Jan 2021 18:01:32 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 101I1WXn096276; Fri, 1 Jan 2021 18:01:32 GMT (envelope-from rene@FreeBSD.org) Message-Id: <202101011801.101I1WXn096276@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Fri, 1 Jan 2021 18:01:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559861 - in head/x11: . py-python-xapp X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/x11: . py-python-xapp X-SVN-Commit-Revision: 559861 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.34 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: Fri, 01 Jan 2021 18:01:33 -0000 Author: rene Date: Fri Jan 1 18:01:31 2021 New Revision: 559861 URL: https://svnweb.freebsd.org/changeset/ports/559861 Log: Python Xapp library WWW: https://github.com/linuxmint/python3-xapp This port is needed to upgrade the Cinnamon ports to version 4.8.4 which use Python 3 instead of Python 2. PR: 252302 Submitted by: Charlie Li Added: head/x11/py-python-xapp/ head/x11/py-python-xapp/Makefile (contents, props changed) head/x11/py-python-xapp/distinfo (contents, props changed) head/x11/py-python-xapp/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Fri Jan 1 17:17:36 2021 (r559860) +++ head/x11/Makefile Fri Jan 1 18:01:31 2021 (r559861) @@ -275,6 +275,7 @@ SUBDIR += py-caffeine-ng SUBDIR += py-i3ipc SUBDIR += py-pyscreenshot + SUBDIR += py-python-xapp SUBDIR += py-pyvirtualdisplay SUBDIR += py-qt5-opengl SUBDIR += py-xcffib Added: head/x11/py-python-xapp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/py-python-xapp/Makefile Fri Jan 1 18:01:31 2021 (r559861) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= python-xapp +DISTVERSION= 2.0.2 +CATEGORIES= x11 gnome +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= gnome + +MAINTAINER= gnome@freebsd.org +COMMENT= Python Xapp library + +LICENSE= LGPL20 +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} + +USES= gnome python:3.5+ shebangfix + +USE_GNOME= pygobject3 +USE_PYTHON= autoplist distutils +SHEBANG_GLOB= *.py + +USE_GITHUB= yes +GH_ACCOUNT= linuxmint +GH_PROJECT= python3-xapp + +NO_ARCH= yes + +.include Added: head/x11/py-python-xapp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/py-python-xapp/distinfo Fri Jan 1 18:01:31 2021 (r559861) @@ -0,0 +1,3 @@ +TIMESTAMP = 1609405572 +SHA256 (gnome/linuxmint-python3-xapp-2.0.2_GH0.tar.gz) = 4f61dde32c7aec5ab2c819e968a2bf0136c9eddcc1356461d516aff40930159f +SIZE (gnome/linuxmint-python3-xapp-2.0.2_GH0.tar.gz) = 19946 Added: head/x11/py-python-xapp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/py-python-xapp/pkg-descr Fri Jan 1 18:01:31 2021 (r559861) @@ -0,0 +1,3 @@ +Python Xapp library + +WWW: https://github.com/linuxmint/python3-xapp