Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cs-build can't find sproutcore/forms, sproutcore/ace #1

Open
alexissmirnov opened this issue Jul 18, 2010 · 6 comments
Open

cs-build can't find sproutcore/forms, sproutcore/ace #1

alexissmirnov opened this issue Jul 18, 2010 · 6 comments

Comments

@alexissmirnov
Copy link

git clone git://github.com/ialexi/hedwig.git hedwig
cd hedwig
sc-build says:

WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/docs
WARN ~ Could not find target sproutcore/ace that is required by /pig
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore
WARN ~ Could not find target sproutcore/ace that is required by /pig
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/media
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/media
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore
WARN ~ Could not find target sproutcore/forms that is required by /hedwig
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/runtime
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/runtime
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/standard_theme
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/standard_theme
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/welcome
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/mobile
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/mobile
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/foundation
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/foundation
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/empty_theme
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/empty_theme
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/greenhouse
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/designer
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/designer
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/datastore
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/datastore
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/iphone_theme
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/iphone_theme
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/mini
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/mini
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/core_tools
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/core_tools
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/statechart
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/statechart
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/datejs
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/datejs
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/testing
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/testing
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/tests
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/desktop
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/desktop
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/bootstrap
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/bootstrap
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/debug
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/debug
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/table
WARN ~ Could not find entry 'views/list' required in sproutcore/table:source/views/table.js
WARN ~ Could not find entry 'views/list' required in sproutcore/table:source/views/table_row.js
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/table
WARN ~ Could not find entry 'views/list' required in sproutcore/table:source/views/table.js
WARN ~ Could not find entry 'views/list' required in sproutcore/table:source/views/table_row.js
WARN ~ Could not find target sproutcore/forms that is required by /sproutcore/docs
FATAL ~ html_builder could not find a layout file for lib/index.rhtml

@ialexi
Copy link
Owner

ialexi commented Jul 18, 2010

I'm not saying that this will fix everything, but most of these problems are purely because Hedwig requires Quilmes branch.

However, keep in mind that I have been unable to update Hedwig since the 5-day sprint I created it in, so other things may be broken...

@alexissmirnov
Copy link
Author

with Quilmes branch seems only 'views/list' is missing:

sc-build says:

WARN ~ Could not find entry 'views/list' required in sproutcore.master/table:source/views/table.js
WARN ~ Could not find entry 'views/list' required in sproutcore.master/table:source/views/table_row.js
WARN ~ Could not find entry 'views/list' required in sproutcore.master/table:source/views/table.js
WARN ~ Could not find entry 'views/list' required in sproutcore.master/table:source/views/table_row.js
WARN ~ Could not find entry 'views/list' required in sproutcore/table:source/views/table.js
WARN ~ Could not find entry 'views/list' required in sproutcore/table:source/views/table_row.js
WARN ~ Could not find entry 'views/list' required in sproutcore/table:source/views/table.js
WARN ~ Could not find entry 'views/list' required in sproutcore/table:source/views/table_row.js
FATAL ~ html_builder could not find a layout file for lib/index.rhtml

@ialexi
Copy link
Owner

ialexi commented Jul 18, 2010

The views/list errors are of no concern (only applies to table view, which is not used); the last error is some breakage that occurred in SproutCore, I think; you can probably fix it if you copy lib/index.html into your own project's lib/index.html

@alexissmirnov
Copy link
Author

I'd happy to try, but need a little bit more info (i'm very new to sproutcore)

hedwig/apps/apps/hedwig/lib/ has only one file - index.rhtml, no index.html

Should I copy index.html from somewhere to hedwig/apps/apps/hedwig/lib/ ?

@ialexi
Copy link
Owner

ialexi commented Jul 18, 2010

ah, I meant index.rhtml. Weird that it is under apps; try putting it in /hedwig/lib/

@alexissmirnov
Copy link
Author

created hedwig/lib and copied hedwig/apps/hedwig/lib/index.rhtml into it. same result

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants