Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8e9de71cbc6c96bf39bc73fd8f29883c0b2c88c6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8e9de71cbc6c96bf39bc73fd8f29883c0b2c88c6)
  • Date: Sat, 20 Sep 2008 03:52:12 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

database/postgresql/CONFIGURE | 3 ++-
database/postgresql/DETAILS | 15 +++++++--------
database/postgresql/HISTORY | 5 +++++
database/postgresql/INSTALL | 6 +++---
database/postgresql/PRE_BUILD | 4 ++--
5 files changed, 19 insertions(+), 14 deletions(-)

New commits:
commit f1ab1da38288ab288de97590deecd431a701f38c
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

postgresql: => 8.3.4

diff --git a/database/postgresql/CONFIGURE b/database/postgresql/CONFIGURE
index 16a101c..6d345fa 100755
--- a/database/postgresql/CONFIGURE
+++ b/database/postgresql/CONFIGURE
@@ -1,4 +1,5 @@
-OLDVERSION=$(installed_version $SPELL)
+OLDVERSION=$(installed_version $SPELL) &&
+
if spell_ok $SPELL && [[ ${OLDVERSION%.*} != ${VERSION%.*} ]]; then
message "${PROBLEM_COLOR}" &&
message "You are about to upgrade (downgrade) your PostgreSQL installation
to a" &&
diff --git a/database/postgresql/DETAILS b/database/postgresql/DETAILS
index 1e0edda..c150b8d 100755
--- a/database/postgresql/DETAILS
+++ b/database/postgresql/DETAILS
@@ -1,8 +1,8 @@
SPELL=postgresql
- VERSION=8.3.3
-
SOURCE_HASH=sha512:bc7575ffce5012a2dd7cd016bceea53010d29714c1e6a89435785a871b91211012a2df286c2b594e79ce5a321bfc7f63c11451286fd746d191c062694b3cd219
+ VERSION=8.3.4
+
SOURCE_HASH=sha512:8fb35a48009f13afa70bc05ac888c511e91772013003449066ff4b7fad5fb9739b059cc431d5e2f8dce002a8389738815898abd05c7503fc59a6958e770ed4b2
SOURCE=$SPELL-$VERSION.tar.bz2
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"

SOURCE_URL[0]=ftp://ftp9.us.postgresql.org/pub/mirrors/$SPELL/source/v$VERSION/$SOURCE

SOURCE_URL[1]=ftp://ftp10.us.postgresql.org/pub/$SPELL/source/v$VERSION/$SOURCE

SOURCE_URL[2]=ftp://ftp13.us.postgresql.org/mirror/$SPELL/source/v$VERSION/$SOURCE
@@ -23,15 +23,14 @@ fi
KEYWORDS="database"
SHORT="sophisticated Object-Relational DBMS"
cat << EOF
-PostgreSQL is a sophisticated Object-Relational DBMS, supporting almost
-all SQL constructs, including subselects, transactions and user defined
-types and functions.
-A point list for some technical features that PostgreSQL offers:
+PostgreSQL is a sophisticated Object-Relational DBMS, supporting almost all
SQL
+constructs, including subselects, transactions and user defined types and
+functions. A point list for some technical features that PostgreSQL offers:
* Fully ACID compliant
* ANSI SQL compliant
* Referential Integrity
* Replication (non-commercial and commercial solutions)
-* Native interfaces for ODBC, JDBC, C, C++, PHP, Perl, TCL, ECPG, Python,
and Ruby
+* Native interfaces for ODBC, JDBC, C, C++, PHP, Perl, TCL, ECPG, Python,
Ruby
* Rules, Views, Triggers, Outer Joins, Sub-selects, Sequences, Stored
Procedures
* Support for UNION, UNION ALL and EXCEPT queries
* Unicode
diff --git a/database/postgresql/HISTORY b/database/postgresql/HISTORY
index 27b4a34..79ddea6 100644
--- a/database/postgresql/HISTORY
+++ b/database/postgresql/HISTORY
@@ -1,3 +1,8 @@
+2008-09-20 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 8.3.4; fixed long description wrap;
quoting
+ paths
+ * CONFIGURE: added missing `&&'
+
2008-07-17 Remko van der Vossen <wich AT sourcemage.org>
* CONFIGURE: Warn the user they need to have a dump of their database
system when upgrading (downgrading) and query the user whether they
diff --git a/database/postgresql/INSTALL b/database/postgresql/INSTALL
index 9b3cb53..96fd735 100755
--- a/database/postgresql/INSTALL
+++ b/database/postgresql/INSTALL
@@ -1,4 +1,4 @@
-cd $SOURCE_DIRECTORY &&
+cd "$SOURCE_DIRECTORY" &&
default_install &&

if is_depends_enabled $SPELL openssl; then
@@ -11,5 +11,5 @@ if is_depends_enabled $SPELL libxml2; then
default_install
fi &&

-touch $INSTALL_ROOT/var/log/postgres &&
-chown postgres:postgres $INSTALL_ROOT/var/log/postgres
+touch "$INSTALL_ROOT/var/log/postgres" &&
+chown postgres:postgres "$INSTALL_ROOT/var/log/postgres"
diff --git a/database/postgresql/PRE_BUILD b/database/postgresql/PRE_BUILD
index 19291c9..2f70e1b 100755
--- a/database/postgresql/PRE_BUILD
+++ b/database/postgresql/PRE_BUILD
@@ -1,7 +1,7 @@
default_pre_build &&
-cd $SOURCE_DIRECTORY &&
+cd "$SOURCE_DIRECTORY" &&

if [[ $PGSQL_CLUSTER == y ]]; then
verify_file 2 &&
- zcat $SOURCE_CACHE/$SOURCE2 | patch -p1
+ zcat "$SOURCE_CACHE/$SOURCE2" | patch -p1
fi



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8e9de71cbc6c96bf39bc73fd8f29883c0b2c88c6), Vlad Glagolev, 09/20/2008

Archive powered by MHonArc 2.6.24.

Top of Page