From owner-svn-ports-all@freebsd.org Fri May 24 09:55:41 2019 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 2733615A5A8F; Fri, 24 May 2019 09:55:41 +0000 (UTC) (envelope-from koobs@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 BA5CC85F13; Fri, 24 May 2019 09:55:40 +0000 (UTC) (envelope-from koobs@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 7BCBF1B1F5; Fri, 24 May 2019 09:55:40 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4O9tet3065858; Fri, 24 May 2019 09:55:40 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4O9teDx065857; Fri, 24 May 2019 09:55:40 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201905240955.x4O9teDx065857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 24 May 2019 09:55:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r502443 - branches/2019Q2/audio/lv2 X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2019Q2/audio/lv2 X-SVN-Commit-Revision: 502443 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BA5CC85F13 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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, 24 May 2019 09:55:41 -0000 Author: koobs Date: Fri May 24 09:55:40 2019 New Revision: 502443 URL: https://svnweb.freebsd.org/changeset/ports/502443 Log: MFH: audio/lv2: r499627 r502442 audio/lv2: Fix Python (3.x) build, Add missing dependencies While lv2 itself works fine with any Python version we support, the build fails using a Python > 3.6, since the build bundles an old version of waf. waf upstream fixed the bug in a later version. [1] Restrict Python to up to 3.6 for now. [2] While here: - Add missing dependencies identified in QA. [3] - Pet portlint (USES order) [1] https://gitlab.com/ita1024/waf/commit/facdc0b173d933073832c768ec1917c553cb369c PR: 235103 Reported by: cs [3] Submitted by: Charlie Li [2][3] Approved by: Michael Beer audio/lv2: Remove CONFLICTS_INSTALL lv2core expired and was deleted on 2016-11-30 in ports r427460 I only noted this after committing ports r499627, so remove it accordingly. PR: 235103 Approved by: Michael Beer (maintainer) Approved by: ports-secteam (blanket: build fix, missing dependencies) Modified: branches/2019Q2/audio/lv2/Makefile Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/audio/lv2/Makefile ============================================================================== --- branches/2019Q2/audio/lv2/Makefile Fri May 24 09:52:55 2019 (r502442) +++ branches/2019Q2/audio/lv2/Makefile Fri May 24 09:55:40 2019 (r502443) @@ -3,7 +3,7 @@ PORTNAME= lv2 PORTVERSION= 1.14.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://lv2plug.in/spec/ @@ -19,9 +19,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lx ${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}rdflib>0:textproc/py-rdflib@${PY_FLAVOR} -CONFLICTS_INSTALL= lv2core +USES= python:-3.6 shebangfix tar:bzip2 waf -USES= python shebangfix tar:bzip2 waf SHEBANG_FILES= lv2specgen/lv2specgen.py OPTIONS_DEFINE= DOCS DOXYGEN EXAMPLES @@ -34,9 +33,11 @@ DOXYGEN_PORTDOCS= * DOXYGEN_IMPLIES= DOCS EXAMPLES_CONFIGURE_OFF= --no-plugins -EXAMPLES_LIB_DEPENDS= libsndfile.so:audio/libsndfile -EXAMPLES_USES= pkgconfig -EXAMPLES_USE= GNOME=cairo,gtk20 +EXAMPLES_LIB_DEPENDS= libsndfile.so:audio/libsndfile \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 +EXAMPLES_USES= pkgconfig gnome +EXAMPLES_USE= GNOME=atk,cairo,gdkpixbuf2,glib20,gtk20,pango EXAMPLES_CONFIGURE_ENV= CC='${CC} -Wl,--as-needed' # Gtk deps post-install: