Ubuntu 10.04 Üzerinde Mercurial 1.5.4 Kurulumu


9

Kaynağı indirdim ve README talimatları aracılığıyla yüklemeyi denedim:

sudo make install

ancak aşağıdaki hataları alıyorum:

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

Şunları kullanarak yükleyebileceğimi biliyorum:

sudo apt-get install mercurial

ama bu bana eski bir sürüm getiriyor (1.4.3-1).

Yani, ne oluyor?

Yanıtlar:


4

Satırdan:

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

Görünüşe göre python için geliştirme araçlarına sahip değilsiniz. Şununla çöz:

sudo apt-get install python-dev

16

Ubuntu'nun en yeni sürümünü edinmek için Mercurial'ı elle oluşturmak zorunda değilsiniz. Https://launchpad.net/~mercurial-ppa/+archive/releases adresinde bir PPA deposu var

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

Bu arada. Ayrıca TortoiseHG için Nautilus'ta Mercurial işlevselliğinin güzel bir entegrasyonunu sunan bir PPA var: 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

Msgfmt için gettext yüklemeniz gerekir:

apt-get install gettext
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.