philippe.ronfle...@gmail.com wrote: > Hello, > > I'm trying to compile Seamonkey for arm architecture on Raspberry Pi. > I followed the indications on this page: > https://developer.mozilla.org/en-us/docs/Mozilla/Developer_guide/Build_Instructions/Simple_SeaMonkey_build > > During the order > Python client.py checkout > I encounter the following error: > ----------------------------------------------------- > pi@raspberrypi:~/comm-central $ python client.py checkout > Executing command: ['hg', 'pull', '-R', './.'] > pulling from http://hg.mozilla.org/comm-central/ > searching for changes > aucun changement trouvé > Executing command: ['hg', 'update', '-r', 'default', '-R', './.'] > 0 files updated, 0 files merged, 0 files removed, 0 files unresolved > Updated to revision d91cb69a8e99e16a10a54167652fb9d95527f676. > Executing command: ['hg', 'clone', 'https://hg.mozilla.org/mozilla-central/', > './mozilla'] > requesting all changes > adding changesets > adding manifests > transaction abort! > rollback completed > abandon : connection ended unexpectedly > The exception was: > subprocess.CalledProcessError: Command '['hg', 'clone', > 'https://hg.mozilla.org/mozilla-central/', './mozilla']' returned non-zero > exit status 255
You wouldn't happen to be using Wifi, would you? The problem I see is that cloning from the actual repo is 'painful' if you are on wifi. (That's my experience). If, however, you aren't using wifi; I'm not sure. I think the 'best' thing for you to do is to download both comm-central's and mozilla-central's bundle and work from there: c-c's bundle: http://archive.mozilla.org/pub/seamonkey/bundles/comm-central.hg m-c's bundle: http://archive.mozilla.org/pub/firefox/bundles/mozilla-central.hg Then follow the following instructions: https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Source_Code/Mercurial/Bundles [assuming you downloaded the two bundles to ~/] 1) mkdir comm-central 2) cd comm-central 3) hg unbundle ~/comm-central.hg (this takes some time) 4) edit .hg/hgrc with whatever editor's available. Add the following and then save: [paths] default = https://hg.mozilla.org/comm-central/ 5) mkdir mozilla 6) cd mozilla 7) hg unbundle ~/mozilla-central.hg (again.. will take a while) 8) like #4, edit .hg/hgrc (from within the mozilla dir) 9) cd .. (you should be in ~/comm-central) 10) python client.py checkout [to actually update your two trees] Then continue on with https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/Simple_SeaMonkey_build > > > I downloaded locally the contents of https://hg.mozilla.org/mozilla-central/ > And I do not find a mozilla directory. > Is there an error in the source path, or is there another problem? > No. The |python client.py checkout| should've cloned mozilla-central to ./mozilla; but since you had trouble with it then you wouldn't have the ./mozilla dir. Edmund _______________________________________________ dev-builds mailing list dev-builds@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-builds