From dmichelsen at users.sourceforge.net Wed Jul 1 14:36:13 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 1 Jul 2015 12:36:13 +0000 Subject: SF.net SVN: gar:[25144] csw/mgar/pkg Message-ID: <3mM29b0KmHz15p@mail.opencsw.org> Revision: 25144 http://sourceforge.net/p/gar/code/25144 Author: dmichelsen Date: 2015-07-01 12:36:12 +0000 (Wed, 01 Jul 2015) Log Message: ----------- liblognorm/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/liblognorm/ csw/mgar/pkg/liblognorm/Makefile csw/mgar/pkg/liblognorm/branches/ csw/mgar/pkg/liblognorm/tags/ csw/mgar/pkg/liblognorm/trunk/ csw/mgar/pkg/liblognorm/trunk/Makefile csw/mgar/pkg/liblognorm/trunk/checksums csw/mgar/pkg/liblognorm/trunk/files/ csw/mgar/pkg/liblognorm/trunk/files/0001-Use-substitute-for-strndup.patch Added: csw/mgar/pkg/liblognorm/Makefile =================================================================== --- csw/mgar/pkg/liblognorm/Makefile (rev 0) +++ csw/mgar/pkg/liblognorm/Makefile 2015-07-01 12:36:12 UTC (rev 25144) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/liblognorm/trunk =================================================================== --- csw/mgar/pkg/liblognorm/trunk 2015-06-29 08:59:05 UTC (rev 25143) +++ csw/mgar/pkg/liblognorm/trunk 2015-07-01 12:36:12 UTC (rev 25144) Property changes on: csw/mgar/pkg/liblognorm/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/liblognorm/trunk/Makefile =================================================================== --- csw/mgar/pkg/liblognorm/trunk/Makefile (rev 0) +++ csw/mgar/pkg/liblognorm/trunk/Makefile 2015-07-01 12:36:12 UTC (rev 25144) @@ -0,0 +1,47 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = liblognorm +VERSION = 1.1.1 +GARTYPE = v2 + +DESCRIPTION = Liblognorm shall help to make sense out of syslog data + +MASTER_SITES = http://www.liblognorm.com/files/download/ +DISTFILES += $(DISTNAME).tar.gz + +# Use patch until this is fixed: +# http://bugzilla.adiscon.com/show_bug.cgi?id=539 +PATCHFILES += 0001-Use-substitute-for-strndup.patch + +VENDOR_URL = http://www.liblognorm.com/ + +BUILD_DEP_PKGS += CSWpy-sphinx +BUILD_DEP_PKGS += CSWlibjson-c-dev +BUILD_DEP_PKGS += CSWlibestr-dev + +PACKAGES += CSWliblognorm2 +SPKG_DESC_CSWliblognorm2 = Liblognorm shall help to make sense out of syslog data, liblognorm.so.2 +PKGFILES_CSWliblognorm2 += $(call pkgfiles_lib,liblognorm.so.2) +RUNTIME_DEP_PKGS_CSWliblognorm2 += CSWlibjson-c3 +RUNTIME_DEP_PKGS_CSWliblognorm2 += CSWlibpcre1 +RUNTIME_DEP_PKGS_CSWliblognorm2 += CSWlibestr0 + +PACKAGES += CSWliblognorm-dev +SPKG_DESC_CSWliblognorm-dev = Deevelopment files for liblognorm +RUNTIME_DEP_PKGS_CSWliblognorm-dev += CSWliblognorm2 +RUNTIME_DEP_PKGS_CSWliblognorm-dev += CSWlibjson-c3 +RUNTIME_DEP_PKGS_CSWliblognorm-dev += CSWlibestr0 + +BUILD64 = 1 +ISAEXEC = 1 + +CONFIGURE_ARGS += $(DIRPATHS) +CONFIGURE_ARGS += --enable-regexp +CONFIGURE_ARGS += --enable-docs + +# We GNU find as 'find' +INSTALL_ENV_PATH = /opt/csw/gnu:$(PATH) + +include gar/category.mk + Property changes on: csw/mgar/pkg/liblognorm/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/liblognorm/trunk/checksums =================================================================== --- csw/mgar/pkg/liblognorm/trunk/checksums (rev 0) +++ csw/mgar/pkg/liblognorm/trunk/checksums 2015-07-01 12:36:12 UTC (rev 25144) @@ -0,0 +1 @@ +a5a452be3d0f187cdd589236d5e7e936 liblognorm-1.1.1.tar.gz Added: csw/mgar/pkg/liblognorm/trunk/files/0001-Use-substitute-for-strndup.patch =================================================================== --- csw/mgar/pkg/liblognorm/trunk/files/0001-Use-substitute-for-strndup.patch (rev 0) +++ csw/mgar/pkg/liblognorm/trunk/files/0001-Use-substitute-for-strndup.patch 2015-07-01 12:36:12 UTC (rev 25144) @@ -0,0 +1,41 @@ +From 9c393161ed8256970b56aac6487bc73d13433565 Mon Sep 17 00:00:00 2001 +From: Dagobert Michelsen +Date: Wed, 1 Jul 2015 14:10:08 +0200 +Subject: [PATCH] Use substitute for strndup + +--- + src/liblognorm.c | 18 ++++++++++++++++++ + 1 file changed, 18 insertions(+) + +diff --git a/src/liblognorm.c b/src/liblognorm.c +index a530b99..ea73f63 100644 +--- a/src/liblognorm.c ++++ b/src/liblognorm.c +@@ -42,6 +42,24 @@ + } + + char * ++strndup (const char *s, size_t n) ++{ ++ char *result; ++ size_t len = strlen (s); ++ ++ if (n < len) ++ len = n; ++ ++ result = (char *) malloc (len + 1); ++ if (!result) ++ return 0; ++ ++ result[len] = '\0'; ++ return (char *) memcpy (result, s, len); ++} ++ ++ ++char * + ln_version(void) + { + return VERSION; +-- +2.4.0 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 1 15:27:11 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 1 Jul 2015 13:27:11 +0000 Subject: SF.net SVN: gar:[25145] csw/mgar/pkg Message-ID: <3mM3JF3KmVz18b@mail.opencsw.org> Revision: 25145 http://sourceforge.net/p/gar/code/25145 Author: dmichelsen Date: 2015-07-01 13:27:11 +0000 (Wed, 01 Jul 2015) Log Message: ----------- librelp/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/librelp/ csw/mgar/pkg/librelp/Makefile csw/mgar/pkg/librelp/branches/ csw/mgar/pkg/librelp/tags/ csw/mgar/pkg/librelp/trunk/ csw/mgar/pkg/librelp/trunk/Makefile csw/mgar/pkg/librelp/trunk/checksums csw/mgar/pkg/librelp/trunk/files/ Added: csw/mgar/pkg/librelp/Makefile =================================================================== --- csw/mgar/pkg/librelp/Makefile (rev 0) +++ csw/mgar/pkg/librelp/Makefile 2015-07-01 13:27:11 UTC (rev 25145) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/librelp/trunk =================================================================== --- csw/mgar/pkg/librelp/trunk 2015-07-01 12:36:12 UTC (rev 25144) +++ csw/mgar/pkg/librelp/trunk 2015-07-01 13:27:11 UTC (rev 25145) Property changes on: csw/mgar/pkg/librelp/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/librelp/trunk/Makefile =================================================================== --- csw/mgar/pkg/librelp/trunk/Makefile (rev 0) +++ csw/mgar/pkg/librelp/trunk/Makefile 2015-07-01 13:27:11 UTC (rev 25145) @@ -0,0 +1,29 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = librelp +VERSION = 1.2.7 +GARTYPE = v2 + +DESCRIPTION = A reliable logging library + +MASTER_SITES = http://download.rsyslog.com/librelp/ +DISTFILES += $(DISTNAME).tar.gz + +VENDOR_URL = http://www.librelp.com + +PACKAGES += CSWlibrelp0 +SPKG_DESC_CSWlibrelp0 = A reliable logging library, librelp.so.0 +PKGFILES_CSWlibrelp0 += $(call pkgfiles_lib,librelp.so.0) +RUNTIME_DEP_PKGS_CSWlibrelp0 += CSWlibgnutls28 + +PACKAGES += CSWlibrelp-dev +SPKG_DESC_CSWlibrelp-dev = Development files for librelp.so.0 +# PKGFILES is catchall +RUNTIME_DEP_PKGS_CSWlibrelp-dev += CSWlibrelp0 + +BUILD64 = 1 +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + Property changes on: csw/mgar/pkg/librelp/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/librelp/trunk/checksums =================================================================== --- csw/mgar/pkg/librelp/trunk/checksums (rev 0) +++ csw/mgar/pkg/librelp/trunk/checksums 2015-07-01 13:27:11 UTC (rev 25145) @@ -0,0 +1 @@ +26e02602490af3a681a2a13e6ce29efb librelp-1.2.7.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 1 16:18:23 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 1 Jul 2015 14:18:23 +0000 Subject: SF.net SVN: gar:[25146] csw/mgar/pkg/liblogging/trunk Message-ID: <3mM4RK37snz1CW@mail.opencsw.org> Revision: 25146 http://sourceforge.net/p/gar/code/25146 Author: dmichelsen Date: 2015-07-01 14:18:22 +0000 (Wed, 01 Jul 2015) Log Message: ----------- liblogging/trunk: Enable RFC3195 support Modified Paths: -------------- csw/mgar/pkg/liblogging/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/liblogging/trunk/files/0001-endif-must-be-on-next-line.patch Modified: csw/mgar/pkg/liblogging/trunk/Makefile =================================================================== --- csw/mgar/pkg/liblogging/trunk/Makefile 2015-07-01 13:27:11 UTC (rev 25145) +++ csw/mgar/pkg/liblogging/trunk/Makefile 2015-07-01 14:18:22 UTC (rev 25146) @@ -10,22 +10,37 @@ MASTER_SITES = http://download.rsyslog.com/liblogging/ DISTFILES += $(DISTNAME).tar.gz +PATCHFILES += 0001-endif-must-be-on-next-line.patch + VENDOR_URL = http://www.liblogging.org PACKAGES += CSWliblogging-stdlog0 -SPKG_DESC_CSWliblogging-stdlog0 = An easy to use logging library +SPKG_DESC_CSWliblogging-stdlog0 = An easy to use logging library, liblogginstdlog.so.0 PKGFILES_CSWliblogging-stdlog0 += $(call pkgfiles_lib,liblogging-stdlog.so.0) -PACKAGES += CSWliblogging-stdlog-dev -SPKG_DESC_CSWliblogging-stdlog-dev = Development files for liblogging-stdlog.so.0 +PACKAGES += CSWliblogging-rfc3195-0 +SPKG_DESC_CSWliblogging-rfc3195-0 = An easy to use logging library for the RFC3150 standard, liblogging-rfc3195.so.0 +PKGFILES_CSWliblogging-rfc3195-0 += $(call pkgfiles_lib,liblogging-rfc3195.so.0) + +PACKAGES += CSWliblogging-dev +SPKG_DESC_CSWliblogging-dev = Development files for liblogging-stdlog.so.0, liblogging-rfc3195.so.0 # PKGFILES is catchall -RUNTIME_DEP_PKGS_CSWliblogging-stdlog-dev += CSWliblogging-stdlog0 +RUNTIME_DEP_PKGS_CSWliblogging-dev += CSWliblogging-stdlog0 +RUNTIME_DEP_PKGS_CSWliblogging-dev += CSWliblogging-rfc3195-0 +OBSOLETED_BY_CSWliblogging-dev += CSWliblogging-stdlog-dev + +# This is needed for rfc3195 support +EXTRA_CPPFLAGS += -DSROS_Solaris + +# For recv, ... +EXTRA_LINKER_FLAGS += -lsocket -lnsl + CONFIGURE_ARGS += $(DIRPATHS) # This is SystemD, why does it not detect that there is no SystemD? CONFIGURE_ARGS += --disable-journal # This is disabled by default and does not compile out-of-the-box, leave it off for now -# CONFIGURE_ARGS += --enable-rfc3195 +CONFIGURE_ARGS += --enable-rfc3195 BUILD64 = 1 Added: csw/mgar/pkg/liblogging/trunk/files/0001-endif-must-be-on-next-line.patch =================================================================== --- csw/mgar/pkg/liblogging/trunk/files/0001-endif-must-be-on-next-line.patch (rev 0) +++ csw/mgar/pkg/liblogging/trunk/files/0001-endif-must-be-on-next-line.patch 2015-07-01 14:18:22 UTC (rev 25146) @@ -0,0 +1,38 @@ +From 7b1bbae3411325a8b59434ee2e858b096975602e Mon Sep 17 00:00:00 2001 +From: Dagobert Michelsen +Date: Wed, 1 Jul 2015 15:52:43 +0200 +Subject: [PATCH] endif must be on next line + +--- + rfc3195/src/oscallsUnix.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/rfc3195/src/oscallsUnix.c b/rfc3195/src/oscallsUnix.c +index 4d3864d..d22dd57 100644 +--- a/rfc3195/src/oscallsUnix.c ++++ b/rfc3195/src/oscallsUnix.c +@@ -77,6 +77,7 @@ srRetVal getCurrTime(int* year, int* month, int* day, int *hour, int* minute, in + */ + lBias = -(daylight ? altzone : timezone); + #else +- lBias = tm->tm_gmtoff; +#endif ++ lBias = tm->tm_gmtoff; ++#endif + if(lBias < 0) + { + *pcOffsetMode = '-'; + lBias *= -1; + } + else + *pcOffsetMode = '+'; + + *pOffsetHour = lBias / 3600; + *pOffsetMinute = lBias % 3600; + + return SR_RET_OK; +} + +-- +2.4.0 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 1 16:58:32 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 1 Jul 2015 14:58:32 +0000 Subject: SF.net SVN: gar:[25147] csw/mgar/pkg/rsyslog/trunk Message-ID: <3mM5Kf4j8Rz1G9@mail.opencsw.org> Revision: 25147 http://sourceforge.net/p/gar/code/25147 Author: dmichelsen Date: 2015-07-01 14:58:32 +0000 (Wed, 01 Jul 2015) Log Message: ----------- rsyslog/trunk: Update to 8.11.0 Modified Paths: -------------- csw/mgar/pkg/rsyslog/trunk/Makefile csw/mgar/pkg/rsyslog/trunk/checksums Modified: csw/mgar/pkg/rsyslog/trunk/Makefile =================================================================== --- csw/mgar/pkg/rsyslog/trunk/Makefile 2015-07-01 14:18:22 UTC (rev 25146) +++ csw/mgar/pkg/rsyslog/trunk/Makefile 2015-07-01 14:58:32 UTC (rev 25147) @@ -1,5 +1,5 @@ NAME = rsyslog -VERSION = 5.8.13 +VERSION = 8.11.0 GARTYPE = v2 DESCRIPTION = Enhanced multi-threaded syslogd with a focus on security and reliability @@ -7,30 +7,91 @@ Enhanced multi-threaded syslogd with a focus on security and reliability endef -MASTER_SITES = http://rsyslog.com/files/download/rsyslog/ -DISTFILES = $(NAME)-$(VERSION).tar.gz -DISTFILES += rsyslog.init -DISTFILES += rsyslog.default -DISTFILES += rsyslog.conf +MASTER_SITES = http://www.rsyslog.com/files/download/rsyslog/ +DISTFILES += $(DISTNAME).tar.gz +DISTFILES += rsyslog.init +DISTFILES += rsyslog.default +DISTFILES += rsyslog.conf +BUILD_DEP_PKGS += CSWlibestr-dev +BUILD_DEP_PKGS += CSWlibjson-c-dev +BUILD_DEP_PKGS += CSWlibrelp-dev +BUILD_DEP_PKGS += CSWliblogging-dev + RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibz1 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWliblogging-stdlog0 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibuuid1 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibestr0 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibgcrypt20 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibjson-c3 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWliblognorm2 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibcurl4 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibdbi1 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibssl1-0-0 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibnet1 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWliblogging-rfc3195-0 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibrelp0 GARCOMPILER = GNU -PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 +# We need libnet. See for details +# http://wiki.opencsw.org/project-libnet +EXTRA_LDFLAGS = -L$(libdir)/libnet-new CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-imsolaris -EXTRA_CPPFLAGS+= -D_PATH_LOGCONF=\\\"$(sysconfdir)/rsyslog.conf\\\" -CHECKPKG_OVERRIDES_CSWrsyslog += file-with-bad-content|/usr/local|root/opt/csw/share/man/man8/rsyslogd.8 +# Currently broken as reported here: +# https://github.com/rsyslog/rsyslog/issues/417 +#CONFIGURE_ARGS += --enable-imfile -INITSMF = /etc/opt/csw/init.d/cswrsyslog +CONFIGURE_ARGS += --enable-impstats -post-install-modulated: - /opt/csw/gnu/install -D -m 644 $(WORKDIR)/rsyslog.conf $(DESTDIR)/etc/opt/csw/rsyslog.conf - /opt/csw/gnu/install -D -m 644 $(WORKDIR)/rsyslog.default $(DESTDIR)/etc/opt/csw/default/rsyslog - /opt/csw/gnu/install -D -m 755 $(WORKDIR)/rsyslog.init $(DESTDIR)/etc/opt/csw/init.d/cswrsyslog +# imptcp requires epoll which Solaris does not have +# CONFIGURE_ARGS += --enable-imptcp +CONFIGURE_ARGS += --enable-libdbi +CONFIGURE_ARGS += --enable-elasticsearch +CONFIGURE_ARGS += --enable-mail +CONFIGURE_ARGS += --enable-mmnormalize +CONFIGURE_ARGS += --enable-mmjsonparse +CONFIGURE_ARGS += --enable-mmaudit +CONFIGURE_ARGS += --enable-mmanon +CONFIGURE_ARGS += --enable-mmutf8fix +CONFIGURE_ARGS += --enable-mmcount +CONFIGURE_ARGS += --enable-mmsequence +CONFIGURE_ARGS += --enable-mmfields +CONFIGURE_ARGS += --enable-mmpstrucdata +CONFIGURE_ARGS += --enable-mmrfc5424addhmac + +CONFIGURE_ARGS += --enable-relp +CONFIGURE_ARGS += --enable-rfc3195 +CONFIGURE_ARGS += --enable-omprog +CONFIGURE_ARGS += --enable-omudpspoof +CONFIGURE_ARGS += --enable-omstdout + +# This is SystemD Journal, we don't have that on Solaris +# CONFIGURE_ARGS += --enable-omjournal + +CONFIGURE_ARGS += --enable-pmlastmsg +CONFIGURE_ARGS += --enable-pmcisconames +CONFIGURE_ARGS += --enable-pmciscoios +CONFIGURE_ARGS += --enable-pmsnare +CONFIGURE_ARGS += --enable-omruleset +CONFIGURE_ARGS += --enable-omuxsock +CONFIGURE_ARGS += --enable-mmsnmptrapd + +EXTRA_CPPFLAGS += -D_PATH_LOGCONF=\\\"$(sysconfdir)/rsyslog.conf\\\" + +PRESERVECONF += $(sysconfdir)/rsyslog.conf + +INITSMF += /etc/opt/csw/init.d/cswrsyslog + include gar/category.mk + +post-install-modulated: + ginstall -D -m 644 $(WORKDIR)/rsyslog.conf $(DESTDIR)/etc/opt/csw/rsyslog.conf + ginstall -D -m 644 $(WORKDIR)/rsyslog.default $(DESTDIR)/etc/opt/csw/default/rsyslog + ginstall -D -m 755 $(WORKDIR)/rsyslog.init $(DESTDIR)/etc/opt/csw/init.d/cswrsyslog + @$(MAKECOOKIE) Modified: csw/mgar/pkg/rsyslog/trunk/checksums =================================================================== --- csw/mgar/pkg/rsyslog/trunk/checksums 2015-07-01 14:18:22 UTC (rev 25146) +++ csw/mgar/pkg/rsyslog/trunk/checksums 2015-07-01 14:58:32 UTC (rev 25147) @@ -1 +1 @@ -8d228a8b622f90b320c95f38be7fc5bb rsyslog-5.8.13.tar.gz +35f0b7024ae7b5677e49f14f36304d77 rsyslog-8.11.0.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 2 10:44:31 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 2 Jul 2015 08:44:31 +0000 Subject: SF.net SVN: gar:[25148] csw/mgar/pkg/rsyslog/trunk Message-ID: <3mMXzg45l1z1Ql@mail.opencsw.org> Revision: 25148 http://sourceforge.net/p/gar/code/25148 Author: dmichelsen Date: 2015-07-02 08:44:30 +0000 (Thu, 02 Jul 2015) Log Message: ----------- rsyslog/trunk: Add GnuTLS, imfile, SMF manifest Modified Paths: -------------- csw/mgar/pkg/rsyslog/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/rsyslog/trunk/files/0001-Forward-port-patch-from-pkgsrc.patch csw/mgar/pkg/rsyslog/trunk/files/cswrsyslogd.xml Removed Paths: ------------- csw/mgar/pkg/rsyslog/trunk/files/rsyslog.default csw/mgar/pkg/rsyslog/trunk/files/rsyslog.init Modified: csw/mgar/pkg/rsyslog/trunk/Makefile =================================================================== --- csw/mgar/pkg/rsyslog/trunk/Makefile 2015-07-01 14:58:32 UTC (rev 25147) +++ csw/mgar/pkg/rsyslog/trunk/Makefile 2015-07-02 08:44:30 UTC (rev 25148) @@ -9,10 +9,15 @@ MASTER_SITES = http://www.rsyslog.com/files/download/rsyslog/ DISTFILES += $(DISTNAME).tar.gz -DISTFILES += rsyslog.init -DISTFILES += rsyslog.default +DISTFILES += cswrsyslogd.xml DISTFILES += rsyslog.conf +# Use patch from +# 0001-Forward-port-patch-from-pkgsrc.patch +# until this is fixed: +# https://github.com/rsyslog/rsyslog/issues/417 +PATCHFILES += 0001-Forward-port-patch-from-pkgsrc.patch + BUILD_DEP_PKGS += CSWlibestr-dev BUILD_DEP_PKGS += CSWlibjson-c-dev BUILD_DEP_PKGS += CSWlibrelp-dev @@ -32,7 +37,11 @@ RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibnet1 RUNTIME_DEP_PKGS_CSWrsyslog += CSWliblogging-rfc3195-0 RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibrelp0 +RUNTIME_DEP_PKGS_CSWrsyslog += CSWlibgnutls28 +# This is the SMF DTD +CHECKPKG_OVERRIDES_CSWrsyslog += file-with-bad-content|/usr/share|root/var/opt/csw/svc/manifest/cswrsyslogd.xml + GARCOMPILER = GNU # We need libnet. See for details @@ -42,10 +51,7 @@ CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-imsolaris -# Currently broken as reported here: -# https://github.com/rsyslog/rsyslog/issues/417 -#CONFIGURE_ARGS += --enable-imfile - +CONFIGURE_ARGS += --enable-imfile CONFIGURE_ARGS += --enable-impstats # imptcp requires epoll which Solaris does not have @@ -53,6 +59,7 @@ CONFIGURE_ARGS += --enable-libdbi CONFIGURE_ARGS += --enable-elasticsearch +CONFIGURE_ARGS += --enable-gnutls CONFIGURE_ARGS += --enable-mail CONFIGURE_ARGS += --enable-mmnormalize CONFIGURE_ARGS += --enable-mmjsonparse @@ -82,16 +89,29 @@ CONFIGURE_ARGS += --enable-omuxsock CONFIGURE_ARGS += --enable-mmsnmptrapd +# CONFIGURE_ARGS += --enable-omhdfs +# CONFIGURE_ARGS += --enable-omkafka +# CONFIGURE_ARGS += --enable-ommongodb +# CONFIGURE_ARGS += --enable-imzmq3 +# CONFIGURE_ARGS += --enable-imczmq +# CONFIGURE_ARGS += --enable-omzmq3 +# CONFIGURE_ARGS += --enable-omczmq +# CONFIGURE_ARGS += --enable-omrabbitmq +# CONFIGURE_ARGS += --enable-omhiredis +# CONFIGURE_ARGS += --enable-omhttpfs +CONFIGURE_ARGS += --enable-generate-man-pages + EXTRA_CPPFLAGS += -D_PATH_LOGCONF=\\\"$(sysconfdir)/rsyslog.conf\\\" PRESERVECONF += $(sysconfdir)/rsyslog.conf -INITSMF += /etc/opt/csw/init.d/cswrsyslog +PROTOTYPE_MODIFIERS += smf +PROTOTYPE_FILES_smf += /var/opt/csw/svc/manifest/cswrsyslogd.xml +PROTOTYPE_CLASS_smf = manifest include gar/category.mk post-install-modulated: ginstall -D -m 644 $(WORKDIR)/rsyslog.conf $(DESTDIR)/etc/opt/csw/rsyslog.conf - ginstall -D -m 644 $(WORKDIR)/rsyslog.default $(DESTDIR)/etc/opt/csw/default/rsyslog - ginstall -D -m 755 $(WORKDIR)/rsyslog.init $(DESTDIR)/etc/opt/csw/init.d/cswrsyslog + ginstall -D -m 0644 $(WORKDIR)/cswrsyslogd.xml $(DESTDIR)/var/opt/csw/svc/manifest/cswrsyslogd.xml @$(MAKECOOKIE) Added: csw/mgar/pkg/rsyslog/trunk/files/0001-Forward-port-patch-from-pkgsrc.patch =================================================================== --- csw/mgar/pkg/rsyslog/trunk/files/0001-Forward-port-patch-from-pkgsrc.patch (rev 0) +++ csw/mgar/pkg/rsyslog/trunk/files/0001-Forward-port-patch-from-pkgsrc.patch 2015-07-02 08:44:30 UTC (rev 25148) @@ -0,0 +1,46 @@ +From 6658fe23e1e199cb1c0cead031c97fe2995c53e8 Mon Sep 17 00:00:00 2001 +From: Dagobert Michelsen +Date: Wed, 1 Jul 2015 22:47:56 +0200 +Subject: [PATCH] Forward-port patch from pkgsrc + +--- + plugins/imfile/imfile.c | 6 ++++++ + 1 file changed, 6 insertions(+) + +diff --git a/plugins/imfile/imfile.c b/plugins/imfile/imfile.c +index 3d6e8ef..bc3d73b 100644 +--- a/plugins/imfile/imfile.c ++++ b/plugins/imfile/imfile.c +@@ -1763,10 +1763,14 @@ BEGINrunInput + CODESTARTrunInput + DBGPRINTF("imfile: working in %s mode\n", + (runModConf->opMode == OPMODE_POLLING) ? "polling" : "inotify"); ++#if HAVE_INOTIFY_INIT + if(runModConf->opMode == OPMODE_POLLING) + iRet = doPolling(); + else + iRet = do_inotify(); ++#else ++ iRet = doPolling(); ++#endif + + DBGPRINTF("imfile: terminating upon request of rsyslog core\n"); + ENDrunInput +@@ -1869,12 +1873,14 @@ CODESTARTmodExit + objRelease(errmsg, CORE_COMPONENT); + objRelease(prop, CORE_COMPONENT); + objRelease(ruleset, CORE_COMPONENT); ++#if HAVE_INOTIFY_INIT + if(dirs != NULL) { + free(dirs->active.listeners); + free(dirs->configured.listeners); + free(dirs); + } + free(wdmap); ++#endif /* #if HAVE_INOTIFY_INIT */ + ENDmodExit + + +-- +2.4.0 + Added: csw/mgar/pkg/rsyslog/trunk/files/cswrsyslogd.xml =================================================================== (Binary files differ) Index: csw/mgar/pkg/rsyslog/trunk/files/cswrsyslogd.xml =================================================================== --- csw/mgar/pkg/rsyslog/trunk/files/cswrsyslogd.xml 2015-07-01 14:58:32 UTC (rev 25147) +++ csw/mgar/pkg/rsyslog/trunk/files/cswrsyslogd.xml 2015-07-02 08:44:30 UTC (rev 25148) Property changes on: csw/mgar/pkg/rsyslog/trunk/files/cswrsyslogd.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/xml \ No newline at end of property Deleted: csw/mgar/pkg/rsyslog/trunk/files/rsyslog.default =================================================================== --- csw/mgar/pkg/rsyslog/trunk/files/rsyslog.default 2015-07-01 14:58:32 UTC (rev 25147) +++ csw/mgar/pkg/rsyslog/trunk/files/rsyslog.default 2015-07-02 08:44:30 UTC (rev 25148) @@ -1,2 +0,0 @@ -# rsyslogd options -SYSLOGD_OPTIONS="-c 5" Deleted: csw/mgar/pkg/rsyslog/trunk/files/rsyslog.init =================================================================== --- csw/mgar/pkg/rsyslog/trunk/files/rsyslog.init 2015-07-01 14:58:32 UTC (rev 25147) +++ csw/mgar/pkg/rsyslog/trunk/files/rsyslog.init 2015-07-02 08:44:30 UTC (rev 25148) @@ -1,91 +0,0 @@ -#!/bin/sh -# -# $Id: cswrsyslogd 17679 2012-04-14 18:58:06Z phipsy $ -# -# /etc/opt/csw/init.d/cswrsyslog - -# Check if we're on 10; therefore SMF -if [ -x /usr/sbin/svcadm ]; then - . /lib/svc/share/smf_include.sh -fi - -if [ -f /etc/opt/csw/default/rsyslog ]; then - . /etc/opt/csw/default/rsyslog -fi - -pidfile=/var/run/rsyslogd.pid - -start_rsyslogd() { - /opt/csw/sbin/rsyslogd $SYSLOGD_OPTIONS -} - -reload_rsyslogd() { - if [ -r $pidfile ]; then - kill -HUP `cat $pidfile` - fi -} - -stop_rsyslogd() { - if [ -r $pidfile ]; then - kill $pid `cat $pidfile` - fi -} - -get_current_pid() { - if [ -x /usr/bin/zonename ]; then - zone=`/usr/bin/zonename` - zoneopts="-z $zone" - else - zoneopts="" - fi - pgrep $zoneopts rsyslogd -} - -case "$1" in - start) - printf "Starting rsyslog daemon:" - start_rsyslogd - printf " rsyslogd" - echo "" - ;; - stop) - printf "Stopping rsyslog daemon:" - stop_rsyslogd - printf " rsyslogd" - echo "" - ;; - restart) - printf "Restarting rsyslog daemon:" - stop_rsyslogd - start_rsyslogd - printf " rsyslogd" - echo "" - ;; - reload) - printf "Reloading rsyslog daemon:" - reload_rsyslogd - printf " rsyslogd" - echo "" - ;; - status) - if [ -f $pidfile ]; then - pid=`cat $pidfile` - curpid=`get_current_pid` - if [ "$pid" -eq "$curpid" ]; then - echo "rsyslogd is running" - exit 0 - else - echo "rsyslogd is not running" - exit 1 - fi - else - echo "rsyslogd is not running" - exit 1 - fi - ;; - *) - printf "Usage: %s {start|stop|restart|reload|status}\n" "$0" - exit 1 - ;; -esac -exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Thu Jul 2 11:33:42 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Thu, 2 Jul 2015 09:33:42 +0000 Subject: SF.net SVN: gar:[25149] csw/mgar/pkg/rsyslog/trunk/files/rsyslog.conf Message-ID: <3mMZ4P6bR0z1Tj@mail.opencsw.org> Revision: 25149 http://sourceforge.net/p/gar/code/25149 Author: janholzh Date: 2015-07-02 09:33:41 +0000 (Thu, 02 Jul 2015) Log Message: ----------- rsyslog/trunk: update default config Modified Paths: -------------- csw/mgar/pkg/rsyslog/trunk/files/rsyslog.conf Modified: csw/mgar/pkg/rsyslog/trunk/files/rsyslog.conf =================================================================== --- csw/mgar/pkg/rsyslog/trunk/files/rsyslog.conf 2015-07-02 08:44:30 UTC (rev 25148) +++ csw/mgar/pkg/rsyslog/trunk/files/rsyslog.conf 2015-07-02 09:33:41 UTC (rev 25149) @@ -1,10 +1,8 @@ -# rsyslog v5 configuration file - # if you experience problems, check # http://www.rsyslog.com/troubleshoot for assistance $ModLoad immark # provides --MARK-- message capability -$ModLoad imuxsock # provides support for local system logging (e.g. via logger command) +$ModLoad imsolaris # need for Solaris support # Log all kernel messages to the console. # Logging much else clutters up the screen. @@ -15,7 +13,7 @@ *.info;mail.none;authpriv.none;cron.none -/var/log/messages # The authpriv file has restricted access. -authpriv.* /var/log/secure +authpriv.* /var/log/authlog # Log all the mail messages in one place. mail.* -/var/log/maillog @@ -25,7 +23,7 @@ cron.* -/var/log/cron # Everybody gets emergency messages -*.emerg * +*.emerg :omusrmsg:* # Save news errors of level crit and higher in a special file. uucp,news.crit -/var/log/spooler This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 2 11:49:23 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 2 Jul 2015 09:49:23 +0000 Subject: SF.net SVN: gar:[25150] csw/mgar/pkg/lang-python/carbon/trunk/files/ cswcarbon-aggregator.xml Message-ID: <3mMZQP1xPzz1XG@mail.opencsw.org> Revision: 25150 http://sourceforge.net/p/gar/code/25150 Author: dmichelsen Date: 2015-07-02 09:49:23 +0000 (Thu, 02 Jul 2015) Log Message: ----------- lang-python/carbon/trunk: Adjust config location for carbon-aggregator Modified Paths: -------------- csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-aggregator.xml Modified: csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-aggregator.xml =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 2 11:50:00 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 2 Jul 2015 09:50:00 +0000 Subject: SF.net SVN: gar:[25151] csw/mgar/pkg/lang-python/carbon/trunk/files/ cswcarbon-relay.xml Message-ID: <3mMZR44cvDz2V@mail.opencsw.org> Revision: 25151 http://sourceforge.net/p/gar/code/25151 Author: dmichelsen Date: 2015-07-02 09:50:00 +0000 (Thu, 02 Jul 2015) Log Message: ----------- lang-python/carbon/trunk: Adjust config location for carbon-relay Modified Paths: -------------- csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-relay.xml Modified: csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-relay.xml =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 2 14:35:33 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 2 Jul 2015 12:35:33 +0000 Subject: SF.net SVN: gar:[25152] csw/mgar/pkg/lang-python/carbon/trunk Message-ID: <3mMf6D6wvHz6Y@mail.opencsw.org> Revision: 25152 http://sourceforge.net/p/gar/code/25152 Author: dmichelsen Date: 2015-07-02 12:35:32 +0000 (Thu, 02 Jul 2015) Log Message: ----------- lang-python/carbon/trunk: Add patch for carbon-aggregator Modified Paths: -------------- csw/mgar/pkg/lang-python/carbon/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/lang-python/carbon/trunk/files/0001-Fix-for-351.patch Modified: csw/mgar/pkg/lang-python/carbon/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/carbon/trunk/Makefile 2015-07-02 09:50:00 UTC (rev 25151) +++ csw/mgar/pkg/lang-python/carbon/trunk/Makefile 2015-07-02 12:35:32 UTC (rev 25152) @@ -14,6 +14,12 @@ MANIFESTS += cswcarbon-relay.xml DISTFILES += $(MANIFESTS) +# Apply patch until this is fixed: +# https://github.com/graphite-project/carbon/issues/364 +# Patch taken from +# https://github.com/graphite-project/carbon/commit/2cc77752383288c27c4623a659cd0a76ef95b5a9 +PATCHFILES += 0001-Fix-for-351.patch + PACKAGES += CSWpy-carbon SPKG_DESC_CSWpy-carbon = Backend data caching and persistence daemon for Graphite # PKGFILES is catchall Added: csw/mgar/pkg/lang-python/carbon/trunk/files/0001-Fix-for-351.patch =================================================================== --- csw/mgar/pkg/lang-python/carbon/trunk/files/0001-Fix-for-351.patch (rev 0) +++ csw/mgar/pkg/lang-python/carbon/trunk/files/0001-Fix-for-351.patch 2015-07-02 12:35:32 UTC (rev 25152) @@ -0,0 +1,25 @@ +From 854066039fcaf9a1e8867468f59600386ba241d3 Mon Sep 17 00:00:00 2001 +From: Dagobert Michelsen +Date: Thu, 2 Jul 2015 14:31:32 +0200 +Subject: [PATCH] Fix for #351 + +--- + lib/carbon/service.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/carbon/service.py b/lib/carbon/service.py +index be00876..7124450 100644 +--- a/lib/carbon/service.py ++++ b/lib/carbon/service.py +@@ -24,7 +24,7 @@ from carbon import state, util, events + from carbon.log import carbonLogObserver + from carbon.exceptions import CarbonConfigException + +-state.events = state ++state.events = events + + + class CarbonRootService(MultiService): +-- +2.4.0 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 2 19:32:22 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 2 Jul 2015 17:32:22 +0000 Subject: SF.net SVN: gar:[25153] csw/mgar/pkg Message-ID: <3mMmhw0HKTzCH@mail.opencsw.org> Revision: 25153 http://sourceforge.net/p/gar/code/25153 Author: dmichelsen Date: 2015-07-02 17:32:21 +0000 (Thu, 02 Jul 2015) Log Message: ----------- pcre2: Initial commit Added Paths: ----------- csw/mgar/pkg/pcre2/ csw/mgar/pkg/pcre2/trunk/Makefile csw/mgar/pkg/pcre2/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/pcre2/branches/pcre-gcc/ csw/mgar/pkg/pcre2/tags/pcre-8.00,REV=2009.11.17/ csw/mgar/pkg/pcre2/tags/pcre-8.01,REV=2010.01.20/ csw/mgar/pkg/pcre2/trunk/Makefile csw/mgar/pkg/pcre2/trunk/checksums csw/mgar/pkg/pcre2/trunk/files/0001-Allow-norunpath-for-libtool.patch Deleted: csw/mgar/pkg/pcre2/trunk/Makefile =================================================================== --- csw/mgar/pkg/pcre/trunk/Makefile 2014-11-19 15:00:40 UTC (rev 24362) +++ csw/mgar/pkg/pcre2/trunk/Makefile 2015-07-02 17:32:21 UTC (rev 25153) @@ -1,109 +0,0 @@ -NAME = pcre -VERSION = 8.36 -GARTYPE = v2 - -DESCRIPTION = Perl-compatible regular expression tools -define BLURB - The PCRE library is a set of functions that implement regular - expression pattern matching using the same syntax and semantics - as Perl 5. PCRE has its own native API, as well as a set of - wrapper functions that correspond to the POSIX regular expression API. -endef - -MASTER_SITES = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ -DISTFILES = $(DISTNAME).tar.bz2 -PATCHFILES = 0001-Allow-norunpath-for-libtool.patch - -VENDOR_URL = http://www.pcre.org - -PACKAGES = CSWpcre -CATALOGNAME_CSWpcre = pcre -SPKG_DESC_CSWpcre = Perl-compatible regular expression tools -RUNTIME_DEP_PKGS_CSWpcre += CSWlibreadline6 -RUNTIME_DEP_PKGS_CSWpcre += CSWlibpcre1 -RUNTIME_DEP_PKGS_CSWpcre += CSWlibpcre16-0 -RUNTIME_DEP_PKGS_CSWpcre += CSWlibpcre32-0 -RUNTIME_DEP_PKGS_CSWpcre += CSWlibbz2-1-0 -RUNTIME_DEP_PKGS_CSWpcre += CSWlibz1 -RUNTIME_DEP_PKGS_CSWpcre += CSWlibpcreposix0 - -PACKAGES += CSWlibpcre-dev -SPKG_DESC_CSWlibpcre-dev = Development files for libpcre.so.1, libpcre16.so.0, libpcrecpp.so.0 and libpcreposix.so.0 -RUNTIME_DEP_PKGS_CSWlibpcre-dev += CSWlibpcre1 -RUNTIME_DEP_PKGS_CSWlibpcre-dev += CSWlibpcre16-0 -RUNTIME_DEP_PKGS_CSWlibpcre-dev += CSWlibpcre32-0 -RUNTIME_DEP_PKGS_CSWlibpcre-dev += CSWlibpcreposix0 -RUNTIME_DEP_PKGS_CSWlibpcre-dev += CSWlibpcrecpp0 -PKGFILES_CSWlibpcre-dev += $(PKGFILES_DEVEL) -PKGFILES_CSWlibpcre-dev += $(docdir)/.* -OBSOLETED_BY_CSWlibpcre-dev += CSWpcre-devel - -# We don't want to depend on pcre -CHECKPKG_OVERRIDES_CSWlibpcre-dev += missing-dependency|CSWpcre - -PACKAGES += CSWlibpcre1 -SPKG_DESC_CSWlibpcre1 = Perl-compatible regular expression tools, libpcre.so.1 -PKGFILES_CSWlibpcre1 = $(call pkgfiles_lib,libpcre.so.1) - -PACKAGES += CSWlibpcre16-0 -SPKG_DESC_CSWlibpcre16-0 = Perl-compatible regular expression tools, libpcre16.so.0 -PKGFILES_CSWlibpcre16-0 = $(call pkgfiles_lib,libpcre16.so.0) - -PACKAGES += CSWlibpcre32-0 -SPKG_DESC_CSWlibpcre32-0 = Perl-compatible regular expression tools, libpcre32.so.0 -PKGFILES_CSWlibpcre32-0 = $(call pkgfiles_lib,libpcre32.so.0) - -PACKAGES += CSWlibpcrecpp0 -SPKG_DESC_CSWlibpcrecpp0 += Perl-compatible regular expression tools, libpcrecpp.so.0 -PKGFILES_CSWlibpcrecpp0 += $(call pkgfiles_lib,libpcrecpp.so.0) -RUNTIME_DEP_PKGS_CSWlibpcrecpp0 += CSWlibpcre1 - -PACKAGES += CSWlibpcreposix0 -SPKG_DESC_CSWlibpcreposix0 += Perl-compatible regular expression tools, libpcreposix.so.0 -PKGFILES_CSWlibpcreposix0 += $(call pkgfiles_lib,libpcreposix.so.0) -RUNTIME_DEP_PKGS_CSWlibpcreposix0 += CSWlibpcre1 - -REINPLACE_USRLOCAL += doc/pcre-config.1 -REINPLACE_USRLOCAL += doc/pcresample.3 - -# Older compiler like Sun Studio 12 behave differently on -Wl,-i... and -Qoption ld -i... -# This leads to configure detecting something works which later on does not work. -# Newer compilers behave consistently. -# See also http://bugs.exim.org/show_bug.cgi?id=1278 -GARCOMPILER = SOS12U3 - -BUILD64_LIBS_ONLY = 1 - -EXTRA_LINKER_FLAGS = -norunpath - -CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --enable-unicode-properties -CONFIGURE_ARGS += --enable-pcregrep-libz -CONFIGURE_ARGS += --enable-pcregrep-libbz2 -CONFIGURE_ARGS += --enable-pcretest-libreadline -CONFIGURE_ARGS += --enable-pcre16 -CONFIGURE_ARGS += --enable-pcre32 - -# The stack on Solaris is rather limited, disable stack allocation -CONFIGURE_ARGS += --disable-stack-for-recursion - -# No JIT for Sparc, may try for x86 at some later time -#CONFIGURE_ARGS += --enable-jit - -# This includes some alias things that don't work with the Sun linker -BUILD_OVERRIDE_VARS += EXTRA_LIBPCRECPP_LDFLAGS - -# We need more than the default 8 MB of stack space -# TEST_SCRIPTS = custom - -include gar/category.mk - -# The testcases need 'diff -u' which Solaris 8 diff does not have, -# but we need Solaris strip, otherwise pcregrep is broken and 200m in size... -PATH := /usr/ccs/bin:/opt/csw/gnu:$(PATH) - -test-custom: - @echo " ==> Running make $(TEST_TARGET) in $*" - cd $(WORKSRC) && /usr/bin/ulimit -s 32768 && /usr/bin/env -i $(TEST_ENV) $(MAKE) $(PARALLELMFLAGS) $(foreach TTT,$(TEST_OVERRIDE_VARS),$(TTT)="$(TEST_OVERRIDE_VAR_$(TTT))") $(foreach TTT,$(TEST_OVERRIDE_DIRS),$(TTT)="$($(TTT))") -C $(OBJDIR) $(TEST_ARGS) $(TEST_TARGET) - @$(MAKECOOKIE) - Copied: csw/mgar/pkg/pcre2/trunk/Makefile (from rev 24917, csw/mgar/pkg/pcre/trunk/Makefile) =================================================================== --- csw/mgar/pkg/pcre2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/pcre2/trunk/Makefile 2015-07-02 17:32:21 UTC (rev 25153) @@ -0,0 +1,83 @@ +NAME = pcre2 +VERSION = 10.20 +GARTYPE = v2 + +DESCRIPTION = Perl-compatible regular expression tools + +MASTER_SITES = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +DISTFILES = $(DISTNAME).tar.bz2 +#PATCHFILES = 0001-Allow-norunpath-for-libtool.patch + +VENDOR_URL = http://www.pcre.org + +PACKAGES = CSWpcre2 +SPKG_DESC_CSWpcre2 = Perl-compatible regular expression tools v2 +RUNTIME_DEP_PKGS_CSWpcre2 += CSWlibreadline6 +RUNTIME_DEP_PKGS_CSWpcre2 += CSWlibpcre2-8-0 +RUNTIME_DEP_PKGS_CSWpcre2 += CSWlibpcre2-16-0 +RUNTIME_DEP_PKGS_CSWpcre2 += CSWlibpcre2-32-0 +RUNTIME_DEP_PKGS_CSWpcre2 += CSWlibbz2-1-0 +RUNTIME_DEP_PKGS_CSWpcre2 += CSWlibz1 +RUNTIME_DEP_PKGS_CSWpcre2 += CSWlibpcre2posix0 + +PACKAGES += CSWlibpcre2-dev +SPKG_DESC_CSWlibpcre2-dev = Development files for libpcre.so.1, libpcre16.so.0, libpcrecpp.so.0 and libpcreposix.so.0 +RUNTIME_DEP_PKGS_CSWlibpcre2-dev += CSWlibpcre2-8-0 +RUNTIME_DEP_PKGS_CSWlibpcre2-dev += CSWlibpcre2-16-0 +RUNTIME_DEP_PKGS_CSWlibpcre2-dev += CSWlibpcre2-32-0 +RUNTIME_DEP_PKGS_CSWlibpcre2-dev += CSWlibpcre2posix0 +PKGFILES_CSWlibpcre2-dev += $(PKGFILES_DEVEL) +PKGFILES_CSWlibpcre2-dev += $(docdir)/.* + +# We don't want to depend on pcre2 +CHECKPKG_OVERRIDES_CSWlibpcre2-dev += missing-dependency|CSWpcre2 + +PACKAGES += CSWlibpcre2-8-0 +SPKG_DESC_CSWlibpcre2-8-0 = Perl-compatible regular expression tools, libpcre2-8.so.0 +PKGFILES_CSWlibpcre2-8-0 = $(call pkgfiles_lib,libpcre2-8.so.0) + +PACKAGES += CSWlibpcre2-16-0 +SPKG_DESC_CSWlibpcre2-16-0 = Perl-compatible regular expression tools, libpcre2-16.so.0 +PKGFILES_CSWlibpcre2-16-0 = $(call pkgfiles_lib,libpcre2-16.so.0) + +PACKAGES += CSWlibpcre2-32-0 +SPKG_DESC_CSWlibpcre2-32-0 = Perl-compatible regular expression tools, libpcre2-32.so.0 +PKGFILES_CSWlibpcre2-32-0 = $(call pkgfiles_lib,libpcre2-32.so.0) + +PACKAGES += CSWlibpcre2posix0 +SPKG_DESC_CSWlibpcre2posix0 += Perl-compatible regular expression tools, libpcre2-posix.so.0 +PKGFILES_CSWlibpcre2posix0 += $(call pkgfiles_lib,libpcre2-posix.so.0) +RUNTIME_DEP_PKGS_CSWlibpcre2posix0 += CSWlibpcre2-8-0 + +# Older compiler like Sun Studio 12 behave differently on -Wl,-i... and -Qoption ld -i... +# This leads to configure detecting something works which later on does not work. +# Newer compilers behave consistently. +# See also http://bugs.exim.org/show_bug.cgi?id=1278 +GARCOMPILER = SOS12U3 + +BUILD64_LIBS_ONLY = 1 + +EXTRA_LINKER_FLAGS = -norunpath + +CONFIGURE_ARGS += $(DIRPATHS) +CONFIGURE_ARGS += --enable-pcre2grep-libz +CONFIGURE_ARGS += --enable-pcre2grep-libbz2 + +# Prefer libreadline over libedit +CONFIGURE_ARGS += --enable-pcre2test-libreadline + +CONFIGURE_ARGS += --enable-pcre2-8 +CONFIGURE_ARGS += --enable-pcre2-16 +CONFIGURE_ARGS += --enable-pcre2-32 + +# The stack on Solaris is rather limited, disable stack allocation +CONFIGURE_ARGS += --disable-stack-for-recursion + +# No JIT for Sparc 64 bit +JIT-i386-32 = --enable-jit +JIT-i386-64 = --enable-jit +JIT-sparc-32 = --enable-jit +JIT-sparc-64 = +CONFIGURE_ARGS += $(JIT-$(GARCH)-$(MEMORYMODEL)) + +include gar/category.mk Deleted: csw/mgar/pkg/pcre2/trunk/checksums =================================================================== --- csw/mgar/pkg/pcre/trunk/checksums 2014-11-19 15:00:40 UTC (rev 24362) +++ csw/mgar/pkg/pcre2/trunk/checksums 2015-07-02 17:32:21 UTC (rev 25153) @@ -1 +0,0 @@ -b767bc9af0c20bc9c1fe403b0d41ad97 pcre-8.36.tar.bz2 Copied: csw/mgar/pkg/pcre2/trunk/checksums (from rev 24917, csw/mgar/pkg/pcre/trunk/checksums) =================================================================== --- csw/mgar/pkg/pcre2/trunk/checksums (rev 0) +++ csw/mgar/pkg/pcre2/trunk/checksums 2015-07-02 17:32:21 UTC (rev 25153) @@ -0,0 +1 @@ +dcd027c57ecfdc8a6c3af9d0acf5e3f7 pcre2-10.20.tar.bz2 Deleted: csw/mgar/pkg/pcre2/trunk/files/0001-Allow-norunpath-for-libtool.patch =================================================================== --- csw/mgar/pkg/pcre/trunk/files/0001-Allow-norunpath-for-libtool.patch 2014-11-19 15:00:40 UTC (rev 24362) +++ csw/mgar/pkg/pcre2/trunk/files/0001-Allow-norunpath-for-libtool.patch 2015-07-02 17:32:21 UTC (rev 25153) @@ -1,25 +0,0 @@ -From af449151a800845da508097fb85bae299b2e15ab Mon Sep 17 00:00:00 2001 -From: Dagobert Michelsen -Date: Tue, 16 Aug 2011 17:12:43 +0200 -Subject: [PATCH] Allow -norunpath for libtool - ---- - ltmain.sh | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/ltmain.sh b/ltmain.sh -index 3061e3c..5817d54 100755 ---- a/ltmain.sh -+++ b/ltmain.sh -@@ -5840,7 +5840,7 @@ func_mode_link () - # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization - -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ - -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -- -O*|-flto*|-fwhopr*|-fuse-linker-plugin) -+ -O*|-flto*|-fwhopr*|-fuse-linker-plugin|-norunpath) - func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" - func_append compile_command " $arg" --- -1.7.6 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 2 22:44:44 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 2 Jul 2015 20:44:44 +0000 Subject: SF.net SVN: gar:[25154] csw/mgar/pkg Message-ID: <3mMryd3mBYzGg@mail.opencsw.org> Revision: 25154 http://sourceforge.net/p/gar/code/25154 Author: dmichelsen Date: 2015-07-02 20:44:44 +0000 (Thu, 02 Jul 2015) Log Message: ----------- liboping/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/liboping/ csw/mgar/pkg/liboping/Makefile csw/mgar/pkg/liboping/branches/ csw/mgar/pkg/liboping/tags/ csw/mgar/pkg/liboping/trunk/ csw/mgar/pkg/liboping/trunk/Makefile csw/mgar/pkg/liboping/trunk/checksums csw/mgar/pkg/liboping/trunk/files/ Added: csw/mgar/pkg/liboping/Makefile =================================================================== --- csw/mgar/pkg/liboping/Makefile (rev 0) +++ csw/mgar/pkg/liboping/Makefile 2015-07-02 20:44:44 UTC (rev 25154) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/liboping/trunk =================================================================== --- csw/mgar/pkg/liboping/trunk 2015-07-02 17:32:21 UTC (rev 25153) +++ csw/mgar/pkg/liboping/trunk 2015-07-02 20:44:44 UTC (rev 25154) Property changes on: csw/mgar/pkg/liboping/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/liboping/trunk/Makefile =================================================================== --- csw/mgar/pkg/liboping/trunk/Makefile (rev 0) +++ csw/mgar/pkg/liboping/trunk/Makefile 2015-07-02 20:44:44 UTC (rev 25154) @@ -0,0 +1,52 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = liboping +VERSION = 1.8.0 + +DESCRIPTION = A library to generate ICMP echo requests + +MASTER_SITES = http://noping.cc/files/ +DISTFILES += $(DISTNAME).tar.bz2 + +VENDOR_URL = http://noping.cc/ + +PACKAGES += CSWliboping0 +SPKG_DESC_CSWliboping0 = A library to generate ICMP echo requests, liboping.so.0 +PKGFILES_CSWliboping0 += $(call pkgfiles_lib,liboping.so.0) + +PACKAGES += CSWoping +SPKG_DESC_CSWoping = Generating ICMP echo requests efficiently +PKGFILES_CSWoping += $(bindir)/.* +PKGFILES_CSWoping += .*/oping\.8 +RUNTIME_DEP_PKGS_CSWoping += CSWliboping0 +RUNTIME_DEP_PKGS_CSWoping += CSWlibncursesw5 + +PACKAGES += CSWpm-net-oping +SPKG_DESC_CSWpm-net-oping = Perl module for generating ICMP echo requests efficiently +PKGFILES_CSWpm-net-oping += $(libdir)/perl5/.* +PKGFILES_CSWpm-net-oping += .*\.3perl +RUNTIME_DEP_PKGS_CSWpm-net-oping += CSWperl +RUNTIME_DEP_PKGS_CSWpm-net-oping += CSWliboping0 + +PACKAGES += CSWliboping-dev +SPKG_DESC_CSWliboping-dev = Development files for liboping.so.0 +# PKGFILES is catchall +RUNTIME_DEP_PKGS_CSWliboping-dev += CSWliboping0 + +BUILD64_LIBS_ONLY = 1 + +CONFIGURE_ARGS += $(DIRPATHS) + +# No 64 bit Perl yet +CONFIGURE_ARGS-64 += --without-perl-bindings +CONFIGURE_ARGS += $(CONFIGURE_ARGS-$(MEMORYMODEL)) + +EXTRA_MERGE_EXCLUDE_FILES += .*/perllocal\.pod + +include gar/category.mk + +post-install: + ginstall -d -m 0755 $(DESTDIR)$(mandir) + -mv $(DESTDIR)$(prefix)/man/man3 $(DESTDIR)$(mandir)/man3 && rmdir $(DESTDIR)$(prefix)/man + @$(MAKECOOKIE) Property changes on: csw/mgar/pkg/liboping/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/liboping/trunk/checksums =================================================================== --- csw/mgar/pkg/liboping/trunk/checksums (rev 0) +++ csw/mgar/pkg/liboping/trunk/checksums 2015-07-02 20:44:44 UTC (rev 25154) @@ -0,0 +1 @@ +6ce05aca7d0e6b5f117997afbce65cd8 liboping-1.8.0.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jul 6 16:41:15 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 6 Jul 2015 14:41:15 +0000 Subject: SF.net SVN: gar:[25155] csw/mgar/pkg/lang-python Message-ID: <3mQ8jV3prvzxk@mail.opencsw.org> Revision: 25155 http://sourceforge.net/p/gar/code/25155 Author: dmichelsen Date: 2015-07-06 14:41:14 +0000 (Mon, 06 Jul 2015) Log Message: ----------- lang-python/carbonate: Initial commit Modified Paths: -------------- csw/mgar/pkg/lang-python/carbonate/trunk/checksums Added Paths: ----------- csw/mgar/pkg/lang-python/carbonate/ csw/mgar/pkg/lang-python/carbonate/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/lang-python/carbonate/trunk/Makefile Deleted: csw/mgar/pkg/lang-python/carbonate/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/carbon/trunk/Makefile 2015-04-01 14:24:48 UTC (rev 24794) +++ csw/mgar/pkg/lang-python/carbonate/trunk/Makefile 2015-07-06 14:41:14 UTC (rev 25155) @@ -1,25 +0,0 @@ -# $Id$ -# TODO (release-critical prefixed with !, non release-critical with *) -# -NAME = carbon -VERSION = 0.9.13 -CATEGORIES = python - -DESCRIPTION = Backend data caching and persistence daemon for Graphite - -MASTER_SITES = $(PYPI_MIRROR) -DISTFILES = $(DISTNAME).tar.gz - -PACKAGES += CSWpy-carbon -SPKG_DESC_CSWpy-carbon = Backend data caching and persistence daemon for Graphite -# PKGFILES is catchall -ARCHALL_CSWpy-carbon = 1 - -# There is no testsuite -TEST_SCRIPTS = - -include gar/category.mk - -post-extract: - -cd $(WORKSRC) && mv setup.cfg setup.cfg.orig - @$(MAKECOOKIE) Copied: csw/mgar/pkg/lang-python/carbonate/trunk/Makefile (from rev 25152, csw/mgar/pkg/lang-python/carbon/trunk/Makefile) =================================================================== --- csw/mgar/pkg/lang-python/carbonate/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/carbonate/trunk/Makefile 2015-07-06 14:41:14 UTC (rev 25155) @@ -0,0 +1,31 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = carbonate +VERSION = 0.2.2 +CATEGORIES = python + +DESCRIPTION = Tools for managing federated carbon clusters + +MASTER_SITES = $(PYPI_MIRROR) +DISTFILES += $(DISTNAME).tar.gz + +# This is a new package, don't bother building for 2.6 +MODULATIONS_PYTHON_VERSION = 2_7 + +PACKAGES += CSWpy-carbonate +SPKG_DESC_CSWpy-carbon = Tools for managing federated carbon clusters +# PKGFILES is catchall +ARCHALL_CSWpy-carbon = 1 +# The binaries like carbon-cache.py need this +RUNTIME_DEP_PKGS_CSWpy-carbon += CSWpython27 + +# This is intended +CHECKPKG_OVERRIDES_CSWpy-carbonate += python-package-missing-py26-files + +REINPLACEMENTS += conf +REINPLACE_MATCH_conf = /opt/graphite/conf/carbonate.conf +REINPLACE_WITH_conf = $(sysconfdir)/graphite/carbonate.conf +REINPLACE_FILES_conf += carbonate/util.py + +include gar/category.mk Modified: csw/mgar/pkg/lang-python/carbonate/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/carbon/trunk/checksums 2015-04-01 14:24:48 UTC (rev 24794) +++ csw/mgar/pkg/lang-python/carbonate/trunk/checksums 2015-07-06 14:41:14 UTC (rev 25155) @@ -1 +1 @@ -98c182967f52dd0d93a9c4a7a4066b5b carbon-0.9.13.tar.gz +775009d039b850b8e00db9377aa5ab73 carbonate-0.2.2.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jul 6 16:47:27 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 6 Jul 2015 14:47:27 +0000 Subject: SF.net SVN: gar:[25156] csw/mgar/pkg/lang-python/carbonate/trunk/Makefile Message-ID: <3mQ8rT0ywbz11S@mail.opencsw.org> Revision: 25156 http://sourceforge.net/p/gar/code/25156 Author: dmichelsen Date: 2015-07-06 14:47:27 +0000 (Mon, 06 Jul 2015) Log Message: ----------- lang-python/carbonate/trunk: Fix typos Modified Paths: -------------- csw/mgar/pkg/lang-python/carbonate/trunk/Makefile Modified: csw/mgar/pkg/lang-python/carbonate/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/carbonate/trunk/Makefile 2015-07-06 14:41:14 UTC (rev 25155) +++ csw/mgar/pkg/lang-python/carbonate/trunk/Makefile 2015-07-06 14:47:27 UTC (rev 25156) @@ -14,11 +14,11 @@ MODULATIONS_PYTHON_VERSION = 2_7 PACKAGES += CSWpy-carbonate -SPKG_DESC_CSWpy-carbon = Tools for managing federated carbon clusters +SPKG_DESC_CSWpy-carbonate = Tools for managing federated carbon clusters # PKGFILES is catchall -ARCHALL_CSWpy-carbon = 1 +ARCHALL_CSWpy-carbonate = 1 # The binaries like carbon-cache.py need this -RUNTIME_DEP_PKGS_CSWpy-carbon += CSWpython27 +RUNTIME_DEP_PKGS_CSWpy-carbonate += CSWpython27 # This is intended CHECKPKG_OVERRIDES_CSWpy-carbonate += python-package-missing-py26-files This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jul 6 17:17:04 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 6 Jul 2015 15:17:04 +0000 Subject: SF.net SVN: gar:[25157] csw/mgar/pkg/lang-python/carbonate/trunk Message-ID: <3mQ9Vg54syz13x@mail.opencsw.org> Revision: 25157 http://sourceforge.net/p/gar/code/25157 Author: dmichelsen Date: 2015-07-06 15:17:03 +0000 (Mon, 06 Jul 2015) Log Message: ----------- lang-python/carbonate/trunk: Add config example Modified Paths: -------------- csw/mgar/pkg/lang-python/carbonate/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/lang-python/carbonate/trunk/files/carbonate.conf Modified: csw/mgar/pkg/lang-python/carbonate/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/carbonate/trunk/Makefile 2015-07-06 14:47:27 UTC (rev 25156) +++ csw/mgar/pkg/lang-python/carbonate/trunk/Makefile 2015-07-06 15:17:03 UTC (rev 25157) @@ -9,6 +9,7 @@ MASTER_SITES = $(PYPI_MIRROR) DISTFILES += $(DISTNAME).tar.gz +DISTFILES += carbonate.conf # This is a new package, don't bother building for 2.6 MODULATIONS_PYTHON_VERSION = 2_7 @@ -19,6 +20,8 @@ ARCHALL_CSWpy-carbonate = 1 # The binaries like carbon-cache.py need this RUNTIME_DEP_PKGS_CSWpy-carbonate += CSWpython27 +# Checkpkg can't detect this +CHECKPKG_OVERRIDES_CSWpy-carbonate += surplus-dependency|CSWpython27 # This is intended CHECKPKG_OVERRIDES_CSWpy-carbonate += python-package-missing-py26-files @@ -28,4 +31,10 @@ REINPLACE_WITH_conf = $(sysconfdir)/graphite/carbonate.conf REINPLACE_FILES_conf += carbonate/util.py +PRESERVECONF = $(sysconfdir)/graphite/carbonate.conf + include gar/category.mk + +post-install: + ginstall -D -m 0644 $(WORKDIR)/carbonate.conf $(DESTDIR)$(sysconfdir)/graphite/carbonate.conf + @$(MAKECOOKIE) Added: csw/mgar/pkg/lang-python/carbonate/trunk/files/carbonate.conf =================================================================== --- csw/mgar/pkg/lang-python/carbonate/trunk/files/carbonate.conf (rev 0) +++ csw/mgar/pkg/lang-python/carbonate/trunk/files/carbonate.conf 2015-07-06 15:17:03 UTC (rev 25157) @@ -0,0 +1,6 @@ +[main] + +#DESTINATIONS = 192.168.9.13:2004:carbon01, 192.168.9.15:2004:carbon02, 192.168.6.20:2004:carbon03 +#REPLICATION_FACTOR = 2 +#SSH_USER = carbon + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Jul 8 12:44:57 2015 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 8 Jul 2015 10:44:57 +0000 Subject: SF.net SVN: gar:[25158] csw/mgar/pkg/bind/trunk Message-ID: <3mRHMw6yW9zZX@mail.opencsw.org> Revision: 25158 http://sourceforge.net/p/gar/code/25158 Author: bonivart Date: 2015-07-08 10:44:57 +0000 (Wed, 08 Jul 2015) Log Message: ----------- bind/trunk: update to 9.9.7-P1 Modified Paths: -------------- csw/mgar/pkg/bind/trunk/Makefile csw/mgar/pkg/bind/trunk/checksums Modified: csw/mgar/pkg/bind/trunk/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2015-07-06 15:17:03 UTC (rev 25157) +++ csw/mgar/pkg/bind/trunk/Makefile 2015-07-08 10:44:57 UTC (rev 25158) @@ -7,23 +7,23 @@ GARTYPE = v2 # Enable these for Px-releases -#RELEASE = P2 -#DISTVERSION = $(VERSION)-$(RELEASE) -#SPKG_VERSION = $(VERSION)$(RELEASE) -#DISTNAME = $(NAME)-$(VERSION)-$(RELEASE) -#WORKSRC = $(WORKDIR)/$(DISTNAME) +RELEASE = P1 +DISTVERSION = $(VERSION)-$(RELEASE) +SPKG_VERSION = $(VERSION)$(RELEASE) +DISTNAME = $(NAME)-$(VERSION)-$(RELEASE) +WORKSRC = $(WORKDIR)/$(DISTNAME) DESCRIPTION = ISC BIND DNS reference implementation define BLURB endef # Enable these for Px-releases -#MASTER_SITES = http://ftp.isc.org/isc/bind9/$(VERSION)-$(RELEASE)/ -#DISTFILES = $(DISTNAME).tar.gz +MASTER_SITES = http://ftp.isc.org/isc/bind9/$(VERSION)-$(RELEASE)/ +DISTFILES = $(DISTNAME).tar.gz # Disable these for Px-releases -MASTER_SITES = http://ftp.isc.org/isc/bind9/$(VERSION)/ -DISTFILES = $(NAME)-$(VERSION).tar.gz +#MASTER_SITES = http://ftp.isc.org/isc/bind9/$(VERSION)/ +#DISTFILES = $(NAME)-$(VERSION).tar.gz DISTFILES += CSWbindchroot.postinstall @@ -121,7 +121,7 @@ # Will not split out all these libs CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libbind9.so.90.0.13|soname=libbind9.so.90|pkgname=CSWlibbind|expected=CSWlibbind9-90 -CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libdns.so.106.1.0|soname=libdns.so.106|pkgname=CSWlibbind|expected=CSWlibdns106 +CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libdns.so.106.1.1|soname=libdns.so.106|pkgname=CSWlibbind|expected=CSWlibdns106 CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libisc.so.104.0.2|soname=libisc.so.104|pkgname=CSWlibbind|expected=CSWlibisc104 CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libisccfg.so.90.2.4|soname=libisccfg.so.90|pkgname=CSWlibbind|expected=CSWlibisccfg90 CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/liblwres.so.91.0.2|soname=liblwres.so.91|pkgname=CSWlibbind|expected=CSWliblwres91 Modified: csw/mgar/pkg/bind/trunk/checksums =================================================================== --- csw/mgar/pkg/bind/trunk/checksums 2015-07-06 15:17:03 UTC (rev 25157) +++ csw/mgar/pkg/bind/trunk/checksums 2015-07-08 10:44:57 UTC (rev 25158) @@ -1 +1 @@ -5aa989e0f46240316c0b96d1cc78bcbb bind-9.9.7.tar.gz +1685512258f7b42ec5b86f52ab495ec2 bind-9.9.7-P1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Wed Jul 8 16:17:15 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Wed, 8 Jul 2015 14:17:15 +0000 Subject: SF.net SVN: gar:[25159] csw/mgar/pkg/apache24/trunk/Makefile Message-ID: <3mRN4j4xdvzq5@mail.opencsw.org> Revision: 25159 http://sourceforge.net/p/gar/code/25159 Author: cgrzemba Date: 2015-07-08 14:17:15 +0000 (Wed, 08 Jul 2015) Log Message: ----------- apache24/trunk: add dependency for apache24_dev package Modified Paths: -------------- csw/mgar/pkg/apache24/trunk/Makefile Modified: csw/mgar/pkg/apache24/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache24/trunk/Makefile 2015-07-08 10:44:57 UTC (rev 25158) +++ csw/mgar/pkg/apache24/trunk/Makefile 2015-07-08 14:17:15 UTC (rev 25159) @@ -62,6 +62,7 @@ PACKAGES += CSWapache24-dev SPKG_DESC_CSWapache24-dev = The Apache 2.4 Development Files PKGFILES_CSWapache24-dev = $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWapache24-dev += CSWapache24-manual # This is a fallback CHECKPKG_OVERRIDES_CSWapache24-dev += file-with-bad-content|/usr/local|root/opt/csw/include/apache2/httpd.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 8 16:32:39 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 8 Jul 2015 14:32:39 +0000 Subject: SF.net SVN: gar:[25160] csw/mgar/pkg/lang-python/carbonate/trunk/Makefile Message-ID: <3mRNQT6p6QzsW@mail.opencsw.org> Revision: 25160 http://sourceforge.net/p/gar/code/25160 Author: dmichelsen Date: 2015-07-08 14:32:38 +0000 (Wed, 08 Jul 2015) Log Message: ----------- lang-python/carbonate/trunk: Rename to CSWcarbonate Modified Paths: -------------- csw/mgar/pkg/lang-python/carbonate/trunk/Makefile Modified: csw/mgar/pkg/lang-python/carbonate/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/carbonate/trunk/Makefile 2015-07-08 14:17:15 UTC (rev 25159) +++ csw/mgar/pkg/lang-python/carbonate/trunk/Makefile 2015-07-08 14:32:38 UTC (rev 25160) @@ -14,18 +14,22 @@ # This is a new package, don't bother building for 2.6 MODULATIONS_PYTHON_VERSION = 2_7 -PACKAGES += CSWpy-carbonate -SPKG_DESC_CSWpy-carbonate = Tools for managing federated carbon clusters +PACKAGES += CSWcarbonate +SPKG_DESC_CSWcarbonate = Tools for managing federated carbon clusters # PKGFILES is catchall -ARCHALL_CSWpy-carbonate = 1 +ARCHALL_CSWcarbonate = 1 # The binaries like carbon-cache.py need this -RUNTIME_DEP_PKGS_CSWpy-carbonate += CSWpython27 +RUNTIME_DEP_PKGS_CSWcarbonate += CSWpython27 # Checkpkg can't detect this -CHECKPKG_OVERRIDES_CSWpy-carbonate += surplus-dependency|CSWpython27 +CHECKPKG_OVERRIDES_CSWcarbonate += surplus-dependency|CSWpython27 # This is intended -CHECKPKG_OVERRIDES_CSWpy-carbonate += python-package-missing-py26-files +CHECKPKG_OVERRIDES_CSWcarbonate += python-package-missing-py26-files +# This is more of a tool than python-related +CHECKPKG_OVERRIDES_CSWcarbonate += pkgname-does-not-start-with-CSWpy- +CHECKPKG_OVERRIDES_CSWcarbonate += catalogname-does-not-start-with-py_ + REINPLACEMENTS += conf REINPLACE_MATCH_conf = /opt/graphite/conf/carbonate.conf REINPLACE_WITH_conf = $(sysconfdir)/graphite/carbonate.conf This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 8 17:15:47 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 8 Jul 2015 15:15:47 +0000 Subject: SF.net SVN: gar:[25161] csw/mgar/pkg/protobuf/trunk Message-ID: <3mRPNp0DVtzww@mail.opencsw.org> Revision: 25161 http://sourceforge.net/p/gar/code/25161 Author: dmichelsen Date: 2015-07-08 15:15:47 +0000 (Wed, 08 Jul 2015) Log Message: ----------- protobuf/trunk: Update to 2.6.1, switch to GCC for standard packages in default location Modified Paths: -------------- csw/mgar/pkg/protobuf/trunk/Makefile csw/mgar/pkg/protobuf/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/protobuf/trunk/files/0001-Patches-from-GAR.patch csw/mgar/pkg/protobuf/trunk/files/0002-std-map-in-two-more-files.patch csw/mgar/pkg/protobuf/trunk/files/OutputDirectoryIsFileError-unittest.patch csw/mgar/pkg/protobuf/trunk/files/trailing-slash-test-fails-on-solaris-8-x86.patch Modified: csw/mgar/pkg/protobuf/trunk/Makefile =================================================================== --- csw/mgar/pkg/protobuf/trunk/Makefile 2015-07-08 14:32:38 UTC (rev 25160) +++ csw/mgar/pkg/protobuf/trunk/Makefile 2015-07-08 15:15:47 UTC (rev 25161) @@ -8,98 +8,74 @@ # http://developers.sun.com/solaris/articles/cmp_stlport_libCstd.html NAME = protobuf -VERSION = 2.3.0 +VERSION = 2.6.1 GARTYPE = v2 define BLURB Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats. endef -SPKG_SOURCEURL = http://code.google.com/p/protobuf/ DESCRIPTION = Google Protocol buffers -MASTER_SITES = $(GOOGLE_MIRROR) -DISTFILES = $(NAME)-$(VERSION).tar.gz -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz -PATCHFILES += 0001-Patches-from-GAR.patch -PATCHFILES += 0002-std-map-in-two-more-files.patch -PATCHFILES += OutputDirectoryIsFileError-unittest.patch -PATCHFILES += trailing-slash-test-fails-on-solaris-8-x86.patch -LICENSE = COPYING.txt -EXTRA_CFLAGS = -EXTRA_CXXFLAGS = -library=stlport4 -library=no%Cstd -EXTRA_LDFLAGS = -lCrun -lm -BUILD64_LIBS_ONLY = 1 -CONFIGURE_ARGS = $(DIRPATHS) -PYCOMPILE = 1 +MASTER_SITES = https://github.com/google/protobuf/releases/download/v$(VERSION)/ +DISTFILES += $(DISTNAME).tar.bz2 -PACKAGES = CSWprotobuf -SPKG_DESC_CSWprotobuf = $(DESCRIPTION) +VENDOR_URL = https://github.com/google/protobuf/ +LICENSE = LICENSE -RUNTIME_DEP_PKGS_CSWprotobuf += CSWstlport -RUNTIME_DEP_PKGS_CSWprotobuf += CSWzlib -RUNTIME_DEP_PKGS_CSWprotobuf += CSWlibprotoc6 -RUNTIME_DEP_PKGS_CSWprotobuf += CSWlibprotobuf6 +GARCOMPILER = GNU +BUILD64 = 1 +CONFIGURE_ARGS += $(DIRPATHS) -# Libraries -PACKAGES += CSWlibprotobuf-lite6 -CATALOGNAME_CSWlibprotobuf-lite6 = libprotobuf_lite6 -SPKG_DESC_CSWlibprotobuf-lite6 = $(DESCRIPTION), libprotobuf-lite.so.6 -RUNTIME_DEP_PKGS_CSWlibprotobuf-lite6 += CSWzlib -RUNTIME_DEP_PKGS_CSWlibprotobuf-lite6 += CSWstlport -PKGFILES_CSWlibprotobuf-lite6 = .*libprotobuf-lite\.so\..* -CHECKPKG_OVERRIDES_CSWlibprotobuf-lite6 += bad-rpath-entry +PYCOMPILE = 1 -PACKAGES += CSWlibprotobuf6 -CATALOGNAME_CSWlibprotobuf6 = libprotobuf6 -SPKG_DESC_CSWlibprotobuf6 = $(DESCRIPTION), libprotobuf.so.6 -RUNTIME_DEP_PKGS_CSWlibprotobuf6 += CSWstlport -RUNTIME_DEP_PKGS_CSWlibprotobuf6 += CSWzlib -PKGFILES_CSWlibprotobuf6 = .*libprotobuf\.so\..* -CHECKPKG_OVERRIDES_CSWlibprotobuf6 += bad-rpath-entry +PACKAGES += CSWlibprotobuf-lite9 +SPKG_DESC_CSWlibprotobuf-lite9 = $(DESCRIPTION), libprotobuf-lite.so.9 +PKGFILES_CSWlibprotobuf-lite9 += $(call pkgfiles_lib,libprotobuf-lite.so.9) +RUNTIME_DEP_PKGS_CSWlibprotobuf-lite9 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibprotobuf-lite9 += CSWlibstdc++6 -PACKAGES += CSWlibprotoc6 -CATALOGNAME_CSWlibprotoc6 = libprotoc6 -SPKG_DESC_CSWlibprotoc6 = $(DESCRIPTION), libprotoc.so.6 -RUNTIME_DEP_PKGS_CSWlibprotoc6 += CSWstlport -RUNTIME_DEP_PKGS_CSWlibprotoc6 += CSWzlib -PKGFILES_CSWlibprotoc6 = .*libprotoc\.so\..* -RUNTIME_DEP_PKGS_CSWlibprotoc6 += CSWlibprotobuf6 -CHECKPKG_OVERRIDES_CSWlibprotoc6 += bad-rpath-entry +PACKAGES += CSWlibprotobuf9 +SPKG_DESC_CSWlibprotobuf9 = $(DESCRIPTION), libprotobuf.so.9 +PKGFILES_CSWlibprotobuf9 += $(call pkgfiles_lib,libprotobuf.so.9) +RUNTIME_DEP_PKGS_CSWlibprotobuf9 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibprotobuf9 += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWlibprotobuf9 += CSWlibz1 -# Devel package -PACKAGES += CSWprotobuf-devel -CATALOGNAME_CSWprotobuf-devel = protobuf_devel -SPKG_DESC_CSWprotobuf-devel = $(DESCRIPTION), header files -RUNTIME_DEP_PKGS_CSWprotobuf-devel += CSWprotobuf -RUNTIME_DEP_PKGS_CSWprotobuf-devel += CSWpy-protobuf -RUNTIME_DEP_PKGS_CSWprotobuf-devel += CSWlibprotobuf-lite6 -RUNTIME_DEP_PKGS_CSWprotobuf-devel += CSWlibprotobuf6 -RUNTIME_DEP_PKGS_CSWprotobuf-devel += CSWlibprotoc6 -PKGFILES_CSWprotobuf-devel = $(PKGFILES_DEVEL) +PACKAGES += CSWlibprotoc9 +SPKG_DESC_CSWlibprotoc9 = $(DESCRIPTION), libprotoc.so.9 +PKGFILES_CSWlibprotoc9 += $(call pkgfiles_lib,libprotoc.so.9) +RUNTIME_DEP_PKGS_CSWlibprotoc9 += CSWlibprotobuf9 +RUNTIME_DEP_PKGS_CSWlibprotoc9 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibprotoc9 += CSWlibstdc++6 +PACKAGES += CSWprotobuf-dev +SPKG_DESC_CSWprotobuf-dev = $(DESCRIPTION), header files +# PKGFILES is catchall +RUNTIME_DEP_PKGS_CSWprotobuf-dev += CSWpy-protobuf +RUNTIME_DEP_PKGS_CSWprotobuf-dev += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWprotobuf-dev += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWprotobuf-dev += CSWlibprotobuf-lite9 +RUNTIME_DEP_PKGS_CSWprotobuf-dev += CSWlibprotobuf9 +RUNTIME_DEP_PKGS_CSWprotobuf-dev += CSWlibprotoc9 + # Python support PACKAGES += CSWpy-protobuf -CATALOGNAME_CSWpy-protobuf = py_protobuf SPKG_DESC_CSWpy-protobuf= $(DESCRIPTION), Python support -RUNTIME_DEP_PKGS_CSWpy-protobuf += CSWprotobuf RUNTIME_DEP_PKGS_CSWpy-protobuf += CSWpython -PKGFILES_CSWpy-protobuf = $(libdir)/python.* +PKGFILES_CSWpy-protobuf += $(libdir)/python.* ARCHALL_CSWpy-protobuf = 1 CHECKPKG_OVERRIDES_CSWpy-protobuf += surplus-dependency|CSWprotobuf -# Empty transitional package -PACKAGES += CSWprotobuf-rt -CATALOGNAME_CSWprotobuf-rt = protobuf_rt -SPKG_DESC_CSWprotobuf-rt = An empty transitional package -PKGFILES_CSWprotobuf-rt = an-empty-package -ARCHALL_CSWprotobuf-rt = 1 +# This is intended, no more Python 2.6 +CHECKPKG_OVERRIDES_CSWpy-protobuf += python-package-missing-py26-files +CHECKPKG_OVERRIDES_CSWpy-protobuf += surplus-dependency|CSWpython include gar/category.mk -post-build-modulated: +post-build: (cd $(WORKSRC)/python; python setup.py build) @$(MAKECOOKIE) -post-install-modulated: +post-install: (cd $(WORKSRC)/python; python setup.py install --root=$(DESTDIR) --prefix=$(prefix)) @$(MAKECOOKIE) Modified: csw/mgar/pkg/protobuf/trunk/checksums =================================================================== --- csw/mgar/pkg/protobuf/trunk/checksums 2015-07-08 14:32:38 UTC (rev 25160) +++ csw/mgar/pkg/protobuf/trunk/checksums 2015-07-08 15:15:47 UTC (rev 25161) @@ -1 +1 @@ -65dba2c04923595b6f0a6a44d8106f0a protobuf-2.3.0.tar.gz +11aaac2d704eef8efd1867a807865d85 protobuf-2.6.1.tar.bz2 Deleted: csw/mgar/pkg/protobuf/trunk/files/0001-Patches-from-GAR.patch =================================================================== --- csw/mgar/pkg/protobuf/trunk/files/0001-Patches-from-GAR.patch 2015-07-08 14:32:38 UTC (rev 25160) +++ csw/mgar/pkg/protobuf/trunk/files/0001-Patches-from-GAR.patch 2015-07-08 15:15:47 UTC (rev 25161) @@ -1,372 +0,0 @@ -From 8a36482ed025a9ae5adbc43e7285028119dab121 Mon Sep 17 00:00:00 2001 -From: Maciej Blizinski -Date: Sun, 21 Feb 2010 20:07:10 +0100 -Subject: [PATCH 1/2] Patches from GAR - ---- - .../protobuf/compiler/command_line_interface.h | 2 + - src/google/protobuf/descriptor_database.cc | 9 ++-- - src/google/protobuf/descriptor_database.h | 2 +- - src/google/protobuf/extension_set.cc | 52 ++++++++++---------- - src/google/protobuf/repeated_field.h | 1 + - src/google/protobuf/stubs/common.h | 5 ++- - src/google/protobuf/stubs/strutil.h | 4 ++ - 7 files changed, 43 insertions(+), 32 deletions(-) - -diff --git a/src/google/protobuf/compiler/command_line_interface.h b/src/google/protobuf/compiler/command_line_interface.h -index d25a50e..3815d5c 100644 ---- a/src/google/protobuf/compiler/command_line_interface.h -+++ b/src/google/protobuf/compiler/command_line_interface.h -@@ -55,6 +55,8 @@ template class RepeatedPtrField; // repeated_field.h - - namespace compiler { - -+using std::map; -+ - class CodeGenerator; // code_generator.h - class OutputDirectory; // code_generator.h - class DiskSourceTree; // importer.h -diff --git a/src/google/protobuf/descriptor_database.cc b/src/google/protobuf/descriptor_database.cc -index 95708d9..ad29ed1 100644 ---- a/src/google/protobuf/descriptor_database.cc -+++ b/src/google/protobuf/descriptor_database.cc -@@ -35,6 +35,7 @@ - #include - - #include -+#include - - #include - #include -@@ -97,7 +98,7 @@ bool SimpleDescriptorDatabase::DescriptorIndex::AddSymbol( - - // Try to look up the symbol to make sure a super-symbol doesn't already - // exist. -- typename map::iterator iter = FindLastLessOrEqual(name); -+ typename std::map::iterator iter = FindLastLessOrEqual(name); - - if (iter == by_symbol_.end()) { - // Apparently the map is currently empty. Just insert and be done with it. -@@ -179,7 +180,7 @@ Value SimpleDescriptorDatabase::DescriptorIndex::FindFile( - template - Value SimpleDescriptorDatabase::DescriptorIndex::FindSymbol( - const string& name) { -- typename map::iterator iter = FindLastLessOrEqual(name); -+ typename std::map::iterator iter = FindLastLessOrEqual(name); - - return (iter != by_symbol_.end() && IsSubSymbol(iter->first, name)) ? - iter->second : Value(); -@@ -198,7 +199,7 @@ template - bool SimpleDescriptorDatabase::DescriptorIndex::FindAllExtensionNumbers( - const string& containing_type, - vector* output) { -- typename map, Value >::const_iterator it = -+ typename std::map, Value >::const_iterator it = - by_extension_.lower_bound(make_pair(containing_type, 0)); - bool success = false; - -@@ -212,7 +213,7 @@ bool SimpleDescriptorDatabase::DescriptorIndex::FindAllExtensionNumbers( - } - - template --typename map::iterator -+typename std::map::iterator - SimpleDescriptorDatabase::DescriptorIndex::FindLastLessOrEqual( - const string& name) { - // Find the last key in the map which sorts less than or equal to the -diff --git a/src/google/protobuf/descriptor_database.h b/src/google/protobuf/descriptor_database.h -index f32b1db..49f0de6 100644 ---- a/src/google/protobuf/descriptor_database.h -+++ b/src/google/protobuf/descriptor_database.h -@@ -233,7 +233,7 @@ class LIBPROTOBUF_EXPORT SimpleDescriptorDatabase : public DescriptorDatabase { - - // Find the last entry in the by_symbol_ map whose key is less than or - // equal to the given name. -- typename map::iterator FindLastLessOrEqual( -+ typename std::map::iterator FindLastLessOrEqual( - const string& name); - - // True if either the arguments are equal or super_symbol identifies a -diff --git a/src/google/protobuf/extension_set.cc b/src/google/protobuf/extension_set.cc -index 6084885..2cd66f6 100644 ---- a/src/google/protobuf/extension_set.cc -+++ b/src/google/protobuf/extension_set.cc -@@ -162,7 +162,7 @@ void ExtensionSet::RegisterMessageExtension(const MessageLite* containing_type, - ExtensionSet::ExtensionSet() {} - - ExtensionSet::~ExtensionSet() { -- for (map::iterator iter = extensions_.begin(); -+ for (std::map::iterator iter = extensions_.begin(); - iter != extensions_.end(); ++iter) { - iter->second.Free(); - } -@@ -174,20 +174,20 @@ ExtensionSet::~ExtensionSet() { - // vector* output) const - - bool ExtensionSet::Has(int number) const { -- map::const_iterator iter = extensions_.find(number); -+ std::map::const_iterator iter = extensions_.find(number); - if (iter == extensions_.end()) return false; - GOOGLE_DCHECK(!iter->second.is_repeated); - return !iter->second.is_cleared; - } - - int ExtensionSet::ExtensionSize(int number) const { -- map::const_iterator iter = extensions_.find(number); -+ std::map::const_iterator iter = extensions_.find(number); - if (iter == extensions_.end()) return false; - return iter->second.GetSize(); - } - - void ExtensionSet::ClearExtension(int number) { -- map::iterator iter = extensions_.find(number); -+ std::map::iterator iter = extensions_.find(number); - if (iter == extensions_.end()) return; - iter->second.Clear(); - } -@@ -215,7 +215,7 @@ enum Cardinality { - \ - LOWERCASE ExtensionSet::Get##CAMELCASE(int number, \ - LOWERCASE default_value) const { \ -- map::const_iterator iter = extensions_.find(number); \ -+ std::map::const_iterator iter = extensions_.find(number); \ - if (iter == extensions_.end() || iter->second.is_cleared) { \ - return default_value; \ - } else { \ -@@ -240,7 +240,7 @@ void ExtensionSet::Set##CAMELCASE(int number, FieldType type, \ - } \ - \ - LOWERCASE ExtensionSet::GetRepeated##CAMELCASE(int number, int index) const { \ -- map::const_iterator iter = extensions_.find(number); \ -+ std::map::const_iterator iter = extensions_.find(number); \ - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; \ - GOOGLE_DCHECK_TYPE(iter->second, REPEATED, UPPERCASE); \ - return iter->second.repeated_##LOWERCASE##_value->Get(index); \ -@@ -248,7 +248,7 @@ LOWERCASE ExtensionSet::GetRepeated##CAMELCASE(int number, int index) const { \ - \ - void ExtensionSet::SetRepeated##CAMELCASE( \ - int number, int index, LOWERCASE value) { \ -- map::iterator iter = extensions_.find(number); \ -+ std::map::iterator iter = extensions_.find(number); \ - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; \ - GOOGLE_DCHECK_TYPE(iter->second, REPEATED, UPPERCASE); \ - iter->second.repeated_##LOWERCASE##_value->Set(index, value); \ -@@ -285,7 +285,7 @@ PRIMITIVE_ACCESSORS( BOOL, bool, Bool) - // Enums - - int ExtensionSet::GetEnum(int number, int default_value) const { -- map::const_iterator iter = extensions_.find(number); -+ std::map::const_iterator iter = extensions_.find(number); - if (iter == extensions_.end() || iter->second.is_cleared) { - // Not present. Return the default value. - return default_value; -@@ -310,14 +310,14 @@ void ExtensionSet::SetEnum(int number, FieldType type, int value, - } - - int ExtensionSet::GetRepeatedEnum(int number, int index) const { -- map::const_iterator iter = extensions_.find(number); -+ std::map::const_iterator iter = extensions_.find(number); - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; - GOOGLE_DCHECK_TYPE(iter->second, REPEATED, ENUM); - return iter->second.repeated_enum_value->Get(index); - } - - void ExtensionSet::SetRepeatedEnum(int number, int index, int value) { -- map::iterator iter = extensions_.find(number); -+ std::map::iterator iter = extensions_.find(number); - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; - GOOGLE_DCHECK_TYPE(iter->second, REPEATED, ENUM); - iter->second.repeated_enum_value->Set(index, value); -@@ -345,7 +345,7 @@ void ExtensionSet::AddEnum(int number, FieldType type, - - const string& ExtensionSet::GetString(int number, - const string& default_value) const { -- map::const_iterator iter = extensions_.find(number); -+ std::map::const_iterator iter = extensions_.find(number); - if (iter == extensions_.end() || iter->second.is_cleared) { - // Not present. Return the default value. - return default_value; -@@ -371,14 +371,14 @@ string* ExtensionSet::MutableString(int number, FieldType type, - } - - const string& ExtensionSet::GetRepeatedString(int number, int index) const { -- map::const_iterator iter = extensions_.find(number); -+ std::map::const_iterator iter = extensions_.find(number); - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; - GOOGLE_DCHECK_TYPE(iter->second, REPEATED, STRING); - return iter->second.repeated_string_value->Get(index); - } - - string* ExtensionSet::MutableRepeatedString(int number, int index) { -- map::iterator iter = extensions_.find(number); -+ std::map::iterator iter = extensions_.find(number); - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; - GOOGLE_DCHECK_TYPE(iter->second, REPEATED, STRING); - return iter->second.repeated_string_value->Mutable(index); -@@ -404,7 +404,7 @@ string* ExtensionSet::AddString(int number, FieldType type, - - const MessageLite& ExtensionSet::GetMessage( - int number, const MessageLite& default_value) const { -- map::const_iterator iter = extensions_.find(number); -+ std::map::const_iterator iter = extensions_.find(number); - if (iter == extensions_.end()) { - // Not present. Return the default value. - return default_value; -@@ -442,14 +442,14 @@ MessageLite* ExtensionSet::MutableMessage(int number, FieldType type, - - const MessageLite& ExtensionSet::GetRepeatedMessage( - int number, int index) const { -- map::const_iterator iter = extensions_.find(number); -+ std::map::const_iterator iter = extensions_.find(number); - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; - GOOGLE_DCHECK_TYPE(iter->second, REPEATED, MESSAGE); - return iter->second.repeated_message_value->Get(index); - } - - MessageLite* ExtensionSet::MutableRepeatedMessage(int number, int index) { -- map::iterator iter = extensions_.find(number); -+ std::map::iterator iter = extensions_.find(number); - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; - GOOGLE_DCHECK_TYPE(iter->second, REPEATED, MESSAGE); - return iter->second.repeated_message_value->Mutable(index); -@@ -488,7 +488,7 @@ MessageLite* ExtensionSet::AddMessage(int number, FieldType type, - #undef GOOGLE_DCHECK_TYPE - - void ExtensionSet::RemoveLast(int number) { -- map::iterator iter = extensions_.find(number); -+ std::map::iterator iter = extensions_.find(number); - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; - - Extension* extension = &iter->second; -@@ -529,7 +529,7 @@ void ExtensionSet::RemoveLast(int number) { - } - - void ExtensionSet::SwapElements(int number, int index1, int index2) { -- map::iterator iter = extensions_.find(number); -+ std::map::iterator iter = extensions_.find(number); - GOOGLE_CHECK(iter != extensions_.end()) << "Index out-of-bounds (field is empty)."; - - Extension* extension = &iter->second; -@@ -572,14 +572,14 @@ void ExtensionSet::SwapElements(int number, int index1, int index2) { - // =================================================================== - - void ExtensionSet::Clear() { -- for (map::iterator iter = extensions_.begin(); -+ for (std::map::iterator iter = extensions_.begin(); - iter != extensions_.end(); ++iter) { - iter->second.Clear(); - } - } - - void ExtensionSet::MergeFrom(const ExtensionSet& other) { -- for (map::const_iterator iter = other.extensions_.begin(); -+ for (std::map::const_iterator iter = other.extensions_.begin(); - iter != other.extensions_.end(); ++iter) { - const Extension& other_extension = iter->second; - -@@ -682,7 +682,7 @@ void ExtensionSet::Swap(ExtensionSet* x) { - bool ExtensionSet::IsInitialized() const { - // Extensions are never required. However, we need to check that all - // embedded messages are initialized. -- for (map::const_iterator iter = extensions_.begin(); -+ for (std::map::const_iterator iter = extensions_.begin(); - iter != extensions_.end(); ++iter) { - const Extension& extension = iter->second; - if (cpp_type(extension.type) == WireFormatLite::CPPTYPE_MESSAGE) { -@@ -1001,7 +1001,7 @@ bool ExtensionSet::ParseMessageSetItem(io::CodedInputStream* input, - void ExtensionSet::SerializeWithCachedSizes( - int start_field_number, int end_field_number, - io::CodedOutputStream* output) const { -- map::const_iterator iter; -+ std::map::const_iterator iter; - for (iter = extensions_.lower_bound(start_field_number); - iter != extensions_.end() && iter->first < end_field_number; - ++iter) { -@@ -1011,7 +1011,7 @@ void ExtensionSet::SerializeWithCachedSizes( - - void ExtensionSet::SerializeMessageSetWithCachedSizes( - io::CodedOutputStream* output) const { -- map::const_iterator iter; -+ std::map::const_iterator iter; - for (iter = extensions_.begin(); iter != extensions_.end(); ++iter) { - iter->second.SerializeMessageSetItemWithCachedSizes(iter->first, output); - } -@@ -1020,7 +1020,7 @@ void ExtensionSet::SerializeMessageSetWithCachedSizes( - int ExtensionSet::ByteSize() const { - int total_size = 0; - -- for (map::const_iterator iter = extensions_.begin(); -+ for (std::map::const_iterator iter = extensions_.begin(); - iter != extensions_.end(); ++iter) { - total_size += iter->second.ByteSize(iter->first); - } -@@ -1031,7 +1031,7 @@ int ExtensionSet::ByteSize() const { - int ExtensionSet::MessageSetByteSize() const { - int total_size = 0; - -- for (map::const_iterator iter = extensions_.begin(); -+ for (std::map::const_iterator iter = extensions_.begin(); - iter != extensions_.end(); ++iter) { - total_size += iter->second.MessageSetItemByteSize(iter->first); - } -@@ -1045,7 +1045,7 @@ int ExtensionSet::MessageSetByteSize() const { - bool ExtensionSet::MaybeNewExtension(int number, - const FieldDescriptor* descriptor, - Extension** result) { -- pair::iterator, bool> insert_result = -+ pair::iterator, bool> insert_result = - extensions_.insert(make_pair(number, Extension())); - *result = &insert_result.first->second; - (*result)->descriptor = descriptor; -diff --git a/src/google/protobuf/repeated_field.h b/src/google/protobuf/repeated_field.h -index defdefe..39138f0 100644 ---- a/src/google/protobuf/repeated_field.h -+++ b/src/google/protobuf/repeated_field.h -@@ -48,6 +48,7 @@ - - #include - #include -+#include - #include - #include - -diff --git a/src/google/protobuf/stubs/common.h b/src/google/protobuf/stubs/common.h -index 551ee4a..f000c76 100644 ---- a/src/google/protobuf/stubs/common.h -+++ b/src/google/protobuf/stubs/common.h -@@ -40,13 +40,16 @@ - #include - #include - #include --#if defined(__osf__) -+#if defined(__osf__) || defined(__SUNPRO_CC) || defined(__sun__) - // Tru64 lacks stdint.h, but has inttypes.h which defines a superset of - // what stdint.h would define. - #include - #elif !defined(_MSC_VER) - #include - #endif -+#if defined(__SUNPRO_CC) || defined(__sun__) -+#include -+#endif - - namespace std {} - -diff --git a/src/google/protobuf/stubs/strutil.h b/src/google/protobuf/stubs/strutil.h -index 777694b..b22babe 100644 ---- a/src/google/protobuf/stubs/strutil.h -+++ b/src/google/protobuf/stubs/strutil.h -@@ -37,6 +37,10 @@ - #include - #include - -+#if defined(__SUNPRO_CC) -+#define strtof strtod -+#endif -+ - namespace google { - namespace protobuf { - --- -1.6.6 - Deleted: csw/mgar/pkg/protobuf/trunk/files/0002-std-map-in-two-more-files.patch =================================================================== --- csw/mgar/pkg/protobuf/trunk/files/0002-std-map-in-two-more-files.patch 2015-07-08 14:32:38 UTC (rev 25160) +++ csw/mgar/pkg/protobuf/trunk/files/0002-std-map-in-two-more-files.patch 2015-07-08 15:15:47 UTC (rev 25161) @@ -1,116 +0,0 @@ -From 7e368ce421202baea74a89d03a516ffc95c788ae Mon Sep 17 00:00:00 2001 -From: Maciej Blizinski -Date: Tue, 23 Feb 2010 06:12:10 +0100 -Subject: [PATCH 2/2] std::map in two more files - ---- - src/google/protobuf/descriptor_database.cc | 2 +- - src/google/protobuf/extension_set_heavy.cc | 12 ++++++------ - src/google/protobuf/io/printer.cc | 8 ++++---- - 3 files changed, 11 insertions(+), 11 deletions(-) - -diff --git a/src/google/protobuf/descriptor_database.cc b/src/google/protobuf/descriptor_database.cc -index ad29ed1..7d94853 100644 ---- a/src/google/protobuf/descriptor_database.cc -+++ b/src/google/protobuf/descriptor_database.cc -@@ -219,7 +219,7 @@ SimpleDescriptorDatabase::DescriptorIndex::FindLastLessOrEqual( - // Find the last key in the map which sorts less than or equal to the - // symbol name. Since upper_bound() returns the *first* key that sorts - // *greater* than the input, we want the element immediately before that. -- typename map::iterator iter = by_symbol_.upper_bound(name); -+ typename std::map::iterator iter = by_symbol_.upper_bound(name); - if (iter != by_symbol_.begin()) --iter; - return iter; - } -diff --git a/src/google/protobuf/extension_set_heavy.cc b/src/google/protobuf/extension_set_heavy.cc -index 2721f15..6a62005 100644 ---- a/src/google/protobuf/extension_set_heavy.cc -+++ b/src/google/protobuf/extension_set_heavy.cc -@@ -68,7 +68,7 @@ class DescriptorPoolExtensionFinder : public ExtensionFinder { - void ExtensionSet::AppendToList(const Descriptor* containing_type, - const DescriptorPool* pool, - vector* output) const { -- for (map::const_iterator iter = extensions_.begin(); -+ for (std::map::const_iterator iter = extensions_.begin(); - iter != extensions_.end(); ++iter) { - bool has = false; - if (iter->second.is_repeated) { -@@ -112,7 +112,7 @@ inline FieldDescriptor::CppType cpp_type(FieldType type) { - const MessageLite& ExtensionSet::GetMessage(int number, - const Descriptor* message_type, - MessageFactory* factory) const { -- map::const_iterator iter = extensions_.find(number); -+ std::map::const_iterator iter = extensions_.find(number); - if (iter == extensions_.end() || iter->second.is_cleared) { - // Not present. Return the default value. - return *factory->GetPrototype(message_type); -@@ -234,8 +234,8 @@ bool ExtensionSet::ParseMessageSet(io::CodedInputStream* input, - - int ExtensionSet::SpaceUsedExcludingSelf() const { - int total_size = -- extensions_.size() * sizeof(map::value_type); -- for (map::const_iterator iter = extensions_.begin(), -+ extensions_.size() * sizeof(std::map::value_type); -+ for (std::map::const_iterator iter = extensions_.begin(), - end = extensions_.end(); - iter != end; - ++iter) { -@@ -301,7 +301,7 @@ int ExtensionSet::Extension::SpaceUsedExcludingSelf() const { - uint8* ExtensionSet::SerializeWithCachedSizesToArray( - int start_field_number, int end_field_number, - uint8* target) const { -- map::const_iterator iter; -+ std::map::const_iterator iter; - for (iter = extensions_.lower_bound(start_field_number); - iter != extensions_.end() && iter->first < end_field_number; - ++iter) { -@@ -313,7 +313,7 @@ uint8* ExtensionSet::SerializeWithCachedSizesToArray( - - uint8* ExtensionSet::SerializeMessageSetWithCachedSizesToArray( - uint8* target) const { -- map::const_iterator iter; -+ std::map::const_iterator iter; - for (iter = extensions_.begin(); iter != extensions_.end(); ++iter) { - target = iter->second.SerializeMessageSetItemWithCachedSizesToArray( - iter->first, target); -diff --git a/src/google/protobuf/io/printer.cc b/src/google/protobuf/io/printer.cc -index c7d3074..4d583ef 100644 ---- a/src/google/protobuf/io/printer.cc -+++ b/src/google/protobuf/io/printer.cc -@@ -93,7 +93,7 @@ void Printer::Print(const map& variables, const char* text) { - WriteRaw(&variable_delimiter_, 1); - } else { - // Replace with the variable's value. -- map::const_iterator iter = variables.find(varname); -+ std::map::const_iterator iter = variables.find(varname); - if (iter == variables.end()) { - GOOGLE_LOG(DFATAL) << " Undefined variable: " << varname; - } else { -@@ -112,13 +112,13 @@ void Printer::Print(const map& variables, const char* text) { - } - - void Printer::Print(const char* text) { -- static map empty; -+ static std::map empty; - Print(empty, text); - } - - void Printer::Print(const char* text, - const char* variable, const string& value) { -- map vars; -+ std::map vars; - vars[variable] = value; - Print(vars, text); - } -@@ -126,7 +126,7 @@ void Printer::Print(const char* text, - void Printer::Print(const char* text, - const char* variable1, const string& value1, - const char* variable2, const string& value2) { -- map vars; -+ std::map vars; - vars[variable1] = value1; - vars[variable2] = value2; - Print(vars, text); --- -1.6.6 - Deleted: csw/mgar/pkg/protobuf/trunk/files/OutputDirectoryIsFileError-unittest.patch =================================================================== --- csw/mgar/pkg/protobuf/trunk/files/OutputDirectoryIsFileError-unittest.patch 2015-07-08 14:32:38 UTC (rev 25160) +++ csw/mgar/pkg/protobuf/trunk/files/OutputDirectoryIsFileError-unittest.patch 2015-07-08 15:15:47 UTC (rev 25161) @@ -1,12 +0,0 @@ ---- protobuf-2.3.0/src/google/protobuf/compiler/command_line_interface_unittest.cc.orig Tue Feb 23 11:17:08 2010 -+++ protobuf-2.3.0/src/google/protobuf/compiler/command_line_interface_unittest.cc Tue Feb 23 11:18:09 2010 -@@ -1009,7 +1009,8 @@ - } - #endif - -- ExpectErrorSubstring("foo.proto/: Not a directory"); -+ ExpectErrorSubstring("foo.proto/"); -+ ExpectErrorSubstring("Not a directory"); - } - - TEST_F(CommandLineInterfaceTest, GeneratorError) { Deleted: csw/mgar/pkg/protobuf/trunk/files/trailing-slash-test-fails-on-solaris-8-x86.patch =================================================================== --- csw/mgar/pkg/protobuf/trunk/files/trailing-slash-test-fails-on-solaris-8-x86.patch 2015-07-08 14:32:38 UTC (rev 25160) +++ csw/mgar/pkg/protobuf/trunk/files/trailing-slash-test-fails-on-solaris-8-x86.patch 2015-07-08 15:15:47 UTC (rev 25161) @@ -1,21 +0,0 @@ ---- protobuf-2.3.0/src/google/protobuf/compiler/importer_unittest.cc.orig 2010-02-23 12:29:52.232423637 +0100 -+++ protobuf-2.3.0/src/google/protobuf/compiler/importer_unittest.cc 2010-02-23 14:24:58.049027057 +0100 -@@ -372,6 +372,7 @@ - } - - void ExpectFileNotFound(const string& filename) { -+ RecordProperty("ExpectFileNotFound", filename.c_str()); - scoped_ptr input(source_tree_.Open(filename)); - EXPECT_TRUE(input == NULL); - } -@@ -408,7 +409,10 @@ - ExpectFileNotFound("baz//foo"); - ExpectFileNotFound("baz/../baz/foo"); - ExpectFileNotFound("baz/./foo"); -+#if !defined(__SUNPRO_CC) || !(defined(__i386) || defined(__i386__)) -+ // This fails on Solaris 8 x86 - ExpectFileNotFound("baz/foo/"); -+#endif - } - - TEST_F(DiskSourceTreeTest, NoParent) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Thu Jul 9 07:53:23 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Thu, 9 Jul 2015 05:53:23 +0000 Subject: SF.net SVN: gar:[25162] csw/mgar/pkg/glib2/trunk/Makefile Message-ID: <3mRmrv2sr4z1L4@mail.opencsw.org> Revision: 25162 http://sourceforge.net/p/gar/code/25162 Author: rmottola Date: 2015-07-09 05:53:22 +0000 (Thu, 09 Jul 2015) Log Message: ----------- glib2/trunk: remove circular dependency on gamin Modified Paths: -------------- csw/mgar/pkg/glib2/trunk/Makefile Modified: csw/mgar/pkg/glib2/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib2/trunk/Makefile 2015-07-08 15:15:47 UTC (rev 25161) +++ csw/mgar/pkg/glib2/trunk/Makefile 2015-07-09 05:53:22 UTC (rev 25162) @@ -16,6 +16,7 @@ #where can we build? #PACKAGING_PLATFORMS += solaris9-sparc solaris9-i386 PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 +PACKAGING_PLATFORMS += solaris11-sparc solaris11-i386 DESCRIPTION = The GLib library of C routines. @@ -32,8 +33,14 @@ DISTFILES += set-ulimit-for-build-test BUILD_DEP_PKGS = CSWggettext-dev CSWlibiconv-dev CSWlibffi-dev -BUILD_DEP_PKGS += CSWlibdbus-dev CSWdbus CSWlibgamin-dev CSWgamin -BUILD_DEP_PKGS += CSWpy-gobject CSWpkgconfig CSWlibpcre-dev +BUILD_DEP_PKGS += CSWlibdbus-dev CSWdbus + +#disable gamin, since gamin depends on glib2 +#BUILD_DEP_PKGS += CSWlibgamin-dev CSWgamin + +BUILD_DEP_PKGS += CSWpkgconfig CSWlibpcre-dev +#disable, since py-gobject depends on glib +#BUILD_DEP_PKGS += CSWpy-gobject # To make the tests working BUILD_DEP_PKGS += CSWpython CSWsharedmimeinfo # This is used to adjust paths in documentation @@ -48,12 +55,16 @@ PATCHFILES += 0001-Fix-POSIX-and-XOPEN-defines.patch PATCHFILES += 0002-Include-sys-filio.h-to-provide-FIONREAD.patch PATCHFILES += 0006-Adjust-hardcoded-paths-to-match-Solaris-CSW.patch -PATCHFILES_5.10 += 0003-Make-glib-work-with-zoneinfo-version-1.patch -PATCHFILES_5.11 += 0020-Adjust-path-to-zoneinfo-database.patch +#PATCHFILES_5.10 += 0003-Make-glib-work-with-zoneinfo-version-1.patch +#PATCHFILES_5.11 += 0020-Adjust-path-to-zoneinfo-database.patch PATCHFILES += 0022-Change-shell-to-bash-in-test-shell-scripts.patch PATCHFILES += 0029-Don-t-undefine-_XOPEN_SOURCE.patch PATCHFILES += 0001-Fix-configure-pthread-detection.patch +PATCHFILES_5.9 += 0040-clock-monotonic.patch +PATCHFILES_5.9 += sol9-condwait.patch + + # # Until someone invests some real resources into checking all test patches, # disable tests. Updating the patches between versions is a major pita. @@ -108,13 +119,9 @@ #PATCHFILES += 0037-Remove-failing-tests-linking-is-broken.patch #PATCHFILES_5.11 += 0038-Disable-appinfo-launch-test-fails-on-s11x86.patch -# PATCHFILES += $(PATCHFILES_$(GAROSREL)) +PATCHFILES += $(PATCHFILES_$(GAROSREL)) -# Solaris 11 specific package for FEN support -PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 -PACKAGING_PLATFORMS += solaris11-sparc solaris11-i386 - PACKAGES += CSWglib2 SPKG_DESC_CSWglib2 = Low level core compatibility library for GTK+ and GNOME # PKGFILES is catchall This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Jul 9 08:21:28 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 9 Jul 2015 06:21:28 +0000 Subject: SF.net SVN: gar:[25163] csw/mgar/pkg/mod_nss Message-ID: <3mRnTG217jz1Nc@mail.opencsw.org> Revision: 25163 http://sourceforge.net/p/gar/code/25163 Author: cgrzemba Date: 2015-07-09 06:21:28 +0000 (Thu, 09 Jul 2015) Log Message: ----------- mod_nss/trunk: remove dependency Modified Paths: -------------- csw/mgar/pkg/mod_nss/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/mod_nss/trunk/ Removed Paths: ------------- csw/mgar/pkg/mod_nss/trunk/ Modified: csw/mgar/pkg/mod_nss/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_nss/trunk/Makefile 2015-05-21 10:10:27 UTC (rev 25007) +++ csw/mgar/pkg/mod_nss/trunk/Makefile 2015-07-09 06:21:28 UTC (rev 25163) @@ -51,7 +51,7 @@ # STRIP_DIRS = $(DESTDIR)$(prefix)/apache2/libexec -RUNTIME_DEP_PKGS_CSWap2modnss += CSWapache24 +# RUNTIME_DEP_PKGS_CSWap2modnss += CSWapache24 RUNTIME_DEP_PKGS_CSWap2modnss += CSWlibnspr4 RUNTIME_DEP_PKGS_CSWap2modnss += CSWlibnss3 RUNTIME_DEP_PKGS_CSWap2modnss += CSWlibplc4 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Jul 9 13:29:20 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 9 Jul 2015 11:29:20 +0000 Subject: SF.net SVN: gar:[25164] csw/mgar/pkg/mod_nss/trunk Message-ID: <3mRwJg3ycZz1Vw@mail.opencsw.org> Revision: 25164 http://sourceforge.net/p/gar/code/25164 Author: cgrzemba Date: 2015-07-09 11:29:20 +0000 (Thu, 09 Jul 2015) Log Message: ----------- mod_nss/trunk: fight against an inline function in http_protocol.h Modified Paths: -------------- csw/mgar/pkg/mod_nss/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/mod_nss/trunk/files/0001-fix-ap_log_error-parameter-missmatch.patch csw/mgar/pkg/mod_nss/trunk/files/0002-cleanup-includes.patch csw/mgar/pkg/mod_nss/trunk/files/0003-remove-incl-protocol.patch Modified: csw/mgar/pkg/mod_nss/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_nss/trunk/Makefile 2015-07-09 06:21:28 UTC (rev 25163) +++ csw/mgar/pkg/mod_nss/trunk/Makefile 2015-07-09 11:29:20 UTC (rev 25164) @@ -19,7 +19,11 @@ DISTFILES += CSWap2modnss.postinstall DISTFILES += CSWap2modnss.preremove -BUILD64_LIBS_ONLY = 1 +PATCHFILES += 0001-fix-ap_log_error-parameter-missmatch.patch +PATCHFILES += 0002-cleanup-includes.patch +PATCHFILES += 0003-remove-incl-protocol.patch + +BUILD64 = 1 PACKAGING_PLATFORMS += solaris10-sparc PACKAGING_PLATFORMS += solaris10-i386 Added: csw/mgar/pkg/mod_nss/trunk/files/0001-fix-ap_log_error-parameter-missmatch.patch =================================================================== --- csw/mgar/pkg/mod_nss/trunk/files/0001-fix-ap_log_error-parameter-missmatch.patch (rev 0) +++ csw/mgar/pkg/mod_nss/trunk/files/0001-fix-ap_log_error-parameter-missmatch.patch 2015-07-09 11:29:20 UTC (rev 25164) @@ -0,0 +1,38 @@ +--- a/test_cipher.c ++++ b/test_cipher.c +@@ -19,21 +19,22 @@ + #include + + /* Fake a few Apache and NSPR data types and definitions */ +-typedef char server_rec; + typedef int PRBool; + typedef int PRInt32; + + #define PR_FALSE 0 + #define PR_TRUE 1 + +-#include ++#include ++#include + ++#include + extern cipher_properties ciphers_def[]; + + /* An Apache-like error logger */ +-int ap_log_error_(const char *fn, int line, int module_index, ++void ap_log_error_(const char *fn, int line, int module_index, + int level, int status, +- const server_rec *s, char *fmt, ...) ++ const server_rec *s, const char *fmt, ...) + { + char out[1024]; + va_list args; +@@ -42,8 +43,6 @@ int ap_log_error_(const char *fn, int line, int module_index, + vsprintf(out, fmt, args); + fprintf(stderr,"%s:%d, %s", fn, line, out); + va_end(args); +- +- return 0; + } + + #define ap_log_error_ ap_log_error Added: csw/mgar/pkg/mod_nss/trunk/files/0002-cleanup-includes.patch =================================================================== --- csw/mgar/pkg/mod_nss/trunk/files/0002-cleanup-includes.patch (rev 0) +++ csw/mgar/pkg/mod_nss/trunk/files/0002-cleanup-includes.patch 2015-07-09 11:29:20 UTC (rev 25164) @@ -0,0 +1,10 @@ +--- a/mod_nss.h ++++ b/mod_nss.h +@@ -18,7 +18,6 @@ + + /* Apache headers */ + #include "httpd.h" +-#include "http_config.h" + #include "http_core.h" + #include "http_log.h" + #include "http_main.h" Added: csw/mgar/pkg/mod_nss/trunk/files/0003-remove-incl-protocol.patch =================================================================== --- csw/mgar/pkg/mod_nss/trunk/files/0003-remove-incl-protocol.patch (rev 0) +++ csw/mgar/pkg/mod_nss/trunk/files/0003-remove-incl-protocol.patch 2015-07-09 11:29:20 UTC (rev 25164) @@ -0,0 +1,12 @@ +--- a/mod_nss.h ++++ b/mod_nss.h +@@ -24,7 +24,9 @@ + #include "http_main.h" + #include "http_connection.h" + #include "http_request.h" ++/* + #include "http_protocol.h" ++*/ + #include "mod_ssl.h" + #include "util_script.h" + #include "util_filter.h" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 9 13:37:06 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 9 Jul 2015 11:37:06 +0000 Subject: SF.net SVN: gar:[25165] csw/mgar/pkg/doxygen/trunk Message-ID: <3mRwTV0Q07zp@mail.opencsw.org> Revision: 25165 http://sourceforge.net/p/gar/code/25165 Author: dmichelsen Date: 2015-07-09 11:37:05 +0000 (Thu, 09 Jul 2015) Log Message: ----------- doxygen/trunk: Update to 1.8.10, switch to cmake Modified Paths: -------------- csw/mgar/pkg/doxygen/trunk/Makefile csw/mgar/pkg/doxygen/trunk/checksums Modified: csw/mgar/pkg/doxygen/trunk/Makefile =================================================================== --- csw/mgar/pkg/doxygen/trunk/Makefile 2015-07-09 11:29:20 UTC (rev 25164) +++ csw/mgar/pkg/doxygen/trunk/Makefile 2015-07-09 11:37:05 UTC (rev 25165) @@ -1,5 +1,5 @@ NAME = doxygen -VERSION = 1.8.9 +VERSION = 1.8.10 GARTYPE = v2 DESCRIPTION = A documentation system for programming languages @@ -28,50 +28,34 @@ # There are some Python examples in there, but pulling in Python unconditionally # for these tiny examples seems overkill. CHECKPKG_OVERRIDES_CSWdoxygen-doc = missing-dependency|CSWpython -OBSOLETED_BY_CSWdoxygen-doc = CSWdoxygendoc -CATALOGNAME_CSWdoxygendoc = doxygen_doc_stub -REINPLACEMENTS += cflags -REINPLACE_MATCH_cflags = (TMAKE_CFLAGS_RELEASE\s*=\s*).* -REINPLACE_WITH_cflags = \1$(CFLAGS) -REINPLACE_FILES_cflags += tmake/lib/solaris-cc/tmake.conf +# I have no idea ow to pass '-norunpath' during linkage to CMake +CHECKPKG_OVERRIDES_CSWdoxygen += bad-rpath-entry|/opt/solarisstudio12.3/lib|opt/csw/bin/doxygen +CHECKPKG_OVERRIDES_CSWdoxygen += bad-rpath-entry|/opt/solarisstudio12.3/lib/sparc|opt/csw/bin/doxygen -REINPLACEMENTS += cxxflags -REINPLACE_MATCH_cxxflags = (TMAKE_CXXFLAGS_RELEASE\s*=\s*).* -REINPLACE_WITH_cxxflags = \1$(CXXFLAGS) -REINPLACE_FILES_cxxflags += tmake/lib/solaris-cc/tmake.conf - -REINPLACEMENTS += ldflags -REINPLACE_MATCH_ldflags = (TMAKE_LFLAGS_RELEASE\s*=).* -REINPLACE_WITH_ldflags = \1 $(LDFLAGS) -REINPLACE_FILES_ldflags += tmake/lib/solaris-cc/tmake.conf - # Sun Studio 12 is too old and actually does not work any more GARCOMPILER = SOS12U3 -EXTRA_CXXFLAGS += -features=tmplrefstatic -EXTRA_CXXFLAGS += -features=extensions -D__FUNCTION__=__func__ -EXTRA_LINKER_FLAGS = -norunpath +CONFIGURE_SCRIPTS = cmake +BUILD_SCRIPTS = $(WORKSRC)/solaris/Makefile +BUILD_ARGS += docs -CONFIGURE_ARGS = --prefix $(prefix) -CONFIGURE_ARGS += --release -CONFIGURE_ARGS += --docdir $(docdir)/doxygen -CONFIGURE_ARGS += --dot /opt/csw/bin/dot -CONFIGURE_ARGS += --platform solaris-cc +TEST_SCRIPTS = $(WORKSRC)/solaris/Makefile +TEST_TARGET = tests -# There is no testsuite -TEST_SCRIPTS = +INSTALL_SCRIPTS = $(WORKSRC)/solaris/Makefile -INSTALL_ARGS = install_docs - EXTRA_PAX_ARGS += -s ',^\.$(prefix)/man,.$(mandir),' +EXTRA_PAX_ARGS += -s ',^\.$(docdir)/packages/,.$(docdir)/,' -# These are from 'dot', pretty ugly, don't package at least for now -EXTRA_MERGE_EXCLUDE_FILES = .*/core - # Use CSW Perl instead of #!/usr/local/bin/perl in # /opt/csw/share/doc/doxygen/examples/Makefile # some time... include gar/category.mk +configure-cmake: + mkdir $(WORKSRC)/solaris + @# The -DMAKE= is needed because docs generation uses $(MAKE) -C which the default /usr/ccs/bin/make does not understand + cd $(WORKSRC)/solaris && cmake -DMAKE=/opt/csw/bin/gmake -Dbuild_doc=YES -DCMAKE_INSTALL_PREFIX:PATH=$(prefix) -G 'Unix Makefiles' $(abspath $(WORKSRC)) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/doxygen/trunk/checksums =================================================================== --- csw/mgar/pkg/doxygen/trunk/checksums 2015-07-09 11:29:20 UTC (rev 25164) +++ csw/mgar/pkg/doxygen/trunk/checksums 2015-07-09 11:37:05 UTC (rev 25165) @@ -1 +1 @@ -753c1b135086c4771035622532652552 doxygen-1.8.9.src.tar.gz +79767ccd986f12a0f949015efb5f058f doxygen-1.8.10.src.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 9 13:38:18 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 9 Jul 2015 11:38:18 +0000 Subject: SF.net SVN: gar:[25166] csw/mgar/pkg/squid/trunk Message-ID: <3mRwVr183tz3t@mail.opencsw.org> Revision: 25166 http://sourceforge.net/p/gar/code/25166 Author: dmichelsen Date: 2015-07-09 11:38:17 +0000 (Thu, 09 Jul 2015) Log Message: ----------- squid/trunk: Update to 3.5.6 Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile csw/mgar/pkg/squid/trunk/checksums Added Paths: ----------- csw/mgar/pkg/squid/trunk/files/cswsquid.xml Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2015-07-09 11:37:05 UTC (rev 25165) +++ csw/mgar/pkg/squid/trunk/Makefile 2015-07-09 11:38:17 UTC (rev 25166) @@ -2,7 +2,7 @@ # $Id$ # NAME = squid -VERSION = 3.5.5 +VERSION = 3.5.6 GARTYPE = v2 DESCRIPTION = High performance Web proxy cache Modified: csw/mgar/pkg/squid/trunk/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2015-07-09 11:37:05 UTC (rev 25165) +++ csw/mgar/pkg/squid/trunk/checksums 2015-07-09 11:38:17 UTC (rev 25166) @@ -1 +1 @@ -6aac5c2e9cbbeabcbf2e9e49a178a931 squid-3.5.5.tar.bz2 +7b42ddb40df2e417c63b29a92b5e7d2b squid-3.5.6.tar.bz2 Added: csw/mgar/pkg/squid/trunk/files/cswsquid.xml =================================================================== (Binary files differ) Index: csw/mgar/pkg/squid/trunk/files/cswsquid.xml =================================================================== --- csw/mgar/pkg/squid/trunk/files/cswsquid.xml 2015-07-09 11:37:05 UTC (rev 25165) +++ csw/mgar/pkg/squid/trunk/files/cswsquid.xml 2015-07-09 11:38:17 UTC (rev 25166) Property changes on: csw/mgar/pkg/squid/trunk/files/cswsquid.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/xml \ No newline at end of property This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Jul 9 14:35:33 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 9 Jul 2015 12:35:33 +0000 Subject: SF.net SVN: gar:[25167] csw/mgar/pkg/mod_nss/trunk/Makefile Message-ID: <3mRxmw0tLPz6m@mail.opencsw.org> Revision: 25167 http://sourceforge.net/p/gar/code/25167 Author: cgrzemba Date: 2015-07-09 12:35:32 +0000 (Thu, 09 Jul 2015) Log Message: ----------- mod_nss/trunk: set certutil path in gencert Modified Paths: -------------- csw/mgar/pkg/mod_nss/trunk/Makefile Modified: csw/mgar/pkg/mod_nss/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_nss/trunk/Makefile 2015-07-09 11:38:17 UTC (rev 25166) +++ csw/mgar/pkg/mod_nss/trunk/Makefile 2015-07-09 12:35:32 UTC (rev 25167) @@ -19,6 +19,10 @@ DISTFILES += CSWap2modnss.postinstall DISTFILES += CSWap2modnss.preremove +REINPLACE_MATCH = /usr/bin/certutil +REINPLACE_WITH = /opt/csw/bin/certutil +REINPLACE_FILES += gencert.in + PATCHFILES += 0001-fix-ap_log_error-parameter-missmatch.patch PATCHFILES += 0002-cleanup-includes.patch PATCHFILES += 0003-remove-incl-protocol.patch This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Thu Jul 9 15:39:49 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Thu, 9 Jul 2015 13:39:49 +0000 Subject: SF.net SVN: gar:[25168] csw/mgar/pkg/glib2/trunk Message-ID: <3mRzC75VD9zBY@mail.opencsw.org> Revision: 25168 http://sourceforge.net/p/gar/code/25168 Author: rmottola Date: 2015-07-09 13:39:49 +0000 (Thu, 09 Jul 2015) Log Message: ----------- glib2/trunk: updated to 2.41.1 Modified Paths: -------------- csw/mgar/pkg/glib2/trunk/Makefile csw/mgar/pkg/glib2/trunk/checksums Added Paths: ----------- csw/mgar/pkg/glib2/trunk/files/sol9-condwait.patch Modified: csw/mgar/pkg/glib2/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib2/trunk/Makefile 2015-07-09 12:35:32 UTC (rev 25167) +++ csw/mgar/pkg/glib2/trunk/Makefile 2015-07-09 13:39:49 UTC (rev 25168) @@ -8,7 +8,7 @@ # Set max open files to 1024 NAME = glib -VERSION = 2.41.0 +VERSION = 2.41.1 GARTYPE = v2 # for memory synchronisation primitives like __sync_synchronize we need gcc GARCOMPILER = GNU @@ -172,14 +172,14 @@ RUNTIME_DEP_PKGS_CSWlibgio2-0-0_5.10_sparc += CSWlibffi6 RUNTIME_DEP_PKGS_CSWlibgio2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgio2-0-0_$(GAROSREL)_$(GARCH)) # Those are ok: hardcoded search paths which have added /opt/csw -CHECKPKG_OVERRIDES_CSWlibgio2-0-0 += file-with-bad-content|/usr/local|root/opt/csw/lib/libgio-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibgio2-0-0 += file-with-bad-content|/usr/share|root/opt/csw/lib/libgio-2.0.so.0.4100.0 +CHECKPKG_OVERRIDES_CSWlibgio2-0-0 += file-with-bad-content|/usr/local|root/opt/csw/lib/libgio-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibgio2-0-0 += file-with-bad-content|/usr/share|root/opt/csw/lib/libgio-2.0.so.0.4101.0 # libgio uses the mime info for determining the type of files CHECKPKG_OVERRIDES_CSWlibgio2-0-0 += surplus-dependency|CSWsharedmimeinfo -CHECKPKG_OVERRIDES_CSWlibgio2-0-0_sparc += file-with-bad-content|/usr/local|root/opt/csw/lib/sparcv9/libgio-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibgio2-0-0_sparc += file-with-bad-content|/usr/share|root/opt/csw/lib/sparcv9/libgio-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibgio2-0-0_i386 += file-with-bad-content|/usr/local|root/opt/csw/lib/amd64/libgio-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibgio2-0-0_i386 += file-with-bad-content|/usr/share|root/opt/csw/lib/amd64/libgio-2.0.so.0.4100.0 +CHECKPKG_OVERRIDES_CSWlibgio2-0-0_sparc += file-with-bad-content|/usr/local|root/opt/csw/lib/sparcv9/libgio-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibgio2-0-0_sparc += file-with-bad-content|/usr/share|root/opt/csw/lib/sparcv9/libgio-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibgio2-0-0_i386 += file-with-bad-content|/usr/local|root/opt/csw/lib/amd64/libgio-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibgio2-0-0_i386 += file-with-bad-content|/usr/share|root/opt/csw/lib/amd64/libgio-2.0.so.0.4101.0 CHECKPKG_OVERRIDES_CSWlibgio2-0-0 += $(CHECKPKG_OVERRIDES_CSWlibgio2-0-0_$(GARCH)) @@ -190,8 +190,8 @@ RUNTIME_DEP_PKGS_CSWlibglib2-0-0 += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWlibglib2-0-0 += CSWlibpcre1 RUNTIME_DEP_PKGS_CSWlibglib2-0-0 += CSWlibgcc-s1 -CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/share|root/opt/csw/lib/libglib-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/local|root/opt/csw/lib/libglib-2.0.so.0.4100.0 +CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/share|root/opt/csw/lib/libglib-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/local|root/opt/csw/lib/libglib-2.0.so.0.4101.0 PACKAGES += CSWlibgmodule2-0-0 @@ -202,12 +202,12 @@ RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0_5.10_sparc += CSWlibintl8 RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0_$(GAROSREL)_$(GARCH)) # Those are ok: hardcoded search paths which have added /opt/csw -CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/local|root/opt/csw/lib/libglib-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/share|root/opt/csw/lib/libglib-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibglib2-0-0_sparc += file-with-bad-content|/usr/local|root/opt/csw/lib/sparcv9/libglib-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibglib2-0-0_sparc += file-with-bad-content|/usr/share|root/opt/csw/lib/sparcv9/libglib-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibglib2-0-0_i386 += file-with-bad-content|/usr/local|root/opt/csw/lib/amd64/libglib-2.0.so.0.4100.0 -CHECKPKG_OVERRIDES_CSWlibglib2-0-0_i386 += file-with-bad-content|/usr/share|root/opt/csw/lib/amd64/libglib-2.0.so.0.4100.0 +CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/local|root/opt/csw/lib/libglib-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/share|root/opt/csw/lib/libglib-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibglib2-0-0_sparc += file-with-bad-content|/usr/local|root/opt/csw/lib/sparcv9/libglib-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibglib2-0-0_sparc += file-with-bad-content|/usr/share|root/opt/csw/lib/sparcv9/libglib-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibglib2-0-0_i386 += file-with-bad-content|/usr/local|root/opt/csw/lib/amd64/libglib-2.0.so.0.4101.0 +CHECKPKG_OVERRIDES_CSWlibglib2-0-0_i386 += file-with-bad-content|/usr/share|root/opt/csw/lib/amd64/libglib-2.0.so.0.4101.0 CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += $(CHECKPKG_OVERRIDES_CSWlibglib2-0-0_$(GARCH)) PACKAGES += CSWlibgobject2-0-0 Modified: csw/mgar/pkg/glib2/trunk/checksums =================================================================== --- csw/mgar/pkg/glib2/trunk/checksums 2015-07-09 12:35:32 UTC (rev 25167) +++ csw/mgar/pkg/glib2/trunk/checksums 2015-07-09 13:39:49 UTC (rev 25168) @@ -1 +1 @@ -65a0d3fa1e79b7d21bbc09579a0f3cf3 glib-2.41.0.tar.xz +bae557c87323e8df7ac30fb484b5cba9 glib-2.41.1.tar.xz Added: csw/mgar/pkg/glib2/trunk/files/sol9-condwait.patch =================================================================== --- csw/mgar/pkg/glib2/trunk/files/sol9-condwait.patch (rev 0) +++ csw/mgar/pkg/glib2/trunk/files/sol9-condwait.patch 2015-07-09 13:39:49 UTC (rev 25168) @@ -0,0 +1,12 @@ +--- a/glib/gthread-posix.c Wed Jul 1 00:43:22 2015 ++++ b/glib/gthread-posix.c Wed Jul 1 00:44:35 2015 +@@ -66,6 +66,9 @@ + #include + #endif + ++#define HAVE_PTHREAD_COND_TIMEDWAIT_RELATIVE_NP 1 ++#define pthread_cond_timedwait_relative_np(c,m,t) pthread_cond_reltimedwait_np(c,m,t) ++ + static void + g_thread_abort (gint status, + const gchar *function) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Thu Jul 9 15:48:19 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Thu, 9 Jul 2015 13:48:19 +0000 Subject: SF.net SVN: gar:[25169] csw/mgar/pkg/openssl1/trunk Message-ID: <3mRzNt0W2BzF0@mail.opencsw.org> Revision: 25169 http://sourceforge.net/p/gar/code/25169 Author: janholzh Date: 2015-07-09 13:48:19 +0000 (Thu, 09 Jul 2015) Log Message: ----------- openssl1/trunk: update to 1.0.1p Modified Paths: -------------- csw/mgar/pkg/openssl1/trunk/Makefile csw/mgar/pkg/openssl1/trunk/checksums Modified: csw/mgar/pkg/openssl1/trunk/Makefile =================================================================== --- csw/mgar/pkg/openssl1/trunk/Makefile 2015-07-09 13:39:49 UTC (rev 25168) +++ csw/mgar/pkg/openssl1/trunk/Makefile 2015-07-09 13:48:19 UTC (rev 25169) @@ -13,7 +13,7 @@ ###### Package information ####### NAME = openssl -VERSION = 1.0.1m +VERSION = 1.0.1p GARTYPE = v2 # Since version 1.0.0, soname is fixed and does not follow the minor releases SONAME=1.0.0 @@ -110,7 +110,8 @@ PATCHFILES += 0003-make-engines-directory-soname-dependant.patch # Upstream uses an obsolete GCC flag -PATCHFILES += 0004-remove-obsolete-mv8.patch +# not the case anymore +#PATCHFILES += 0004-remove-obsolete-mv8.patch # Update openssl.cnf path in man page to follow opencsw standard PATCHFILES += opencsw_paths.patch @@ -173,7 +174,8 @@ # This patch fixes this problem, it's taken from gentoo and adapted so that it works # with sh shell. # (see http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/dev-libs/openssl/files/) -PATCHFILES += openssl-1.0.1-parallel-build.patch +# does not apply anymore +#PATCHFILES += openssl-1.0.1-parallel-build.patch LICENSE = LICENSE Modified: csw/mgar/pkg/openssl1/trunk/checksums =================================================================== --- csw/mgar/pkg/openssl1/trunk/checksums 2015-07-09 13:39:49 UTC (rev 25168) +++ csw/mgar/pkg/openssl1/trunk/checksums 2015-07-09 13:48:19 UTC (rev 25169) @@ -1 +1 @@ -d143d1555d842a069cb7cc34ba745a06 openssl-1.0.1m.tar.gz +7563e92327199e0067ccd0f79f436976 openssl-1.0.1p.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Thu Jul 9 17:38:01 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Thu, 9 Jul 2015 15:38:01 +0000 Subject: SF.net SVN: gar:[25170] csw/mgar/pkg/glib2/trunk/files/0040-clock-monotonic .patch Message-ID: <3mS1qR5bFxzJY@mail.opencsw.org> Revision: 25170 http://sourceforge.net/p/gar/code/25170 Author: rmottola Date: 2015-07-09 15:38:01 +0000 (Thu, 09 Jul 2015) Log Message: ----------- glib2/trunk: quick patch for sol 9 Added Paths: ----------- csw/mgar/pkg/glib2/trunk/files/0040-clock-monotonic.patch Added: csw/mgar/pkg/glib2/trunk/files/0040-clock-monotonic.patch =================================================================== --- csw/mgar/pkg/glib2/trunk/files/0040-clock-monotonic.patch (rev 0) +++ csw/mgar/pkg/glib2/trunk/files/0040-clock-monotonic.patch 2015-07-09 15:38:01 UTC (rev 25170) @@ -0,0 +1,13 @@ +--- a/glib/gmain.c Sun Jun 28 16:08:35 2015 ++++ b/glib/gmain.c Sun Jun 28 16:10:22 2015 +@@ -100,6 +100,10 @@ + #include "glib-init.h" + #include "glib-private.h" + ++#ifndef CLOCK_MONOTONIC ++#define CLOCK_MONOTONIC CLOCK_REALTIME ++#endif ++ + /** + * SECTION:main + * @title: The Main Event Loop This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jul 12 21:36:26 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 12 Jul 2015 19:36:26 +0000 Subject: SF.net SVN: gar:[25171] csw/mgar/pkg/stunnel/trunk Message-ID: <3mTyzG743Cz1Dd@mail.opencsw.org> Revision: 25171 http://sourceforge.net/p/gar/code/25171 Author: dmichelsen Date: 2015-07-12 19:36:25 +0000 (Sun, 12 Jul 2015) Log Message: ----------- stunnel/trunk: Update to 5.20 Modified Paths: -------------- csw/mgar/pkg/stunnel/trunk/Makefile csw/mgar/pkg/stunnel/trunk/checksums Modified: csw/mgar/pkg/stunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/stunnel/trunk/Makefile 2015-07-09 15:38:01 UTC (rev 25170) +++ csw/mgar/pkg/stunnel/trunk/Makefile 2015-07-12 19:36:25 UTC (rev 25171) @@ -7,7 +7,7 @@ # Test on Solaris 8 / 9 for comparison # NAME = stunnel -VERSION = 5.19 +VERSION = 5.20 # BETA = b4 GARTYPE = v2 @@ -47,6 +47,10 @@ CONFIGURE_ARGS += --with-ssl=$(prefix) CONFIGURE_ARGS += --enable-ipv6 +# The test just tries to build Windows binaries, skip until this is fixed: +# http://www.stunnel.org/pipermail/stunnel-users/2015-July/005153.html +SKIPTEST ?= 1 + REINPLACEMENTS += capath REINPLACE_MATCH_capath = /etc/ssl/certs REINPLACE_WITH_capath = $(sysconfdir)/ssl/certs Modified: csw/mgar/pkg/stunnel/trunk/checksums =================================================================== --- csw/mgar/pkg/stunnel/trunk/checksums 2015-07-09 15:38:01 UTC (rev 25170) +++ csw/mgar/pkg/stunnel/trunk/checksums 2015-07-12 19:36:25 UTC (rev 25171) @@ -1 +1 @@ -5642c0feb14f480b8a0739b6eb8b39e5 stunnel-5.19.tar.gz +3264375026c2b496b5d258e243222de8 stunnel-5.20.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jul 13 11:23:38 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 13 Jul 2015 09:23:38 +0000 Subject: SF.net SVN: gar:[25172] csw/mgar/pkg/jdk7/trunk Message-ID: <3mVKKf6Rszz1MM@mail.opencsw.org> Revision: 25172 http://sourceforge.net/p/gar/code/25172 Author: dmichelsen Date: 2015-07-13 09:23:38 +0000 (Mon, 13 Jul 2015) Log Message: ----------- jdk7/trunk: Update to 7u80 Modified Paths: -------------- csw/mgar/pkg/jdk7/trunk/Makefile csw/mgar/pkg/jdk7/trunk/checksums Modified: csw/mgar/pkg/jdk7/trunk/Makefile =================================================================== --- csw/mgar/pkg/jdk7/trunk/Makefile 2015-07-12 19:36:25 UTC (rev 25171) +++ csw/mgar/pkg/jdk7/trunk/Makefile 2015-07-13 09:23:38 UTC (rev 25172) @@ -1,6 +1,6 @@ NAME = jdk7 -SPKG_VERSION = 1.7.0_75 -VERSION = 7u75 +SPKG_VERSION = 1.7.0_80 +VERSION = 7u80 GARTYPE = v2 DESCRIPTION = Java Development Kit 7 Modified: csw/mgar/pkg/jdk7/trunk/checksums =================================================================== --- csw/mgar/pkg/jdk7/trunk/checksums 2015-07-12 19:36:25 UTC (rev 25171) +++ csw/mgar/pkg/jdk7/trunk/checksums 2015-07-13 09:23:38 UTC (rev 25172) @@ -1,4 +1,4 @@ -325cb9029684143edd6e6e8e84655a5f jdk-7u75-solaris-i586.tar.gz -a09412b45d0d9fe2bb9c23bae3f35ca1 jdk-7u75-solaris-sparc.tar.gz -063b64bb9a51a4db4e286ffd3b93b468 jdk-7u75-solaris-sparcv9.tar.gz -ba8c5460905c39b9eab7ef70ddd9738a jdk-7u75-solaris-x64.tar.gz +3de7e7b8db9252a551096a34cb2dac63 jdk-7u80-solaris-i586.tar.gz +ae6312b5eb1c2df171728d24ef18709e jdk-7u80-solaris-sparc.tar.gz +561f6e8420bfee57c2ce0bb284f0ccae jdk-7u80-solaris-sparcv9.tar.gz +6390c3ca3ddcac1a8989189475b2603a jdk-7u80-solaris-x64.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From jake_goerzen at users.sourceforge.net Mon Jul 13 18:16:47 2015 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Mon, 13 Jul 2015 16:16:47 +0000 Subject: SF.net SVN: gar:[25173] csw/mgar/pkg/tor/trunk Message-ID: <3mVVVP105Nz1Wl@mail.opencsw.org> Revision: 25173 http://sourceforge.net/p/gar/code/25173 Author: jake_goerzen Date: 2015-07-13 16:16:47 +0000 (Mon, 13 Jul 2015) Log Message: ----------- tor: update to version 0.2.6.10 Modified Paths: -------------- csw/mgar/pkg/tor/trunk/Makefile csw/mgar/pkg/tor/trunk/checksums Modified: csw/mgar/pkg/tor/trunk/Makefile =================================================================== --- csw/mgar/pkg/tor/trunk/Makefile 2015-07-13 09:23:38 UTC (rev 25172) +++ csw/mgar/pkg/tor/trunk/Makefile 2015-07-13 16:16:47 UTC (rev 25173) @@ -1,6 +1,6 @@ # $Id$ NAME = tor -VERSION = 0.2.6.9 +VERSION = 0.2.6.10 GARTYPE = v2 DESCRIPTION = Secure network traffic router Modified: csw/mgar/pkg/tor/trunk/checksums =================================================================== --- csw/mgar/pkg/tor/trunk/checksums 2015-07-13 09:23:38 UTC (rev 25172) +++ csw/mgar/pkg/tor/trunk/checksums 2015-07-13 16:16:47 UTC (rev 25173) @@ -1 +1 @@ -4a1b334c30d7b37ea72fa33425220d5d tor-0.2.6.9.tar.gz +04f919e7882d1ca80f835545af562bad tor-0.2.6.10.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Tue Jul 14 01:52:06 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Mon, 13 Jul 2015 23:52:06 +0000 Subject: SF.net SVN: gar:[25174] csw/mgar/pkg/glib2/trunk/Makefile Message-ID: <3mVhbr73f1z5r@mail.opencsw.org> Revision: 25174 http://sourceforge.net/p/gar/code/25174 Author: rmottola Date: 2015-07-13 23:52:06 +0000 (Mon, 13 Jul 2015) Log Message: ----------- glib2/trunk: broaden dependencies Modified Paths: -------------- csw/mgar/pkg/glib2/trunk/Makefile Modified: csw/mgar/pkg/glib2/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib2/trunk/Makefile 2015-07-13 16:16:47 UTC (rev 25173) +++ csw/mgar/pkg/glib2/trunk/Makefile 2015-07-13 23:52:06 UTC (rev 25174) @@ -155,9 +155,10 @@ RUNTIME_DEP_PKGS_CSWgio-fam-backend += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWgio-fam-backend += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWgio-fam-backend += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWgio-fam-backend_5.10_sparc += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWgio-fam-backend_5.10_sparc += CSWlibffi6 +RUNTIME_DEP_PKGS_CSWgio-fam-backend_sparc += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWgio-fam-backend_sparc += CSWlibffi6 RUNTIME_DEP_PKGS_CSWgio-fam-backend += $(RUNTIME_DEP_PKGS_CSWgio-fam-backend_$(GAROSREL)_$(GARCH)) +RUNTIME_DEP_PKGS_CSWgio-fam-backend += $(RUNTIME_DEP_PKGS_CSWgio-fam-backend_$(GARCH)) PACKAGES += CSWlibgio2-0-0 SPKG_DESC_CSWlibgio2-0-0 += $(DESCRIPTION), libgio-2.0.so.0 @@ -169,8 +170,9 @@ RUNTIME_DEP_PKGS_CSWlibgio2-0-0 += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWlibgio2-0-0 += CSWsharedmimeinfo RUNTIME_DEP_PKGS_CSWlibgio2-0-0 += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWlibgio2-0-0_5.10_sparc += CSWlibffi6 +RUNTIME_DEP_PKGS_CSWlibgio2-0-0_sparc += CSWlibffi6 RUNTIME_DEP_PKGS_CSWlibgio2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgio2-0-0_$(GAROSREL)_$(GARCH)) +RUNTIME_DEP_PKGS_CSWlibgio2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgio2-0-0_$(GARCH)) # Those are ok: hardcoded search paths which have added /opt/csw CHECKPKG_OVERRIDES_CSWlibgio2-0-0 += file-with-bad-content|/usr/local|root/opt/csw/lib/libgio-2.0.so.0.4101.0 CHECKPKG_OVERRIDES_CSWlibgio2-0-0 += file-with-bad-content|/usr/share|root/opt/csw/lib/libgio-2.0.so.0.4101.0 @@ -199,8 +201,8 @@ SPKG_DESC_CSWlibgmodule2-0-0 += $(DESCRIPTION), libgmodule-2.0.so.0 RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0 += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0 += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0_5.10_sparc += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0_$(GAROSREL)_$(GARCH)) +RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0_sparc += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgmodule2-0-0_$(GARCH)) # Those are ok: hardcoded search paths which have added /opt/csw CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/local|root/opt/csw/lib/libglib-2.0.so.0.4101.0 CHECKPKG_OVERRIDES_CSWlibglib2-0-0 += file-with-bad-content|/usr/share|root/opt/csw/lib/libglib-2.0.so.0.4101.0 @@ -216,16 +218,16 @@ RUNTIME_DEP_PKGS_CSWlibgobject2-0-0 += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWlibgobject2-0-0 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibgobject2-0-0 += CSWlibffi6 -RUNTIME_DEP_PKGS_CSWlibgobject2-0-0_5.10_sparc += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWlibgobject2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgobject2-0-0_$(GAROSREL)_$(GARCH)) +RUNTIME_DEP_PKGS_CSWlibgobject2-0-0_sparc += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgobject2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgobject2-0-0_$(GARCH)) PACKAGES += CSWlibgthread2-0-0 SPKG_DESC_CSWlibgthread2-0-0 += $(DESCRIPTION), libgthread-2.0.so.0 PKGFILES_CSWlibgthread2-0-0 += $(call pkgfiles_lib,libgthread-2.0.so.0) RUNTIME_DEP_PKGS_CSWlibgthread2-0-0 += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWlibgthread2-0-0 += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWlibgthread2-0-0_5.10_sparc += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWlibgthread2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgthread2-0-0_$(GAROSREL)_$(GARCH)) +RUNTIME_DEP_PKGS_CSWlibgthread2-0-0_sparc += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgthread2-0-0 += $(RUNTIME_DEP_PKGS_CSWlibgthread2-0-0_$(GARCH)) PACKAGES += CSWlibglib2-dev SPKG_DESC_CSWlibglib2-dev = Development files for libglib-2.0.so.0 and assorted libglib, libgmodule, libgobject and libgthread This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Tue Jul 14 08:26:55 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Tue, 14 Jul 2015 06:26:55 +0000 Subject: SF.net SVN: gar:[25175] csw/mgar/pkg/glib2/trunk/Makefile Message-ID: <3mVsMG3xFbzCm@mail.opencsw.org> Revision: 25175 http://sourceforge.net/p/gar/code/25175 Author: rmottola Date: 2015-07-14 06:26:55 +0000 (Tue, 14 Jul 2015) Log Message: ----------- glib2/trunk: not needed on sol 11 sparc Modified Paths: -------------- csw/mgar/pkg/glib2/trunk/Makefile Modified: csw/mgar/pkg/glib2/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib2/trunk/Makefile 2015-07-13 23:52:06 UTC (rev 25174) +++ csw/mgar/pkg/glib2/trunk/Makefile 2015-07-14 06:26:55 UTC (rev 25175) @@ -156,7 +156,7 @@ RUNTIME_DEP_PKGS_CSWgio-fam-backend += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWgio-fam-backend += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWgio-fam-backend_sparc += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWgio-fam-backend_sparc += CSWlibffi6 +RUNTIME_DEP_PKGS_CSWgio-fam-backend_5.10_sparc += CSWlibffi6 RUNTIME_DEP_PKGS_CSWgio-fam-backend += $(RUNTIME_DEP_PKGS_CSWgio-fam-backend_$(GAROSREL)_$(GARCH)) RUNTIME_DEP_PKGS_CSWgio-fam-backend += $(RUNTIME_DEP_PKGS_CSWgio-fam-backend_$(GARCH)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jul 14 16:31:51 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 14 Jul 2015 14:31:51 +0000 Subject: SF.net SVN: gar:[25176] csw/mgar/pkg/denyhosts/trunk/Makefile Message-ID: <3mW46n5qsszN8@mail.opencsw.org> Revision: 25176 http://sourceforge.net/p/gar/code/25176 Author: dmichelsen Date: 2015-07-14 14:31:51 +0000 (Tue, 14 Jul 2015) Log Message: ----------- denyhosts/trunk: Adjust python path Modified Paths: -------------- csw/mgar/pkg/denyhosts/trunk/Makefile Modified: csw/mgar/pkg/denyhosts/trunk/Makefile =================================================================== --- csw/mgar/pkg/denyhosts/trunk/Makefile 2015-07-14 06:26:55 UTC (rev 25175) +++ csw/mgar/pkg/denyhosts/trunk/Makefile 2015-07-14 14:31:51 UTC (rev 25176) @@ -83,7 +83,7 @@ gsed -i \ -e 's,denyhosts.cfg,$(sysconfdir)/denyhosts.cfg,' \ - $(DESTDIR)/opt/csw/lib/python/site-packages/DenyHosts/constants.py + $(DESTDIR)/opt/csw/lib/python*/site-packages/DenyHosts/constants.py #Adjust daemon-control-dist wrapper script to match our package paths gsed -i \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 16 16:22:44 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 16 Jul 2015 14:22:44 +0000 Subject: SF.net SVN: gar:[25177] csw/mgar/pkg/apache24/trunk Message-ID: <3mXHqc25z7z1CF@mail.opencsw.org> Revision: 25177 http://sourceforge.net/p/gar/code/25177 Author: dmichelsen Date: 2015-07-16 14:22:44 +0000 (Thu, 16 Jul 2015) Log Message: ----------- apache24/trunk: Update to 2.4.16 Modified Paths: -------------- csw/mgar/pkg/apache24/trunk/Makefile csw/mgar/pkg/apache24/trunk/checksums Modified: csw/mgar/pkg/apache24/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache24/trunk/Makefile 2015-07-14 14:31:51 UTC (rev 25176) +++ csw/mgar/pkg/apache24/trunk/Makefile 2015-07-16 14:22:44 UTC (rev 25177) @@ -1,7 +1,7 @@ # $Id: Makefile 18185 2012-06-01 02:30:46Z bdwalton $ NAME = httpd -VERSION = 2.4.12 +VERSION = 2.4.16 GARTYPE = v2 PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc @@ -63,6 +63,7 @@ SPKG_DESC_CSWapache24-dev = The Apache 2.4 Development Files PKGFILES_CSWapache24-dev = $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWapache24-dev += CSWapache24-manual +CHECKPKG_OVERRIDES_CSWapache24-dev += surplus-dependency|CSWapache24-manual # This is a fallback CHECKPKG_OVERRIDES_CSWapache24-dev += file-with-bad-content|/usr/local|root/opt/csw/include/apache2/httpd.h Modified: csw/mgar/pkg/apache24/trunk/checksums =================================================================== --- csw/mgar/pkg/apache24/trunk/checksums 2015-07-14 14:31:51 UTC (rev 25176) +++ csw/mgar/pkg/apache24/trunk/checksums 2015-07-16 14:22:44 UTC (rev 25177) @@ -1 +1 @@ -ec8676a7fe62433883868b8341da6734 httpd-2.4.12.tar.gz +e7b1d7761fcb5cafe9f95a955373dd7b httpd-2.4.16.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jul 26 12:38:16 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 26 Jul 2015 10:38:16 +0000 Subject: SF.net SVN: gar:[25177] csw/mgar/pkg/cpan Message-ID: <3mfLMs2CcGz1Td@mail.opencsw.org> Revision: 25177 http://sourceforge.net/p/gar/code/25177 Author: dmichelsen Date: 2015-07-26 10:38:16 +0000 (Sun, 26 Jul 2015) Log Message: ----------- cpan/Data-Compare: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Data-Compare/ csw/mgar/pkg/cpan/Data-Compare/branches/ csw/mgar/pkg/cpan/Data-Compare/tags/ csw/mgar/pkg/cpan/Data-Compare/trunk/ csw/mgar/pkg/cpan/Data-Compare/trunk/Makefile csw/mgar/pkg/cpan/Data-Compare/trunk/checksums csw/mgar/pkg/cpan/Data-Compare/trunk/files/ Index: csw/mgar/pkg/cpan/Data-Compare/trunk =================================================================== --- csw/mgar/pkg/cpan/Data-Compare/trunk 2015-07-14 14:31:51 UTC (rev 25176) +++ csw/mgar/pkg/cpan/Data-Compare/trunk 2015-07-26 10:38:16 UTC (rev 25177) Property changes on: csw/mgar/pkg/cpan/Data-Compare/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1,2 ## +work + Added: csw/mgar/pkg/cpan/Data-Compare/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Data-Compare/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Data-Compare/trunk/Makefile 2015-07-26 10:38:16 UTC (rev 25177) @@ -0,0 +1,21 @@ +NAME = Data-Compare +VERSION = 1.25 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DCANTRELL + +DESCRIPTION = Compare perl data structures +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the unknown license + +PACKAGES += CSWpm-data-compare +CATALOGNAME_CSWpm-data-compare = pm_data_compare +SPKG_DESC_CSWpm-data-compare = Compare perl data structures +ARCHALL_CSWpm-data-compare = 1 +RUNTIME_DEP_PKGS_CSWpm-data-compare += CSWpm-file-find-rule + +include gar/category.mk Added: csw/mgar/pkg/cpan/Data-Compare/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Data-Compare/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Data-Compare/trunk/checksums 2015-07-26 10:38:16 UTC (rev 25177) @@ -0,0 +1 @@ +6a397ab5833237f3ca05ed7277b19a7a Data-Compare-1.25.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Sun Jul 26 13:41:33 2015 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 26 Jul 2015 11:41:33 +0000 Subject: SF.net SVN: gar:[25178] csw/mgar/pkg/cpan/Test-Deep/trunk Message-ID: <3mfMml5tKRz1x@mail.opencsw.org> Revision: 25178 http://sourceforge.net/p/gar/code/25178 Author: bonivart Date: 2015-07-26 11:41:33 +0000 (Sun, 26 Jul 2015) Log Message: ----------- cpan/Test-Deep/trunk: update to 0.117 Modified Paths: -------------- csw/mgar/pkg/cpan/Test-Deep/trunk/Makefile csw/mgar/pkg/cpan/Test-Deep/trunk/checksums Modified: csw/mgar/pkg/cpan/Test-Deep/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Deep/trunk/Makefile 2015-07-26 10:38:16 UTC (rev 25177) +++ csw/mgar/pkg/cpan/Test-Deep/trunk/Makefile 2015-07-26 11:41:33 UTC (rev 25178) @@ -1,5 +1,5 @@ NAME = Test-Deep -VERSION = 0.110 +VERSION = 0.117 CATEGORIES = cpan GARTYPE = v2 AUTHOR = RJBS @@ -13,8 +13,6 @@ PACKAGES = CSWpm-test-deep CATALOGNAME = pm_test_deep SPKG_DESC_CSWpm-test-deep = $(DESCRIPTION) -OBSOLETED_BY_CSWpm-test-deep = CSWpmtestdeep -CATALOGNAME_CSWpmtestdeep = pm_testdeep ARCHALL = 1 Modified: csw/mgar/pkg/cpan/Test-Deep/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Deep/trunk/checksums 2015-07-26 10:38:16 UTC (rev 25177) +++ csw/mgar/pkg/cpan/Test-Deep/trunk/checksums 2015-07-26 11:41:33 UTC (rev 25178) @@ -1 +1 @@ -a5daeaaffcd8cf94a12594ff76970045 Test-Deep-0.110.tar.gz +847601f96bf5438aa708323661e9c2de Test-Deep-0.117.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jul 26 16:59:39 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 26 Jul 2015 14:59:39 +0000 Subject: SF.net SVN: gar:[25179] csw/mgar/pkg/sudo/trunk Message-ID: <3mfS9Q2RrHz66@mail.opencsw.org> Revision: 25179 http://sourceforge.net/p/gar/code/25179 Author: dmichelsen Date: 2015-07-26 14:59:39 +0000 (Sun, 26 Jul 2015) Log Message: ----------- sudo/trunk: Update to 1.8.14p3 Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile csw/mgar/pkg/sudo/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/sudo/trunk/files/bug690.patch Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2015-07-26 11:41:33 UTC (rev 25178) +++ csw/mgar/pkg/sudo/trunk/Makefile 2015-07-26 14:59:39 UTC (rev 25179) @@ -2,7 +2,7 @@ # NAME = sudo -VERSION = 1.8.13 +VERSION = 1.8.14p3 GARTYPE = v2 EXTRA_MODULATORS = LDAP @@ -21,10 +21,6 @@ DISTFILES += sudo.conf.CSW DISTFILES += map.sudo -# Use patch until this is fixed: -# http://bugzilla.sudo.ws/show_bug.cgi?id=690 -PATCHFILES += bug690.patch - LICENSE = doc/LICENSE VENDOR_URL = http://www.sudo.ws Modified: csw/mgar/pkg/sudo/trunk/checksums =================================================================== --- csw/mgar/pkg/sudo/trunk/checksums 2015-07-26 11:41:33 UTC (rev 25178) +++ csw/mgar/pkg/sudo/trunk/checksums 2015-07-26 14:59:39 UTC (rev 25179) @@ -1 +1 @@ -f61577ec330ad1bd504c0e2eec6ea2d8 sudo-1.8.13.tar.gz +93dbd1e47c136179ff1b01494c1c0e75 sudo-1.8.14p3.tar.gz Deleted: csw/mgar/pkg/sudo/trunk/files/bug690.patch =================================================================== --- csw/mgar/pkg/sudo/trunk/files/bug690.patch 2015-07-26 11:41:33 UTC (rev 25178) +++ csw/mgar/pkg/sudo/trunk/files/bug690.patch 2015-07-26 14:59:39 UTC (rev 25179) @@ -1,68 +0,0 @@ -diff -r 68bd7297137e lib/util/Makefile.in ---- a/lib/util/Makefile.in Sat Mar 21 15:41:59 2015 -0600 -+++ b/lib/util/Makefile.in Sun Mar 22 07:08:53 2015 -0600 -@@ -79,7 +79,7 @@ - - # Regression tests - TEST_PROGS = atofoo_test conf_test hltq_test parseln_test progname_test @COMPAT_TEST_PROGS@ --TEST_LIBS = @LIBS@ @LIBINTL@ -+TEST_LIBS = @LIBS@ - TEST_LDFLAGS = @LDFLAGS@ - - # User and group ids the installed files should be "owned" by -@@ -136,9 +136,9 @@ - libsudo_util.la: $(LTOBJS) @LT_LDDEP@ - case "$(LT_LDFLAGS)" in \ - *-no-install*) \ -- $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(LT_LDFLAGS) $(LTOBJS) @LIBDL@ @LIBRT@;; \ -+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(LT_LDFLAGS) $(LTOBJS) @LIBINTL@ @LIBDL@ @LIBRT@;; \ - *) \ -- $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(SSP_LDFLAGS) $(LT_LDFLAGS) $(LTOBJS) -version-info $(SHLIB_VERSION) -rpath $(libexecdir)/sudo @LT_DEP_LIBS@ @LIBDL@ @LIBRT@;; \ -+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(SSP_LDFLAGS) $(LT_LDFLAGS) $(LTOBJS) -version-info $(SHLIB_VERSION) -rpath $(libexecdir)/sudo @LT_DEP_LIBS@ @LIBINTL@ @LIBDL@ @LIBRT@;; \ - esac - - siglist.c: mksiglist -diff -r 68bd7297137e plugins/sudoers/Makefile.in ---- a/plugins/sudoers/Makefile.in Sat Mar 21 15:41:59 2015 -0600 -+++ b/plugins/sudoers/Makefile.in Sun Mar 22 07:08:53 2015 -0600 -@@ -51,7 +51,7 @@ - - # Libraries - LT_LIBS = $(top_builddir)/lib/util/libsudo_util.la --LIBS = $(LT_LIBS) @LIBINTL@ -+LIBS = $(LT_LIBS) - NET_LIBS = @NET_LIBS@ - SUDOERS_LIBS = @SUDOERS_LIBS@ @AFS_LIBS@ @GETGROUPS_LIB@ $(LIBS) $(NET_LIBS) @ZLIB@ @LIBMD@ - REPLAY_LIBS = @REPLAY_LIBS@ @ZLIB@ -diff -r 68bd7297137e src/Makefile.in ---- a/src/Makefile.in Sat Mar 21 15:41:59 2015 -0600 -+++ b/src/Makefile.in Sun Mar 22 07:08:53 2015 -0600 -@@ -37,7 +37,7 @@ - - # Libraries - LT_LIBS = $(top_builddir)/lib/util/libsudo_util.la --LIBS = @LIBS@ @SUDO_LIBS@ @GETGROUPS_LIB@ @NET_LIBS@ @LIBINTL@ $(LT_LIBS) -+LIBS = @LIBS@ @SUDO_LIBS@ @GETGROUPS_LIB@ @NET_LIBS@ $(LT_LIBS) - - # C preprocessor flags - CPPFLAGS = -I$(incdir) -I$(top_builddir) -I. -I$(srcdir) -I$(top_srcdir) @CPPFLAGS@ -@@ -86,7 +86,7 @@ - RC_LINK=@RC_LINK@ - - TEST_PROGS = check_ttyname --TEST_LIBS = @LIBS@ @LIBINTL@ $(LT_LIBS) -+TEST_LIBS = @LIBS@ $(LT_LIBS) - TEST_LDFLAGS = @LDFLAGS@ - - # OS dependent defines -@@ -133,8 +133,8 @@ - sudo_noexec.la: sudo_noexec.lo - $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(LT_LDFLAGS) $(SSP_LDFLAGS) -o $@ sudo_noexec.lo -module -avoid-version -rpath $(noexecdir) -shrext .so - --sesh: $(SESH_OBJS) @LIBINTL@ $(LT_LIBS) -- $(LIBTOOL) --mode=link $(CC) -o $@ $(SESH_OBJS) $(LDFLAGS) $(PIE_LDFLAGS) $(SSP_LDFLAGS) @LIBINTL@ $(LIBS) -+sesh: $(SESH_OBJS) $(LT_LIBS) -+ $(LIBTOOL) --mode=link $(CC) -o $@ $(SESH_OBJS) $(LDFLAGS) $(PIE_LDFLAGS) $(SSP_LDFLAGS) $(LIBS) - - check_ttyname: $(CHECK_TTYNAME_OBJS) $(top_builddir)/lib/util/libsudo_util.la - $(LIBTOOL) --mode=link $(CC) -o $@ $(CHECK_TTYNAME_OBJS) $(TEST_LDFLAGS) $(PIE_LDFLAGS) $(SSP_LDFLAGS) $(TEST_LIBS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jul 27 12:00:21 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 27 Jul 2015 10:00:21 +0000 Subject: SF.net SVN: gar:[25180] csw/mgar/pkg/stunnel/trunk Message-ID: <3mfxTW75GHzLk@mail.opencsw.org> Revision: 25180 http://sourceforge.net/p/gar/code/25180 Author: dmichelsen Date: 2015-07-27 10:00:20 +0000 (Mon, 27 Jul 2015) Log Message: ----------- stunnel/trunk: Update to 5.21 Modified Paths: -------------- csw/mgar/pkg/stunnel/trunk/Makefile csw/mgar/pkg/stunnel/trunk/checksums Modified: csw/mgar/pkg/stunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/stunnel/trunk/Makefile 2015-07-26 14:59:39 UTC (rev 25179) +++ csw/mgar/pkg/stunnel/trunk/Makefile 2015-07-27 10:00:20 UTC (rev 25180) @@ -7,7 +7,7 @@ # Test on Solaris 8 / 9 for comparison # NAME = stunnel -VERSION = 5.20 +VERSION = 5.21 # BETA = b4 GARTYPE = v2 Modified: csw/mgar/pkg/stunnel/trunk/checksums =================================================================== --- csw/mgar/pkg/stunnel/trunk/checksums 2015-07-26 14:59:39 UTC (rev 25179) +++ csw/mgar/pkg/stunnel/trunk/checksums 2015-07-27 10:00:20 UTC (rev 25180) @@ -1 +1 @@ -3264375026c2b496b5d258e243222de8 stunnel-5.20.tar.gz +3d0a932ea650c0fa0da1e45547afdbb8 stunnel-5.21.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Mon Jul 27 22:05:56 2015 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Mon, 27 Jul 2015 20:05:56 +0000 Subject: SF.net SVN: gar:[25181] csw/mgar/pkg/rlwrap/trunk Message-ID: <3mgBwN6vWszYm@mail.opencsw.org> Revision: 25181 http://sourceforge.net/p/gar/code/25181 Author: chninkel Date: 2015-07-27 20:05:55 +0000 (Mon, 27 Jul 2015) Log Message: ----------- rlwrap/trunk: update to 0.42 Modified Paths: -------------- csw/mgar/pkg/rlwrap/trunk/Makefile csw/mgar/pkg/rlwrap/trunk/checksums Modified: csw/mgar/pkg/rlwrap/trunk/Makefile =================================================================== --- csw/mgar/pkg/rlwrap/trunk/Makefile 2015-07-27 10:00:20 UTC (rev 25180) +++ csw/mgar/pkg/rlwrap/trunk/Makefile 2015-07-27 20:05:55 UTC (rev 25181) @@ -13,7 +13,7 @@ ###### Package information ####### NAME = rlwrap -VERSION = 0.41 +VERSION = 0.42 GARTYPE = v2 DESCRIPTION = A readline wrapper Modified: csw/mgar/pkg/rlwrap/trunk/checksums =================================================================== --- csw/mgar/pkg/rlwrap/trunk/checksums 2015-07-27 10:00:20 UTC (rev 25180) +++ csw/mgar/pkg/rlwrap/trunk/checksums 2015-07-27 20:05:55 UTC (rev 25181) @@ -1 +1 @@ -8d1f3f8e634d55725645e6750c54e5f2 rlwrap-0.41.tar.gz +1e04a9dcc0672b02806cc63a0338176a rlwrap-0.42.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Tue Jul 28 11:58:43 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Tue, 28 Jul 2015 09:58:43 +0000 Subject: SF.net SVN: gar:[25182] csw/mgar/pkg/apache2/trunk Message-ID: <3mgYPB0bPvzrm@mail.opencsw.org> Revision: 25182 http://sourceforge.net/p/gar/code/25182 Author: janholzh Date: 2015-07-28 09:58:42 +0000 (Tue, 28 Jul 2015) Log Message: ----------- apache2/trunk: update to 2.2.31 Modified Paths: -------------- csw/mgar/pkg/apache2/trunk/Makefile csw/mgar/pkg/apache2/trunk/checksums Modified: csw/mgar/pkg/apache2/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache2/trunk/Makefile 2015-07-27 20:05:55 UTC (rev 25181) +++ csw/mgar/pkg/apache2/trunk/Makefile 2015-07-28 09:58:42 UTC (rev 25182) @@ -2,7 +2,7 @@ # ! Move ap2xs into devel package NAME = httpd -VERSION = 2.2.29 +VERSION = 2.2.31 GARTYPE = v2 DESCRIPTION = A high performance HTTP server. @@ -53,6 +53,9 @@ PATCHFILES += 0003-Switch-usr-local-for-opt-csw-in-default-cgi-path.patch PATCHFILES += 0004-Move-the-envvars-files-to-sysconfdir.patch +#Use Modern SOS +GARCOMPILER = SOS12U3 + # The PACKAGES variable tell GAR which packages to build PACKAGES = CSWapache2 CSWapache2-dev CSWapache2-manual CSWap2suexec PACKAGES += CSWap2worker CSWapache2-utils Modified: csw/mgar/pkg/apache2/trunk/checksums =================================================================== --- csw/mgar/pkg/apache2/trunk/checksums 2015-07-27 20:05:55 UTC (rev 25181) +++ csw/mgar/pkg/apache2/trunk/checksums 2015-07-28 09:58:42 UTC (rev 25182) @@ -1 +1 @@ -7036a6eb5fb3b85be7a804255438b795 httpd-2.2.29.tar.gz +bc81bdf42a6c10d0ee9e6908014cc0f5 httpd-2.2.31.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Tue Jul 28 21:45:09 2015 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 28 Jul 2015 19:45:09 +0000 Subject: SF.net SVN: gar:[25183] csw/mgar/pkg/librsvg/trunk Message-ID: <3mgpPq63G4z12d@mail.opencsw.org> Revision: 25183 http://sourceforge.net/p/gar/code/25183 Author: lblume Date: 2015-07-28 19:45:08 +0000 (Tue, 28 Jul 2015) Log Message: ----------- librsvg/trunk: Bump to 2.40.9; fix issue that prevented using the correct glibconfig.h Modified Paths: -------------- csw/mgar/pkg/librsvg/trunk/Makefile csw/mgar/pkg/librsvg/trunk/checksums Modified: csw/mgar/pkg/librsvg/trunk/Makefile =================================================================== --- csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-28 09:58:42 UTC (rev 25182) +++ csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-28 19:45:08 UTC (rev 25183) @@ -1,5 +1,5 @@ NAME = librsvg -VERSION = 2.36.4 +VERSION = 2.40.9 GARTYPE = v2 DESCRIPTION = Scalable Vector Graphics library @@ -20,7 +20,7 @@ GARCOMPILER = GCC4 -PKG_CONFIG_PATH=/opt/csw/lib/pkgconfig +PKG_CONFIG_PATH=/opt/csw/lib/$(MEMORYMODEL)/pkgconfig # We need the new glib only available on Solaris 10 PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 Modified: csw/mgar/pkg/librsvg/trunk/checksums =================================================================== --- csw/mgar/pkg/librsvg/trunk/checksums 2015-07-28 09:58:42 UTC (rev 25182) +++ csw/mgar/pkg/librsvg/trunk/checksums 2015-07-28 19:45:08 UTC (rev 25183) @@ -1 +1 @@ -3c94524c8ccf668e30b236f409239f54 librsvg-2.36.4.tar.xz +31df15e3beaa8fbbf538ca3c52b400d2 librsvg-2.40.9.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Wed Jul 29 00:38:55 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Tue, 28 Jul 2015 22:38:55 +0000 Subject: SF.net SVN: gar:[25184] csw/mgar/pkg/libcairo/trunk/Makefile Message-ID: <3mgtGR1k0vz172@mail.opencsw.org> Revision: 25184 http://sourceforge.net/p/gar/code/25184 Author: rmottola Date: 2015-07-28 22:38:54 +0000 (Tue, 28 Jul 2015) Log Message: ----------- libcairo/trunk: adjust pkg-config path, disable sol9 for missing dep Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/Makefile Modified: csw/mgar/pkg/libcairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/libcairo/trunk/Makefile 2015-07-28 19:45:08 UTC (rev 25183) +++ csw/mgar/pkg/libcairo/trunk/Makefile 2015-07-28 22:38:54 UTC (rev 25184) @@ -15,7 +15,7 @@ DISTFILES = $(DISTNAME).tar.xz PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 -PACKAGING_PLATFORMS = solaris9-sparc solaris9-i386 +#PACKAGING_PLATFORMS = solaris9-sparc solaris9-i386 PATCHFILES += 0001-Remove-cairo_private-from-_cairo_unbounded_rectangle.patch @@ -85,7 +85,9 @@ BUILD_DEP_PKGS += CSWlibxrender BUILD_DEP_PKGS += CSWsunx11devel +PKG_CONFIG_PATH=/opt/csw/lib/$(MEMORYMODEL)/pkgconfig + BUILD64_LIBS_ONLY = 1 EXTRA_CFLAGS = -xc99=all This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at opencsw.org Wed Jul 29 08:10:26 2015 From: rmottola at opencsw.org (Riccardo Mottola) Date: Wed, 29 Jul 2015 08:10:26 +0200 Subject: SF.net SVN: gar:[25183] csw/mgar/pkg/librsvg/trunk In-Reply-To: <3mgpPq63G4z12d@mail.opencsw.org> References: <3mgpPq63G4z12d@mail.opencsw.org> Message-ID: <55B86E52.3020501@opencsw.org> Hi Laurent, thanks for the fix. Is librsvg fine now? I accidentally thought Dago made the commit :) Are you going to complete and upload the package? Thanks - Riccardo lblume at users.sourceforge.net wrote: > Revision: 25183 > http://sourceforge.net/p/gar/code/25183 > Author: lblume > Date: 2015-07-28 19:45:08 +0000 (Tue, 28 Jul 2015) > Log Message: > ----------- > librsvg/trunk: Bump to 2.40.9; fix issue that prevented using the correct glibconfig.h > > Modified Paths: > -------------- > csw/mgar/pkg/librsvg/trunk/Makefile > csw/mgar/pkg/librsvg/trunk/checksums > > Modified: csw/mgar/pkg/librsvg/trunk/Makefile > =================================================================== > --- csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-28 09:58:42 UTC (rev 25182) > +++ csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-28 19:45:08 UTC (rev 25183) > @@ -1,5 +1,5 @@ > NAME = librsvg > -VERSION = 2.36.4 > +VERSION = 2.40.9 > GARTYPE = v2 > > DESCRIPTION = Scalable Vector Graphics library > @@ -20,7 +20,7 @@ > > GARCOMPILER = GCC4 > > -PKG_CONFIG_PATH=/opt/csw/lib/pkgconfig > +PKG_CONFIG_PATH=/opt/csw/lib/$(MEMORYMODEL)/pkgconfig > > # We need the new glib only available on Solaris 10 > PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 > From bonivart at users.sourceforge.net Wed Jul 29 11:36:51 2015 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 29 Jul 2015 09:36:51 +0000 Subject: SF.net SVN: gar:[25185] csw/mgar/pkg/bind/trunk Message-ID: <3mh8sV74dfz1J8@mail.opencsw.org> Revision: 25185 http://sourceforge.net/p/gar/code/25185 Author: bonivart Date: 2015-07-29 09:36:51 +0000 (Wed, 29 Jul 2015) Log Message: ----------- bind/trunk: update to 9.9.7-P2 Modified Paths: -------------- csw/mgar/pkg/bind/trunk/Makefile csw/mgar/pkg/bind/trunk/checksums Modified: csw/mgar/pkg/bind/trunk/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2015-07-28 22:38:54 UTC (rev 25184) +++ csw/mgar/pkg/bind/trunk/Makefile 2015-07-29 09:36:51 UTC (rev 25185) @@ -7,7 +7,7 @@ GARTYPE = v2 # Enable these for Px-releases -RELEASE = P1 +RELEASE = P2 DISTVERSION = $(VERSION)-$(RELEASE) SPKG_VERSION = $(VERSION)$(RELEASE) DISTNAME = $(NAME)-$(VERSION)-$(RELEASE) @@ -121,7 +121,7 @@ # Will not split out all these libs CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libbind9.so.90.0.13|soname=libbind9.so.90|pkgname=CSWlibbind|expected=CSWlibbind9-90 -CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libdns.so.106.1.1|soname=libdns.so.106|pkgname=CSWlibbind|expected=CSWlibdns106 +CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libdns.so.106.1.2|soname=libdns.so.106|pkgname=CSWlibbind|expected=CSWlibdns106 CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libisc.so.104.0.2|soname=libisc.so.104|pkgname=CSWlibbind|expected=CSWlibisc104 CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libisccfg.so.90.2.4|soname=libisccfg.so.90|pkgname=CSWlibbind|expected=CSWlibisccfg90 CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/liblwres.so.91.0.2|soname=liblwres.so.91|pkgname=CSWlibbind|expected=CSWliblwres91 Modified: csw/mgar/pkg/bind/trunk/checksums =================================================================== --- csw/mgar/pkg/bind/trunk/checksums 2015-07-28 22:38:54 UTC (rev 25184) +++ csw/mgar/pkg/bind/trunk/checksums 2015-07-29 09:36:51 UTC (rev 25185) @@ -1 +1 @@ -1685512258f7b42ec5b86f52ab495ec2 bind-9.9.7-P1.tar.gz +095ae241bfe06d50c0f2469a5fff46f0 bind-9.9.7-P2.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Wed Jul 29 11:47:31 2015 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 29 Jul 2015 09:47:31 +0000 Subject: SF.net SVN: gar:[25186] csw/mgar/pkg/librsvg/trunk/Makefile Message-ID: <3mh95n3btDz1LX@mail.opencsw.org> Revision: 25186 http://sourceforge.net/p/gar/code/25186 Author: lblume Date: 2015-07-29 09:47:30 +0000 (Wed, 29 Jul 2015) Log Message: ----------- librsvg/trunk: Remove useless line; update deps; remove obsolete gnome module Modified Paths: -------------- csw/mgar/pkg/librsvg/trunk/Makefile Modified: csw/mgar/pkg/librsvg/trunk/Makefile =================================================================== --- csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-29 09:36:51 UTC (rev 25185) +++ csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-29 09:47:30 UTC (rev 25186) @@ -20,8 +20,6 @@ GARCOMPILER = GCC4 -PKG_CONFIG_PATH=/opt/csw/lib/$(MEMORYMODEL)/pkgconfig - # We need the new glib only available on Solaris 10 PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 @@ -63,19 +61,9 @@ RUNTIME_DEP_PKGS_CSWrsvg += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWrsvg += CSWlibgdk-pixbuf2-0-0 RUNTIME_DEP_PKGS_CSWrsvg += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWrsvg += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWrsvg += CSWlibgio2-0-0 -PACKAGES += CSWlibrsvg-gnome -SPKG_DESC_CSWlibrsvg-gnome += Scalable Vector Graphics library - Gnome module -PKGFILES_CSWlibrsvg-gnome += $(call baseisadirs,$(libdir),gtk-2.0/.*) -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibrsvg2-2 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibgobject2-0-0 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibgdk-pixbuf2-0-0 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibgdk-x11-2-0-0 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibgtk-x11-2-0-0 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibgmodule2-0-0 - ### # Needed for the Solaris ld bug ifeq ($(shell /usr/bin/uname -p),sparc) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Wed Jul 29 11:57:22 2015 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 29 Jul 2015 09:57:22 +0000 Subject: SF.net SVN: gar:[25187] csw/mgar/pkg/librsvg/trunk/Makefile Message-ID: <3mh9K901zlz1Nw@mail.opencsw.org> Revision: 25187 http://sourceforge.net/p/gar/code/25187 Author: lblume Date: 2015-07-29 09:57:22 +0000 (Wed, 29 Jul 2015) Log Message: ----------- librsvg/trunk: Remove stub that is apparently now unneeded Modified Paths: -------------- csw/mgar/pkg/librsvg/trunk/Makefile Modified: csw/mgar/pkg/librsvg/trunk/Makefile =================================================================== --- csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-29 09:47:30 UTC (rev 25186) +++ csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-29 09:57:22 UTC (rev 25187) @@ -41,8 +41,6 @@ RUNTIME_DEP_PKGS_CSWlibrsvg2-2 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibrsvg2-2 += CSWlibpangocairo1-0-0 -OBSOLETED_BY_CSWlibrsvg2-2 = CSWlibrsvg - PACKAGES += CSWlibrsvg-dev SPKG_DESC_CSWlibrsvg-dev = Development files for librsvg-2.so.2 PKGFILES_CSWlibrsvg-dev += $(PKGFILES_DEVEL) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Wed Jul 29 12:04:52 2015 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 29 Jul 2015 10:04:52 +0000 Subject: SF.net SVN: gar:[25188] csw/mgar/pkg/librsvg/trunk/Makefile Message-ID: <3mh9Tp5028z1RP@mail.opencsw.org> Revision: 25188 http://sourceforge.net/p/gar/code/25188 Author: lblume Date: 2015-07-29 10:04:52 +0000 (Wed, 29 Jul 2015) Log Message: ----------- librsvg/trunk: Update deps Modified Paths: -------------- csw/mgar/pkg/librsvg/trunk/Makefile Modified: csw/mgar/pkg/librsvg/trunk/Makefile =================================================================== --- csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-29 09:57:22 UTC (rev 25187) +++ csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-29 10:04:52 UTC (rev 25188) @@ -65,25 +65,8 @@ ### # Needed for the Solaris ld bug ifeq ($(shell /usr/bin/uname -p),sparc) -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibpango1-0-0 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibpangoft2-1-0-0 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibpng16-16 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibcroco -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibcairo2 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibfreetype6 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibgio2-0-0 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibxml2-2 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibfontconfig1 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibpangocairo1-0-0 -RUNTIME_DEP_PKGS_CSWlibrsvg-gnome += CSWlibatk1-0-0 RUNTIME_DEP_PKGS_CSWrsvg += CSWlibpango1-0-0 RUNTIME_DEP_PKGS_CSWrsvg += CSWlibpng16-16 -RUNTIME_DEP_PKGS_CSWrsvg += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWrsvg += CSWlibgio2-0-0 -RUNTIME_DEP_PKGS_CSWrsvg += CSWlibxml2-2 -RUNTIME_DEP_PKGS_CSWrsvg += CSWlibcroco -RUNTIME_DEP_PKGS_CSWrsvg += CSWlibpangocairo1-0-0 RUNTIME_DEP_PKGS_CSWlibrsvg2-2 += CSWlibintl8 RUNTIME_DEP_PKGS_CSWlibrsvg2-2 += CSWlibpng16-16 endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Wed Jul 29 13:53:58 2015 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 29 Jul 2015 11:53:58 +0000 Subject: SF.net SVN: gar:[25189] csw/mgar/pkg/mysql5/branches Message-ID: <3mhCvj6Nc1z1Vn@mail.opencsw.org> Revision: 25189 http://sourceforge.net/p/gar/code/25189 Author: lblume Date: 2015-07-29 11:53:58 +0000 (Wed, 29 Jul 2015) Log Message: ----------- mysql5/branches/mysql-5.6.x: Bump version; change download site back to default Modified Paths: -------------- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums csw/mgar/pkg/mysql5/branches/mysql-5.6.x/Makefile csw/mgar/pkg/mysql5/branches/mysql-5.6.x/checksums Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2015-07-29 10:04:52 UTC (rev 25188) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2015-07-29 11:53:58 UTC (rev 25189) @@ -14,7 +14,7 @@ PROJ_NAME = mysql NAME = $(PROJ_NAME)5 BASE_VERSION = 5.5 -PATCHLEVEL = 44 +PATCHLEVEL = 45 ALTS_PRIO = 55 VERSION = $(BASE_VERSION).$(PATCHLEVEL) @@ -221,8 +221,7 @@ BUILD64 = $(BUILD64_$(GAROSREL)_$(GARCH)) ISAEXEC = 1 -MASTER_SITES = http://ftp.heanet.ie/mirrors/www.mysql.com/Downloads/MySQL-$(BASE_VERSION)/ -MASTER_SITES += http://mysql.skynet.be/Downloads/MySQL-$(BASE_VERSION)/ +MASTER_SITES = http://dev.mysql.com/get/Downloads/MySQL-$(BASE_VERSION)/ DISTFILES = mysql-$(VERSION).tar.gz DISTFILES += csw$(NAME).tpl DISTFILES += quick_start-csw Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2015-07-29 10:04:52 UTC (rev 25188) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2015-07-29 11:53:58 UTC (rev 25189) @@ -1 +1 @@ -b897ffd67fab9c981c448fdbe00e36bf mysql-5.5.44.tar.gz +86f13ff6cf3220f500629025fd471378 mysql-5.5.45.tar.gz Modified: csw/mgar/pkg/mysql5/branches/mysql-5.6.x/Makefile =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.6.x/Makefile 2015-07-29 10:04:52 UTC (rev 25188) +++ csw/mgar/pkg/mysql5/branches/mysql-5.6.x/Makefile 2015-07-29 11:53:58 UTC (rev 25189) @@ -20,7 +20,7 @@ PROJ_NAME = mysql NAME = $(PROJ_NAME)56 BASE_VERSION = 5.6 -PATCHLEVEL = 24 +PATCHLEVEL = 26 ALTS_PRIO = 56 VERSION = $(BASE_VERSION).$(PATCHLEVEL) @@ -163,8 +163,7 @@ BUILD64 = 1 ISAEXEC = 1 -MASTER_SITES = http://ftp.heanet.ie/mirrors/www.mysql.com/Downloads/MySQL-$(BASE_VERSION)/ -MASTER_SITES += http://mysql.skynet.be/Downloads/MySQL-$(BASE_VERSION)/ +MASTER_SITES = https://dev.mysql.com/get/Downloads/MySQL-$(BASE_VERSION)/ DISTFILES = mysql-$(VERSION).tar.gz DISTFILES += csw$(NAME).tpl DISTFILES += quick_start-csw Modified: csw/mgar/pkg/mysql5/branches/mysql-5.6.x/checksums =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.6.x/checksums 2015-07-29 10:04:52 UTC (rev 25188) +++ csw/mgar/pkg/mysql5/branches/mysql-5.6.x/checksums 2015-07-29 11:53:58 UTC (rev 25189) @@ -1 +1 @@ -68e1911f70eb1b02170d4f96bf0f0f88 mysql-5.6.24.tar.gz +733e1817c88c16fb193176e76f5b818f mysql-5.6.26.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From laurent at opencsw.org Thu Jul 30 18:58:45 2015 From: laurent at opencsw.org (Laurent Blume) Date: Thu, 30 Jul 2015 18:58:45 +0200 Subject: SF.net SVN: gar:[25183] csw/mgar/pkg/librsvg/trunk In-Reply-To: <55B86E52.3020501@opencsw.org> References: <3mgpPq63G4z12d@mail.opencsw.org> <55B86E52.3020501@opencsw.org> Message-ID: <55BA57C5.204@opencsw.org> Yes, should be good now. Laurent Le 2015/07/29 08:10 +0200, Riccardo Mottola a ?crit: > Hi Laurent, > > thanks for the fix. Is librsvg fine now? I accidentally thought Dago > made the commit :) > > Are you going to complete and upload the package? > > Thanks - Riccardo > > lblume at users.sourceforge.net wrote: >> Revision: 25183 >> http://sourceforge.net/p/gar/code/25183 >> Author: lblume >> Date: 2015-07-28 19:45:08 +0000 (Tue, 28 Jul 2015) >> Log Message: >> ----------- >> librsvg/trunk: Bump to 2.40.9; fix issue that prevented using the >> correct glibconfig.h >> >> Modified Paths: >> -------------- >> csw/mgar/pkg/librsvg/trunk/Makefile >> csw/mgar/pkg/librsvg/trunk/checksums >> >> Modified: csw/mgar/pkg/librsvg/trunk/Makefile >> =================================================================== >> --- csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-28 09:58:42 UTC >> (rev 25182) >> +++ csw/mgar/pkg/librsvg/trunk/Makefile 2015-07-28 19:45:08 UTC >> (rev 25183) >> @@ -1,5 +1,5 @@ >> NAME = librsvg >> -VERSION = 2.36.4 >> +VERSION = 2.40.9 >> GARTYPE = v2 >> DESCRIPTION = Scalable Vector Graphics library >> @@ -20,7 +20,7 @@ >> GARCOMPILER = GCC4 >> -PKG_CONFIG_PATH=/opt/csw/lib/pkgconfig >> +PKG_CONFIG_PATH=/opt/csw/lib/$(MEMORYMODEL)/pkgconfig >> # We need the new glib only available on Solaris 10 >> PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 >> > From dmichelsen at users.sourceforge.net Fri Jul 31 08:09:56 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 31 Jul 2015 06:09:56 +0000 Subject: SF.net SVN: gar:[25190] csw/mgar/pkg/stunnel/trunk Message-ID: <3mjJ9w2N0hzWC@mail.opencsw.org> Revision: 25190 http://sourceforge.net/p/gar/code/25190 Author: dmichelsen Date: 2015-07-31 06:09:56 +0000 (Fri, 31 Jul 2015) Log Message: ----------- stunnel/trunk: Update to 5.22 Modified Paths: -------------- csw/mgar/pkg/stunnel/trunk/Makefile csw/mgar/pkg/stunnel/trunk/checksums Modified: csw/mgar/pkg/stunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/stunnel/trunk/Makefile 2015-07-29 11:53:58 UTC (rev 25189) +++ csw/mgar/pkg/stunnel/trunk/Makefile 2015-07-31 06:09:56 UTC (rev 25190) @@ -7,7 +7,7 @@ # Test on Solaris 8 / 9 for comparison # NAME = stunnel -VERSION = 5.21 +VERSION = 5.22 # BETA = b4 GARTYPE = v2 Modified: csw/mgar/pkg/stunnel/trunk/checksums =================================================================== --- csw/mgar/pkg/stunnel/trunk/checksums 2015-07-29 11:53:58 UTC (rev 25189) +++ csw/mgar/pkg/stunnel/trunk/checksums 2015-07-31 06:09:56 UTC (rev 25190) @@ -1 +1 @@ -3d0a932ea650c0fa0da1e45547afdbb8 stunnel-5.21.tar.gz +b988f714bbc5f9f848f880a59e73baad stunnel-5.22.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jul 31 14:02:51 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 31 Jul 2015 12:02:51 +0000 Subject: SF.net SVN: gar:[25191] csw/mgar/pkg/gcc5/trunk Message-ID: <3mjS120KqMzcX@mail.opencsw.org> Revision: 25191 http://sourceforge.net/p/gar/code/25191 Author: dmichelsen Date: 2015-07-31 12:02:51 +0000 (Fri, 31 Jul 2015) Log Message: ----------- gcc5/trunk: Update to 5.2.0 Modified Paths: -------------- csw/mgar/pkg/gcc5/trunk/Makefile csw/mgar/pkg/gcc5/trunk/checksums Modified: csw/mgar/pkg/gcc5/trunk/Makefile =================================================================== --- csw/mgar/pkg/gcc5/trunk/Makefile 2015-07-31 06:09:56 UTC (rev 25190) +++ csw/mgar/pkg/gcc5/trunk/Makefile 2015-07-31 12:02:51 UTC (rev 25191) @@ -1,7 +1,7 @@ # $Id$ NAME = gcc -VERSION = 5.1.0 +VERSION = 5.2.0 GARTYPE = v2 BASE_VERSION = $(shell echo $(VERSION) | gsed -e 's/^\([0-9]\+\.[0-9]\+\)\(.*\)/\1/') PKG_VERSION_TOKEN = gcc5 Modified: csw/mgar/pkg/gcc5/trunk/checksums =================================================================== --- csw/mgar/pkg/gcc5/trunk/checksums 2015-07-31 06:09:56 UTC (rev 25190) +++ csw/mgar/pkg/gcc5/trunk/checksums 2015-07-31 12:02:51 UTC (rev 25191) @@ -1 +1 @@ -d5525b1127d07d215960e6051c5da35e gcc-5.1.0.tar.bz2 +a51bcfeb3da7dd4c623e27207ed43467 gcc-5.2.0.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.