$PostgreSQL$ header -- Post 7.4 Release - Mailing list pgsql-patches

From Rod Taylor
Subject $PostgreSQL$ header -- Post 7.4 Release
Date
Msg-id 1068431318.28806.6.camel@jester
Whole thread Raw
Responses Re: $PostgreSQL$ header -- Post 7.4 Release  (Neil Conway <neilc@samurai.com>)
List pgsql-patches
New options file for CVSROOT.

Depending on the version of CVS (FreeBSD's CVS to be more specific) is
on the server you may need to manually place this file into the CVSROOT
directory beside the committed options,v file. The reason for this is
that someone missed adding the command to have this file copied on
commit.

Steps:
      * cvs co CVSROOT
      * cp options CVSROOT
      * cvs add options
      * cvs commit options
      * (and possibly) cp options /repo/CVSROOT

The functionality may be tested by adding a $PostgreSQL$ header to one
file. $Id$ and $Header$ have not been disabled. That should wait until
everyone is comfortable with the change.


The below command may be used to convert most $Id$ and $Header$ tags to
$PostgreSQL$ on a checked out copy. Commit as usual.

find . \( -name *.[ch] -or -name Makefile \) \
-type f \
\! -path '*CVS*' \
-exec sed -e 's/$(?:Id|Header)[^$]*$/$PostgreSQL$/' -i.bak {} \;


In src/backend/utils/adt/inet_net_ntop.c and
src/backend/utils/adt/inet_net_pton.c it would appear that the $Id$ tag
is assigned to a variable (rcsid). It doesn't break anything on my
system to change it to $PostgreSQL$.


Attachment

pgsql-patches by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] Bug fix for 7.4?
Next
From: Jason Tishler
Date:
Subject: Re: "make check" improvement for cygwin