From owner-svn-ports-all@freebsd.org Sat Jan 2 23:09:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61E8BA5F52F; Sat, 2 Jan 2016 23:09:38 +0000 (UTC) (envelope-from rakuco@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 mx1.freebsd.org (Postfix) with ESMTPS id 1BEF91AC8; Sat, 2 Jan 2016 23:09:38 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u02N9bFM047259; Sat, 2 Jan 2016 23:09:37 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u02N9b3o047257; Sat, 2 Jan 2016 23:09:37 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601022309.u02N9b3o047257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 2 Jan 2016 23:09:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405100 - in head/deskutils: py-spice-gtk spice-gtk X-SVN-Group: ports-head 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.20 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: Sat, 02 Jan 2016 23:09:38 -0000 Author: rakuco Date: Sat Jan 2 23:09:36 2016 New Revision: 405100 URL: https://svnweb.freebsd.org/changeset/ports/405100 Log: py-spice-gtk: Fix plist and unmark BROKEN. The attached patch removes the static library version of SpiceClientGtk.a from the port's plist. After 0.26, the spice-gtk disables static builds by default. I tried passing --enable-static, but the build fails: gmake[3]: Entering directory '/wrkdirs/usr/ports/deskutils/py-spice-gtk/work/spice-gtk-0.30/tests' CC coroutine.o CC util.o CC session.o CCLD coroutine CCLD session CCLD util /usr/bin/ld: undefined reference to symbol `hypot@@FBSD_1.0' (try adding -lm) //lib/libm.so.5: could not read symbols: Bad value cc: error: linker command failed with exit code 1 (use -v to see invocation) Makefile:719: recipe for target 'session' failed PR: 205442 Approved by: maintainer timeout (15 days) Modified: head/deskutils/py-spice-gtk/Makefile head/deskutils/spice-gtk/Makefile Modified: head/deskutils/py-spice-gtk/Makefile ============================================================================== --- head/deskutils/py-spice-gtk/Makefile Sat Jan 2 23:04:57 2016 (r405099) +++ head/deskutils/py-spice-gtk/Makefile Sat Jan 2 23:09:36 2016 (r405100) @@ -6,6 +6,5 @@ MASTERDIR= ${.CURDIR}/../spice-gtk CONFLICTS= spice-gtk-[0-9]* SPICE_SLAVE= yes -BROKEN= fails to package .include "${MASTERDIR}/Makefile" Modified: head/deskutils/spice-gtk/Makefile ============================================================================== --- head/deskutils/spice-gtk/Makefile Sat Jan 2 23:04:57 2016 (r405099) +++ head/deskutils/spice-gtk/Makefile Sat Jan 2 23:09:36 2016 (r405100) @@ -20,13 +20,13 @@ BUILD_DEPENDS= spice-protocol>=0.12.10:$ ${PYTHON_PKGNAMEPREFIX}pyparsing>=2.0.1:${PORTSDIR}/devel/py-pyparsing .if defined(SPICE_SLAVE) +PORTREVISION= 1 CATEGORIES+= python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}gtk2>=0:${PORTSDIR}/x11-toolkits/py-gtk2 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}gtk2>=0:${PORTSDIR}/x11-toolkits/py-gtk2 CONFIGURE_ARGS+= --with-python -PLIST_FILES+= %%PYTHON_SITELIBDIR%%/SpiceClientGtk.a \ - %%PYTHON_SITELIBDIR%%/SpiceClientGtk.so +PLIST_FILES+= %%PYTHON_SITELIBDIR%%/SpiceClientGtk.so USES+= python .endif