[Midnightbsd-cvs] mports [22333] U trunk/www/mod_python33/files/patch-src__connobject.c: update patchset
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Feb 25 11:09:07 EST 2017
Revision: 22333
http://svnweb.midnightbsd.org/mports/?rev=22333
Author: laffer1
Date: 2017-02-25 11:09:07 -0500 (Sat, 25 Feb 2017)
Log Message:
-----------
update patchset
Modified Paths:
--------------
trunk/www/mod_python33/Makefile
trunk/www/mod_python33/files/patch-configure
trunk/www/mod_python33/files/patch-src__connobject.c
Removed Paths:
-------------
trunk/www/mod_python33/files/patch-Makefile.in
Property Changed:
----------------
trunk/www/mod_python33/files/patch-configure
trunk/www/mod_python33/files/patch-src__connobject.c
Modified: trunk/www/mod_python33/Makefile
===================================================================
--- trunk/www/mod_python33/Makefile 2017-02-25 16:03:10 UTC (rev 22332)
+++ trunk/www/mod_python33/Makefile 2017-02-25 16:09:07 UTC (rev 22333)
@@ -16,9 +16,8 @@
CONFLICTS_INSTALL= ap2[24]-mod_python3[^3]*
-APACHE_PORT= www/apache22
USE_APACHE= 22
-USES= cpe python tar:tgz
+USES= cpe python:2.7 tar:tgz
CPE_VENDOR= apache
GNU_CONFIGURE= yes
Deleted: trunk/www/mod_python33/files/patch-Makefile.in
===================================================================
--- trunk/www/mod_python33/files/patch-Makefile.in 2017-02-25 16:03:10 UTC (rev 22332)
+++ trunk/www/mod_python33/files/patch-Makefile.in 2017-02-25 16:09:07 UTC (rev 22333)
@@ -1,10 +0,0 @@
---- ./Makefile.in.orig 2010-06-08 21:02:59.711010209 -0400
-+++ ./Makefile.in 2010-06-08 21:06:55.645681728 -0400
-@@ -61,6 +61,7 @@
- @echo
- $(INSTALL) -d $(DESTDIR)$(LIBEXECDIR)
- $(INSTALL) src/mod_python.so $(DESTDIR)$(LIBEXECDIR)
-+ ${APXS} -e -a -n python $(DESTDIR)$(LIBEXECDIR)/mod_python.so
- @echo
- @echo "Now don't forget to edit your main config and add"
- @echo " LoadModule python_module $(LIBEXECDIR)/mod_python.so"
Modified: trunk/www/mod_python33/files/patch-configure
===================================================================
--- trunk/www/mod_python33/files/patch-configure 2017-02-25 16:03:10 UTC (rev 22332)
+++ trunk/www/mod_python33/files/patch-configure 2017-02-25 16:09:07 UTC (rev 22333)
@@ -1,11 +1,11 @@
---- configure.orig Sat Aug 5 09:51:23 2006
-+++ configure Sat Aug 5 09:57:47 2006
-@@ -2899,7 +2899,7 @@
- PyLIBP=${PY_STD_LIB}
- PyLIBPL=${PyLIBP}/config
- PyPYTHONLIBS=${PyLIBPL}/libpython${PyVERSION}.a
--PyLIBS=`grep "^LIB[SMC]=" ${PyLIBPL}/Makefile | cut -f2 -d= | tr '\011\012\015' ' '`
-+PyLIBS=`ldd $PYTHON_BIN | sed -n 's,^.* => [^ ]*/lib\(.*\)\.so[^ ]* \((.*)\),-l\1,p' | grep -v '^-lc$' | xargs echo`
- PyMODLIBS=`grep "^LOCALMODLIBS=" ${PyLIBPL}/Makefile | cut -f2 -d= | tr '\011\012\015' ' '`
- PyFRAMEWORK=`grep "^PYTHONFRAMEWORK=" ${PyLIBPL}/Makefile | cut -f2 -d= | tr '\011\012\015' ' '`
- PyFRAMEWORKDIR=`grep "^PYTHONFRAMEWORKDIR=" ${PyLIBPL}/Makefile | cut -f2 -d= | tr '\011\012\015' ' ' | awk '{print $1}'`
+--- configure.orig 2006-03-11 03:46:52 UTC
++++ configure
+@@ -3013,7 +3013,7 @@ echo "$as_me:$LINENO: checking linker fl
+ echo $ECHO_N "checking linker flags used to link Python... $ECHO_C" >&6
+
+ PyLFS=`grep "^LINKFORSHARED=" ${PyLIBPL}/Makefile | cut -f2 -d= | tr '\011\012\015' ' '`
+-PyLDFLAGS=`grep "^LDFLAGS=" ${PyLIBPL}/Makefile | cut -f2 -d= | tr '\011\012\015' ' '`
++PyLDFLAGS=`grep "^LDFLAGS=" ${PyLIBPL}/Makefile | sed 's,^LDFLAGS=,,' | tr '\011\012\015' ' '`
+ LDFLAGS="${LDFLAGS} ${PyLFS} ${PyLDFLAGS}"
+ LDFLAGS="${LDFLAGS} ${PY_LDFLAGS}"
+ echo "$as_me:$LINENO: result: $PY_LDFLAGS" >&5
Property changes on: trunk/www/mod_python33/files/patch-configure
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Modified: trunk/www/mod_python33/files/patch-src__connobject.c
===================================================================
--- trunk/www/mod_python33/files/patch-src__connobject.c 2017-02-25 16:03:10 UTC (rev 22332)
+++ trunk/www/mod_python33/files/patch-src__connobject.c 2017-02-25 16:09:07 UTC (rev 22333)
@@ -1,6 +1,6 @@
---- src/connobject.c.orig 2008-08-28 12:30:24.000000000 +0000
-+++ src/connobject.c 2008-08-28 12:30:35.000000000 +0000
-@@ -139,7 +139,7 @@
+--- src/connobject.c.orig 2006-12-03 04:36:37 UTC
++++ src/connobject.c
+@@ -139,7 +139,7 @@ static PyObject * _conn_read(conn_rec *c
bytes_read = 0;
while ((bytes_read < len || len == 0) &&
Property changes on: trunk/www/mod_python33/files/patch-src__connobject.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list