[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: gaf.git: branch: master updated (1.5.2-20090328-181-gc6d3e3c)



The branch, master has been updated
       via  c6d3e3c801f789d27487ef57c4f3a6ca99d0e7b1 (commit)
      from  358a39882c24bd916b90da7c34af5547c2a31b09 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 Makefile.am        |    2 +-
 update-versions.sh |   79 ----------------------------------------------------
 2 files changed, 1 insertions(+), 80 deletions(-)
 delete mode 100755 update-versions.sh


=================
 Commit Messages
=================

commit c6d3e3c801f789d27487ef57c4f3a6ca99d0e7b1
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    Remove update-versions.sh.
    
    Since the version strings for the whole suite can now be set directly
    from a single configure.ac, update-versions.sh is obsolete.

:100644 100644 3df82fa... dbfdbd3... M	Makefile.am
:100755 000000 d32260d... 0000000... D	update-versions.sh

=========
 Changes
=========

commit c6d3e3c801f789d27487ef57c4f3a6ca99d0e7b1
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    Remove update-versions.sh.
    
    Since the version strings for the whole suite can now be set directly
    from a single configure.ac, update-versions.sh is obsolete.

diff --git a/Makefile.am b/Makefile.am
index 3df82fa..dbfdbd3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,7 @@ ACLOCAL_AMFLAGS = -I m4
 DISTCHECK_CONFIGURE_FLAGS = GIT="/bin/sh -c '! :'" --disable-update-xdg-database
 
 BUILT_SOURCES = version.h
-EXTRA_DIST = autogen.sh version.h version.h.in README.Cygwin update-versions.sh
+EXTRA_DIST = autogen.sh version.h version.h.in README.Cygwin
 
 # Generate version.h. This works by looking at any git repository that
 # is present in the source directory (detected at configure time). If
diff --git a/update-versions.sh b/update-versions.sh
deleted file mode 100755
index d32260d..0000000
--- a/update-versions.sh
+++ /dev/null
@@ -1,79 +0,0 @@
-#!/bin/sh
-
-usage()
-{
-	echo usage: $0 dotted_version date libgeda_sharedlib_version
-	echo Exmaple:
-	echo "   $0 1.0.1 20070626 29:1:0"
-}
-
-new_dottedversion=$1
-new_date=$2
-new_sharedlibversion=$3 
-if [ "$new_dottedversion" = "" ]
-then
-	echo Missing dotted version
-	echo ""
-	usage
-	exit 1
-fi
-
-if [ "$new_date" = "" ]
-then
-	echo Missing date 
-	echo ""
-	usage
-	exit 1
-fi
-
-if [ "$new_sharedlibversion" = "" ]
-then
-	echo Missing libgeda shared library version
-	echo ""
-	usage
-	exit 1
-fi
-
-
-old_dottedversion=`grep ^DOTTED_VERSION= Makefile | \
-	awk -F= '{print $2}'`
-
-old_date=`grep ^DATE_VERSION= Makefile | \
-	awk -F= '{print $2}'`
-
-old_sharedlibversion=`grep ^SHARED_LIBRARY_VERSION libgeda/configure.ac.in | \
-	awk -F= '{print $2}'`
-
-echo Existing version info: $old_dottedversion $old_date $old_sharedlibversion
-echo ""
-
-# Update dates and dotted version in the configure scripts
-tbd_files="docs/configure.ac examples/configure.ac gattrib/configure.ac gnetlist/configure.ac gsymcheck/configure.ac libgeda/configure.ac.in symbols/configure.ac utils/configure.ac gschem/configure.ac.in Makefile"
-
-for i in $tbd_files
-do
-	echo Updating $old_date / $old_dottedversion to $new_date / $new_dottedversion in $i
-	mv -f $i $i.orig
-	cat $i.orig | \
-	    sed "s/^DATE_VERSION=$old_date/DATE_VERSION=$new_date/" | \
-	    sed "s/^DOTTED_VERSION=$old_dottedversion/DOTTED_VERSION=$new_dottedversion/" > $i
-	rm -f $i.orig
-done
-
-# Update shared library version
-libgeda_conf=libgeda/configure.ac.in
-echo Updating $old_sharedlibversion to $new_sharedlibversion in $libgeda_conf
-mv -f $libgeda_conf $libgeda_conf.orig2
-cat $libgeda_conf.orig2 | \
-	sed "s/^SHARED_LIBRARY_VERSION=$old_sharedlibversion/SHARED_LIBRARY_VERSION=$new_sharedlibversion/" > $libgeda_conf
-rm -f $libgeda_conf.orig2
-
-echo ""
-
-# Verification step needed here.
-for i in $tbd_files
-do
-	echo Verify $i
-	grep ^DOTTED_VERSION= $i
-	grep ^DATE_VERSION= $i
-done




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs