Installation de Mercurial 1.5.4 sur Ubuntu 10.04


9

J'ai téléchargé la source et essayé d'installer via les instructions README:

sudo make install

mais j'obtiens les erreurs suivantes:

python setup.py  build
running build
running build_mo
warning: hgbuildmo: could not find msgfmt executable, no translations will be built
running build_py
running build_ext
building 'mercurial.base85' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c mercurial/base85.c -o build/temp.linux-x86_64-2.6/mercurial/base85.o
mercurial/base85.c:12:20: error: Python.h: No such file or directory
mercurial/base85.c: In function ‘b85prep’:
mercurial/base85.c:23: warning: implicit declaration of function ‘memset’
mercurial/base85.c:23: warning: incompatible implicit declaration of built-in function ‘memset’
mercurial/base85.c: At top level:
mercurial/base85.c:28: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
mercurial/base85.c:76: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
mercurial/base85.c:147: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘methods’
mercurial/base85.c:156: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘initbase85’
error: command 'gcc' failed with exit status 1
make: *** [build] Error 1

Gardez à l'esprit que je sais que je peux installer en utilisant:

sudo apt-get install mercurial

mais cela me donne une version plus ancienne (1.4.3-1).

Alors que se passe-t-il?

Réponses:


4

De la ligne:

mercurial/base85.c:12:20: error: Python.h: No such file or directory

il semble que vous ne disposiez pas des outils de développement pour python. Résolvez avec:

sudo apt-get install python-dev

16

Vous n'avez pas besoin de construire Mercurial à la main pour obtenir la dernière version sur Ubuntu. Il existe un référentiel PPA sur https://launchpad.net/~mercurial-ppa/+archive/releases

sudo add-apt-repository ppa:mercurial-ppa/releases
sudo apt-get update
sudo apt-get install mercurial

Au fait. Il existe également un PPA pour TortoiseHG qui offre une belle intégration de la fonctionnalité Mercurial dans Nautilus: https://launchpad.net/~tortoisehg-ppa/+archive/releases

sudo add-apt-repository ppa:tortoisehg-ppa/releases
sudo apt-get update
sudo apt-get install tortoisehg-nautilus

1

Vous devez installer gettext pour msgfmt:

apt-get install gettext
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.