- Update to 3.7 - Take maintainership For Committer's reference: http://pdr.s.ubze.ro/bulk/latest-per-pkg/py27-omniorb/3.7/84i386-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/py27-omniorb/3.7/84amd64-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/py27-omniorb/3.7/92i386-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/py27-omniorb/3.7/92amd64-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/py27-omniorb/3.7/100i386-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/py27-omniorb/3.7/100amd64-default.log Doesn't build in HEAD due to failure of one of it's dependent devel/omniORB
Responsible Changed From-To: freebsd-ports-bugs->sunpoet sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Author: sunpoet Date: Sat Apr 26 18:13:09 2014 New Revision: 352319 URL: http://svnweb.freebsd.org/changeset/ports/352319 QAT: https://qat.redports.org/buildarchive/r352319/ Log: - Update to 3.7 - Add LICENSE - Use USES=gmake - Respect PORTEXAMPLES - Support STAGEDIR - Pass maintainership to submitter Changes: http://sourceforge.net/p/omniorb/svn/HEAD/tree/tags/4_1_7/omniORBpy/ReleaseNotes.txt PR: ports/188345 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> Modified: head/devel/py-omniorb/Makefile head/devel/py-omniorb/distinfo head/devel/py-omniorb/pkg-plist Modified: head/devel/py-omniorb/Makefile ============================================================================== --- head/devel/py-omniorb/Makefile Sat Apr 26 18:13:04 2014 (r352318) +++ head/devel/py-omniorb/Makefile Sat Apr 26 18:13:09 2014 (r352319) @@ -2,16 +2,18 @@ # $FreeBSD$ PORTNAME= omniorb -PORTVERSION= 3.6 +PORTVERSION= 3.7 CATEGORIES= devel python MASTER_SITES= SF/${PORTNAME}/omniORBpy/omniORBpy-${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= omniORBpy-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= 5u623l20@gmail.com COMMENT= Python bindings for omniORB4, a CORBA 2.6 ORB -LIB_DEPENDS= omniORB4.1:${PORTSDIR}/devel/omniORB +LICENSE= LGPL21 + +LIB_DEPENDS= libomniORB4.so:${PORTSDIR}/devel/omniORB RUN_DEPENDS= omniidl:${PORTSDIR}/devel/omniORB # parts of omniORB4 source tree is required to build omniORBpy; # see also the "post-extract" target below. @@ -19,45 +21,41 @@ BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR CONFLICTS= py*-orbit-2* -PLIST_SUB+= SONUM=${PORTVERSION:C/.*\.//} +OPTIONS_DEFINE= DOCS EXAMPLES + +PLIST_SUB= SONUM=${PORTVERSION:C/.*\.//} -USE_BZIP2= yes CONFIGURE_WRKSRC= ${WRKSRC}/build BUILD_WRKSRC= ${CONFIGURE_WRKSRC} INSTALL_WRKSRC= ${CONFIGURE_WRKSRC} OMNIORB_WRKSRC!= cd ${.CURDIR}/../omniORB && ${MAKE} -V WRKSRC USE_PYTHON= yes -USE_GMAKE= yes USE_OPENSSL= yes GNU_CONFIGURE= yes MAKEFILE= GNUmakefile USE_LDCONFIG= yes +USES= gmake tar:bzip2 CONFIGURE_SCRIPT= ../configure CONFIGURE_ENV+= PYTHON=${PYTHON_CMD} CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE} --with-omniorb=${LOCALBASE} -NO_STAGE= yes pre-configure: @${MKDIR} ${CONFIGURE_WRKSRC} @cd ${OMNIORB_WRKSRC} && ${FIND} idl | ${CPIO} --quiet -pdum ${WRKSRC} -pre-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR}/html - @${MKDIR} ${DOCSDIR}/tex - @${INSTALL_DATA} ${WRKSRC}/doc/omniORBpy.* ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/doc/omniORBpy/* ${DOCSDIR}/html - @${INSTALL_DATA} ${WRKSRC}/doc/tex/* ${DOCSDIR}/tex - @${MKDIR} ${EXAMPLESDIR} - @cd ${WRKSRC}/examples && ${FIND} . \ - | ${CPIO} --quiet -pdum -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} -.endif - post-install: - @${PYTHON_CMD} -c "import py_compile;py_compile.compile('${PYTHON_SITELIBDIR}/CosNaming/__init__.py',None,'${PYTHON_SITELIBDIR}/CosNaming/__init__.pyc',True)" - @${PYTHON_CMD} -c "import py_compile;py_compile.compile('${PYTHON_SITELIBDIR}/CosNaming__POA/__init__.py',None,'${PYTHON_SITELIBDIR}/CosNaming__POA/__init__.pyc',True)" - @${PYTHON_CMD} -c "import py_compile;py_compile.compile('${PYTHON_SITELIBDIR}/omniidl_be/python.py',None,'${PYTHON_SITELIBDIR}/omniidl_be/python.pyc',True)" + @${MKDIR} ${STAGEDIR}${DOCSDIR}/html + @${MKDIR} ${STAGEDIR}${DOCSDIR}/tex + ${INSTALL_DATA} ${WRKSRC}/doc/omniORBpy.* ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/omniORBpy/* ${STAGEDIR}${DOCSDIR}/html + ${INSTALL_DATA} ${WRKSRC}/doc/tex/* ${STAGEDIR}${DOCSDIR}/tex + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples && ${FIND} . \ + | ${CPIO} --quiet -pdum -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${EXAMPLESDIR} + cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('CosNaming/__init__.py',None,'CosNaming/__init__.pyc',True)" + cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('CosNaming__POA/__init__.py',None,'CosNaming__POA/__init__.pyc',True)" + cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('omniidl_be/python.py',None,'omniidl_be/python.pyc',True)" .include <bsd.port.mk> Modified: head/devel/py-omniorb/distinfo ============================================================================== --- head/devel/py-omniorb/distinfo Sat Apr 26 18:13:04 2014 (r352318) +++ head/devel/py-omniorb/distinfo Sat Apr 26 18:13:09 2014 (r352319) @@ -1,2 +1,2 @@ -SHA256 (omniORBpy-3.6.tar.bz2) = b845eef13b56dfb47c98d65636ede5155ed4b84b2a64e35831b94668878af7c7 -SIZE (omniORBpy-3.6.tar.bz2) = 613218 +SHA256 (omniORBpy-3.7.tar.bz2) = 64ddd49581b4f5dde04b8ed80d81ae96fd7efb1f8f6c8075aaf56de9522c1136 +SIZE (omniORBpy-3.7.tar.bz2) = 610025 Modified: head/devel/py-omniorb/pkg-plist ============================================================================== --- head/devel/py-omniorb/pkg-plist Sat Apr 26 18:13:04 2014 (r352318) +++ head/devel/py-omniorb/pkg-plist Sat Apr 26 18:13:09 2014 (r352319) @@ -340,66 +340,66 @@ include/omniORBpy.h %%PORTDOCS%%%%DOCSDIR%%/omniORBpy.pdf %%PORTDOCS%%%%DOCSDIR%%/tex/omniORBpy.bib %%PORTDOCS%%%%DOCSDIR%%/tex/omniORBpy.tex -%%PORTDOCS%%%%EXAMPLESDIR%%/echo/echo.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/echo/echo_clt.py -%%PORTDOCS%%%%EXAMPLESDIR%%/echo/echo_srv.py -%%PORTDOCS%%%%EXAMPLESDIR%%/echo/example_echo.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/echo/example_echo_clt.py -%%PORTDOCS%%%%EXAMPLESDIR%%/echo/example_echo_coloc.py -%%PORTDOCS%%%%EXAMPLESDIR%%/echo/example_echo_nsclt.py -%%PORTDOCS%%%%EXAMPLESDIR%%/echo/example_echo_nssrv.py -%%PORTDOCS%%%%EXAMPLESDIR%%/echo/example_echo_srv.py -%%PORTDOCS%%%%EXAMPLESDIR%%/embed/GNUmakefile -%%PORTDOCS%%%%EXAMPLESDIR%%/embed/GNUmakefile.in -%%PORTDOCS%%%%EXAMPLESDIR%%/embed/dir.mk -%%PORTDOCS%%%%EXAMPLESDIR%%/embed/echo.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/embed/embed.cc -%%PORTDOCS%%%%EXAMPLESDIR%%/embed/embed.py -%%PORTDOCS%%%%EXAMPLESDIR%%/fortune/fortune.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/fortune/fortune_server.py -%%PORTDOCS%%%%EXAMPLESDIR%%/poa/README -%%PORTDOCS%%%%EXAMPLESDIR%%/poa/echo.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/poa/mainthread.py -%%PORTDOCS%%%%EXAMPLESDIR%%/poa/servantactivator.py -%%PORTDOCS%%%%EXAMPLESDIR%%/poa/servantlocator.py -%%PORTDOCS%%%%EXAMPLESDIR%%/poa/singlethread.py -%%PORTDOCS%%%%EXAMPLESDIR%%/random/README -%%PORTDOCS%%%%EXAMPLESDIR%%/random/random.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/random/random_clt.py -%%PORTDOCS%%%%EXAMPLESDIR%%/tests/PerfTest.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/tests/TypeTest.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/tests/pclient.py -%%PORTDOCS%%%%EXAMPLESDIR%%/tests/pserver.py -%%PORTDOCS%%%%EXAMPLESDIR%%/tests/tclient.py -%%PORTDOCS%%%%EXAMPLESDIR%%/tests/tserver.py -%%PORTDOCS%%%%EXAMPLESDIR%%/tictactoe/README -%%PORTDOCS%%%%EXAMPLESDIR%%/tictactoe/gameClient.py -%%PORTDOCS%%%%EXAMPLESDIR%%/tictactoe/gameServer.py -%%PORTDOCS%%%%EXAMPLESDIR%%/tictactoe/tictactoe.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/valuetype/simple/client.py -%%PORTDOCS%%%%EXAMPLESDIR%%/valuetype/simple/server.py -%%PORTDOCS%%%%EXAMPLESDIR%%/valuetype/simple/value.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/valuetype/tests/client.py -%%PORTDOCS%%%%EXAMPLESDIR%%/valuetype/tests/server.py -%%PORTDOCS%%%%EXAMPLESDIR%%/valuetype/tests/value1.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/valuetype/tests/value2.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/weather/README -%%PORTDOCS%%%%EXAMPLESDIR%%/weather/gauge.py -%%PORTDOCS%%%%EXAMPLESDIR%%/weather/weather.py -%%PORTDOCS%%%%EXAMPLESDIR%%/weather/weatherInfo.idl -%%PORTDOCS%%%%EXAMPLESDIR%%/weather/wserver.py -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/weather -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/valuetype/tests -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/valuetype/simple -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/valuetype -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/tictactoe -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/tests -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/random -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/poa -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/fortune -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/embed -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/echo -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/echo.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/echo_clt.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/echo_srv.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/example_echo.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/example_echo_clt.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/example_echo_coloc.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/example_echo_nsclt.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/example_echo_nssrv.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/example_echo_srv.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/GNUmakefile +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/GNUmakefile.in +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/dir.mk +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/echo.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/embed.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/embed/embed.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fortune/fortune.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fortune/fortune_server.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/poa/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/poa/echo.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/poa/mainthread.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/poa/servantactivator.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/poa/servantlocator.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/poa/singlethread.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/random/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/random/random.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/random/random_clt.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/PerfTest.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/TypeTest.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pclient.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pserver.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/tclient.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/tserver.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tictactoe/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tictactoe/gameClient.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tictactoe/gameServer.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tictactoe/tictactoe.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/simple/client.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/simple/server.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/simple/value.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/tests/client.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/tests/server.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/tests/value1.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/tests/value2.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/gauge.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/weather.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/weatherInfo.idl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/wserver.py +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/weather +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/valuetype/tests +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/valuetype/simple +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/valuetype +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tictactoe +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/random +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/poa +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/fortune +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/embed +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/echo +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%/tex %%PORTDOCS%%@dirrm %%DOCSDIR%%/html %%PORTDOCS%%@dirrm %%DOCSDIR%% _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!