svn commit: r357241 - in head/java/eclipse-pydev: . files

Nicola Vitale nivit at FreeBSD.org
Tue Jun 10 02:45:14 UTC 2014


Author: nivit
Date: Tue Jun 10 02:45:13 2014
New Revision: 357241
URL: http://svnweb.freebsd.org/changeset/ports/357241
QAT: https://qat.redports.org/buildarchive/r357241/

Log:
  - Update to 2.8.2
  - Add support for stage dir
  - Sort variables
  - Remove post-install target
  - Remove files/pkg-install.in
  
  Release Notes:	http://pydev.org/history_pydev.html

Deleted:
  head/java/eclipse-pydev/files/
Modified:
  head/java/eclipse-pydev/Makefile
  head/java/eclipse-pydev/distinfo

Modified: head/java/eclipse-pydev/Makefile
==============================================================================
--- head/java/eclipse-pydev/Makefile	Tue Jun 10 02:37:54 2014	(r357240)
+++ head/java/eclipse-pydev/Makefile	Tue Jun 10 02:45:13 2014	(r357241)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	pydev
-PORTVERSION=	2.8.1
+PORTVERSION=	2.8.2
 PORTREVISION=	0
 CATEGORIES=	java devel python
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/PyDev%20${PORTVERSION}/
@@ -16,49 +16,42 @@ LICENSE=	EPL
 
 RUN_DEPENDS=	eclipse:${PORTSDIR}/java/eclipse
 
+BUNDLES_INFO=	${PREFIX}/lib/eclipse/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info
+
+DISTDATE=	2013090511
+
+JYTHON_DESC=	Use Jython as Python interpreter
+
 NO_WRKSUBDIR=	yes
 
 OPTIONS_DEFINE=	JYTHON
-JYTHON_DESC=	Use Jython as Python interpreter
 
+PLUGINDIR=	share/eclipse/dropins/pydev/eclipse/plugins
+PYDEV_BUNDLES_INFO=	${PREFIX}/${PLUGINDIR}/bundles.info
+
+USE_PYTHON=	yes
 USES=		zip
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MJYTHON}
 RUN_DEPENDS+=	jython:${PORTSDIR}/lang/jython
 .endif
 
-USE_PYTHON=	yes
-
-DISTDATE=	2013072611
-
-SUB_FILES=	pkg-install
-SUB_LIST=	BUNDLES_INFO=${BUNDLES_INFO} PLUGINDIR=${PLUGINDIR}
-
 pre-install:
-	@# ignore javashell.py file, because there is a syntax error
-	@# see http://goo.gl/E4epH
-	${PYTHON_CMD} -m compileall  -x javashell.py -f ${WRKSRC}/plugins
-	${PYTHON_CMD} -O -m compileall -x javashell.py -f ${WRKSRC}
-
-PLUGINDIR=	share/eclipse/dropins/pydev/eclipse/plugins
-BUNDLES_INFO=	${PREFIX}/lib/eclipse/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info
-
-post-install:
-	@${ECHO_MSG} "===>   Updating ${BUNDLES_INFO}"
-	@PLUGINS=$$(ls -1 ${PREFIX}/${PLUGINDIR}); \
+	@${ECHO_MSG} "===>   Creating bundles.info"
+	@PLUGINS=$$(ls -1 ${WRKDIR}/plugins); \
 	for d in $${PLUGINS}; do \
 	    (${ECHO_CMD} "$${d},../../${PLUGINDIR}/$${d}/,4,false" | \
-	    ${SED} -e 's/_\([0-9]\)/,\1/1' -e '/templates/d') >> ${BUNDLES_INFO}; \
+	    ${SED} -e 's/_\([0-9]\)/,\1/1' -e '/templates/d') >> ${WRKDIR}/plugins/bundles.info; \
 	done
-	@(${SORT} ${BUNDLES_INFO} > ${BUNDLES_INFO}.sort) && \
-	${MV} ${BUNDLES_INFO}.sort ${BUNDLES_INFO}
-	@${CAT} ${PKGMESSAGE}
+	@# ignore javashell.py file, because there is a syntax error
+	@# see http://goo.gl/E4epH
+	${PYTHON_CMD} -m compileall -x javashell.py -f ${WRKSRC}/plugins
+	${PYTHON_CMD} -O -m compileall -x javashell.py -f ${WRKSRC}
 
 add-plist-post:
-	@${ECHO_CMD} "@exec ${MKDIR} %D/share/eclipse/dropins/${PORTNAME}/eclipse/plugins/com.python.pydev.codecompletion_${PORTVERSION}.${DISTDATE}/icons" >> ${TMPPLIST}
+	@${ECHO_CMD} "@exec ${CAT} ${PYDEV_BUNDLES_INFO} >> ${BUNDLES_INFO}" >> ${TMPPLIST}
 	@${ECHO_CMD} "@unexec ${SED} -i '' -E '/^((org)|(com))\.python\.pydev/d' %D/lib/eclipse/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info" >> ${TMPPLIST}
 
 .include "${PORTSDIR}/java/eclipse/Makefile.plugins"

Modified: head/java/eclipse-pydev/distinfo
==============================================================================
--- head/java/eclipse-pydev/distinfo	Tue Jun 10 02:37:54 2014	(r357240)
+++ head/java/eclipse-pydev/distinfo	Tue Jun 10 02:45:13 2014	(r357241)
@@ -1,2 +1,2 @@
-SHA256 (PyDev%202.8.1.zip) = 779d5bb8a0b2c77b13c19c482a178511f40e4640c55c42967af6105ce437cbde
-SIZE (PyDev%202.8.1.zip) = 7956817
+SHA256 (PyDev%202.8.2.zip) = 4219c513d182d0dd96d81ab2c2fa788271a40bbd51a696f4a2468c98af11f229
+SIZE (PyDev%202.8.2.zip) = 8070787


More information about the svn-ports-head mailing list