[DebianGIS-dev] r562 - packages/postgis/upstream

Fabio Tranchitella kobold at costa.debian.org
Fri Oct 6 08:47:10 UTC 2006


Author: kobold
Date: 2006-10-06 08:47:10 +0000 (Fri, 06 Oct 2006)
New Revision: 562

Removed:
   packages/postgis/upstream/HOWTO_RELEASE
   packages/postgis/upstream/jdbc2/
   packages/postgis/upstream/make_dist.sh
Log:
Removing files which are not shipped with the new release (and which I missed with the previous commit).


Deleted: packages/postgis/upstream/HOWTO_RELEASE
===================================================================
--- packages/postgis/upstream/HOWTO_RELEASE	2006-10-06 08:43:11 UTC (rev 561)
+++ packages/postgis/upstream/HOWTO_RELEASE	2006-10-06 08:47:10 UTC (rev 562)
@@ -1,31 +0,0 @@
-How to release
-~~~~~~~~~~~~~~
-  Date: 2005-12-15
-
-Versioning Scheme
------------------
-
-Release version is composed by REL_MAJOR_VERSION, REL_MINOR_VERSION
-and REL_MICRO_VERSION components.
-
-By default only [REL_MICRO_VERSION] increments between releases.
-
-[REL_MINOR_VERSION] is incremented (and MICRO set to 0) when minor
-additions have been introduced (one or two functions can be considered
-*micro* additions)
-
-[REL_MAJOR_VERSION] is incremented (and MICRO and MINOR set to 0) when
-a dump/reload of existing spatial databases is *REQUIRED* for things
-to work or rather *HIGHLY RECOMMENDED* to get new functionalities.
-
-Release procedure
------------------
-
-1) Update Version.config as specified in Versioning Scheme above.
-2) Edit CHANGES: set release date and check all notable changes are
-   been reported.
-3) Add release notes in doc/postgis.xml
-4) Tag pgis_MAJ_MIN_MIC
-5) Run: sh make_dist.sh MAJ.MIN.MIC
-6) Publish
-7) Announce 

Deleted: packages/postgis/upstream/make_dist.sh
===================================================================
--- packages/postgis/upstream/make_dist.sh	2006-10-06 08:43:11 UTC (rev 561)
+++ packages/postgis/upstream/make_dist.sh	2006-10-06 08:47:10 UTC (rev 562)
@@ -1,86 +0,0 @@
-#!/bin/sh
-
-#
-# USAGE:
-#
-# -- postgis-cvs.tar.gz 
-# sh make_dist.sh
-#
-# -- postgis-1.1.0.tar.gz 
-# sh make_dist.sh 1.1.0
-#
-# NOTE: will not work prior to 1.1.0
-#
-#
-
-tag=HEAD
-version=cvs
-
-if [ -n "$1" ]; then
-	version="$1"
-	version=`echo $version | sed 's/RC/-rc/'`
-	tag=pgis_`echo "$version" | sed 's/\./_/g'`
-fi
-
-outdir="postgis-$version"
-package="postgis-$version.tar.gz"
-
-if [ -d "$outdir" ]; then
-	echo "Output directory $outdir already exist"
-	exit 1
-fi
-
-echo "Exporting tag $tag"
-cvs export -r "$tag" -d "$outdir" postgis 
-if [ $? -gt 0 ]; then
-	exit 1
-fi
-
-# remove .cvsignore, make_dist.sh and HOWTO_RELEASE
-echo "Removing .cvsignore and make_dist.sh files"
-find "$outdir" -name .cvsignore -exec rm {} \;
-rm -f "$outdir"/make_dist.sh "$outdir"/HOWTO_RELEASE
-
-# generating configure script
-echo "Running autogen.sh; ./configure"
-owd="$PWD"
-cd "$outdir"
-./autogen.sh
-./configure
-cd "$owd"
-
-# generating documentation
-echo "Generating documentation"
-owd="$PWD"
-cd "$outdir"/doc
-sleep 2 # wait some time to have 'make' recognize it needs to build html
-make 
-if [ $? -gt 0 ]; then
-	exit 1
-fi
-make clean # won't drop the html dir
-cd "$owd"
-
-## generating parser
-#echo "Generating parser"
-#owd="$PWD"
-#cd "$outdir"/lwgeom
-#make lex.yy.c
-#if [ $? -gt 0 ]; then
-#	exit 1
-#fi
-#cd "$owd"
-
-# Run make distclean
-echo "Running make distclean"
-owd="$PWD"
-cd "$outdir"
-make distclean
-cd "$owd"
-
-echo "Generating $package file"
-tar czf "$package" "$outdir"
-
-#echo "Cleaning up"
-#rm -Rf "$outdir"
-




More information about the Pkg-grass-devel mailing list