diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2016-06-12 22:00:49 -0500 |
---|---|---|
committer | Glenn Johnson <glenn-johnson@uiowa.edu> | 2016-06-12 22:00:49 -0500 |
commit | 4dcb15cf6d7ae2f6874972f1f9c339c056875500 (patch) | |
tree | 0994081ae470aa23941379df0a3bc13d8a5a3ed3 | |
parent | bdb9af63ed2128d7cad25f3788eb9ab7e7a43e1b (diff) | |
download | spack-4dcb15cf6d7ae2f6874972f1f9c339c056875500.tar.gz spack-4dcb15cf6d7ae2f6874972f1f9c339c056875500.tar.bz2 spack-4dcb15cf6d7ae2f6874972f1f9c339c056875500.tar.xz spack-4dcb15cf6d7ae2f6874972f1f9c339c056875500.zip |
Ran through autopep8 and cleaned up.
-rw-r--r-- | var/spack/repos/builtin/packages/postgresql/package.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/postgresql/package.py b/var/spack/repos/builtin/packages/postgresql/package.py index a3a3bfa64a..caf3768362 100644 --- a/var/spack/repos/builtin/packages/postgresql/package.py +++ b/var/spack/repos/builtin/packages/postgresql/package.py @@ -24,12 +24,13 @@ ############################################################################## from spack import * + class Postgresql(Package): - """PostgreSQL is a powerful, open source object-relational - database system. It has more than 15 years of active - development and a proven architecture that has earned it a - strong reputation for reliability, data integrity, and - correctness.""" + """PostgreSQL is a powerful, open source object-relational database system. + It has more than 15 years of active development and a proven architecture + that has earned it a strong reputation for reliability, data integrity, and + correctness.""" + homepage = "http://www.postgresql.org/" url = "http://ftp.postgresql.org/pub/source/v9.3.4/postgresql-9.3.4.tar.bz2" |