diff install issue
Posted: 29 August 2007 06:25 PM   [ Ignore ]
Newbie
Rank
Total Posts:  5
Joined  2007-08-25

Erlang (BEAM) emulator version

Eshell V5.5.5 (abort with ^G)
1> cean:install(diff). 
error: ubf,wiki not found in download
diff was not installed. failed to install all dependencies.
ok
2> cean:search(ubf). 
[{“ubf”,
  “language for transporting and describing complex data structures across a net
work”}]
3> cean:search(wiki).
[{“wiki”,“Joe Armstrong’s wiki code”},
{“pico”,“Joe Armstrong’s pico (http server) and wiki code”}]
4> cean:install(wiki).
+ pico md5=<<117,127,72,88,234,184,186,9,180,180,175,171,242,218,75,44>>
+ wiki md5=<<51,152,105,198,170,193,228,13,136,239,3,240,79,239,173,49>>
ok
5> cean:install(ubf).
+ parsetools md5=<<78,92,88,25,215,166,188,12,15,167,139,4,87,102,129,45>>
+ ubf md5=<<151,155,1,62,32,247,214,247,86,208,165,158,253,113,198,60>>
ok
6> cean:install(diff).
error: ubf,wiki not found in download
diff was not installed. failed to install all dependencies.
ok

Profile
 
 
Posted: 01 September 2007 10:54 PM   [ Ignore ]   [ # 1 ]
Moderator
Avatar
RankRankRankRank
Total Posts:  107
Joined  2006-11-13

indeed, diff uses find:file which is in ubf and wiki
so diff package uses a new dependency notation ubf,wiki which is “ubf or wiki”
but this functionality has not been developed yet smile

i corrected the package. diff new depends only on ubf.
install should work

Profile