From owner-svn-ports-head@freebsd.org Tue Nov 12 21:21:49 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 528481BB595; Tue, 12 Nov 2019 21:21:49 +0000 (UTC) (envelope-from danilo@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 47CLKT1XB5z47KS; Tue, 12 Nov 2019 21:21:49 +0000 (UTC) (envelope-from danilo@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 17CA65E2A; Tue, 12 Nov 2019 21:21:49 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xACLLmXv003324; Tue, 12 Nov 2019 21:21:48 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xACLLmbn003321; Tue, 12 Nov 2019 21:21:48 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201911122121.xACLLmbn003321@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Tue, 12 Nov 2019 21:21:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r517351 - in head: . graphics graphics/py-pyvips graphics/py-vips X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: in head: . graphics graphics/py-pyvips graphics/py-vips X-SVN-Commit-Revision: 517351 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: Tue, 12 Nov 2019 21:21:49 -0000 Author: danilo Date: Tue Nov 12 21:21:48 2019 New Revision: 517351 URL: https://svnweb.freebsd.org/changeset/ports/517351 Log: - Rename graphics/py-vips to graphics/py-pyvips. pyvips is the actual name of this software - Add LICENSE_FILE - Add missing RUN_DEPENDS Reported by: koobs Added: head/graphics/py-pyvips/ - copied from r517350, head/graphics/py-vips/ Deleted: head/graphics/py-vips/ Modified: head/MOVED head/graphics/Makefile head/graphics/py-pyvips/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Tue Nov 12 21:11:40 2019 (r517350) +++ head/MOVED Tue Nov 12 21:21:48 2019 (r517351) @@ -13456,3 +13456,4 @@ www/p5-WWW-Mechanize-PhantomJS||2019-11-02|Has expired x11/xfwp||2019-11-06|Has expired: Deprecated upstream x11/xfindproxy||2019-11-06|Has expired: Deprecated upstream security/clamav-milter|security/clamav|2019-11-12|Now that MILTER option is enabled by default, use security/clamav instead +graphics/py-vips|graphics/py-pyvips|2019-11-12|Rename for better naming Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Nov 12 21:11:40 2019 (r517350) +++ head/graphics/Makefile Tue Nov 12 21:21:48 2019 (r517351) @@ -880,7 +880,7 @@ SUBDIR += py-termtosvg SUBDIR += py-toyplot SUBDIR += py-traitsui - SUBDIR += py-vips + SUBDIR += py-pyvips SUBDIR += py-wand SUBDIR += py-webcolors SUBDIR += py-willow Modified: head/graphics/py-pyvips/Makefile ============================================================================== --- head/graphics/py-vips/Makefile Tue Nov 12 21:11:40 2019 (r517350) +++ head/graphics/py-pyvips/Makefile Tue Nov 12 21:21:48 2019 (r517351) @@ -1,20 +1,21 @@ # Created by: Danilo Egea Gondolfo # $FreeBSD$ -PORTNAME= vips +PORTNAME= pyvips PORTVERSION= 2.1.8 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= py${PORTNAME}-${PORTVERSION} MAINTAINER= danilo@FreeBSD.org COMMENT= Binding for the libvips image processing library LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=2.0.0:devel/py-pytest-runner@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cffi>=1.13:devel/py-cffi@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.13:devel/py-cffi@${PY_FLAVOR} LIB_DEPENDS= libvips.so:graphics/vips USES= gnome pkgconfig python