~cjwatson/storm/psycopg-2.5

« back to all changes in this revision

Viewing changes to dev/ubuntu-deps

  • Committer: David Britton
  • Date: 2011-12-08 14:36:50 UTC
  • mto: This revision was merged to the branch mainline in revision 426.
  • Revision ID: dpb@canonical.com-20111208143650-jtv281762c1zq10h
Adding some dev setup scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash -eu
 
2
 
 
3
function apt_get() {
 
4
    DEBIAN_FRONTEND=noninteractive sudo apt-get \
 
5
        -y -o Dpkg::Options::='--force-confold' $*
 
6
}
 
7
 
 
8
apt_get install --no-install-recommends \
 
9
    python-mysqldb \
 
10
    mysql-server \
 
11
    postgresql \
 
12
    pgbouncer \
 
13
    build-essential \
 
14
    python-django \
 
15
    python-fixtures \
 
16
    python-psycopg2 \
 
17
    python-testresources \
 
18
    python-transaction \
 
19
    python-twisted \
 
20
    python-zope.component \
 
21
    python-zope.security
 
22
 
 
23
 
 
24
echo " * All Done!"