Re: [HACKERS] Current sources?

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: scrappy(at)hub(dot)org (The Hermit Hacker)
Cc: tgl(at)sss(dot)pgh(dot)pa(dot)us, pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Current sources?
Date: 1998-05-23 23:32:26
Message-ID: 199805232332.TAA24878@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Here is what I have been using. I use -z6 because that is the default
gzip compression level. This is not an anon login, but I have been
using it for over a month now. You will probably have to do an anon
login first, so it stores a file in your home directory for later use.

Also attached is my pgcommit script.

---------------------------------------------------------------------------

:
cd /pgcvs || exit 1
cvs -z 6 -d :pserver:momjian(at)hub(dot)org:/usr/local/cvsroot -q update "$@" pgsql
chown -R postgres .
pgfixups
cd /u/src/pg/src
nice configure \
--with-x --with-tcl \
--enable-cassert \
--with-template=bsdi-3.0 \
--with-includes="/u/readline" \
--with-libraries="/u/readline /usr/contrib/lib"

---------------------------------------------------------------------------

:
trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15
cd /u/src/pgsql || exit 1
ema /tmp/$$
fmt /tmp/$$ >/tmp/$$a
cat /tmp/$$a
chown postgres /tmp/$$a
cvs -z 6 -d :pserver:momjian(at)hub(dot)org:/usr/local/cvsroot commit -F /tmp/$$a pgsql
find /u/src/pgsql \( -name '*.rej' -print \) -o \( -name '*.orig' -exec rm {} \; \)

--
Bruce Momjian | 830 Blythe Avenue
maillist(at)candle(dot)pha(dot)pa(dot)us | Drexel Hill, Pennsylvania 19026
+ If your life is a hard drive, | (610) 353-9879(w)
+ Christ can be your backup. | (610) 853-3000(h)

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 1998-05-23 23:37:20 Re: [HACKERS] Current sources?
Previous Message Tom Lane 1998-05-23 20:51:03 Re: [HACKERS] Current sources?