From 4163308ecae26c76d22e4cc80d8bae729b06b94f Mon Sep 17 00:00:00 2001 From: james <> Date: Sun, 3 Feb 2008 16:20:24 +0000 Subject: *** empty log message *** --- maintainer/bootstrap | 26 ++++++++++++++++++++++++++ maintainer/make_distn | 21 +++++++++++++++++++++ maintainer/tag | 36 ++++++++++++++++++++++++++++++++++++ maintainer/tidy | 33 +++++++++++++++++++++++++++++++++ 4 files changed, 116 insertions(+) create mode 100755 maintainer/bootstrap create mode 100755 maintainer/make_distn create mode 100755 maintainer/tag create mode 100755 maintainer/tidy (limited to 'maintainer') diff --git a/maintainer/bootstrap b/maintainer/bootstrap new file mode 100755 index 0000000..9a3de38 --- /dev/null +++ b/maintainer/bootstrap @@ -0,0 +1,26 @@ +#! /bin/sh +# +# bootstrap: +# +# Copyright (c) 2008 James McKenzie , +# All rights reserved. +# +# $Id$ +# +# $Log$ +# Revision 1.1 2008/02/03 16:20:24 james +# *** empty log message *** +# +# +# +# +# +libtoolize -f -c --automake +aclocal +autoheader +autoconf +automake -a -c +automake -a -c Makefile +automake -a -c src/Makefile +automake -a -c apps/Makefile +automake -a -c test/Makefile diff --git a/maintainer/make_distn b/maintainer/make_distn new file mode 100755 index 0000000..ed8080b --- /dev/null +++ b/maintainer/make_distn @@ -0,0 +1,21 @@ +#! /bin/sh +# +# make_distn: +# +# Copyright (c) 2008 James McKenzie , +# All rights reserved. +# +# $Id$ +# +# $Log$ +# Revision 1.1 2008/02/03 16:20:24 james +# *** empty log message *** +# +# +# +# +# +./maintainer/bootstrap +./configure +make dist +make distclean diff --git a/maintainer/tag b/maintainer/tag new file mode 100755 index 0000000..0565a54 --- /dev/null +++ b/maintainer/tag @@ -0,0 +1,36 @@ +#!/bin/sh +# +# tag: +# +# Copyright (c) 2008 James McKenzie , +# All rights reserved. +# +# $Id$ +# +# $Log$ +# Revision 1.1 2008/02/03 16:20:24 james +# *** empty log message *** +# +# +# +# +cvs commit -m "" + +FILES=`cat version-files` +CHK=`cat $FILES | md5sum | awk '{print $1}'` +TG=`grep $CHK version-md5sums | awk '{print $2}'` +if [ .$TG != . ]; then + echo This code already tagged as Version $TG + exit 0 +fi + +MAJOR=`cat version-major` +MINOR=`cat version-minor` +MICRO=$[ `cat version-micro` + 1 ] + +echo $MICRO > version-micro + +echo "$CHK ${MAJOR}.${MINOR}.${MICRO}" >> version-md5sums + +cvs commit -m "" +cvs tag libsympathy-$MAJOR_$MINOR_$MICRO . diff --git a/maintainer/tidy b/maintainer/tidy new file mode 100755 index 0000000..9be60c1 --- /dev/null +++ b/maintainer/tidy @@ -0,0 +1,33 @@ +#!/bin/sh +# +# tidy: +# +# Copyright (c) 2008 James McKenzie , +# All rights reserved. +# +# $Id$ +# +# $Log$ +# Revision 1.1 2008/02/03 16:20:24 james +# *** empty log message *** +# +# +# +# +if [ -f Makefile ]; then + make distclean +fi + +for i in acconfig.h AUTHORS bstrap ChangeLog configure.in COPYING INSTALL mdist NEWS README tidy src/config.h.in `find . -name Makefile.am -print` `find . -name \*.[ch] -print` ; do + if [ -f $i ]; then + gimme $i + fi +done + +find . -name \*.[ch] -print | xargs indent -i2 -ts0 + +find . -name \*~ -print| xargs /bin/rm -f +find . -name \*.BAK -print| xargs /bin/rm -f +find . -name a.out -print| xargs /bin/rm -f +find . -name core -print| xargs /bin/rm -f + -- cgit v1.2.3