From e614b546338c824e964cd08729f7338e920c51c9 Mon Sep 17 00:00:00 2001 From: Nagy Karoly Gabriel Date: Thu, 22 Nov 2007 14:46:01 +0200 Subject: [PATCH] added pg_filedump to wip --- wip/pg_filedump/pg_filedump.conf | 1 + wip/pg_filedump/pg_filedump.desc | 22 ++++++++++++++++++++++ wip/pg_filedump/pkg_postgresql_pre.conf | 8 ++++++++ 3 files changed, 31 insertions(+) create mode 100644 wip/pg_filedump/pg_filedump.conf create mode 100644 wip/pg_filedump/pg_filedump.desc create mode 100644 wip/pg_filedump/pkg_postgresql_pre.conf diff --git a/wip/pg_filedump/pg_filedump.conf b/wip/pg_filedump/pg_filedump.conf new file mode 100644 index 000000000..01ce3022d --- /dev/null +++ b/wip/pg_filedump/pg_filedump.conf @@ -0,0 +1 @@ +# This is deliberatly empty diff --git a/wip/pg_filedump/pg_filedump.desc b/wip/pg_filedump/pg_filedump.desc new file mode 100644 index 000000000..bb02a60c4 --- /dev/null +++ b/wip/pg_filedump/pg_filedump.desc @@ -0,0 +1,22 @@ + +[I] A PostgerSQL utility + +[T] An utility to format PostgreSQL heap/index/control files +[T] into a human-readable form. Can format/dump the files several ways, +[T] as listed in the Invocation section, as well as dumping straight binary. +[T] Forensics utility, not for the faint of heart ones. + +[U] http://sources.redhat.com/rhdb/index.html + +[A] The RHDB team {http://sources.redhat.com/rhdb/who.html} +[M] Nagy Karoly Gabriel + +[C] extra/database + +[L] GPL +[S] Stable +[V] 8.2 +[P] X -----5---9 125.000 + +[D] 0 pg_filedump-8.2.tar http://sources.redhat.com/rhdb/tools/ + diff --git a/wip/pg_filedump/pkg_postgresql_pre.conf b/wip/pg_filedump/pkg_postgresql_pre.conf new file mode 100644 index 000000000..13b5eaf43 --- /dev/null +++ b/wip/pg_filedump/pkg_postgresql_pre.conf @@ -0,0 +1,8 @@ +pg_dmp_ver=$( pkgdesc ver pg_filedump ) +echo_status "Including PG_FileDump (${pg_dmp_ver}) support." + +hook_add preconf 5 'pg_filedump_install' +pg_filedump_install() { + tar -v $taropt $( match_source_file -p pg_filedump ) -C $builddir/contrib +touch config/$config/.pause +}