From owner-svn-ports-head@freebsd.org Wed Aug 8 07:47:31 2018 Return-Path: Delivered-To: svn-ports-head@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 0A42F10522E7; Wed, 8 Aug 2018 07:47:31 +0000 (UTC) (envelope-from farrokhi@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 B338F737D6; Wed, 8 Aug 2018 07:47:30 +0000 (UTC) (envelope-from farrokhi@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 8FE0C27834; Wed, 8 Aug 2018 07:47:30 +0000 (UTC) (envelope-from farrokhi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w787lUEQ096021; Wed, 8 Aug 2018 07:47:30 GMT (envelope-from farrokhi@FreeBSD.org) Received: (from farrokhi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w787lUEe096020; Wed, 8 Aug 2018 07:47:30 GMT (envelope-from farrokhi@FreeBSD.org) Message-Id: <201808080747.w787lUEe096020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: farrokhi set sender to farrokhi@FreeBSD.org using -f From: Babak Farrokhi Date: Wed, 8 Aug 2018 07:47:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476628 - head/devel/ipython X-SVN-Group: ports-head X-SVN-Commit-Author: farrokhi X-SVN-Commit-Paths: head/devel/ipython X-SVN-Commit-Revision: 476628 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.27 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: Wed, 08 Aug 2018 07:47:31 -0000 Author: farrokhi Date: Wed Aug 8 07:47:30 2018 New Revision: 476628 URL: https://svnweb.freebsd.org/changeset/ports/476628 Log: devel/ipython: Remove leftover artifact after removing GCC dependency The ex script was supposed to add two lines in all scripts to set LD_LIBRARY_PATH and since we don't need to set that anymore (see removed GCC dependency in ports r476502), the whole script is now irrelevant. Reported by: antoine Reviewed by: koobs Approved by: koobs (python) Differential Revision: https://reviews.freebsd.org/D16605 Modified: head/devel/ipython/Makefile Modified: head/devel/ipython/Makefile ============================================================================== --- head/devel/ipython/Makefile Wed Aug 8 07:08:42 2018 (r476627) +++ head/devel/ipython/Makefile Wed Aug 8 07:47:30 2018 (r476628) @@ -3,6 +3,7 @@ PORTNAME= ipython PORTVERSION= 6.5.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -36,17 +37,6 @@ PORTEXAMPLES= * .if ${PYTHON_REL} < 3400 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pathlib2>=0:devel/py-pathlib2@${PY_FLAVOR} .endif - -post-install: - @${ECHO_CMD} "/EASY-INSTALL" > ${WRKDIR}/ex.script - @${ECHO_CMD} "a" >> ${WRKDIR}/ex.script - @${ECHO_CMD} "import os" >> ${WRKDIR}/ex.script - @${ECHO_CMD} "os.environ[\"LD_LIBRARY_PATH\"]=\"${_GCC_RUNTIME}\"" >> ${WRKDIR}/ex.script - @${ECHO_CMD} "." >> ${WRKDIR}/ex.script - @${ECHO_CMD} "x!" >> ${WRKDIR}/ex.script - @for file in ${STAGEDIR}${PREFIX}/bin/*; do \ - ex $${file} < ${WRKDIR}/ex.script > /dev/null; \ - done post-install-EXAMPLES-on: cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}