[122600] trunk/dports/databases

jwa at macports.org jwa at macports.org
Thu Jul 24 07:11:33 PDT 2014


Revision: 122600
          https://trac.macports.org/changeset/122600
Author:   jwa at macports.org
Date:     2014-07-24 07:11:32 -0700 (Thu, 24 Jul 2014)
Log Message:
-----------
postgresql94: version bump to 9.4beta2, drop the uuid-ossp in favour of new method, do not livecheck the dependent ports

Modified Paths:
--------------
    trunk/dports/databases/postgresql94/Portfile
    trunk/dports/databases/postgresql94-doc/Portfile
    trunk/dports/databases/postgresql94-server/Portfile

Removed Paths:
-------------
    trunk/dports/databases/postgresql94/files/postgresql-uuid-ossp.patch

Modified: trunk/dports/databases/postgresql94/Portfile
===================================================================
--- trunk/dports/databases/postgresql94/Portfile	2014-07-24 14:11:10 UTC (rev 122599)
+++ trunk/dports/databases/postgresql94/Portfile	2014-07-24 14:11:32 UTC (rev 122600)
@@ -6,7 +6,7 @@
 PortGroup compiler_blacklist_versions 1.0
 
 name			postgresql94
-version			9.4beta1
+version			9.4beta2
 
 categories		databases
 platforms		darwin
@@ -24,20 +24,17 @@
 			postgresql:source/v${version}/
 distname		postgresql-${version}
 
-checksums           rmd160  c6796d8b03b702a1d06eadca4f745542088f8bc2 \
-                    sha256  0e088eff79bb5171b2233222a25d7a2906eaf62aa86266daf6ec5217b1797f47
+checksums           rmd160  638179d13ab70bdb3b6da5283d38742b3e7e2611 \
+                    sha256  567406cf58386917916d8ef7ac892bf79e98742cd16909bb00fc920dd31a388c
 
 use_bzip2		yes
 
-depends_lib		port:readline port:openssl port:zlib port:libxml2 port:libxslt port:ossp-uuid
+depends_lib		port:readline port:openssl port:zlib port:libxml2 port:libxslt
 depends_build		port:bison
 depends_run		port:postgresql_select
 
 worksrcdir		postgresql-${version}
 
-#patchfiles		src_pl_plpython_Makefile.patch
-patchfiles      configure-uuid.patch
-
 set libdir		${prefix}/lib/${name}
 configure.args	--sysconfdir=${prefix}/etc/${name} \
 				--bindir=${libdir}/bin \
@@ -55,8 +52,8 @@
 				--with-libxslt \
                 --with-gssapi \
 				--enable-thread-safety \
-				--with-ossp-uuid
-configure.cppflags-append	-I${prefix}/include/ossp
+				--with-uuid=e2fs
+
 configure.ldflags-append    -headerpad_max_install_names
 
 # building psql with clang from XCode prior to 4.4 causes segfault on query; see #31717
@@ -84,18 +81,10 @@
 livecheck.type	regex
 #livecheck.url	${homepage}
 #livecheck.regex	(9\\.4\\.\[.0-9\]+)
-livecheck.url	${homepage}/developer/beta
-#livecheck.url	${homepage}/ftp/source/
-livecheck.regex	(9\\.4\[.0-9\]+\[a-z\]+\[0-9\])
+#livecheck.url	${homepage}/developer/beta
+livecheck.url	${homepage}/ftp/source/
+livecheck.regex	(9\\.4\[.0-9\]*\[a-z\]+\[0-9\])
 
-platform darwin 12 {
-    patchfiles-append   postgresql-uuid-ossp.patch
-}
-
-platform darwin 13 {
-    patchfiles-append   postgresql-uuid-ossp.patch
-}
-
 # prepare the contrib modules
 set contribs {}
 

Deleted: trunk/dports/databases/postgresql94/files/postgresql-uuid-ossp.patch
===================================================================
--- trunk/dports/databases/postgresql94/files/postgresql-uuid-ossp.patch	2014-07-24 14:11:10 UTC (rev 122599)
+++ trunk/dports/databases/postgresql94/files/postgresql-uuid-ossp.patch	2014-07-24 14:11:32 UTC (rev 122600)
@@ -1,11 +0,0 @@
---- contrib/uuid-ossp/uuid-ossp.c	2012-08-02 01:21:00.000000000 +0300
-+++ contrib/uuid-ossp/uuid-ossp.c	2012-08-02 01:22:22.000000000 +0300
-@@ -9,6 +9,8 @@
-  *-------------------------------------------------------------------------
-  */
- 
-+#define _XOPEN_SOURCE
-+
- #include "postgres.h"
- #include "fmgr.h"
- #include "utils/builtins.h"

Modified: trunk/dports/databases/postgresql94-doc/Portfile
===================================================================
--- trunk/dports/databases/postgresql94-doc/Portfile	2014-07-24 14:11:10 UTC (rev 122599)
+++ trunk/dports/databases/postgresql94-doc/Portfile	2014-07-24 14:11:32 UTC (rev 122600)
@@ -6,7 +6,7 @@
 name			postgresql94-doc
 conflicts       postgresql84-doc postgresql90-doc postgresql91-doc \
                 postgresql92-doc postgresql93-doc
-version			9.4beta1
+version			9.4beta2
 categories		databases
 platforms		darwin
 maintainers		mww jwa
@@ -22,8 +22,8 @@
 master_sites		postgresql:source/v${version}
 distname		postgresql-${version}
 
-checksums           rmd160  c6796d8b03b702a1d06eadca4f745542088f8bc2 \
-                    sha256  0e088eff79bb5171b2233222a25d7a2906eaf62aa86266daf6ec5217b1797f47
+checksums           rmd160  638179d13ab70bdb3b6da5283d38742b3e7e2611 \
+                    sha256  567406cf58386917916d8ef7ac892bf79e98742cd16909bb00fc920dd31a388c
 
 use_bzip2		yes
 dist_subdir		postgresql94
@@ -45,9 +45,4 @@
 		${destroot}${prefix}/share/doc/postgresql94
 }
 
-livecheck.type	regex
-#livecheck.url	${homepage}
-#livecheck.regex	(9\\.4\\.\[.0-9\]+)
-livecheck.url	${homepage}/developer/beta
-#livecheck.url	${homepage}/ftp/source/
-livecheck.regex	(9\\.4\[.0-9\]+\[a-z\]+\[0-9\])
+livecheck.type	none

Modified: trunk/dports/databases/postgresql94-server/Portfile
===================================================================
--- trunk/dports/databases/postgresql94-server/Portfile	2014-07-24 14:11:10 UTC (rev 122599)
+++ trunk/dports/databases/postgresql94-server/Portfile	2014-07-24 14:11:32 UTC (rev 122600)
@@ -4,7 +4,7 @@
 PortSystem 1.0
 
 name			postgresql94-server
-version			9.4beta1
+version			9.4beta2
 categories		databases
 platforms		darwin
 maintainers		mww jwa
@@ -50,9 +50,4 @@
 		sudo chown ${dbuser}:${dbgrp} ${dbdir}\n\
 		sudo su ${dbuser} -c \'${libdir}/bin/initdb -D ${dbdir}\' "
 
-livecheck.type	regex
-#livecheck.url	${homepage}
-#livecheck.regex	(9\\.4\\.\[0-9\]+)
-livecheck.url	${homepage}/developer/beta
-#livecheck.url	${homepage}/ftp/source/
-livecheck.regex	(9\\.4\[.0-9\]+\[a-z\]+\[0-9\])
+livecheck.type	none
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140724/140906bb/attachment.html>


More information about the macports-changes mailing list