From owner-svn-ports-branches@FreeBSD.ORG Thu Jan 23 21:41:47 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B13E71D; Thu, 23 Jan 2014 21:41:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3B8241F1C; Thu, 23 Jan 2014 21:41:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NLfl11043583; Thu, 23 Jan 2014 21:41:47 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NLfkk9043581; Thu, 23 Jan 2014 21:41:46 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401232141.s0NLfkk9043581@svn.freebsd.org> From: Raphael Kubo da Costa Date: Thu, 23 Jan 2014 21:41:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r340863 - in branches/2014Q1/devel/shiboken: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jan 2014 21:41:47 -0000 Author: rakuco Date: Thu Jan 23 21:41:46 2014 New Revision: 340863 URL: http://svnweb.freebsd.org/changeset/ports/340863 QAT: https://qat.redports.org/buildarchive/r340863/ Log: MFH: r340659 Partially fix the build. Sphinx underwent an incompatible change in version 1.2 that removed the sphinx.ext.refcounting module. The module is referenced by shiboken's Sphinx configuration file, and the build fails. Fix it by removing the reference to sphinx.ext.refcounting, as it does not seem to be required and was probably added by default when the configuration file was generated. As mentioned, this is a partial fix: platforms that use libc++ by default are still broken due to other issues, but at least FreeBSD 8 and 9 should have a working package again. While here, also use the new syntax for LIB_DEPENDS. PR: ports/185179 Submitted by: rakuco@ Approved by: maintainer timeout (27 days) Approved by: portmgr (mat) Added: branches/2014Q1/devel/shiboken/files/patch-doc__conf.py.in - copied unchanged from r340659, head/devel/shiboken/files/patch-doc__conf.py.in Modified: branches/2014Q1/devel/shiboken/Makefile Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/devel/shiboken/Makefile ============================================================================== --- branches/2014Q1/devel/shiboken/Makefile Thu Jan 23 21:39:40 2014 (r340862) +++ branches/2014Q1/devel/shiboken/Makefile Thu Jan 23 21:41:46 2014 (r340863) @@ -13,8 +13,8 @@ COMMENT= C++ code generator for CPython LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -LIB_DEPENDS= xml2:${PORTSDIR}/textproc/libxml2 \ - xslt:${PORTSDIR}/textproc/libxslt +LIB_DEPENDS= libxml2.so:${PORTSDIR}/textproc/libxml2 \ + libxslt.so:${PORTSDIR}/textproc/libxslt PLIST_SUB= PORTVERSION=${PORTVERSION} \ PYTHON_VERSION=${PYTHON_VERSION} Copied: branches/2014Q1/devel/shiboken/files/patch-doc__conf.py.in (from r340659, head/devel/shiboken/files/patch-doc__conf.py.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q1/devel/shiboken/files/patch-doc__conf.py.in Thu Jan 23 21:41:46 2014 (r340863, copy of r340659, head/devel/shiboken/files/patch-doc__conf.py.in) @@ -0,0 +1,11 @@ +--- doc/conf.py.in.orig 2013-12-25 19:56:52.000000000 +0200 ++++ doc/conf.py.in 2013-12-25 19:57:00.000000000 +0200 +@@ -22,7 +22,7 @@ + + # Add any Sphinx extension module names here, as strings. They can be extensions + # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. +-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.ifconfig', 'sphinx.ext.refcounting', 'sphinx.ext.coverage'] ++extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.ifconfig', 'sphinx.ext.coverage'] + + rst_epilog = """ + .. |project| replace:: Shiboken