Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Aug 2018 07:47:30 +0000 (UTC)
From:      Babak Farrokhi <farrokhi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r476628 - head/devel/ipython
Message-ID:  <201808080747.w787lUEe096020@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808080747.w787lUEe096020>