summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasatomo Nakano <nakano@gentoo.org>2005-01-21 14:26:13 +0000
committerMasatomo Nakano <nakano@gentoo.org>2005-01-21 14:26:13 +0000
commit25d43bdcbb371978ecfb181c487f51428a7b68f0 (patch)
tree476920b3a6edd99d1526fb5e96078aa499d9cf95 /dev-db/postgresql/files
parentfix patching #78910 (diff)
downloadgentoo-2-25d43bdcbb371978ecfb181c487f51428a7b68f0.tar.gz
gentoo-2-25d43bdcbb371978ecfb181c487f51428a7b68f0.tar.bz2
gentoo-2-25d43bdcbb371978ecfb181c487f51428a7b68f0.zip
removed old ebuilds
(Portage version: 2.0.51-r14)
Diffstat (limited to 'dev-db/postgresql/files')
-rw-r--r--dev-db/postgresql/files/digest-postgresql-8.0.0_rc43
-rw-r--r--dev-db/postgresql/files/digest-postgresql-8.0.0_rc53
-rw-r--r--dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc414
-rw-r--r--dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc514
-rw-r--r--dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc451
-rw-r--r--dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc551
-rw-r--r--dev-db/postgresql/files/postgresql-8.0.0_rc4-gentoo.patch18
-rw-r--r--dev-db/postgresql/files/postgresql-8.0.0_rc5-gentoo.patch18
8 files changed, 0 insertions, 172 deletions
diff --git a/dev-db/postgresql/files/digest-postgresql-8.0.0_rc4 b/dev-db/postgresql/files/digest-postgresql-8.0.0_rc4
deleted file mode 100644
index ae4eaeba4648..000000000000
--- a/dev-db/postgresql/files/digest-postgresql-8.0.0_rc4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 e49bb4042f3782af9ec77ce85750ada9 postgresql-base-8.0.0rc4.tar.bz2 7733658
-MD5 f3bf13e392298c58976f73ac89e63e87 postgresql-opt-8.0.0rc4.tar.bz2 133476
-MD5 5ae44ee20770f977b61f134c0a707e53 postgresql-docs-8.0.0rc4.tar.bz2 2184001
diff --git a/dev-db/postgresql/files/digest-postgresql-8.0.0_rc5 b/dev-db/postgresql/files/digest-postgresql-8.0.0_rc5
deleted file mode 100644
index 303f8b111b1f..000000000000
--- a/dev-db/postgresql/files/digest-postgresql-8.0.0_rc5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 6b5d5d586915d5336435d99cac1844f1 postgresql-base-8.0.0rc5.tar.bz2 7799328
-MD5 997e7ebf6ec64314cf545191af582173 postgresql-opt-8.0.0rc5.tar.bz2 133479
-MD5 4ef436f8278a2df4e424935dc0850593 postgresql-docs-8.0.0rc5.tar.bz2 2193501
diff --git a/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc4 b/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc4
deleted file mode 100644
index f342ebfd2a47..000000000000
--- a/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc4
+++ /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_rc5 b/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc5
deleted file mode 100644
index f342ebfd2a47..000000000000
--- a/dev-db/postgresql/files/pg_autovacuum.conf-8.0.0_rc5
+++ /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_rc4 b/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc4
deleted file mode 100644
index 7776173df894..000000000000
--- a/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc4
+++ /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_rc4,v 1.1 2005/01/07 17:19:21 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_rc5 b/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc5
deleted file mode 100644
index 1cc09103ccf5..000000000000
--- a/dev-db/postgresql/files/pg_autovacuum.init-8.0.0_rc5
+++ /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_rc5,v 1.1 2005/01/12 10:05:46 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_rc4-gentoo.patch b/dev-db/postgresql/files/postgresql-8.0.0_rc4-gentoo.patch
deleted file mode 100644
index ad72100820f9..000000000000
--- a/dev-db/postgresql/files/postgresql-8.0.0_rc4-gentoo.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -Naru postgresql-8.0.0rc4.org/src/bin/initdb/initdb.c postgresql-8.0.0rc4/src/bin/initdb/initdb.c
---- postgresql-8.0.0rc4.org/src/bin/initdb/initdb.c 2004-11-29 03:05:03.000000000 +0000
-+++ postgresql-8.0.0rc4/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;
- }
diff --git a/dev-db/postgresql/files/postgresql-8.0.0_rc5-gentoo.patch b/dev-db/postgresql/files/postgresql-8.0.0_rc5-gentoo.patch
deleted file mode 100644
index 925b4dd7548d..000000000000
--- a/dev-db/postgresql/files/postgresql-8.0.0_rc5-gentoo.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -Naru postgresql-8.0.0rc5.org/src/bin/initdb/initdb.c postgresql-8.0.0rc5/src/bin/initdb/initdb.c
---- postgresql-8.0.0rc5.org/src/bin/initdb/initdb.c 2004-11-29 03:05:03.000000000 +0000
-+++ postgresql-8.0.0rc5/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;
- }