From owner-svn-ports-head@freebsd.org Sun Dec 3 08:29:36 2017 Return-Path: Delivered-To: svn-ports-head@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 CF21DDF3F7F; Sun, 3 Dec 2017 08:29:36 +0000 (UTC) (envelope-from antoine@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 97269707D8; Sun, 3 Dec 2017 08:29:36 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB38TZCx045124; Sun, 3 Dec 2017 08:29:35 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB38TZVK045123; Sun, 3 Dec 2017 08:29:35 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201712030829.vB38TZVK045123@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 3 Dec 2017 08:29:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455393 - head/textproc/py-docutils X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/textproc/py-docutils X-SVN-Commit-Revision: 455393 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2017 08:29:36 -0000 Author: antoine Date: Sun Dec 3 08:29:35 2017 New Revision: 455393 URL: https://svnweb.freebsd.org/changeset/ports/455393 Log: Fix the symlinks when using a non default version of python PR: 224042 Reported and tested by: Peter Wullinger Modified: head/textproc/py-docutils/Makefile Modified: head/textproc/py-docutils/Makefile ============================================================================== --- head/textproc/py-docutils/Makefile Sun Dec 3 08:25:31 2017 (r455392) +++ head/textproc/py-docutils/Makefile Sun Dec 3 08:29:35 2017 (r455393) @@ -3,6 +3,7 @@ PORTNAME= docutils PORTVERSION= 0.14 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -28,7 +29,7 @@ SCRIPTS= rst2html rst2latex rst2man rst2odt rst2odt_pr post-install: .for script in ${SCRIPTS} - ${LN} -s ${script}.py ${STAGEDIR}${PREFIX}/bin/${script} + ${LN} -s ${script}.py-${PYTHON_VER} ${STAGEDIR}${PREFIX}/bin/${script} .endfor .include