Update of /cvsroot/pure-data/externals/grill/py/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31148/build
Modified Files: config-lnx.def config-mac.def config-win.def Log Message: added message bundle functionality (pyext.Bundle class) enable compiled-only scripts (without .py) small optimizations and fixes small changes for numpy support enable module packages (module/__init__.py[co]), now also for Max compiler flag to exclude DSP objects some ASSERTs for explicitly created pyext classes (should be runtime checks i guess) added pyext._list and pyext._tuple to convert input lists to Python sequence objects let _inlets and _outlets default to 0
Index: config-mac.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/py/build/config-mac.def,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** config-mac.def 14 Mar 2005 04:58:09 -0000 1.3 --- config-mac.def 3 Aug 2006 16:33:37 -0000 1.4 *************** *** 1,3 **** ! # uncomment if numarray support should be compiled in ! # for info about numarray see http://numeric.scipy.org # PY_NUMARRAY=1 --- 1,5 ---- ! # uncomment if numpy/numarray/numeric support should be compiled in ! # for info see http://numeric.scipy.org ! PY_NUMPY=1 # PY_NUMARRAY=1 + # PY_NUMERIC=1
Index: config-lnx.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/py/build/config-lnx.def,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** config-lnx.def 14 Mar 2005 04:58:09 -0000 1.4 --- config-lnx.def 3 Aug 2006 16:33:37 -0000 1.5 *************** *** 3,9 ****
# which Python version do you want to compile against? ! PYTHONVERSION=2.3
! # uncomment if numarray support should be compiled in ! # for info about numarray see http://numeric.scipy.org # PY_NUMARRAY=1 --- 3,11 ----
# which Python version do you want to compile against? ! PYTHONVERSION=2.4
! # uncomment if numpy/numarray/numeric support should be compiled in ! # for info see http://numeric.scipy.org ! PY_NUMPY=1 # PY_NUMARRAY=1 + # PY_NUMERIC=1
Index: config-win.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/py/build/config-win.def,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** config-win.def 20 Sep 2005 20:50:40 -0000 1.6 --- config-win.def 3 Aug 2006 16:33:37 -0000 1.7 *************** *** 5,9 **** PYTHONPATH=%programfiles%/python$(PYTHONVER)
! # uncomment if numarray support should be compiled in ! # for info about numarray see http://numeric.scipy.org # PY_NUMARRAY=1 --- 5,11 ---- PYTHONPATH=%programfiles%/python$(PYTHONVER)
! # uncomment if numpy/numarray/numeric support should be compiled in ! # for info see http://numeric.scipy.org ! PY_NUMPY=1 # PY_NUMARRAY=1 + # PY_NUMERIC=1