From owner-svn-ports-all@FreeBSD.ORG Mon May 20 20:46:22 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 731B9A49; Mon, 20 May 2013 20:46:22 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 4AF651EAD; Mon, 20 May 2013 20:46:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4KKkMSk043454; Mon, 20 May 2013 20:46:22 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4KKkLCc043451; Mon, 20 May 2013 20:46:21 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201305202046.r4KKkLCc043451@svn.freebsd.org> From: Koop Mast Date: Mon, 20 May 2013 20:46:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318626 - in head/devel/libsoup: . files 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.14 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: Mon, 20 May 2013 20:46:22 -0000 Author: kwm Date: Mon May 20 20:46:21 2013 New Revision: 318626 URL: http://svnweb.freebsd.org/changeset/ports/318626 Log: libsoup isn't python 3 safe restrict python version, patch script to call python2 since bin/python can be both major versions. [1] While here: Add build depend on python for above said script, document sqlite3 depend and mark jobs safe. Submitted by: eadler@ [1] Obtained from: GNOME devel repo Added: head/devel/libsoup/files/patch-libsoup_tld-parser.py (contents, props changed) Modified: head/devel/libsoup/Makefile Modified: head/devel/libsoup/Makefile ============================================================================== --- head/devel/libsoup/Makefile Mon May 20 20:16:03 2013 (r318625) +++ head/devel/libsoup/Makefile Mon May 20 20:46:21 2013 (r318626) @@ -1,10 +1,10 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/devel/libsoup/Makefile,v 1.116 2013/01/15 02:25:57 kwm Exp $ +# $MCom: ports/trunk/devel/libsoup/Makefile 18456 2013-05-12 14:40:21Z kwm $ PORTNAME= libsoup PORTVERSION= 2.40.3 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -20,12 +20,15 @@ USE_XZ= yes .if !defined(REFERENCE_PORT) -USES= gettext -USE_GNOME= gnomehier gnomehack glib20 libxml2 ltverhack referencehack \ - intltool +USES= gettext pathfix +USE_GNOME= gnomehier glib20 libxml2 ltverhack referencehack intltool +USE_SQLITE= 3 USE_LDCONFIG= yes USE_AUTOTOOLS= libtool USE_GMAKE= yes +MAKE_JOBS_SAFE= yes +USE_PYTHON_BUILD= -2.7 +CONFIGURE_ARGS= --disable-more-warnings CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Added: head/devel/libsoup/files/patch-libsoup_tld-parser.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libsoup/files/patch-libsoup_tld-parser.py Mon May 20 20:46:21 2013 (r318626) @@ -0,0 +1,8 @@ +--- libsoup/tld-parser.py.orig 2013-05-12 13:59:58.000000000 +0000 ++++ libsoup/tld-parser.py 2013-05-12 14:00:36.000000000 +0000 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python2 + + # Generate tld rules + # Copyright (C) 2012 Red Hat, Inc.