We are working on building a distro-specific package (RPM) of the Allura base install.
We are making the assumption that distribution of Allura in this manner would be desirable, but haven't been able to test operation of the deployed package.
When trying to run python setup.py install
for the Allura
app, I see the error:
can't copy 'allura/templates/widgets/repo': doesn't exist or not a regular file
We tracked this down to this line
We were able to fix this by changing a few of the lines:
- 'public/*/*', - 'templates/*/*'} + 'templates/**.html', + 'templates/**.py', + 'templates/**.xml', + 'templates/**.txt', + 'public/*/*/*/*/*'}
Thanks. I've committed this on the dev branch.