soarpenguin / python-multiprocessing

Automatically exported from code.google.com/p/python-multiprocessing
Other
0 stars 0 forks source link

make a release #8

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,

could you please make a release and add the tarball to the downloads
section? I'll then create a Debian package and get it to Debian/Ubuntu, so
that it becomes the de facto standard.

Currently there is a python-processing package, but the problem is that it
has a different interface. So if people want to use multiprocessing, but
are still stuck with python2.4 or 2.5, the only option is this backport --
so let's get it into distributions.

Thanks,
Ondrej

Original issue reported on code.google.com by ondrej.c...@gmail.com on 4 Dec 2008 at 11:39

GoogleCodeExporter commented 9 years ago
This is available at http://pypi.python.org/pypi/multiprocessing

Original comment by dr.andre...@gmail.com on 5 Feb 2009 at 11:49

GoogleCodeExporter commented 9 years ago
I'm having trouble getting this to build on ubuntu 8.04, so when I saw this 
message I
was filled with such joy. 
I was a bit disappointed to see only a windows build.

my build error is:

root@whynoti:/usr/local/python-multiprocessing# ./configure 
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for sem_open... yes
checking for sem_timedwait... yes
checking for fd transfer feature... yes
configure: creating ./config.status
config.status: creating mpconfig.h
root@whynoti:/usr/local/python-multiprocessing# make
find Lib/ \( -name '*.py[co]' -or -name '*.so' \) -exec rm {} \;
rm -rf build/sphinx
python2.5 setup.py build_ext -i
running build_ext
building 'multiprocessing._multiprocessing' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall 
-Wstrict-prototypes
-fPIC -IModules/_multiprocessing -I/usr/include/python2.5 
-Ibuild/temp.linux-i686-2.5
-c Modules/_multiprocessing/multiprocessing.c -o
build/temp.linux-i686-2.5/Modules/_multiprocessing/multiprocessing.o
In file included from Modules/_multiprocessing/multiprocessing.c:9:
Modules/_multiprocessing/multiprocessing.h:6:20: error: Python.h: No such file 
or
directory

Original comment by a.downy....@gmail.com on 14 Jun 2009 at 3:08

GoogleCodeExporter commented 9 years ago
I've been looking for Python.h. I can't find it?! It's not in 
/usr/lib/python2.5 or
/usr/include/python2.5

What?? 

Original comment by a.downy....@gmail.com on 14 Jun 2009 at 3:37

GoogleCodeExporter commented 9 years ago
apt-get install python-dev

doh! yeah, this makes sense. sorry for all the comments/emails.

Original comment by a.downy....@gmail.com on 14 Jun 2009 at 3:53