Bug 115605 - [maintainer-update] databases/postgis: Upgrade to 1.3.1
Summary: [maintainer-update] databases/postgis: Upgrade to 1.3.1
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Rong-En Fan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-08-17 17:20 UTC by Anderson S. Ferreira
Modified: 2007-08-23 11:13 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Anderson S. Ferreira 2007-08-17 17:20:01 UTC
Postgis upgrade from 1.2.1 to 1.3.1

This release introduces new functionality, as well as various performance enhancments.

 * Began migration of functions to the SQL-MM naming convension; using the spatial type (SP) prefix.
 * Created cached and indexd point-in-polygon short-circuits for the functions ST_Contains, ST_Intersects, ST_Within and ST_Disjoint.
 * Added inline index support for relational functions.
 * Extended curve geometry support to geometry accessor and some processing functions.
 * Added Hibernate Dialect

Fix: 

---
Aviso de confidencialidade:

- Esta mensagem da Empresa Brasileira de Pesquisa Agropecuária (Embrapa), empresa pública federal regida pelo disposto na Lei Federal nº 5.851, de 7 de dezembro de 1972, é enviada exclusivamente a seu destinatário e pode conter informações confidenciais, protegidas por sigilo profissional. Sua utilização desautorizada é ilegal e sujeita o infrator às penas da lei. Se você a recebeu indevidamente, queira, por gentileza, reenviá-la ao emitente, esclarecendo o equívoco.

Confidentiality note:

- "This message from Empresa Brasileira de Pesquisa Agropecuária (Embrapa), a government company established under Brazilian law (5.851/72), is directed exclusively to its addressee and may contain confidential data, protected under professional secrecy rules. Its unauthorized use is illegal and may subject the transgressor to the law's penalties. If you are not the addressee, please send it back, elucidating the failure".--s07lIbJIwVJG7w3VdLCkhaTHZg1qRmrBv72M9J9XcpKWERrm
Content-Type: text/plain; name="postgis.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="postgis.patch"

diff -Nur postgis/Makefile postgis/Makefile
--- postgis/Makefile	2007-07-23 07:57:33.000000000 -0300
+++ postgis/Makefile	2007-08-13 14:16:41.000000000 -0300
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	postgis
-DISTVERSION=	1.2.1
+DISTVERSION=	1.3.1
 CATEGORIES=	databases geography
 MASTER_SITES=	http://postgis.refractions.net/download/
 
@@ -17,6 +17,8 @@
 LIB_DEPENDS=	proj.5:${PORTSDIR}/graphics/proj
 RUN_DEPENDS=	postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
 
+WRKSRC=		${WRKDIR}/postgis-cvs
+
 USE_GCC=	3.2+
 USE_PGSQL=	yes
 USE_GMAKE=	yes
diff -Nur postgis/distinfo postgis/distinfo
--- postgis/distinfo	2007-05-10 17:17:14.000000000 -0300
+++ postgis/distinfo	2007-08-17 12:47:27.000000000 -0300
@@ -1,3 +1,3 @@
-MD5 (postgis-1.2.1.tar.gz) = 95430ee371c64a992ebcd8ddf2801acf
-SHA256 (postgis-1.2.1.tar.gz) = edb57786b78bf89b72f60607cb38fa10da00354c2c4476c09bb3d88ca3c0d61f
-SIZE (postgis-1.2.1.tar.gz) = 2084672
+MD5 (postgis-1.3.1.tar.gz) = a70edf33836217d2d5031da1f8e89421
+SHA256 (postgis-1.3.1.tar.gz) = eefe103c0a27324217c55ac4c6aa763cc9a20e8bf57a560ee4c749d36719ac09
+SIZE (postgis-1.3.1.tar.gz) = 2148070
diff -Nur postgis/files/patch-GNUmakefile postgis/files/patch-GNUmakefile
--- postgis/files/patch-GNUmakefile	2007-05-10 17:17:14.000000000 -0300
+++ postgis/files/patch-GNUmakefile	2007-08-01 08:24:17.000000000 -0300
@@ -1,31 +1,24 @@
---- GNUmakefile.orig	Thu Jan  4 22:52:57 2007
-+++ GNUmakefile	Fri Jan 12 13:50:19 2007
-@@ -4,9 +4,16 @@
+--- GNUmakefile	2007-07-10 18:12:42.000000000 -0300
++++ GNUmakefile	2007-08-01 08:23:45.000000000 -0300
+@@ -4,9 +4,9 @@
  #
  #-----------------------------------------------------
  
