From owner-svn-ports-head@freebsd.org Wed Jul 17 17:32:16 2019 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 AA8C0B1FE5; Wed, 17 Jul 2019 17:32:16 +0000 (UTC) (envelope-from swills@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 8CC7D8BD94; Wed, 17 Jul 2019 17:32:16 +0000 (UTC) (envelope-from swills@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 508AE21DE4; Wed, 17 Jul 2019 17:32:16 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x6HHWGwR028812; Wed, 17 Jul 2019 17:32:16 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x6HHWFON028807; Wed, 17 Jul 2019 17:32:15 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201907171732.x6HHWFON028807@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 17 Jul 2019 17:32:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506809 - in head/x11-fm: . nautilus-python X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/x11-fm: . nautilus-python X-SVN-Commit-Revision: 506809 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8CC7D8BD94 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Wed, 17 Jul 2019 17:32:16 -0000 Author: swills Date: Wed Jul 17 17:32:15 2019 New Revision: 506809 URL: https://svnweb.freebsd.org/changeset/ports/506809 Log: x11-fm/nautilus-python: create port Nautilus-python is a set of python bindings for the Nautilus Extension Framework. With these bindings, you can write extensions for the Nautilus File Manager in python. WWW: https://wiki.gnome.org/Projects/NautilusPython PR: 234548 Submitted by: Daniel Shafer Reviewed by: mat Added: head/x11-fm/nautilus-python/ head/x11-fm/nautilus-python/Makefile (contents, props changed) head/x11-fm/nautilus-python/distinfo (contents, props changed) head/x11-fm/nautilus-python/pkg-descr (contents, props changed) head/x11-fm/nautilus-python/pkg-plist (contents, props changed) Modified: head/x11-fm/Makefile (contents, props changed) Modified: head/x11-fm/Makefile ============================================================================== --- head/x11-fm/Makefile Wed Jul 17 17:24:41 2019 (r506808) +++ head/x11-fm/Makefile Wed Jul 17 17:32:15 2019 (r506809) @@ -20,6 +20,7 @@ SUBDIR += libtubo SUBDIR += mucommander SUBDIR += nautilus + SUBDIR += nautilus-python SUBDIR += nemo SUBDIR += pcmanfm SUBDIR += pcmanfm-qt Added: head/x11-fm/nautilus-python/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fm/nautilus-python/Makefile Wed Jul 17 17:32:15 2019 (r506809) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= nautilus-python +DISTVERSION= 1.2.2 +CATEGORIES= x11-fm gnome python +MASTER_SITES= GNOME + +MAINTAINER= daniel@shafer.cc +COMMENT= Python nautilus bindings + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= gmake gnome libtool localbase pathfix pkgconfig python:3.6+ \ + tar:xz +USE_GNOME= cairo gdkpixbuf2 nautilus3 pygobject3 +USE_LDCONFIG= yes + +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip + +OPTIONS_DEFINE= GTKDOC +OPTIONS_SUB= yes + +GTKDOC_MESON_TRUE= gtk_doc +GTKDOC_DESC= Build documentation +GTKDOC_BUILD_DEPENDS= gtkdocize:textproc/gtk-doc +GTKDOC_CONFIGURE_ENABLE= gtk-doc + +.include Added: head/x11-fm/nautilus-python/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fm/nautilus-python/distinfo Wed Jul 17 17:32:15 2019 (r506809) @@ -0,0 +1,3 @@ +TIMESTAMP = 1544101815 +SHA256 (nautilus-python-1.2.2.tar.xz) = 90cda3fd613ed012214e47c2dc6f814db4e204a5af38e840479819ab9c59f112 +SIZE (nautilus-python-1.2.2.tar.xz) = 269220 Added: head/x11-fm/nautilus-python/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fm/nautilus-python/pkg-descr Wed Jul 17 17:32:15 2019 (r506809) @@ -0,0 +1,5 @@ +Nautilus-python is a set of python bindings for the Nautilus Extension +Framework. With these bindings, you can write extensions for the Nautilus File +Manager in python. + +WWW: https://wiki.gnome.org/Projects/NautilusPython Added: head/x11-fm/nautilus-python/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fm/nautilus-python/pkg-plist Wed Jul 17 17:32:15 2019 (r506809) @@ -0,0 +1,30 @@ +lib/nautilus/extensions-3.0/libnautilus-python.so +libdata/pkgconfig/nautilus-python.pc +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-column-provider.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-column.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-file-info.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-info-provider.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-location-widget-provider.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-menu-item.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-menu-provider.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-menu.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-property-page-provider.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/class-nautilus-python-property-page.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/enum-nautilus-python-operation-result.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/home.png +%%GTKDOC%%share/gtk-doc/html/nautilus-python/index.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/index.sgml +%%GTKDOC%%share/gtk-doc/html/nautilus-python/left-insensitive.png +%%GTKDOC%%share/gtk-doc/html/nautilus-python/left.png +%%GTKDOC%%share/gtk-doc/html/nautilus-python/nautilus-python-class-reference.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/nautilus-python-enum-reference.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/nautilus-python-overview-example.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/nautilus-python-overview-methods.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/nautilus-python-overview.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/nautilus-python-provider-reference.html +%%GTKDOC%%share/gtk-doc/html/nautilus-python/nautilus-python.devhelp2 +%%GTKDOC%%share/gtk-doc/html/nautilus-python/right-insensitive.png +%%GTKDOC%%share/gtk-doc/html/nautilus-python/right.png +%%GTKDOC%%share/gtk-doc/html/nautilus-python/style.css +%%GTKDOC%%share/gtk-doc/html/nautilus-python/up-insensitive.png +%%GTKDOC%%share/gtk-doc/html/nautilus-python/up.png