From oliphant at ee.byu.edu Mon Jul 23 22:01:00 2001 From: oliphant at ee.byu.edu (Travis Oliphant) Date: Mon, 23 Jul 2001 20:01:00 -0600 (MDT) Subject: [SciPy-dev] RPMs and source distribution In-Reply-To: <02f001c111bf$2e78a9d0$777ba8c0@190xb01> Message-ID: I've been playing for hours and finally have it so that python setup.py sdist python setup.by bdist_rpm work as expected. I have distributions and RPM's that I need to put somewhere. Thanks, -Travis From rossini at blindglobe.net Tue Jul 24 02:27:42 2001 From: rossini at blindglobe.net (A.J. Rossini) Date: 23 Jul 2001 23:27:42 -0700 Subject: [SciPy-dev] RPMs and source distribution In-Reply-To: References: Message-ID: <87snfmn8o1.fsf@jeeves.blindglobe.net> >>>>> "TO" == Travis Oliphant writes: TO> I've been playing for hours and finally have it so that TO> python setup.py sdist python setup.by bdist_rpm TO> work as expected. TO> I have distributions and RPM's that I need to put somewhere. So distutils stuff works? And are there any plans for a debian package (more "if not, I'll work at it", than an honest request). best, -tony -- A.J. Rossini Rsrch. Asst. Prof. of Biostatistics U. of Washington Biostatistics rossini at u.washington.edu FHCRC/SCHARP/HIV Vaccine Trials Net rossini at scharp.org -------- (wednesday/friday is unknown) -------- FHCRC: M-Tu : 206-667-7025 (fax=4812)|Voicemail is pretty sketchy/use Email UW: Th : 206-543-1044 (fax=3286)|Change last 4 digits of phone to FAX From oliphant at ee.byu.edu Tue Jul 24 02:46:36 2001 From: oliphant at ee.byu.edu (Travis Oliphant) Date: Tue, 24 Jul 2001 00:46:36 -0600 (MDT) Subject: [SciPy-dev] RPMs and source distribution In-Reply-To: <87snfmn8o1.fsf@jeeves.blindglobe.net> Message-ID: > >>>>> "TO" == Travis Oliphant writes: > > TO> I've been playing for hours and finally have it so that > > TO> python setup.py sdist python setup.by bdist_rpm > > TO> work as expected. > > TO> I have distributions and RPM's that I need to put somewhere. > > So distutils stuff works? > With a lot of help from our own classes, they do. It would be nice to get our changes put into the main Distutils tree. > And are there any plans for a debian package (more "if not, I'll work > at it", than an honest request). I have not heard of anyone who is working on this. It would be nice to add this to the distutils if possible so that python setup.py bdist_deb # or something similar works. Regards, Travis From rossini at blindglobe.net Tue Jul 24 02:58:46 2001 From: rossini at blindglobe.net (A.J. Rossini) Date: 23 Jul 2001 23:58:46 -0700 Subject: [SciPy-dev] RPMs and source distribution In-Reply-To: References: Message-ID: <87itgisti1.fsf@jeeves.blindglobe.net> >>>>> "TO" == Travis Oliphant writes: TO> I have not heard of anyone who is working on this. It would TO> be nice to add this to the distutils if possible so that TO> python setup.py bdist_deb # or something similar I'll update and take a look tommorow or tommorow night. best, -tony -- A.J. Rossini Rsrch. Asst. Prof. of Biostatistics U. of Washington Biostatistics rossini at u.washington.edu FHCRC/SCHARP/HIV Vaccine Trials Net rossini at scharp.org -------- (wednesday/friday is unknown) -------- FHCRC: M-Tu : 206-667-7025 (fax=4812)|Voicemail is pretty sketchy/use Email UW: Th : 206-543-1044 (fax=3286)|Change last 4 digits of phone to FAX From tjlahey at mud.cgl.uwaterloo.ca Tue Jul 24 20:53:00 2001 From: tjlahey at mud.cgl.uwaterloo.ca (Tim Lahey) Date: Tue, 24 Jul 2001 20:53:00 -0400 Subject: [SciPy-dev] Building SciPy on Mac OS X Message-ID: <20010725005337.PHSJ11181.tomts14-srv.bellnexxia.net@localhost> All, I've decide that I'm going to tackle getting SciPy working on Mac OS X. So, my basic tasks are: 1. Patch Fortran compilation to support f2c. If I'm correct, I just have to modify build_flib.py to add the new class ? 2. Patch Other libraries as needed. So far I've found the following: In the Cephes module, I had to do the following: special/cephes/polmisc.c - replace malloc.h with stdlib.h special/cephes/polyn.c - replace malloc.h with stdlib.h Because malloc and free are defined in stdlib.h on OS X. 3. GIST won't compile so an alternate plotting library is necessary. I've been thinking of developing a plotting library on top of PyOpenGL. There are even some descriptions on getting postscript output (as a set of vector primitives) using the feedback buffer at: http://reality.sgi.com/mjk_asd/tips/Feedback.html Thoughts ? Suggestions ? Thanks, Tim Lahey From tjlahey at mud.cgl.uwaterloo.ca Tue Jul 24 23:43:46 2001 From: tjlahey at mud.cgl.uwaterloo.ca (Tim Lahey) Date: Tue, 24 Jul 2001 23:43:46 -0400 Subject: [SciPy-dev] Building SciPy on Mac OS X Part II Message-ID: <20010725034411.SATM11181.tomts14-srv.bellnexxia.net@localhost> All, As I mentioned in my previous message, I've been trying to patch Fortran compilation to support f2c. Unfortunately, after some work on patching both build_flib.py and the fc f2c script, I ran into several problems. 1. fc puts the files into the current directory. 2. The build process runs into problems with the space in the platform name which contains "Power Macintosh". In particular, ar has problems with the space. I think, I'll wait until gcc 3.0 on OS X. That will have g77 support. Cheers, Tim Lahey