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

2006-10-06 Thread Fabio Tranchitella
Author: kobold
Date: 2006-10-06 08:47:10 + (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"
-


___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel


[DebianGIS-dev] r564 - packages/postgis/trunk/debian

2006-10-06 Thread Fabio Tranchitella
Author: kobold
Date: 2006-10-06 08:58:24 + (Fri, 06 Oct 2006)
New Revision: 564

Modified:
   packages/postgis/trunk/debian/changelog
   packages/postgis/trunk/debian/rules
Log:
Changes for the debian release 1.1.4-1.


Modified: packages/postgis/trunk/debian/changelog
===
--- packages/postgis/trunk/debian/changelog 2006-10-06 08:50:14 UTC (rev 
563)
+++ packages/postgis/trunk/debian/changelog 2006-10-06 08:58:24 UTC (rev 
564)
@@ -1,3 +1,9 @@
+postgis (1.1.4-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Fabio Tranchitella <[EMAIL PROTECTED]>  Fri,  6 Oct 2006 10:51:51 +0200
+
 postgis (1.1.3-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/postgis/trunk/debian/rules
===
--- packages/postgis/trunk/debian/rules 2006-10-06 08:50:14 UTC (rev 563)
+++ packages/postgis/trunk/debian/rules 2006-10-06 08:58:24 UTC (rev 564)
@@ -45,7 +45,7 @@
rm -f build-arch-stamp build-indep-stamp
[ -f doc/html/postgis.html.prev ] && mv doc/html/postgis.html.prev 
doc/html/postgis.html || true
-$(MAKE) distclean
-   -$(MAKE) -C jdbc2 clean
+   -$(MAKE) -C java/jdbc clean
dh_clean 
 
 install: install-indep install-arch
@@ -61,9 +61,9 @@
--infodir=\$${prefix}/share/info
 
# PostGIS JDBC (with debug support)
-   $(MAKE) -C jdbc2 clean
-   DEBUGJAR=postgis_debug.fastjar JAR=fastjar JAVAC=jikes-classpath 
$(MAKE) -C jdbc2 jar
-   DEBUGJAR=postgis_debug.fastjar JAR=fastjar JAVAC=jikes-classpath 
$(MAKE) -C jdbc2 install 
DESTDIR=$(CURDIR)/debian/libpostgis-java/usr/share/java/$(JAVA_PATH)
+   $(MAKE) -C java/jdbc clean
+   DEBUGJAR=postgis_debug.fastjar JAR=fastjar JAVAC=jikes-classpath 
$(MAKE) -C java/jdbc jar
+   DEBUGJAR=postgis_debug.fastjar JAR=fastjar JAVAC=jikes-classpath 
$(MAKE) -C java/jdbc install 
DESTDIR=$(CURDIR)/debian/libpostgis-java/usr/share/java/$(JAVA_PATH)
$(MAKE) distclean
dh_install -i
 


___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel


[DebianGIS-dev] r565 - packages/postgis/tags

2006-10-06 Thread Fabio Tranchitella
Author: kobold
Date: 2006-10-06 09:04:02 + (Fri, 06 Oct 2006)
New Revision: 565

Added:
   packages/postgis/tags/postgis-1.1.4/
Log:
Tag for postgis-1.1.4 upstream release.


Copied: packages/postgis/tags/postgis-1.1.4 (from rev 564, 
packages/postgis/upstream)


___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel


[DebianGIS-dev] r566 - packages/postgis/tags

2006-10-06 Thread Fabio Tranchitella
Author: kobold
Date: 2006-10-06 09:04:34 + (Fri, 06 Oct 2006)
New Revision: 566

Added:
   packages/postgis/tags/postgis-1.1.4-1/
Log:
Tag postgis 1.1.4-1 debian release.


Copied: packages/postgis/tags/postgis-1.1.4-1 (from rev 565, 
packages/postgis/trunk)


___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel


[DebianGIS-dev] Processing of postgis_1.1.4-1_i386.changes

2006-10-06 Thread Archive Administrator
postgis_1.1.4-1_i386.changes uploaded successfully to localhost
along with the files:
  postgis_1.1.4-1.dsc
  postgis_1.1.4.orig.tar.gz
  postgis_1.1.4-1.diff.gz
  postgresql-8.1-postgis_1.1.4-1_i386.deb
  postgis_1.1.4-1_i386.deb
  libpostgis-java_1.1.4-1_all.deb

Greetings,

Your Debian queue daemon

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel


[DebianGIS-dev] postgis override disparity

2006-10-06 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

libpostgis-java_1.1.4-1_all.deb: package says section is libs, override says 
science.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please reply to this mail and explain why.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply needs to be processed by a human and will be in
due course, but until then the installer will send these automated
mails; sorry.]

--
Debian distribution maintenance software

(This message was generated automatically; if you believe that there
is a problem with it please contact the archive administrators by
mailing [EMAIL PROTECTED])

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel


[DebianGIS-dev] postgis_1.1.4-1_i386.changes ACCEPTED

2006-10-06 Thread Debian Installer

Accepted:
libpostgis-java_1.1.4-1_all.deb
  to pool/main/p/postgis/libpostgis-java_1.1.4-1_all.deb
postgis_1.1.4-1.diff.gz
  to pool/main/p/postgis/postgis_1.1.4-1.diff.gz
postgis_1.1.4-1.dsc
  to pool/main/p/postgis/postgis_1.1.4-1.dsc
postgis_1.1.4-1_i386.deb
  to pool/main/p/postgis/postgis_1.1.4-1_i386.deb
postgis_1.1.4.orig.tar.gz
  to pool/main/p/postgis/postgis_1.1.4.orig.tar.gz
postgresql-8.1-postgis_1.1.4-1_i386.deb
  to pool/main/p/postgis/postgresql-8.1-postgis_1.1.4-1_i386.deb


Override entries for your package:
libpostgis-java_1.1.4-1_all.deb - optional science
postgis_1.1.4-1.dsc - source science
postgis_1.1.4-1_i386.deb - optional misc
postgresql-8.1-postgis_1.1.4-1_i386.deb - optional misc

Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel