[csw-devel] SF.net SVN: gar:[19211] csw/mgar/pkg/postgresql/trunk
guengel at users.sourceforge.net
guengel at users.sourceforge.net
Sun Sep 16 15:28:59 CEST 2012
Revision: 19211
http://gar.svn.sourceforge.net/gar/?rev=19211&view=rev
Author: guengel
Date: 2012-09-16 13:28:58 +0000 (Sun, 16 Sep 2012)
Log Message:
-----------
postgresql/trunk: New upstream release 9.2.0
Modified Paths:
--------------
csw/mgar/pkg/postgresql/trunk/Makefile
csw/mgar/pkg/postgresql/trunk/checksums
csw/mgar/pkg/postgresql/trunk/files/changelog.CSW
Added Paths:
-----------
csw/mgar/pkg/postgresql/trunk/files/0000-Run-tests-in-var-tmp-pgsql92-tmp_check.patch
csw/mgar/pkg/postgresql/trunk/files/0001-ecpg-usr-local-include-replacement.patch
csw/mgar/pkg/postgresql/trunk/files/0002-Use-plain-rpath.patch
Removed Paths:
-------------
csw/mgar/pkg/postgresql/trunk/files/0000-Run-tests-in-var-tmp-pgsql-tmp_check.patch
csw/mgar/pkg/postgresql/trunk/files/0000-Use-plain-rpath.patch
csw/mgar/pkg/postgresql/trunk/files/0000-ecpg-usr-local-include-replacement.patch
Modified: csw/mgar/pkg/postgresql/trunk/Makefile
===================================================================
--- csw/mgar/pkg/postgresql/trunk/Makefile 2012-09-16 08:03:49 UTC (rev 19210)
+++ csw/mgar/pkg/postgresql/trunk/Makefile 2012-09-16 13:28:58 UTC (rev 19211)
@@ -87,10 +87,10 @@
# maintainers to use `pg_config'.
NAME = postgresql
-BASE_VERSION = 9.1
+BASE_VERSION = 9.2
VERSION_NODOT = $(subst .,_,$(BASE_VERSION))
BASE_VERSION_NODOT = $(subst .,,$(BASE_VERSION))
-PATCHLEVEL = 5
+PATCHLEVEL = 0
VERSION = $(BASE_VERSION).$(PATCHLEVEL)
CATEGORIES = apps
GARTYPE = v2
@@ -126,11 +126,15 @@
# This variable has been introduced for using in EXPANDVARS files
PGNAME_VERSIONED = $(NAME)-$(BASE_VERSION_NODOT)
# Those BIN_NAMES_* are used both, for package creation and alternatives.
+#
+# The distinction between server and client binaries is taken from the
+# FreeBSD postgresql port.
+#
# 8.4 has removed ipcclean
-BIN_NAMES_SERVER = initdb pg_controldata pg_ctl pg_resetxlog postmaster postgres
+BIN_NAMES_SERVER = initdb pg_controldata pg_ctl pg_resetxlog pg_receivexlog pg_basebackup postmaster postgres
BIN_NAMES_DEVEL = ecpg pg_config
-BIN_NAMES_CLIENT = clusterdb createdb createlang createuser dropdb droplang dropuser pg_dump pg_dumpall pg_restore psql reindexdb vacuumdb pg_basebackup clusterdb
-BIN_NAMES_CONTRIB = oid2name pgbench pg_standby vacuumlo pg_upgrade pg_archivecleanup pg_test_fsync
+BIN_NAMES_CLIENT = clusterdb createdb createlang createuser dropdb droplang dropuser pg_dump pg_dumpall pg_restore psql reindexdb vacuumdb clusterdb
+BIN_NAMES_CONTRIB = oid2name pgbench pg_standby vacuumlo pg_upgrade pg_archivecleanup pg_test_fsync pg_test_timing
# These are shared objects used by the server. Please note, contrib installs
# also shared object in the same place, so make sure you don't mix up things
SO_NAMES_SERVER = ascii_and_mic.so cyrillic_and_mic.so dict_snowball.so euc_cn_and_mic.so
@@ -155,7 +159,7 @@
SO_NAMES_CONTRIB += pg_freespacemap.so pg_trgm.so pgcrypto.so pgrowlocks.so pgstattuple.so
SO_NAMES_CONTRIB += pgxml.so refint.so seg.so sslinfo.so tablefunc.so test_parser.so timetravel.so tsearch2.so
SO_NAMES_CONTRIB += auto_explain.so btree_gin.so citext.so pg_stat_statements.so unaccent.so dummy_seclabel.so
-SO_NAMES_CONTRIB += auth_delay.so file_fdw.so
+SO_NAMES_CONTRIB += auth_delay.so file_fdw.so tcn.so
# Those are the extension provided by contrib.
#
# This has been introduced with 9.1
@@ -172,7 +176,7 @@
EXT_NAMES_CONTRIB += earthdistance--1.0.sql earthdistance.control earthdistance--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += file_fdw--1.0.sql file_fdw.control
EXT_NAMES_CONTRIB += fuzzystrmatch--1.0.sql fuzzystrmatch.control fuzzystrmatch--unpackaged--1.0.sql
-EXT_NAMES_CONTRIB += hstore--1.0.sql hstore.control hstore--unpackaged--1.0.sql
+EXT_NAMES_CONTRIB += hstore--1.0--1.1.sql hstore--1.1.sql hstore.control hstore--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += insert_username--1.0.sql insert_username.control insert_username--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += intagg--1.0.sql intagg.control intagg--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += intarray--1.0.sql intarray.control intarray--unpackaged--1.0.sql
@@ -185,7 +189,7 @@
EXT_NAMES_CONTRIB += pgcrypto--1.0.sql pgcrypto.control pgcrypto--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += pg_freespacemap--1.0.sql pg_freespacemap.control pg_freespacemap--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += pgrowlocks--1.0.sql pgrowlocks.control pgrowlocks--unpackaged--1.0.sql
-EXT_NAMES_CONTRIB += pg_stat_statements--1.0.sql pg_stat_statements.control pg_stat_statements--unpackaged--1.0.sql
+EXT_NAMES_CONTRIB += pg_stat_statements--1.1.sql pg_stat_statements--1.0--1.1.sql pg_stat_statements.control pg_stat_statements--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += pgstattuple--1.0.sql pgstattuple.control pgstattuple--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += pg_trgm--1.0.sql pg_trgm.control pg_trgm--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += refint--1.0.sql refint.control refint--unpackaged--1.0.sql
@@ -197,6 +201,7 @@
EXT_NAMES_CONTRIB += tsearch2--1.0.sql tsearch2.control tsearch2--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += unaccent--1.0.sql unaccent.control unaccent--unpackaged--1.0.sql
EXT_NAMES_CONTRIB += xml2--1.0.sql xml2.control xml2--unpackaged--1.0.sql
+EXT_NAMES_CONTRIB += tcn.control tcn--1.0.sql
# Miscellaneous files
MISC_NAMES_SERVER += .*/share/$(NAME)/$(BASE_VERSION_NODOT)/conversion_create.sql
MISC_NAMES_SERVER += .*/share/$(NAME)/$(BASE_VERSION_NODOT)/information_schema.sql
@@ -269,13 +274,13 @@
# This patch will replace /usr/local/include by /opt/csw/include in
# ecpg.c and thus silence a checkpkg error.
-PATCHFILES += 0000-ecpg-usr-local-include-replacement.patch
+PATCHFILES += 0001-ecpg-usr-local-include-replacement.patch
# Test running on a NFS may fail. Thus we let the test run in
-# /var/tmp/pgsql/tmp_check
-PATCHFILES += 0000-Run-tests-in-var-tmp-pgsql-tmp_check.patch
+# /var/tmp/pgsql92/tmp_check
+PATCHFILES += 0000-Run-tests-in-var-tmp-pgsql92-tmp_check.patch
# By default, src/makefiles/Makefile.solaris uses -Wl,-R'$(rpathdir)'
# which isn't properly digested by Sun's ld
-PATCHFILES += 0000-Use-plain-rpath.patch
+PATCHFILES += 0002-Use-plain-rpath.patch
INITSMF = $(sysconfdir)/init\.d/$(INITSCRIPTFILE_VERSIONED)
USERGROUP = $(USERGROUPDIR)/$(USERGROUPFILE_VERSIONED)
@@ -525,7 +530,13 @@
@echo " ===> Adjusting pkglibdir in $(WORKSRC)/src/Makefile.global.in"
@if [ -r $(WORKSRC)/src/Makefile.global.in ] ; then \
gsed -i -r -e 's|^(pkglibdir[[:space:]]*=[[:space:]]*)\$$\(libdir\).*$$|\1$$(libdir)/postgresql/$(BASE_VERSION_NODOT)|' $(WORKSRC)/src/Makefile.global.in ; \
+ else \
+ echo "$(WORKSRC)/src/Makefile.global.in not found. Aborting" ; \
+ exit 1 ; \
fi
+ @echo " ===> Setting temp-install dir in $(WORKSRC)/src/Makefile.global.in"
+ gsed -i -r -e 's|\./tmp_check|/var/tmp/pgsql$(BASE_VERSION_NODOT)/tmp_check|g' -e 's|tmp_check/|/var/tmp/pgsql$(BASE_VERSION_NODOT)/tmp_check|g' \
+ $(WORKSRC)/src/Makefile.global.in
@$(MAKECOOKIE)
post-build-modulated:
Modified: csw/mgar/pkg/postgresql/trunk/checksums
===================================================================
--- csw/mgar/pkg/postgresql/trunk/checksums 2012-09-16 08:03:49 UTC (rev 19210)
+++ csw/mgar/pkg/postgresql/trunk/checksums 2012-09-16 13:28:58 UTC (rev 19211)
@@ -1 +1 @@
-c784decb60615aa94c6a31601bc6ffd2 postgresql-9.1.5.tar.bz2
+8c4c32a4abe8cf61b02c8366181ede50 postgresql-9.2.0.tar.bz2
Deleted: csw/mgar/pkg/postgresql/trunk/files/0000-Run-tests-in-var-tmp-pgsql-tmp_check.patch
===================================================================
--- csw/mgar/pkg/postgresql/trunk/files/0000-Run-tests-in-var-tmp-pgsql-tmp_check.patch 2012-09-16 08:03:49 UTC (rev 19210)
+++ csw/mgar/pkg/postgresql/trunk/files/0000-Run-tests-in-var-tmp-pgsql-tmp_check.patch 2012-09-16 13:28:58 UTC (rev 19211)
@@ -1,62 +0,0 @@
-From 051eb505448cba2f98aa5926ef3bfe0eed50d74c Mon Sep 17 00:00:00 2001
-From: Rafael Ostertag <rafisol at opencsw.org>
-Date: Fri, 30 Dec 2011 20:32:11 +0100
-Subject: [PATCH] Run tests in /var/tmp/pgsql/tmp_check
-
----
- src/Makefile.global.in | 4 ++--
- src/test/regress/GNUmakefile | 4 ++++
- 2 files changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/src/Makefile.global.in b/src/Makefile.global.in
-index 3bf658d..69523de 100644
---- a/src/Makefile.global.in
-+++ b/src/Makefile.global.in
-@@ -438,10 +438,10 @@ endif
-
- pg_regress_locale_flags = $(if $(ENCODING),--encoding=$(ENCODING)) $(NOLOCALE)
-
--pg_regress_check = $(top_builddir)/src/test/regress/pg_regress --inputdir=$(srcdir) --temp-install=./tmp_check --top-builddir=$(top_builddir) $(pg_regress_locale_flags)
-+pg_regress_check = $(top_builddir)/src/test/regress/pg_regress --inputdir=$(srcdir) --temp-install=/var/tmp/pgsql/tmp_check --top-builddir=$(top_builddir) $(pg_regress_locale_flags)
- pg_regress_installcheck = $(top_builddir)/src/test/regress/pg_regress --inputdir=$(srcdir) --psqldir='$(PSQLDIR)' $(pg_regress_locale_flags)
-
--pg_regress_clean_files = results/ regression.diffs regression.out tmp_check/ log/
-+pg_regress_clean_files = results/ regression.diffs regression.out /var/tmp/pgsql/tmp_check log/
-
-
- ##########################################################################
-diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile
-index 90aea6c..99c3905 100644
---- a/src/test/regress/GNUmakefile
-+++ b/src/test/regress/GNUmakefile
-@@ -135,6 +135,7 @@ tablespace-setup:
- REGRESS_OPTS = --dlpath=.
-
- check: all tablespace-setup
-+ install -d /var/tmp/pgsql/tmp_check
- $(pg_regress_check) $(REGRESS_OPTS) --schedule=$(srcdir)/parallel_schedule $(MAXCONNOPT) $(TEMP_CONF) $(EXTRA_TESTS)
-
- installcheck: all tablespace-setup
-@@ -144,6 +145,7 @@ installcheck-parallel: all tablespace-setup
- $(pg_regress_installcheck) $(REGRESS_OPTS) --schedule=$(srcdir)/parallel_schedule $(MAXCONNOPT) $(EXTRA_TESTS)
-
- standbycheck: all
-+ install -d /var/tmp/pgsql/tmp_check
- $(pg_regress_installcheck) $(REGRESS_OPTS) --schedule=$(srcdir)/standby_schedule --use-existing
-
- # old interfaces follow...
-@@ -153,9 +155,11 @@ runtest: installcheck
- runtest-parallel: installcheck-parallel
-
- bigtest: all tablespace-setup
-+ install -d /var/tmp/pgsql/tmp_check
- $(pg_regress_installcheck) $(REGRESS_OPTS) --schedule=$(srcdir)/serial_schedule numeric_big
-
- bigcheck: all tablespace-setup
-+ install -d /var/tmp/pgsql/tmp_check
- $(pg_regress_check) $(REGRESS_OPTS) --schedule=$(srcdir)/parallel_schedule $(MAXCONNOPT) numeric_big
-
-
---
-1.7.6.1
-
Added: csw/mgar/pkg/postgresql/trunk/files/0000-Run-tests-in-var-tmp-pgsql92-tmp_check.patch
===================================================================
--- csw/mgar/pkg/postgresql/trunk/files/0000-Run-tests-in-var-tmp-pgsql92-tmp_check.patch (rev 0)
+++ csw/mgar/pkg/postgresql/trunk/files/0000-Run-tests-in-var-tmp-pgsql92-tmp_check.patch 2012-09-16 13:28:58 UTC (rev 19211)
@@ -0,0 +1,44 @@
+From e02c1f65cb7bb300e5ce926b6d96d391f51c8c3b Mon Sep 17 00:00:00 2001
+From: Rafael Ostertag <rafisol at opencsw.org>
+Date: Sun, 16 Sep 2012 10:56:57 +0200
+Subject: [PATCH 0/2] Run tests in /var/tmp/pgsql92/tmp_check
+
+---
+ src/test/regress/GNUmakefile | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile
+index 0239b6f..376631c 100644
+--- a/src/test/regress/GNUmakefile
++++ b/src/test/regress/GNUmakefile
+@@ -135,6 +135,7 @@ tablespace-setup:
+ REGRESS_OPTS = --dlpath=. $(EXTRA_REGRESS_OPTS)
+
+ check: all tablespace-setup
++ install -d /var/tmp/pgsql92/tmp_check
+ $(pg_regress_check) $(REGRESS_OPTS) --schedule=$(srcdir)/parallel_schedule $(MAXCONNOPT) $(TEMP_CONF) $(EXTRA_TESTS)
+
+ installcheck: all tablespace-setup
+@@ -144,6 +145,7 @@ installcheck-parallel: all tablespace-setup
+ $(pg_regress_installcheck) $(REGRESS_OPTS) --schedule=$(srcdir)/parallel_schedule $(MAXCONNOPT) $(EXTRA_TESTS)
+
+ standbycheck: all
++ install -d /var/tmp/pgsql92/tmp_check
+ $(pg_regress_installcheck) $(REGRESS_OPTS) --schedule=$(srcdir)/standby_schedule --use-existing
+
+ # old interfaces follow...
+@@ -153,9 +155,11 @@ runtest: installcheck
+ runtest-parallel: installcheck-parallel
+
+ bigtest: all tablespace-setup
++ install -d /var/tmp/pgsql92/tmp_check
+ $(pg_regress_installcheck) $(REGRESS_OPTS) --schedule=$(srcdir)/serial_schedule numeric_big
+
+ bigcheck: all tablespace-setup
++ install -d /var/tmp/pgsql92/tmp_check
+ $(pg_regress_check) $(REGRESS_OPTS) --schedule=$(srcdir)/parallel_schedule $(MAXCONNOPT) numeric_big
+
+
+--
+1.7.12
+
Deleted: csw/mgar/pkg/postgresql/trunk/files/0000-Use-plain-rpath.patch
===================================================================
--- csw/mgar/pkg/postgresql/trunk/files/0000-Use-plain-rpath.patch 2012-09-16 08:03:49 UTC (rev 19210)
+++ csw/mgar/pkg/postgresql/trunk/files/0000-Use-plain-rpath.patch 2012-09-16 13:28:58 UTC (rev 19211)
@@ -1,25 +0,0 @@
-From 3e5748b6bc287f4036c2f619c143b9e467b84c29 Mon Sep 17 00:00:00 2001
-From: Rafael Ostertag <rafisol at opencsw.org>
-Date: Sun, 1 Jan 2012 17:35:00 +0100
-Subject: [PATCH] Use plain rpath
-
----
- src/makefiles/Makefile.solaris | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/src/makefiles/Makefile.solaris b/src/makefiles/Makefile.solaris
-index bb56830..89d83df 100644
---- a/src/makefiles/Makefile.solaris
-+++ b/src/makefiles/Makefile.solaris
-@@ -6,7 +6,7 @@ ifeq ($(with_gnu_ld), yes)
- export_dynamic = -Wl,-E
- rpath = -Wl,-rpath,'$(rpathdir)'
- else
--rpath = -Wl,-R'$(rpathdir)'
-+rpath = -R$(rpathdir)
- endif
-
- DLSUFFIX = .so
---
-1.7.6.1
-
Deleted: csw/mgar/pkg/postgresql/trunk/files/0000-ecpg-usr-local-include-replacement.patch
===================================================================
--- csw/mgar/pkg/postgresql/trunk/files/0000-ecpg-usr-local-include-replacement.patch 2012-09-16 08:03:49 UTC (rev 19210)
+++ csw/mgar/pkg/postgresql/trunk/files/0000-ecpg-usr-local-include-replacement.patch 2012-09-16 13:28:58 UTC (rev 19211)
@@ -1,25 +0,0 @@
-From dec1e5ffd2ec2e58d185f6e4753e38ff5a0af1cd Mon Sep 17 00:00:00 2001
-From: Rafael Ostertag <rafisol at opencsw.org>
-Date: Fri, 30 Dec 2011 16:27:27 +0100
-Subject: [PATCH] ecpg /usr/local/include replacement
-
----
- src/interfaces/ecpg/preproc/ecpg.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/src/interfaces/ecpg/preproc/ecpg.c b/src/interfaces/ecpg/preproc/ecpg.c
-index db52bf5..05cad72 100644
---- a/src/interfaces/ecpg/preproc/ecpg.c
-+++ b/src/interfaces/ecpg/preproc/ecpg.c
-@@ -253,7 +253,7 @@ main(int argc, char *const argv[])
- }
-
- add_include_path(".");
-- add_include_path("/usr/local/include");
-+ add_include_path("/opt/csw/include");
- get_include_path(my_exec_path, include_path);
- add_include_path(include_path);
- add_include_path("/usr/include");
---
-1.7.6.1
-
Added: csw/mgar/pkg/postgresql/trunk/files/0001-ecpg-usr-local-include-replacement.patch
===================================================================
--- csw/mgar/pkg/postgresql/trunk/files/0001-ecpg-usr-local-include-replacement.patch (rev 0)
+++ csw/mgar/pkg/postgresql/trunk/files/0001-ecpg-usr-local-include-replacement.patch 2012-09-16 13:28:58 UTC (rev 19211)
@@ -0,0 +1,25 @@
+From 3d38c6e422081129b880bf5bdd7ff8a7c370025a Mon Sep 17 00:00:00 2001
+From: Rafael Ostertag <rafisol at opencsw.org>
+Date: Sun, 16 Sep 2012 11:01:47 +0200
+Subject: [PATCH 1/2] ecpg /usr/local/include replacement
+
+---
+ src/interfaces/ecpg/preproc/ecpg.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/interfaces/ecpg/preproc/ecpg.c b/src/interfaces/ecpg/preproc/ecpg.c
+index 7e7bae3..2e9b28c 100644
+--- a/src/interfaces/ecpg/preproc/ecpg.c
++++ b/src/interfaces/ecpg/preproc/ecpg.c
+@@ -253,7 +253,7 @@ main(int argc, char *const argv[])
+ }
+
+ add_include_path(".");
+- add_include_path("/usr/local/include");
++ add_include_path("/opt/csw/include");
+ get_include_path(my_exec_path, include_path);
+ add_include_path(include_path);
+ add_include_path("/usr/include");
+--
+1.7.12
+
Added: csw/mgar/pkg/postgresql/trunk/files/0002-Use-plain-rpath.patch
===================================================================
--- csw/mgar/pkg/postgresql/trunk/files/0002-Use-plain-rpath.patch (rev 0)
+++ csw/mgar/pkg/postgresql/trunk/files/0002-Use-plain-rpath.patch 2012-09-16 13:28:58 UTC (rev 19211)
@@ -0,0 +1,25 @@
+From 127f64d1db4caf7674c739574abf5b3fbf72e784 Mon Sep 17 00:00:00 2001
+From: Rafael Ostertag <rafisol at opencsw.org>
+Date: Sun, 16 Sep 2012 11:04:08 +0200
+Subject: [PATCH 2/2] Use plain rpath
+
+---
+ src/makefiles/Makefile.solaris | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/makefiles/Makefile.solaris b/src/makefiles/Makefile.solaris
+index e459de3..8729ee8 100644
+--- a/src/makefiles/Makefile.solaris
++++ b/src/makefiles/Makefile.solaris
+@@ -6,7 +6,7 @@ ifeq ($(with_gnu_ld), yes)
+ export_dynamic = -Wl,-E
+ rpath = -Wl,-rpath,'$(rpathdir)'
+ else
+-rpath = -Wl,-R'$(rpathdir)'
++rpath = -R$(rpathdir)
+ endif
+
+ DLSUFFIX = .so
+--
+1.7.12
+
Modified: csw/mgar/pkg/postgresql/trunk/files/changelog.CSW
===================================================================
--- csw/mgar/pkg/postgresql/trunk/files/changelog.CSW 2012-09-16 08:03:49 UTC (rev 19210)
+++ csw/mgar/pkg/postgresql/trunk/files/changelog.CSW 2012-09-16 13:28:58 UTC (rev 19211)
@@ -1,26 +1,5 @@
-postgresql91 (9.1.5,REV=2012.08.22)
+postgresql92 (9.2.0,REV=2012.09.16)
- * New upstream release 9.1.5.
+ * New upstream release 9.2.0
- -- Rafael Ostertag <raos at opencsw.org> Wed, 22 Aug 2012 08:27:06+0200
-
-
-postgresql91 (9.1.4,REV=2012.06.13)
-
- * New upstream release 9.1.4.
-
- * Dropped support for Solaris 9
-
- * Include changelog.CSW in all packages, thus removing the clustering of
- changelog.CSW files in CSWpostgresql
-
- -- Rafael Ostertag <raos at opencsw.org> Wed, 13 June 2012 15:46:57+0200
-
-
-postgresql91 (9.1.3,REV=2012.05.01)
-
- * New upstream release 9.1.3.
-
- * Updated libssl dependencies.
-
- -- Rafael Ostertag <raos at opencsw.org> Tue, 01 May 2012 08:48:19 +0200
+ -- Rafael Ostertag <raos at opencsw.org> Sun, 16 Sep 2012 14:55:51 +0200
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list