--all: Makefile.config liblwgeom loaderdumper utils templategis
-+all: Makefile.config liblwgeom loaderdumper utils
-+ifneq ($(WITH-DOC),)
-+	$(MAKE) -C doc
-+endif
+-all: Makefile.config liblwgeom loaderdumper utils 
++all: Makefile.config liblwgeom loaderdumper utils docs
  
--install: all liblwgeom-install loaderdumper-install templategis-install
-+
-+install: all liblwgeom-install loaderdumper-install utils-install
-+ifneq ($(WITH-DOC),)
-+	$(MAKE) -C doc install
-+endif
- 
- uninstall: liblwgeom-uninstall loaderdumper-uninstall docs-uninstall templategis-uninstall
+-install: all liblwgeom-install loaderdumper-install 
++install: all liblwgeom-install loaderdumper-install utils-install docs-install
  
-@@ -86,6 +93,9 @@
+ uninstall: liblwgeom-uninstall loaderdumper-uninstall docs-uninstall 
  
+@@ -87,6 +87,9 @@
  utils:
  	$(MAKE) -C utils
-+
-+utils-install:
-+	$(MAKE) -C utils install
  
++utils-install:
++	${MAKE} -C utils install
++
  configure: configure.in
  	./autogen.sh
+ 
diff -Nur postgis/files/patch-configure postgis/files/patch-configure
--- postgis/files/patch-configure	2007-05-10 17:17:14.000000000 -0300
+++ postgis/files/patch-configure	2007-08-01 08:10:24.000000000 -0300
@@ -1,10 +1,10 @@
---- configure	Wed Dec 21 20:25:14 2005
-+++ configure	Wed Dec 28 13:57:10 2005
-@@ -4050,6 +4050,7 @@
- 	/usr/share/sgml/docbook/xsl-stylesheets
- 	/usr/share/xml/docbook/stylesheet/nwalsh
- 	/usr/share/sgml/docbook/stylesheet/xsl/nwalsh
-+	/usr/local/share/xsl/docbook
- "
- for p in ${SEARCHPATH}; do
- 	if test -r ${p}/html/docbook.xsl; then
+--- configure	2007-08-01 08:08:47.000000000 -0300
++++ configure	2007-08-01 08:09:07.000000000 -0300
+@@ -5099,6 +5099,7 @@
+ 		/usr/share/sgml/docbook/xsl-stylesheets
+ 		/usr/share/xml/docbook/stylesheet/nwalsh
+ 		/usr/share/sgml/docbook/stylesheet/xsl/nwalsh
++		/usr/local/share/xsl/docbook
+ 		"
+ 	for p in ${SEARCHPATH}; do
+ 		if test -r "${p}"/html/docbook.xsl; then
Comment 1 Rong-En Fan freebsd_committer freebsd_triage 2007-08-22 16:00:00 UTC
Responsible Changed
From-To: freebsd-ports-bugs->rafan

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2007-08-23 11:05:30 UTC
rafan       2007-08-23 10:05:20 UTC

  FreeBSD ports repository

  Modified files:
    databases/postgis    Makefile distinfo 
    databases/postgis/files patch-GNUmakefile patch-configure 
  Log:
  - Update to 1.3.1
  
  PR:             ports/115605
  Submitted by:   Anderson S. Ferreira <anderson at cnpm.embrapa.br> (maintainer)
  
  Revision  Changes    Path
  1.41      +1 -1      ports/databases/postgis/Makefile
  1.22      +3 -3      ports/databases/postgis/distinfo
  1.3       +13 -20    ports/databases/postgis/files/patch-GNUmakefile
  1.2       +10 -10    ports/databases/postgis/files/patch-configure
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Rong-En Fan freebsd_committer freebsd_triage 2007-08-23 11:13:10 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!