Commit e0131ecf3505e10d56e6d1c10321c67360b33432
1 parent
67e58158
Exists in
master
and in
28 other branches
Fix installation from scratch on Lenny
Showing
3 changed files
with
15 additions
and
2 deletions
Show diff stats
debian/changelog
1 | +noosfero (0.35.2~1) unstable; urgency=low | |
2 | + | |
3 | + * Bugfixes version release | |
4 | + * Added missing Build dependencies to build in a clean chroot: rake, rails, | |
5 | + libferret-ruby, libwill-paginate-ruby, tango-icon-theme, rcov | |
6 | + * Noosfero needs a functioning MTA: added dependency on exim4 | | |
7 | + mail-transport-agent. | |
8 | + * /usr/share/dbconfig-common/scripts/noosfero/install/pgsql: run db:migrate | |
9 | + just after db:schema:load. | |
10 | + | |
11 | + -- Antonio Terceiro <terceiro@colivre.coop.br> Wed, 29 Feb 2012 15:22:48 -0300 | |
12 | + | |
1 | 13 | noosfero (0.35.1) unstable; urgency=low |
2 | 14 | |
3 | 15 | * Bugfixes version release | ... | ... |
debian/control
... | ... | @@ -3,7 +3,7 @@ Section: web |
3 | 3 | Priority: extra |
4 | 4 | Maintainer: Noosfero developers <noosfero-dev@listas.softwarelivre.org> |
5 | 5 | Uploaders: Antonio Terceiro <terceiro@colivre.coop.br> |
6 | -Build-Depends: debhelper (>= 7.0.50~), po4a, libgettext-ruby-util, libgettext-ruby1.8, libsqlite3-ruby1.8, | |
6 | +Build-Depends: debhelper (>= 7.0.50~), po4a, libgettext-ruby-util, libgettext-ruby1.8, libsqlite3-ruby1.8, rake, rails, libferret-ruby, libwill-paginate-ruby, tango-icon-theme, rcov | |
7 | 7 | Standards-Version: 3.8.4 |
8 | 8 | Homepage: http://noosfero.org/ |
9 | 9 | Vcs-Git: git://git.colivre.coop.br/noosfero.git |
... | ... | @@ -11,7 +11,7 @@ Vcs-Browser: http://git.colivre.coop.br/?p=noosfero.git |
11 | 11 | |
12 | 12 | Package: noosfero |
13 | 13 | Architecture: all |
14 | -Depends: rails, ruby1.8, ruby, rake, libgettext-ruby-data, libsqlite3-ruby, libpgsql-ruby, libmysql-ruby, librmagick-ruby, libredcloth-ruby, libwill-paginate-ruby, iso-codes, libfeedparser-ruby, libferret-ruby, libdaemons-ruby, rcov, mongrel, mongrel-cluster, tango-icon-theme, libhpricot-ruby, iso-codes, memcached, debconf, dbconfig-common, postgresql, adduser, ${misc:Depends} | |
14 | +Depends: rails, ruby1.8, ruby, rake, libgettext-ruby-data, libsqlite3-ruby, libpgsql-ruby, libmysql-ruby, librmagick-ruby, libredcloth-ruby, libwill-paginate-ruby, iso-codes, libfeedparser-ruby, libferret-ruby, libdaemons-ruby, rcov, mongrel, mongrel-cluster, tango-icon-theme, libhpricot-ruby, iso-codes, memcached, debconf, dbconfig-common, postgresql, adduser, exim4 | mail-transport-agent, ${misc:Depends} | |
15 | 15 | Recommends: postgresql-client |
16 | 16 | Description: free web-based platform for social networks |
17 | 17 | Noosfero is a web platform for social and solidarity economy networks with | ... | ... |
debian/dbinstall
... | ... | @@ -8,4 +8,5 @@ sed -i -e 's/adapter: pgsql/adapter: postgresql/' /etc/noosfero/database.yml |
8 | 8 | /etc/init.d/noosfero setup |
9 | 9 | |
10 | 10 | cd /usr/share/noosfero && su noosfero -c "rake db:schema:load RAILS_ENV=production" |
11 | +cd /usr/share/noosfero && su noosfero -c "rake db:migrate RAILS_ENV=production SCHEMA=/dev/null" | |
11 | 12 | cd /usr/share/noosfero && su noosfero -c "rake db:data:minimal RAILS_ENV=production" | ... | ... |