From owner-svn-ports-all@freebsd.org Mon Jun 18 14:10:58 2018 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 AAA79100A16D; Mon, 18 Jun 2018 14:10:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5CA7180FD8; Mon, 18 Jun 2018 14:10:58 +0000 (UTC) (envelope-from feld@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 3F85625288; Mon, 18 Jun 2018 14:10:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IEAwu5064292; Mon, 18 Jun 2018 14:10:58 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IEAvlA064290; Mon, 18 Jun 2018 14:10:57 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201806181410.w5IEAvlA064290@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 18 Jun 2018 14:10:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472696 - in head/lang/mono: . files X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/lang/mono: . files X-SVN-Commit-Revision: 472696 X-SVN-Commit-Repository: ports 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.26 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, 18 Jun 2018 14:10:58 -0000 Author: feld Date: Mon Jun 18 14:10:57 2018 New Revision: 472696 URL: https://svnweb.freebsd.org/changeset/ports/472696 Log: lang/mono: Require python 2.7 - Revive python patch for mono-heapviz - Also remove unnecessary mirror/distfile tag Added: head/lang/mono/files/patch-scripts_mono-heapviz - copied unchanged from r472554, head/lang/mono/files/patch-scripts_mono-heapviz Modified: head/lang/mono/Makefile Modified: head/lang/mono/Makefile ============================================================================== --- head/lang/mono/Makefile Mon Jun 18 14:07:18 2018 (r472695) +++ head/lang/mono/Makefile Mon Jun 18 14:10:57 2018 (r472696) @@ -3,10 +3,10 @@ PORTNAME= mono PORTVERSION= 5.10.1.47 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang -MASTER_SITES= https://download.mono-project.com/sources/mono/:mono -DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:mono +MASTER_SITES= https://download.mono-project.com/sources/mono/ +DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= mono@FreeBSD.org COMMENT= Open source implementation of .NET Development Framework @@ -36,7 +36,7 @@ MONOLITE_VERSION= 1051000004 X11_USES= display:test USES= autoreconf bison compiler:c11 cpe gettext gmake iconv libtool \ - pathfix perl5 python shebangfix tar:bzip2 + pathfix perl5 python:2.7 shebangfix tar:bzip2 USE_PERL5= build GNU_CONFIGURE= yes USE_LDCONFIG= yes Copied: head/lang/mono/files/patch-scripts_mono-heapviz (from r472554, head/lang/mono/files/patch-scripts_mono-heapviz) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/mono/files/patch-scripts_mono-heapviz Mon Jun 18 14:10:57 2018 (r472696, copy of r472554, head/lang/mono/files/patch-scripts_mono-heapviz) @@ -0,0 +1,11 @@ +--- scripts/mono-heapviz.orig 2018-01-18 17:41:54 UTC ++++ scripts/mono-heapviz +@@ -7,7 +7,7 @@ + + from __future__ import print_function + import sys, os +-import Image, ImageDraw ++from PIL import Image, ImageDraw + from xml.sax import ContentHandler, make_parser + from xml.sax.handler import feature_namespaces + from optparse import OptionParser