Index: mod_wsgi3/Makefile =================================================================== --- mod_wsgi3/Makefile (revision 390260) +++ mod_wsgi3/Makefile (working copy) @@ -9,10 +9,12 @@ MAINTAINER= douglas@douglasthrift.net COMMENT= Python WSGI adapter module for Apache +DEPRECATED= Not longer used in the ports tree +EXPIRATION_DATE=2015-07-21 + LICENSE= APACHE20 -CONFLICTS_INSTALL=${PKGNAMEPREFIX}mod_wsgi2.* mod_wsgi2.* \ - ${PKGNAMEPREFIX}mod_wsgi-2.* mod_wsgi-2.* +CONFLICTS_INSTALL=${PKGNAMEPREFIX}mod_wsgi4.* mod_wsgi4.* PROJECTHOST= modwsgi Index: mod_wsgi3/pkg-descr =================================================================== --- mod_wsgi3/pkg-descr (revision 390260) +++ mod_wsgi3/pkg-descr (working copy) @@ -4,4 +4,4 @@ for hosting WSGI applications within Apache has a lower overhead than using existing WSGI adapters for mod_python or CGI. -WWW: http://www.modwsgi.org/ +WWW: https://github.com/GrahamDumpleton/mod_wsgi/ Index: mod_wsgi4/Makefile =================================================================== --- mod_wsgi4/Makefile (revision 0) +++ mod_wsgi4/Makefile (working copy) @@ -0,0 +1,43 @@ +# $FreeBSD$ + +PORTNAME= mod_wsgi +PORTVERSION= 4.4.13 +CATEGORIES= www python +PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} +PKGNAMESUFFIX= 4 + +MAINTAINER= douglas@douglasthrift.net +COMMENT= Python WSGI adapter module for Apache + +LICENSE= APACHE20 + +CONFLICTS_INSTALL=${PKGNAMEPREFIX}mod_wsgi3.* mod_wsgi3.* + +PROJECTHOST= modwsgi + +USE_APACHE= 22+ +USES= python +USE_GITHUB= yes +GH_ACCOUNT= GrahamDumpleton + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--with-apxs="${APXS}" --with-python="${PYTHON_CMD}" + +SUB_FILES= pkg-message ${APMOD_FILE} +APMOD_FILE= 270_${PORTNAME}.conf.sample +PLIST_SUB+= APMOD_FILE=${APMOD_FILE} + + +pre-everything:: + @${ECHO_MSG} "======================= ATTENTION! ======================" + @${ECHO_MSG} + @${ECHO_MSG} "If you want to use daemon mode you will need to make sure" + @${ECHO_MSG} "Apache and APR include thread support." + @${ECHO_MSG} + @${ECHO_MSG} "=========================================================" + +post-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d + ${INSTALL_DATA} ${WRKDIR}/${APMOD_FILE} ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${APACHEMODDIR}/${PORTNAME}.so +.include Property changes on: mod_wsgi4/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: mod_wsgi4/distinfo =================================================================== --- mod_wsgi4/distinfo (revision 0) +++ mod_wsgi4/distinfo (working copy) @@ -0,0 +1,2 @@ +SHA256 (GrahamDumpleton-mod_wsgi-4.4.13_GH0.tar.gz) = e7a84e4af0da953070ab993268118791c7d3c7383d99e8b1c2e0ff88eb29c286 +SIZE (GrahamDumpleton-mod_wsgi-4.4.13_GH0.tar.gz) = 631708 Property changes on: mod_wsgi4/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: mod_wsgi4/files/270_mod_wsgi.conf.sample.in =================================================================== --- mod_wsgi4/files/270_mod_wsgi.conf.sample.in (revision 0) +++ mod_wsgi4/files/270_mod_wsgi.conf.sample.in (working copy) @@ -0,0 +1,9 @@ +## $FreeBSD$ +## vim: set filetype=apache: +## +## module file for mod_wsgi +## +## PROVIDE: mod_wsgi +## REQUIRE: + +#LoadModule wsgi_module %%APACHEMODDIR%%/mod_wsgi.so Property changes on: mod_wsgi4/files/270_mod_wsgi.conf.sample.in ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: mod_wsgi4/files/pkg-message.in =================================================================== --- mod_wsgi4/files/pkg-message.in (revision 0) +++ mod_wsgi4/files/pkg-message.in (working copy) @@ -0,0 +1,8 @@ +============================================================================ + +If you want to use daemon mode you will need to make sure Apache and APR +include thread support. + +For more information, see http://www.modwsgi.org/wiki/InstallationOnFreeBSD. + +============================================================================ Property changes on: mod_wsgi4/files/pkg-message.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: mod_wsgi4/pkg-descr =================================================================== --- mod_wsgi4/pkg-descr (revision 0) +++ mod_wsgi4/pkg-descr (working copy) @@ -0,0 +1,7 @@ +The mod_wsgi adapter is an Apache module that provides a WSGI compliant +interface for hosting Python based web applications within Apache. The +adapter is written completely in C code against the Apache C runtime and +for hosting WSGI applications within Apache has a lower overhead than using +existing WSGI adapters for mod_python or CGI. + +WWW: https://github.com/GrahamDumpleton/mod_wsgi/ Property changes on: mod_wsgi4/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: mod_wsgi4/pkg-plist =================================================================== --- mod_wsgi4/pkg-plist (revision 0) +++ mod_wsgi4/pkg-plist (working copy) @@ -0,0 +1,3 @@ +@sample %%APACHEETCDIR%%/modules.d/%%APMOD_FILE%% +%%APACHEMODDIR%%/%%AP_MODULE%% +@unexec echo "Don't forget to remove all mod_wsgi-related directives in your httpd.conf" Property changes on: mod_wsgi4/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property