summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-db/postgresql/files')
-rw-r--r--dev-db/postgresql/files/digest-postgresql-8.0.0_beta53
-rw-r--r--dev-db/postgresql/files/digest-postgresql-8.0.0_rc13
-rw-r--r--dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_beta514
-rw-r--r--dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc114
-rw-r--r--dev-db/postgresql/files/pg_autovacuum.init-8.0.0_beta551
-rw-r--r--dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc151
-rw-r--r--dev-db/postgresql/files/postgresql-8.0.0_beta5-gentoo.patch16
-rw-r--r--dev-db/postgresql/files/postgresql-8.0.0_rc1-gentoo.patch18
8 files changed, 0 insertions, 170 deletions
diff --git a/dev-db/postgresql/files/digest-postgresql-8.0.0_beta5 b/dev-db/postgresql/files/digest-postgresql-8.0.0_beta5
deleted file mode 100644
index f28d6c40004c..000000000000
--- a/dev-db/postgresql/files/digest-postgresql-8.0.0_beta5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 74e770c9be4803f47ba87bb75f366c9f postgresql-base-8.0.0beta5.tar.bz2 7615755
-MD5 9b87a528e95c4b31d9bb0a190e8a453e postgresql-opt-8.0.0beta5.tar.bz2 132366
-MD5 f8ba322b97a3b129d75861deb8a0dd34 postgresql-docs-8.0.0beta5.tar.bz2 2150967
diff --git a/dev-db/postgresql/files/digest-postgresql-8.0.0_rc1 b/dev-db/postgresql/files/digest-postgresql-8.0.0_rc1
deleted file mode 100644
index 285111037cd8..000000000000
--- a/dev-db/postgresql/files/digest-postgresql-8.0.0_rc1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 ee407448d31ceab05ab826504ec1a9a3 postgresql-base-8.0.0rc1.tar.bz2 7625320
-MD5 3b528b1358cd11f2680b3e42e364176e postgresql-opt-8.0.0rc1.tar.bz2 133263
-MD5 4475878d380d2b420d74bc13233c7eff postgresql-docs-8.0.0rc1.tar.bz2 2159088
diff --git a/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_beta5 b/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_beta5
deleted file mode 100644
index f342ebfd2a47..000000000000
--- a/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_beta5
+++ /dev/null
@@ -1,14 +0,0 @@
-# The PostgreSQL user is:
-PGUSER=postgres
-
-# LOG file is:
-PG_AUTOVACUUM_LOG=/var/lib/postgresql/data/pg_autovacuum.log
-
-# See the pg_autovacuum documentation for the details of how these
-# parameters affect pg_autovacuum's aggressiveness.
-
-VACUUM_BASE=1000
-VACUUM_SCALE=2
-
-SLEEP_BASE=300
-SLEEP_SCALE=2
diff --git a/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc1 b/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc1
deleted file mode 100644
index f342ebfd2a47..000000000000
--- a/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc1
+++ /dev/null
@@ -1,14 +0,0 @@
-# The PostgreSQL user is:
-PGUSER=postgres
-
-# LOG file is:
-PG_AUTOVACUUM_LOG=/var/lib/postgresql/data/pg_autovacuum.log
-
-# See the pg_autovacuum documentation for the details of how these
-# parameters affect pg_autovacuum's aggressiveness.
-
-VACUUM_BASE=1000
-VACUUM_SCALE=2
-
-SLEEP_BASE=300
-SLEEP_SCALE=2
diff --git a/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_beta5 b/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_beta5
deleted file mode 100644
index 2da01a5c53ef..000000000000
--- a/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_beta5
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_beta5,v 1.1 2004/11/23 10:42:55 nakano Exp $
-
-depend() {
- need postgresql logger
-}
-
-start() {
- ebegin "Starting pg_autovacuum"
- echo ""
- echo -n "Waiting max. 10 sec. for postgresql to start "
- CONTINUE=0
- TOO_LONG=0
- while [ "$CONTINUE" -eq 0 ] && [ $TOO_LONG -lt 10 ]
- do
- psql -U $PGUSER -d template1 -c "SELECT 1" 1> /dev/null 2> /dev/null
- if [ "$?" -eq 0 ]
- then
- CONTINUE=1
- else
- echo -n "."
- TOO_LONG=`expr $TOO_LONG + 1`
- sleep 1
- fi
- done
- start-stop-daemon -o --chuid $PGUSER --start --quiet --exec /usr/bin/pg_autovacuum -- -D -v $VACUUM_BASE -V $VACUUM_SCALE -s $SLEEP_BASE -S $SLEEP_SCALE -L $PG_AUTOVACUUM_LOG
-
- sleep 1
- pidof /usr/bin/pg_autovacuum > /dev/null
- if [ $? -eq 0 ]; then
- eend 0
- else
- eerror ""
- eerror "Please see log file: $PG_AUTOVACUUM_LOG"
- eerror "You may need to add following lines in /var/lib/postgresql/data/postgresql.conf and restart PostgreSQL."
- eerror " stats_start_collector = true"
- eerror " stats_row_level = true"
-
- eerror "Please read ___DOCDIR___/contrib/README.pg_autovacuum for details."
- eend 1
- fi
-}
-
-stop() {
- ebegin "Stopping pg_autovacuum"
- start-stop-daemon --stop --quiet --exec /usr/bin/pg_autovacuum
- result=$?
- eend $result
-}
diff --git a/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc1 b/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc1
deleted file mode 100644
index ec70cca20c04..000000000000
--- a/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc1
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc1,v 1.1 2004/12/04 18:47:15 nakano Exp $
-
-depend() {
- need postgresql logger
-}
-
-start() {
- ebegin "Starting pg_autovacuum"
- echo ""
- echo -n "Waiting max. 10 sec. for postgresql to start "
- CONTINUE=0
- TOO_LONG=0
- while [ "$CONTINUE" -eq 0 ] && [ $TOO_LONG -lt 10 ]
- do
- psql -U $PGUSER -d template1 -c "SELECT 1" 1> /dev/null 2> /dev/null
- if [ "$?" -eq 0 ]
- then
- CONTINUE=1
- else
- echo -n "."
- TOO_LONG=`expr $TOO_LONG + 1`
- sleep 1
- fi
- done
- start-stop-daemon -o --chuid $PGUSER --start --quiet --exec /usr/bin/pg_autovacuum -- -D -v $VACUUM_BASE -V $VACUUM_SCALE -s $SLEEP_BASE -S $SLEEP_SCALE -L $PG_AUTOVACUUM_LOG
-
- sleep 1
- pidof /usr/bin/pg_autovacuum > /dev/null
- if [ $? -eq 0 ]; then
- eend 0
- else
- eerror ""
- eerror "Please see log file: $PG_AUTOVACUUM_LOG"
- eerror "You may need to add following lines in /var/lib/postgresql/data/postgresql.conf and restart PostgreSQL."
- eerror " stats_start_collector = true"
- eerror " stats_row_level = true"
-
- eerror "Please read ___DOCDIR___/contrib/README.pg_autovacuum for details."
- eend 1
- fi
-}
-
-stop() {
- ebegin "Stopping pg_autovacuum"
- start-stop-daemon --stop --quiet --exec /usr/bin/pg_autovacuum
- result=$?
- eend $result
-}
diff --git a/dev-db/postgresql/files/postgresql-8.0.0_beta5-gentoo.patch b/dev-db/postgresql/files/postgresql-8.0.0_beta5-gentoo.patch
deleted file mode 100644
index b0ec965d03fd..000000000000
--- a/dev-db/postgresql/files/postgresql-8.0.0_beta5-gentoo.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -Naru postgresql-8.0.0beta5.org/src/bin/initdb/initdb.c postgresql-8.0.0beta5/src/bin/initdb/initdb.c
---- postgresql-8.0.0beta5.org/src/bin/initdb/initdb.c 2004-08-29 06:06:52.000000000 +0100
-+++ postgresql-8.0.0beta5/src/bin/initdb/initdb.c 2004-09-02 09:18:00.634625577 +0100
-@@ -2499,11 +2499,7 @@
- fprintf(stderr, authwarning);
-
- printf(_("\nSuccess. You can now start the database server using:\n\n"
-- " %s%s%s/postmaster -D %s%s%s\n"
-- "or\n"
-- " %s%s%s/pg_ctl -D %s%s%s -l logfile start\n\n"),
-- QUOTE_PATH, bin_path, QUOTE_PATH, QUOTE_PATH, pg_data, QUOTE_PATH,
-- QUOTE_PATH, bin_path, QUOTE_PATH, QUOTE_PATH, pg_data, QUOTE_PATH);
-+ "/etc/init.d/postgresql start\n\n"));
-
- return 0;
- }
diff --git a/dev-db/postgresql/files/postgresql-8.0.0_rc1-gentoo.patch b/dev-db/postgresql/files/postgresql-8.0.0_rc1-gentoo.patch
deleted file mode 100644
index 28aeddf451d1..000000000000
--- a/dev-db/postgresql/files/postgresql-8.0.0_rc1-gentoo.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -Naru postgresql-8.0.0rc1.org/src/bin/initdb/initdb.c postgresql-8.0.0rc1/src/bin/initdb/initdb.c
---- postgresql-8.0.0rc1.org/src/bin/initdb/initdb.c 2004-11-29 03:05:03.000000000 +0000
-+++ postgresql-8.0.0rc1/src/bin/initdb/initdb.c 2004-12-04 18:02:43.757485824 +0000
-@@ -2617,13 +2617,7 @@
- get_parent_directory(bin_dir);
-
- printf(_("\nSuccess. You can now start the database server using:\n\n"
-- " %s%s%s%spostmaster -D %s%s%s\n"
-- "or\n"
-- " %s%s%s%spg_ctl -D %s%s%s -l logfile start\n\n"),
-- QUOTE_PATH, bin_dir, QUOTE_PATH, (strlen(bin_dir) > 0) ? DIR_SEP : "",
-- QUOTE_PATH, pg_data_native, QUOTE_PATH,
-- QUOTE_PATH, bin_dir, QUOTE_PATH, (strlen(bin_dir) > 0) ? DIR_SEP : "",
-- QUOTE_PATH, pg_data_native, QUOTE_PATH);
-+ "/etc/init.d/postgresql start\n\n"));
-
- return 0;
- }