mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Add CVS tag lines to files that were lacking them.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
<!-- $PostgreSQL: pgsql/src/tools/backend/index.html,v 1.35 2006/03/11 04:38:41 momjian Exp $ -->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
@@ -1,4 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/ccsym,v 1.7 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$.*" 0 1 2 3 15
|
||||
cd /tmp
|
||||
cat >$$.c <<EOF
|
||||
|
@@ -1,4 +1,6 @@
|
||||
:
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/codelines,v 1.3 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
# This script is used to compute the total number of "C" lines in the release
|
||||
# This should be run from the top of the CVS tree after a 'make distclean'
|
||||
|
@@ -1,3 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/copyright,v 1.11 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
rgrep -l 'Copyright.*PostgreSQL Global Development Group' | while read FILE
|
||||
do
|
||||
pipe sed 's/^\(.*Copyright (c) [12][0-9][0-9][0-9]-\)[12][0-9][0-9][0-9]\(, PostgreSQL Global Development Group.*\)$/\12006\2/' $FILE
|
||||
|
@@ -2,6 +2,8 @@
|
||||
** entab.c - add tabs to a text file
|
||||
** by Bruce Momjian (root@candle.pha.pa.us)
|
||||
**
|
||||
** $PostgreSQL: pgsql/src/tools/entab/entab.c,v 1.16 2006/03/11 04:38:41 momjian Exp $
|
||||
**
|
||||
** version 1.3
|
||||
**
|
||||
** tabsize = 4
|
||||
|
@@ -1,3 +1,4 @@
|
||||
.\" $PostgreSQL: pgsql/src/tools/entab/entab.man,v 1.2 2006/03/11 04:38:41 momjian Exp $
|
||||
.TH ENTAB 1 local
|
||||
.SH NAME
|
||||
entab - tab processor
|
||||
|
@@ -2,6 +2,8 @@
|
||||
**
|
||||
** halt.c
|
||||
**
|
||||
** $PostgreSQL: pgsql/src/tools/entab/halt.c,v 1.9 2006/03/11 04:38:41 momjian Exp $
|
||||
**
|
||||
** This is used to print out error messages and exit
|
||||
*/
|
||||
|
||||
|
@@ -1,7 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# This script attempts to find bad ifdef's, i.e. ifdef's that use braces
|
||||
# but not the do { ... } while (0) syntax
|
||||
#
|
||||
# $PostgreSQL: pgsql/src/tools/find_badmacros,v 1.2 2006/03/11 04:38:41 momjian Exp $
|
||||
#
|
||||
# This is useful for running before pgindent
|
||||
|
||||
for FILE
|
||||
|
@@ -1,2 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/find_gt_lt,v 1.2 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
grep '[^]a-z0-9"/!-]>' *.sgml ref/*.sgml
|
||||
grep '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml
|
||||
|
@@ -1,4 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/find_static,v 1.4 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$" 0 1 2 3 15
|
||||
|
||||
# This script finds functions that are either never called, or
|
||||
|
@@ -1,4 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/find_typedef,v 1.6 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
# This script attempts to find all typedef's in the postgres binaries
|
||||
# by using 'nm' to report all typedef debugging symbols.
|
||||
#
|
||||
|
@@ -1,5 +1,7 @@
|
||||
#! /bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/findoidjoins/make_oidjoins_check,v 1.2 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
# You first run findoidjoins on the template1 database, and send that
|
||||
# output into this script to generate a list of SQL statements.
|
||||
|
||||
|
@@ -1,4 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/make_ctags,v 1.11 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$" 0 1 2 3 15
|
||||
rm -f ./tags
|
||||
|
||||
|
@@ -1,3 +1,5 @@
|
||||
$PostgreSQL: pgsql/src/tools/make_diff/README,v 1.3 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
Bruce Momjian <pgman@candle.pha.pa.us>
|
||||
|
||||
Here are some of the scripts I use to make development easier.
|
||||
|
@@ -1,4 +1,7 @@
|
||||
:
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/make_diff/cporig,v 1.2 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
for FILE
|
||||
do
|
||||
if [ ! -f "$FILE.orig" ]
|
||||
|
@@ -1,4 +1,7 @@
|
||||
:
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/make_diff/difforig,v 1.2 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
if [ "$#" -eq 0 ]
|
||||
then APATH="."
|
||||
else APATH="$1"
|
||||
|
@@ -1,4 +1,7 @@
|
||||
:
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/make_diff/rmorig,v 1.2 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
if [ "$#" -eq 0 ]
|
||||
then APATH="."
|
||||
else APATH="$1"
|
||||
|
@@ -1,4 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/make_etags,v 1.3 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$" 0 1 2 3 15
|
||||
rm -f ./TAGS
|
||||
find `pwd`/ -type f -name '*.[chyl]' -print | \
|
||||
|
@@ -1,5 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/make_keywords,v 1.2 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
cat <<END
|
||||
To get a list of keywords compared to SQL'92, take the keywords out of
|
||||
backend/parser/keywords.c and tools/SQL_keywords.
|
||||
|
@@ -1,5 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/make_mkid,v 1.11 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
|
||||
-type f -name '*.[chyl]' -print|sed 's;//;/;g'`
|
||||
|
||||
|
@@ -1,4 +1,7 @@
|
||||
:
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/pgcvslog,v 1.28 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
# This utility is used to generate a compact list of changes
|
||||
# for each release, bjm 2000-02-22
|
||||
|
||||
|
@@ -1,6 +1,7 @@
|
||||
:
|
||||
# report which #include files can not compile on their own
|
||||
# takes -v option to display compile failure message and line numbers
|
||||
# $PostgreSQL: pgsql/src/tools/pginclude/pgcompinclude,v 1.2 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a" 0 1 2 3 15
|
||||
find . \( -name CVS -a -prune \) -o -name '*.[ch]' -type f -print | while read FILE
|
||||
|
@@ -1,6 +1,8 @@
|
||||
:
|
||||
# create macro calls for all defines in the file
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/pginclude/pgdefine,v 1.3 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$" 0 1 2 3 15
|
||||
for FILE
|
||||
do
|
||||
|
@@ -1,5 +1,6 @@
|
||||
:
|
||||
# change #include's to <> or ""
|
||||
# $PostgreSQL: pgsql/src/tools/pginclude/pgfixinclude,v 1.5 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
|
||||
find . \( -name CVS -a -prune \) -o -type f -print |
|
||||
|
@@ -1,6 +1,8 @@
|
||||
:
|
||||
# remove extra #include's
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/pginclude/pgrminclude,v 1.4 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
|
||||
find . \( -name CVS -a -prune \) -o -type f -print |
|
||||
grep -v '\./postgres.h' |
|
||||
|
@@ -1,3 +1,4 @@
|
||||
$PostgreSQL: pgsql/src/tools/pgindent/indent.bsd.patch,v 1.8 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
This patch contains several fixes to NetBSD's indent and should be
|
||||
applied before using pgindent.
|
||||
|
@@ -1,5 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/pgindent/pgcppindent,v 1.2 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15
|
||||
entab </dev/null >/dev/null
|
||||
if [ "$?" -ne 0 ]
|
||||
|
@@ -1,5 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/pgindent/pgindent,v 1.87 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
# Known bugs:
|
||||
#
|
||||
# Blank line is added after, seen as a function definition, no space
|
||||
|
@@ -1,5 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/pgindent/pgjindent,v 1.3 2006/03/11 04:38:42 momjian Exp $
|
||||
|
||||
trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15
|
||||
entab </dev/null >/dev/null
|
||||
if [ "$?" -ne 0 ]
|
||||
|
@@ -1,4 +1,6 @@
|
||||
:
|
||||
#!/bin/sh
|
||||
|
||||
# $PostgreSQL: pgsql/src/tools/pgtest,v 1.6 2006/03/11 04:38:41 momjian Exp $
|
||||
|
||||
# This runs a build/initdb/regression test suite
|
||||
#
|
||||
|
Reference in New Issue
Block a user