mcrider / azimuth

Azimuth is a simple, elegant, and fast CMS built using meteor.js.
232 stars 54 forks source link

Cant install on METEOR@0.9.3.1 #107

Closed jesperordrup closed 9 years ago

jesperordrup commented 10 years ago

I created a clean app called mrt add azimuth-views-foundation and got:

(a load of packages was installed ending with the following) Done installing smart packages

/usr/local/lib/node_modules/meteorite/lib/meteor.js:145 throw error; ^ Error: Command failed: => Errors while scanning packages:

While reading package from /Users/jesper/code/meteor/my-cms/packages/azimuth-core: package.js:11:7: Package names can only contain lowercase ASCII alphanumerics, dash, dot, or colon, not "F". package.js:14:7: Package names can only contain lowercase ASCII alphanumerics, dash, dot, or colon, not "F".

at ChildProcess.exithandler (child_process.js:648:15)
at ChildProcess.emit (events.js:98:17)
at maybeClose (child_process.js:756:16)
at Socket.<anonymous> (child_process.js:969:11)
at Socket.emit (events.js:95:17)
at Pipe.close (net.js:465:12)
epavlenko commented 10 years ago

This will fix that problem:

/packages/azimuth-core/package.js In lines 11 and 14: change 'collectionFS' to 'collectionfs' But after fixing it I get another: ``` Could not satisfy all the specified constraints: Error: unknown package: cfs-file /usr/local/lib/node_modules/meteorite/lib/command.js:41 throw "Command exited with " + code + "/" + signal; ^ Command exited with 1/null ```
timppa commented 9 years ago

+1 to this issue.

After following this thread, and fixing the case to 'collectionfs', I'm stuck in the same place.

Anybody have any advice how to continue?

I was following the Azimuth 'Getting Started' instructions here: http://azimuthc.ms/development

and got this error in step 5: mrt add azimuth-views-bootstrap

After fixing the case, re-issuing that command results in the same error @epavlenko gets.

I'm stuck.

ggaabe commented 9 years ago

In the same situation as @epavlenko and @timppa.

mcrider commented 9 years ago

Hey folks, after much frustration with the mrt migrate-package tool, i've created new meteor packages for azimuth-core/views-foundation/views-bootstrap and copied in the old code (then cleaned them up a bit). Still some cleanup needs to be done but you should be able to get Azimuth running using the standard instructions but replacing each package name with mcrider:[package_name] and replacing all usages of mrt with meteor.

mcrider commented 9 years ago

This should be resolved now. Still need to update the documentation.