Re: Preliminary python2 packages for Debian woody
Brent Verner wrote: > > $ apt-get update > $ apt-get install python2-base > > hmm, that wanted to remove most every other python (1.5.2-10) package on > my freshly updated unstable box. Any suggestions? It looks like the conflict is both -base packages provide python-curses. # dpkg --install python2-base_2.0-1_i386.deb dpkg: regarding python2-base_2.0-1_i386.deb containing python2-base: python2-base conflicts with python-curses python-base provides python-curses and is installed. dpkg: error processing python2-base_2.0-1_i386.deb (--install): conflicting packages - not installing python2-base Errors were encountered while processing: python2-base_2.0-1_i386.deb Rick --
Re: Dependencies on Python
This probably better belongs on python-list.. Has anyone built Python 2.1 alpha 2? I'd like to stow it and check out the new features. The build fails when unicodedata is enabled. It appears that unicodedatabase.c is missing. Rick --
Re: Dependencies on Python
Neil Schemenauer wrote: > On Mon, Feb 05, 2001 at 04:43:29PM -0800, Rick Younie wrote: >> Has anyone built Python 2.1 alpha 2? > > Yes. Yeah, I couldn't find anything on the SF bug page so I figured it was just me. >> It appears that unicodedatabase.c is missing. > > That file has been dead for a while. Perhaps your Modules/Setup > file is out of date. ucnhash.c too? Both are in Setup.dist, commented out. I'm using a Setup.local so I can carry the file forward to future pre-releases. The package builds OK with both these lines left commented out. The install fails later but I'll have another look at that now that I'm not goofy from no sleep. Thanks, Rick --