From wahwah at users.sourceforge.net Thu Aug 1 01:25:37 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 31 Jul 2013 23:25:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[21597] csw/mgar/pkg/dmenu/trunk Message-ID: Revision: 21597 http://gar.svn.sourceforge.net/gar/?rev=21597&view=rev Author: wahwah Date: 2013-07-31 23:25:29 +0000 (Wed, 31 Jul 2013) Log Message: ----------- dmenu/trunk: Trying version 4.0 Modified Paths: -------------- csw/mgar/pkg/dmenu/trunk/Makefile csw/mgar/pkg/dmenu/trunk/checksums Added Paths: ----------- csw/mgar/pkg/dmenu/trunk/files/0001-Adapt-for-OpenCSW.patch Modified: csw/mgar/pkg/dmenu/trunk/Makefile =================================================================== --- csw/mgar/pkg/dmenu/trunk/Makefile 2013-07-31 15:33:51 UTC (rev 21596) +++ csw/mgar/pkg/dmenu/trunk/Makefile 2013-07-31 23:25:29 UTC (rev 21597) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = dmenu -VERSION = 4.5 +VERSION = 4.0 GARTYPE = v2 DESCRIPTION = Dynamic menu for X, originally designed for dwm @@ -11,7 +11,7 @@ DISTFILES = $(DISTNAME).tar.gz VENDOR_URL = http://tools.suckless.org/dmenu/ -PATCHFILES += 0001-Assorted-changes-to-make-it-compile.patch +PATCHFILES += 0001-Adapt-for-OpenCSW.patch CONFIGURE_SCRIPTS = BUILD_SCRIPTS = dmenu Modified: csw/mgar/pkg/dmenu/trunk/checksums =================================================================== --- csw/mgar/pkg/dmenu/trunk/checksums 2013-07-31 15:33:51 UTC (rev 21596) +++ csw/mgar/pkg/dmenu/trunk/checksums 2013-07-31 23:25:29 UTC (rev 21597) @@ -1 +1 @@ -9c46169ed703732ec52ed946c27d84b4 dmenu-4.5.tar.gz +66e761a653930cc8a21614ba9fedf903 dmenu-4.0.tar.gz Added: csw/mgar/pkg/dmenu/trunk/files/0001-Adapt-for-OpenCSW.patch =================================================================== --- csw/mgar/pkg/dmenu/trunk/files/0001-Adapt-for-OpenCSW.patch (rev 0) +++ csw/mgar/pkg/dmenu/trunk/files/0001-Adapt-for-OpenCSW.patch 2013-07-31 23:25:29 UTC (rev 21597) @@ -0,0 +1,48 @@ +From a97adf9e4c620440875a02282794f360641a8b19 Mon Sep 17 00:00:00 2001 +From: Maciej Blizinski +Date: Thu, 1 Aug 2013 01:23:45 +0200 +Subject: [PATCH] Adapt for OpenCSW + +--- + config.mk | 12 ++++++------ + 1 file changed, 6 insertions(+), 6 deletions(-) + +diff --git a/config.mk b/config.mk +index f6a3652..29a0091 100644 +--- a/config.mk ++++ b/config.mk +@@ -4,11 +4,11 @@ VERSION = 4.0 + # Customize below to fit your system + + # paths +-PREFIX = /usr/local ++PREFIX = /opt/csw + MANPREFIX = ${PREFIX}/share/man + +-X11INC = /usr/X11R6/include +-X11LIB = /usr/X11R6/lib ++X11INC = /usr/openwin/share/include ++X11LIB = /usr/openwin/lib + + # Xinerama, comment if you don't want it + XINERAMALIBS = -L${X11LIB} -lXinerama +@@ -19,8 +19,8 @@ INCS = -I. -I/usr/include -I${X11INC} + LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS} + + # flags +-CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} +-CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} ++CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} ++CFLAGS = -pedantic -Wall -Os ${INCS} ${CPPFLAGS} + LDFLAGS = -s ${LIBS} + + # Solaris +@@ -28,4 +28,4 @@ LDFLAGS = -s ${LIBS} + #LDFLAGS = ${LIBS} + + # compiler and linker +-CC = cc ++CC = gcc +-- +1.8.3.1 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 1 01:27:08 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 31 Jul 2013 23:27:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[21598] csw/mgar/pkg/dmenu/trunk/files/ 0001-Assorted-changes-to-make-it-compile.patch Message-ID: Revision: 21598 http://gar.svn.sourceforge.net/gar/?rev=21598&view=rev Author: wahwah Date: 2013-07-31 23:27:08 +0000 (Wed, 31 Jul 2013) Log Message: ----------- dmenu/trunk: Delete an unused file Removed Paths: ------------- csw/mgar/pkg/dmenu/trunk/files/0001-Assorted-changes-to-make-it-compile.patch Deleted: csw/mgar/pkg/dmenu/trunk/files/0001-Assorted-changes-to-make-it-compile.patch =================================================================== --- csw/mgar/pkg/dmenu/trunk/files/0001-Assorted-changes-to-make-it-compile.patch 2013-07-31 23:25:29 UTC (rev 21597) +++ csw/mgar/pkg/dmenu/trunk/files/0001-Assorted-changes-to-make-it-compile.patch 2013-07-31 23:27:08 UTC (rev 21598) @@ -1,87 +0,0 @@ -From 60a35b1739bbb86e149aca4ed523db6fcc4c00b9 Mon Sep 17 00:00:00 2001 -From: Maciej Blizinski -Date: Wed, 31 Jul 2013 00:36:24 +0200 -Subject: [PATCH] Assorted changes to make it compile - ---- - Makefile | 9 +++------ - config.mk | 13 +++++++------ - dmenu.c | 2 ++ - 3 files changed, 12 insertions(+), 12 deletions(-) - -diff --git a/Makefile b/Makefile -index c127f6a..a8ab397 100644 ---- a/Makefile -+++ b/Makefile -@@ -15,18 +15,15 @@ options: - @echo "CC = ${CC}" - - .c.o: -- @echo CC -c $< -- @${CC} -c $< ${CFLAGS} -+ ${CC} -c $< ${CFLAGS} - - ${OBJ}: config.mk draw.h - - dmenu: dmenu.o draw.o -- @echo CC -o $@ -- @${CC} -o $@ dmenu.o draw.o ${LDFLAGS} -+ ${CC} -o $@ dmenu.o draw.o ${LDFLAGS} - - stest: stest.o -- @echo CC -o $@ -- @${CC} -o $@ stest.o ${LDFLAGS} -+ ${CC} -o $@ stest.o ${LDFLAGS} - - clean: - @echo cleaning -diff --git a/config.mk b/config.mk -index 92a5e63..3161d1c 100644 ---- a/config.mk -+++ b/config.mk -@@ -2,11 +2,11 @@ - VERSION = 4.5 - - # paths --PREFIX = /usr/local -+PREFIX = /opt/csw - MANPREFIX = ${PREFIX}/share/man - --X11INC = /usr/X11R6/include --X11LIB = /usr/X11R6/lib -+X11INC = /usr/openwin/share/include -+X11LIB = /usr/openwin/lib - - # Xinerama, comment if you don't want it - XINERAMALIBS = -lXinerama -@@ -17,10 +17,11 @@ INCS = -I${X11INC} - LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} - - # flags --CPPFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -+# CPPFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -+CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} - #CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} --CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} -+CFLAGS = -pedantic -Wall -Os ${INCS} ${CPPFLAGS} - LDFLAGS = -s ${LIBS} - - # compiler and linker --CC = cc -+CC = gcc -diff --git a/dmenu.c b/dmenu.c -index 4ea95f8..cac3c58 100644 ---- a/dmenu.c -+++ b/dmenu.c -@@ -12,6 +12,8 @@ - #include - #endif - #include "draw.h" -+#include -+#include - - #define INTERSECT(x,y,w,h,r) (MAX(0, MIN((x)+(w),(r).x_org+(r).width) - MAX((x),(r).x_org)) \ - * MAX(0, MIN((y)+(h),(r).y_org+(r).height) - MAX((y),(r).y_org))) --- -1.8.3.1 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 1 02:10:11 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 01 Aug 2013 00:10:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[21599] csw/mgar/pkg/lang-python/webpy/trunk/Makefile Message-ID: Revision: 21599 http://gar.svn.sourceforge.net/gar/?rev=21599&view=rev Author: wahwah Date: 2013-08-01 00:09:00 +0000 (Thu, 01 Aug 2013) Log Message: ----------- lang-python/webpy/trunk: removing unnecessary lines Modified Paths: -------------- csw/mgar/pkg/lang-python/webpy/trunk/Makefile Modified: csw/mgar/pkg/lang-python/webpy/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/webpy/trunk/Makefile 2013-07-31 23:27:08 UTC (rev 21598) +++ csw/mgar/pkg/lang-python/webpy/trunk/Makefile 2013-08-01 00:09:00 UTC (rev 21599) @@ -7,18 +7,15 @@ CATEGORIES = python GARTYPE = v2 DESCRIPTION = Simple web framework for Python -define BLURB -endef -SPKG_SOURCEURL = http://webpy.org/ +VENDOR_URL = http://webpy.org/ MASTER_SITES = http://webpy.org/static/ DISTNAME = web.py-$(VERSION) DISTFILES = $(DISTNAME).tar.gz -UFILES_REGEX = web.py-(\d+(?:\.\d+)*).tar.gz PACKAGES = CSWpy-webpy -CATALOGNAME_CSWpy-webpy = py_webpy RUNTIME_DEP_PKGS = CSWpy-flup CHECKPKG_OVERRIDES_CSWpy-webpy += surplus-dependency|CSWpy-flup ARCHALL = 1 LICENSE = PKG-INFO TEST_SCRIPTS = + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Aug 1 03:33:00 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 01 Aug 2013 01:33:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[21600] csw/mgar/pkg/graphviz/trunk Message-ID: Revision: 21600 http://gar.svn.sourceforge.net/gar/?rev=21600&view=rev Author: lblume Date: 2013-08-01 01:32:54 +0000 (Thu, 01 Aug 2013) Log Message: ----------- graphviz/trunk: Bump to 2.30.1; build 64 bit w/ isaexec; dependencies overhaul; use python 2.7 Modified Paths: -------------- csw/mgar/pkg/graphviz/trunk/Makefile csw/mgar/pkg/graphviz/trunk/checksums Added Paths: ----------- csw/mgar/pkg/graphviz/trunk/files/0001_configure_tcl_bin_path_not_good_for_64bit.patch csw/mgar/pkg/graphviz/trunk/files/0002_configure_guile_version_detection_needs_gsed.patch Modified: csw/mgar/pkg/graphviz/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-01 00:09:00 UTC (rev 21599) +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-01 01:32:54 UTC (rev 21600) @@ -4,7 +4,7 @@ # investigated. NAME = graphviz -VERSION = 2.28.0 +VERSION = 2.30.1 GARTYPE = v2 DESCRIPTION = Graph visualization tools @@ -20,21 +20,30 @@ GARCOMPILER = GCC4 -PATCHFILES += configure.patch -PATCHFILES += Makefile.am.patch -PATCHFILES += trapezoid.c.patch -PATCHFILES += post_process.c.patch -PATCHFILES += gvpr_Makefile.am.patch -PATCHFILES += gv_Makefile.am.patch +PATCHFILES += 0001_configure_tcl_bin_path_not_good_for_64bit.patch +PATCHFILES += 0002_configure_guile_version_detection_needs_gsed.patch +#PATCHFILES += configure.patch +#PATCHFILES += Makefile.am.patch +#PATCHFILES += trapezoid.c.patch +#PATCHFILES += post_process.c.patch +#PATCHFILES += gvpr_Makefile.am.patch +#PATCHFILES += gv_Makefile.am.patch INCOMPATIBLE_PKGS = CSWgraphvis # defer for some time to allow CSWgraphviz2 upgrades # INCOMPATIBLE_PKGS = CSWgraphviz2 -# Waiting for liblasi, gts, gd, ghostscript and tcl/tk -#BUILD64 = 1 +BUILD64 = 1 +ISAEXEC = 1 -BUILD_DEP_PKGS = +BUILD_DEP_PKGS += CSWliblasi-dev +BUILD_DEP_PKGS += CSWlibgd-dev +BUILD_DEP_PKGS += CSWgts-dev +BUILD_DEP_PKGS += CSWghostscript-dev +BUILD_DEP_PKGS += CSWtcl-dev +BUILD_DEP_PKGS += CSWtk-dev +BUILD_DEP_PKGS += CSWswig +BUILD_DEP_PKGS += CSWlibgc-dev # This is a compatibility package which should go away after some time. # It only contains a link to CSWgraphviz. @@ -45,62 +54,55 @@ PACKAGES += CSWgraphviz SPKG_DESC_CSWgraphviz = Graph Visualization Tools -RUNTIME_DEP_PKGS_CSWgraphviz = CSWexpat RUNTIME_DEP_PKGS_CSWgraphviz += CSWpango -RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibcairo -RUNTIME_DEP_PKGS_CSWgraphviz += CSWgts -RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibxrender -RUNTIME_DEP_PKGS_CSWgraphviz += CSWgs -RUNTIME_DEP_PKGS_CSWgraphviz += CSWfconfig -RUNTIME_DEP_PKGS_CSWgraphviz += CSWftype2 -RUNTIME_DEP_PKGS_CSWgraphviz += CSWglib2 -RUNTIME_DEP_PKGS_CSWgraphviz += CSWgtk2 -RUNTIME_DEP_PKGS_CSWgraphviz += CSWiconv -RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibatk -RUNTIME_DEP_PKGS_CSWgraphviz += CSWliblasi -RUNTIME_DEP_PKGS_CSWgraphviz += CSWzlib -RUNTIME_DEP_PKGS_CSWgraphviz += CSWxpm -RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibrsvg -RUNTIME_DEP_PKGS_CSWgraphviz += CSWgcc4corert -RUNTIME_DEP_PKGS_CSWgraphviz += CSWgcc4g++rt -RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibintl8 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibcdt5 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibcgraph6 -RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgraph5 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgvpr2 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibxdot4 -PKGFILES_CSWgraphviz = $(bindir)/(?!(diffimg|dot_static)).* -PKGFILES_CSWgraphviz += $(libdir)/graphviz/libgvplugin_core\.so\..* -PKGFILES_CSWgraphviz += $(libdir)/graphviz/libgvplugin_gdk_pixbuf\.so\..* -PKGFILES_CSWgraphviz += $(libdir)/graphviz/libgvplugin_gs\.so\..* -PKGFILES_CSWgraphviz += $(libdir)/graphviz/libgvplugin_gtk\.so\..* -PKGFILES_CSWgraphviz += $(libdir)/graphviz/libgvplugin_lasi\.so\..* -PKGFILES_CSWgraphviz += $(libdir)/graphviz/libgvplugin_pango\.so\..* -PKGFILES_CSWgraphviz += $(libdir)/graphviz/libgvplugin_rsvg\.so\..* -PKGFILES_CSWgraphviz += $(libdir)/graphviz/libgvplugin_xlib\.so\..* -PKGFILES_CSWgraphviz += $(libdir)/graphviz/libgvplugin_.*layout\.so\..* +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibrsvg2-2 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgdk-x11-2-0-0 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgdk-pixbuf2-0-0 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgts0-7-5 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibcairo2 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgtk-x11-2-0-0 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgs9 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibatk1-0-0 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibexpat1 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgvpr2 +PKGFILES_CSWgraphviz += $(call baseisadirs,$(bindir),(?:(?!diffimg|dot_static).)*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_core\.so\..*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_gdk_pixbuf\.so\..*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_gs\.so\..*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_gtk\.so\..*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_lasi\.so\..*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_neato_layout\.so\..*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_pango\.so\..*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_rsvg\.so\..*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_xlib\.so\..*) +PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_.*layout\.so\..*) PKGFILES_CSWgraphviz += $(sharedstatedir)/graphviz/lefty/.* PKGFILES_CSWgraphviz += $(mandir)/man1/.*\.1 PKGFILES_CSWgraphviz += $(mandir)/man7/.*\.7 -PACKAGES += CSWgraphvizdevel -SPKG_DESC_CSWgraphvizdevel = Graphviz Headers etc. for development +PACKAGES += CSWgraphviz-dev +SPKG_DESC_CSWgraphviz-dev = Graphviz Headers etc. for development -RUNTIME_DEP_PKGS_CSWgraphvizdevel = CSWgraphviz -RUNTIME_DEP_PKGS_CSWgraphvizdevel += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWgraphvizdevel += CSWlibxdot4 -RUNTIME_DEP_PKGS_CSWgraphvizdevel += CSWlibgraph5 -RUNTIME_DEP_PKGS_CSWgraphvizdevel += CSWlibcdt5 -RUNTIME_DEP_PKGS_CSWgraphvizdevel += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizdevel += CSWlibcgraph6 -RUNTIME_DEP_PKGS_CSWgraphvizdevel += CSWlibgvpr2 -PKGFILES_CSWgraphvizdevel = $(libdir)/pkgconfig/.*\.pc -PKGFILES_CSWgraphvizdevel += $(libdir)/lib.*\.so -PKGFILES_CSWgraphvizdevel += $(includedir)/.*\.h -PKGFILES_CSWgraphvizdevel += $(mandir)/man3/.*\.3 +RUNTIME_DEP_PKGS_CSWgraphviz-dev += CSWgraphviz +RUNTIME_DEP_PKGS_CSWgraphviz-dev += CSWlibpathplan4 +RUNTIME_DEP_PKGS_CSWgraphviz-dev += CSWlibxdot4 +RUNTIME_DEP_PKGS_CSWgraphviz-dev += CSWlibcdt5 +RUNTIME_DEP_PKGS_CSWgraphviz-dev += CSWlibgvc6 +RUNTIME_DEP_PKGS_CSWgraphviz-dev += CSWlibcgraph6 +RUNTIME_DEP_PKGS_CSWgraphviz-dev += CSWlibgvpr2 +PKGFILES_CSWgraphviz-dev += $(call baseisadirs,$(libdir),pkgconfig/.*\.pc) +PKGFILES_CSWgraphviz-dev += $(call baseisadirs,$(libdir),lib.*\.so) +PKGFILES_CSWgraphviz-dev += $(includedir)/.*\.h +PKGFILES_CSWgraphviz-dev += $(mandir)/man3/.*\.3 +OBSOLETED_BY_CSWgraphviz-dev = CSWgraphvizdevel PACKAGES += CSWgraphvizdoc SPKG_DESC_CSWgraphvizdoc = Graphviz documentation @@ -116,38 +118,26 @@ PACKAGES += CSWgraphvizgd SPKG_DESC_CSWgraphvizgd = Graphviz renderers using gd -# FIXME - graphviz seems to be using internal copy of libgd -RUNTIME_DEP_PKGS_CSWgraphvizgd = CSWlibgd2 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWjpeg -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWglib2 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWxpm -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWftype2 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWiconv -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWgts +RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgd3 RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWpango -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWpng -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWfconfig -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibcairo -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWzlib -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWgcc4corert RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWgraphviz -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibcdt5 +RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibz1 +RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgts0-7-5 +RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibcairo2 +RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibexpat1 +RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibxdot4 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgraph5 +RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibcgraph6 RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgvc6 -PKGFILES_CSWgraphvizgd = $(libdir)/graphviz/libgvplugin_gd\.so\..* -PKGFILES_CSWgraphvizgd += $(bindir)/diffimg -PKGFILES_CSWgraphvizgd += $(bindir)/dot_static +PKGFILES_CSWgraphvizgd += $(call baseisadirs,$(libdir),graphviz/libgvplugin_gd\.so.*) +PKGFILES_CSWgraphvizgd += $(call baseisadirs,$(bindir),diffimg) +PKGFILES_CSWgraphvizgd += $(call baseisadirs,$(bindir),dot_static) #PACKAGES += CSWgraphvizdevil SPKG_DESC_CSWgraphvizdevil = Graphviz renderers using DevIL -RUNTIME_DEP_PKGS_CSWgraphvizdevil = CSWdevil -RUNTIME_DEP_PKGS_CSWgraphvizdevil += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizdevil += CSWzlib +RUNTIME_DEP_PKGS_CSWgraphvizdevil += CSWdevil RUNTIME_DEP_PKGS_CSWgraphvizdevil += CSWgcc4corert RUNTIME_DEP_PKGS_CSWgraphvizdevil += CSWgcc4g++rt RUNTIME_DEP_PKGS_CSWgraphvizdevil += CSWlibltdl7 @@ -155,42 +145,31 @@ PKGFILES_CSWgraphvizdevil = $(libdir)/graphviz/libgvplugin_devil\.so\..* PACKAGES += CSWgraphvizsharp -SPKG_DESC_CSWgraphvizsharp = Graphviz language binding for C# -RUNTIME_DEP_PKGS_CSWgraphvizsharp = CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWzlib -RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWgcc4corert -RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWgcc4g++rt -RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWlibxdot4 -RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWlibcdt5 +SPKG_DESC_CSWgraphvizsharp = Graphviz language binding for C\# RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWlibgraph5 +RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWgraphvizsharp += CSWlibcgraph6 PKGFILES_CSWgraphvizsharp = $(libdir)/graphviz/sharp/.* PKGFILES_CSWgraphvizsharp += $(mandir)/man3/.*\.3sharp PKGFILES_CSWgraphvizsharp += $(sharedstatedir)/graphviz/demo/.*\.cs +# Nothing 64 bit there? +CHECKPKG_OVERRIDES_CSWgraphvizsharp += 64-bit-binaries-missing PACKAGES += CSWgraphvizguile SPKG_DESC_CSWgraphvizguile = Graphviz language binding for guile -RUNTIME_DEP_PKGS_CSWgraphvizguile = CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWzlib -RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWgcc4corert -RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWgcc4g++rt -RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibxdot4 -RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibcdt5 RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibgraph5 +RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibguile2-0-22 +RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibcgraph6 PKGFILES_CSWgraphvizguile = $(libdir)/graphviz/guile/.* PKGFILES_CSWgraphvizguile += $(mandir)/man3/.*\.3guile PKGFILES_CSWgraphvizguile += $(sharedstatedir)/graphviz/demo/.*\.guile +# No 64 bit guile +CHECKPKG_OVERRIDES_CSWgraphvizguile += 64-bit-binaries-missing #PACKAGES += CSWgraphvizjava SPKG_DESC_CSWgraphvizjava = Graphviz language binding for java -RUNTIME_DEP_PKGS_CSWgraphvizjava = CSWjava -RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWzlib +RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWjava RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWgcc4corert RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWgcc4g++rt RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWlibltdl7 @@ -198,16 +177,13 @@ RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWlibxdot4 RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWlibcdt5 RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizjava += CSWlibgraph5 PKGFILES_CSWgraphvizjava = $(libdir)/graphviz/java/.* PKGFILES_CSWgraphvizjava += $(mandir)/man3/.*\.3java PKGFILES_CSWgraphvizjava += $(sharedstatedir)/graphviz/demo/.*\.java #PACKAGES += CSWgraphvizlua SPKG_DESC_CSWgraphvizlua = Graphviz language binding for lua -RUNTIME_DEP_PKGS_CSWgraphvizlua = CSWlua -RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWzlib +RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWlua RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWgcc4corert RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWgcc4g++rt RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWlibltdl7 @@ -215,16 +191,13 @@ RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWlibxdot4 RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWlibcdt5 RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizlua += CSWlibgraph5 PKGFILES_CSWgraphvizlua = $(libdir)/graphviz/lua/.* PKGFILES_CSWgraphvizlua += $(mandir)/man3/.*\.3lua PKGFILES_CSWgraphvizlua += $(sharedstatedir)/graphviz/demo/.*\.lua #PACKAGES += CSWgraphvizocaml SPKG_DESC_CSWgraphvizocaml = Graphviz language binding for ocaml -RUNTIME_DEP_PKGS_CSWgraphvizocaml = CSWocaml -RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWzlib +RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWocaml RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWgcc4corert RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWgcc4g++rt RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWlibltdl7 @@ -232,33 +205,26 @@ RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWlibxdot4 RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWlibcdt5 RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizocaml += CSWlibgraph5 PKGFILES_CSWgraphvizocaml = $(libdir)/graphviz/ocaml/.* PKGFILES_CSWgraphvizocaml += $(mandir)/man3/.*\.3ocaml PKGFILES_CSWgraphvizocaml += $(sharedstatedir)/graphviz/demo/.*\.ml PACKAGES += CSWgraphvizperl SPKG_DESC_CSWgraphvizperl = Graphviz language binding for perl -RUNTIME_DEP_PKGS_CSWgraphvizperl = CSWperl -RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWzlib -RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWgcc4corert -RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWgcc4g++rt -RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWlibxdot4 -RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWlibcdt5 +RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWperl RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWlibgraph5 +RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWgraphvizperl += CSWlibcgraph6 PKGFILES_CSWgraphvizperl = $(libdir)/graphviz/perl/.* PKGFILES_CSWgraphvizperl += $(mandir)/man3/.*\.3perl PKGFILES_CSWgraphvizperl += $(sharedstatedir)/graphviz/demo/.*\.pl +# No 64 bit perl +CHECKPKG_OVERRIDES_CSWgraphvizperl += 64-bit-binaries-missing #PACKAGES += CSWgraphvizphp SPKG_DESC_CSWgraphvizphp = Graphviz language binding for php -RUNTIME_DEP_PKGS_CSWgraphvizphp = CSWphp5 -RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWzlib +RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWphp5 RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWgcc4corert RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWgcc4g++rt RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWlibltdl7 @@ -266,34 +232,32 @@ RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWlibxdot4 RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWlibcdt5 RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizphp += CSWlibgraph5 PKGFILES_CSWgraphvizphp = $(libdir)/graphviz/php/.* PKGFILES_CSWgraphvizphp += $(mandir)/man3/.*\.3php PKGFILES_CSWgraphvizphp += $(sharedstatedir)/graphviz/demo/.*\.php PACKAGES += CSWgraphvizpython SPKG_DESC_CSWgraphvizpython = Graphviz language binding for python -RUNTIME_DEP_PKGS_CSWgraphvizpython = CSWpython -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWzlib -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWgcc4corert -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWgcc4g++rt -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibpython2-6-1-0 -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibxdot4 -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibcdt5 +RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWpython27 RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibgraph5 -PKGFILES_CSWgraphvizpython = $(libdir)/graphviz/python/.* +RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibcgraph6 +RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibgcc-s1 +PKGFILES_CSWgraphvizpython += $(call baseisadirs,$(libdir),graphviz/python.*) +PKGFILES_CSWgraphvizpython += $(call baseisadirs,$(libdir),python.*) PKGFILES_CSWgraphvizpython += $(mandir)/man3/.*\.3python PKGFILES_CSWgraphvizpython += $(sharedstatedir)/graphviz/demo/.*\.py +# Keep the right Python as a dependency +CHECKPKG_OVERRIDES_CSWgraphvizpython += surplus-dependency|CSWpython27 +# No 64 bit python +CHECKPKG_OVERRIDES_CSWgraphvizpython += 64-bit-binaries-missing +# Those ones should be considered +CHECKPKG_OVERRIDES_CSWgraphvizpython += pkgname-does-not-start-with-CSWpy- +CHECKPKG_OVERRIDES_CSWgraphvizpython += catalogname-does-not-start-with-py_ #PACKAGES += CSWgraphvizr SPKG_DESC_CSWgraphvizr = Graphviz language binding for R -RUNTIME_DEP_PKGS_CSWgraphvizr = CSWr -RUNTIME_DEP_PKGS_CSWgraphvizr += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizr += CSWzlib +RUNTIME_DEP_PKGS_CSWgraphvizr += CSWr RUNTIME_DEP_PKGS_CSWgraphvizr += CSWgcc4corert RUNTIME_DEP_PKGS_CSWgraphvizr += CSWgcc4g++rt RUNTIME_DEP_PKGS_CSWgraphvizr += CSWlibltdl7 @@ -301,55 +265,41 @@ RUNTIME_DEP_PKGS_CSWgraphvizr += CSWlibxdot4 RUNTIME_DEP_PKGS_CSWgraphvizr += CSWlibcdt5 RUNTIME_DEP_PKGS_CSWgraphvizr += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizr += CSWlibgraph5 PKGFILES_CSWgraphvizr = $(libdir)/graphviz/R/.* PKGFILES_CSWgraphvizr += $(mandir)/man3/.*\.3r PKGFILES_CSWgraphvizr += $(sharedstatedir)/graphviz/demo/.*\.r PACKAGES += CSWgraphvizruby SPKG_DESC_CSWgraphvizruby = Graphviz language binding for ruby -RUNTIME_DEP_PKGS_CSWgraphvizruby = CSWruby +RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWruby RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibruby18-1 -RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWzlib -RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWgcc4corert -RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWgcc4g++rt -RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibxdot4 -RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibcdt5 RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibgraph5 +RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWgraphvizruby += CSWlibcgraph6 PKGFILES_CSWgraphvizruby = $(libdir)/graphviz/ruby/.* PKGFILES_CSWgraphvizruby += $(mandir)/man3/.*\.3ruby PKGFILES_CSWgraphvizruby += $(sharedstatedir)/graphviz/demo/.*\.rb +# No 64 bit ruby +CHECKPKG_OVERRIDES_CSWgraphvizruby += 64-bit-binaries-missing PACKAGES += CSWgraphviztcl SPKG_DESC_CSWgraphviztcl = Graphviz language binding for tcl -RUNTIME_DEP_PKGS_CSWgraphviztcl = CSWtk -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibcairo -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWfconfig -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWpango -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWftype2 -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWgts -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWglib2 -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWexpat -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWzlib -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWpng -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWjpeg -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibgd2 -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWiconv -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWxpm -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWgcc4corert -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWgcc4g++rt RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibcdt5 +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWpango +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibgd3 RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibxdot4 -RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibgraph5 RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibgvc6 -PKGFILES_CSWgraphviztcl = $(libdir)/graphviz/tcl/.* +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibz1 +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibgts0-7-5 +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibexpat1 +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibcgraph6 +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWgraphviztcl += CSWlibcairo2 +PKGFILES_CSWgraphviztcl += $(call baseisadirs,$(libdir),graphviz/tcl/.*) PKGFILES_CSWgraphviztcl += $(mandir)/man3/.*\.3tcl PKGFILES_CSWgraphviztcl += $(mandir)/man3/.*\.3tk PKGFILES_CSWgraphviztcl += $(sharedstatedir)/graphviz/demo/.*\.tcl @@ -362,27 +312,16 @@ PKGFILES_CSWlibcdt5 += $(call baseisadirs,$(libdir),libcdt\.so\.5\.0\.0) PKGFILES_CSWlibcdt5 += $(call baseisadirs,$(libdir),libcdt\.so\.5(\.\d+)*) SPKG_DESC_CSWlibcdt5 += Graph Visualization Tools, libcdt.so.5 -RUNTIME_DEP_PKGS_CSWlibcdt5 += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWlibcdt5 += CSWgcc4corert +RUNTIME_DEP_PKGS_CSWlibcdt5 += CSWlibgcc-s1 PACKAGES += CSWlibcgraph6 CATALOGNAME_CSWlibcgraph6 = libcgraph6 PKGFILES_CSWlibcgraph6 += $(call baseisadirs,$(libdir),libcgraph\.so\.6\.0\.0) PKGFILES_CSWlibcgraph6 += $(call baseisadirs,$(libdir),libcgraph\.so\.6(\.\d+)*) SPKG_DESC_CSWlibcgraph6 += Graph Visualization Tools, libcgraph.so.6 -RUNTIME_DEP_PKGS_CSWlibcgraph6 += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWlibcgraph6 += CSWgcc4corert RUNTIME_DEP_PKGS_CSWlibcgraph6 += CSWlibcdt5 +RUNTIME_DEP_PKGS_CSWlibcgraph6 += CSWlibgcc-s1 -PACKAGES += CSWlibgraph5 -CATALOGNAME_CSWlibgraph5 = libgraph5 -PKGFILES_CSWlibgraph5 += $(call baseisadirs,$(libdir),libgraph\.so\.5\.0\.0) -PKGFILES_CSWlibgraph5 += $(call baseisadirs,$(libdir),libgraph\.so\.5(\.\d+)*) -SPKG_DESC_CSWlibgraph5 += Graph Visualization Tools, libgraph.so.5 -RUNTIME_DEP_PKGS_CSWlibgraph5 += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWlibgraph5 += CSWgcc4corert -RUNTIME_DEP_PKGS_CSWlibgraph5 += CSWlibcdt5 - PACKAGES += CSWlibgvc6 CATALOGNAME_CSWlibgvc6 = libgvc6 PKGFILES_CSWlibgvc6 += $(call baseisadirs,$(libdir),libgvc\.so\.6\.0\.0) @@ -390,39 +329,34 @@ SPKG_DESC_CSWlibgvc6 += Graph Visualization Tools, libgvc.so.6 RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWlibltdl7 RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWlibpathplan4 -RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWlibxdot4 RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWlibcdt5 -RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWzlib -RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWexpat -RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWgcc4corert -RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWlibgraph5 +RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWlibexpat1 +RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWlibcgraph6 +RUNTIME_DEP_PKGS_CSWlibgvc6 += CSWlibz1 PACKAGES += CSWlibgvpr2 CATALOGNAME_CSWlibgvpr2 = libgvpr2 PKGFILES_CSWlibgvpr2 += $(call baseisadirs,$(libdir),libgvpr\.so\.2\.0\.0) PKGFILES_CSWlibgvpr2 += $(call baseisadirs,$(libdir),libgvpr\.so\.2(\.\d+)*) SPKG_DESC_CSWlibgvpr2 += Graph Visualization Tools, libgvpr.so.2 -RUNTIME_DEP_PKGS_CSWlibgvpr2 += CSWlibltdl7 RUNTIME_DEP_PKGS_CSWlibgvpr2 += CSWlibcdt5 -RUNTIME_DEP_PKGS_CSWlibgvpr2 += CSWgcc4corert RUNTIME_DEP_PKGS_CSWlibgvpr2 += CSWlibcgraph6 +RUNTIME_DEP_PKGS_CSWlibgvpr2 += CSWlibgcc-s1 - PACKAGES += CSWlibpathplan4 CATALOGNAME_CSWlibpathplan4 = libpathplan4 PKGFILES_CSWlibpathplan4 += $(call baseisadirs,$(libdir),libpathplan\.so\.4\.0\.0) PKGFILES_CSWlibpathplan4 += $(call baseisadirs,$(libdir),libpathplan\.so\.4(\.\d+)*) SPKG_DESC_CSWlibpathplan4 += Graph Visualization Tools, libpathplan.so.4 -RUNTIME_DEP_PKGS_CSWlibpathplan4 += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWlibpathplan4 += CSWgcc4corert +RUNTIME_DEP_PKGS_CSWlibpathplan4 += CSWlibgcc-s1 PACKAGES += CSWlibxdot4 CATALOGNAME_CSWlibxdot4 = libxdot4 PKGFILES_CSWlibxdot4 += $(call baseisadirs,$(libdir),libxdot\.so\.4\.0\.0) PKGFILES_CSWlibxdot4 += $(call baseisadirs,$(libdir),libxdot\.so\.4(\.\d+)*) SPKG_DESC_CSWlibxdot4 += Graph Visualization Tools, libxdot.so.4 -RUNTIME_DEP_PKGS_CSWlibxdot4 += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWlibxdot4 += CSWgcc4corert +RUNTIME_DEP_PKGS_CSWlibxdot4 += CSWlibgcc-s1 DISTFILES = $(NAME)-$(VERSION).tar.gz DISTFILES += CSWgraphviz.postinstall @@ -433,11 +367,14 @@ CONFIGURE_ARGS += --with-sfdp CONFIGURE_ARGS += --without-smyrna CONFIGURE_ARGS += --with-gtk +CONFIGURE_ARGS += --with-qt=no CONFIGURE_ARGS += --with-gdk-pixbuf CONFIGURE_ARGS += --with-ghostscript CONFIGURE_ARGS += --with-lasi CONFIGURE_ARGS += --without-ipsepcola CONFIGURE_ARGS += --with-rsvg +CONFIGURE_ARGS += --enable-python=no +CONFIGURE_ARGS += --enable-python27=yes CONFIGURE_ARGS += --disable-devil CONFIGURE_ARGS += --disable-java CONFIGURE_ARGS += --disable-lua @@ -448,27 +385,37 @@ CONFIGURE_ARGS += --disable-silent-rules CONFIGURE_ARGS += "PANGOCAIRO_CFLAGS=`pkg-config --cflags pangocairo`" +# Yes, configure is making silly assumption of what the CPU type can be on +# Solaris, and that's one of the things needed to properly detect tclConfig.sh +CONFIGURE_ARGS-isa-amd64 += --build=x86_64-solaris2.10 +CONFIGURE_ARGS-isa-sparcv9 += --build=sparc64-sun-solaris2.10 +# Also, no 64 bit perl +CONFIGURE_ARGS-isa-amd64 += --enable-perl=no +CONFIGURE_ARGS-isa-sparcv9 += --enable-perl=no +# No 64 bit guile +CONFIGURE_ARGS-isa-amd64 += --enable-guile=no +CONFIGURE_ARGS-isa-sparcv9 += --enable-guile=no +# No 64 bit Ruby +CONFIGURE_ARGS-isa-amd64 += --enable-ruby=no +CONFIGURE_ARGS-isa-sparcv9 += --enable-ruby=no +CONFIGURE_ARGS += $(CONFIGURE_ARGS-isa-$(ISA)) + EXTRA_LD_FLAGS = -lm + +# Ugly, but without it, there are tons of errors with Guile +EXTRA_CXXFLAGS = -fpermissive + STRIP_LIBTOOL=1 TEST_SCRIPTS = -# It's a known problem with the tcl library. -CHECKPKG_OVERRIDES_CSWgraphviztcl += file-with-bad-content - -# /usr/local references from the docs are allright -CHECKPKG_OVERRIDES_CSWgraphvizdoc += file-with-bad-content - -#FIXME - sometime - demo code -CHECKPKG_OVERRIDES_CSWgraphvizgraphs += file-with-bad-content|/usr/share|root/opt/csw/share/graphviz/graphs/directed/pmpipe.gv -CHECKPKG_OVERRIDES_CSWgraphvizperl += file-with-bad-content|/usr/local|root/opt/csw/share/graphviz/demo/modgraph.pl - #FIXME - maybe - poss false alarm? - can't find any "/usr/local" in sources CHECKPKG_OVERRIDES_CSWlibgvpr2 += file-with-bad-content|/usr/local|root/opt/csw/lib/libgvpr.so.2.0.0 -CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/gvpr_static +CHECKPKG_OVERRIDES_CSWlibgvpr2 += file-with-bad-content|/usr/local|root/opt/csw/lib/amd64/libgvpr.so.2.0.0 +CHECKPKG_OVERRIDES_CSWlibgvpr2 += file-with-bad-content|/usr/local|root/opt/csw/lib/sparcv9/libgvpr.so.2.0.0 +CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/pentium_pro/gvpr_static +CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/amd64/gvpr_static +CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/sparcv9/gvpr_static +CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/sparcv8plus/gvpr_static include gar/category.mk - -post-merge: - gln -s . $(PKGROOT)$(prefix)/graphviz2 - @$(MAKECOOKIE) Modified: csw/mgar/pkg/graphviz/trunk/checksums =================================================================== --- csw/mgar/pkg/graphviz/trunk/checksums 2013-08-01 00:09:00 UTC (rev 21599) +++ csw/mgar/pkg/graphviz/trunk/checksums 2013-08-01 01:32:54 UTC (rev 21600) @@ -1,12 +1 @@ -b66d09e11339fc981ab7c62518b3f92e CSWgraphviz.postinstall -b66d09e11339fc981ab7c62518b3f92e CSWgraphvizdevil.postinstall -b66d09e11339fc981ab7c62518b3f92e CSWgraphvizdevil.postuninstall -b66d09e11339fc981ab7c62518b3f92e CSWgraphvizgd.postinstall -b66d09e11339fc981ab7c62518b3f92e CSWgraphvizgd.postuninstall -d039829d638e26ea600f4db3e213959f configure.patch -f2c5f062fb643dbb0db352a25bf09e6c Makefile.am.patch -5ced04f48ec6c223d6a6e51c2f6219d0 trapezoid.c.patch -31f8a6e9e31075ad537fc2b9d2e6ab09 post_process.c.patch -a9e6a8d6711f217155272c1e17e7d106 gvpr_Makefile.am.patch -53b4189304d377812b47c885a4f97342 gv_Makefile.am.patch -8d26c1171f30ca3b1dc1b429f7937e58 graphviz-2.28.0.tar.gz +8130785a8f1fb8a57f6b839b617e85fa graphviz-2.30.1.tar.gz Added: csw/mgar/pkg/graphviz/trunk/files/0001_configure_tcl_bin_path_not_good_for_64bit.patch =================================================================== --- csw/mgar/pkg/graphviz/trunk/files/0001_configure_tcl_bin_path_not_good_for_64bit.patch (rev 0) +++ csw/mgar/pkg/graphviz/trunk/files/0001_configure_tcl_bin_path_not_good_for_64bit.patch 2013-08-01 01:32:54 UTC (rev 21600) @@ -0,0 +1,20 @@ +--- a/configure jeu. f?vr 14 14:30:22 2013 ++++ b/configure mar. juil 30 22:09:59 2013 +@@ -23637,7 +23637,7 @@ + # can't assume ksh on all architectures + # TCLSH_EXEC_PREFIX=${TCLSH%%/bin/tclsh.*} + # so use sed instead +- TCLSH_EXEC_PREFIX=`echo $TCLSH|sed -e 's%/bin/tclsh.*$%%'` ++ TCLSH_EXEC_PREFIX=`echo $TCLSH|sed -e 's%/bin/.*tclsh.*$%%'` + + if test -f ${TCLSH_EXEC_PREFIX}/include/tcl${TCL_VERSION_FOUND}/tcl.h; then + TCL_INCLUDES="-I${TCLSH_EXEC_PREFIX}/include/tcl${TCL_VERSION_FOUND} -I${TCLSH_EXEC_PREFIX}/include/tcl${TCL_VERSION_FOUND}/generic" +@@ -23853,7 +23853,7 @@ + # can't assume ksh on all architectures + # WISH_EXEC_PREFIX=${WISH%%/bin/tclsh.*} + # so use sed instead +- WISH_EXEC_PREFIX=`echo $WISH|sed -e 's%/bin/wish.*$%%'` ++ WISH_EXEC_PREFIX=`echo $WISH|sed -e 's%/bin/.*wish.*$%%'` + + if test -f ${WISH_EXEC_PREFIX}/include/tk${TK_VERSION_FOUND}/tk.h; then + TK_INCLUDES="-I${WISH_EXEC_PREFIX}/include/tk${TK_VERSION_FOUND} -I${WISH_EXEC_PREFIX}/include/tk${TK_VERSION_FOUND}/generic -I${WISH_EXEC_PREFIX}/include/tk${TK_VERSION_FOUND}/unix" Added: csw/mgar/pkg/graphviz/trunk/files/0002_configure_guile_version_detection_needs_gsed.patch =================================================================== --- csw/mgar/pkg/graphviz/trunk/files/0002_configure_guile_version_detection_needs_gsed.patch (rev 0) +++ csw/mgar/pkg/graphviz/trunk/files/0002_configure_guile_version_detection_needs_gsed.patch 2013-08-01 01:32:54 UTC (rev 21600) @@ -0,0 +1,55 @@ +--- a/configure Tue Jul 30 23:30:11 2013 ++++ b/configure Tue Jul 30 23:39:30 2013 +@@ -20960,7 +20960,7 @@ + if test "x$GUILE" == "x"; then + use_guile="No (guile not available)" + else +- GUILE_VERSION=`$GUILE --version | sed -n '1 s/^.* \+\([0-9\.]\+\)$/\1/ p'` ++ GUILE_VERSION=`$GUILE --version | gsed -n '1 s/^.* \+\([0-9\.]\+\)$/\1/ p'` + GUILE_VERSION_MAJOR=`echo $GUILE_VERSION | cut -d '.' -f 1` + GUILE_VERSION_MINOR=`echo $GUILE_VERSION | cut -d '.' -f 2` + if test 0$GUILE_VERSION_MAJOR -lt 2; then +@@ -20987,12 +20987,12 @@ + pkg_cv_GUILE_CFLAGS="$GUILE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ +- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"guile >= \"\$GUILE_VERSION_MAJOR.\$GUILE_VERSION_MINOR\"\""; } >&5 +- ($PKG_CONFIG --exists --print-errors "guile >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"guile-2.0 >= \"\$GUILE_VERSION_MAJOR.\$GUILE_VERSION_MINOR\"\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "guile-2.0 >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then +- pkg_cv_GUILE_CFLAGS=`$PKG_CONFIG --cflags "guile >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"" 2>/dev/null` ++ pkg_cv_GUILE_CFLAGS=`$PKG_CONFIG --cflags "guile-2.0 >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -21003,12 +21003,12 @@ + pkg_cv_GUILE_LIBS="$GUILE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ +- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"guile >= \"\$GUILE_VERSION_MAJOR.\$GUILE_VERSION_MINOR\"\""; } >&5 +- ($PKG_CONFIG --exists --print-errors "guile >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"guile-2.0 >= \"\$GUILE_VERSION_MAJOR.\$GUILE_VERSION_MINOR\"\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "guile-2.0 >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then +- pkg_cv_GUILE_LIBS=`$PKG_CONFIG --libs "guile >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"" 2>/dev/null` ++ pkg_cv_GUILE_LIBS=`$PKG_CONFIG --libs "guile-2.0 >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -21028,9 +21028,9 @@ + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- GUILE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "guile >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"" 2>&1` ++ GUILE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "guile-2.0 >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"" 2>&1` + else +- GUILE_PKG_ERRORS=`$PKG_CONFIG --print-errors "guile >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"" 2>&1` ++ GUILE_PKG_ERRORS=`$PKG_CONFIG --print-errors "guile-2.0 >= "$GUILE_VERSION_MAJOR.$GUILE_VERSION_MINOR"" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GUILE_PKG_ERRORS" >&5 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Aug 1 09:59:20 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 01 Aug 2013 07:59:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[21601] csw/mgar/pkg/graphviz/trunk/Makefile Message-ID: Revision: 21601 http://gar.svn.sourceforge.net/gar/?rev=21601&view=rev Author: lblume Date: 2013-08-01 07:59:17 +0000 (Thu, 01 Aug 2013) Log Message: ----------- graphviz/trunk: Add the python build dep Modified Paths: -------------- csw/mgar/pkg/graphviz/trunk/Makefile Modified: csw/mgar/pkg/graphviz/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-01 01:32:54 UTC (rev 21600) +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-01 07:59:17 UTC (rev 21601) @@ -44,6 +44,7 @@ BUILD_DEP_PKGS += CSWtk-dev BUILD_DEP_PKGS += CSWswig BUILD_DEP_PKGS += CSWlibgc-dev +BUILD_DEP_PKGS += CSWpython27-dev # This is a compatibility package which should go away after some time. # It only contains a link to CSWgraphviz. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 1 09:59:35 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 01 Aug 2013 07:59:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[21602] csw/mgar/pkg Message-ID: Revision: 21602 http://gar.svn.sourceforge.net/gar/?rev=21602&view=rev Author: wahwah Date: 2013-08-01 07:59:35 +0000 (Thu, 01 Aug 2013) Log Message: ----------- feh/trunk: Initial commit, seems to build Added Paths: ----------- csw/mgar/pkg/feh/ csw/mgar/pkg/feh/Makefile csw/mgar/pkg/feh/branches/ csw/mgar/pkg/feh/tags/ csw/mgar/pkg/feh/trunk/ csw/mgar/pkg/feh/trunk/Makefile csw/mgar/pkg/feh/trunk/checksums csw/mgar/pkg/feh/trunk/files/ csw/mgar/pkg/feh/trunk/files/0001-config.mk-adjustments-prefix-compilation.patch Added: csw/mgar/pkg/feh/Makefile =================================================================== --- csw/mgar/pkg/feh/Makefile (rev 0) +++ csw/mgar/pkg/feh/Makefile 2013-08-01 07:59:35 UTC (rev 21602) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/feh/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/feh/trunk/Makefile =================================================================== --- csw/mgar/pkg/feh/trunk/Makefile (rev 0) +++ csw/mgar/pkg/feh/trunk/Makefile 2013-08-01 07:59:35 UTC (rev 21602) @@ -0,0 +1,31 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = feh +VERSION = 2.9.3 +GARTYPE = v2 + +DESCRIPTION = X11 image viewer aimed mostly at console users + +VENDOR_URL = http://feh.finalrewind.org/ +MASTER_SITES = http://feh.finalrewind.org/ +DISTFILES = $(DISTNAME).tar.bz2 + +PATCHFILES += 0001-config.mk-adjustments-prefix-compilation.patch + +CONFIGURE_ARGS = $(DIRPATHS) + +CONFIGURE_SCRIPTS = + +# Test turned off for now. Error: "Can't locate Test/Command.pm in @INC" +TEST_SCRIPTS = +# TEST_TARGET = test + +GARCOMPILER = GNU + +RUNTIME_DEP_PKGS_CSWfeh += CSWlibimlib2-1 +RUNTIME_DEP_PKGS_CSWfeh += CSWlibpng15-15 +RUNTIME_DEP_PKGS_CSWfeh += CSWlibgiblib1 +RUNTIME_DEP_PKGS_CSWfeh += CSWlibcurl4 + +include gar/category.mk Property changes on: csw/mgar/pkg/feh/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/feh/trunk/checksums =================================================================== --- csw/mgar/pkg/feh/trunk/checksums (rev 0) +++ csw/mgar/pkg/feh/trunk/checksums 2013-08-01 07:59:35 UTC (rev 21602) @@ -0,0 +1 @@ +7c6ecdc36eaf9f14a13f8cf35988da45 feh-2.9.3.tar.bz2 Added: csw/mgar/pkg/feh/trunk/files/0001-config.mk-adjustments-prefix-compilation.patch =================================================================== --- csw/mgar/pkg/feh/trunk/files/0001-config.mk-adjustments-prefix-compilation.patch (rev 0) +++ csw/mgar/pkg/feh/trunk/files/0001-config.mk-adjustments-prefix-compilation.patch 2013-08-01 07:59:35 UTC (rev 21602) @@ -0,0 +1,35 @@ +From 60fa5fe0dbe652be136de08b4c14706a23e0c364 Mon Sep 17 00:00:00 2001 +From: Maciej Blizinski +Date: Thu, 1 Aug 2013 09:54:25 +0200 +Subject: [PATCH] config.mk adjustments: prefix, compilation + +--- + config.mk | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +diff --git a/config.mk b/config.mk +index 54cf7e9..42acc24 100644 +--- a/config.mk ++++ b/config.mk +@@ -2,7 +2,7 @@ PACKAGE ?= feh + VERSION ?= 2.9.3 + + # Prefix for all installed files +-PREFIX ?= /usr/local ++PREFIX ?= /opt/csw + + # Directories for manuals, executables, docs, data, etc. + main_dir = ${DESTDIR}${PREFIX} +@@ -16,7 +16,8 @@ desktop_dir = ${main_dir}/share/applications + + # default CFLAGS + CFLAGS ?= -g -O2 +-CFLAGS += -Wall -Wextra -pedantic ++CFLAGS += -DNAME_MAX=FILENAME_MAX ++# CFLAGS += -Wall -Wextra -pedantic + + curl ?= 1 + debug ?= 0 +-- +1.8.3.1 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Thu Aug 1 10:29:51 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Thu, 01 Aug 2013 08:29:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[21603] csw/mgar/pkg/tracker/trunk Message-ID: Revision: 21603 http://gar.svn.sourceforge.net/gar/?rev=21603&view=rev Author: slowfranklin Date: 2013-08-01 08:29:45 +0000 (Thu, 01 Aug 2013) Log Message: ----------- tracker/trunk: Update to 0.16.2 Modified Paths: -------------- csw/mgar/pkg/tracker/trunk/Makefile csw/mgar/pkg/tracker/trunk/checksums Modified: csw/mgar/pkg/tracker/trunk/Makefile =================================================================== --- csw/mgar/pkg/tracker/trunk/Makefile 2013-08-01 07:59:35 UTC (rev 21602) +++ csw/mgar/pkg/tracker/trunk/Makefile 2013-08-01 08:29:45 UTC (rev 21603) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = tracker -VERSION = 0.16.1 +VERSION = 0.16.2 GARTYPE = v2 DESCRIPTION = Gnome Tracker, semantic data storage @@ -113,9 +113,6 @@ PATCHFILES += 0003-Replace-uuid_unparse_lower-with-uuid_unparse.patch PATCHFILES += 0004-_XOPEN_SOURCE-hides-non-standard-stuff-__EXTENSIONS_.patch PATCHFILES += 0005-exempi-xmp.h-is-missing-a-stdbool.h-include.patch -# submitted upstream -PATCHFILES += 0006-Use-procfs-psinfo-instead-of-cmdline-on-Solaris.patch -PATCHFILES += 0007-Add-proc-meminfo-replacement-for-Solaris.patch # Packages PACKAGES += CSWtracker Modified: csw/mgar/pkg/tracker/trunk/checksums =================================================================== --- csw/mgar/pkg/tracker/trunk/checksums 2013-08-01 07:59:35 UTC (rev 21602) +++ csw/mgar/pkg/tracker/trunk/checksums 2013-08-01 08:29:45 UTC (rev 21603) @@ -1 +1 @@ -280438e187afa7e23a83331d8b5ba5f4 tracker-0.16.1.tar.xz +aff0080e06cd9304c40a08a0400dd7e5 tracker-0.16.2.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 1 10:39:25 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 01 Aug 2013 08:39:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[21604] csw/mgar/pkg/lang-python/pygtk Message-ID: Revision: 21604 http://gar.svn.sourceforge.net/gar/?rev=21604&view=rev Author: wahwah Date: 2013-08-01 08:39:25 +0000 (Thu, 01 Aug 2013) Log Message: ----------- pygtk: an old version for Solaris 9 Modified Paths: -------------- csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/Makefile csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/checksums Added Paths: ----------- csw/mgar/pkg/lang-python/pygtk/branches/ csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/ Modified: csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pygtk/trunk/Makefile 2013-04-23 13:10:04 UTC (rev 20848) +++ csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/Makefile 2013-08-01 08:39:25 UTC (rev 21604) @@ -1,12 +1,9 @@ NAME = pygtk -VERSION = 2.17.0 +VERSION = 2.12.1 GARTYPE = v2 RELVER = $(shell echo $(VERSION) |gsed 's/\(^[0-9].*\.[0-9].*\)\.[0-9]*/\1/') DESCRIPTION = Python bindings for the GTK library -define BLURB - This is a Python language binding for gobject. -endef MASTER_SITES = http://ftp.gnome.org/pub/GNOME/sources/pygtk/$(RELVER)/ DISTFILES = $(NAME)-$(VERSION).tar.bz2 @@ -16,49 +13,33 @@ # however a gmake check works and finish successfull! SKIPTEST = 1 -PACKAGING_PLATFORMS=solaris10-i386 solaris10-sparc +PACKAGING_PLATFORMS = solaris9-i386 solaris9-sparc + BUILD_DEP_PKGS += CSWpkgconfig BUILD_DEP_PKGS += CSWpygobject -BUILD_DEP_PKGS += CSWlibglib2-dev +# BUILD_DEP_PKGS += CSWlibglib2-dev BUILD_DEP_PKGS += CSWlibatk-dev BUILD_DEP_PKGS += CSWpangodevel -BUILD_DEP_PKGS += CSWpy-cairo +# BUILD_DEP_PKGS += CSWpy-cairo BUILD_DEP_PKGS += CSWlibcairo-dev BUILD_DEP_PKGS += CSWlibxcbdevel -PACKAGES = CSWpy-gtk -CATALOGNAME_CSWpy-gtk = py_gtk -SPKG_DESC_CSWpy-gtk = $(DESCRIPTION) +PACKAGES = CSWpygtk + +SPKG_DESC_CSWpygtk = $(DESCRIPTION) OBSOLETED_BY_CSWpy-gtk = CSWpygtk -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWpython -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibfontconfig1 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibglade2 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWpango -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibgthread2-0-0 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibgmodule2-0-0 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibgdk-x11-2-0-0 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibgdk-pixbuf2-0-0 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibatk1-0-0 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibcairo2 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibfreetype6 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibgobject2-0-0 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibxml2-2 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibgtk-x11-2-0-0 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibgio2-0-0 -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWpygobject -RUNTIME_DEP_PKGS_CSWpy-gtk += CSWpy-cairo -CHECKPKG_OVERRIDES_CSWpy-gtk += file-with-bad-content|/usr/share|root/opt/csw/share/gtk-doc/html/pygtk/class-gtkfilechooser.html -CHECKPKG_OVERRIDES_CSWpy-gtk += file-with-bad-content|/usr/local|root/opt/csw/share/gtk-doc/html/pygtk/class-gtkrcstyle.html -# pygtk do not work without this -CHECKPKG_OVERRIDES_CSWpy-gtk += surplus-dependency|CSWpygobject -# gtk do not work without this -CHECKPKG_OVERRIDES_CSWpy-gtk += surplus-dependency|CSWpy-cairo -# pkg and classaction is obsolete -CHECKPKG_OVERRIDES_CSWpygtk += action-class-only-in-pkginfo|cswpycompile +RUNTIME_DEP_PKGS_CSWpygtk += CSWglib2 +RUNTIME_DEP_PKGS_CSWpygtk += CSWgtk2 +RUNTIME_DEP_PKGS_CSWpygtk += CSWlibatk1-0-0 +RUNTIME_DEP_PKGS_CSWpygtk += CSWlibcairo2 +RUNTIME_DEP_PKGS_CSWpygtk += CSWlibglade2 +RUNTIME_DEP_PKGS_CSWpygtk += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWpygtk += CSWpango +CHECKPKG_OVERRIDES_CSWpygtk += pkgname-does-not-start-with-CSWpy- +CHECKPKG_OVERRIDES_CSWpygtk += catalogname-does-not-start-with-py_ + EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' SPKG_CLASSES = none cswpycompile @@ -69,7 +50,7 @@ CONFIGURE_ARGS = $(DIRPATHS) -#TEST_SCRIPTS = +#TEST_SCRIPTS = include gar/category.mk Modified: csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/checksums =================================================================== --- csw/mgar/pkg/lang-python/pygtk/trunk/checksums 2013-04-23 13:10:04 UTC (rev 20848) +++ csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/checksums 2013-08-01 08:39:25 UTC (rev 21604) @@ -1 +1 @@ -43d704343d7ca04a6e4ddd4fa73a3c55 pygtk-2.17.0.tar.bz2 +a816346d750d61e3fa67a200e4292694 pygtk-2.12.1.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 1 12:19:17 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 01 Aug 2013 10:19:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[21605] csw/mgar/pkg/libgc/trunk/Makefile Message-ID: Revision: 21605 http://gar.svn.sourceforge.net/gar/?rev=21605&view=rev Author: pfelecan Date: 2013-08-01 10:19:16 +0000 (Thu, 01 Aug 2013) Log Message: ----------- libgc/trunk: - verion bump - 64 bit libraries Modified Paths: -------------- csw/mgar/pkg/libgc/trunk/Makefile Modified: csw/mgar/pkg/libgc/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 08:39:25 UTC (rev 21604) +++ csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 10:19:16 UTC (rev 21605) @@ -1,5 +1,7 @@ NAME = libgc -VERSION = 7.1 +theVersion = 7.2 +thePatch = d +VERSION = $(theVersion)$(thePatch) GARTYPE = v2 DESCRIPTION = A garbage collector for C and C++ @@ -13,8 +15,8 @@ endef MASTER_SITES = http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/ -DISTNAME = gc-$(VERSION) -DISTFILES = $(DISTNAME).tar.gz +DISTNAME = gc-$(theVersion) +DISTFILES = $(DISTNAME)$(thePatch).tar.gz VENDOR_URL = http://www.hpl.hp.com/personal/Hans_Boehm/gc/ @@ -56,7 +58,7 @@ # http://www.hpl.hp.com/hosted/linux/mail-archives/gc/2012-January/004904.html TEST_SCRIPTS = custom -# BUILD64_LIBS_ONLY = 1 +BUILD64_LIBS_ONLY = 1 include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 1 13:33:33 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 01 Aug 2013 11:33:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[21606] csw/mgar/pkg/cswutils/trunk/Makefile Message-ID: Revision: 21606 http://gar.svn.sourceforge.net/gar/?rev=21606&view=rev Author: wahwah Date: 2013-08-01 11:33:30 +0000 (Thu, 01 Aug 2013) Log Message: ----------- cswutils/trunk: Less dependency on GARDIR and random files that might lying around. Modified Paths: -------------- csw/mgar/pkg/cswutils/trunk/Makefile Modified: csw/mgar/pkg/cswutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswutils/trunk/Makefile 2013-08-01 10:19:16 UTC (rev 21605) +++ csw/mgar/pkg/cswutils/trunk/Makefile 2013-08-01 11:33:30 UTC (rev 21606) @@ -3,11 +3,9 @@ NAME = cswutils VERSION = 1.$(GARHEAD) GARTYPE = v2 -GARHEAD = $(shell cd $(GARDIR); svn info | grep 'Last Changed Rev' | sed 's/[^0-9]*//') +GARHEAD = $(shell svn info $(SVNROOT_gar) | grep 'Last Changed Rev' | sed 's/[^0-9]*//') DESCRIPTION = Utilities for CSW maintainers -define BLURB -endef SVNROOT = http://opencsw.svn.sourceforge.net/svnroot/opencsw/utilities/ SVN_REV = 364 @@ -33,18 +31,15 @@ RUNTIME_DEP_PKGS += CSWpmlibwww RUNTIME_DEP_PKGS += CSWpmyaml RUNTIME_DEP_PKGS += CSWpy-cheetah -RUNTIME_DEP_PKGS += CSWpy-hachoir-core -RUNTIME_DEP_PKGS += CSWpy-hachoir-parser RUNTIME_DEP_PKGS += CSWpy-libmagic +RUNTIME_DEP_PKGS += CSWpy-pyelftools RUNTIME_DEP_PKGS += CSWpy-progressbar RUNTIME_DEP_PKGS += CSWpy-sqlobject RUNTIME_DEP_PKGS += CSWpy-curl RUNTIME_DEP_PKGS += CSWpython -WORKSRC = $(WORKDIR) - CONFIGURE_SCRIPTS = -BUILD_SCRIPTS = +BUILD_SCRIPTS = custom TEST_SCRIPTS = INSTALL_SCRIPTS = custom @@ -76,25 +71,30 @@ include gar/category.mk +build-custom: + cd $(WORKSRC) && svn export $(SVNROOT_gar) gar-code + @$(MAKECOOKIE) + install-custom: @ginstall -d $(DESTDIR)$(bindir) - @ginstall $(WORKSRC)/checkpkg $(DESTDIR)$(bindir)/checkpkg.legacy - @ginstall $(WORKSRC)/cpan2pkg $(DESTDIR)$(bindir) - @ginstall $(WORKSRC)/createpkg $(DESTDIR)$(bindir) - @ginstall $(WORKSRC)/stagepkg $(DESTDIR)$(bindir) + @ginstall $(WORKDIR)/checkpkg $(DESTDIR)$(bindir)/checkpkg.legacy + @ginstall $(WORKDIR)/cpan2pkg $(DESTDIR)$(bindir) + @ginstall $(WORKDIR)/createpkg $(DESTDIR)$(bindir) + @ginstall $(WORKDIR)/stagepkg $(DESTDIR)$(bindir) @ginstall $(GARDIR)/bin/fixlibtool $(DESTDIR)$(bindir) @ginstall -d $(DESTDIR)$(mandir)/man8 - @ginstall $(WORKSRC)/checkpkg.8 $(DESTDIR)$(mandir)/man8/ - @ginstall $(WORKSRC)/createpkg.8 $(DESTDIR)$(mandir)/man8/ - @ginstall $(WORKSRC)/stagepkg.8 $(DESTDIR)$(mandir)/man8/ + @ginstall $(WORKDIR)/checkpkg.8 $(DESTDIR)$(mandir)/man8/ + @ginstall $(WORKDIR)/createpkg.8 $(DESTDIR)$(mandir)/man8/ + @ginstall $(WORKDIR)/stagepkg.8 $(DESTDIR)$(mandir)/man8/ @ginstall -d $(DESTDIR)$(libdir)/python/csw @ginstall -d $(DESTDIR)$(datadir)/opencsw/gar - @(cd $(GARDIR); svn info > $(DESTDIR)$(datadir)/opencsw/gar/cswutils.svn_version.txt) + @(echo $(GARHEAD) > $(DESTDIR)$(datadir)/opencsw/gar/cswutils.svn_version.txt) @ginstall -m 0644 $(GARDIR)/etc/commondirs* $(DESTDIR)/$(datadir)/opencsw/gar/ - @rsync -av --exclude=.svn/ --exclude='*.pyc' $(GARDIR)/lib/python/ \ + @rsync -av \ + --exclude=testdata/ \ + --exclude='*.pyc' \ + $(WORKSRC)/gar-code/ \ $(DESTDIR)/$(libdir)/python/csw/ - @ln -s ../lib/python/csw/compare_pkgs.py \ - $(DESTDIR)$(bindir)/comparepkg @ln -s ../lib/python/csw/csw_upload_pkg.py \ $(DESTDIR)$(bindir)/csw-upload-pkg @ln -s ../lib/python/csw/checkpkg2.py \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 1 13:52:22 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 01 Aug 2013 11:52:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[21607] csw/mgar/pkg/libgc/trunk/checksums Message-ID: Revision: 21607 http://gar.svn.sourceforge.net/gar/?rev=21607&view=rev Author: pfelecan Date: 2013-08-01 11:52:16 +0000 (Thu, 01 Aug 2013) Log Message: ----------- libgc/trunk: verion bump (forgotten) Modified Paths: -------------- csw/mgar/pkg/libgc/trunk/checksums Modified: csw/mgar/pkg/libgc/trunk/checksums =================================================================== --- csw/mgar/pkg/libgc/trunk/checksums 2013-08-01 11:33:30 UTC (rev 21606) +++ csw/mgar/pkg/libgc/trunk/checksums 2013-08-01 11:52:16 UTC (rev 21607) @@ -1 +1 @@ -2ff9924c7249ef7f736ecfe6f08f3f9b gc-7.1.tar.gz +91340b28c61753a789eb6077675d87d2 gc-7.2d.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 1 14:10:56 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 01 Aug 2013 12:10:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[21608] csw/mgar/pkg/libgc/trunk/Makefile Message-ID: Revision: 21608 http://gar.svn.sourceforge.net/gar/?rev=21608&view=rev Author: pfelecan Date: 2013-08-01 12:10:53 +0000 (Thu, 01 Aug 2013) Log Message: ----------- libgc/trunk: added runtime dependencies Modified Paths: -------------- csw/mgar/pkg/libgc/trunk/Makefile Modified: csw/mgar/pkg/libgc/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 11:52:16 UTC (rev 21607) +++ csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 12:10:53 UTC (rev 21608) @@ -32,15 +32,19 @@ PKGFILES_CSWlibcord1 += $(call pkgfiles_lib,libcord.so.1) RUNTIME_DEP_PKGS_CSWlibcord1 += CSWlibgc1 OBSOLETED_BY_CSWlibcord1 += CSWlibgc +RUNTIME_DEP_PKGS_CSWlibcord1 += CSWlibgcc-s1 PACKAGES += CSWlibgc1 SPKG_DESC_CSWlibgc1 = A garbage collector for C and C++, libgc.so.1 PKGFILES_CSWlibgc1 += $(call pkgfiles_lib,libgc.so.1) OBSOLETED_BY_CSWlibgc1 += CSWlibgc +RUNTIME_DEP_PKGS_CSWlibgc1 += CSWlibgcc-s1 PACKAGES += CSWlibgccpp1 SPKG_DESC_CSWlibgccpp1 = A garbage collector for C and C++, libgccpp.so.1 PKGFILES_CSWlibgccpp1 += $(call pkgfiles_lib,libgccpp.so.1) +RUNTIME_DEP_PKGS_CSWlibgccpp1 += CSWlibgc1 +RUNTIME_DEP_PKGS_CSWlibgccpp1 += CSWlibgcc-s1 PACKAGES += CSWlibgc-dev SPKG_DESC_CSWlibgc-dev = Development files for libgc.so.1 libcord.so.1 and libgccpp.so.1 @@ -49,9 +53,6 @@ RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibgc1 RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibgccpp1 -# This is just docs, ignore for now -CHECKPKG_OVERRIDES_CSWlibgc-dev += file-with-bad-content|/usr/local|root/opt/csw/share/gc/README.autoconf - # One test is failing on amd64, disable for now: # FAIL: gctest # The bugreport has been posted on This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Thu Aug 1 14:29:50 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Thu, 01 Aug 2013 12:29:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[21609] csw/mgar/pkg/tracker/trunk/Makefile Message-ID: Revision: 21609 http://gar.svn.sourceforge.net/gar/?rev=21609&view=rev Author: slowfranklin Date: 2013-08-01 12:29:50 +0000 (Thu, 01 Aug 2013) Log Message: ----------- tracker/trunk: Drop unused gstreamer dependency Modified Paths: -------------- csw/mgar/pkg/tracker/trunk/Makefile Modified: csw/mgar/pkg/tracker/trunk/Makefile =================================================================== --- csw/mgar/pkg/tracker/trunk/Makefile 2013-08-01 12:10:53 UTC (rev 21608) +++ csw/mgar/pkg/tracker/trunk/Makefile 2013-08-01 12:29:50 UTC (rev 21609) @@ -40,7 +40,6 @@ BUILD_DEP_PKGS += CSWlibiptcdata BUILD_DEP_PKGS += CSWpoppler-dev # BUILD_DEP_PKGS += CSWexempidevel -BUILD_DEP_PKGS += CSWgstreamer BUILD_DEP_PKGS += CSWlibexif-dev RUNTIME_DEP_PKGS_CSWtracker += CSWlibgsf1-114 @@ -81,7 +80,7 @@ RUNTIME_DEP_PKGS_CSWlibtracker-extract0-16-0 += CSWlibiptcdata RUNTIME_DEP_PKGS_CSWlibtracker-extract0-16-0 += CSWlibpoppler-glib8 # RUNTIME_DEP_PKGS_CSWlibtracker-extract0-16-0 += CSWexempi -RUNTIME_DEP_PKGS_CSWlibtracker-extract0-16-0 += CSWgstreamer +# RUNTIME_DEP_PKGS_CSWlibtracker-extract0-16-0 += CSWgstreamer RUNTIME_DEP_PKGS_CSWlibtracker-extract0-16-0 += CSWlibtracker-sparql0-16-0 RUNTIME_DEP_PKGS_CSWlibtracker-extract0-16-0 += CSWlibtracker-common This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 1 16:17:58 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 01 Aug 2013 14:17:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[21610] csw/mgar/pkg/libgc/trunk/Makefile Message-ID: Revision: 21610 http://gar.svn.sourceforge.net/gar/?rev=21610&view=rev Author: pfelecan Date: 2013-08-01 14:17:50 +0000 (Thu, 01 Aug 2013) Log Message: ----------- libgc/trunk: overrides to accept the light weight processes library Modified Paths: -------------- csw/mgar/pkg/libgc/trunk/Makefile Modified: csw/mgar/pkg/libgc/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 12:29:50 UTC (rev 21609) +++ csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 14:17:50 UTC (rev 21610) @@ -33,18 +33,24 @@ RUNTIME_DEP_PKGS_CSWlibcord1 += CSWlibgc1 OBSOLETED_BY_CSWlibcord1 += CSWlibgc RUNTIME_DEP_PKGS_CSWlibcord1 += CSWlibgcc-s1 +CHECKPKG_OVERRIDES_CSWlibcord1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/libcord.so.1.0.3 +CHECKPKG_OVERRIDES_CSWlibcord1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/sparcv9/libcord.so.1.0.3 PACKAGES += CSWlibgc1 SPKG_DESC_CSWlibgc1 = A garbage collector for C and C++, libgc.so.1 PKGFILES_CSWlibgc1 += $(call pkgfiles_lib,libgc.so.1) OBSOLETED_BY_CSWlibgc1 += CSWlibgc RUNTIME_DEP_PKGS_CSWlibgc1 += CSWlibgcc-s1 +CHECKPKG_OVERRIDES_CSWlibgc1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/libgc.so.1.0.3 +CHECKPKG_OVERRIDES_CSWlibgc1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/sparcv9/libgc.so.1.0.3 PACKAGES += CSWlibgccpp1 SPKG_DESC_CSWlibgccpp1 = A garbage collector for C and C++, libgccpp.so.1 PKGFILES_CSWlibgccpp1 += $(call pkgfiles_lib,libgccpp.so.1) RUNTIME_DEP_PKGS_CSWlibgccpp1 += CSWlibgc1 RUNTIME_DEP_PKGS_CSWlibgccpp1 += CSWlibgcc-s1 +CHECKPKG_OVERRIDES_CSWlibgccpp1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/libgccpp.so.1.0.3 +CHECKPKG_OVERRIDES_CSWlibgccpp1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/sparcv9/libgccpp.so.1.0.3 PACKAGES += CSWlibgc-dev SPKG_DESC_CSWlibgc-dev = Development files for libgc.so.1 libcord.so.1 and libgccpp.so.1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 1 16:29:49 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 01 Aug 2013 14:29:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[21611] csw/mgar/pkg/libgc/trunk/Makefile Message-ID: Revision: 21611 http://gar.svn.sourceforge.net/gar/?rev=21611&view=rev Author: pfelecan Date: 2013-08-01 14:29:49 +0000 (Thu, 01 Aug 2013) Log Message: ----------- libgc/trunk: overrides to accept the light weight processes library for amd64 also Modified Paths: -------------- csw/mgar/pkg/libgc/trunk/Makefile Modified: csw/mgar/pkg/libgc/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 14:17:50 UTC (rev 21610) +++ csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 14:29:49 UTC (rev 21611) @@ -35,6 +35,7 @@ RUNTIME_DEP_PKGS_CSWlibcord1 += CSWlibgcc-s1 CHECKPKG_OVERRIDES_CSWlibcord1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/libcord.so.1.0.3 CHECKPKG_OVERRIDES_CSWlibcord1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/sparcv9/libcord.so.1.0.3 +CHECKPKG_OVERRIDES_CSWlibcord1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/amd64/libcord.so.1.0.3 PACKAGES += CSWlibgc1 SPKG_DESC_CSWlibgc1 = A garbage collector for C and C++, libgc.so.1 @@ -43,6 +44,7 @@ RUNTIME_DEP_PKGS_CSWlibgc1 += CSWlibgcc-s1 CHECKPKG_OVERRIDES_CSWlibgc1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/libgc.so.1.0.3 CHECKPKG_OVERRIDES_CSWlibgc1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/sparcv9/libgc.so.1.0.3 +CHECKPKG_OVERRIDES_CSWlibgc1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/amd64/libgc.so.1.0.3 PACKAGES += CSWlibgccpp1 SPKG_DESC_CSWlibgccpp1 = A garbage collector for C and C++, libgccpp.so.1 @@ -51,6 +53,7 @@ RUNTIME_DEP_PKGS_CSWlibgccpp1 += CSWlibgcc-s1 CHECKPKG_OVERRIDES_CSWlibgccpp1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/libgccpp.so.1.0.3 CHECKPKG_OVERRIDES_CSWlibgccpp1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/sparcv9/libgccpp.so.1.0.3 +CHECKPKG_OVERRIDES_CSWlibgccpp1 += bad-rpath-entry|/usr/lib/lwp/.|opt/csw/lib/amd64/libgccpp.so.1.0.3 PACKAGES += CSWlibgc-dev SPKG_DESC_CSWlibgc-dev = Development files for libgc.so.1 libcord.so.1 and libgccpp.so.1 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 Aug 1 16:38:42 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 01 Aug 2013 14:38:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[21612] csw/mgar/pkg/gstreamer/trunk/Makefile Message-ID: Revision: 21612 http://gar.svn.sourceforge.net/gar/?rev=21612&view=rev Author: cgrzemba Date: 2013-08-01 14:38:32 +0000 (Thu, 01 Aug 2013) Log Message: ----------- gstreamer/trunk: move gir files in dev package Modified Paths: -------------- csw/mgar/pkg/gstreamer/trunk/Makefile Modified: csw/mgar/pkg/gstreamer/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstreamer/trunk/Makefile 2013-08-01 14:29:49 UTC (rev 21611) +++ csw/mgar/pkg/gstreamer/trunk/Makefile 2013-08-01 14:38:32 UTC (rev 21612) @@ -11,9 +11,6 @@ editing) processing. endef -PACKAGES = CSWgstreamer -CATALOGNAME = gstreamer - MASTER_SITES = http://gstreamer.freedesktop.org/src/gstreamer/ DISTFILES = $(NAME)-$(VERSION).tar.gz @@ -21,10 +18,16 @@ UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz GARCOMPILER = SOS12U3 -PACKAGING_PLATFORMS = Solaris10-sparc Solaris10-i386 +# do not compile with gcc4: +# gstelementfactory.c:393:8: note: in expansion of macro 'g_atomic_pointer_compare_and_exchange' +# GARCOMPILER = GCC4 +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 RUNTIME_DEP_PKGS += CSWglib2 CSWggettextrt CSWlibxml2 -BUILD_DEP_PKGS += CSWbison CSWflex-new CSWglib2devel CSWpkgconfig +BUILD_DEP_PKGS += CSWbison +BUILD_DEP_PKGS += CSWflex +BUILD_DEP_PKGS += CSWglib2devel +BUILD_DEP_PKGS += CSWpkgconfig # BUILD_DEP_PKGS += CSWlibxml2devel BUILD_DEP_PKGS += CSWgobject-introspection @@ -114,6 +117,8 @@ SPKG_DESC_CSWgstreamer-dev += $(DESCRIPTION), development files PKGFILES_CSWgstreamer-dev += $(PKGFILES_DEVEL) PKGFILES_CSWgstreamer-dev += $(prefix)/share/gtk-doc/.* +PKGFILES_CSWgstreamer-dev += $(prefix)/share/gir-1.0/.* +PKGFILES_CSWgstreamer-dev += $(libdir)/girepository-1.0/.* RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstbase0-10-0 RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstnet0-10-0 RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstreamer0-10-0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 1 16:47:31 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 01 Aug 2013 14:47:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[21613] csw/mgar/pkg/libgc/trunk/Makefile Message-ID: Revision: 21613 http://gar.svn.sourceforge.net/gar/?rev=21613&view=rev Author: pfelecan Date: 2013-08-01 14:47:30 +0000 (Thu, 01 Aug 2013) Log Message: ----------- libgc/trunk: the development package is architecture neutral Modified Paths: -------------- csw/mgar/pkg/libgc/trunk/Makefile Modified: csw/mgar/pkg/libgc/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 14:38:32 UTC (rev 21612) +++ csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 14:47:30 UTC (rev 21613) @@ -61,6 +61,8 @@ RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibcord1 RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibgc1 RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibgccpp1 +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-devel-package +ARCHALL_CSWlibgc-dev = 1 # One test is failing on amd64, disable for now: # FAIL: gctest This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 1 16:55:03 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 01 Aug 2013 14:55:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[21614] csw/mgar/pkg/libgc/trunk/Makefile Message-ID: Revision: 21614 http://gar.svn.sourceforge.net/gar/?rev=21614&view=rev Author: pfelecan Date: 2013-08-01 14:55:03 +0000 (Thu, 01 Aug 2013) Log Message: ----------- libgc/trunk: - remove unnecessary comment about non passing tests: they pass now - overrides for architecture neutral components in the development sub-package Modified Paths: -------------- csw/mgar/pkg/libgc/trunk/Makefile Modified: csw/mgar/pkg/libgc/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 14:47:30 UTC (rev 21613) +++ csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 14:55:03 UTC (rev 21614) @@ -61,13 +61,16 @@ RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibcord1 RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibgc1 RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibgccpp1 +ARCHALL_CSWlibgc-dev = 1 CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-devel-package -ARCHALL_CSWlibgc-dev = 1 +# all the following are either architecture neutral scripts or +# symbolic links which are also architecture neutral... +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/libcord.so +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/libgc.so +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/libgccpp.so +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/pkgconfig +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/pkgconfig/bdw-gc.pc -# One test is failing on amd64, disable for now: -# FAIL: gctest -# The bugreport has been posted on -# http://www.hpl.hp.com/hosted/linux/mail-archives/gc/2012-January/004904.html TEST_SCRIPTS = custom BUILD64_LIBS_ONLY = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 1 17:05:29 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 01 Aug 2013 15:05:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[21615] csw/mgar/pkg/libgc/trunk/Makefile Message-ID: Revision: 21615 http://gar.svn.sourceforge.net/gar/?rev=21615&view=rev Author: pfelecan Date: 2013-08-01 15:05:28 +0000 (Thu, 01 Aug 2013) Log Message: ----------- libgc/trunk: overrides for architecture neutral components in the development sub-package for amd64 also Modified Paths: -------------- csw/mgar/pkg/libgc/trunk/Makefile Modified: csw/mgar/pkg/libgc/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 14:55:03 UTC (rev 21614) +++ csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 15:05:28 UTC (rev 21615) @@ -70,6 +70,11 @@ CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/libgccpp.so CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/pkgconfig CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/pkgconfig/bdw-gc.pc +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/libcord.so +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/libgc.so +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/libgccpp.so +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/pkgconfig +CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/pkgconfig/bdw-gc.pc TEST_SCRIPTS = custom This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 1 17:56:45 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 01 Aug 2013 15:56:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[21616] csw/mgar/pkg/libgc/trunk/Makefile Message-ID: Revision: 21616 http://gar.svn.sourceforge.net/gar/?rev=21616&view=rev Author: pfelecan Date: 2013-08-01 15:56:43 +0000 (Thu, 01 Aug 2013) Log Message: ----------- libgc/trunk: this development package cannot be neutral Modified Paths: -------------- csw/mgar/pkg/libgc/trunk/Makefile Modified: csw/mgar/pkg/libgc/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 15:05:28 UTC (rev 21615) +++ csw/mgar/pkg/libgc/trunk/Makefile 2013-08-01 15:56:43 UTC (rev 21616) @@ -61,20 +61,11 @@ RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibcord1 RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibgc1 RUNTIME_DEP_PKGS_CSWlibgc-dev += CSWlibgccpp1 -ARCHALL_CSWlibgc-dev = 1 +# beware that this package cannot be architecture neutral even though +# it bring only that kind of components; however, given the +# multi-platform build system, only the specific paths of the last one +# are brought in, in this case amd64 but not sparc9 CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-devel-package -# all the following are either architecture neutral scripts or -# symbolic links which are also architecture neutral... -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/libcord.so -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/libgc.so -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/libgccpp.so -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/pkgconfig -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/sparcv9/pkgconfig/bdw-gc.pc -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/libcord.so -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/libgc.so -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/libgccpp.so -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/pkgconfig -CHECKPKG_OVERRIDES_CSWlibgc-dev += archall-with-arch-paths|/opt/csw/lib/amd64/pkgconfig/bdw-gc.pc TEST_SCRIPTS = custom This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 1 22:44:30 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 01 Aug 2013 20:44:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[21617] csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/ Makefile Message-ID: Revision: 21617 http://gar.svn.sourceforge.net/gar/?rev=21617&view=rev Author: wahwah Date: 2013-08-01 20:44:27 +0000 (Thu, 01 Aug 2013) Log Message: ----------- lang-python/pygtk/branches/solaris-9: Add an override for the missing Python dependency - I'm building the package with my experimental gar code with the Python dependency switched off. Modified Paths: -------------- csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/Makefile Modified: csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/Makefile 2013-08-01 15:56:43 UTC (rev 21616) +++ csw/mgar/pkg/lang-python/pygtk/branches/solaris-9/Makefile 2013-08-01 20:44:27 UTC (rev 21617) @@ -39,6 +39,7 @@ CHECKPKG_OVERRIDES_CSWpygtk += pkgname-does-not-start-with-CSWpy- CHECKPKG_OVERRIDES_CSWpygtk += catalogname-does-not-start-with-py_ +CHECKPKG_OVERRIDES_CSWpygtk += missing-dependency|CSWpython EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' @@ -53,4 +54,3 @@ #TEST_SCRIPTS = include gar/category.mk - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 2 10:05:33 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 02 Aug 2013 08:05:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[21618] csw/mgar/pkg/guile/trunk/Makefile Message-ID: Revision: 21618 http://gar.svn.sourceforge.net/gar/?rev=21618&view=rev Author: pfelecan Date: 2013-08-02 08:05:23 +0000 (Fri, 02 Aug 2013) Log Message: ----------- guile/trunk: - reactivate thread support - activate 64 bit libraries build and delivery Modified Paths: -------------- csw/mgar/pkg/guile/trunk/Makefile Modified: csw/mgar/pkg/guile/trunk/Makefile =================================================================== --- csw/mgar/pkg/guile/trunk/Makefile 2013-08-01 20:44:27 UTC (rev 21617) +++ csw/mgar/pkg/guile/trunk/Makefile 2013-08-02 08:05:23 UTC (rev 21618) @@ -24,15 +24,9 @@ CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-silent-rules -# this is necessary because libgc is not correctly built: at least the -# following symbols are not defined: -# GC_unregister_my_thread -# GC_register_my_thread -# GC_pthread_create -# GC_pthread_detach -CONFIGURE_ARGS += --without-threads -#GARFLAVOR = DBG +BUILD64_LIBS_ONLY = 1 + # runtime dependencies as explicited in the project's README file: BUILD_DEP_PKGS += CSWlibgmp-dev BUILD_DEP_PKGS += CSWlibiconv-dev @@ -114,8 +108,6 @@ RUNTIME_DEP_PKGS_CSWguile-dev += CSWlibguile2-0-22 RUNTIME_DEP_PKGS_CSWguile-dev += CSWlibgmp-dev CHECKPKG_OVERRIDES_CSWguile-dev += surplus-dependency|CSWlibgmp-dev -ARCHALL_CSWguile-dev = 1 -CHECKPKG_OVERRIDES_CSWguile-dev += archall-devel-package REINPLACE_WHEN_USRLOCAL = postinstall REINPLACE_USRLOCAL += /opt/csw/share/guile/2.0/guile-procedures.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Fri Aug 2 13:56:19 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Fri, 02 Aug 2013 11:56:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[21619] csw/mgar/pkg Message-ID: Revision: 21619 http://gar.svn.sourceforge.net/gar/?rev=21619&view=rev Author: cgrzemba Date: 2013-08-02 11:56:12 +0000 (Fri, 02 Aug 2013) Log Message: ----------- dspam/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/dspam/ csw/mgar/pkg/dspam/Makefile csw/mgar/pkg/dspam/branches/ csw/mgar/pkg/dspam/tags/ csw/mgar/pkg/dspam/trunk/ csw/mgar/pkg/dspam/trunk/Makefile csw/mgar/pkg/dspam/trunk/checksums csw/mgar/pkg/dspam/trunk/files/ Added: csw/mgar/pkg/dspam/Makefile =================================================================== --- csw/mgar/pkg/dspam/Makefile (rev 0) +++ csw/mgar/pkg/dspam/Makefile 2013-08-02 11:56:12 UTC (rev 21619) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/dspam/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/dspam/trunk/Makefile =================================================================== --- csw/mgar/pkg/dspam/trunk/Makefile (rev 0) +++ csw/mgar/pkg/dspam/trunk/Makefile 2013-08-02 11:56:12 UTC (rev 21619) @@ -0,0 +1,35 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = dspam +VERSION = 3.10.2 +GARTYPE = v2 + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(DISTNAME).tar.gz + +REINPLACE_USRLOCAL += src/config.h + +PACKAGES += CSWlibdspam7 +CATALOGNAME_CSWlibdspam7 = libdspam7 +PKGFILES_CSWlibdspam7 += $(call baseisadirs,$(libdir),libdspam\.so\.7\.0\.0) +PKGFILES_CSWlibdspam7 += $(call baseisadirs,$(libdir),libdspam\.so\.7(\.\d+)*) +SPKG_DESC_CSWlibdspam7 += $(DESCRIPTION), libdspam.so.7 +RUNTIME_DEP_PKGS_CSWdspam += CSWlibdspam7 + +PACKAGES += CSWdspam-dev +CATALOGNAME_CSWdspam-dev = dspam_dev +SPKG_DESC_CSWdspam-dev += $(DESCRIPTION), development files +PKGFILES_CSWdspam-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWdspam-dev += CSWlibdspam7 + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-dspam-home=$(localstatedir)/dspam + +include gar/category.mk + Property changes on: csw/mgar/pkg/dspam/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/dspam/trunk/checksums =================================================================== --- csw/mgar/pkg/dspam/trunk/checksums (rev 0) +++ csw/mgar/pkg/dspam/trunk/checksums 2013-08-02 11:56:12 UTC (rev 21619) @@ -0,0 +1 @@ +0e0e405d3284485b2a43f47eaf6b09bb dspam-3.10.2.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 Fri Aug 2 15:37:19 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Fri, 02 Aug 2013 13:37:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[21620] csw/mgar/pkg/dspam/trunk Message-ID: Revision: 21620 http://gar.svn.sourceforge.net/gar/?rev=21620&view=rev Author: cgrzemba Date: 2013-08-02 13:37:18 +0000 (Fri, 02 Aug 2013) Log Message: ----------- dspam/trunk: add license,user,group and docs Modified Paths: -------------- csw/mgar/pkg/dspam/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/dspam/trunk/files/CSWlibdspam7.cswusergroup Modified: csw/mgar/pkg/dspam/trunk/Makefile =================================================================== --- csw/mgar/pkg/dspam/trunk/Makefile 2013-08-02 11:56:12 UTC (rev 21619) +++ csw/mgar/pkg/dspam/trunk/Makefile 2013-08-02 13:37:18 UTC (rev 21620) @@ -5,13 +5,14 @@ VERSION = 3.10.2 GARTYPE = v2 -DESCRIPTION = Brief description +DESCRIPTION = Antispam Filter define BLURB - Long description + DSPAM is an adaptive spam filter which means it is capable of learning and adapting to each user's email. Instead of working off of a list of "rules" to identify spam, DSPAM's probabilistic engine examines the content of each message and learns what type of content the user deems as spam (or nonspam). endef MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(DISTNAME).tar.gz +LICENSE = LICENSE REINPLACE_USRLOCAL += src/config.h @@ -20,7 +21,11 @@ PKGFILES_CSWlibdspam7 += $(call baseisadirs,$(libdir),libdspam\.so\.7\.0\.0) PKGFILES_CSWlibdspam7 += $(call baseisadirs,$(libdir),libdspam\.so\.7(\.\d+)*) SPKG_DESC_CSWlibdspam7 += $(DESCRIPTION), libdspam.so.7 + +PACKAGES += CSWdspam +SPKG_DESC_CSWdspam += $(DESCRIPTION), tools RUNTIME_DEP_PKGS_CSWdspam += CSWlibdspam7 +CHECKPKG_OVERRIDES_CSWdspam += file-with-bad-content|/usr/local|root/etc/opt/csw/dspam.conf PACKAGES += CSWdspam-dev CATALOGNAME_CSWdspam-dev = dspam_dev @@ -28,8 +33,30 @@ PKGFILES_CSWdspam-dev += $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWdspam-dev += CSWlibdspam7 +USERGROUP = /etc/opt/csw/pkg/CSWdspam/cswusergroup + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-dspam-home=$(localstatedir)/dspam +CONFIGURE_ARGS += --enable-daemon +CONFIGURE_ARGS += --enable-split-configuration +CONFIGURE_ARGS += --enable-syslog +CONFIGURE_ARGS += --enable-clamav +CONFIGURE_ARGS += --enable-preferences-extension +CONFIGURE_ARGS += --enable-domain-scale +CONFIGURE_ARGS += --with-dspam-home-owner=dspam +CONFIGURE_ARGS += --with-dspam-home-group=dspam +CONFIGURE_ARGS += --with-dspam-owner=dspam +CONFIGURE_ARGS += --with-dspam-group=dspam +CONFIGURE_ARGS += --with-storage-driver=hash_drv,pgsql_drvmysql_drv +CONFIGURE_ARGS += --enable-long-usernames +CONFIGURE_ARGS += --enable-virtual-users include gar/category.mk +post-install: + ginstall -d $(DESTDIR)$(docdir)/$(NAME) + ginstall -m 444 $(WORKSRC)/RELEASE.NOTES $(DESTDIR)$(docdir)/$(NAME) + ginstall -m 444 $(WORKSRC)/README $(DESTDIR)$(docdir)/$(NAME) + ginstall -m 444 $(WORKSRC)/UPGRADING $(DESTDIR)$(docdir)/$(NAME) + ginstall -m 644 $(FILEDIR)/CSWdspam.cswusergroup $(DESTDIR)$(sysconfdir)/pkg/CSWdspam/cswusergroup + @$(MAKECOOKIE) Added: csw/mgar/pkg/dspam/trunk/files/CSWlibdspam7.cswusergroup =================================================================== --- csw/mgar/pkg/dspam/trunk/files/CSWlibdspam7.cswusergroup (rev 0) +++ csw/mgar/pkg/dspam/trunk/files/CSWlibdspam7.cswusergroup 2013-08-02 13:37:18 UTC (rev 21620) @@ -0,0 +1 @@ +dspam:dspam:dspam user:/var/opt/csw/dspam:/bin/false:: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Fri Aug 2 15:42:31 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Fri, 02 Aug 2013 13:42:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[21621] csw/mgar/pkg/dspam/trunk/files Message-ID: Revision: 21621 http://gar.svn.sourceforge.net/gar/?rev=21621&view=rev Author: cgrzemba Date: 2013-08-02 13:42:30 +0000 (Fri, 02 Aug 2013) Log Message: ----------- dspam/trunk: move usergroup file Added Paths: ----------- csw/mgar/pkg/dspam/trunk/files/CSWdspam.cswusergroup Removed Paths: ------------- csw/mgar/pkg/dspam/trunk/files/CSWlibdspam7.cswusergroup Copied: csw/mgar/pkg/dspam/trunk/files/CSWdspam.cswusergroup (from rev 21620, csw/mgar/pkg/dspam/trunk/files/CSWlibdspam7.cswusergroup) =================================================================== --- csw/mgar/pkg/dspam/trunk/files/CSWdspam.cswusergroup (rev 0) +++ csw/mgar/pkg/dspam/trunk/files/CSWdspam.cswusergroup 2013-08-02 13:42:30 UTC (rev 21621) @@ -0,0 +1 @@ +dspam:dspam:dspam user:/var/opt/csw/dspam:/bin/false:: Deleted: csw/mgar/pkg/dspam/trunk/files/CSWlibdspam7.cswusergroup =================================================================== --- csw/mgar/pkg/dspam/trunk/files/CSWlibdspam7.cswusergroup 2013-08-02 13:37:18 UTC (rev 21620) +++ csw/mgar/pkg/dspam/trunk/files/CSWlibdspam7.cswusergroup 2013-08-02 13:42:30 UTC (rev 21621) @@ -1 +0,0 @@ -dspam:dspam:dspam user:/var/opt/csw/dspam:/bin/false:: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Fri Aug 2 15:51:23 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Fri, 02 Aug 2013 13:51:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[21622] csw/mgar/pkg/dspam/trunk/Makefile Message-ID: Revision: 21622 http://gar.svn.sourceforge.net/gar/?rev=21622&view=rev Author: cgrzemba Date: 2013-08-02 13:51:21 +0000 (Fri, 02 Aug 2013) Log Message: ----------- dspam/trunk: create install dir for usergroup Modified Paths: -------------- csw/mgar/pkg/dspam/trunk/Makefile Modified: csw/mgar/pkg/dspam/trunk/Makefile =================================================================== --- csw/mgar/pkg/dspam/trunk/Makefile 2013-08-02 13:42:30 UTC (rev 21621) +++ csw/mgar/pkg/dspam/trunk/Makefile 2013-08-02 13:51:21 UTC (rev 21622) @@ -58,5 +58,6 @@ ginstall -m 444 $(WORKSRC)/RELEASE.NOTES $(DESTDIR)$(docdir)/$(NAME) ginstall -m 444 $(WORKSRC)/README $(DESTDIR)$(docdir)/$(NAME) ginstall -m 444 $(WORKSRC)/UPGRADING $(DESTDIR)$(docdir)/$(NAME) + ginstall -d $(DESTDIR)$(sysconfdir)/pkg/CSWdspam/cswusergroup ginstall -m 644 $(FILEDIR)/CSWdspam.cswusergroup $(DESTDIR)$(sysconfdir)/pkg/CSWdspam/cswusergroup @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 2 16:38:38 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 02 Aug 2013 14:38:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[21623] csw/mgar/pkg/pstoedit/trunk/Makefile Message-ID: Revision: 21623 http://gar.svn.sourceforge.net/gar/?rev=21623&view=rev Author: pfelecan Date: 2013-08-02 14:38:37 +0000 (Fri, 02 Aug 2013) Log Message: ----------- pstoedit/trunk: - version bump - link with some new graphic libraries recently released Modified Paths: -------------- csw/mgar/pkg/pstoedit/trunk/Makefile Modified: csw/mgar/pkg/pstoedit/trunk/Makefile =================================================================== --- csw/mgar/pkg/pstoedit/trunk/Makefile 2013-08-02 13:51:21 UTC (rev 21622) +++ csw/mgar/pkg/pstoedit/trunk/Makefile 2013-08-02 14:38:37 UTC (rev 21623) @@ -1,7 +1,7 @@ # $Id$ NAME = pstoedit -VERSION = 3.60 +VERSION = 3.62 GARTYPE = v2 DESCRIPTION = Translates PostScript and PDF files to editable vector graphics converter This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 2 16:55:57 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 02 Aug 2013 14:55:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[21624] csw/mgar/pkg/pstoedit/trunk Message-ID: Revision: 21624 http://gar.svn.sourceforge.net/gar/?rev=21624&view=rev Author: pfelecan Date: 2013-08-02 14:55:56 +0000 (Fri, 02 Aug 2013) Log Message: ----------- pstoedit/trunk: - checksum related to the version bump - add building of 64bit libraries Modified Paths: -------------- csw/mgar/pkg/pstoedit/trunk/Makefile csw/mgar/pkg/pstoedit/trunk/checksums Modified: csw/mgar/pkg/pstoedit/trunk/Makefile =================================================================== --- csw/mgar/pkg/pstoedit/trunk/Makefile 2013-08-02 14:38:37 UTC (rev 21623) +++ csw/mgar/pkg/pstoedit/trunk/Makefile 2013-08-02 14:55:56 UTC (rev 21624) @@ -22,6 +22,8 @@ PACKAGING_PLATFORMS = solaris10-sparc PACKAGING_PLATFORMS += solaris10-i386 +BUILD64_LIBS_ONLY = 1 + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-libplot CONFIGURE_ARGS += --without-emf @@ -34,7 +36,7 @@ SPKG_DESC_CSWpstoedit = $(DESCRIPTION) RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibpstoedit0 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgd2 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgd3 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagick++5 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagickcore5 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibplotter2 @@ -56,8 +58,6 @@ SPKG_DESC_CSWpstoedit-dev += $(DESCRIPTION), development files PKGFILES_CSWpstoedit-dev += /opt/csw/lib/libpstoedit.so PKGFILES_CSWpstoedit-dev += $(PKGFILES_DEVEL) -ARCHALL_CSWpstoedit-dev = 1 -CHECKPKG_OVERRIDES_CSWpstoedit-dev += archall-devel-package OBSOLETED_BY_CSWpstoedit-dev = CSWpstoeditdevel CATALOGNAME_CSWpstoeditdevel = pstoedit_devel_stub RUNTIME_DEP_PKGS_CSWpstoedit-dev += CSWlibpstoedit0 Modified: csw/mgar/pkg/pstoedit/trunk/checksums =================================================================== --- csw/mgar/pkg/pstoedit/trunk/checksums 2013-08-02 14:38:37 UTC (rev 21623) +++ csw/mgar/pkg/pstoedit/trunk/checksums 2013-08-02 14:55:56 UTC (rev 21624) @@ -1 +1 @@ -1bd14f33c1cf57bf6880e2f8f3f93080 pstoedit-3.60.tar.gz +d4ac408d93a8f57dcf0b261cef7785d8 pstoedit-3.62.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 2 17:17:41 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 02 Aug 2013 15:17:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[21625] csw/mgar/pkg/pstoedit/trunk/Makefile Message-ID: Revision: 21625 http://gar.svn.sourceforge.net/gar/?rev=21625&view=rev Author: pfelecan Date: 2013-08-02 15:17:40 +0000 (Fri, 02 Aug 2013) Log Message: ----------- pstoedit/trunk: tweak dependencies Modified Paths: -------------- csw/mgar/pkg/pstoedit/trunk/Makefile Modified: csw/mgar/pkg/pstoedit/trunk/Makefile =================================================================== --- csw/mgar/pkg/pstoedit/trunk/Makefile 2013-08-02 14:55:56 UTC (rev 21624) +++ csw/mgar/pkg/pstoedit/trunk/Makefile 2013-08-02 15:17:40 UTC (rev 21625) @@ -36,9 +36,6 @@ SPKG_DESC_CSWpstoedit = $(DESCRIPTION) RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibpstoedit0 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgd3 -RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagick++5 -RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagickcore5 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibplotter2 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibstdc++6 @@ -50,7 +47,7 @@ OBSOLETED_BY_CSWlibpstoedit0 = CSWpstoeditrt CATALOGNAME_CSWpstoeditrt = pstoedit_rt_stub RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibgd2 +RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibgd3 RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibstdc++6 PACKAGES += CSWpstoedit-dev This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 2 18:31:02 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 02 Aug 2013 16:31:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[21626] csw/mgar/pkg/emacs/trunk/Makefile Message-ID: Revision: 21626 http://gar.svn.sourceforge.net/gar/?rev=21626&view=rev Author: pfelecan Date: 2013-08-02 16:30:58 +0000 (Fri, 02 Aug 2013) Log Message: ----------- emacs/trunk: take into account new versions of some graphic libraries Modified Paths: -------------- csw/mgar/pkg/emacs/trunk/Makefile Modified: csw/mgar/pkg/emacs/trunk/Makefile =================================================================== --- csw/mgar/pkg/emacs/trunk/Makefile 2013-08-02 15:17:40 UTC (rev 21625) +++ csw/mgar/pkg/emacs/trunk/Makefile 2013-08-02 16:30:58 UTC (rev 21626) @@ -20,7 +20,6 @@ INSTALL_ARGS += PATH="/opt/csw/gnu:$$PATH" GARCOMPILER = GNU -#GCC4_VERSION = 4.7 BUILD_DEP_PKGS = CSWcoreutils BUILD_DEP_PKGS += CSWfconfig-dev @@ -270,7 +269,7 @@ RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibotf-utils RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibpng15-15 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibrsvg2-2 -RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibtiff3 +RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibtiff5 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibxft2 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibxpm4 @@ -310,7 +309,7 @@ RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibotf-utils RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibpng15-15 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibrsvg2-2 -RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibtiff3 +RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibtiff5 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibxft2 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibxpm4 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 Fri Aug 2 22:30:50 2013 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Fri, 02 Aug 2013 20:30:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[21627] csw/mgar/pkg/dovecot/trunk/files/cswdovecot Message-ID: Revision: 21627 http://gar.svn.sourceforge.net/gar/?rev=21627&view=rev Author: jake_goerzen Date: 2013-08-02 20:30:46 +0000 (Fri, 02 Aug 2013) Log Message: ----------- dovecot: fix bug 0005096: The cswdovecot method does not work with stop Modified Paths: -------------- csw/mgar/pkg/dovecot/trunk/files/cswdovecot Modified: csw/mgar/pkg/dovecot/trunk/files/cswdovecot =================================================================== --- csw/mgar/pkg/dovecot/trunk/files/cswdovecot 2013-08-02 16:30:58 UTC (rev 21626) +++ csw/mgar/pkg/dovecot/trunk/files/cswdovecot 2013-08-02 20:30:46 UTC (rev 21627) @@ -16,7 +16,7 @@ [ "`ulimit -n`" -lt 1024 ] && ulimit -n 1024 -base_dir=`$DAEMON -a|grep '^base_dir: '|sed 's/^base_dir: //'` +base_dir=`$DAEMON -a | sed -n 's/^base_dir[ ]*=[ ]*//p'` pidfile=$base_dir/master.pid if test -f $pidfile; then This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Fri Aug 2 23:05:32 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Fri, 02 Aug 2013 21:05:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[21628] csw/mgar/pkg/apcupsd/trunk/Makefile Message-ID: Revision: 21628 http://gar.svn.sourceforge.net/gar/?rev=21628&view=rev Author: lblume Date: 2013-08-02 21:05:31 +0000 (Fri, 02 Aug 2013) Log Message: ----------- apcupsd/trunk: Wrong path set for the config file; add preservation of scripts Modified Paths: -------------- csw/mgar/pkg/apcupsd/trunk/Makefile Modified: csw/mgar/pkg/apcupsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/apcupsd/trunk/Makefile 2013-08-02 20:30:46 UTC (rev 21627) +++ csw/mgar/pkg/apcupsd/trunk/Makefile 2013-08-02 21:05:31 UTC (rev 21628) @@ -104,10 +104,18 @@ EXTRA_PAX_ARGS += -s ',.*/apcupsd\.css$$,.$(sharedstatedir)/www/apcupsd/html/apcupsd.css,' INITSMF += $(sysconfdir)/init.d/cswapcupsd -PRESERVECONF += $(sysconfdir)/apcupsd.conf -PRESERVECONF += $(sysconfdir)/multimon.conf -PRESERVECONF += $(sysconfdir)/hosts.conf +PRESERVECONF += $(sysconfdir)/apcupsd/apcupsd.conf +PRESERVECONF += $(sysconfdir)/apcupsd/multimon.conf +PRESERVECONF += $(sysconfdir)/apcupsd/hosts.conf +# Scripts can be modified for site use too (email dest, mesg, ...) +PRESERVECONF += $(sysconfdir)/apcupsd/apccontrol +PRESERVECONF += $(sysconfdir)/apcupsd/changeme +PRESERVECONF += $(sysconfdir)/apcupsd/commfailure +PRESERVECONF += $(sysconfdir)/apcupsd/commok +PRESERVECONF += $(sysconfdir)/apcupsd/offbattery +PRESERVECONF += $(sysconfdir)/apcupsd/onbattery + #DISTRETC = init.d rc0.d rc1.d rc2.d APCUPSDDOC = COPYING ChangeLog DISCLAIMER Developers ReleaseNotes VERIFYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Fri Aug 2 23:15:43 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Fri, 02 Aug 2013 21:15:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[21629] csw/mgar/pkg/apcupsd/trunk/Makefile Message-ID: Revision: 21629 http://gar.svn.sourceforge.net/gar/?rev=21629&view=rev Author: lblume Date: 2013-08-02 21:15:36 +0000 (Fri, 02 Aug 2013) Log Message: ----------- apcupsd/trunk: Update dependency Modified Paths: -------------- csw/mgar/pkg/apcupsd/trunk/Makefile Modified: csw/mgar/pkg/apcupsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/apcupsd/trunk/Makefile 2013-08-02 21:05:31 UTC (rev 21628) +++ csw/mgar/pkg/apcupsd/trunk/Makefile 2013-08-02 21:15:36 UTC (rev 21629) @@ -52,7 +52,7 @@ PACKAGES += CSWapcups-cgi SPKG_DESC_CSWapcups-cgi = CGI scripts for apcupsd PKGFILES_CSWapcups-cgi += $(sharedstatedir)/www/.* -RUNTIME_DEP_PKGS_CSWapcups-cgi += CSWlibgd2 +RUNTIME_DEP_PKGS_CSWapcups-cgi += CSWlibgd3 # We need this for libusb and I definitely want this from Sun CHECKPKG_OVERRIDES_CSWapcups-cgi += bad-rpath-entry|/usr/sfw/lib|opt/csw/share/www/apcupsd/cgi/upsstats.cgi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Fri Aug 2 23:33:28 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Fri, 02 Aug 2013 21:33:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[21630] csw/mgar/gar/v2 Message-ID: Revision: 21630 http://gar.svn.sourceforge.net/gar/?rev=21630&view=rev Author: wahwah Date: 2013-08-02 21:33:24 +0000 (Fri, 02 Aug 2013) Log Message: ----------- mGARv2: Build Python modules for 2.6 and 2.7 Results are merged into dual-version module packages. Also, stop depending on CSWpython and/or CSWpython27. These dependencies aren't that useful anyway. Also attempt to choose the right compiler. Writeup: http://wiki.opencsw.org/python-module-locations Mailing list discussion: http://lists.opencsw.org/pipermail/maintainers/2013-August/018365.html Modified Paths: -------------- csw/mgar/gar/v2/categories/python/category.mk csw/mgar/gar/v2/gar.mk csw/mgar/gar/v2/lib/python/dependency_checks.py csw/mgar/gar/v2/lib/python/dependency_checks_test.py Modified: csw/mgar/gar/v2/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2/categories/python/category.mk 2013-08-02 21:15:36 UTC (rev 21629) +++ csw/mgar/gar/v2/categories/python/category.mk 2013-08-02 21:33:24 UTC (rev 21630) @@ -1,6 +1,3 @@ -# Add a dependency to CSWpython -_EXTRA_GAR_PKGS += $(PYTHON_PACKAGE) - # For the record, do not include the following line: # _MERGE_EXCLUDE_CATEGORY += .*\.egg-info.* # @@ -35,4 +32,23 @@ # versions of python too. SITE_PACKAGES = $(PYTHON_SITE_PACKAGES) +# Do not make all Python modules depend on the interpreter. With the +# dual-version packages we would have to make all modules depend on both +# Python versions. It's better to not depend on any Python version. +# _EXTRA_GAR_PKGS += $(PYTHON_PACKAGE_2_6) +# _EXTRA_GAR_PKGS += $(PYTHON_PACKAGE_2_7) + +# During the transition to Python 2.7, all modules are built for two Python +# versions: 2.6 and 2.7. This implies the dependency on both CSWpython and +# CSWpython27. +_CATEGORY_MODULATORS ?= PYTHON_VERSION +MODULATIONS_PYTHON_VERSION ?= 2_6 2_7 +MERGE_SCRIPTS_isa-default-python_version-2_6 ?= copy-all +MERGE_SCRIPTS_isa-default-python_version-2_7 ?= copy-all +MERGE_SCRIPTS_isa-default-python_version-3_3 ?= copy-all + include gar/gar.mk + +GARCOMPILER_PYTHON_2_6 = SOS12U3 +GARCOMPILER_PYTHON_2_7 = GNU +GARCOMPILER = $(GARCOMPILER_$(PYTHON_VERSION)) Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2013-08-02 21:15:36 UTC (rev 21629) +++ csw/mgar/gar/v2/gar.mk 2013-08-02 21:33:24 UTC (rev 21630) @@ -82,7 +82,7 @@ # ========================= MODULATIONS ======================== # The default is to modulate over ISAs -MODULATORS ?= ISA $(EXTRA_MODULATORS) $(EXTRA_MODULATORS_$(GARCH)) +MODULATORS ?= ISA $(_CATEGORY_MODULATORS) $(EXTRA_MODULATORS) $(EXTRA_MODULATORS_$(GARCH)) MODULATIONS_ISA = $(NEEDED_ISAS) tolower = $(shell echo $(1) | tr '[A-Z]' '[a-z]') Modified: csw/mgar/gar/v2/lib/python/dependency_checks.py =================================================================== --- csw/mgar/gar/v2/lib/python/dependency_checks.py 2013-08-02 21:15:36 UTC (rev 21629) +++ csw/mgar/gar/v2/lib/python/dependency_checks.py 2013-08-02 21:33:24 UTC (rev 21630) @@ -31,12 +31,13 @@ DEPENDENCY_FILENAME_REGEXES = ( (r".*\.pl$", (u"CSWperl",)), (r".*\.pm$", (u"CSWperl",)), - (r"/?opt/csw/lib/python(2\.6)?/(site-packages|lib-dynload)/.+\.py$", - (u"CSWpython",)), - (r"/?opt/csw/lib/python2\.7/(site-packages|lib-dynload)/.+\.py$", - (u"CSWpython27",)), - (r"/?opt/csw/lib/python3\.3/(site-packages|lib-dynload)/.+\.py$", - (u"CSWpython33",)), + # Do not make Python modules depend on Python. + # (r"/?opt/csw/lib/python(2\.6)?/(site-packages|lib-dynload)/.+\.py$", + # (u"CSWpython",)), + # (r"/?opt/csw/lib/python2\.7/(site-packages|lib-dynload)/.+\.py$", + # (u"CSWpython27",)), + # (r"/?opt/csw/lib/python3\.3/(site-packages|lib-dynload)/.+\.py$", + # (u"CSWpython33",)), (r".*\.rb$", (u"CSWruby", u"CSWruby18", u"CSWruby191", u"CSWlibruby1-9-1-1")), (r".*\.elc?$", (u"CSWemacs-common",)), (r"/opt/csw/apache2/", (u"CSWapache2",)), Modified: csw/mgar/gar/v2/lib/python/dependency_checks_test.py =================================================================== --- csw/mgar/gar/v2/lib/python/dependency_checks_test.py 2013-08-02 21:15:36 UTC (rev 21629) +++ csw/mgar/gar/v2/lib/python/dependency_checks_test.py 2013-08-02 21:33:24 UTC (rev 21630) @@ -237,43 +237,43 @@ None, None) self.mox.VerifyAll() - def testByFilenamePython(self): - self.pkg_data = copy.deepcopy(tree_stats[0]) - self.pkg_data["pkgmap"] = [ - {'class': 'none', 'line': 'not important', 'mode': '0755', - 'path': '/opt/csw/lib/python/site-packages/foo.py', - 'type': 'f', 'group': 'bin', 'user': 'root'}] - self.error_mgr_mock.NeedPackage('CSWtree', u'CSWpython', - "found file(s) matching " - "/?opt/csw/lib/python(2\\.6)?/(site-packages|lib-dynload)/.+" - "\\.py$, e.g. '/opt/csw/lib/python/site-packages/foo.py'") - self.mox.ReplayAll() - result = dependency_checks.ByFilename( - self.pkg_data, - self.error_mgr_mock, - self.logger_stub, - self.messenger_stub, - None, None) - self.mox.VerifyAll() + # def testByFilenamePython(self): + # self.pkg_data = copy.deepcopy(tree_stats[0]) + # self.pkg_data["pkgmap"] = [ + # {'class': 'none', 'line': 'not important', 'mode': '0755', + # 'path': '/opt/csw/lib/python/site-packages/foo.py', + # 'type': 'f', 'group': 'bin', 'user': 'root'}] + # self.error_mgr_mock.NeedPackage('CSWtree', u'CSWpython', + # "found file(s) matching " + # "/?opt/csw/lib/python(2\\.6)?/(site-packages|lib-dynload)/.+" + # "\\.py$, e.g. '/opt/csw/lib/python/site-packages/foo.py'") + # self.mox.ReplayAll() + # result = dependency_checks.ByFilename( + # self.pkg_data, + # self.error_mgr_mock, + # self.logger_stub, + # self.messenger_stub, + # None, None) + # self.mox.VerifyAll() - def testByFilenamePython27(self): - self.pkg_data = copy.deepcopy(tree_stats[0]) - self.pkg_data["pkgmap"] = [ - {'class': 'none', 'line': 'not important', 'mode': '0755', - 'path': '/opt/csw/lib/python2.7/site-packages/foo.py', - 'type': 'f', 'group': 'bin', 'user': 'root'}] - self.error_mgr_mock.NeedPackage('CSWtree', u'CSWpython27', - "found file(s) matching " - "/?opt/csw/lib/python2\\.7/(site-packages|lib-dynload)/.+" - "\\.py$, e.g. '/opt/csw/lib/python2.7/site-packages/foo.py'") - self.mox.ReplayAll() - result = dependency_checks.ByFilename( - self.pkg_data, - self.error_mgr_mock, - self.logger_stub, - self.messenger_stub, - None, None) - self.mox.VerifyAll() + # def testByFilenamePython27(self): + # self.pkg_data = copy.deepcopy(tree_stats[0]) + # self.pkg_data["pkgmap"] = [ + # {'class': 'none', 'line': 'not important', 'mode': '0755', + # 'path': '/opt/csw/lib/python2.7/site-packages/foo.py', + # 'type': 'f', 'group': 'bin', 'user': 'root'}] + # self.error_mgr_mock.NeedPackage('CSWtree', u'CSWpython27', + # "found file(s) matching " + # "/?opt/csw/lib/python2\\.7/(site-packages|lib-dynload)/.+" + # "\\.py$, e.g. '/opt/csw/lib/python2.7/site-packages/foo.py'") + # self.mox.ReplayAll() + # result = dependency_checks.ByFilename( + # self.pkg_data, + # self.error_mgr_mock, + # self.logger_stub, + # self.messenger_stub, + # None, None) + # self.mox.VerifyAll() def testLibraries_1(self): self.pkg_data = copy.deepcopy(tree_stats[0]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 3 11:53:13 2013 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 03 Aug 2013 09:53:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[21631] csw/mgar/pkg/mercurial/trunk Message-ID: Revision: 21631 http://gar.svn.sourceforge.net/gar/?rev=21631&view=rev Author: rthurner Date: 2013-08-03 09:53:11 +0000 (Sat, 03 Aug 2013) Log Message: ----------- mercurial, upgrade to hg-2.7 Modified Paths: -------------- csw/mgar/pkg/mercurial/trunk/Makefile csw/mgar/pkg/mercurial/trunk/checksums Modified: csw/mgar/pkg/mercurial/trunk/Makefile =================================================================== --- csw/mgar/pkg/mercurial/trunk/Makefile 2013-08-02 21:33:24 UTC (rev 21630) +++ csw/mgar/pkg/mercurial/trunk/Makefile 2013-08-03 09:53:11 UTC (rev 21631) @@ -1,5 +1,5 @@ NAME = mercurial -VERSION = 2.6.3 +VERSION = 2.7 CATEGORIES = python GARTYPE = v2 Modified: csw/mgar/pkg/mercurial/trunk/checksums =================================================================== --- csw/mgar/pkg/mercurial/trunk/checksums 2013-08-02 21:33:24 UTC (rev 21630) +++ csw/mgar/pkg/mercurial/trunk/checksums 2013-08-03 09:53:11 UTC (rev 21631) @@ -1 +1 @@ -99e311b2202057a259899f67b425e087 mercurial-2.6.3.tar.gz +61093c08ca5d8d1310382d17764f0c43 mercurial-2.7.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 3 11:54:41 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 03 Aug 2013 09:54:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[21632] csw/mgar/pkg/emacs/trunk/Makefile Message-ID: Revision: 21632 http://gar.svn.sourceforge.net/gar/?rev=21632&view=rev Author: pfelecan Date: 2013-08-03 09:54:38 +0000 (Sat, 03 Aug 2013) Log Message: ----------- emacs/trunk: adapt build requirements to packages name changes Modified Paths: -------------- csw/mgar/pkg/emacs/trunk/Makefile Modified: csw/mgar/pkg/emacs/trunk/Makefile =================================================================== --- csw/mgar/pkg/emacs/trunk/Makefile 2013-08-03 09:53:11 UTC (rev 21631) +++ csw/mgar/pkg/emacs/trunk/Makefile 2013-08-03 09:54:38 UTC (rev 21632) @@ -22,7 +22,7 @@ GARCOMPILER = GNU BUILD_DEP_PKGS = CSWcoreutils -BUILD_DEP_PKGS += CSWfconfig-dev +BUILD_DEP_PKGS += CSWfontconfig-dev BUILD_DEP_PKGS += CSWglib2devel BUILD_DEP_PKGS += CSWimagemagick-dev BUILD_DEP_PKGS += CSWlibatk-dev This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 3 12:11:50 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 03 Aug 2013 10:11:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[21633] csw/mgar/pkg/lang-python/unittest2/trunk/Makefile Message-ID: Revision: 21633 http://gar.svn.sourceforge.net/gar/?rev=21633&view=rev Author: wahwah Date: 2013-08-03 10:11:49 +0000 (Sat, 03 Aug 2013) Log Message: ----------- lang-python/unittest2/trunk: build for 2.6 only Modified Paths: -------------- csw/mgar/pkg/lang-python/unittest2/trunk/Makefile Modified: csw/mgar/pkg/lang-python/unittest2/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/unittest2/trunk/Makefile 2013-08-03 09:54:38 UTC (rev 21632) +++ csw/mgar/pkg/lang-python/unittest2/trunk/Makefile 2013-08-03 10:11:49 UTC (rev 21633) @@ -7,7 +7,9 @@ CATEGORIES = python GARTYPE = v2 DESCRIPTION = The new features in unittest for Python 2.7 backported to Python 2.3+ -define BLURB -endef + ARCHALL = 1 + +MODULATIONS_PYTHON_VERSION = 2_6 + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 3 12:12:13 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 03 Aug 2013 10:12:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[21634] csw/mgar/pkg/lang-python/argparse/trunk/Makefile Message-ID: Revision: 21634 http://gar.svn.sourceforge.net/gar/?rev=21634&view=rev Author: wahwah Date: 2013-08-03 10:12:13 +0000 (Sat, 03 Aug 2013) Log Message: ----------- lang-python/argparse/trunk: Build for 2.6 only Modified Paths: -------------- csw/mgar/pkg/lang-python/argparse/trunk/Makefile Modified: csw/mgar/pkg/lang-python/argparse/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/argparse/trunk/Makefile 2013-08-03 10:11:49 UTC (rev 21633) +++ csw/mgar/pkg/lang-python/argparse/trunk/Makefile 2013-08-03 10:12:13 UTC (rev 21634) @@ -17,4 +17,6 @@ PACKAGES = CSWpy-argparse ARCHALL_CSWpy-argparse = 1 +MODULATIONS_PYTHON_VERSION = 2_6 + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 3 12:12:30 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 03 Aug 2013 10:12:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[21635] csw/mgar/pkg/lang-python/ordereddict/trunk/Makefile Message-ID: Revision: 21635 http://gar.svn.sourceforge.net/gar/?rev=21635&view=rev Author: wahwah Date: 2013-08-03 10:12:30 +0000 (Sat, 03 Aug 2013) Log Message: ----------- lang-python/ordereddict/trunk: Build for 2.6 only Modified Paths: -------------- csw/mgar/pkg/lang-python/ordereddict/trunk/Makefile Modified: csw/mgar/pkg/lang-python/ordereddict/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/ordereddict/trunk/Makefile 2013-08-03 10:12:13 UTC (rev 21634) +++ csw/mgar/pkg/lang-python/ordereddict/trunk/Makefile 2013-08-03 10:12:30 UTC (rev 21635) @@ -7,17 +7,15 @@ CATEGORIES = python GARTYPE = v2 -DESCRIPTION = A drop-in substitute for Py2.7's new collections +DESCRIPTION = A drop-in substitute for Python 2.7 new collections -MASTER_SITES = $(PYPI_MIRROR) DISTFILES = $(DISTNAME).tar.gz - VENDOR_URL = http://pypi.python.org/pypi/ordereddict/1.1 +ARCHALL_CSWpy-$(NAME) = 1 -PACKAGES = CSWpy-ordereddict -ARCHALL_CSWpy-ordereddict = 1 - # There is no testsuite TEST_SCRIPTS = +MODULATIONS_PYTHON_VERSION = 2_6 + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 3 12:52:37 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 03 Aug 2013 10:52:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[21636] csw/mgar/pkg/lang-python/GeoIP-Python/trunk/ Makefile Message-ID: Revision: 21636 http://gar.svn.sourceforge.net/gar/?rev=21636&view=rev Author: wahwah Date: 2013-08-03 10:52:37 +0000 (Sat, 03 Aug 2013) Log Message: ----------- lang-python/GeoIP-Python/trunk: updates for Python 2.7 Modified Paths: -------------- csw/mgar/pkg/lang-python/GeoIP-Python/trunk/Makefile Modified: csw/mgar/pkg/lang-python/GeoIP-Python/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/GeoIP-Python/trunk/Makefile 2013-08-03 10:12:30 UTC (rev 21635) +++ csw/mgar/pkg/lang-python/GeoIP-Python/trunk/Makefile 2013-08-03 10:52:37 UTC (rev 21636) @@ -18,13 +18,15 @@ PACKAGES = CSWpy-geoip SPKG_DESC_CSWpy-geoip = Python GeoIP bindings +RUNTIME_DEP_PKGS_CSWpy-geoip += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWpy-geoip += CSWlibgeoip1 RUNTIME_DEP_PKGS_CSWpy-geoip += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWpy-geoip += CSWlibpython2-7-1-0 CHECKPKG_OVERRIDES_CSWpy-geoip += surplus-dependency|CSWpython # The testsuite is complicated to run, skip for now TEST_SCRIPTS = -STRIP_DIRS += $(DESTDIR)$(libdir)/python/site-packages +STRIP_DIRS += $(DESTDIR)$(SITE_PACKAGES) include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 3 13:43:56 2013 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 03 Aug 2013 11:43:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[21637] csw/mgar/pkg/mercurial/trunk/Makefile Message-ID: Revision: 21637 http://gar.svn.sourceforge.net/gar/?rev=21637&view=rev Author: rthurner Date: 2013-08-03 11:43:55 +0000 (Sat, 03 Aug 2013) Log Message: ----------- mercurial, remove dependendy to python, is implicity with package type python Modified Paths: -------------- csw/mgar/pkg/mercurial/trunk/Makefile Modified: csw/mgar/pkg/mercurial/trunk/Makefile =================================================================== --- csw/mgar/pkg/mercurial/trunk/Makefile 2013-08-03 10:52:37 UTC (rev 21636) +++ csw/mgar/pkg/mercurial/trunk/Makefile 2013-08-03 11:43:55 UTC (rev 21637) @@ -13,7 +13,6 @@ PACKAGES = CSWmercurial SPKG_DESC_CSWmercurial = Mercurial -RUNTIME_DEP_PKGS_CSWmercurial += CSWlibpython2-6-1-0 CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 3 17:27:09 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 03 Aug 2013 15:27:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[21638] csw/mgar/pkg/emacs/trunk/Makefile Message-ID: Revision: 21638 http://gar.svn.sourceforge.net/gar/?rev=21638&view=rev Author: pfelecan Date: 2013-08-03 15:27:06 +0000 (Sat, 03 Aug 2013) Log Message: ----------- emacs/trunk: adjusted dependecies Modified Paths: -------------- csw/mgar/pkg/emacs/trunk/Makefile Modified: csw/mgar/pkg/emacs/trunk/Makefile =================================================================== --- csw/mgar/pkg/emacs/trunk/Makefile 2013-08-03 11:43:55 UTC (rev 21637) +++ csw/mgar/pkg/emacs/trunk/Makefile 2013-08-03 15:27:06 UTC (rev 21638) @@ -259,14 +259,15 @@ RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibgif4 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibgio2-0-0 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibgnutls26 +RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibgnutls28 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibjpeg7 +RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibm17n-core0 +RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibm17n-flt0 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibm17n-utils -RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibmagickcore5 -RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibmagickwand5 +RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibmagickcore6q16hdri1 +RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibmagickwand6q16hdri1 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibncurses5 -RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibotf-utils RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibpng15-15 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibrsvg2-2 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibtiff5 @@ -298,13 +299,14 @@ RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibgif4 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibgio2-0-0 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibgnutls26 +RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibgnutls28 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibgtk-x11-2-0-0 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibjpeg7 -RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibm17n-utils -RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibmagickcore5 -RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibmagickwand5 +RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibm17n-core0 +RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibm17n-flt0 +RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibmagickcore6q16hdri1 +RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibmagickwand6q16hdri1 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibncurses5 RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibotf-utils RUNTIME_DEP_PKGS_CSWemacs-gtk += CSWlibpng15-15 @@ -328,7 +330,7 @@ CATALOGNAME_CSWemacsnox = emacs_nox_stub RUNTIME_DEP_PKGS_CSWemacs-nox = CSWemacs-bin-common RUNTIME_DEP_PKGS_CSWemacs-nox += CSWemacs-common -RUNTIME_DEP_PKGS_CSWemacs-nox += CSWlibgnutls26 +RUNTIME_DEP_PKGS_CSWemacs-nox += CSWlibgnutls28 RUNTIME_DEP_PKGS_CSWemacs-nox += CSWlibncurses5 RUNTIME_DEP_PKGS_CSWemacs-nox += CSWlibxml2-2 PKGFILES_CSWemacs-nox = /opt/csw/bin/emacs-nox This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 3 18:33:33 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 03 Aug 2013 16:33:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[21639] csw/mgar/pkg/emacs/trunk/Makefile Message-ID: Revision: 21639 http://gar.svn.sourceforge.net/gar/?rev=21639&view=rev Author: pfelecan Date: 2013-08-03 16:33:32 +0000 (Sat, 03 Aug 2013) Log Message: ----------- emacs/trunk: re-adjusted dependecies Modified Paths: -------------- csw/mgar/pkg/emacs/trunk/Makefile Modified: csw/mgar/pkg/emacs/trunk/Makefile =================================================================== --- csw/mgar/pkg/emacs/trunk/Makefile 2013-08-03 15:27:06 UTC (rev 21638) +++ csw/mgar/pkg/emacs/trunk/Makefile 2013-08-03 16:33:32 UTC (rev 21639) @@ -264,7 +264,7 @@ RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibjpeg7 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibm17n-core0 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibm17n-flt0 -RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibm17n-utils +RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibotf-utils RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibmagickcore6q16hdri1 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibmagickwand6q16hdri1 RUNTIME_DEP_PKGS_CSWemacs-athena += CSWlibncurses5 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 3 19:23:24 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 03 Aug 2013 17:23:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[21640] csw/mgar/pkg/guile/trunk/Makefile Message-ID: Revision: 21640 http://gar.svn.sourceforge.net/gar/?rev=21640&view=rev Author: pfelecan Date: 2013-08-03 17:23:21 +0000 (Sat, 03 Aug 2013) Log Message: ----------- guile/trunk: overrides for old clunker libraries that I' forced to bring over Modified Paths: -------------- csw/mgar/pkg/guile/trunk/Makefile Modified: csw/mgar/pkg/guile/trunk/Makefile =================================================================== --- csw/mgar/pkg/guile/trunk/Makefile 2013-08-03 16:33:32 UTC (rev 21639) +++ csw/mgar/pkg/guile/trunk/Makefile 2013-08-03 17:23:21 UTC (rev 21640) @@ -48,6 +48,7 @@ CHECKPKG_OVERRIDES_CSWguile += file-with-bad-content|/usr/share|root/opt/csw/share/info/guile.info-1 # even though I replace it in the sources ... CHECKPKG_OVERRIDES_CSWguile += file-with-bad-content|/usr/share|root/opt/csw/lib/guile/2.0/ccache/ice-9/slib.go +CHECKPKG_OVERRIDES_CSWguile += file-with-bad-content|/usr/share|root/opt/csw/lib/sparcv9/guile/2.0/ccache/ice-9/slib.go PACKAGES += CSWlibguile2-0-22 CATALOGNAME_CSWlibguile2-0-22 = libguile2_0_22 @@ -95,8 +96,12 @@ PKGFILES_CSWlibguile12 += $(call baseisadirs,$(libdir),libguile\.so\.12(\.\d+)*) SPKG_DESC_CSWlibguile12 += $(DESCRIPTION), libguile.so.12 RUNTIME_DEP_PKGS_CSWlibguile12 += CSWlibguile-ltdl1 -CHECKPKG_OVERRIDES_CSWlibguile12 += file-with-bad-content|/export/home|root/opt/csw/lib/libguile.so.12.3.0 -CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 +CHECKPKG_OVERRIDES_CSWlibguile12 += file-with-bad-content|/export/home|root/opt/csw/lib/libguile.so.12.3.0 +CHECKPKG_OVERRIDES_CSWlibguile12 += file-with-bad-content|/export/home|root/opt/csw/lib/sparcv9/libguile.so.12.3.0 +CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 +CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/sparcv9/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 +CHECKPKG_OVERRIDES_CSWlibguile12 += binary-disallowed-placement|file=opt/csw/lib/sparcv9/libguile.so.12.3.0|arch_id=2|arch_name=sparcv8|bad_path=sparcv9 +CHECKPKG_OVERRIDES_CSWlibguile-ltdl1 += binary-disallowed-placement|file=opt/csw/lib/sparcv9/libguile-ltdl.so.1.0.0|arch_id=2|arch_name=sparcv8|bad_path=sparcv9 PACKAGES += CSWguile-dev CATALOGNAME_CSWguile-dev = guile_dev @@ -118,6 +123,8 @@ # this is part of libcharset1 which is built from iconv: EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/charset.alias +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/sparcv9/charset.alias +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/amd64/charset.alias include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sun Aug 4 09:58:24 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sun, 04 Aug 2013 07:58:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[21641] csw/mgar/pkg/guile/trunk/Makefile Message-ID: Revision: 21641 http://gar.svn.sourceforge.net/gar/?rev=21641&view=rev Author: pfelecan Date: 2013-08-04 07:58:22 +0000 (Sun, 04 Aug 2013) Log Message: ----------- guile/trunk: remove old new flex path Modified Paths: -------------- csw/mgar/pkg/guile/trunk/Makefile Modified: csw/mgar/pkg/guile/trunk/Makefile =================================================================== --- csw/mgar/pkg/guile/trunk/Makefile 2013-08-03 17:23:21 UTC (rev 21640) +++ csw/mgar/pkg/guile/trunk/Makefile 2013-08-04 07:58:22 UTC (rev 21641) @@ -128,7 +128,7 @@ include gar/category.mk -PATH := /opt/csw/gnu:/opt/csw/libexec/flex-2.5.35/bin:$(PATH) +PATH := /opt/csw/gnu:$(PATH) # there are failing tests: # test-with-guile-module: needs more exploration, especially libgc debug This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sun Aug 4 15:01:18 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sun, 04 Aug 2013 13:01:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[21642] csw/mgar/pkg/guile/trunk/Makefile Message-ID: Revision: 21642 http://gar.svn.sourceforge.net/gar/?rev=21642&view=rev Author: pfelecan Date: 2013-08-04 13:01:15 +0000 (Sun, 04 Aug 2013) Log Message: ----------- guile/trunk: correct merge exclusion for 64 bit related components Modified Paths: -------------- csw/mgar/pkg/guile/trunk/Makefile Modified: csw/mgar/pkg/guile/trunk/Makefile =================================================================== --- csw/mgar/pkg/guile/trunk/Makefile 2013-08-04 07:58:22 UTC (rev 21641) +++ csw/mgar/pkg/guile/trunk/Makefile 2013-08-04 13:01:15 UTC (rev 21642) @@ -123,8 +123,7 @@ # this is part of libcharset1 which is built from iconv: EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/charset.alias -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/sparcv9/charset.alias -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/amd64/charset.alias +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/64/charset.alias include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sun Aug 4 15:35:02 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sun, 04 Aug 2013 13:35:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[21643] csw/mgar/pkg/qt4-gcc/trunk/Makefile Message-ID: Revision: 21643 http://gar.svn.sourceforge.net/gar/?rev=21643&view=rev Author: pfelecan Date: 2013-08-04 13:35:00 +0000 (Sun, 04 Aug 2013) Log Message: ----------- qt4-gcc/trunk: solved the issue with private headers being included in both -dev and -private-dev packages Modified Paths: -------------- csw/mgar/pkg/qt4-gcc/trunk/Makefile Modified: csw/mgar/pkg/qt4-gcc/trunk/Makefile =================================================================== --- csw/mgar/pkg/qt4-gcc/trunk/Makefile 2013-08-04 13:01:15 UTC (rev 21642) +++ csw/mgar/pkg/qt4-gcc/trunk/Makefile 2013-08-04 13:35:00 UTC (rev 21643) @@ -127,6 +127,15 @@ RUNTIME_DEP_PKGS_CSWlibqtgui4 += CSWlibfreetype6 CHECKPKG_OVERRIDES_CSWlibqtgui4 += file-with-bad-content|/usr/share|root/opt/csw/lib/libQtGui.so.$(VERSION) +PACKAGES += CSWqt4-private-dev +CATALOGNAME_CSWqt4-private-dev = qt4_private_dev +SPKG_DESC_CSWqt4-private-dev = $(DESCRIPTION), private development files +PKGFILES_CSWqt4-private-dev += $(includedir)/QtCore/private/.* +PKGFILES_CSWqt4-private-dev += $(includedir)/QtDeclarative/private/.* +PKGFILES_CSWqt4-private-dev += $(includedir)/QtGui/private/.* +PKGFILES_CSWqt4-private-dev += $(includedir)/QtScript/private/.* +ARCHALL_CSWqt4-private-dev = 1 + PACKAGES += CSWqt4-dev SPKG_DESC_CSWqt4-dev += $(DESCRIPTION), development files PKGFILES_CSWqt4-dev += $(PKGFILES_DEVEL) @@ -137,6 +146,7 @@ PKGFILES_CSWqt4-dev += $(libdir)/$(NAME)$(MAJOR)/demos/.* PKGFILES_CSWqt4-dev += $(libdir)/$(NAME)$(MAJOR)/imports/.* PKGFILES_CSWqt4-dev += $(sharedstatedir)/$(NAME)$(MAJOR)/mkspecs/.* +EXTRA_PKGFILES_EXCLUDED_CSWqt4-dev += $(PKGFILES_CSWqt4-private-dev) RUNTIME_DEP_PKGS_CSWqt4-dev += CSWlibqtscript4 RUNTIME_DEP_PKGS_CSWqt4-dev += CSWlibqtdesignercomponents4 RUNTIME_DEP_PKGS_CSWqt4-dev += CSWlibqtdesigner4 @@ -344,15 +354,6 @@ ARCHALL_CSWqt4-doc = 1 CHECKPKG_OVERRIDES_CSWqt4-doc += file-with-bad-content -PACKAGES += CSWqt4-private-dev -CATALOGNAME_CSWqt4-private-dev = qt4_private_dev -SPKG_DESC_CSWqt4-private-dev = $(DESCRIPTION), private development -PKGFILES_CSWqt4-private-dev += $(includedir)/QtCore/private/.* -PKGFILES_CSWqt4-private-dev += $(includedir)/QtDeclarative/private/.* -PKGFILES_CSWqt4-private-dev += $(includedir)/QtGui/private/.* -PKGFILES_CSWqt4-private-dev += $(includedir)/QtScript/private/.* -ARCHALL_CSWqt4-private-dev = 1 - include gar/category.mk PATH:=:/opt/csw/gnu:$(PATH) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sun Aug 4 15:50:01 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sun, 04 Aug 2013 13:50:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[21644] csw/mgar/pkg/qt4-gcc/trunk/Makefile Message-ID: Revision: 21644 http://gar.svn.sourceforge.net/gar/?rev=21644&view=rev Author: pfelecan Date: 2013-08-04 13:50:01 +0000 (Sun, 04 Aug 2013) Log Message: ----------- qt4-gcc/trunk: the private development package depends on the development package Modified Paths: -------------- csw/mgar/pkg/qt4-gcc/trunk/Makefile Modified: csw/mgar/pkg/qt4-gcc/trunk/Makefile =================================================================== --- csw/mgar/pkg/qt4-gcc/trunk/Makefile 2013-08-04 13:35:00 UTC (rev 21643) +++ csw/mgar/pkg/qt4-gcc/trunk/Makefile 2013-08-04 13:50:01 UTC (rev 21644) @@ -135,6 +135,8 @@ PKGFILES_CSWqt4-private-dev += $(includedir)/QtGui/private/.* PKGFILES_CSWqt4-private-dev += $(includedir)/QtScript/private/.* ARCHALL_CSWqt4-private-dev = 1 +RUNTIME_DEP_PKGS_CSWqt4-private-dev += CSWqt4-dev +CHECKPKG_OVERRIDES_CSWqt4-private-dev += surplus-dependency|CSWqt4-dev PACKAGES += CSWqt4-dev SPKG_DESC_CSWqt4-dev += $(DESCRIPTION), development files This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sun Aug 4 16:46:47 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sun, 04 Aug 2013 14:46:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[21645] csw/mgar/pkg/qt4-gcc/trunk/Makefile Message-ID: Revision: 21645 http://gar.svn.sourceforge.net/gar/?rev=21645&view=rev Author: pfelecan Date: 2013-08-04 14:46:47 +0000 (Sun, 04 Aug 2013) Log Message: ----------- qt4-gcc/trunk: completed the set of components of the private development package Modified Paths: -------------- csw/mgar/pkg/qt4-gcc/trunk/Makefile Modified: csw/mgar/pkg/qt4-gcc/trunk/Makefile =================================================================== --- csw/mgar/pkg/qt4-gcc/trunk/Makefile 2013-08-04 13:50:01 UTC (rev 21644) +++ csw/mgar/pkg/qt4-gcc/trunk/Makefile 2013-08-04 14:46:47 UTC (rev 21645) @@ -134,6 +134,7 @@ PKGFILES_CSWqt4-private-dev += $(includedir)/QtDeclarative/private/.* PKGFILES_CSWqt4-private-dev += $(includedir)/QtGui/private/.* PKGFILES_CSWqt4-private-dev += $(includedir)/QtScript/private/.* +PKGFILES_CSWqt4-private-dev += $(includedir)/src/.* ARCHALL_CSWqt4-private-dev = 1 RUNTIME_DEP_PKGS_CSWqt4-private-dev += CSWqt4-dev CHECKPKG_OVERRIDES_CSWqt4-private-dev += surplus-dependency|CSWqt4-dev @@ -368,8 +369,9 @@ # Ship private headers - ugly hack to build Qt Creator QML Designer; # adapted from Debian rules post-install: - gtar --directory=$(WORKSRC)/include/QtCore --create --file=- private | gtar --directory=$(DESTDIR)/$(includedir)/QtCore --extract --file=- - gtar --directory=$(WORKSRC)/include/QtDeclarative --create --file=- private | gtar --directory=$(DESTDIR)/$(includedir)/QtDeclarative --extract --file=- - gtar --directory=$(WORKSRC)/include/QtGui --create --file=- private | gtar --directory=$(DESTDIR)/$(includedir)/QtGui --extract --file=- - gtar --directory=$(WORKSRC)/include/QtScript --create --file=- private | gtar --directory=$(DESTDIR)/$(includedir)/QtScript --extract --file=- + gtar --directory=$(WORKSRC)/include/QtCore --create --file=- private | gtar --directory=$(DESTDIR)$(includedir)/QtCore --extract --file=- + gtar --directory=$(WORKSRC)/include/QtDeclarative --create --file=- private | gtar --directory=$(DESTDIR)$(includedir)/QtDeclarative --extract --file=- + gtar --directory=$(WORKSRC)/include/QtGui --create --file=- private | gtar --directory=$(DESTDIR)$(includedir)/QtGui --extract --file=- + gtar --directory=$(WORKSRC)/include/QtScript --create --file=- private | gtar --directory=$(DESTDIR)$(includedir)/QtScript --extract --file=- + cd $(WORKSRC) && gtar --create --file=- src/corelib/*/*_p.h src/declarative/*/*_p.h src/gui/*/*_p.h src/script/*/*_p.h | gtar --directory=$(DESTDIR)$(includedir) --extract --file=- $(MAKECOOKIE) 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 Aug 5 09:56:33 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 05 Aug 2013 07:56:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[21646] csw/mgar/pkg/ddrescue/trunk Message-ID: Revision: 21646 http://gar.svn.sourceforge.net/gar/?rev=21646&view=rev Author: dmichelsen Date: 2013-08-05 07:56:29 +0000 (Mon, 05 Aug 2013) Log Message: ----------- ddrescue/trunk: Update to 1.17 Modified Paths: -------------- csw/mgar/pkg/ddrescue/trunk/Makefile csw/mgar/pkg/ddrescue/trunk/checksums Modified: csw/mgar/pkg/ddrescue/trunk/Makefile =================================================================== --- csw/mgar/pkg/ddrescue/trunk/Makefile 2013-08-04 14:46:47 UTC (rev 21645) +++ csw/mgar/pkg/ddrescue/trunk/Makefile 2013-08-05 07:56:29 UTC (rev 21646) @@ -1,6 +1,6 @@ # : Makefile 9089 2010-03-11 08:34:46Z wahwah $ NAME = ddrescue -VERSION = 1.15 +VERSION = 1.17 GARTYPE = v2 DESCRIPTION = A data recovery tool Modified: csw/mgar/pkg/ddrescue/trunk/checksums =================================================================== --- csw/mgar/pkg/ddrescue/trunk/checksums 2013-08-04 14:46:47 UTC (rev 21645) +++ csw/mgar/pkg/ddrescue/trunk/checksums 2013-08-05 07:56:29 UTC (rev 21646) @@ -1 +1 @@ -c0566c2648c3738390a8dda2f37a9824 ddrescue-1.15.tar.lz +564469370fe70cd9ac280b15e1addc50 ddrescue-1.17.tar.lz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Aug 5 12:24:43 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 05 Aug 2013 10:24:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[21647] csw/mgar/pkg/guile/trunk/Makefile Message-ID: Revision: 21647 http://gar.svn.sourceforge.net/gar/?rev=21647&view=rev Author: pfelecan Date: 2013-08-05 10:24:39 +0000 (Mon, 05 Aug 2013) Log Message: ----------- guile/trunk: new overrides for the legacy libraries in a multi-platform context Modified Paths: -------------- csw/mgar/pkg/guile/trunk/Makefile Modified: csw/mgar/pkg/guile/trunk/Makefile =================================================================== --- csw/mgar/pkg/guile/trunk/Makefile 2013-08-05 07:56:29 UTC (rev 21646) +++ csw/mgar/pkg/guile/trunk/Makefile 2013-08-05 10:24:39 UTC (rev 21647) @@ -35,8 +35,12 @@ BUILD_DEP_PKGS += CSWlibffi-dev BUILD_DEP_PKGS += CSWlibreadline-dev +# the cheks takes a lot of time, especially when activating the 64 bit +# build; strangely, there is a test which loops forever on build farm's +# i386 server, for pentiumpro modulation; consequently, when building on the build farm, use SKIPTEST=1 in the invocation of mgar TEST_SCRIPTS = custom + PACKAGES += CSWguile CATALOGNAME_CSWguile = guile SPKG_DESC_CSWguile += $(DESCRIPTION) @@ -49,6 +53,7 @@ # even though I replace it in the sources ... CHECKPKG_OVERRIDES_CSWguile += file-with-bad-content|/usr/share|root/opt/csw/lib/guile/2.0/ccache/ice-9/slib.go CHECKPKG_OVERRIDES_CSWguile += file-with-bad-content|/usr/share|root/opt/csw/lib/sparcv9/guile/2.0/ccache/ice-9/slib.go +CHECKPKG_OVERRIDES_CSWguile += file-with-bad-content|/usr/share|root/opt/csw/lib/amd64/guile/2.0/ccache/ice-9/slib.go PACKAGES += CSWlibguile2-0-22 CATALOGNAME_CSWlibguile2-0-22 = libguile2_0_22 @@ -98,10 +103,14 @@ RUNTIME_DEP_PKGS_CSWlibguile12 += CSWlibguile-ltdl1 CHECKPKG_OVERRIDES_CSWlibguile12 += file-with-bad-content|/export/home|root/opt/csw/lib/libguile.so.12.3.0 CHECKPKG_OVERRIDES_CSWlibguile12 += file-with-bad-content|/export/home|root/opt/csw/lib/sparcv9/libguile.so.12.3.0 +CHECKPKG_OVERRIDES_CSWlibguile12 += binary-disallowed-placement|file=opt/csw/lib/amd64/libguile.so.12.3.0|arch_id=3|arch_name=i386|bad_path=amd64 +CHECKPKG_OVERRIDES_CSWlibguile12 += file-with-bad-content|/export/home|root/opt/csw/lib/amd64/libguile.so.12.3.0 CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/sparcv9/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 +CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/amd64/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 CHECKPKG_OVERRIDES_CSWlibguile12 += binary-disallowed-placement|file=opt/csw/lib/sparcv9/libguile.so.12.3.0|arch_id=2|arch_name=sparcv8|bad_path=sparcv9 CHECKPKG_OVERRIDES_CSWlibguile-ltdl1 += binary-disallowed-placement|file=opt/csw/lib/sparcv9/libguile-ltdl.so.1.0.0|arch_id=2|arch_name=sparcv8|bad_path=sparcv9 +CHECKPKG_OVERRIDES_CSWlibguile-ltdl1 += binary-disallowed-placement|file=opt/csw/lib/amd64/libguile-ltdl.so.1.0.0|arch_id=3|arch_name=i386|bad_path=amd64 PACKAGES += CSWguile-dev CATALOGNAME_CSWguile-dev = guile_dev This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 5 14:08:13 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 05 Aug 2013 12:08:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[21648] csw/mgar/pkg/lang-python/pycairo/branches/solaris-9 / Message-ID: Revision: 21648 http://gar.svn.sourceforge.net/gar/?rev=21648&view=rev Author: wahwah Date: 2013-08-05 12:08:11 +0000 (Mon, 05 Aug 2013) Log Message: ----------- pycairo: Try a Solaris 9 build Added Paths: ----------- csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 5 14:25:29 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 05 Aug 2013 12:25:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[21649] csw/mgar/pkg/lang-python/pycairo/branches/solaris-9 Message-ID: Revision: 21649 http://gar.svn.sourceforge.net/gar/?rev=21649&view=rev Author: wahwah Date: 2013-08-05 12:25:28 +0000 (Mon, 05 Aug 2013) Log Message: ----------- lang-python/pycairo/branches/solaris-9: A build for Solaris 9 Modified Paths: -------------- csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/Makefile csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/checksums Property Changed: ---------------- csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/Makefile Modified: csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/Makefile 2013-08-05 12:08:11 UTC (rev 21648) +++ csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/Makefile 2013-08-05 12:25:28 UTC (rev 21649) @@ -1,6 +1,8 @@ +# $Id$ + NAME = pycairo -VERSION = 1.8.10 -CATEGORIES = lib +VERSION = 1.4.12 +CATEGORIES = python GARTYPE = v2 DESCRIPTION = Python binding for Cairo library @@ -10,30 +12,31 @@ endef MASTER_SITES = http://www.cairographics.org/releases/ -DISTFILES = py2cairo-$(VERSION).tar.gz +DISTFILES = pycairo-$(VERSION).tar.gz -PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc +PACKAGING_PLATFORMS = solaris9-i386 solaris9-sparc -PYCOMPILE = 1 -# EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc -PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +PACKAGES = CSWpycairo +SPKG_DESC_CSWpycairo = $(DESCRIPTION); main -PACKAGES = CSWpy-cairo -SPKG_DESC_CSWpy-cairo = $(DESCRIPTION); main -OBSOLETED_BY_CSWpy-cairo = CSWpycairo -RUNTIME_DEP_PKGS_CSWpy-cairo += CSWpython -RUNTIME_DEP_PKGS_CSWpy-cairo += CSWlibcairo2 - -# We define upstream file regex so we can be notifed of -# new upstream software release -UFILES_REGEX = py2cairo-(\d+(?:\.\d+)*).tar.gz - CAIRO_LIBS = -L/opt/csw/lib -R/opt/csw/lib/\$$ISALIST -lcairo CAIRO_CFLAGS = -I/opt/csw/include -I/opt/csw/include/cairo -EXTRA_CONFIGURE_EXPORTS += CAIRO_LIBS CAIRO_CFLAGS +EXTRA_BUILD_EXPORTS += CAIRO_LIBS CAIRO_CFLAGS -CONFIGURE_ARGS = $(DIRPATHS) +LICENSE = COPYING-LGPL-2.1 +MODULATIONS_PYTHON_VERSION = 2_6 + +TEST_SCRIPTS = + +RUNTIME_DEP_PKGS_CSWpycairo += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWpycairo += CSWlibcairo2 + +# Solaris 9 specifics. +CHECKPKG_OVERRIDES_CSWpycairo += pkgname-does-not-start-with-CSWpy- +CHECKPKG_OVERRIDES_CSWpycairo += catalogname-does-not-start-with-py_ + include gar/category.mk +GARCOMPILER := SOS12 Property changes on: csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/checksums =================================================================== --- csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/checksums 2013-08-05 12:08:11 UTC (rev 21648) +++ csw/mgar/pkg/lang-python/pycairo/branches/solaris-9/checksums 2013-08-05 12:25:28 UTC (rev 21649) @@ -1 +1 @@ -87421a6a70304120555ba7ba238f3dc3 py2cairo-1.8.10.tar.gz +c63199d35b1e1d3c5133509f315f70d7 pycairo-1.4.12.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 5 14:39:46 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 05 Aug 2013 12:39:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[21650] csw/mgar/pkg/cswutils/trunk/Makefile Message-ID: Revision: 21650 http://gar.svn.sourceforge.net/gar/?rev=21650&view=rev Author: wahwah Date: 2013-08-05 12:39:46 +0000 (Mon, 05 Aug 2013) Log Message: ----------- cswutils/trunk: Build for Solaris 9 too. Modified Paths: -------------- csw/mgar/pkg/cswutils/trunk/Makefile Modified: csw/mgar/pkg/cswutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswutils/trunk/Makefile 2013-08-05 12:25:28 UTC (rev 21649) +++ csw/mgar/pkg/cswutils/trunk/Makefile 2013-08-05 12:39:46 UTC (rev 21650) @@ -15,6 +15,9 @@ MASTER_SITES = +PACKAGING_PLATFORMS = solaris9-i386 solaris9-sparc +PACKAGING_PLATFORMS += solaris10-i386 solaris10-sparc + DISTFILES = COPYING DISTFILES += checkpkg checkpkg.8 DISTFILES += cpan2pkg This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 5 15:10:42 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 05 Aug 2013 13:10:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[21651] csw/mgar/pkg/cswclassutils/trunk/Makefile Message-ID: Revision: 21651 http://gar.svn.sourceforge.net/gar/?rev=21651&view=rev Author: wahwah Date: 2013-08-05 13:10:41 +0000 (Mon, 05 Aug 2013) Log Message: ----------- cswclassutils/trunk: Build on Solaris 9 too Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/Makefile Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/Makefile 2013-08-05 12:39:46 UTC (rev 21650) +++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2013-08-05 13:10:41 UTC (rev 21651) @@ -4,6 +4,9 @@ VERSION = 1.49 GARTYPE = v2 +PACKAGING_PLATFORMS = solaris9-i386 solaris9-sparc +PACKAGING_PLATFORMS += solaris10-i386 solaris10-sparc + # a few handy functions for defining 'generic' things dynamically set = $(eval $1 := $2) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Mon Aug 5 16:17:36 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Mon, 05 Aug 2013 14:17:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[21652] csw/mgar/pkg/samba/branches/samba3 Message-ID: Revision: 21652 http://gar.svn.sourceforge.net/gar/?rev=21652&view=rev Author: lblume Date: 2013-08-05 14:17:34 +0000 (Mon, 05 Aug 2013) Log Message: ----------- samba/branches/samba3: Bump to 3.6.17 Modified Paths: -------------- csw/mgar/pkg/samba/branches/samba3/Makefile csw/mgar/pkg/samba/branches/samba3/checksums Modified: csw/mgar/pkg/samba/branches/samba3/Makefile =================================================================== --- csw/mgar/pkg/samba/branches/samba3/Makefile 2013-08-05 13:10:41 UTC (rev 21651) +++ csw/mgar/pkg/samba/branches/samba3/Makefile 2013-08-05 14:17:34 UTC (rev 21652) @@ -2,7 +2,7 @@ # - Check http://src.opensolaris.org/source/xref/userland/src/components/samba/samba/ from time to time NAME = samba -VERSION = 3.6.16 +VERSION = 3.6.17 GARTYPE = v2 DESCRIPTION = Tools to access a servers filespace and printers via SMB (server) Modified: csw/mgar/pkg/samba/branches/samba3/checksums =================================================================== --- csw/mgar/pkg/samba/branches/samba3/checksums 2013-08-05 13:10:41 UTC (rev 21651) +++ csw/mgar/pkg/samba/branches/samba3/checksums 2013-08-05 14:17:34 UTC (rev 21652) @@ -1 +1 @@ -12c6785802813c2c5bf66e5c4c4e1d93 samba-3.6.16.tar.gz +c67c3330545c8f1f7ee26e017c28439b samba-3.6.17.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 Mon Aug 5 18:10:43 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Mon, 05 Aug 2013 16:10:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[21653] csw/mgar/pkg/graphviz/trunk/Makefile Message-ID: Revision: 21653 http://gar.svn.sourceforge.net/gar/?rev=21653&view=rev Author: lblume Date: 2013-08-05 16:10:41 +0000 (Mon, 05 Aug 2013) Log Message: ----------- graphviz/trunk: Bump to 2.32.0; Rename python package to conform to standard Modified Paths: -------------- csw/mgar/pkg/graphviz/trunk/Makefile Modified: csw/mgar/pkg/graphviz/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-05 14:17:34 UTC (rev 21652) +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-05 16:10:41 UTC (rev 21653) @@ -4,7 +4,7 @@ # investigated. NAME = graphviz -VERSION = 2.30.1 +VERSION = 2.32.0 GARTYPE = v2 DESCRIPTION = Graph visualization tools @@ -45,6 +45,7 @@ BUILD_DEP_PKGS += CSWswig BUILD_DEP_PKGS += CSWlibgc-dev BUILD_DEP_PKGS += CSWpython27-dev +BUILD_DEP_PKGS += CSWpoppler-dev # This is a compatibility package which should go away after some time. # It only contains a link to CSWgraphviz. @@ -237,24 +238,21 @@ PKGFILES_CSWgraphvizphp += $(mandir)/man3/.*\.3php PKGFILES_CSWgraphvizphp += $(sharedstatedir)/graphviz/demo/.*\.php -PACKAGES += CSWgraphvizpython -SPKG_DESC_CSWgraphvizpython = Graphviz language binding for python -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWpython27 -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibgvc6 -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibstdc++6 -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibcgraph6 -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibgcc-s1 -PKGFILES_CSWgraphvizpython += $(call baseisadirs,$(libdir),graphviz/python.*) -PKGFILES_CSWgraphvizpython += $(call baseisadirs,$(libdir),python.*) -PKGFILES_CSWgraphvizpython += $(mandir)/man3/.*\.3python -PKGFILES_CSWgraphvizpython += $(sharedstatedir)/graphviz/demo/.*\.py +PACKAGES += CSWpy-graphviz +SPKG_DESC_CSWpy-graphviz = Graphviz language binding for python +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWpython27 +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWlibgvc6 +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWlibcgraph6 +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWlibgcc-s1 +PKGFILES_CSWpy-graphviz += $(call baseisadirs,$(libdir),graphviz/python.*) +PKGFILES_CSWpy-graphviz += $(call baseisadirs,$(libdir),python.*) +PKGFILES_CSWpy-graphviz += $(mandir)/man3/.*\.3python +PKGFILES_CSWpy-graphviz += $(sharedstatedir)/graphviz/demo/.*\.py # Keep the right Python as a dependency -CHECKPKG_OVERRIDES_CSWgraphvizpython += surplus-dependency|CSWpython27 +CHECKPKG_OVERRIDES_CSWpy-graphviz += surplus-dependency|CSWpython27 # No 64 bit python -CHECKPKG_OVERRIDES_CSWgraphvizpython += 64-bit-binaries-missing -# Those ones should be considered -CHECKPKG_OVERRIDES_CSWgraphvizpython += pkgname-does-not-start-with-CSWpy- -CHECKPKG_OVERRIDES_CSWgraphvizpython += catalogname-does-not-start-with-py_ +CHECKPKG_OVERRIDES_CSWpy-graphviz += 64-bit-binaries-missing #PACKAGES += CSWgraphvizr SPKG_DESC_CSWgraphvizr = Graphviz language binding for R This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dam at opencsw.org Mon Aug 5 19:02:28 2013 From: dam at opencsw.org (Dagobert Michelsen) Date: Mon, 5 Aug 2013 19:02:28 +0200 Subject: [csw-devel] SF.net SVN: gar:[21653] csw/mgar/pkg/graphviz/trunk/Makefile In-Reply-To: References: Message-ID: <26EE8805-BF4C-4BBA-97FF-DCCFEB88E597@opencsw.org> Hi Laurent, Am 05.08.2013 um 18:10 schrieb lblume at users.sourceforge.net: > Revision: 21653 > http://gar.svn.sourceforge.net/gar/?rev=21653&view=rev > Author: lblume > Date: 2013-08-05 16:10:41 +0000 (Mon, 05 Aug 2013) > Log Message: > ----------- > graphviz/trunk: Bump to 2.32.0; Rename python package to conform to standard > > Modified Paths: > -------------- > csw/mgar/pkg/graphviz/trunk/Makefile > > Modified: csw/mgar/pkg/graphviz/trunk/Makefile > =================================================================== > --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-05 14:17:34 UTC (rev 21652) > +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-05 16:10:41 UTC (rev 21653) > @@ -4,7 +4,7 @@ > # investigated. > > NAME = graphviz > -VERSION = 2.30.1 > +VERSION = 2.32.0 > GARTYPE = v2 > > DESCRIPTION = Graph visualization tools > @@ -45,6 +45,7 @@ > BUILD_DEP_PKGS += CSWswig > BUILD_DEP_PKGS += CSWlibgc-dev > BUILD_DEP_PKGS += CSWpython27-dev > +BUILD_DEP_PKGS += CSWpoppler-dev > > # This is a compatibility package which should go away after some time. > # It only contains a link to CSWgraphviz. > @@ -237,24 +238,21 @@ > PKGFILES_CSWgraphvizphp += $(mandir)/man3/.*\.3php > PKGFILES_CSWgraphvizphp += $(sharedstatedir)/graphviz/demo/.*\.php > > -PACKAGES += CSWgraphvizpython > -SPKG_DESC_CSWgraphvizpython = Graphviz language binding for python > -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWpython27 > -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibgvc6 > -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibstdc++6 > -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibcgraph6 > -RUNTIME_DEP_PKGS_CSWgraphvizpython += CSWlibgcc-s1 > -PKGFILES_CSWgraphvizpython += $(call baseisadirs,$(libdir),graphviz/python.*) > -PKGFILES_CSWgraphvizpython += $(call baseisadirs,$(libdir),python.*) > -PKGFILES_CSWgraphvizpython += $(mandir)/man3/.*\.3python > -PKGFILES_CSWgraphvizpython += $(sharedstatedir)/graphviz/demo/.*\.py > +PACKAGES += CSWpy-graphviz Please keep in mind to add OBSOLETED_BY_CSWpy-graphviz = CSWgraphvizpython Best regards -- Dago > +SPKG_DESC_CSWpy-graphviz = Graphviz language binding for python > +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWpython27 > +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWlibgvc6 > +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWlibstdc++6 > +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWlibcgraph6 > +RUNTIME_DEP_PKGS_CSWpy-graphviz += CSWlibgcc-s1 > +PKGFILES_CSWpy-graphviz += $(call baseisadirs,$(libdir),graphviz/python.*) > +PKGFILES_CSWpy-graphviz += $(call baseisadirs,$(libdir),python.*) > +PKGFILES_CSWpy-graphviz += $(mandir)/man3/.*\.3python > +PKGFILES_CSWpy-graphviz += $(sharedstatedir)/graphviz/demo/.*\.py > # Keep the right Python as a dependency > -CHECKPKG_OVERRIDES_CSWgraphvizpython += surplus-dependency|CSWpython27 > +CHECKPKG_OVERRIDES_CSWpy-graphviz += surplus-dependency|CSWpython27 > # No 64 bit python > -CHECKPKG_OVERRIDES_CSWgraphvizpython += 64-bit-binaries-missing > -# Those ones should be considered > -CHECKPKG_OVERRIDES_CSWgraphvizpython += pkgname-does-not-start-with-CSWpy- > -CHECKPKG_OVERRIDES_CSWgraphvizpython += catalogname-does-not-start-with-py_ > +CHECKPKG_OVERRIDES_CSWpy-graphviz += 64-bit-binaries-missing > > #PACKAGES += CSWgraphvizr > SPKG_DESC_CSWgraphvizr = Graphviz language binding for R > > This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. > > _______________________________________________ > devel mailing list > devel at lists.opencsw.org > https://lists.opencsw.org/mailman/listinfo/devel From lblume at users.sourceforge.net Mon Aug 5 21:28:31 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Mon, 05 Aug 2013 19:28:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[21654] csw/mgar/pkg/graphviz/trunk Message-ID: Revision: 21654 http://gar.svn.sourceforge.net/gar/?rev=21654&view=rev Author: lblume Date: 2013-08-05 19:28:29 +0000 (Mon, 05 Aug 2013) Log Message: ----------- graphviz/trunk: Clean up the python binding package Modified Paths: -------------- csw/mgar/pkg/graphviz/trunk/Makefile csw/mgar/pkg/graphviz/trunk/checksums Modified: csw/mgar/pkg/graphviz/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-05 16:10:41 UTC (rev 21653) +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-05 19:28:29 UTC (rev 21654) @@ -21,13 +21,6 @@ GARCOMPILER = GCC4 PATCHFILES += 0001_configure_tcl_bin_path_not_good_for_64bit.patch -PATCHFILES += 0002_configure_guile_version_detection_needs_gsed.patch -#PATCHFILES += configure.patch -#PATCHFILES += Makefile.am.patch -#PATCHFILES += trapezoid.c.patch -#PATCHFILES += post_process.c.patch -#PATCHFILES += gvpr_Makefile.am.patch -#PATCHFILES += gv_Makefile.am.patch INCOMPATIBLE_PKGS = CSWgraphvis # defer for some time to allow CSWgraphviz2 upgrades @@ -249,10 +242,11 @@ PKGFILES_CSWpy-graphviz += $(call baseisadirs,$(libdir),python.*) PKGFILES_CSWpy-graphviz += $(mandir)/man3/.*\.3python PKGFILES_CSWpy-graphviz += $(sharedstatedir)/graphviz/demo/.*\.py -# Keep the right Python as a dependency -CHECKPKG_OVERRIDES_CSWpy-graphviz += surplus-dependency|CSWpython27 +OBSOLETED_BY_CSWpy-graphviz = CSWgraphvizpython # No 64 bit python CHECKPKG_OVERRIDES_CSWpy-graphviz += 64-bit-binaries-missing +# Python 2.6 won't work +CHECKPKG_OVERRIDES_CSWpy-graphviz += python-package-missing-py26-files #PACKAGES += CSWgraphvizr SPKG_DESC_CSWgraphvizr = Graphviz language binding for R @@ -418,3 +412,7 @@ CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/sparcv8plus/gvpr_static include gar/category.mk + +# gsed is needed by configure +PATH := /opt/csw/gnu:$(PATH) + Modified: csw/mgar/pkg/graphviz/trunk/checksums =================================================================== --- csw/mgar/pkg/graphviz/trunk/checksums 2013-08-05 16:10:41 UTC (rev 21653) +++ csw/mgar/pkg/graphviz/trunk/checksums 2013-08-05 19:28:29 UTC (rev 21654) @@ -1 +1 @@ -8130785a8f1fb8a57f6b839b617e85fa graphviz-2.30.1.tar.gz +deda3933da701e2cc9ad968249a0b096 graphviz-2.32.0.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 Aug 6 09:45:55 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 06 Aug 2013 07:45:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[21655] csw/mgar/pkg/graphviz/trunk/Makefile Message-ID: Revision: 21655 http://gar.svn.sourceforge.net/gar/?rev=21655&view=rev Author: lblume Date: 2013-08-06 07:45:49 +0000 (Tue, 06 Aug 2013) Log Message: ----------- graphviz/trunk: Disable building the static libraries; enable 64 bit guile bindings Modified Paths: -------------- csw/mgar/pkg/graphviz/trunk/Makefile Modified: csw/mgar/pkg/graphviz/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-05 19:28:29 UTC (rev 21654) +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-06 07:45:49 UTC (rev 21655) @@ -156,11 +156,9 @@ RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibguile2-0-22 RUNTIME_DEP_PKGS_CSWgraphvizguile += CSWlibcgraph6 -PKGFILES_CSWgraphvizguile = $(libdir)/graphviz/guile/.* +PKGFILES_CSWgraphvizguile += $(call baseisadirs,$(libdir),graphviz/guile/.*) PKGFILES_CSWgraphvizguile += $(mandir)/man3/.*\.3guile PKGFILES_CSWgraphvizguile += $(sharedstatedir)/graphviz/demo/.*\.guile -# No 64 bit guile -CHECKPKG_OVERRIDES_CSWgraphvizguile += 64-bit-binaries-missing #PACKAGES += CSWgraphvizjava SPKG_DESC_CSWgraphvizjava = Graphviz language binding for java @@ -374,7 +372,8 @@ CONFIGURE_ARGS += --disable-ocaml CONFIGURE_ARGS += --disable-php CONFIGURE_ARGS += --disable-r -CONFIGURE_ARGS += --enable-static --enable-shared +CONFIGURE_ARGS += --enable-shared +CONFIGURE_ARGS += --enable-static=no CONFIGURE_ARGS += --disable-silent-rules CONFIGURE_ARGS += "PANGOCAIRO_CFLAGS=`pkg-config --cflags pangocairo`" @@ -385,9 +384,6 @@ # Also, no 64 bit perl CONFIGURE_ARGS-isa-amd64 += --enable-perl=no CONFIGURE_ARGS-isa-sparcv9 += --enable-perl=no -# No 64 bit guile -CONFIGURE_ARGS-isa-amd64 += --enable-guile=no -CONFIGURE_ARGS-isa-sparcv9 += --enable-guile=no # No 64 bit Ruby CONFIGURE_ARGS-isa-amd64 += --enable-ruby=no CONFIGURE_ARGS-isa-sparcv9 += --enable-ruby=no 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 Aug 6 13:59:46 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 06 Aug 2013 11:59:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[21656] csw/mgar/pkg/liblasi/trunk Message-ID: Revision: 21656 http://gar.svn.sourceforge.net/gar/?rev=21656&view=rev Author: lblume Date: 2013-08-06 11:59:44 +0000 (Tue, 06 Aug 2013) Log Message: ----------- liblasi/trunk: Bump version to 1.1.1; switch compiler to GCC4; clean up deps Modified Paths: -------------- csw/mgar/pkg/liblasi/trunk/Makefile csw/mgar/pkg/liblasi/trunk/checksums Modified: csw/mgar/pkg/liblasi/trunk/Makefile =================================================================== --- csw/mgar/pkg/liblasi/trunk/Makefile 2013-08-06 07:45:49 UTC (rev 21655) +++ csw/mgar/pkg/liblasi/trunk/Makefile 2013-08-06 11:59:44 UTC (rev 21656) @@ -1,5 +1,5 @@ NAME = liblasi -VERSION = 1.1.0 +VERSION = 1.1.1 GARTYPE = v2 DESCRIPTION = C++ Unicode support for PostScript @@ -26,31 +26,36 @@ DISTNAME = $(SOURCENAME)-$(VERSION) DISTFILES = $(DISTNAME).tar.gz -PATCHFILES = liblasi-consts.diff - VENDOR_URL = http://unifont.org/lasi/ -PACKAGES += CSWliblasi0 -SPKG_DESC_CSWliblasi0 = C++ Unicode support for PostScript, libLASi.so.0 -PKGFILES_CSWliblasi0 = $(call pkgfiles_lib,libLASi.so.0) -RUNTIME_DEP_PKGS_CSWliblasi0 += CSWftype2 -RUNTIME_DEP_PKGS_CSWliblasi0 += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWliblasi0 += CSWglib2 -RUNTIME_DEP_PKGS_CSWliblasi0 += CSWpango -RUNTIME_DEP_PKGS_CSWliblasi0 += CSWfconfig -OBSOLETED_BY_CSWliblasi0 = CSWliblasi +GARCOMPILER = GCC4 +PACKAGES += CSWliblasi1 +SPKG_DESC_CSWliblasi1 = C++ Unicode support for PostScript, libLASi.so.1 +PKGFILES_CSWliblasi1 = $(call pkgfiles_lib,libLASi.so.1) +RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibfontconfig1 +RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWliblasi1 += CSWpango +OBSOLETED_BY_CSWliblasi1 = CSWliblasi +# A lot of those, but the test returns nothing, so false positive +CHECKPKG_OVERRIDES_CSWliblasi1 += no-direct-binding + PACKAGES += CSWliblasi-dev SPKG_DESC_CSWliblasi-dev = Developer support for libLASi.so.0 PKGFILES_CSWliblasi-dev += $(PKGFILES_DEVEL) PKGFILES_CSWliblasi-dev += $(sharedstatedir)/doc/.* -RUNTIME_DEP_PKGS_CSWliblasi-dev += CSWliblasi0 -# That is ok -CHECKPKG_OVERRIDES_CSWliblasi-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/liblasi/examples/README +RUNTIME_DEP_PKGS_CSWliblasi-dev += CSWliblasi1 BUILD64_LIBS_ONLY = 1 -EXTRA_CXX_FLAGS = -lCstd -norunpath +# It doesn't remove the no-direct-binding errors, but it shouldn't hurt either +EXTRA_LD_OPTIONS = -z nolazyload CONFIGURE_SCRIPTS = custom BUILD_SCRIPTS = custom @@ -63,15 +68,16 @@ @echo " ==> Configuring $(NAME) (custom)" @( cd $(WORKSRC) ; \ cmake -DCMAKE_INSTALL_PREFIX="$(prefix)" \ - -DCMAKE_INSTALL_EXEC_PREFIX:PATH="$(exec_prefix)" \ - -DCMAKE_INSTALL_BINDIR:PATH="$(bindir)" \ - -DCMAKE_INSTALL_DATADIR:PATH="$(datadir)" \ - -DCMAKE_INSTALL_LIBDIR:PATH="$(libdir)" \ - -DCMAKE_INSTALL_INCLUDEDIR:PATH="$(includedir)" \ - -DCMAKE_INSTALL_INFODIR:PATH="$(infodir)" \ - -DCMAKE_INSTALL_MANDIR:PATH="$(mandir)" \ - -DCMAKE_VERBOSE_MAKEFILE=ON \ - -DCMAKE_CXX_FLAGS:STRING="$(CXXFLAGS)" \ + -DCMAKE_INSTALL_EXEC_PREFIX:PATH="$(exec_prefix)" \ + -DCMAKE_INSTALL_BINDIR:PATH="$(bindir)" \ + -DCMAKE_INSTALL_DATADIR:PATH="$(datadir)" \ + -DCMAKE_INSTALL_LIBDIR:PATH="$(libdir)" \ + -DCMAKE_INSTALL_INCLUDEDIR:PATH="$(includedir)" \ + -DCMAKE_INSTALL_INFODIR:PATH="$(infodir)" \ + -DCMAKE_INSTALL_MANDIR:PATH="$(mandir)" \ + -DCMAKE_VERBOSE_MAKEFILE=ON \ + -DCMAKE_CXX_COMPILER="$(CXX)" \ + -DCMAKE_CXX_FLAGS:STRING="$(CXXFLAGS)" \ . ) @$(MAKECOOKIE) Modified: csw/mgar/pkg/liblasi/trunk/checksums =================================================================== --- csw/mgar/pkg/liblasi/trunk/checksums 2013-08-06 07:45:49 UTC (rev 21655) +++ csw/mgar/pkg/liblasi/trunk/checksums 2013-08-06 11:59:44 UTC (rev 21656) @@ -1,2 +1 @@ -f18091569ed4fface75453b097c67459 download/libLASi-1.1.0.tar.gz -3715bd353dbb70cfa7a5c95f447e14cc download/liblasi-consts.diff +bc5161b1d820db3dbcea24ce1c2ed5ec libLASi-1.1.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From guillomovitch at users.sourceforge.net Tue Aug 6 14:08:31 2013 From: guillomovitch at users.sourceforge.net (guillomovitch at users.sourceforge.net) Date: Tue, 06 Aug 2013 12:08:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[21657] csw/mgar/pkg/fusioninventory-agent/trunk Message-ID: Revision: 21657 http://gar.svn.sourceforge.net/gar/?rev=21657&view=rev Author: guillomovitch Date: 2013-08-06 12:08:30 +0000 (Tue, 06 Aug 2013) Log Message: ----------- - update to 2.3.0 - split tasks in multiple packages - rename to CSWfi-agent, because of package name length constraints Modified Paths: -------------- csw/mgar/pkg/fusioninventory-agent/trunk/Makefile csw/mgar/pkg/fusioninventory-agent/trunk/checksums Modified: csw/mgar/pkg/fusioninventory-agent/trunk/Makefile =================================================================== --- csw/mgar/pkg/fusioninventory-agent/trunk/Makefile 2013-08-06 11:59:44 UTC (rev 21656) +++ csw/mgar/pkg/fusioninventory-agent/trunk/Makefile 2013-08-06 12:08:30 UTC (rev 21657) @@ -2,19 +2,20 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = fusioninventory-agent -VERSION = 2.2.7 +VERSION = 2.3.0 GARTYPE = v2 CATEGORIES = cpan DESCRIPTION = FusionInventory agent define BLURB - The FusionInventory agent is a generic management agent. It can perform a - certain number of tasks, according to its own execution plan, or on behalf of - a GLPI server with fusioninventory plugin, acting as a control point. + The fusioninventory agent is a generic agent, running on each managed node. It + can perform a certain number of tasks, either according to its own execution + plan, or as requested from a central control server, such as GLPI server with + fusioninventory plugin. endef MASTER_SITES = $(CPAN_MIRRORS) -AUTHOR = FUSINV +AUTHOR = GONERI MODDIST = DISTNAME = FusionInventory-Agent-$(VERSION) DISTFILES = $(DISTNAME).tar.gz @@ -24,26 +25,74 @@ UPSTREAM_MASTER_SITES = http://forge.fusioninventory.org/projects/fusioninventory-agent/files LICENSE = LICENSE - -PACKAGES = CSWfusioninventory-agent ARCHALL = 1 -RUNTIME_DEP_PKGS += CSWpm-file-which -RUNTIME_DEP_PKGS += CSWpm-io-socket-ssl -RUNTIME_DEP_PKGS += CSWpm-libwww-perl -RUNTIME_DEP_PKGS += CSWpm-proc-daemon -RUNTIME_DEP_PKGS += CSWpm-proc-pid-file +PACKAGES = CSWfi-agent +SPKG_DESC_CSWfi-agent = The FusionInventory agent +RUNTIME_DEP_PKGS_CSWfi-agent += CSWpm-file-which +RUNTIME_DEP_PKGS_CSWfi-agent += CSWpm-io-socket-ssl +RUNTIME_DEP_PKGS_CSWfi-agent += CSWpm-libwww-perl +RUNTIME_DEP_PKGS_CSWfi-agent += CSWpm-proc-daemon +RUNTIME_DEP_PKGS_CSWfi-agent += CSWpm-proc-pid-file +RUNTIME_DEP_PKGS_CSWfi-agent += CSWpm-net-ip +RUNTIME_DEP_PKGS_CSWfi-agent += CSWpm-text-template +RUNTIME_DEP_PKGS_CSWfi-agent += CSWpm-universal-require +RUNTIME_DEP_PKGS_CSWfi-agent += CSWpm-xml-treepp +# no PKGFILES, to catch all other files +OBSOLETED_BY_CSWfi-agent = CSWfusioninventory-agent +CHECKPKG_OVERRIDES_CSWfi-agent += surplus-dependency|CSWperl + +PACKAGES += CSWfi-agent-task-inventory +SPKG_DESC_CSWfi-agent-task-inventory = Local inventory support for FusionInventory agent +RUNTIME_DEP_PKGS_CSWfi-agent-task-inventory = CSWfi-agent # not available in 5.9 ifneq ($(shell /usr/bin/uname -r),5.9) - RUNTIME_DEP_PKGS += CSWpm-net-cups + RUNTIME_DEP_PKGS_CSWfi-agent-task-inventory += CSWpm-net-cups endif -RUNTIME_DEP_PKGS += CSWpm-net-ip -RUNTIME_DEP_PKGS += CSWpm-text-template -RUNTIME_DEP_PKGS += CSWpm-universal-require -RUNTIME_DEP_PKGS += CSWpm-xml-treepp -RUNTIME_DEP_PKGS += CSWmemconf -PATCHFILES += 0001-don-t-install-a-private-memconf-copy.patch +PKGFILES_CSWfi-agent-task-inventory = $(bindir)/fusioninventory-inventory +PKGFILES_CSWfi-agent-task-inventory += $(mandir)/man1/fusioninventory-inventory.1 +PKGFILES_CSWfi-agent-task-inventory += $(datadir)/fusioninventory/lib/FusionInventory/Agent/Task/Inventory.* +CHECKPKG_OVERRIDES_CSWfi-agent-task-inventory += surplus-dependency|CSWperl +CHECKPKG_OVERRIDES_CSWfi-agent-task-inventory += archall-with-arch-paths|/opt/csw/share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/BSD/Archs/i386.pm +CHECKPKG_OVERRIDES_CSWfi-agent-task-inventory += archall-with-arch-paths|/opt/csw/share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Linux/Archs/i386.pm +PACKAGES += CSWfi-agent-task-wakeonlan +SPKG_DESC_CSWfi-agent-task-wakeonlan = Wake-on-lan support for FusionInventory agent +RUNTIME_DEP_PKGS_CSWfi-agent-task-wakeonlan = CSWfi-agent +PKGFILES_CSWfi-agent-task-wakeonlan = $(bindir)/fusioninventory-wakeonlan +PKGFILES_CSWfi-agent-task-wakeonlan += $(mandir)/man1/fusioninventory-wakeonlan.1 +PKGFILES_CSWfi-agent-task-wakeonlan += $(datadir)/fusioninventory/lib/FusionInventory/Agent/Task/WakeOnLan.pm +CHECKPKG_OVERRIDES_CSWfi-agent-task-wakeonlan += surplus-dependency|CSWperl + +PACKAGES += CSWfi-agent-task-esx +SPKG_DESC_CSWfi-agent-task-esx = ESX inventory support for FusionInventory agent +RUNTIME_DEP_PKGS_CSWfi-agent-task-esx = CSWfi-agent +PKGFILES_CSWfi-agent-task-esx = $(bindir)/fusioninventory-esx +PKGFILES_CSWfi-agent-task-esx += $(mandir)/man1/fusioninventory-esx.1 +PKGFILES_CSWfi-agent-task-esx += $(datadir)/fusioninventory/lib/FusionInventory/Agent/Task/ESX.pm +PKGFILES_CSWfi-agent-task-esx += $(datadir)/fusioninventory/lib/FusionInventory/Agent/SOAP/.* +CHECKPKG_OVERRIDES_CSWfi-agent-task-esx += surplus-dependency|CSWperl + +PACKAGES += CSWfi-agent-task-network +SPKG_DESC_CSWfi-agent-task-network = Network discovery and inventory support for FusionInventory agent +RUNTIME_DEP_PKGS_CSWfi-agent-task-network = CSWfi-agent +RUNTIME_DEP_PKGS_CSWfi-agent-task-network += CSWpm-net-snmp +PKGFILES_CSWfi-agent-task-network = $(bindir)/fusioninventory-netdiscovery +PKGFILES_CSWfi-agent-task-network += $(bindir)/fusioninventory-netinventory +PKGFILES_CSWfi-agent-task-network += $(mandir)/man1/fusioninventory-netdiscovery.1 +PKGFILES_CSWfi-agent-task-network += $(mandir)/man1/fusioninventory-netinventory.1 +PKGFILES_CSWfi-agent-task-network += $(datadir)/fusioninventory/lib/FusionInventory/Agent/Task/NetDiscovery.* +PKGFILES_CSWfi-agent-task-network += $(datadir)/fusioninventory/lib/FusionInventory/Agent/Task/NetInventory.* +PKGFILES_CSWfi-agent-task-network += $(datadir)/fusioninventory/lib/FusionInventory/Agent/SNMP.* +PKGFILES_CSWfi-agent-task-network += $(datadir)/fusioninventory/lib/FusionInventory/Agent/Tools/SNMP.pm +CHECKPKG_OVERRIDES_CSWfi-agent-task-network += surplus-dependency|CSWperl + +PACKAGES += CSWfi-agent-task-deploy +SPKG_DESC_CSWfi-agent-task-deploy = Software deployment support for FusionInventory agent +RUNTIME_DEP_PKGS_CSWfi-agent-task-deploy = CSWfi-agent +PKGFILES_CSWfi-agent-task-deploy = $(datadir)/fusioninventory/lib/FusionInventory/Agent/Task/Deploy.* +CHECKPKG_OVERRIDES_CSWfi-agent-task-deploy += surplus-dependency|CSWperl + CONFIGURE_ARGS = PREFIX=/opt/csw SYSCONFDIR=/etc/opt/csw/fusioninventory LOCALSTATEDIR=/var/opt/csw/fusioninventory # skip tests @@ -53,17 +102,14 @@ INSTALL_ENV_PATH = /opt/csw/gnu:$(PATH) # checkpkg overrides -CHECKPKG_OVERRIDES += archall-with-arch-paths|/opt/csw/share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/BSD/Archs/i386.pm -CHECKPKG_OVERRIDES += archall-with-arch-paths|/opt/csw/share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory/Input/Linux/Archs/i386.pm -CHECKPKG_OVERRIDES += file-with-bad-content|/usr/local|root/opt/csw/share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory.pm -CHECKPKG_OVERRIDES += surplus-dependency|CSWperl +#CHECKPKG_OVERRIDES += file-with-bad-content|/usr/local|root/opt/csw/share/fusioninventory/lib/FusionInventory/Agent/Task/Inventory.pm DOCLIST = LICENSE Changes README THANKS -CRONTABS = /etc/opt/csw/pkg/CSWfusioninventory-agent/crontabs/root +CRONTABS = /etc/opt/csw/pkg/CSWfi-agent/crontabs/root post-install-modulated: - /opt/csw/gnu/install -D -m 644 $(WORKDIR)/fusioninventory-agent.cron $(DESTDIR)/etc/opt/csw/pkg/CSWfusioninventory-agent/crontabs/root + /opt/csw/gnu/install -D -m 644 $(WORKDIR)/fusioninventory-agent.cron $(DESTDIR)/etc/opt/csw/pkg/CSWfi-agent/crontabs/root /opt/csw/gnu/install -D -m 644 $(WORKDIR)/fusioninventory-agent.default $(DESTDIR)/etc/opt/csw/default/fusioninventory-agent include gar/category.mk Modified: csw/mgar/pkg/fusioninventory-agent/trunk/checksums =================================================================== --- csw/mgar/pkg/fusioninventory-agent/trunk/checksums 2013-08-06 11:59:44 UTC (rev 21656) +++ csw/mgar/pkg/fusioninventory-agent/trunk/checksums 2013-08-06 12:08:30 UTC (rev 21657) @@ -1 +1 @@ -8d42cd33c65ec899a03bc510b83cc390 FusionInventory-Agent-2.2.7.tar.gz +a4b17fe8d9cc7ceae673d81ea2917dc3 FusionInventory-Agent-2.3.0.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 Aug 6 16:45:44 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 06 Aug 2013 14:45:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[21658] csw/mgar/pkg/graphviz/trunk/Makefile Message-ID: Revision: 21658 http://gar.svn.sourceforge.net/gar/?rev=21658&view=rev Author: lblume Date: 2013-08-06 14:45:44 +0000 (Tue, 06 Aug 2013) Log Message: ----------- graphviz/trunk: Dependency cleanup Modified Paths: -------------- csw/mgar/pkg/graphviz/trunk/Makefile Modified: csw/mgar/pkg/graphviz/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-06 12:08:30 UTC (rev 21657) +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-06 14:45:44 UTC (rev 21658) @@ -68,7 +68,9 @@ RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibatk1-0-0 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibexpat1 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgvpr2 -PKGFILES_CSWgraphviz += $(call baseisadirs,$(bindir),(?:(?!diffimg|dot_static).)*) +RUNTIME_DEP_PKGS_CSWgraphviz += CSWgraphvizgd +RUNTIME_DEP_PKGS_CSWgraphviz += CSWliblasi1 +PKGFILES_CSWgraphviz += $(call baseisadirs,$(bindir),(?:(?!diffimg).)*) PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_core\.so\..*) PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_gdk_pixbuf\.so\..*) PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_gs\.so\..*) @@ -114,21 +116,13 @@ PACKAGES += CSWgraphvizgd SPKG_DESC_CSWgraphvizgd = Graphviz renderers using gd RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgd3 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWpango -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibz1 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgts0-7-5 RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibcairo2 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgobject2-0-0 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibexpat1 -RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibpathplan4 RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibcgraph6 RUNTIME_DEP_PKGS_CSWgraphvizgd += CSWlibgvc6 PKGFILES_CSWgraphvizgd += $(call baseisadirs,$(libdir),graphviz/libgvplugin_gd\.so.*) PKGFILES_CSWgraphvizgd += $(call baseisadirs,$(bindir),diffimg) -PKGFILES_CSWgraphvizgd += $(call baseisadirs,$(bindir),dot_static) #PACKAGES += CSWgraphvizdevil SPKG_DESC_CSWgraphvizdevil = Graphviz renderers using DevIL 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 Aug 6 17:07:59 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 06 Aug 2013 15:07:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[21659] csw/mgar/pkg/cpan Message-ID: Revision: 21659 http://gar.svn.sourceforge.net/gar/?rev=21659&view=rev Author: dmichelsen Date: 2013-08-06 15:07:59 +0000 (Tue, 06 Aug 2013) Log Message: ----------- cpan/DBD-Informix: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DBD-Informix/ csw/mgar/pkg/cpan/DBD-Informix/branches/ csw/mgar/pkg/cpan/DBD-Informix/tags/ csw/mgar/pkg/cpan/DBD-Informix/trunk/ csw/mgar/pkg/cpan/DBD-Informix/trunk/Makefile csw/mgar/pkg/cpan/DBD-Informix/trunk/checksums csw/mgar/pkg/cpan/DBD-Informix/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DBD-Informix/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DBD-Informix/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DBD-Informix/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DBD-Informix/trunk/Makefile 2013-08-06 15:07:59 UTC (rev 21659) @@ -0,0 +1,43 @@ +NAME = DBD-Informix +VERSION = 2013.0521 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = JOHNL + +DESCRIPTION = IBM Informix Database Driver for Perl DBI +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license + +BUILD_DEP_PKGS += CSWpm-dbi + +PACKAGES += CSWpm-dbd-informix +CATALOGNAME_CSWpm-dbd-informix = pm_dbd_informix +SPKG_DESC_CSWpm-dbd-informix = IBM Informix Database Driver for Perl DBI +RUNTIME_DEP_PKGS_CSWpm-dbd-informix += CSWpm-dbi + +NOISALIST = 1 + +INFORMIXDIR = /opt/IBM/informix + +EXTRA_CONFIGURE_EXPORTS += INFORMIXDIR +CONFIGURE_ENV_INFORMIXDIR = $(INFORMIXDIR) +EXTRA_CONFIGURE_EXPORTS += INFORMIXSERVER +CONFIGURE_ENV_INFORMIXSERVER = localhost +EXTRA_CONFIGURE_EXPORTS += DBD_INFORMIX_NO_ESQLTEST +CONFIGURE_ENV_DBD_INFORMIX_NO_ESQLTEST=yes + +CONFIGURE_ENV_PATH = $(INFORMIXDIR)/bin:$(PATH) + +EXTRA_BUILD_EXPORTS += INFORMIXDIR +BUILD_ENV_INFORMIXDIR = $(INFORMIXDIR) + +BUILD_ENV_PATH = $(INFORMIXDIR)/bin:$(PATH) + +EXTRA_LIB += $(INFORMIXDIR)/lib +EXTRA_LIB += $(INFORMIXDIR)/lib/esql + +include gar/category.mk Added: csw/mgar/pkg/cpan/DBD-Informix/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DBD-Informix/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DBD-Informix/trunk/checksums 2013-08-06 15:07:59 UTC (rev 21659) @@ -0,0 +1 @@ +34eb9bfa300233da956a5ebb44c875d3 DBD-Informix-2013.0521.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 Aug 6 17:56:20 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 06 Aug 2013 15:56:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[21660] csw/mgar/pkg/graphviz/trunk/Makefile Message-ID: Revision: 21660 http://gar.svn.sourceforge.net/gar/?rev=21660&view=rev Author: lblume Date: 2013-08-06 15:56:19 +0000 (Tue, 06 Aug 2013) Log Message: ----------- graphviz/trunk: Remove now useless overrides Modified Paths: -------------- csw/mgar/pkg/graphviz/trunk/Makefile Modified: csw/mgar/pkg/graphviz/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-06 15:07:59 UTC (rev 21659) +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-06 15:56:19 UTC (rev 21660) @@ -396,10 +396,6 @@ CHECKPKG_OVERRIDES_CSWlibgvpr2 += file-with-bad-content|/usr/local|root/opt/csw/lib/libgvpr.so.2.0.0 CHECKPKG_OVERRIDES_CSWlibgvpr2 += file-with-bad-content|/usr/local|root/opt/csw/lib/amd64/libgvpr.so.2.0.0 CHECKPKG_OVERRIDES_CSWlibgvpr2 += file-with-bad-content|/usr/local|root/opt/csw/lib/sparcv9/libgvpr.so.2.0.0 -CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/pentium_pro/gvpr_static -CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/amd64/gvpr_static -CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/sparcv9/gvpr_static -CHECKPKG_OVERRIDES_CSWgraphviz += file-with-bad-content|/usr/local|root/opt/csw/bin/sparcv8plus/gvpr_static include gar/category.mk 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 Aug 6 18:01:06 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 06 Aug 2013 16:01:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[21661] csw/mgar/pkg/graphviz/trunk/Makefile Message-ID: Revision: 21661 http://gar.svn.sourceforge.net/gar/?rev=21661&view=rev Author: lblume Date: 2013-08-06 16:01:06 +0000 (Tue, 06 Aug 2013) Log Message: ----------- graphviz/trunk: Remove obsolete compatibility package Modified Paths: -------------- csw/mgar/pkg/graphviz/trunk/Makefile Modified: csw/mgar/pkg/graphviz/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-06 15:56:19 UTC (rev 21660) +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-06 16:01:06 UTC (rev 21661) @@ -23,8 +23,6 @@ PATCHFILES += 0001_configure_tcl_bin_path_not_good_for_64bit.patch INCOMPATIBLE_PKGS = CSWgraphvis -# defer for some time to allow CSWgraphviz2 upgrades -# INCOMPATIBLE_PKGS = CSWgraphviz2 BUILD64 = 1 ISAEXEC = 1 @@ -40,13 +38,6 @@ BUILD_DEP_PKGS += CSWpython27-dev BUILD_DEP_PKGS += CSWpoppler-dev -# This is a compatibility package which should go away after some time. -# It only contains a link to CSWgraphviz. -PACKAGES += CSWgraphviz2 -SPKG_DESC_CSWgraphviz2 = Stub to the CSWgraphviz package -PKGFILES_CSWgraphviz2 = $(prefix)/graphviz2 -ARCHALL_CSWgraphviz2 = 1 - PACKAGES += CSWgraphviz SPKG_DESC_CSWgraphviz = Graph Visualization Tools RUNTIME_DEP_PKGS_CSWgraphviz += CSWpango 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 Aug 6 23:33:14 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 06 Aug 2013 21:33:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[21662] csw/mgar/pkg/mrtg/trunk/Makefile Message-ID: Revision: 21662 http://gar.svn.sourceforge.net/gar/?rev=21662&view=rev Author: lblume Date: 2013-08-06 21:33:11 +0000 (Tue, 06 Aug 2013) Log Message: ----------- mrtg/trunk: Recipe update for new libgd Modified Paths: -------------- csw/mgar/pkg/mrtg/trunk/Makefile Modified: csw/mgar/pkg/mrtg/trunk/Makefile =================================================================== --- csw/mgar/pkg/mrtg/trunk/Makefile 2013-08-06 16:01:06 UTC (rev 21661) +++ csw/mgar/pkg/mrtg/trunk/Makefile 2013-08-06 21:33:11 UTC (rev 21662) @@ -20,7 +20,7 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz -PACKAGING_PLATFORMS = solaris9-sparc solaris9-i386 +PACKAGING_PLATFORMS = solaris9-sparc solaris9-i386 solaris10-sparc solaris10-i386 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-gd=/opt/csw @@ -28,25 +28,10 @@ CONFIGURE_ARGS += --with-gd-inc=/opt/csw/include RUNTIME_DEP_PKGS_CSWmrtg += CSWperl -RUNTIME_DEP_PKGS_CSWmrtg += CSWlibgd2 -RUNTIME_DEP_PKGS_CSWmrtg += CSWlibpng12-0 -RUNTIME_DEP_PKGS_CSWmrtg += CSWlibz1 +RUNTIME_DEP_PKGS_CSWmrtg += CSWlibgd3 # Reviewed checkpkg overrides CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/lib/mrtg2/Net_SNMP_util.pm -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/mrtg-rrd.1 -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/mrtg-unix-guide.1 -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/mrtg-reference.1 -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/doc/mrtg2/mrtg-rrd.txt -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/doc/mrtg2/CHANGES -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/doc/mrtg2/mrtg-unix-guide.txt -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/doc/mrtg2/mrtg-reference.txt -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/doc/mrtg2/mrtg-rrd.pod -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/doc/mrtg2/mrtg-reference.pod -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/local|root/opt/csw/share/doc/mrtg2/mrtg-unix-guide.pod -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/share|root/opt/csw/share/man/man1/mrtg-squid.1 -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/share|root/opt/csw/share/doc/mrtg2/mrtg-squid.pod -CHECKPKG_OVERRIDES_CSWmrtg += file-with-bad-content|/usr/share|root/opt/csw/share/doc/mrtg2/mrtg-squid.txt TEST_TARGET = 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 Aug 6 23:40:19 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 06 Aug 2013 21:40:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[21663] csw/mgar/pkg/nagios/trunk Message-ID: Revision: 21663 http://gar.svn.sourceforge.net/gar/?rev=21663&view=rev Author: lblume Date: 2013-08-06 21:40:17 +0000 (Tue, 06 Aug 2013) Log Message: ----------- nagios/trunk: Recipe update for newer libg3; add a mapfile to ensure the proper level of libc; remove not useful lines Modified Paths: -------------- csw/mgar/pkg/nagios/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/nagios/trunk/files/mapfile Modified: csw/mgar/pkg/nagios/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios/trunk/Makefile 2013-08-06 21:33:11 UTC (rev 21662) +++ csw/mgar/pkg/nagios/trunk/Makefile 2013-08-06 21:40:17 UTC (rev 21663) @@ -15,6 +15,7 @@ DISTFILES += cswnagios DISTFILES += cswusergroup DISTFILES += README.CSW +DISTFILES += mapfile PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc @@ -29,12 +30,9 @@ RUNTIME_DEP_PKGS_CSWnagios = CSWapache2 CSWgd CSWglib2 CSWjpeg CSWlibtoolrt CSWggettextrt RUNTIME_DEP_PKGS_CSWnagios += CSWperl CSWnagios-plugins CSWap2-modphp5 -RUNTIME_DEP_PKGS_CSWnagios += CSWlibgd2 +RUNTIME_DEP_PKGS_CSWnagios += CSWlibgd3 RUNTIME_DEP_PKGS_CSWnagios += CSWlibiconv2 -RUNTIME_DEP_PKGS_CSWnagios += CSWlibpng12-0 -RUNTIME_DEP_PKGS_CSWnagios += CSWlibz1 -RUNTIME_DEP_PKGS_CSWnagios += CSWlibjpeg7 -RUNTIME_DEP_PKGS_CSWnagios += CSWfreetype +RUNTIME_DEP_PKGS_CSWnagios += CSWlibltdl7 LICENSE = LICENSE @@ -74,10 +72,11 @@ CONFIGURE_ARGS += --with-checkresult-dir=/var/opt/csw/nagios/spool/checkresults CONFIGURE_ARGS += --with-lockfile=/var/opt/csw/nagios/nagios.lock CONFIGURE_ARGS += --localstatedir=/var$(prefix) -CONFIGURE_ENV += install_user=$(USER) install_grp=csw # see PATCHFILES -CONFIGURE_ENV += PATH=/usr/bin:/usr/ccs/bin:/opt/csw/bin:/opt/csw/bin/ -CONFIGURE_ENV += CC=/opt/SUNWspro/bin/cc -CONFIGURE_ENV += PERL=/opt/csw/bin/perl +EXTRA_CONFIGURE_ENV += install_user=$(USER) install_grp=csw # see PATCHFILES +#EXTRA_CONFIGURE_ENV += PATH=/usr/bin:/usr/ccs/bin:/opt/csw/bin:/opt/csw/bin/ +#EXTRA_CONFIGURE_ENV += CC=/opt/SUNWspro/bin/cc +#EXTRA_CONFIGURE_ENV += PERL=/opt/csw/bin/perl +#CONFIGURE_ENV += LD_OPTIONS="-M $(abspath $(WORKDIR)/mapfile)" # # build @@ -87,8 +86,9 @@ EXTRA_LIB = $(BUILD_PREFIX)/lib -LD_OPTIONS += -R/opt/csw/lib -LD_OPTIONS += -R/opt/csw/nagios/lib +#EXTRA_LD_OPTIONS += -R/opt/csw/lib +EXTRA_LD_OPTIONS += -R/opt/csw/nagios/lib +EXTRA_LD_OPTIONS += -M "$(abspath $(WORKDIR)/mapfile)" BUILD_ARGS = all Added: csw/mgar/pkg/nagios/trunk/files/mapfile =================================================================== --- csw/mgar/pkg/nagios/trunk/files/mapfile (rev 0) +++ csw/mgar/pkg/nagios/trunk/files/mapfile 2013-08-06 21:40:17 UTC (rev 21663) @@ -0,0 +1 @@ +libc.so - SUNW_1.22.5 SUNWprivate_1.1; 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 Aug 7 11:09:54 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 07 Aug 2013 09:09:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[21664] csw/mgar/pkg/mysql5/branches/mysql-5.5.x Message-ID: Revision: 21664 http://gar.svn.sourceforge.net/gar/?rev=21664&view=rev Author: lblume Date: 2013-08-07 09:09:53 +0000 (Wed, 07 Aug 2013) Log Message: ----------- mysql5/branches/mysql-5.5.x: Bump version to 5.5.33 Modified Paths: -------------- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2013-08-06 21:40:17 UTC (rev 21663) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2013-08-07 09:09:53 UTC (rev 21664) @@ -13,7 +13,7 @@ PROJ_NAME = mysql NAME = $(PROJ_NAME)5 BASE_VERSION = 5.5 -PATCHLEVEL = 32 +PATCHLEVEL = 33 ALTS_PRIO = 55 VERSION = $(BASE_VERSION).$(PATCHLEVEL) @@ -202,6 +202,7 @@ BUILD_DEP_PKGS += $(RUNTIME_DEP_PKGS) BUILD_DEP_PKGS += CSWcmake BUILD_DEP_PKGS += CSWbison +BUILD_DEP_PKGS += CSWlibwrap-dev # http://forge.mysql.com/wiki/Autotools_to_CMake_Transition_Guide CMAKE_ARGS += -DCMAKE_INSTALL_PREFIX=$(prefix) Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2013-08-06 21:40:17 UTC (rev 21663) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2013-08-07 09:09:53 UTC (rev 21664) @@ -1 +1 @@ -dfb817568fde9f9b7400a87eb46022a1 mysql-5.5.32.tar.gz +68e235f472718d0aaf2fc755f498a714 mysql-5.5.33.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Aug 7 13:24:51 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 07 Aug 2013 11:24:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[21665] csw/mgar/pkg/lang-python/python Message-ID: Revision: 21665 http://gar.svn.sourceforge.net/gar/?rev=21665&view=rev Author: pfelecan Date: 2013-08-07 11:24:46 +0000 (Wed, 07 Aug 2013) Log Message: ----------- completed the alternatives system to cover almost all the needed components Modified Paths: -------------- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile csw/mgar/pkg/lang-python/python/trunk/Makefile Modified: csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile =================================================================== --- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2013-08-07 09:09:53 UTC (rev 21664) +++ csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2013-08-07 11:24:46 UTC (rev 21665) @@ -169,14 +169,40 @@ # Allow to choose the default Python version. # Python 2.6 is the default one as of 2013-07-21. +# alternatives management begins: + +# this is rebuilt in the merge phase + ALTERNATIVES_CSWpython$(CVER) = python-$(VER) -ALTERNATIVE_python-$(VER) = $(bindir)/python python-symlink $(bindir)/python$(VER) 270 -# TODO(maciej): Implement alternatives for the man page. -# ALTERNATIVES_CSWpython$(CVER) = python-man-$(VER) -# ALTERNATIVE_python-man-$(VER) = $(mandir)/man1/python.1 python-man-symlink python$(VER) 270 +ALTERNATIVE_python-$(VER) = $(bindir)/python2 python $(bindir)/python$(VER) 270 +ALTERNATIVE_python-$(VER) += $(bindir)/python python2 $(bindir)/python2 +ALTERNATIVE_python-$(VER) += $(bindir)/2to3 2to3 $(bindir)/2to32 +ALTERNATIVE_python-$(VER) += $(bindir)/2to32 2to32 $(bindir)/2to3$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/idle idle $(bindir)/idle2 +ALTERNATIVE_python-$(VER) += $(bindir)/idle2 idle2 $(bindir)/idle$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/pydoc pydoc $(bindir)/pydoc2 +ALTERNATIVE_python-$(VER) += $(bindir)/pydoc2 pydoc2 $(bindir)/pydoc$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/python-config python-config $(bindir)/python-config2 +ALTERNATIVE_python-$(VER) += $(bindir)/python-config2 python-config2 $(bindir)/python-config$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/smtpd.py smtpd $(bindir)/smtpd.py2 +ALTERNATIVE_python-$(VER) += $(bindir)/smtpd.py2 smtpd2 $(bindir)/smtpd.py$(VER) +ALTERNATIVE_python-$(VER) += $(mandir)/man1/python.1 man $(mandir)/man1/python2.1 +ALTERNATIVE_python-$(VER) += $(mandir)/man1/python2.1 man2 $(mandir)/man1/python$(VER).1 +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/2to3 +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/idle +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/pydoc EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/python +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/python2 +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/python-config +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/python2-config +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/smtpd.py +EXTRA_MERGE_EXCLUDE_FILES += $(mandir)/man1/python.1 +EXTRA_MERGE_EXCLUDE_FILES += $(mandir)/man1/python2.1 +# see also post-install for related actions +# : alternatives management ends + # This could be handled by automatic dependency detection CHECKPKG_OVERRIDES_CSWidle$(CVER) += surplus-dependency|CSWpython$(CVER)-tk @@ -216,15 +242,6 @@ CHECKPKG_OVERRIDES_CSWpython$(CVER) += file-with-bad-content -# To avoid file collisions with CSWpython: -EXTRA_PAX_ARGS += -s ',^\.$(bindir)/idle,$(bindir)/idle-$(VER),' -EXTRA_PAX_ARGS += -s ',^\.$(bindir)/smtpd.py,$(bindir)/smtpd.py-$(VER),' -EXTRA_PAX_ARGS += -s ',^\.$(bindir)/pydoc,$(bindir)/pydoc-$(VER),' -EXTRA_PAX_ARGS += -s ',^\.$(bindir)/2to3,$(bindir)/2to3-$(VER),' -EXTRA_PAX_ARGS += -s ',^\.$(bindir)/python-config,$(bindir)/python-config-$(VER),' -# Needs to be turned into alternatives. -EXTRA_PAX_ARGS += -s ',^\.$(mandir)/man1/python.1,$(mandir)/man1/python.1-$(VER),' - EXTRA_PAX_ARGS_32 = -s ",^\.$(includedir)/python$(VER)/pyport.h$$,.$(includedir)/python$(VER)/pyport-32.h,p" EXTRA_PAX_ARGS_64 = -s ",^\.$(includedir)/python$(VER)/pyport.h$$,.$(includedir)/python$(VER)/pyport-64.h,p" EXTRA_PAX_ARGS += $(EXTRA_PAX_ARGS_$(MEMORYMODEL)) @@ -270,6 +287,13 @@ cd $(WORKSRC) && /usr/bin/env -i $(BUILD_ENV) && $(MAKE) -i -k -C $(OBJDIR) test $(MAKECOOKIE) +post-install: + cd $(DESTDIR)$(bindir) && test -f 2to3 && mv -f 2to3 2to3$(VER) + cd $(DESTDIR)$(bindir) && test -f idle && mv -f idle idle$(VER) + cd $(DESTDIR)$(bindir) && test -f pydoc && mv -f pydoc pydoc$(VER) + cd $(DESTDIR)$(bindir) && test -f smtpd.py && mv -f smtpd.py smtpd.py$(VER) + @$(MAKECOOKIE) + post-merge-modulated: # Some checks # Prevent things like https://www.opencsw.org/mantis/view.php?id=5040 Modified: csw/mgar/pkg/lang-python/python/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/python/trunk/Makefile 2013-08-07 09:09:53 UTC (rev 21664) +++ csw/mgar/pkg/lang-python/python/trunk/Makefile 2013-08-07 11:24:46 UTC (rev 21665) @@ -206,11 +206,41 @@ BUILD_DEP_PKGS += CSWlibgcrypt-dev # Allow to choose the default Python version. -# Python $(VER) is the default one as of 2013-07-21. +# Python 2.6 is the default one as of 2013-07-21. +# alternatives management begins: + +# this is rebuilt in the merge phase + ALTERNATIVES_CSWpython$(CVER) = python-$(VER) -ALTERNATIVE_python-$(VER) = $(bindir)/python python-symlink $(bindir)/python$(VER) 2600 +ALTERNATIVE_python-$(VER) = $(bindir)/python2 python $(bindir)/python$(VER) 2600 +ALTERNATIVE_python-$(VER) += $(bindir)/python python2 $(bindir)/python2 +ALTERNATIVE_python-$(VER) += $(bindir)/2to3 2to3 $(bindir)/2to32 +ALTERNATIVE_python-$(VER) += $(bindir)/2to32 2to32 $(bindir)/2to3$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/idle idle $(bindir)/idle2 +ALTERNATIVE_python-$(VER) += $(bindir)/idle2 idle2 $(bindir)/idle$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/pydoc pydoc $(bindir)/pydoc2 +ALTERNATIVE_python-$(VER) += $(bindir)/pydoc2 pydoc2 $(bindir)/pydoc$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/python-config python-config $(bindir)/python-config2 +ALTERNATIVE_python-$(VER) += $(bindir)/python-config2 python-config2 $(bindir)/python-config$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/smtpd.py smtpd $(bindir)/smtpd.py2 +ALTERNATIVE_python-$(VER) += $(bindir)/smtpd.py2 smtpd2 $(bindir)/smtpd.py$(VER) +ALTERNATIVE_python-$(VER) += $(mandir)/man1/python.1 man $(mandir)/man1/python2.1 +ALTERNATIVE_python-$(VER) += $(mandir)/man1/python2.1 man2 $(mandir)/man1/python$(VER).1 + +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/2to3 +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/idle +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/pydoc EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/python +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/python2 +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/python-config +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/python2-config +EXTRA_MERGE_EXCLUDE_FILES += $(bindir)/smtpd.py +EXTRA_MERGE_EXCLUDE_FILES += $(mandir)/man1/python.1 +EXTRA_MERGE_EXCLUDE_FILES += $(mandir)/man1/python2.1 +# see also post-install for related actions +# : alternatives management ends + # This could be handled by automatic dependency detection CHECKPKG_OVERRIDES_CSWidle$(CVER) += surplus-dependency|CSWpython$(CVER)-tk @@ -265,6 +295,14 @@ done @$(MAKECOOKIE) +post-install: + cd $(DESTDIR)$(bindir) && test -f 2to3 && mv -f 2to3 2to3$(VER) + cd $(DESTDIR)$(bindir) && test -f idle && mv -f idle idle$(VER) + cd $(DESTDIR)$(bindir) && test -f pydoc && mv -f pydoc pydoc$(VER) + cd $(DESTDIR)$(bindir) && test -f smtpd.py && mv -f smtpd.py smtpd.py$(VER) + cd $(DESTDIR)$(mandir)/man1 && test -f python.1 && mv -f python.1 python$(VER).1 + @$(MAKECOOKIE) + post-merge-modulated: # Some checks # Prevent things like https://www.opencsw.org/mantis/view.php?id=5040 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at opencsw.org Wed Aug 7 13:27:24 2013 From: pfelecan at opencsw.org (Peter FELECAN) Date: Wed, 07 Aug 2013 13:27:24 +0200 Subject: [csw-devel] SF.net SVN: gar:[21665] csw/mgar/pkg/lang-python/python In-Reply-To: (pfelecan@users.sourceforge.net's message of "Wed, 07 Aug 2013 11:24:51 +0000") References: Message-ID: Awaiting verification and check as tomorrow I wish to release them... -- Peter From lblume at users.sourceforge.net Wed Aug 7 13:39:41 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 07 Aug 2013 11:39:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[21666] csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile Message-ID: Revision: 21666 http://gar.svn.sourceforge.net/gar/?rev=21666&view=rev Author: lblume Date: 2013-08-07 11:39:39 +0000 (Wed, 07 Aug 2013) Log Message: ----------- mysql5/branches/mysql-5.5.x: Patch appears unneeded now Modified Paths: -------------- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2013-08-07 11:24:46 UTC (rev 21665) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2013-08-07 11:39:39 UTC (rev 21666) @@ -94,9 +94,6 @@ PATCHFILES += 0003-WHY-IS-CMAKE-TRYING-TO-BE-SMARTER-THAN-ME.patch PATCHFILES += 0003-Use-bash-for-mysqld_safe.patch -# Cf http://bugs.mysql.com/bug.php?id=62572 -PATCHFILES += 0005_my_vsnprintf-t_fails_bug_62572.patch - PACKAGES += CSWlibmysqlclient$(MYSQL_LIB_VER) PKGFILES_CSWlibmysqlclient$(MYSQL_LIB_VER) += $(call baseisadirs,$(libdir),libmysqlclient\.so\.$(MYSQL_LIB_VER)(\.\d+)*) SPKG_DESC_CSWlibmysqlclient$(MYSQL_LIB_VER) += MySQL $(BASE_VERSION) client library, libmysqlclient.so.$(MYSQL_LIB_VER) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Aug 7 14:05:18 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 07 Aug 2013 12:05:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[21667] csw/mgar/pkg/lang-python/python Message-ID: Revision: 21667 http://gar.svn.sourceforge.net/gar/?rev=21667&view=rev Author: pfelecan Date: 2013-08-07 12:05:18 +0000 (Wed, 07 Aug 2013) Log Message: ----------- supply pdb also Modified Paths: -------------- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile csw/mgar/pkg/lang-python/python/trunk/Makefile Modified: csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile =================================================================== --- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2013-08-07 11:39:39 UTC (rev 21666) +++ csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2013-08-07 12:05:18 UTC (rev 21667) @@ -180,6 +180,8 @@ ALTERNATIVE_python-$(VER) += $(bindir)/2to32 2to32 $(bindir)/2to3$(VER) ALTERNATIVE_python-$(VER) += $(bindir)/idle idle $(bindir)/idle2 ALTERNATIVE_python-$(VER) += $(bindir)/idle2 idle2 $(bindir)/idle$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/pdb pdb $(bindir)/pdb2 +ALTERNATIVE_python-$(VER) += $(bindir)/pdb2 pdb2 $(bindir)/pdb$(VER) ALTERNATIVE_python-$(VER) += $(bindir)/pydoc pydoc $(bindir)/pydoc2 ALTERNATIVE_python-$(VER) += $(bindir)/pydoc2 pydoc2 $(bindir)/pydoc$(VER) ALTERNATIVE_python-$(VER) += $(bindir)/python-config python-config $(bindir)/python-config2 @@ -292,6 +294,7 @@ cd $(DESTDIR)$(bindir) && test -f idle && mv -f idle idle$(VER) cd $(DESTDIR)$(bindir) && test -f pydoc && mv -f pydoc pydoc$(VER) cd $(DESTDIR)$(bindir) && test -f smtpd.py && mv -f smtpd.py smtpd.py$(VER) + cd $(DESTDIR)$(bindir) && ln -s -f ../lib/python$(VER)/pdb.py pdb$(VER) @$(MAKECOOKIE) post-merge-modulated: Modified: csw/mgar/pkg/lang-python/python/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/python/trunk/Makefile 2013-08-07 11:39:39 UTC (rev 21666) +++ csw/mgar/pkg/lang-python/python/trunk/Makefile 2013-08-07 12:05:18 UTC (rev 21667) @@ -218,6 +218,8 @@ ALTERNATIVE_python-$(VER) += $(bindir)/2to32 2to32 $(bindir)/2to3$(VER) ALTERNATIVE_python-$(VER) += $(bindir)/idle idle $(bindir)/idle2 ALTERNATIVE_python-$(VER) += $(bindir)/idle2 idle2 $(bindir)/idle$(VER) +ALTERNATIVE_python-$(VER) += $(bindir)/pdb pdb $(bindir)/pdb2 +ALTERNATIVE_python-$(VER) += $(bindir)/pdb2 pdb2 $(bindir)/pdb$(VER) ALTERNATIVE_python-$(VER) += $(bindir)/pydoc pydoc $(bindir)/pydoc2 ALTERNATIVE_python-$(VER) += $(bindir)/pydoc2 pydoc2 $(bindir)/pydoc$(VER) ALTERNATIVE_python-$(VER) += $(bindir)/python-config python-config $(bindir)/python-config2 @@ -301,6 +303,7 @@ cd $(DESTDIR)$(bindir) && test -f pydoc && mv -f pydoc pydoc$(VER) cd $(DESTDIR)$(bindir) && test -f smtpd.py && mv -f smtpd.py smtpd.py$(VER) cd $(DESTDIR)$(mandir)/man1 && test -f python.1 && mv -f python.1 python$(VER).1 + cd $(DESTDIR)$(bindir) && ln -s -f ../lib/python$(VER)/pdb.py pdb$(VER) @$(MAKECOOKIE) post-merge-modulated: 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 Aug 7 17:23:20 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 07 Aug 2013 15:23:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[21668] csw/mgar/pkg/mysql5/branches/mysql-5.6.x Message-ID: Revision: 21668 http://gar.svn.sourceforge.net/gar/?rev=21668&view=rev Author: lblume Date: 2013-08-07 15:23:18 +0000 (Wed, 07 Aug 2013) Log Message: ----------- mysql5/branches/mysql-5.6.x: Bump to 5.6.13 Modified Paths: -------------- 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.6.x/Makefile =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.6.x/Makefile 2013-08-07 12:05:18 UTC (rev 21667) +++ csw/mgar/pkg/mysql5/branches/mysql-5.6.x/Makefile 2013-08-07 15:23:18 UTC (rev 21668) @@ -19,7 +19,7 @@ PROJ_NAME = mysql NAME = $(PROJ_NAME)5 BASE_VERSION = 5.6 -PATCHLEVEL = 12 +PATCHLEVEL = 13 ALTS_PRIO = 56 VERSION = $(BASE_VERSION).$(PATCHLEVEL) Modified: csw/mgar/pkg/mysql5/branches/mysql-5.6.x/checksums =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.6.x/checksums 2013-08-07 12:05:18 UTC (rev 21667) +++ csw/mgar/pkg/mysql5/branches/mysql-5.6.x/checksums 2013-08-07 15:23:18 UTC (rev 21668) @@ -1 +1 @@ -5ff56a4fbb0b0c4e075c6f43ba9d007e mysql-5.6.12.tar.gz +4bfeb22f2f876825db70d9820d164343 mysql-5.6.13.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 Wed Aug 7 20:53:09 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Wed, 07 Aug 2013 18:53:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[21669] csw/mgar/pkg/openssl1/trunk Message-ID: Revision: 21669 http://gar.svn.sourceforge.net/gar/?rev=21669&view=rev Author: chninkel Date: 2013-08-07 18:53:09 +0000 (Wed, 07 Aug 2013) Log Message: ----------- openssl1/trunk: disabled pkcs11 engine patch under sparc for now as it creates some problem with the tls protocol Modified Paths: -------------- csw/mgar/pkg/openssl1/trunk/Makefile csw/mgar/pkg/openssl1/trunk/files/changelog.CSW Modified: csw/mgar/pkg/openssl1/trunk/Makefile =================================================================== --- csw/mgar/pkg/openssl1/trunk/Makefile 2013-08-07 15:23:18 UTC (rev 21668) +++ csw/mgar/pkg/openssl1/trunk/Makefile 2013-08-07 18:53:09 UTC (rev 21669) @@ -125,8 +125,12 @@ # support for pkcs11 engine http://blogs.sun.com/chichang1/entry/how_to_integrate_pkcs11_engine ifneq ($(shell /usr/bin/uname -r),5.9) +# There is a problem with this patch under sparc when using tls protocol +# See https://www.opencsw.org/mantis/view.php?id=5098 +ifneq ($(shell /usr/bin/uname -p),sparc) PATCHFILES += pkcs11_engine-1.0.1b.patch.2012-04-30 endif +endif # support for sparc t4 crypto engine # see http://bubbva.blogspot.fr/2011/11/exciting-crypto-advances-with-t4.html @@ -187,7 +191,11 @@ # PKCS11 is only for Solaris 10 so we must create solaris 10 specific packages ifneq ($(shell /usr/bin/uname -r),5.9) +# There is a problem with this patch under sparc when using tls protocol +# See https://www.opencsw.org/mantis/view.php?id=5098 +ifneq ($(shell /usr/bin/uname -p),sparc) CONFIGURE_ARGS += --pk11-libname=$(abspath /usr/lib/$(MM_LIBDIR)/libpkcs11.so) +endif endif # For now we want the sun perl to be used Modified: csw/mgar/pkg/openssl1/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/openssl1/trunk/files/changelog.CSW 2013-08-07 15:23:18 UTC (rev 21668) +++ csw/mgar/pkg/openssl1/trunk/files/changelog.CSW 2013-08-07 18:53:09 UTC (rev 21669) @@ -1,10 +1,17 @@ +openssl (1.0.1e,rev=2013.08.07) unstable + + * Disabled pkcs11 engine patch under sparc for now as it + creates some problem with the tls protocol (see bug #5098). + + -- yann rouillard Wed, 07 Aug 2013 20:51:08 +0200 + openssl (1.0.1e,rev=2013.07.09) unstable - * Removed checkinstall, preinstall and postinstall scripts - that are not necessary anymore (Solaris 8 support and + * removed checkinstall, preinstall and postinstall scripts + that are not necessary anymore (solaris 8 support and old modification of certificates location). - -- Yann Rouillard Tue, 09 Jul 2013 16:14:39 +0200 + -- yann rouillard Tue, 09 jul 2013 16:14:39 +0200 openssl (1.0.1e,rev=2013.03.22) unstable 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 Aug 7 23:31:27 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 07 Aug 2013 21:31:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[21670] csw/mgar/pkg/smartmontools/trunk Message-ID: Revision: 21670 http://gar.svn.sourceforge.net/gar/?rev=21670&view=rev Author: lblume Date: 2013-08-07 21:31:27 +0000 (Wed, 07 Aug 2013) Log Message: ----------- smartmontools/trunk: Bump to 6.2 Modified Paths: -------------- csw/mgar/pkg/smartmontools/trunk/Makefile csw/mgar/pkg/smartmontools/trunk/checksums Modified: csw/mgar/pkg/smartmontools/trunk/Makefile =================================================================== --- csw/mgar/pkg/smartmontools/trunk/Makefile 2013-08-07 18:53:09 UTC (rev 21669) +++ csw/mgar/pkg/smartmontools/trunk/Makefile 2013-08-07 21:31:27 UTC (rev 21670) @@ -1,7 +1,7 @@ # $Id$ NAME = smartmontools -VERSION = 6.1 +VERSION = 6.2 GARTYPE = v2 DESCRIPTION = S.M.A.R.T. disk monitoring tools Modified: csw/mgar/pkg/smartmontools/trunk/checksums =================================================================== --- csw/mgar/pkg/smartmontools/trunk/checksums 2013-08-07 18:53:09 UTC (rev 21669) +++ csw/mgar/pkg/smartmontools/trunk/checksums 2013-08-07 21:31:27 UTC (rev 21670) @@ -1 +1 @@ -83a3a681f8183ed858392d550ae1cca6 smartmontools-6.1.tar.gz +d44f84081a12cef79cd17f78044351fc smartmontools-6.2.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Thu Aug 8 10:37:02 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Thu, 08 Aug 2013 08:37:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[21671] csw/mgar/pkg/tracker/trunk/Makefile Message-ID: Revision: 21671 http://gar.svn.sourceforge.net/gar/?rev=21671&view=rev Author: slowfranklin Date: 2013-08-08 08:36:58 +0000 (Thu, 08 Aug 2013) Log Message: ----------- tracker/trunk: Add CSWlibglib2-dev dep, needed for glib-compile-schemas Modified Paths: -------------- csw/mgar/pkg/tracker/trunk/Makefile Modified: csw/mgar/pkg/tracker/trunk/Makefile =================================================================== --- csw/mgar/pkg/tracker/trunk/Makefile 2013-08-07 21:31:27 UTC (rev 21670) +++ csw/mgar/pkg/tracker/trunk/Makefile 2013-08-08 08:36:58 UTC (rev 21671) @@ -50,6 +50,7 @@ RUNTIME_DEP_PKGS_CSWtracker += CSWlibgio2-0-0 RUNTIME_DEP_PKGS_CSWtracker += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWtracker += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWtracker += CSWlibglib2-dev # for glib-compile-schemas # RUNTIME_DEP_PKGS_CSWtracker += CSWexempi RUNTIME_DEP_PKGS_CSWtracker += CSWlibtracker-sparql0-16-0 RUNTIME_DEP_PKGS_CSWtracker += CSWlibtracker-miner0-16-0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Thu Aug 8 11:02:06 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Thu, 08 Aug 2013 09:02:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[21672] csw/mgar/pkg/tracker/trunk/Makefile Message-ID: Revision: 21672 http://gar.svn.sourceforge.net/gar/?rev=21672&view=rev Author: slowfranklin Date: 2013-08-08 09:02:03 +0000 (Thu, 08 Aug 2013) Log Message: ----------- tracker/trunk: Add missing checkpkg override for glib2-dev Modified Paths: -------------- csw/mgar/pkg/tracker/trunk/Makefile Modified: csw/mgar/pkg/tracker/trunk/Makefile =================================================================== --- csw/mgar/pkg/tracker/trunk/Makefile 2013-08-08 08:36:58 UTC (rev 21671) +++ csw/mgar/pkg/tracker/trunk/Makefile 2013-08-08 09:02:03 UTC (rev 21672) @@ -119,6 +119,7 @@ SPKG_DESC_CSWtracker = $(DESCRIPTION) CHECKPKG_OVERRIDES_CSWtracker += surplus-dependency|CSWdbus CHECKPKG_OVERRIDES_CSWtracker += surplus-dependency|CSWdconf +CHECKPKG_OVERRIDES_CSWtracker += surplus-dependency|CSWlibglib2-dev PACKAGES += CSWlibtracker-common SPKG_DESC_CSWlibtracker-common += $(DESCRIPTION), libtracker-common 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 Aug 8 11:13:56 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 08 Aug 2013 09:13:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[21673] csw/mgar/pkg/cpan/DBD-Informix/trunk/Makefile Message-ID: Revision: 21673 http://gar.svn.sourceforge.net/gar/?rev=21673&view=rev Author: dmichelsen Date: 2013-08-08 09:13:55 +0000 (Thu, 08 Aug 2013) Log Message: ----------- cpan/DBD-Informix/trunk: Skip testsuite and add overrides Modified Paths: -------------- csw/mgar/pkg/cpan/DBD-Informix/trunk/Makefile Modified: csw/mgar/pkg/cpan/DBD-Informix/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DBD-Informix/trunk/Makefile 2013-08-08 09:02:03 UTC (rev 21672) +++ csw/mgar/pkg/cpan/DBD-Informix/trunk/Makefile 2013-08-08 09:13:55 UTC (rev 21673) @@ -19,6 +19,23 @@ SPKG_DESC_CSWpm-dbd-informix = IBM Informix Database Driver for Perl DBI RUNTIME_DEP_PKGS_CSWpm-dbd-informix += CSWpm-dbi +# This is the location of the client library which we are not allowed to distribute +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += bad-rpath-entry|/opt/IBM/informix/lib|opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += bad-rpath-entry|/opt/IBM/informix/lib|opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += bad-rpath-entry|/opt/IBM/informix/lib/esql|opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += soname-not-found|/opt/IBM/informix/lib/esql/libifgen.so|is|needed|by|opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += soname-not-found|/opt/IBM/informix/lib/esql/libifglx.so|is|needed|by|opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += soname-not-found|/opt/IBM/informix/lib/esql/libifos.so|is|needed|by|opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += soname-not-found|/opt/IBM/informix/lib/esql/libifgls.so|is|needed|by|opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += soname-not-found|/opt/IBM/informix/lib/libifasf.so|is|needed|by|opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += soname-not-found|/opt/IBM/informix/lib/esql/libifsql.so|is|needed|by|opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += no-direct-binding|/opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so|is|not|directly|bound|to|soname|/opt/IBM/informix/lib/esql/libifglx.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += no-direct-binding|/opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so|is|not|directly|bound|to|soname|/opt/IBM/informix/lib/esql/libifgls.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += no-direct-binding|/opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so|is|not|directly|bound|to|soname|/opt/IBM/informix/lib/libifasf.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += no-direct-binding|/opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so|is|not|directly|bound|to|soname|/opt/IBM/informix/lib/esql/libifsql.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += no-direct-binding|/opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so|is|not|directly|bound|to|soname|/opt/IBM/informix/lib/esql/libifos.so +CHECKPKG_OVERRIDES_CSWpm-dbd-informix += no-direct-binding|/opt/csw/lib/perl/csw/auto/DBD/Informix/Informix.so|is|not|directly|bound|to|soname|/opt/IBM/informix/lib/esql/libifgen.so + NOISALIST = 1 INFORMIXDIR = /opt/IBM/informix @@ -40,4 +57,6 @@ EXTRA_LIB += $(INFORMIXDIR)/lib EXTRA_LIB += $(INFORMIXDIR)/lib/esql +SKIPTEST ?= 1 + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Aug 8 12:13:01 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 08 Aug 2013 10:13:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[21674] csw/mgar/pkg/ImageMagick/trunk Message-ID: Revision: 21674 http://gar.svn.sourceforge.net/gar/?rev=21674&view=rev Author: lblume Date: 2013-08-08 10:12:59 +0000 (Thu, 08 Aug 2013) Log Message: ----------- ImageMagick/trunk: Bump to 6.8.6-8;Include new fully 64 bit deps Modified Paths: -------------- csw/mgar/pkg/ImageMagick/trunk/Makefile csw/mgar/pkg/ImageMagick/trunk/checksums Modified: csw/mgar/pkg/ImageMagick/trunk/Makefile =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/Makefile 2013-08-08 09:13:55 UTC (rev 21673) +++ csw/mgar/pkg/ImageMagick/trunk/Makefile 2013-08-08 10:12:59 UTC (rev 21674) @@ -1,6 +1,6 @@ NAME = imagemagick VERSION = 6.8.6 -GARSUBREV = 6 +GARSUBREV = 8 GARTYPE = v2 DESCRIPTION = A comprehensive package supporting automated and interative manipulation of images @@ -39,6 +39,9 @@ BUILD_DEP_PKGS += CSWilmbase-dev BUILD_DEP_PKGS += CSWliblqr-dev BUILD_DEP_PKGS += CSWlibjasper-dev +BUILD_DEP_PKGS += CSWlibrsvg-dev +BUILD_DEP_PKGS += CSWliblcms2-dev +BUILD_DEP_PKGS += CSWgraphviz-dev PACKAGES += CSWlibmagickcore6q16hdri1 CATALOGNAME_CSWlibmagickcore6q16hdri1 = libmagickcore6q16hdri1 @@ -96,7 +99,7 @@ RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibjpeg7 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibfpx1 -RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibtiff3 +RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibtiff5 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibz1 RUNTIME_DEP_PKGS_CSWimagemagick += CSWopenexrrt @@ -112,6 +115,9 @@ RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibrsvg2-2 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibgs9 +RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibcgraph6 +RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibgvc6 #PACKAGES += CSWpm-image-magick #SPKG_DESC_CSWpm-image-magick = Image::Magick: Perl binding for Imagemagick @@ -126,7 +132,7 @@ REINPLACE_USRLOCAL += config/mime.xml -EXTRA_LINKER_FLAGS = -Bdirect -lsocket -lnsl +EXTRA_LINKER_FLAGS = -lsocket -lnsl EXTRA_LD_OPTIONS = -z nolazyload # We especially don't want ISALIST for the above /usr/openwin/lib @@ -149,11 +155,11 @@ CONFIGURE_ARGS += --disable-silent-rules CONFIGURE_ARGS += --with-wmf CONFIGURE_ARGS += --with-rsvg +CONFIGURE_ARGS += --with-gvc +CONFIGURE_ARGS += --with-gslib -# Disable perl completely for now +# Disable perl completely until it's rebuilt with GCC CONFIGURE_ARGS += --without-perl -# Until graphviz and perl is 64bit -CONFIGURE_ARGS-64 += --without-gvc #CONFIGURE_ARGS-32 += --with-perl=$(bindir)/perl #CONFIGURE_ARGS-64 += --without-perl CONFIGURE_ARGS += $(CONFIGURE_ARGS-$(MEMORYMODEL)) Modified: csw/mgar/pkg/ImageMagick/trunk/checksums =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/checksums 2013-08-08 09:13:55 UTC (rev 21673) +++ csw/mgar/pkg/ImageMagick/trunk/checksums 2013-08-08 10:12:59 UTC (rev 21674) @@ -1 +1 @@ -ddd46cdf8f6eb22deee14d4fee267796 ImageMagick-6.8.6-6.tar.xz +0f4fb4997f8e8cf0d5b4d4cb3da0e0b4 ImageMagick-6.8.6-8.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Thu Aug 8 12:56:11 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Thu, 08 Aug 2013 10:56:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[21675] csw/mgar/pkg/openssl1/trunk/files/openssl-1.0. 1e-t4-engine.sparc-patch Message-ID: Revision: 21675 http://gar.svn.sourceforge.net/gar/?rev=21675&view=rev Author: chninkel Date: 2013-08-08 10:56:11 +0000 (Thu, 08 Aug 2013) Log Message: ----------- update t4 engine patch so that it can be applied without needing pkcs11 engine patch Modified Paths: -------------- csw/mgar/pkg/openssl1/trunk/files/openssl-1.0.1e-t4-engine.sparc-patch Modified: csw/mgar/pkg/openssl1/trunk/files/openssl-1.0.1e-t4-engine.sparc-patch =================================================================== --- csw/mgar/pkg/openssl1/trunk/files/openssl-1.0.1e-t4-engine.sparc-patch 2013-08-08 10:12:59 UTC (rev 21674) +++ csw/mgar/pkg/openssl1/trunk/files/openssl-1.0.1e-t4-engine.sparc-patch 2013-08-08 10:56:11 UTC (rev 21675) @@ -98,7 +98,7 @@ eng_openssl.c eng_cnf.c eng_dyn.c eng_cryptodev.c \ + eng_t4.c eng_t4_des.c eng_t4_md5.c \ + eng_t4_sha1.c eng_t4_sha256.c eng_t4_sha512.c eng_t4_montmul.c \ - eng_rsax.c eng_rdrand.c hw_pk11.c hw_pk11_pub.c hw_pk11_uri.c + eng_rsax.c eng_rdrand.c LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ eng_table.o eng_pkey.o eng_fat.o eng_all.o \ tb_rsa.o tb_dsa.o tb_ecdsa.o tb_dh.o tb_ecdh.o tb_rand.o tb_store.o \ @@ -106,7 +106,7 @@ eng_openssl.o eng_cnf.o eng_dyn.o eng_cryptodev.o \ + eng_t4.o eng_t4_des.o eng_t4_md5.o \ + eng_t4_sha1.o eng_t4_sha256.o eng_t4_sha512.o eng_t4_montmul.o \ - eng_rsax.o eng_rdrand.o hw_pk11.o hw_pk11_pub.o hw_pk11_uri.o + eng_rsax.o eng_rdrand.o SRC= $(LIBSRC) Index: crypto/engine/eng_all.c @@ -130,12 +130,11 @@ diff -ru openssl-1.0.0d/crypto/engine/engine.h openssl-1.0.0d/crypto/engine/engine.h --- openssl-1.0.0d/crypto/engine/engine.h 2011-05-24 17:02:20.000000000 -0700 +++ openssl-1.0.0d/crypto/engine/engine.h 2011-05-24 18:05:29.075766123 -0700 -@@ -351,6 +351,7 @@ +@@ -351,5 +351,6 @@ #endif #endif void ENGINE_load_cryptodev(void); +void ENGINE_load_t4(void); - void ENGINE_load_pk11(void); void ENGINE_load_rsax(void); void ENGINE_load_rdrand(void); Index: crypto/md5/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Thu Aug 8 22:57:45 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Thu, 08 Aug 2013 20:57:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[21676] csw/mgar/pkg/gnutls3/trunk Message-ID: Revision: 21676 http://gar.svn.sourceforge.net/gar/?rev=21676&view=rev Author: chninkel Date: 2013-08-08 20:57:42 +0000 (Thu, 08 Aug 2013) Log Message: ----------- gnutls3/trunk: updated to 3.1.13 Modified Paths: -------------- csw/mgar/pkg/gnutls3/trunk/Makefile csw/mgar/pkg/gnutls3/trunk/checksums Modified: csw/mgar/pkg/gnutls3/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnutls3/trunk/Makefile 2013-08-08 10:56:11 UTC (rev 21675) +++ csw/mgar/pkg/gnutls3/trunk/Makefile 2013-08-08 20:57:42 UTC (rev 21676) @@ -1,5 +1,5 @@ NAME = gnutls -VERSION = 3.1.12 +VERSION = 3.1.13 DESCRIPTION = GNU Transport Layer Security libraries and tools define BLURB Modified: csw/mgar/pkg/gnutls3/trunk/checksums =================================================================== --- csw/mgar/pkg/gnutls3/trunk/checksums 2013-08-08 10:56:11 UTC (rev 21675) +++ csw/mgar/pkg/gnutls3/trunk/checksums 2013-08-08 20:57:42 UTC (rev 21676) @@ -1 +1 @@ -818cfc4cc2a1631c0256a809bd8c5e7e gnutls-3.1.12.tar.xz +1106f63e3795569f5a527b5cf68fc5b1 gnutls-3.1.13.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 9 12:18:14 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 09 Aug 2013 10:18:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[21677] csw/mgar/gar/v2/categories/python/category.mk Message-ID: Revision: 21677 http://gar.svn.sourceforge.net/gar/?rev=21677&view=rev Author: pfelecan Date: 2013-08-09 10:18:09 +0000 (Fri, 09 Aug 2013) Log Message: ----------- .buildsys/v2: correct GARCOMPILER's definition Modified Paths: -------------- csw/mgar/gar/v2/categories/python/category.mk Modified: csw/mgar/gar/v2/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2/categories/python/category.mk 2013-08-08 20:57:42 UTC (rev 21676) +++ csw/mgar/gar/v2/categories/python/category.mk 2013-08-09 10:18:09 UTC (rev 21677) @@ -51,4 +51,4 @@ GARCOMPILER_PYTHON_2_6 = SOS12U3 GARCOMPILER_PYTHON_2_7 = GNU -GARCOMPILER = $(GARCOMPILER_$(PYTHON_VERSION)) +GARCOMPILER = $(GARCOMPILER_PYTHON_$(PYTHON_VERSION)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Fri Aug 9 14:04:57 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Fri, 09 Aug 2013 12:04:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[21678] csw/mgar/pkg/graphviz/trunk/Makefile Message-ID: Revision: 21678 http://gar.svn.sourceforge.net/gar/?rev=21678&view=rev Author: lblume Date: 2013-08-09 12:04:57 +0000 (Fri, 09 Aug 2013) Log Message: ----------- graphviz/trunk: Remove the ackage scripts of graphvizgd Modified Paths: -------------- csw/mgar/pkg/graphviz/trunk/Makefile Modified: csw/mgar/pkg/graphviz/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-09 10:18:09 UTC (rev 21677) +++ csw/mgar/pkg/graphviz/trunk/Makefile 2013-08-09 12:04:57 UTC (rev 21678) @@ -45,6 +45,7 @@ RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibcgraph6 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgvc6 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibpathplan4 +RUNTIME_DEP_PKGS_CSWgraphviz += CSWgraphvizgd RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibrsvg2-2 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgdk-x11-2-0-0 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgdk-pixbuf2-0-0 @@ -59,7 +60,6 @@ RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibatk1-0-0 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibexpat1 RUNTIME_DEP_PKGS_CSWgraphviz += CSWlibgvpr2 -RUNTIME_DEP_PKGS_CSWgraphviz += CSWgraphvizgd RUNTIME_DEP_PKGS_CSWgraphviz += CSWliblasi1 PKGFILES_CSWgraphviz += $(call baseisadirs,$(bindir),(?:(?!diffimg).)*) PKGFILES_CSWgraphviz += $(call baseisadirs,$(libdir),graphviz/libgvplugin_core\.so\..*) @@ -336,7 +336,6 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz DISTFILES += CSWgraphviz.postinstall -DISTFILES += CSWgraphvizgd.postinstall CSWgraphvizgd.postuninstall DISTFILES += CSWgraphvizdevil.postinstall CSWgraphvizdevil.postuninstall CONFIGURE_ARGS = $(DIRPATHS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 9 14:08:28 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 09 Aug 2013 12:08:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[21679] csw/mgar/gar/v2/categories/python/category.mk Message-ID: Revision: 21679 http://gar.svn.sourceforge.net/gar/?rev=21679&view=rev Author: pfelecan Date: 2013-08-09 12:08:28 +0000 (Fri, 09 Aug 2013) Log Message: ----------- gar/v2: explicit the 2.7 compiler (for generic names is too late) Modified Paths: -------------- csw/mgar/gar/v2/categories/python/category.mk Modified: csw/mgar/gar/v2/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2/categories/python/category.mk 2013-08-09 12:04:57 UTC (rev 21678) +++ csw/mgar/gar/v2/categories/python/category.mk 2013-08-09 12:08:28 UTC (rev 21679) @@ -49,6 +49,7 @@ include gar/gar.mk +# TODO: how can we transform this in SUN and GNU respectively? GARCOMPILER_PYTHON_2_6 = SOS12U3 -GARCOMPILER_PYTHON_2_7 = GNU +GARCOMPILER_PYTHON_2_7 = GCC4 GARCOMPILER = $(GARCOMPILER_PYTHON_$(PYTHON_VERSION)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 9 14:33:48 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 09 Aug 2013 12:33:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[21680] csw/mgar/gar/v2 Message-ID: Revision: 21680 http://gar.svn.sourceforge.net/gar/?rev=21680&view=rev Author: pfelecan Date: 2013-08-09 12:33:45 +0000 (Fri, 09 Aug 2013) Log Message: ----------- gar/v2: the target command for setup.py change from test to check in 2.7 and subsequent Modified Paths: -------------- csw/mgar/gar/v2/categories/python/category.mk csw/mgar/gar/v2/gar.conf.mk csw/mgar/gar/v2/gar.lib.mk Modified: csw/mgar/gar/v2/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2/categories/python/category.mk 2013-08-09 12:08:28 UTC (rev 21679) +++ csw/mgar/gar/v2/categories/python/category.mk 2013-08-09 12:33:45 UTC (rev 21680) @@ -49,7 +49,8 @@ include gar/gar.mk -# TODO: how can we transform this in SUN and GNU respectively? +# TODO: how can we transform this in SUN and GNU respectively? note +# that it's to early(?) to use the generic name GARCOMPILER_PYTHON_2_6 = SOS12U3 GARCOMPILER_PYTHON_2_7 = GCC4 GARCOMPILER = $(GARCOMPILER_PYTHON_$(PYTHON_VERSION)) Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2013-08-09 12:08:28 UTC (rev 21679) +++ csw/mgar/gar/v2/gar.conf.mk 2013-08-09 12:33:45 UTC (rev 21680) @@ -894,6 +894,11 @@ PYTHON_MODULE_PACKAGE_PREFIX_3_3 = CSWpy33- PYTHON_MODULE_PACKAGE_PREFIX = $(PYTHON_MODULE_PACKAGE_PREFIX_$(PYTHON_VERSION)) +PYTHON_TEST_TARGET_2_6 = test +PYTHON_TEST_TARGET_2_7 = check +PYTHON_TEST_TARGET_3_3 = check +PYTHON_TEST_TARGET = $(PYTHON_TEST_TARGET_$(PYTHON_VERSION)) + # Global environment export PATH PKG_CONFIG_PATH Modified: csw/mgar/gar/v2/gar.lib.mk =================================================================== --- csw/mgar/gar/v2/gar.lib.mk 2013-08-09 12:08:28 UTC (rev 21679) +++ csw/mgar/gar/v2/gar.lib.mk 2013-08-09 12:33:45 UTC (rev 21680) @@ -988,7 +988,7 @@ test-%/setup.py: @echo " ==> Running setup.py test in $*" @( cd $* ; cd $(OBJDIR) ; $(TEST_ENV) python ./setup.py test $(TEST_ARGS) ) - @( cd $* ; cd $(OBJDIR) ; $(TEST_ENV) $(PYTHON_EXECUTABLE) ./setup.py test $(TEST_ARGS) ) + @( cd $* ; cd $(OBJDIR) ; $(TEST_ENV) $(PYTHON_EXECUTABLE) ./setup.py $(PYTHON_TEST_TARGET) $(TEST_ARGS) ) @$(MAKECOOKIE) ################# INSTALL RULES #################### 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 Aug 9 15:04:23 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 09 Aug 2013 13:04:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[21681] csw/mgar/pkg/libstatgrab/trunk Message-ID: Revision: 21681 http://gar.svn.sourceforge.net/gar/?rev=21681&view=rev Author: dmichelsen Date: 2013-08-09 13:04:22 +0000 (Fri, 09 Aug 2013) Log Message: ----------- libstatgrab/trunk: Update to 0.90 Modified Paths: -------------- csw/mgar/pkg/libstatgrab/trunk/Makefile csw/mgar/pkg/libstatgrab/trunk/checksums Modified: csw/mgar/pkg/libstatgrab/trunk/Makefile =================================================================== --- csw/mgar/pkg/libstatgrab/trunk/Makefile 2013-08-09 12:33:45 UTC (rev 21680) +++ csw/mgar/pkg/libstatgrab/trunk/Makefile 2013-08-09 13:04:22 UTC (rev 21681) @@ -1,5 +1,5 @@ NAME = libstatgrab -VERSION = 0.17 +VERSION = 0.90 GARTYPE = v2 DESCRIPTION = A library that provides cross platform access to statistics @@ -13,19 +13,18 @@ MASTER_SITES = ftp://ftp.uk.i-scream.org/pub/i-scream/libstatsgrab/ MASTER_SITES += http://dl.ambiweb.de/mirrors/ftp.i-scream.org/libstatgrab/ -DISTFILES = $(DISTNAME).tar.gz +DISTFILES += $(DISTNAME).tar.gz VENDOR_URL = http://www.i-scream.org/libstatgrab/ -PACKAGES += CSWlibstatgrab6 -SPKG_DESC_CSWlibstatgrab6 = A library that provides cross platform access to statistics, libstatgrab.so.6 -PKGFILES_CSWlibstatgrab6 += $(call pkgfiles_lib,libstatgrab.so.6) -OBSOLETED_BY_CSWlibstatgrab6 = CSWlibstatgrab +PACKAGES += CSWlibstatgrab9 +SPKG_DESC_CSWlibstatgrab9 = A library that provides cross platform access to statistics, libstatgrab.so.9 +PKGFILES_CSWlibstatgrab9 += $(call pkgfiles_lib,libstatgrab.so.9) PACKAGES += CSWlibstatgrab-dev -SPKG_DESC_CSWlibstatgrab-dev = Development files for libstatgrab.so.6 +SPKG_DESC_CSWlibstatgrab-dev = Development files for libstatgrab.so.9 PKGFILES_CSWlibstatgrab-dev += $(PKGFILES_DEVEL) -RUNTIME_DEP_PKGS_CSWlibstatgrab-dev += CSWlibstatgrab6 +RUNTIME_DEP_PKGS_CSWlibstatgrab-dev += CSWlibstatgrab9 # Put this in -utils: # statgrab-make-mrtg-config @@ -37,10 +36,10 @@ PACKAGES += CSWlibstatgrab-utils SPKG_DESC_CSWlibstatgrab-utils = Statistic gathering tools based on libstatgrab.so.6 # PKGFILES is catchall -RUNTIME_DEP_PKGS_CSWlibstatgrab-utils += CSWlibstatgrab6 +RUNTIME_DEP_PKGS_CSWlibstatgrab-utils += CSWlibstatgrab9 # Don't pull in ncurses from CSW, but add needed libraries to be self-sufficient -LINKER_FLAGS = -lkstat -ldevinfo -lsocket -lnsl +LINKER_FLAGS = BUILD64 = 1 ISAEXEC = 1 Modified: csw/mgar/pkg/libstatgrab/trunk/checksums =================================================================== --- csw/mgar/pkg/libstatgrab/trunk/checksums 2013-08-09 12:33:45 UTC (rev 21680) +++ csw/mgar/pkg/libstatgrab/trunk/checksums 2013-08-09 13:04:22 UTC (rev 21681) @@ -1 +1 @@ -58385c9392898be3b09ffc5e3ebe8717 libstatgrab-0.17.tar.gz +b7c349c500fabc14d04c7c1ac7770d94 libstatgrab-0.90.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Fri Aug 9 16:38:13 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Fri, 09 Aug 2013 14:38:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[21682] csw/mgar/pkg/tracker/trunk Message-ID: Revision: 21682 http://gar.svn.sourceforge.net/gar/?rev=21682&view=rev Author: slowfranklin Date: 2013-08-09 14:38:12 +0000 (Fri, 09 Aug 2013) Log Message: ----------- tracker/trunk: Add a patch for another Linuxism Modified Paths: -------------- csw/mgar/pkg/tracker/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/tracker/trunk/files/0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli.patch Modified: csw/mgar/pkg/tracker/trunk/Makefile =================================================================== --- csw/mgar/pkg/tracker/trunk/Makefile 2013-08-09 13:04:22 UTC (rev 21681) +++ csw/mgar/pkg/tracker/trunk/Makefile 2013-08-09 14:38:12 UTC (rev 21682) @@ -113,6 +113,8 @@ PATCHFILES += 0003-Replace-uuid_unparse_lower-with-uuid_unparse.patch PATCHFILES += 0004-_XOPEN_SOURCE-hides-non-standard-stuff-__EXTENSIONS_.patch PATCHFILES += 0005-exempi-xmp.h-is-missing-a-stdbool.h-include.patch +# Submitted upstream, should be in 0.16.3 +PATCHFILES += 0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli.patch # Packages PACKAGES += CSWtracker Added: csw/mgar/pkg/tracker/trunk/files/0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli.patch =================================================================== --- csw/mgar/pkg/tracker/trunk/files/0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli.patch (rev 0) +++ csw/mgar/pkg/tracker/trunk/files/0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli.patch 2013-08-09 14:38:12 UTC (rev 21682) @@ -0,0 +1,52 @@ +From 553c8845bdbca567eedd35fa8aa37af653ced013 Mon Sep 17 00:00:00 2001 +From: Ralph Boehme +Date: Fri, 9 Aug 2013 16:27:48 +0200 +Subject: [PATCH] libtracker-common: Use procfs psinfo instead of cmdline on + Solaris + +--- + src/libtracker-common/tracker-dbus.c | 13 +++++++++++++ + 1 file changed, 13 insertions(+) + +diff --git a/src/libtracker-common/tracker-dbus.c b/src/libtracker-common/tracker-dbus.c +index c086f83..beb1814 100644 +--- a/src/libtracker-common/tracker-dbus.c ++++ b/src/libtracker-common/tracker-dbus.c +@@ -31,6 +31,10 @@ + #include + #endif + ++#ifdef __sun ++#include ++#endif ++ + #include "tracker-dbus.h" + #include "tracker-log.h" + +@@ -153,6 +157,9 @@ client_data_new (gchar *sender) + gchar *contents = NULL; + GError *error = NULL; + gchar **strv; ++#ifdef __sun /* Solaris */ ++ psinfo_t psinfo = { 0 }; ++#endif + + pid_str = g_strdup_printf ("%ld", cd->pid); + filename = g_build_filename (G_DIR_SEPARATOR_S, +@@ -173,7 +180,13 @@ client_data_new (gchar *sender) + + g_free (filename); + ++#ifdef __sun /* Solaris */ ++ memcpy (&psinfo, contents, sizeof (psinfo)); ++ /* won't work with paths containing spaces :( */ ++ strv = g_strsplit (psinfo.pr_psargs, " ", 2); ++#else + strv = g_strsplit (contents, "^@", 2); ++#endif + if (strv && strv[0]) { + cd->binary = g_path_get_basename (strv[0]); + } +-- +1.8.3.4 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 9 17:58:52 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 09 Aug 2013 15:58:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[21683] csw/mgar/pkg/lang-python/python/branches/python-2.7 /Makefile Message-ID: Revision: 21683 http://gar.svn.sourceforge.net/gar/?rev=21683&view=rev Author: pfelecan Date: 2013-08-09 15:58:51 +0000 (Fri, 09 Aug 2013) Log Message: ----------- lan-python/python/branches/pythond-2.7: remove from the modules search path the unversioned directory as it raises issues with setup.py &co Modified Paths: -------------- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile Modified: csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile =================================================================== --- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2013-08-09 14:38:12 UTC (rev 21682) +++ csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2013-08-09 15:58:51 UTC (rev 21683) @@ -40,8 +40,6 @@ DISTFILES = $(DISTNAME).tar.bz2 DISTFILES += pyport.h -PATCHFILES += 0001-manage-previous-site-package.patch - # The test for sunaudiodev fails. Not that it's a good practice to skip # tests. #SKIPTEST = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Aug 9 18:35:20 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 09 Aug 2013 16:35:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[21684] csw/mgar/pkg/lang-python/python/branches/python-2.7 /files/0001-manage-previous-site-package.patch Message-ID: Revision: 21684 http://gar.svn.sourceforge.net/gar/?rev=21684&view=rev Author: pfelecan Date: 2013-08-09 16:35:19 +0000 (Fri, 09 Aug 2013) Log Message: ----------- lang-python/python/branches/pythond-2.7: remove the patch which introduced in the modules search path the unversioned directory Removed Paths: ------------- csw/mgar/pkg/lang-python/python/branches/python-2.7/files/0001-manage-previous-site-package.patch Deleted: csw/mgar/pkg/lang-python/python/branches/python-2.7/files/0001-manage-previous-site-package.patch =================================================================== --- csw/mgar/pkg/lang-python/python/branches/python-2.7/files/0001-manage-previous-site-package.patch 2013-08-09 15:58:51 UTC (rev 21683) +++ csw/mgar/pkg/lang-python/python/branches/python-2.7/files/0001-manage-previous-site-package.patch 2013-08-09 16:35:19 UTC (rev 21684) @@ -1,25 +0,0 @@ -From dc6b9371110febac2cd49e7284ad238262014a46 Mon Sep 17 00:00:00 2001 -From: Peter Felecan -Date: Mon, 22 Jul 2013 10:53:42 +0200 -Subject: [PATCH] manage previous site package - -this is to support the transition between an unversiond installation tree ---- - Lib/site.py | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/Lib/site.py b/Lib/site.py -index f1b0ae8..04fb5f2 100644 ---- a/Lib/site.py -+++ b/Lib/site.py -@@ -292,6 +292,7 @@ def getsitepackages(): - "python" + sys.version[:3], - "site-packages")) - sitepackages.append(os.path.join(prefix, "lib", "site-python")) -+ sitepackages.append(os.path.join(prefix, "lib", "python", "site-packages")) - else: - sitepackages.append(prefix) - sitepackages.append(os.path.join(prefix, "lib", "site-packages")) --- -1.8.3.1 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Sat Aug 10 08:12:30 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Sat, 10 Aug 2013 06:12:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[21685] csw/mgar/pkg/poppler-data/trunk Message-ID: Revision: 21685 http://gar.svn.sourceforge.net/gar/?rev=21685&view=rev Author: slowfranklin Date: 2013-08-10 06:12:25 +0000 (Sat, 10 Aug 2013) Log Message: ----------- poppler-data/trunk: Update to version 0.4.6 Modified Paths: -------------- csw/mgar/pkg/poppler-data/trunk/Makefile csw/mgar/pkg/poppler-data/trunk/checksums Modified: csw/mgar/pkg/poppler-data/trunk/Makefile =================================================================== --- csw/mgar/pkg/poppler-data/trunk/Makefile 2013-08-09 16:35:19 UTC (rev 21684) +++ csw/mgar/pkg/poppler-data/trunk/Makefile 2013-08-10 06:12:25 UTC (rev 21685) @@ -1,5 +1,5 @@ NAME = poppler-data -VERSION = 0.4.5 +VERSION = 0.4.6 GARTYPE = v2 DESCRIPTION = Poppler is a PDF rendering library based on the xpdf-3.0 code base Modified: csw/mgar/pkg/poppler-data/trunk/checksums =================================================================== --- csw/mgar/pkg/poppler-data/trunk/checksums 2013-08-09 16:35:19 UTC (rev 21684) +++ csw/mgar/pkg/poppler-data/trunk/checksums 2013-08-10 06:12:25 UTC (rev 21685) @@ -1 +1 @@ -448dd7c5077570e340340706cef931aa poppler-data-0.4.5.tar.gz +a8a7ca808827dd674faba6e4fc73b471 poppler-data-0.4.6.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Sat Aug 10 08:40:08 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Sat, 10 Aug 2013 06:40:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[21686] csw/mgar/pkg/poppler/trunk Message-ID: Revision: 21686 http://gar.svn.sourceforge.net/gar/?rev=21686&view=rev Author: slowfranklin Date: 2013-08-10 06:40:05 +0000 (Sat, 10 Aug 2013) Log Message: ----------- poppler/trunk: Update to version 0.24.0 Modified Paths: -------------- csw/mgar/pkg/poppler/trunk/Makefile csw/mgar/pkg/poppler/trunk/checksums Modified: csw/mgar/pkg/poppler/trunk/Makefile =================================================================== --- csw/mgar/pkg/poppler/trunk/Makefile 2013-08-10 06:12:25 UTC (rev 21685) +++ csw/mgar/pkg/poppler/trunk/Makefile 2013-08-10 06:40:05 UTC (rev 21686) @@ -1,7 +1,7 @@ # $Id$ NAME = poppler -VERSION = 0.22.4 +VERSION = 0.24.0 GARTYPE = v2 DESCRIPTION = Poppler is a PDF rendering library based on the xpdf-3.0 code base @@ -10,7 +10,7 @@ SPKG_SOURCEURL = http://poppler.freedesktop.org/ MASTER_SITES = http://poppler.freedesktop.org/ -DISTFILES = $(NAME)-$(VERSION).tar.gz +DISTFILES = $(NAME)-$(VERSION).tar.xz DISTFILES += old_libs_i386.tar.bz2 DISTFILES += old_libs_sparc.tar.bz2 @@ -29,7 +29,7 @@ PKGFILES_CSWlibpoppler-cpp0 += $(call baseisadirs,$(libdir),libpoppler-cpp\.so\.0\.2\.0) PKGFILES_CSWlibpoppler-cpp0 += $(call baseisadirs,$(libdir),libpoppler-cpp\.so\.0(\.\d+)*) SPKG_DESC_CSWlibpoppler-cpp0 += $(DESCRIPTION), libpoppler-cpp.so.0 -RUNTIME_DEP_PKGS_CSWlibpoppler-cpp0 += CSWlibpoppler37 +RUNTIME_DEP_PKGS_CSWlibpoppler-cpp0 += CSWlibpoppler43 RUNTIME_DEP_PKGS_CSWlibpoppler-cpp0 += CSWlibiconv2 PACKAGES += CSWlibpoppler-glib8 @@ -40,24 +40,24 @@ RUNTIME_DEP_PKGS_CSWlibpoppler-glib8 += CSWlibfreetype6 RUNTIME_DEP_PKGS_CSWlibpoppler-glib8 += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWlibpoppler-glib8 += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS_CSWlibpoppler-glib8 += CSWlibpoppler37 +RUNTIME_DEP_PKGS_CSWlibpoppler-glib8 += CSWlibpoppler43 RUNTIME_DEP_PKGS_CSWlibpoppler-glib8 += CSWlibgio2-0-0 -PACKAGES += CSWlibpoppler37 -PKGFILES_CSWlibpoppler37 += $(call baseisadirs,$(libdir),libpoppler\.so\.37\.0\.0) -PKGFILES_CSWlibpoppler37 += $(call baseisadirs,$(libdir),libpoppler\.so\.37(\.\d+)*) -SPKG_DESC_CSWlibpoppler37 += $(DESCRIPTION), libpoppler.so.37 -RUNTIME_DEP_PKGS_CSWlibpoppler37 += CSWlibfreetype6 -RUNTIME_DEP_PKGS_CSWlibpoppler37 += CSWlibjpeg7 -RUNTIME_DEP_PKGS_CSWlibpoppler37 += CSWlibfontconfig1 -RUNTIME_DEP_PKGS_CSWlibpoppler37 += CSWliblcms2-2 -RUNTIME_DEP_PKGS_CSWlibpoppler37 += CSWlibpng15-15 -RUNTIME_DEP_PKGS_CSWlibpoppler37 += CSWlibtiff3 +PACKAGES += CSWlibpoppler43 +PKGFILES_CSWlibpoppler43 += $(call baseisadirs,$(libdir),libpoppler\.so\.43\.0\.0) +PKGFILES_CSWlibpoppler43 += $(call baseisadirs,$(libdir),libpoppler\.so\.43(\.\d+)*) +SPKG_DESC_CSWlibpoppler43 += $(DESCRIPTION), libpoppler.so.43 +RUNTIME_DEP_PKGS_CSWlibpoppler43 += CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWlibpoppler43 += CSWlibjpeg7 +RUNTIME_DEP_PKGS_CSWlibpoppler43 += CSWlibfontconfig1 +RUNTIME_DEP_PKGS_CSWlibpoppler43 += CSWliblcms2-2 +RUNTIME_DEP_PKGS_CSWlibpoppler43 += CSWlibpng15-15 +RUNTIME_DEP_PKGS_CSWlibpoppler43 += CSWlibtiff5 PACKAGES += CSWpoppler-dev SPKG_DESC_CSWpoppler-dev += $(DESCRIPTION), development files PKGFILES_CSWpoppler-dev += $(PKGFILES_DEVEL) -RUNTIME_DEP_PKGS_CSWpoppler-dev += CSWlibpoppler37 +RUNTIME_DEP_PKGS_CSWpoppler-dev += CSWlibpoppler43 RUNTIME_DEP_PKGS_CSWpoppler-dev += CSWlibpoppler-cpp0 RUNTIME_DEP_PKGS_CSWpoppler-dev += CSWlibpoppler-glib8 @@ -83,7 +83,7 @@ CHECKPKG_OVERRIDES_CSWpoppler += file-collision|/opt/csw/share/man/man1/pdftotext.1|CSWpoppler|CSWxpdf CHECKPKG_OVERRIDES_CSWpoppler += file-collision|/opt/csw/share/man/man1/pdffonts.1|CSWpoppler|CSWxpdf CHECKPKG_OVERRIDES_CSWpoppler += file-collision|/opt/csw/share/man/man1/pdftohtml.1|CSWpdftohtml|CSWpoppler -RUNTIME_DEP_PKGS_CSWpoppler += CSWlibpoppler37 +RUNTIME_DEP_PKGS_CSWpoppler += CSWlibpoppler43 RUNTIME_DEP_PKGS_CSWpoppler += CSWlibfreetype6 RUNTIME_DEP_PKGS_CSWpoppler += CSWliblcms2-2 RUNTIME_DEP_PKGS_CSWpoppler += CSWlibcairo2 Modified: csw/mgar/pkg/poppler/trunk/checksums =================================================================== --- csw/mgar/pkg/poppler/trunk/checksums 2013-08-10 06:12:25 UTC (rev 21685) +++ csw/mgar/pkg/poppler/trunk/checksums 2013-08-10 06:40:05 UTC (rev 21686) @@ -1 +1 @@ -49d55921ce795778c7231fe9f2fe923b poppler-0.22.4.tar.gz +891000481f639e996d000d767d953a7f poppler-0.24.0.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 10 09:58:15 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 10 Aug 2013 07:58:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[21687] csw/mgar/pkg/lang-python/pylxml/trunk Message-ID: Revision: 21687 http://gar.svn.sourceforge.net/gar/?rev=21687&view=rev Author: pfelecan Date: 2013-08-10 07:58:14 +0000 (Sat, 10 Aug 2013) Log Message: ----------- lang-python/pylxml/trunk: - version bump - multi-version for 2.x interpreters - completed build and runtime dependencies Modified Paths: -------------- csw/mgar/pkg/lang-python/pylxml/trunk/Makefile csw/mgar/pkg/lang-python/pylxml/trunk/checksums Modified: csw/mgar/pkg/lang-python/pylxml/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pylxml/trunk/Makefile 2013-08-10 06:40:05 UTC (rev 21686) +++ csw/mgar/pkg/lang-python/pylxml/trunk/Makefile 2013-08-10 07:58:14 UTC (rev 21687) @@ -3,7 +3,7 @@ # - Move this to a pymodules/ subdirectory with the rest of the # python modules (similar to the cpan directory). NAME = lxml -VERSION = 3.1.2 +VERSION = 3.2.3 CATEGORIES = python GARTYPE = v2 @@ -15,17 +15,23 @@ but superior to the well-known ElementTree API. endef -VENDOR_URL = http://codespeak.net/lxml/ +VENDOR_URL = http://lxml.de/ DISTNAME = lxml-$(VERSION) DISTFILES = $(DISTNAME).tar.gz # See http://codespeak.net/lxml/index.html#license LICENSE = doc/licenses/BSD.txt +BUILD_DEP_PKGS += CSWpython-dev +BUILD_DEP_PKGS += CSWpython27-dev +BUILD_DEP_PKGS += CSWlibxml2-dev +BUILD_DEP_PKGS += CSWlibxslt-dev + PACKAGES = CSWpy-lxml SPKG_DESC_CSWpy-lxml = Easy to use and powerful libxml2/libxslt binding for Python RUNTIME_DEP_PKGS_CSWpy-lxml += CSWlibxslt1 RUNTIME_DEP_PKGS_CSWpy-lxml += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWpy-lxml += CSWlibpython2-7-1-0 RUNTIME_DEP_PKGS_CSWpy-lxml += CSWlibexslt0 RUNTIME_DEP_PKGS_CSWpy-lxml += CSWlibxml2-2 Modified: csw/mgar/pkg/lang-python/pylxml/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/pylxml/trunk/checksums 2013-08-10 06:40:05 UTC (rev 21686) +++ csw/mgar/pkg/lang-python/pylxml/trunk/checksums 2013-08-10 07:58:14 UTC (rev 21687) @@ -1 +1 @@ -6f2173f4fd5b13fbc9f8a5096d23d524 lxml-3.1.2.tar.gz +fef47bb4ac72ac38ce778518dac42236 lxml-3.2.3.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 10 10:25:23 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 10 Aug 2013 08:25:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[21688] csw/mgar/pkg/cswclassutils/trunk Message-ID: Revision: 21688 http://gar.svn.sourceforge.net/gar/?rev=21688&view=rev Author: wahwah Date: 2013-08-10 08:25:19 +0000 (Sat, 10 Aug 2013) Log Message: ----------- cswclassutils/trunk: Use gmktemp explicitly Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/Makefile csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswpycompile Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/Makefile 2013-08-10 07:58:14 UTC (rev 21687) +++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2013-08-10 08:25:19 UTC (rev 21688) @@ -128,6 +128,10 @@ RUNTIME_DEP_PKGS_CSWcas-sslcert += CSWopenssl-utils CHECKPKG_OVERRIDES_CSWcas-sslcert += surplus-dependency|CSWopenssl-utils +# For gmktemp on Solaris 9 +RUNTIME_DEP_PKGS_CSWcas-pycompile += CSWcoreutils +CHECKPKG_OVERRIDES_CSWcas-pycompile += surplus-dependency|CSWcoreutils + CHECKPKG_OVERRIDES_CSWcas-initsmf += init-file-missing-cswinitsmf-class CHECKPKG_OVERRIDES_CSWcas-initsmf += init-file-wrong-location CHECKPKG_OVERRIDES_CSWcas-initsmf += init-file-wrong-location|/opt/csw/etc/init.d/csw.smf.sample Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswpycompile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswpycompile 2013-08-10 07:58:14 UTC (rev 21687) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswpycompile 2013-08-10 08:25:19 UTC (rev 21688) @@ -33,7 +33,7 @@ TMPDIR=/var/opt/csw/cswclassutils mkdir -p "${TMPDIR}" -PYCOMPILETMPDIR=`/usr/bin/mktemp -p "${TMPDIR}" -d -t cswpycompile-XXXXXX` +PYCOMPILETMPDIR=`/opt/csw/bin/gmktemp -p "${TMPDIR}" -d -t cswpycompile-XXXXXX` # We're unconditionally opening all available Python interpreters. It's not # optimal for efficiency, but easier to script. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 10 10:35:26 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 10 Aug 2013 08:35:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[21689] csw/mgar/pkg/ImageMagick/trunk/Makefile Message-ID: Revision: 21689 http://gar.svn.sourceforge.net/gar/?rev=21689&view=rev Author: lblume Date: 2013-08-10 08:35:26 +0000 (Sat, 10 Aug 2013) Log Message: ----------- ImageMagick/trunk: Remove useless build dep Modified Paths: -------------- csw/mgar/pkg/ImageMagick/trunk/Makefile Modified: csw/mgar/pkg/ImageMagick/trunk/Makefile =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/Makefile 2013-08-10 08:25:19 UTC (rev 21688) +++ csw/mgar/pkg/ImageMagick/trunk/Makefile 2013-08-10 08:35:26 UTC (rev 21689) @@ -26,7 +26,6 @@ LICENSE = LICENSE -BUILD_DEP_PKGS += CSWgraphvizdevel BUILD_DEP_PKGS += CSWliblcms-dev BUILD_DEP_PKGS += CSWlibcairo-dev BUILD_DEP_PKGS += CSWlibwmf-dev This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 10 11:01:16 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 10 Aug 2013 09:01:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[21690] csw/mgar/pkg/lang-python/pysetuptools/trunk/ Makefile Message-ID: Revision: 21690 http://gar.svn.sourceforge.net/gar/?rev=21690&view=rev Author: pfelecan Date: 2013-08-10 09:01:16 +0000 (Sat, 10 Aug 2013) Log Message: ----------- lang-python/pylxml/trunk: - multi-version for 2.x interpreters - corrected post merge syntax Modified Paths: -------------- csw/mgar/pkg/lang-python/pysetuptools/trunk/Makefile Modified: csw/mgar/pkg/lang-python/pysetuptools/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pysetuptools/trunk/Makefile 2013-08-10 08:35:26 UTC (rev 21689) +++ csw/mgar/pkg/lang-python/pysetuptools/trunk/Makefile 2013-08-10 09:01:16 UTC (rev 21690) @@ -31,6 +31,6 @@ include gar/category.mk post-merge: - @(cd $(PKGROOT)/$(SITE_PACKAGES/setuptools/; \ + @(cd $(PKGROOT)/$(SITE_PACKAGES)/setuptools/; \ rm -rf tests ) @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 10 11:07:59 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 10 Aug 2013 09:07:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[21691] csw/mgar/pkg/lang-python/python-dateutil/trunk/ Makefile Message-ID: Revision: 21691 http://gar.svn.sourceforge.net/gar/?rev=21691&view=rev Author: pfelecan Date: 2013-08-10 09:07:58 +0000 (Sat, 10 Aug 2013) Log Message: ----------- lang-python/pylxml/trunk: - multi-version for 2.x interpreters - corrected build dependency Modified Paths: -------------- csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile Modified: csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile 2013-08-10 09:01:16 UTC (rev 21690) +++ csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile 2013-08-10 09:07:58 UTC (rev 21691) @@ -15,7 +15,7 @@ MASTER_SITES = http://labix.org/download/$(NAME)/ DISTFILES = $(DISTNAME).tar.gz SPKG_SOURCEURL = http://labix.org/$(NAME)/ -BUILD_DEP_PKGS = CSWpysetuptools +BUILD_DEP_PKGS = CSWpy-setuptools PACKAGES = CSWpy-dateutil UPSTREAM_MASTER_SITES = http://labix.org/python-dateutil/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 10 11:31:53 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 10 Aug 2013 09:31:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[21692] csw/mgar/pkg/lang-python/pil/trunk/Makefile Message-ID: Revision: 21692 http://gar.svn.sourceforge.net/gar/?rev=21692&view=rev Author: pfelecan Date: 2013-08-10 09:31:53 +0000 (Sat, 10 Aug 2013) Log Message: ----------- lang-python/pylxml/trunk: - multi-version for 2.x interpreters - addition of minimal build dependency Modified Paths: -------------- csw/mgar/pkg/lang-python/pil/trunk/Makefile Modified: csw/mgar/pkg/lang-python/pil/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pil/trunk/Makefile 2013-08-10 09:07:58 UTC (rev 21691) +++ csw/mgar/pkg/lang-python/pil/trunk/Makefile 2013-08-10 09:31:53 UTC (rev 21692) @@ -18,11 +18,15 @@ UFILES_REGEX = Imaging-(\d+(?:\.\d+)*).tar.gz EXTRA_MERGE_EXCLUDE_FILES = .*\.pyc +BUILD_DEP_PKGS += CSWpython-dev +BUILD_DEP_PKGS += CSWpython27-dev + PACKAGES = CSWpy-pil SPKG_DESC_CSWpy-pil = Python Imaging Library RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibfreetype6 RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibjpeg7 RUNTIME_DEP_PKGS_CSWpy-pil += CSWliblcms1 +RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibpython2-7-1-0 RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibz1 RUNTIME_DEP_PKGS_CSWpy-pil += CSWtcl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Aug 10 11:50:44 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 10 Aug 2013 09:50:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[21693] csw/mgar/pkg/gnutls3/trunk Message-ID: Revision: 21693 http://gar.svn.sourceforge.net/gar/?rev=21693&view=rev Author: chninkel Date: 2013-08-10 09:50:43 +0000 (Sat, 10 Aug 2013) Log Message: ----------- add a patch to force use of bash in somes non portable tests scripts that fails with Solaris /bin/sh Modified Paths: -------------- csw/mgar/pkg/gnutls3/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/gnutls3/trunk/files/0003-force-use-of-bash-shell-in-non-portable-test-scripts.patch Modified: csw/mgar/pkg/gnutls3/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnutls3/trunk/Makefile 2013-08-10 09:31:53 UTC (rev 21692) +++ csw/mgar/pkg/gnutls3/trunk/Makefile 2013-08-10 09:50:43 UTC (rev 21693) @@ -14,6 +14,10 @@ # PATCHFILES += 0001-Do-not-strip-norunpath.patch PATCHFILES += 0002-Use-AF_UNIX-instead-of-AF_LOCAL-on-Solaris.patch +# Some test scripts now uses some bashisms, so we make +# sure that bash is used instead of sh +PATCHFILES += 0003-force-use-of-bash-shell-in-non-portable-test-scripts.patch + # Sun Studio 12 bails out on .deinit_func GARCOMPILER = GCC4 Added: csw/mgar/pkg/gnutls3/trunk/files/0003-force-use-of-bash-shell-in-non-portable-test-scripts.patch =================================================================== --- csw/mgar/pkg/gnutls3/trunk/files/0003-force-use-of-bash-shell-in-non-portable-test-scripts.patch (rev 0) +++ csw/mgar/pkg/gnutls3/trunk/files/0003-force-use-of-bash-shell-in-non-portable-test-scripts.patch 2013-08-10 09:50:43 UTC (rev 21693) @@ -0,0 +1,45234 @@ +From 4c0803855bc61c30e0878c4d30985377a114cd4d Mon Sep 17 00:00:00 2001 +From: Yann Rouillard +Date: Thu, 8 Aug 2013 23:46:01 +0200 +Subject: [PATCH] force use of bash shell in non portable test scripts + +--- + Makefile.in | 73 +- + aclocal.m4 | 173 +- + config.h.in | 3 - + configure | 9 +- + doc/Makefile.in | 76 +- + doc/credentials/Makefile.in | 73 +- + doc/credentials/openpgp/Makefile.in | 60 +- + doc/credentials/srp/Makefile.in | 60 +- + doc/credentials/x509/Makefile.in | 60 +- + doc/cyclo/Makefile.in | 60 +- + doc/examples/Makefile.in | 79 +- + doc/gnutls.info | 2556 ++++++------- + doc/gnutls.info-1 | 5064 +++++++++++++------------ + doc/gnutls.info-2 | 5033 +++++++++++++------------ + doc/gnutls.info-3 | 5634 ++++++++++++++++++++++------ + doc/gnutls.info-4 | 6801 +++++++++------------------------- + doc/gnutls.info-5 | Bin 16644 -> 0 bytes + doc/latex/Makefile.in | 60 +- + doc/manpages/Makefile.in | 60 +- + doc/reference/Makefile.in | 60 +- + doc/scripts/Makefile.in | 60 +- + extra/Makefile.in | 74 +- + extra/includes/Makefile.in | 60 +- + gl/Makefile.in | 74 +- + gl/tests/Makefile.in | 207 +- + guile/Makefile.in | 73 +- + guile/modules/Makefile.in | 60 +- + guile/src/Makefile.in | 61 +- + guile/tests/Makefile.in | 62 +- + lib/Makefile.in | 76 +- + lib/accelerated/Makefile.in | 74 +- + lib/accelerated/x86/Makefile.in | 61 +- + lib/algorithms/Makefile.in | 61 +- + lib/auth/Makefile.in | 61 +- + lib/ext/Makefile.in | 61 +- + lib/extras/Makefile.in | 61 +- + lib/includes/Makefile.in | 60 +- + lib/minitasn1/Makefile.in | 61 +- + lib/nettle/Makefile.in | 61 +- + lib/opencdk/Makefile.in | 61 +- + lib/openpgp/Makefile.in | 61 +- + lib/x509/Makefile.in | 61 +- + libdane/Makefile.in | 74 +- + libdane/includes/Makefile.in | 60 +- + src/Makefile.in | 93 +- + src/crywrap/Makefile.in | 61 +- + src/libopts/Makefile.in | 61 +- + tests/Makefile.in | 146 +- + tests/cert-tests/Makefile.in | 62 +- + tests/dsa/Makefile.in | 62 +- + tests/dsa/testdsa | 3 +- + tests/dtls/Makefile.in | 63 +- + tests/ecdsa/Makefile.in | 62 +- + tests/key-id/Makefile.in | 62 +- + tests/openpgp-certs/Makefile.in | 62 +- + tests/openpgp-certs/testcerts | 2 +- + tests/pkcs1-padding/Makefile.in | 62 +- + tests/pkcs12-decode/Makefile.in | 62 +- + tests/pkcs8-decode/Makefile.in | 62 +- + tests/rsa-md5-collision/Makefile.in | 62 +- + tests/safe-renegotiation/Makefile.in | 68 +- + tests/scripts/Makefile.in | 60 +- + tests/scripts/common.sh | 2 +- + tests/sha2/Makefile.in | 62 +- + tests/slow/Makefile.in | 65 +- + tests/srp/Makefile.in | 63 +- + tests/suite/Makefile.in | 65 +- + tests/userid/Makefile.in | 62 +- + 68 files changed, 13842 insertions(+), 15271 deletions(-) + delete mode 100644 doc/gnutls.info-5 + +diff --git a/Makefile.in b/Makefile.in +index 6094f8b..5384e41 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -1,7 +1,7 @@ +-# Makefile.in generated by automake 1.13.3 from Makefile.am. ++# Makefile.in generated by automake 1.13.1 from Makefile.am. + # @configure_input@ + +-# Copyright (C) 1994-2013 Free Software Foundation, Inc. ++# Copyright (C) 1994-2012 Free Software Foundation, Inc. + + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -34,51 +34,23 @@ + # along with this file; if not, write to the Free Software Foundation, + # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + VPATH = @srcdir@ +-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +-am__make_running_with_option = \ +- case $${target_option-} in \ +- ?) ;; \ +- *) echo "am__make_running_with_option: internal error: invalid" \ +- "target option '$${target_option-}' specified" >&2; \ +- exit 1;; \ +- esac; \ +- has_opt=no; \ +- sane_makeflags=$$MAKEFLAGS; \ +- if $(am__is_gnu_make); then \ +- sane_makeflags=$$MFLAGS; \ +- else \ ++am__make_dryrun = \ ++ { \ ++ am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ +- bs=\\; \ +- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ +- esac; \ +- fi; \ +- skip_next=no; \ +- strip_trailopt () \ +- { \ +- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +- }; \ +- for flg in $$sane_makeflags; do \ +- test $$skip_next = yes && { skip_next=no; continue; }; \ +- case $$flg in \ +- *=*|--*) continue;; \ +- -*I) strip_trailopt 'I'; skip_next=yes;; \ +- -*I?*) strip_trailopt 'I';; \ +- -*O) strip_trailopt 'O'; skip_next=yes;; \ +- -*O?*) strip_trailopt 'O';; \ +- -*l) strip_trailopt 'l'; skip_next=yes;; \ +- -*l?*) strip_trailopt 'l';; \ +- -[dEDm]) skip_next=yes;; \ +- -[JT]) skip_next=yes;; \ ++ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ ++ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ ++ *) \ ++ for am__flg in $$MAKEFLAGS; do \ ++ case $$am__flg in \ ++ *=*|--*) ;; \ ++ *n*) am__dry=yes; break;; \ ++ esac; \ ++ done;; \ + esac; \ +- case $$flg in \ +- *$$target_option*) has_opt=yes; break;; \ +- esac; \ +- done; \ +- test $$has_opt = yes +-am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +-am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) ++ test $$am__dry = yes; \ ++ } + pkgdatadir = $(datadir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ +@@ -1709,12 +1681,13 @@ distclean-libtool: + # (which will cause the Makefiles to be regenerated when you run 'make'); + # (2) otherwise, pass the desired values on the 'make' command line. + $(am__recursive_targets): +- @fail=; \ +- if $(am__make_keepgoing); then \ +- failcom='fail=yes'; \ +- else \ +- failcom='exit 1'; \ +- fi; \ ++ @fail= failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ +diff --git a/aclocal.m4 b/aclocal.m4 +index 1d13dcd..bd383f8 100644 +--- a/aclocal.m4 ++++ b/aclocal.m4 +@@ -1,6 +1,6 @@ +-# generated automatically by aclocal 1.13.3 -*- Autoconf -*- ++# generated automatically by aclocal 1.13.1 -*- Autoconf -*- + +-# Copyright (C) 1996-2013 Free Software Foundation, Inc. ++# Copyright (C) 1996-2012 Free Software Foundation, Inc. + + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -35,7 +35,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION], + [am__api_version='1.13' + dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to + dnl require some minimum version. Point them to the right macro. +-m4_if([$1], [1.13.3], [], ++m4_if([$1], [1.13.1], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl + ]) + +@@ -51,7 +51,7 @@ m4_define([_AM_AUTOCONF_VERSION], []) + # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. + # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. + AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +-[AM_AUTOMAKE_VERSION([1.13.3])dnl ++[AM_AUTOMAKE_VERSION([1.13.1])dnl + m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl + _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) +@@ -452,7 +452,7 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` +- test -z "$am__include" && continue ++ test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the +@@ -808,8 +808,7 @@ fi + AC_DEFUN([AM_PROG_MKDIR_P], + [AC_PREREQ([2.60])dnl + AC_REQUIRE([AC_PROG_MKDIR_P])dnl +-dnl FIXME we are no longer going to remove this! adjust warning +-dnl FIXME message accordingly. ++dnl FIXME to be removed in Automake 1.14. + AC_DIAGNOSE([obsolete], + [$0: this macro is deprecated, and will soon be removed. + You should use the Autoconf-provided 'AC][_PROG_MKDIR_P' macro instead, +@@ -1068,114 +1067,76 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + # Substitute a variable $(am__untar) that extract such + # a tarball read from stdin. + # $(am__untar) < result.tar +-# + AC_DEFUN([_AM_PROG_TAR], + [# Always define AMTAR for backward compatibility. Yes, it's still used + # in the wild :-( We should find a proper way to deprecate it ... + AC_SUBST([AMTAR], ['$${TAR-tar}']) +- +-# We'll loop over all known methods to create a tar archive until one works. ++m4_if([$1], [v7], ++ [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], ++ [m4_case([$1], [ustar],, [pax],, ++ [m4_fatal([Unknown tar format])]) ++AC_MSG_CHECKING([how to create a $1 tar archive]) ++# Loop over all known methods to create a tar archive until one works. + _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' ++_am_tools=${am_cv_prog_tar_$1-$_am_tools} ++# Do not fold the above two line into one, because Tru64 sh and ++# Solaris sh will not grok spaces in the rhs of '-'. ++for _am_tool in $_am_tools ++do ++ case $_am_tool in ++ gnutar) ++ for _am_tar in tar gnutar gtar; ++ do ++ AM_RUN_LOG([$_am_tar --version]) && break ++ done ++ am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' ++ am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' ++ am__untar="$_am_tar -xf -" ++ ;; ++ plaintar) ++ # Must skip GNU tar: if it does not support --format= it doesn't create ++ # ustar tarball either. ++ (tar --version) >/dev/null 2>&1 && continue ++ am__tar='tar chf - "$$tardir"' ++ am__tar_='tar chf - "$tardir"' ++ am__untar='tar xf -' ++ ;; ++ pax) ++ am__tar='pax -L -x $1 -w "$$tardir"' ++ am__tar_='pax -L -x $1 -w "$tardir"' ++ am__untar='pax -r' ++ ;; ++ cpio) ++ am__tar='find "$$tardir" -print | cpio -o -H $1 -L' ++ am__tar_='find "$tardir" -print | cpio -o -H $1 -L' ++ am__untar='cpio -i -H $1 -d' ++ ;; ++ none) ++ am__tar=false ++ am__tar_=false ++ am__untar=false ++ ;; ++ esac + +-m4_if([$1], [v7], +- [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], +- +- [m4_case([$1], +- [ustar], +- [# The POSIX 1988 'ustar' format is defined with fixed-size fields. +- # There is notably a 21 bits limit for the UID and the GID. In fact, +- # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 +- # and bug#13588). +- am_max_uid=2097151 # 2^21 - 1 +- am_max_gid=$am_max_uid +- # The $UID and $GID variables are not portable, so we need to resort +- # to the POSIX-mandated id(1) utility. Errors in the 'id' calls +- # below are definitely unexpected, so allow the users to see them +- # (that is, avoid stderr redirection). +- am_uid=`id -u || echo unknown` +- am_gid=`id -g || echo unknown` +- AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) +- if test $am_uid -le $am_max_uid; then +- AC_MSG_RESULT([yes]) +- else +- AC_MSG_RESULT([no]) +- _am_tools=none +- fi +- AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) +- if test $am_gid -le $am_max_gid; then +- AC_MSG_RESULT([yes]) +- else +- AC_MSG_RESULT([no]) +- _am_tools=none +- fi], +- +- [pax], +- [], +- +- [m4_fatal([Unknown tar format])]) +- +- AC_MSG_CHECKING([how to create a $1 tar archive]) +- +- # Go ahead even if we have the value already cached. We do so because we +- # need to set the values for the 'am__tar' and 'am__untar' variables. +- _am_tools=${am_cv_prog_tar_$1-$_am_tools} +- +- for _am_tool in $_am_tools; do +- case $_am_tool in +- gnutar) +- for _am_tar in tar gnutar gtar; do +- AM_RUN_LOG([$_am_tar --version]) && break +- done +- am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' +- am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' +- am__untar="$_am_tar -xf -" +- ;; +- plaintar) +- # Must skip GNU tar: if it does not support --format= it doesn't create +- # ustar tarball either. +- (tar --version) >/dev/null 2>&1 && continue +- am__tar='tar chf - "$$tardir"' +- am__tar_='tar chf - "$tardir"' +- am__untar='tar xf -' +- ;; +- pax) +- am__tar='pax -L -x $1 -w "$$tardir"' +- am__tar_='pax -L -x $1 -w "$tardir"' +- am__untar='pax -r' +- ;; +- cpio) +- am__tar='find "$$tardir" -print | cpio -o -H $1 -L' +- am__tar_='find "$tardir" -print | cpio -o -H $1 -L' +- am__untar='cpio -i -H $1 -d' +- ;; +- none) +- am__tar=false +- am__tar_=false +- am__untar=false +- ;; +- esac ++ # If the value was cached, stop now. We just wanted to have am__tar ++ # and am__untar set. ++ test -n "${am_cv_prog_tar_$1}" && break + +- # If the value was cached, stop now. We just wanted to have am__tar +- # and am__untar set. +- test -n "${am_cv_prog_tar_$1}" && break +- +- # tar/untar a dummy directory, and stop if the command works. +- rm -rf conftest.dir +- mkdir conftest.dir +- echo GrepMe > conftest.dir/file +- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) +- rm -rf conftest.dir +- if test -s conftest.tar; then +- AM_RUN_LOG([$am__untar /dev/null 2>&1 && break +- fi +- done ++ # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir ++ mkdir conftest.dir ++ echo GrepMe > conftest.dir/file ++ AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) ++ rm -rf conftest.dir ++ if test -s conftest.tar; then ++ AM_RUN_LOG([$am__untar /dev/null 2>&1 && break ++ fi ++done ++rm -rf conftest.dir + +- AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +- AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +- ++AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) ++AC_MSG_RESULT([$am_cv_prog_tar_$1])]) + AC_SUBST([am__tar]) + AC_SUBST([am__untar]) + ]) # _AM_PROG_TAR +diff --git a/config.h.in b/config.h.in +index a8fefc4..b5bb371 100644 +--- a/config.h.in ++++ b/config.h.in +@@ -1245,9 +1245,6 @@ + /* Define to 1 if getpeername is declared even after undefining macros. */ + #undef HAVE_RAW_DECL_GETPEERNAME + +-/* Define to 1 if gets is declared even after undefining macros. */ +-#undef HAVE_RAW_DECL_GETS +- + /* Define to 1 if getsockname is declared even after undefining macros. */ + #undef HAVE_RAW_DECL_GETSOCKNAME + +diff --git a/configure b/configure +index ec80aec..75de56d 100755 +--- a/configure ++++ b/configure +@@ -4799,17 +4799,12 @@ mkdir_p='$(MKDIR_P)' + # in the wild :-( We should find a proper way to deprecate it ... + AMTAR='$${TAR-tar}' + +- +-# We'll loop over all known methods to create a tar archive until one works. +-_am_tools='gnutar pax cpio none' +- + am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' + + + + + +- + # Check whether --enable-silent-rules was given. + if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +@@ -34286,7 +34281,7 @@ _ACEOF + + + +- for gl_func in dprintf fpurge fseeko ftello getdelim getline gets pclose popen renameat snprintf tmpfile vdprintf vsnprintf; do ++ for gl_func in dprintf fpurge fseeko ftello getdelim getline pclose popen renameat snprintf tmpfile vdprintf vsnprintf; do + as_gl_Symbol=`$as_echo "gl_cv_have_raw_decl_$gl_func" | $as_tr_sh` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro" >&5 + $as_echo_n "checking whether $gl_func is declared without a macro... " >&6; } +@@ -59483,7 +59478,7 @@ $as_echo X"$mf" | + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` +- test -z "$am__include" && continue ++ test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the +diff --git a/doc/Makefile.in b/doc/Makefile.in +index c49a0e4..48438c0 100644 +--- a/doc/Makefile.in ++++ b/doc/Makefile.in +@@ -1,7 +1,7 @@ +-# Makefile.in generated by automake 1.13.3 from Makefile.am. ++# Makefile.in generated by automake 1.13.1 from Makefile.am. + # @configure_input@ + +-# Copyright (C) 1994-2013 Free Software Foundation, Inc. ++# Copyright (C) 1994-2012 Free Software Foundation, Inc. + + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -35,51 +35,23 @@ + # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + VPATH = @srcdir@ +-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +-am__make_running_with_option = \ +- case $${target_option-} in \ +- ?) ;; \ +- *) echo "am__make_running_with_option: internal error: invalid" \ +- "target option '$${target_option-}' specified" >&2; \ +- exit 1;; \ +- esac; \ +- has_opt=no; \ +- sane_makeflags=$$MAKEFLAGS; \ +- if $(am__is_gnu_make); then \ +- sane_makeflags=$$MFLAGS; \ +- else \ ++am__make_dryrun = \ ++ { \ ++ am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ +- bs=\\; \ +- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ +- esac; \ +- fi; \ +- skip_next=no; \ +- strip_trailopt () \ +- { \ +- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +- }; \ +- for flg in $$sane_makeflags; do \ +- test $$skip_next = yes && { skip_next=no; continue; }; \ +- case $$flg in \ +- *=*|--*) continue;; \ +- -*I) strip_trailopt 'I'; skip_next=yes;; \ +- -*I?*) strip_trailopt 'I';; \ +- -*O) strip_trailopt 'O'; skip_next=yes;; \ +- -*O?*) strip_trailopt 'O';; \ +- -*l) strip_trailopt 'l'; skip_next=yes;; \ +- -*l?*) strip_trailopt 'l';; \ +- -[dEDm]) skip_next=yes;; \ +- -[JT]) skip_next=yes;; \ +- esac; \ +- case $$flg in \ +- *$$target_option*) has_opt=yes; break;; \ ++ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ ++ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ ++ *) \ ++ for am__flg in $$MAKEFLAGS; do \ ++ case $$am__flg in \ ++ *=*|--*) ;; \ ++ *n*) am__dry=yes; break;; \ ++ esac; \ ++ done;; \ + esac; \ +- done; \ +- test $$has_opt = yes +-am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +-am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) ++ test $$am__dry = yes; \ ++ } + pkgdatadir = $(datadir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ +@@ -3538,15 +3510,12 @@ $(top_srcdir)/configure: $(am__configure_deps) + $(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + $(am__aclocal_m4_deps): +- + alert-printlist$(EXEEXT): $(alert_printlist_OBJECTS) $(alert_printlist_DEPENDENCIES) $(EXTRA_alert_printlist_DEPENDENCIES) + @rm -f alert-printlist$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(alert_printlist_OBJECTS) $(alert_printlist_LDADD) $(LIBS) +- + errcodes$(EXEEXT): $(errcodes_OBJECTS) $(errcodes_DEPENDENCIES) $(EXTRA_errcodes_DEPENDENCIES) + @rm -f errcodes$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(errcodes_OBJECTS) $(errcodes_LDADD) $(LIBS) +- + printlist$(EXEEXT): $(printlist_OBJECTS) $(printlist_DEPENDENCIES) $(EXTRA_printlist_DEPENDENCIES) + @rm -f printlist$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(printlist_OBJECTS) $(printlist_LDADD) $(LIBS) +@@ -3806,12 +3775,13 @@ uninstall-imagesDATA: + # (which will cause the Makefiles to be regenerated when you run 'make'); + # (2) otherwise, pass the desired values on the 'make' command line. + $(am__recursive_targets): +- @fail=; \ +- if $(am__make_keepgoing); then \ +- failcom='fail=yes'; \ +- else \ +- failcom='exit 1'; \ +- fi; \ ++ @fail= failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ +diff --git a/doc/credentials/Makefile.in b/doc/credentials/Makefile.in +index a8c25a5..1bd81c2 100644 +--- a/doc/credentials/Makefile.in ++++ b/doc/credentials/Makefile.in +@@ -1,7 +1,7 @@ +-# Makefile.in generated by automake 1.13.3 from Makefile.am. ++# Makefile.in generated by automake 1.13.1 from Makefile.am. + # @configure_input@ + +-# Copyright (C) 1994-2013 Free Software Foundation, Inc. ++# Copyright (C) 1994-2012 Free Software Foundation, Inc. + + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -34,51 +34,23 @@ + # along with this file; if not, write to the Free Software Foundation, + # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + VPATH = @srcdir@ +-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +-am__make_running_with_option = \ +- case $${target_option-} in \ +- ?) ;; \ +- *) echo "am__make_running_with_option: internal error: invalid" \ +- "target option '$${target_option-}' specified" >&2; \ +- exit 1;; \ +- esac; \ +- has_opt=no; \ +- sane_makeflags=$$MAKEFLAGS; \ +- if $(am__is_gnu_make); then \ +- sane_makeflags=$$MFLAGS; \ +- else \ ++am__make_dryrun = \ ++ { \ ++ am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ +- bs=\\; \ +- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ +- esac; \ +- fi; \ +- skip_next=no; \ +- strip_trailopt () \ +- { \ +- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +- }; \ +- for flg in $$sane_makeflags; do \ +- test $$skip_next = yes && { skip_next=no; continue; }; \ +- case $$flg in \ +- *=*|--*) continue;; \ +- -*I) strip_trailopt 'I'; skip_next=yes;; \ +- -*I?*) strip_trailopt 'I';; \ +- -*O) strip_trailopt 'O'; skip_next=yes;; \ +- -*O?*) strip_trailopt 'O';; \ +- -*l) strip_trailopt 'l'; skip_next=yes;; \ +- -*l?*) strip_trailopt 'l';; \ +- -[dEDm]) skip_next=yes;; \ +- -[JT]) skip_next=yes;; \ ++ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ ++ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ ++ *) \ ++ for am__flg in $$MAKEFLAGS; do \ ++ case $$am__flg in \ ++ *=*|--*) ;; \ ++ *n*) am__dry=yes; break;; \ ++ esac; \ ++ done;; \ + esac; \ +- case $$flg in \ +- *$$target_option*) has_opt=yes; break;; \ +- esac; \ +- done; \ +- test $$has_opt = yes +-am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +-am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) ++ test $$am__dry = yes; \ ++ } + pkgdatadir = $(datadir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ +@@ -1642,12 +1614,13 @@ clean-libtool: + # (which will cause the Makefiles to be regenerated when you run 'make'); + # (2) otherwise, pass the desired values on the 'make' command line. + $(am__recursive_targets): +- @fail=; \ +- if $(am__make_keepgoing); then \ +- failcom='fail=yes'; \ +- else \ +- failcom='exit 1'; \ +- fi; \ ++ @fail= failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ +diff --git a/doc/credentials/openpgp/Makefile.in b/doc/credentials/openpgp/Makefile.in +index f76db17..f5bd167 100644 +--- a/doc/credentials/openpgp/Makefile.in ++++ b/doc/credentials/openpgp/Makefile.in +@@ -1,7 +1,7 @@ +-# Makefile.in generated by automake 1.13.3 from Makefile.am. ++# Makefile.in generated by automake 1.13.1 from Makefile.am. + # @configure_input@ + +-# Copyright (C) 1994-2013 Free Software Foundation, Inc. ++# Copyright (C) 1994-2012 Free Software Foundation, Inc. + + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -14,51 +14,23 @@ + + @SET_MAKE@ + VPATH = @srcdir@ +-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +-am__make_running_with_option = \ +- case $${target_option-} in \ +- ?) ;; \ +- *) echo "am__make_running_with_option: internal error: invalid" \ +- "target option '$${target_option-}' specified" >&2; \ +- exit 1;; \ +- esac; \ +- has_opt=no; \ +- sane_makeflags=$$MAKEFLAGS; \ +- if $(am__is_gnu_make); then \ +- sane_makeflags=$$MFLAGS; \ +- else \ ++am__make_dryrun = \ ++ { \ ++ am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ +- bs=\\; \ +- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ +- esac; \ +- fi; \ +- skip_next=no; \ +- strip_trailopt () \ +- { \ +- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +- }; \ +- for flg in $$sane_makeflags; do \ +- test $$skip_next = yes && { skip_next=no; continue; }; \ +- case $$flg in \ +- *=*|--*) continue;; \ +- -*I) strip_trailopt 'I'; skip_next=yes;; \ +- -*I?*) strip_trailopt 'I';; \ +- -*O) strip_trailopt 'O'; skip_next=yes;; \ +- -*O?*) strip_trailopt 'O';; \ +- -*l) strip_trailopt 'l'; skip_next=yes;; \ +- -*l?*) strip_trailopt 'l';; \ +- -[dEDm]) skip_next=yes;; \ +- -[JT]) skip_next=yes;; \ +- esac; \ +- case $$flg in \ +- *$$target_option*) has_opt=yes; break;; \ ++ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ ++ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ ++ *) \ ++ for am__flg in $$MAKEFLAGS; do \ ++ case $$am__flg in \ ++ *=*|--*) ;; \ ++ *n*) am__dry=yes; break;; \ ++ esac; \ ++ done;; \ + esac; \ +- done; \ +- test $$has_opt = yes +-am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +-am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) ++ test $$am__dry = yes; \ ++ } + pkgdatadir = $(datadir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ +diff --git a/doc/credentials/srp/Makefile.in b/doc/credentials/srp/Makefile.in +index bc70f3f..b3218f0 100644 +--- a/doc/credentials/srp/Makefile.in ++++ b/doc/credentials/srp/Makefile.in +@@ -1,7 +1,7 @@ +-# Makefile.in generated by automake 1.13.3 from Makefile.am. ++# Makefile.in generated by automake 1.13.1 from Makefile.am. + # @configure_input@ + +-# Copyright (C) 1994-2013 Free Software Foundation, Inc. ++# Copyright (C) 1994-2012 Free Software Foundation, Inc. + + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -14,51 +14,23 @@ + + @SET_MAKE@ + VPATH = @srcdir@ +-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +-am__make_running_with_option = \ +- case $${target_option-} in \ +- ?) ;; \ +- *) echo "am__make_running_with_option: internal error: invalid" \ +- "target option '$${target_option-}' specified" >&2; \ +- exit 1;; \ +- esac; \ +- has_opt=no; \ +- sane_makeflags=$$MAKEFLAGS; \ +- if $(am__is_gnu_make); then \ +- sane_makeflags=$$MFLAGS; \ +- else \ ++am__make_dryrun = \ ++ { \ ++ am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ +- bs=\\; \ +- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ +- esac; \ +- fi; \ +- skip_next=no; \ +- strip_trailopt () \ +- { \ +- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +- }; \ +- for flg in $$sane_makeflags; do \ +- test $$skip_next = yes && { skip_next=no; continue; }; \ +- case $$flg in \ +- *=*|--*) continue;; \ +- -*I) strip_trailopt 'I'; skip_next=yes;; \ +- -*I?*) strip_trailopt 'I';; \ +- -*O) strip_trailopt 'O'; skip_next=yes;; \ +- -*O?*) strip_trailopt 'O';; \ +- -*l) strip_trailopt 'l'; skip_next=yes;; \ +- -*l?*) strip_trailopt 'l';; \ +- -[dEDm]) skip_next=yes;; \ +- -[JT]) skip_next=yes;; \ +- esac; \ +- case $$flg in \ +- *$$target_option*) has_opt=yes; break;; \ ++ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ ++ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ ++ *) \ ++ for am__flg in $$MAKEFLAGS; do \ ++ case $$am__flg in \ ++ *=*|--*) ;; \ ++ *n*) am__dry=yes; break;; \ ++ esac; \ ++ done;; \ + esac; \ +- done; \ +- test $$has_opt = yes +-am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +-am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) ++ test $$am__dry = yes; \ ++ } + pkgdatadir = $(datadir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ +diff --git a/doc/credentials/x509/Makefile.in b/doc/credentials/x509/Makefile.in +index f42dda6..d05da51 100644 +--- a/doc/credentials/x509/Makefile.in ++++ b/doc/credentials/x509/Makefile.in +@@ -1,7 +1,7 @@ +-# Makefile.in generated by automake 1.13.3 from Makefile.am. ++# Makefile.in generated by automake 1.13.1 from Makefile.am. + # @configure_input@ + +-# Copyright (C) 1994-2013 Free Software Foundation, Inc. ++# Copyright (C) 1994-2012 Free Software Foundation, Inc. + + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -14,51 +14,23 @@ + + @SET_MAKE@ + VPATH = @srcdir@ +-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +-am__make_running_with_option = \ +- case $${target_option-} in \ +- ?) ;; \ +- *) echo "am__make_running_with_option: internal error: invalid" \ +- "target option '$${target_option-}' specified" >&2; \ +- exit 1;; \ +- esac; \ +- has_opt=no; \ +- sane_makeflags=$$MAKEFLAGS; \ +- if $(am__is_gnu_make); then \ +- sane_makeflags=$$MFLAGS; \ +- else \ ++am__make_dryrun = \ ++ { \ ++ am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ +- bs=\\; \ +- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ +- esac; \ +- fi; \ +- skip_next=no; \ +- strip_trailopt () \ +- { \ +- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +- }; \ +- for flg in $$sane_makeflags; do \ +- test $$skip_next = yes && { skip_next=no; continue; }; \ +- case $$flg in \ +- *=*|--*) continue;; \ +- -*I) strip_trailopt 'I'; skip_next=yes;; \ +- -*I?*) strip_trailopt 'I';; \ +- -*O) strip_trailopt 'O'; skip_next=yes;; \ +- -*O?*) strip_trailopt 'O';; \ +- -*l) strip_trailopt 'l'; skip_next=yes;; \ +- -*l?*) strip_trailopt 'l';; \ +- -[dEDm]) skip_next=yes;; \ +- -[JT]) skip_next=yes;; \ +- esac; \ +- case $$flg in \ +- *$$target_option*) has_opt=yes; break;; \ ++ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ ++ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ ++ *) \ ++ for am__flg in $$MAKEFLAGS; do \ ++ case $$am__flg in \ ++ *=*|--*) ;; \ ++ *n*) am__dry=yes; break;; \ ++ esac; \ ++ done;; \ + esac; \ +- done; \ +- test $$has_opt = yes +-am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +-am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) ++ test $$am__dry = yes; \ ++ } + pkgdatadir = $(datadir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ +diff --git a/doc/cyclo/Makefile.in b/doc/cyclo/Makefile.in +index 62c6554..af63011 100644 +--- a/doc/cyclo/Makefile.in ++++ b/doc/cyclo/Makefile.in +@@ -1,7 +1,7 @@ +-# Makefile.in generated by automake 1.13.3 from Makefile.am. ++# Makefile.in generated by automake 1.13.1 from Makefile.am. + # @configure_input@ + +-# Copyright (C) 1994-2013 Free Software Foundation, Inc. ++# Copyright (C) 1994-2012 Free Software Foundation, Inc. + + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -34,51 +34,23 @@ + # along with this file; if not, write to the Free Software Foundation, + # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + VPATH = @srcdir@ +-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +-am__make_running_with_option = \ +- case $${target_option-} in \ +- ?) ;; \ +- *) echo "am__make_running_with_option: internal error: invalid" \ +- "target option '$${target_option-}' specified" >&2; \ +- exit 1;; \ +- esac; \ +- has_opt=no; \ +- sane_makeflags=$$MAKEFLAGS; \ +- if $(am__is_gnu_make); then \ +- sane_makeflags=$$MFLAGS; \ +- else \ ++am__make_dryrun = \ ++ { \ ++ am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ +- bs=\\; \ +- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ +- esac; \ +- fi; \ +- skip_next=no; \ +- strip_trailopt () \ +- { \ +- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +- }; \ +- for flg in $$sane_makeflags; do \ +- test $$skip_next = yes && { skip_next=no; continue; }; \ +- case $$flg in \ +- *=*|--*) continue;; \ +- -*I) strip_trailopt 'I'; skip_next=yes;; \ +- -*I?*) strip_trailopt 'I';; \ +- -*O) strip_trailopt 'O'; skip_next=yes;; \ +- -*O?*) strip_trailopt 'O';; \ +- -*l) strip_trailopt 'l'; skip_next=yes;; \ +- -*l?*) strip_trailopt 'l';; \ +- -[dEDm]) skip_next=yes;; \ +- -[JT]) skip_next=yes;; \ +- esac; \ +- case $$flg in \ +- *$$target_option*) has_opt=yes; break;; \ ++ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ ++ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ ++ *) \ ++ for am__flg in $$MAKEFLAGS; do \ ++ case $$am__flg in \ ++ *=*|--*) ;; \ ++ *n*) am__dry=yes; break;; \ ++ esac; \ ++ done;; \ + esac; \ +- done; \ +- test $$has_opt = yes +-am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +-am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) ++ test $$am__dry = yes; \ ++ } + pkgdatadir = $(datadir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ +diff --git a/doc/examples/Makefile.in b/doc/examples/Makefile.in +index 4010816..5dce863 100644 +--- a/doc/examples/Makefile.in ++++ b/doc/examples/Makefile.in +@@ -1,7 +1,7 @@ +-# Makefile.in generated by automake 1.13.3 from Makefile.am. ++# Makefile.in generated by automake 1.13.1 from Makefile.am. + # @configure_input@ + +-# Copyright (C) 1994-2013 Free Software Foundation, Inc. ++# Copyright (C) 1994-2012 Free Software Foundation, Inc. + + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -36,51 +36,23 @@ + + + VPATH = @srcdir@ +-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +-am__make_running_with_option = \ +- case $${target_option-} in \ +- ?) ;; \ +- *) echo "am__make_running_with_option: internal error: invalid" \ +- "target option '$${target_option-}' specified" >&2; \ +- exit 1;; \ +- esac; \ +- has_opt=no; \ +- sane_makeflags=$$MAKEFLAGS; \ +- if $(am__is_gnu_make); then \ +- sane_makeflags=$$MFLAGS; \ +- else \ ++am__make_dryrun = \ ++ { \ ++ am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ +- bs=\\; \ +- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ +- esac; \ +- fi; \ +- skip_next=no; \ +- strip_trailopt () \ +- { \ +- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +- }; \ +- for flg in $$sane_makeflags; do \ +- test $$skip_next = yes && { skip_next=no; continue; }; \ +- case $$flg in \ +- *=*|--*) continue;; \ +- -*I) strip_trailopt 'I'; skip_next=yes;; \ +- -*I?*) strip_trailopt 'I';; \ +- -*O) strip_trailopt 'O'; skip_next=yes;; \ +- -*O?*) strip_trailopt 'O';; \ +- -*l) strip_trailopt 'l'; skip_next=yes;; \ +- -*l?*) strip_trailopt 'l';; \ +- -[dEDm]) skip_next=yes;; \ +- -[JT]) skip_next=yes;; \ ++ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ ++ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ ++ *) \ ++ for am__flg in $$MAKEFLAGS; do \ ++ case $$am__flg in \ ++ *=*|--*) ;; \ ++ *n*) am__dry=yes; break;; \ ++ esac; \ ++ done;; \ + esac; \ +- case $$flg in \ +- *$$target_option*) has_opt=yes; break;; \ +- esac; \ +- done; \ +- test $$has_opt = yes +-am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +-am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) ++ test $$am__dry = yes; \ ++ } + pkgdatadir = $(datadir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ +@@ -1819,7 +1791,6 @@ clean-noinstLTLIBRARIES: + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } +- + libexamples.la: $(libexamples_la_OBJECTS) $(libexamples_la_DEPENDENCIES) $(EXTRA_libexamples_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) $(libexamples_la_OBJECTS) $(libexamples_la_LIBADD) $(LIBS) + +@@ -1831,75 +1802,57 @@ clean-noinstPROGRAMS: + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +- + ex-cert-select$(EXEEXT): $(ex_cert_select_OBJECTS) $(ex_cert_select_DEPENDENCIES) $(EXTRA_ex_cert_select_DEPENDENCIES) + @rm -f ex-cert-select$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_cert_select_OBJECTS) $(ex_cert_select_LDADD) $(LIBS) +- + ex-cert-select-pkcs11$(EXEEXT): $(ex_cert_select_pkcs11_OBJECTS) $(ex_cert_select_pkcs11_DEPENDENCIES) $(EXTRA_ex_cert_select_pkcs11_DEPENDENCIES) + @rm -f ex-cert-select-pkcs11$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_cert_select_pkcs11_OBJECTS) $(ex_cert_select_pkcs11_LDADD) $(LIBS) +- + ex-client-anon$(EXEEXT): $(ex_client_anon_OBJECTS) $(ex_client_anon_DEPENDENCIES) $(EXTRA_ex_client_anon_DEPENDENCIES) + @rm -f ex-client-anon$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_client_anon_OBJECTS) $(ex_client_anon_LDADD) $(LIBS) +- + ex-client-dtls$(EXEEXT): $(ex_client_dtls_OBJECTS) $(ex_client_dtls_DEPENDENCIES) $(EXTRA_ex_client_dtls_DEPENDENCIES) + @rm -f ex-client-dtls$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_client_dtls_OBJECTS) $(ex_client_dtls_LDADD) $(LIBS) +- + ex-client-psk$(EXEEXT): $(ex_client_psk_OBJECTS) $(ex_client_psk_DEPENDENCIES) $(EXTRA_ex_client_psk_DEPENDENCIES) + @rm -f ex-client-psk$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_client_psk_OBJECTS) $(ex_client_psk_LDADD) $(LIBS) +- + ex-client-resume$(EXEEXT): $(ex_client_resume_OBJECTS) $(ex_client_resume_DEPENDENCIES) $(EXTRA_ex_client_resume_DEPENDENCIES) + @rm -f ex-client-resume$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_client_resume_OBJECTS) $(ex_client_resume_LDADD) $(LIBS) +- + ex-client-srp$(EXEEXT): $(ex_client_srp_OBJECTS) $(ex_client_srp_DEPENDENCIES) $(EXTRA_ex_client_srp_DEPENDENCIES) + @rm -f ex-client-srp$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_client_srp_OBJECTS) $(ex_client_srp_LDADD) $(LIBS) +- + ex-client-x509$(EXEEXT): $(ex_client_x509_OBJECTS) $(ex_client_x509_DEPENDENCIES) $(EXTRA_ex_client_x509_DEPENDENCIES) + @rm -f ex-client-x509$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_client_x509_OBJECTS) $(ex_client_x509_LDADD) $(LIBS) +- + ex-client-xssl1$(EXEEXT): $(ex_client_xssl1_OBJECTS) $(ex_client_xssl1_DEPENDENCIES) $(EXTRA_ex_client_xssl1_DEPENDENCIES) + @rm -f ex-client-xssl1$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_client_xssl1_OBJECTS) $(ex_client_xssl1_LDADD) $(LIBS) +- + ex-client-xssl2$(EXEEXT): $(ex_client_xssl2_OBJECTS) $(ex_client_xssl2_DEPENDENCIES) $(EXTRA_ex_client_xssl2_DEPENDENCIES) + @rm -f ex-client-xssl2$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_client_xssl2_OBJECTS) $(ex_client_xssl2_LDADD) $(LIBS) +- + ex-cxx$(EXEEXT): $(ex_cxx_OBJECTS) $(ex_cxx_DEPENDENCIES) $(EXTRA_ex_cxx_DEPENDENCIES) + @rm -f ex-cxx$(EXEEXT) + $(AM_V_CXXLD)$(CXXLINK) $(ex_cxx_OBJECTS) $(ex_cxx_LDADD) $(LIBS) +- + ex-ocsp-client$(EXEEXT): $(ex_ocsp_client_OBJECTS) $(ex_ocsp_client_DEPENDENCIES) $(EXTRA_ex_ocsp_client_DEPENDENCIES) + @rm -f ex-ocsp-client$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_ocsp_client_OBJECTS) $(ex_ocsp_client_LDADD) $(LIBS) +- + ex-serv-anon$(EXEEXT): $(ex_serv_anon_OBJECTS) $(ex_serv_anon_DEPENDENCIES) $(EXTRA_ex_serv_anon_DEPENDENCIES) + @rm -f ex-serv-anon$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_serv_anon_OBJECTS) $(ex_serv_anon_LDADD) $(LIBS) +- + ex-serv-dtls$(EXEEXT): $(ex_serv_dtls_OBJECTS) $(ex_serv_dtls_DEPENDENCIES) $(EXTRA_ex_serv_dtls_DEPENDENCIES) + @rm -f ex-serv-dtls$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_serv_dtls_OBJECTS) $(ex_serv_dtls_LDADD) $(LIBS) +- + ex-serv-pgp$(EXEEXT): $(ex_serv_pgp_OBJECTS) $(ex_serv_pgp_DEPENDENCIES) $(EXTRA_ex_serv_pgp_DEPENDENCIES) + @rm -f ex-serv-pgp$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_serv_pgp_OBJECTS) $(ex_serv_pgp_LDADD) $(LIBS) +- + ex-serv-psk$(EXEEXT): $(ex_serv_psk_OBJECTS) $(ex_serv_psk_DEPENDENCIES) $(EXTRA_ex_serv_psk_DEPENDENCIES) + @rm -f ex-serv-psk$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_serv_psk_OBJECTS) $(ex_serv_psk_LDADD) $(LIBS) +- + ex-serv-srp$(EXEEXT): $(ex_serv_srp_OBJECTS) $(ex_serv_srp_DEPENDENCIES) $(EXTRA_ex_serv_srp_DEPENDENCIES) + @rm -f ex-serv-srp$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(ex_serv_srp_OBJECTS) $(ex_serv_srp_LDADD) $(LIBS) +- + print-ciphersuites$(EXEEXT): $(print_ciphersuites_OBJECTS) $(print_ciphersuites_DEPENDENCIES) $(EXTRA_print_ciphersuites_DEPENDENCIES) + @rm -f print-ciphersuites$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(print_ciphersuites_OBJECTS) $(print_ciphersuites_LDADD) $(LIBS) +diff --git a/doc/gnutls.info b/doc/gnutls.info +index cf9247a..e343fae 100644 +--- a/doc/gnutls.info ++++ b/doc/gnutls.info +@@ -1,4 +1,4 @@ +-This is gnutls.info, produced by makeinfo version 5.1 from gnutls.texi. ++This is gnutls.info, produced by makeinfo version 4.13 from gnutls.texi. + + This manual is last updated 2 April 2013 for version 3.1.13 of GnuTLS. + +@@ -11,6 +11,7 @@ Copyright (C) 2001-2013 Free Software Foundation, Inc.\\ Copyright (C) + Foundation; with no Invariant Sections, no Front-Cover Texts, and + no Back-Cover Texts. A copy of the license is included in the + section entitled "GNU Free Documentation License". ++ + INFO-DIR-SECTION Software libraries + START-INFO-DIR-ENTRY + * GnuTLS: (gnutls). GNU Transport Layer Security Library. +@@ -28,1285 +29,1284 @@ END-INFO-DIR-ENTRY + +  + Indirect: +-gnutls.info-1: 1279 +-gnutls.info-2: 303309 +-gnutls.info-3: 749430 +-gnutls.info-4: 947014 +-gnutls.info-5: 1275242 ++gnutls.info-1: 1281 ++gnutls.info-2: 301128 ++gnutls.info-3: 740825 ++gnutls.info-4: 1045275 +  + Tag Table: + (Indirect) +-Node: Top1279 +-Node: Preface2461 +-Node: Introduction to GnuTLS3845 +-Node: Downloading and installing5485 +-Node: Document overview7996 +-Node: Introduction to TLS8997 +-Ref: Introduction to TLS-Footnote-110139 +-Node: TLS layers10429 +-Ref: fig:tls-layers11388 +-Node: The transport layer11463 +-Node: The TLS record protocol12067 +-Node: Encryption algorithms used in the record layer13342 +-Ref: tab:ciphers14238 +-Ref: tab:macs15610 +-Node: Compression algorithms used in the record layer16301 +-Ref: gnutls_compression_method_t17245 +-Node: Weaknesses and countermeasures17930 +-Ref: Weaknesses and countermeasures-Footnote-118958 +-Node: On Record Padding19036 +-Node: The TLS Alert Protocol20960 +-Ref: The Alert Protocol21160 +-Ref: tab:alerts22044 +-Node: The TLS Handshake Protocol24812 +-Ref: The Handshake Protocol25011 +-Node: TLS Cipher Suites25677 +-Ref: TLS Cipher Suites-Footnote-126660 +-Node: Authentication26774 +-Node: Client Authentication27485 +-Node: Resuming Sessions27962 +-Ref: resume28121 +-Node: TLS Extensions28767 +-Node: Maximum fragment length negotiation29441 +-Node: Server name indication30045 +-Ref: serverind30245 +-Node: Session tickets31091 +-Node: HeartBeat31701 +-Node: Safe renegotiation33006 +-Node: OCSP status request37910 +-Node: SRTP39732 +-Ref: gnutls_srtp_profile_t40211 +-Node: How to use TLS in application protocols42547 +-Node: Separate ports43065 +-Ref: Separate ports-Footnote-144480 +-Node: Upward negotiation44556 +-Ref: Upward negotiation-Footnote-147236 +-Node: On SSL 2 and older protocols47264 +-Node: Authentication methods49142 +-Node: Certificate authentication50037 +-Ref: tab:key-exchange50595 +-Node: X.509 certificates53099 +-Ref: fig:x50953578 +-Node: X.509 certificate structure54127 +-Ref: tab:x50954525 +-Ref: tab:x509-ext56319 +-Node: Importing an X.509 certificate59310 +-Node: X.509 distinguished names60692 +-Node: X.509 public and private keys64355 +-Node: Verifying X.509 certificate paths66797 +-Ref: gnutls_certificate_status_t74562 +-Node: Verifying a certificate in the context of TLS session76548 +-Ref: gnutls_certificate_verify_flags78038 +-Node: OpenPGP certificates80168 +-Ref: fig:openpgp80982 +-Ref: tab:openpgp-certificate81772 +-Ref: tab:openpgp-key-exchange83446 +-Ref: OpenPGP certificates-Footnote-187541 +-Node: Advanced certificate verification87596 +-Node: Verifying a certificate using trust on first use authentication88483 +-Node: Verifying a certificate using DANE89707 +-Node: Digital signatures91215 +-Node: More on certificate authentication96429 +-Node: PKCS 10 certificate requests97249 +-Ref: ex:crq100489 +-Node: PKIX certificate revocation lists102570 +-Ref: tab:crl103445 +-Node: OCSP certificate status checking108976 +-Ref: tab:ocsp-response115659 +-Ref: gnutls_x509_crl_reason_t119206 +-Node: Managing encrypted keys120530 +-Ref: gnutls_pkcs_encrypt_flags_t124581 +-Node: certtool Invocation131329 +-Ref: certtool usage131917 +-Ref: certtool debug138298 +-Ref: certtool generate-request138442 +-Ref: certtool verify-chain138786 +-Ref: certtool verify138963 +-Ref: certtool verify-crl139281 +-Ref: certtool get-dh-params139581 +-Ref: certtool load-privkey139880 +-Ref: certtool load-pubkey140053 +-Ref: certtool load-certificate140223 +-Ref: certtool load-ca-privkey140404 +-Ref: certtool load-ca-certificate140608 +-Ref: certtool cprint140820 +-Ref: certtool null-password141052 +-Ref: certtool pubkey-info141245 +-Ref: certtool to-p12141488 +-Ref: certtool rsa141787 +-Ref: certtool dsa141918 +-Ref: certtool ecc142048 +-Ref: certtool ecdsa142220 +-Ref: certtool hash142339 +-Ref: certtool inder142528 +-Ref: certtool inraw142850 +-Ref: certtool outder142975 +-Ref: certtool outraw143123 +-Ref: certtool sec-param143253 +-Ref: certtool pkcs-cipher143474 +-Ref: certtool exit status143714 +-Ref: certtool See Also143946 +-Ref: certtool Examples143995 +-Ref: certtool Files147909 +-Node: ocsptool Invocation153420 +-Ref: ocsptool usage153961 +-Ref: ocsptool debug157288 +-Ref: ocsptool ask157432 +-Ref: ocsptool exit status157827 +-Ref: ocsptool See Also158059 +-Ref: ocsptool Examples158109 +-Node: danetool Invocation163087 +-Ref: danetool usage163541 +-Ref: danetool debug166951 +-Ref: danetool load-pubkey167095 +-Ref: danetool load-certificate167265 +-Ref: danetool dlv167446 +-Ref: danetool hash167605 +-Ref: danetool check167796 +-Ref: danetool check-ee168085 +-Ref: danetool check-ca168268 +-Ref: danetool insecure168446 +-Ref: danetool local-dns168591 +-Ref: danetool inder168820 +-Ref: danetool inraw169142 +-Ref: danetool tlsa-rr169267 +-Ref: danetool host169562 +-Ref: danetool proto169755 +-Ref: danetool ca169977 +-Ref: danetool x509170150 +-Ref: danetool local170411 +-Ref: danetool domain170539 +-Ref: danetool exit status170944 +-Ref: danetool See Also171176 +-Ref: danetool Examples171226 +-Node: Shared-key and anonymous authentication172391 +-Node: SRP authentication172960 +-Node: Authentication using SRP173223 +-Node: srptool Invocation176264 +-Ref: srptool usage177075 +-Ref: srptool debug179209 +-Ref: srptool verify179353 +-Ref: srptool passwd-conf179491 +-Ref: srptool create-conf179693 +-Ref: srptool exit status179940 +-Ref: srptool See Also180170 +-Ref: srptool Examples180283 +-Node: PSK authentication180927 +-Node: Authentication using PSK181223 +-Node: psktool Invocation182441 +-Ref: psktool usage182927 +-Ref: psktool debug184537 +-Ref: psktool exit status184681 +-Ref: psktool See Also184911 +-Ref: psktool Examples185011 +-Node: Anonymous authentication185472 +-Node: Selecting an appropriate authentication method186462 +-Node: Hardware security modules and abstract key types191300 +-Node: Abstract key types192311 +-Node: Abstract public keys193728 +-Node: Abstract private keys198339 +-Node: Operations201733 +-Node: Smart cards and HSMs208012 +-Ref: fig:pkcs11-vision209882 +-Ref: Smart cards and HSMs-Footnote-1210194 +-Node: PKCS11 Initialization210234 +-Ref: PKCS11 Initialization-Footnote-1212783 +-Node: Accessing objects that require a PIN212826 +-Ref: gnutls_pin_flag_t214505 +-Node: Reading objects216024 +-Node: Writing objects221152 +-Node: Using a PKCS11 token with TLS223533 +-Node: p11tool Invocation224830 +-Ref: p11tool usage225459 +-Ref: p11tool debug229752 +-Ref: p11tool write229896 +-Ref: p11tool generate-rsa230071 +-Ref: p11tool generate-dsa230241 +-Ref: p11tool generate-ecc230411 +-Ref: p11tool private230581 +-Ref: p11tool sec-param230802 +-Ref: p11tool inder231047 +-Ref: p11tool inraw231187 +-Ref: p11tool provider231311 +-Ref: p11tool exit status231507 +-Ref: p11tool See Also231737 +-Ref: p11tool Examples231785 +-Node: Trusted Platform Module232898 +-Node: Keys in TPM234164 +-Node: Key generation235643 +-Node: Using keys237904 +-Node: tpmtool Invocation241554 +-Ref: tpmtool usage241980 +-Ref: tpmtool debug245540 +-Ref: tpmtool generate-rsa245684 +-Ref: tpmtool user245954 +-Ref: tpmtool system246313 +-Ref: tpmtool sec-param246666 +-Ref: tpmtool inder246993 +-Ref: tpmtool outder247211 +-Ref: tpmtool exit status247346 +-Ref: tpmtool See Also247576 +-Ref: tpmtool Examples247637 +-Node: How to use GnuTLS in applications248252 +-Node: Introduction to the library248821 +-Node: General idea249373 +-Ref: fig:gnutls-design250222 +-Ref: General idea-Footnote-1251518 +-Node: Error handling251563 +-Node: Common types253133 +-Node: Debugging and auditing254019 +-Node: Thread safety255634 +-Node: Callback functions258105 +-Node: Preparation259069 +-Node: Headers259488 +-Node: Initialization259777 +-Node: Version check260430 +-Node: Building the source260967 +-Node: Session initialization263078 +-Node: Associating the credentials266605 +-Ref: tab:key-exchange-cred267350 +-Node: Certificate credentials268517 +-Node: SRP credentials281882 +-Node: PSK credentials286342 +-Node: Anonymous credentials290005 +-Node: Setting up the transport layer290820 +-Node: Asynchronous operation298699 +-Node: DTLS sessions303309 +-Ref: DTLS sessions-Footnote-1305551 +-Node: TLS handshake305628 +-Node: Data transfer and termination308296 +-Node: Buffered data transfer316902 +-Node: Handling alerts318419 +-Node: Priority Strings321782 +-Ref: tab:prio-keywords322513 +-Ref: tab:prio-algorithms326131 +-Ref: tab:prio-special1328171 +-Ref: tab:prio-special2330167 +-Ref: Priority Strings-Footnote-1334528 +-Ref: Priority Strings-Footnote-2334601 +-Node: Selecting cryptographic key sizes334792 +-Ref: tab:key-sizes335434 +-Node: Advanced topics339610 +-Node: Session resumption339982 +-Node: Certificate verification344115 +-Ref: dane_verify_status_t352618 +-Node: Parameter generation353011 +-Node: Keying Material Exporters356680 +-Node: Channel Bindings357736 +-Node: Interoperability359242 +-Node: Compatibility with the OpenSSL library360849 +-Node: GnuTLS application examples361574 +-Ref: examples361792 +-Node: Client examples362066 +-Node: Simple client example with X.509 certificate support362951 +-Ref: ex:verify363244 +-Node: Simple client example with SSH-style certificate verification368120 +-Node: Simple client example with anonymous authentication372041 +-Node: Simple Datagram TLS client example375351 +-Node: Obtaining session information379118 +-Node: Using a callback to select the certificate to use383163 +-Node: Verifying a certificate389110 +-Ref: ex:verify2389347 +-Node: Client using a smart card with TLS393702 +-Ref: ex:pkcs11-client393935 +-Node: Client with Resume capability example398140 +-Ref: ex:resume-client398415 +-Node: Simple client example with SRP authentication402555 +-Node: Simple client example in C++405995 +-Node: Helper functions for TCP connections408567 +-Node: Helper functions for UDP connections410027 +-Node: Server examples411716 +-Node: Echo server with X.509 authentication412180 +-Node: Echo server with OpenPGP authentication417593 +-Node: Echo server with SRP authentication422824 +-Node: Echo server with anonymous authentication428058 +-Node: DTLS echo server with X.509 authentication432798 +-Node: OCSP example444685 +-Ref: Generate OCSP request444851 +-Node: Miscellaneous examples453072 +-Node: Checking for an alert453422 +-Node: X.509 certificate parsing example454725 +-Ref: ex:x509-info454982 +-Node: Listing the ciphersuites in a priority string458248 +-Node: PKCS #12 structure generation example459988 +-Node: XSSL examples463690 +-Node: Example client with X.509 certificate authentication464285 +-Node: Example client with X.509 certificate authentication and TOFU466173 +-Node: Using GnuTLS as a cryptographic library468623 +-Node: Symmetric algorithms469288 +-Node: Public key algorithms470647 +-Node: Hash and HMAC functions471115 +-Node: Random number generation472925 +-Ref: gnutls_rnd_level_t473258 +-Node: Other included programs473948 +-Node: gnutls-cli Invocation474517 +-Ref: gnutls-cli usage475077 +-Ref: gnutls-cli debug480493 +-Ref: gnutls-cli tofu480637 +-Ref: gnutls-cli dane480888 +-Ref: gnutls-cli local-dns481148 +-Ref: gnutls-cli ca-verification481377 +-Ref: gnutls-cli ocsp481663 +-Ref: gnutls-cli resume481823 +-Ref: gnutls-cli rehandshake481969 +-Ref: gnutls-cli starttls482136 +-Ref: gnutls-cli disable-extensions482322 +-Ref: gnutls-cli dh-bits482517 +-Ref: gnutls-cli priority482869 +-Ref: gnutls-cli ranges483215 +-Ref: gnutls-cli list483431 +-Ref: gnutls-cli exit status483669 +-Ref: gnutls-cli See Also483905 +-Ref: gnutls-cli Examples483982 +-Node: gnutls-serv Invocation485742 +-Ref: gnutls-serv usage486217 +-Ref: gnutls-serv debug490478 +-Ref: gnutls-serv heartbeat490622 +-Ref: gnutls-serv priority490773 +-Ref: gnutls-serv ocsp-response491119 +-Ref: gnutls-serv list491343 +-Ref: gnutls-serv exit status491581 +-Ref: gnutls-serv See Also491819 +-Ref: gnutls-serv Examples491897 +-Node: gnutls-cli-debug Invocation497326 +-Ref: gnutls-cli-debug usage498146 +-Ref: gnutls-cli-debug debug498961 +-Ref: gnutls-cli-debug exit status499105 +-Ref: gnutls-cli-debug See Also499353 +-Ref: gnutls-cli-debug Examples499436 +-Node: Internal architecture of GnuTLS501859 +-Node: The TLS Protocol502401 +-Ref: fig:client-server502877 +-Node: TLS Handshake Protocol502967 +-Ref: fig:gnutls-handshake503409 +-Ref: fig:gnutls-handshake-sequence503918 +-Node: TLS Authentication Methods504016 +-Ref: TLS Authentication Methods-Footnote-1506314 +-Node: TLS Extension Handling506380 +-Node: Cryptographic Backend518071 +-Ref: fig:crypto-layers518805 +-Ref: Cryptographic Backend-Footnote-1522516 +-Ref: Cryptographic Backend-Footnote-2522600 +-Node: Upgrading from previous versions522707 +-Node: Support526993 +-Node: Getting help527223 +-Node: Commercial Support527825 +-Node: Bug Reports528651 +-Node: Contributing530015 +-Node: Error codes532019 +-Node: Supported ciphersuites550523 +-Ref: ciphersuites550696 +-Node: API reference557967 +-Node: Core TLS API558377 +-Ref: gnutls_alert_get558606 +-Ref: gnutls_alert_get_name559230 +-Ref: gnutls_alert_get_strname559615 +-Ref: gnutls_alert_send559950 +-Ref: gnutls_alert_send_appropriate560833 +-Ref: gnutls_anon_allocate_client_credentials561584 +-Ref: gnutls_anon_allocate_server_credentials562043 +-Ref: gnutls_anon_free_client_credentials562494 +-Ref: gnutls_anon_free_server_credentials562870 +-Ref: gnutls_anon_set_params_function563238 +-Ref: gnutls_anon_set_server_dh_params563756 +-Ref: gnutls_anon_set_server_params_function564280 +-Ref: gnutls_auth_client_get_type564789 +-Ref: gnutls_auth_get_type565301 +-Ref: gnutls_auth_server_get_type565998 +-Ref: gnutls_bye566490 +-Ref: gnutls_certificate_activation_time_peers568096 +-Ref: gnutls_certificate_allocate_credentials568563 +-Ref: gnutls_certificate_client_get_request_status569039 +-Ref: gnutls_certificate_expiration_time_peers569462 +-Ref: gnutls_certificate_free_ca_names569866 +-Ref: gnutls_certificate_free_cas570540 +-Ref: gnutls_certificate_free_credentials570964 +-Ref: gnutls_certificate_free_crls571485 +-Ref: gnutls_certificate_free_keys571790 +-Ref: gnutls_certificate_get_issuer572227 +-Ref: gnutls_certificate_get_ours572865 +-Ref: gnutls_certificate_get_peers573398 +-Ref: gnutls_certificate_get_peers_subkey_id574262 +-Ref: gnutls_certificate_send_x509_rdn_sequence574777 +-Ref: gnutls_certificate_server_set_request575505 +-Ref: gnutls_certificate_set_dh_params576158 +-Ref: gnutls_certificate_set_ocsp_status_request_file576879 +-Ref: gnutls_certificate_set_ocsp_status_request_function577754 +-Ref: gnutls_certificate_set_params_function579138 +-Ref: gnutls_certificate_set_pin_function579677 +-Ref: gnutls_certificate_set_retrieve_function580341 +-Ref: gnutls_certificate_set_verify_flags582219 +-Ref: gnutls_certificate_set_verify_function582717 +-Ref: gnutls_certificate_set_verify_limits583786 +-Ref: gnutls_certificate_set_x509_crl584472 +-Ref: gnutls_certificate_set_x509_crl_file585305 +-Ref: gnutls_certificate_set_x509_crl_mem586091 +-Ref: gnutls_certificate_set_x509_key586873 +-Ref: gnutls_certificate_set_x509_key_file587887 +-Ref: gnutls_certificate_set_x509_key_file2589193 +-Ref: gnutls_certificate_set_x509_key_mem590644 +-Ref: gnutls_certificate_set_x509_key_mem2591895 +-Ref: gnutls_certificate_set_x509_simple_pkcs12_file593310 +-Ref: gnutls_certificate_set_x509_simple_pkcs12_mem594838 +-Ref: gnutls_certificate_set_x509_system_trust596336 +-Ref: gnutls_certificate_set_x509_trust596908 +-Ref: gnutls_certificate_set_x509_trust_file597895 +-Ref: gnutls_certificate_set_x509_trust_mem599113 +-Ref: gnutls_certificate_type_get600061 +-Ref: gnutls_certificate_type_get_id600463 +-Ref: gnutls_certificate_type_get_name600860 +-Ref: gnutls_certificate_type_list601243 +-Ref: gnutls_certificate_verification_status_print601597 +-Ref: gnutls_certificate_verify_peers2602357 +-Ref: gnutls_certificate_verify_peers3603623 +-Ref: gnutls_check_version604969 +-Ref: gnutls_cipher_get605578 +-Ref: gnutls_cipher_get_id605884 +-Ref: gnutls_cipher_get_key_size606266 +-Ref: gnutls_cipher_get_name606593 +-Ref: gnutls_cipher_list606940 +-Ref: gnutls_cipher_suite_get_name607500 +-Ref: gnutls_cipher_suite_info608118 +-Ref: gnutls_compression_get609297 +-Ref: gnutls_compression_get_id609650 +-Ref: gnutls_compression_get_name610014 +-Ref: gnutls_compression_list610396 +-Ref: gnutls_credentials_clear610714 +-Ref: gnutls_credentials_set610947 +-Ref: gnutls_db_check_entry612320 +-Ref: gnutls_db_check_entry_time612719 +-Ref: gnutls_db_get_ptr613073 +-Ref: gnutls_db_remove_session613390 +-Ref: gnutls_db_set_cache_expiration613932 +-Ref: gnutls_db_set_ptr614278 +-Ref: gnutls_db_set_remove_function614618 +-Ref: gnutls_db_set_retrieve_function615126 +-Ref: gnutls_db_set_store_function615817 +-Ref: gnutls_deinit616289 +-Ref: gnutls_dh_get_group616633 +-Ref: gnutls_dh_get_peers_public_bits617364 +-Ref: gnutls_dh_get_prime_bits617808 +-Ref: gnutls_dh_get_pubkey618448 +-Ref: gnutls_dh_get_secret_bits619040 +-Ref: gnutls_dh_params_cpy619472 +-Ref: gnutls_dh_params_deinit619930 +-Ref: gnutls_dh_params_export2_pkcs3620205 +-Ref: gnutls_dh_params_export_pkcs3621026 +-Ref: gnutls_dh_params_export_raw622045 +-Ref: gnutls_dh_params_generate2622798 +-Ref: gnutls_dh_params_import_pkcs3623749 +-Ref: gnutls_dh_params_import_raw624524 +-Ref: gnutls_dh_params_init625173 +-Ref: gnutls_dh_set_prime_bits625542 +-Ref: gnutls_ecc_curve_get626639 +-Ref: gnutls_ecc_curve_get_name627032 +-Ref: gnutls_ecc_curve_get_size627368 +-Ref: gnutls_ecc_curve_list627614 +-Ref: gnutls_error_is_fatal627937 +-Ref: gnutls_error_to_alert628697 +-Ref: gnutls_fingerprint629374 +-Ref: gnutls_global_deinit630366 +-Ref: gnutls_global_init630684 +-Ref: gnutls_global_set_audit_log_function632036 +-Ref: gnutls_global_set_log_function632677 +-Ref: gnutls_global_set_log_level633185 +-Ref: gnutls_global_set_mem_functions633688 +-Ref: gnutls_global_set_mutex634924 +-Ref: gnutls_global_set_time_function635765 +-Ref: gnutls_handshake636176 +-Ref: gnutls_handshake_get_last_in637508 +-Ref: gnutls_handshake_get_last_out638138 +-Ref: gnutls_handshake_set_max_packet_length638783 +-Ref: gnutls_handshake_set_post_client_hello_function639474 +-Ref: gnutls_handshake_set_private_extensions640562 +-Ref: gnutls_handshake_set_random641246 +-Ref: gnutls_handshake_set_timeout641958 +-Ref: gnutls_heartbeat_allowed642509 +-Ref: gnutls_heartbeat_enable642983 +-Ref: gnutls_heartbeat_get_timeout643319 +-Ref: gnutls_heartbeat_ping643863 +-Ref: gnutls_heartbeat_pong644831 +-Ref: gnutls_heartbeat_set_timeouts645243 +-Ref: gnutls_hex2bin646249 +-Ref: gnutls_hex_decode646817 +-Ref: gnutls_hex_encode647392 +-Ref: gnutls_init647975 +-Ref: gnutls_key_generate649099 +-Ref: gnutls_kx_get649518 +-Ref: gnutls_kx_get_id649849 +-Ref: gnutls_kx_get_name650193 +-Ref: gnutls_kx_list650538 +-Ref: gnutls_load_file650866 +-Ref: gnutls_mac_get651402 +-Ref: gnutls_mac_get_id651708 +-Ref: gnutls_mac_get_key_size652122 +-Ref: gnutls_mac_get_name652435 +-Ref: gnutls_mac_list652754 +-Ref: gnutls_ocsp_status_request_enable_client653345 +-Ref: gnutls_ocsp_status_request_get654291 +-Ref: gnutls_ocsp_status_request_is_checked654970 +-Ref: gnutls_openpgp_send_cert655644 +-Ref: gnutls_pem_base64_decode656219 +-Ref: gnutls_pem_base64_decode_alloc657082 +-Ref: gnutls_pem_base64_encode657879 +-Ref: gnutls_pem_base64_encode_alloc658694 +-Ref: gnutls_perror659400 +-Ref: gnutls_pk_algorithm_get_name659696 +-Ref: gnutls_pk_bits_to_sec_param660052 +-Ref: gnutls_pk_get_id660526 +-Ref: gnutls_pk_get_name661044 +-Ref: gnutls_pk_list661406 +-Ref: gnutls_pk_to_sign661739 +-Ref: gnutls_prf662150 +-Ref: gnutls_prf_raw663763 +-Ref: gnutls_priority_certificate_type_list665400 +-Ref: gnutls_priority_compression_list665848 +-Ref: gnutls_priority_deinit666262 +-Ref: gnutls_priority_ecc_curve_list666512 +-Ref: gnutls_priority_get_cipher_suite_index666947 +-Ref: gnutls_priority_init667837 +-Ref: gnutls_priority_protocol_list670379 +-Ref: gnutls_priority_set670787 +-Ref: gnutls_priority_set_direct671219 +-Ref: gnutls_priority_sign_list672019 +-Ref: gnutls_protocol_get_id672431 +-Ref: gnutls_protocol_get_name672747 +-Ref: gnutls_protocol_get_version673106 +-Ref: gnutls_protocol_list673409 +-Ref: gnutls_psk_allocate_client_credentials673779 +-Ref: gnutls_psk_allocate_server_credentials674274 +-Ref: gnutls_psk_client_get_hint674745 +-Ref: gnutls_psk_free_client_credentials675228 +-Ref: gnutls_psk_free_server_credentials675599 +-Ref: gnutls_psk_server_get_username675962 +-Ref: gnutls_psk_set_client_credentials676328 +-Ref: gnutls_psk_set_client_credentials_function677320 +-Ref: gnutls_psk_set_params_function678239 +-Ref: gnutls_psk_set_server_credentials_file678761 +-Ref: gnutls_psk_set_server_credentials_function679408 +-Ref: gnutls_psk_set_server_credentials_hint680357 +-Ref: gnutls_psk_set_server_dh_params680991 +-Ref: gnutls_psk_set_server_params_function681518 +-Ref: gnutls_random_art682001 +-Ref: gnutls_range_split682716 +-Ref: gnutls_record_can_use_length_hiding683847 +-Ref: gnutls_record_check_pending684602 +-Ref: gnutls_record_cork685019 +-Ref: gnutls_record_disable_padding685413 +-Ref: gnutls_record_get_direction686025 +-Ref: gnutls_record_get_max_size686937 +-Ref: gnutls_record_recv687299 +-Ref: gnutls_record_recv_seq688802 +-Ref: gnutls_record_send689793 +-Ref: gnutls_record_send_range691275 +-Ref: gnutls_record_set_max_empty_records692465 +-Ref: gnutls_record_set_max_size693365 +-Ref: gnutls_record_set_timeout694280 +-Ref: gnutls_record_uncork694863 +-Ref: gnutls_rehandshake695538 +-Ref: gnutls_safe_renegotiation_status696822 +-Ref: gnutls_sec_param_get_name697237 +-Ref: gnutls_sec_param_to_pk_bits697611 +-Ref: gnutls_server_name_get698257 +-Ref: gnutls_server_name_set699617 +-Ref: gnutls_session_channel_binding700605 +-Ref: gnutls_session_enable_compatibility_mode701328 +-Ref: gnutls_session_force_valid701926 +-Ref: gnutls_session_get_data702352 +-Ref: gnutls_session_get_data2703144 +-Ref: gnutls_session_get_desc703902 +-Ref: gnutls_session_get_id704313 +-Ref: gnutls_session_get_id2705204 +-Ref: gnutls_session_get_ptr705676 +-Ref: gnutls_session_get_random706076 +-Ref: gnutls_session_is_resumed706676 +-Ref: gnutls_session_resumption_requested707012 +-Ref: gnutls_session_set_data707399 +-Ref: gnutls_session_set_premaster708259 +-Ref: gnutls_session_set_ptr709348 +-Ref: gnutls_session_ticket_enable_client709763 +-Ref: gnutls_session_ticket_enable_server710177 +-Ref: gnutls_session_ticket_key_generate710741 +-Ref: gnutls_set_default_priority711171 +-Ref: gnutls_sign_algorithm_get711943 +-Ref: gnutls_sign_algorithm_get_client712328 +-Ref: gnutls_sign_algorithm_get_requested712737 +-Ref: gnutls_sign_get_hash_algorithm713769 +-Ref: gnutls_sign_get_id714181 +-Ref: gnutls_sign_get_name714544 +-Ref: gnutls_sign_get_pk_algorithm714894 +-Ref: gnutls_sign_is_secure715305 +-Ref: gnutls_sign_list715558 +-Ref: gnutls_srp_allocate_client_credentials715888 +-Ref: gnutls_srp_allocate_server_credentials716364 +-Ref: gnutls_srp_base64_decode716812 +-Ref: gnutls_srp_base64_decode_alloc717527 +-Ref: gnutls_srp_base64_encode718200 +-Ref: gnutls_srp_base64_encode_alloc719011 +-Ref: gnutls_srp_free_client_credentials719747 +-Ref: gnutls_srp_free_server_credentials720118 +-Ref: gnutls_srp_server_get_username720481 +-Ref: gnutls_srp_set_client_credentials720935 +-Ref: gnutls_srp_set_client_credentials_function721691 +-Ref: gnutls_srp_set_prime_bits722795 +-Ref: gnutls_srp_set_server_credentials_file723485 +-Ref: gnutls_srp_set_server_credentials_function724226 +-Ref: gnutls_srp_verifier725600 +-Ref: gnutls_srtp_get_keys726528 +-Ref: gnutls_srtp_get_mki727927 +-Ref: gnutls_srtp_get_profile_id728501 +-Ref: gnutls_srtp_get_profile_name728959 +-Ref: gnutls_srtp_get_selected_profile729380 +-Ref: gnutls_srtp_set_mki729829 +-Ref: gnutls_srtp_set_profile730283 +-Ref: gnutls_srtp_set_profile_direct730820 +-Ref: gnutls_store_commitment731547 +-Ref: gnutls_store_pubkey732805 +-Ref: gnutls_strerror733967 +-Ref: gnutls_strerror_name734452 +-Ref: gnutls_supplemental_get_name734921 +-Ref: gnutls_tdb_deinit735329 +-Ref: gnutls_tdb_init735544 +-Ref: gnutls_tdb_set_store_commitment_func735894 +-Ref: gnutls_tdb_set_store_func736488 +-Ref: gnutls_tdb_set_verify_func736985 +-Ref: gnutls_transport_get_int737471 +-Ref: gnutls_transport_get_int2737884 +-Ref: gnutls_transport_get_ptr738392 +-Ref: gnutls_transport_get_ptr2738813 +-Ref: gnutls_transport_set_errno739352 +-Ref: gnutls_transport_set_errno_function740210 +-Ref: gnutls_transport_set_int740752 +-Ref: gnutls_transport_set_int2741113 +-Ref: gnutls_transport_set_ptr741677 +-Ref: gnutls_transport_set_ptr2742095 +-Ref: gnutls_transport_set_pull_function742744 +-Ref: gnutls_transport_set_pull_timeout_function743529 +-Ref: gnutls_transport_set_push_function744496 +-Ref: gnutls_transport_set_vec_push_function745346 +-Ref: gnutls_url_is_supported746047 +-Ref: gnutls_verify_stored_pubkey746428 +-Node: High level TLS API749430 +-Node: Datagram TLS API749659 +-Ref: gnutls_dtls_cookie_send749941 +-Ref: gnutls_dtls_cookie_verify751027 +-Ref: gnutls_dtls_get_data_mtu751895 +-Ref: gnutls_dtls_get_mtu752299 +-Ref: gnutls_dtls_get_timeout752747 +-Ref: gnutls_dtls_prestate_set753295 +-Ref: gnutls_dtls_set_data_mtu753701 +-Ref: gnutls_dtls_set_mtu754563 +-Ref: gnutls_dtls_set_timeouts755174 +-Ref: gnutls_record_get_discarded756189 +-Node: X509 certificate API756468 +-Ref: gnutls_pkcs7_deinit756787 +-Ref: gnutls_pkcs7_delete_crl757000 +-Ref: gnutls_pkcs7_delete_crt757458 +-Ref: gnutls_pkcs7_export757931 +-Ref: gnutls_pkcs7_export2758842 +-Ref: gnutls_pkcs7_get_crl_count759524 +-Ref: gnutls_pkcs7_get_crl_raw759898 +-Ref: gnutls_pkcs7_get_crt_count760699 +-Ref: gnutls_pkcs7_get_crt_raw761083 +-Ref: gnutls_pkcs7_import761971 +-Ref: gnutls_pkcs7_init762597 +-Ref: gnutls_pkcs7_set_crl763017 +-Ref: gnutls_pkcs7_set_crl_raw763447 +-Ref: gnutls_pkcs7_set_crt763866 +-Ref: gnutls_pkcs7_set_crt_raw764379 +-Ref: gnutls_x509_crl_check_issuer764843 +-Ref: gnutls_x509_crl_deinit765286 +-Ref: gnutls_x509_crl_export765497 +-Ref: gnutls_x509_crl_export2766424 +-Ref: gnutls_x509_crl_get_authority_key_gn_serial767188 +-Ref: gnutls_x509_crl_get_authority_key_id768506 +-Ref: gnutls_x509_crl_get_crt_count769574 +-Ref: gnutls_x509_crl_get_crt_serial769937 +-Ref: gnutls_x509_crl_get_dn_oid770714 +-Ref: gnutls_x509_crl_get_extension_data771535 +-Ref: gnutls_x509_crl_get_extension_info772650 +-Ref: gnutls_x509_crl_get_extension_oid773928 +-Ref: gnutls_x509_crl_get_issuer_dn774794 +-Ref: gnutls_x509_crl_get_issuer_dn2775670 +-Ref: gnutls_x509_crl_get_issuer_dn_by_oid776354 +-Ref: gnutls_x509_crl_get_next_update777865 +-Ref: gnutls_x509_crl_get_number778304 +-Ref: gnutls_x509_crl_get_raw_issuer_dn779034 +-Ref: gnutls_x509_crl_get_signature779493 +-Ref: gnutls_x509_crl_get_signature_algorithm780087 +-Ref: gnutls_x509_crl_get_this_update780529 +-Ref: gnutls_x509_crl_get_version780859 +-Ref: gnutls_x509_crl_import781172 +-Ref: gnutls_x509_crl_init781801 +-Ref: gnutls_x509_crl_list_import782374 +-Ref: gnutls_x509_crl_list_import2783366 +-Ref: gnutls_x509_crl_print784274 +-Ref: gnutls_x509_crl_set_authority_key_id784927 +-Ref: gnutls_x509_crl_set_crt785580 +-Ref: gnutls_x509_crl_set_crt_serial786158 +-Ref: gnutls_x509_crl_set_next_update786795 +-Ref: gnutls_x509_crl_set_number787207 +-Ref: gnutls_x509_crl_set_this_update787784 +-Ref: gnutls_x509_crl_set_version788193 +-Ref: gnutls_x509_crl_sign2788743 +-Ref: gnutls_x509_crl_verify789632 +-Ref: gnutls_x509_crq_deinit790787 +-Ref: gnutls_x509_crq_export791028 +-Ref: gnutls_x509_crq_export2792030 +-Ref: gnutls_x509_crq_get_attribute_by_oid792809 +-Ref: gnutls_x509_crq_get_attribute_data793834 +-Ref: gnutls_x509_crq_get_attribute_info794946 +-Ref: gnutls_x509_crq_get_basic_constraints796143 +-Ref: gnutls_x509_crq_get_challenge_password797401 +-Ref: gnutls_x509_crq_get_dn798018 +-Ref: gnutls_x509_crq_get_dn2798843 +-Ref: gnutls_x509_crq_get_dn_by_oid799546 +-Ref: gnutls_x509_crq_get_dn_oid801007 +-Ref: gnutls_x509_crq_get_extension_by_oid801794 +-Ref: gnutls_x509_crq_get_extension_data802945 +-Ref: gnutls_x509_crq_get_extension_info804073 +-Ref: gnutls_x509_crq_get_key_id805348 +-Ref: gnutls_x509_crq_get_key_purpose_oid806380 +-Ref: gnutls_x509_crq_get_key_rsa_raw807406 +-Ref: gnutls_x509_crq_get_key_usage808030 +-Ref: gnutls_x509_crq_get_pk_algorithm809121 +-Ref: gnutls_x509_crq_get_private_key_usage_period809883 +-Ref: gnutls_x509_crq_get_subject_alt_name810564 +-Ref: gnutls_x509_crq_get_subject_alt_othername_oid812127 +-Ref: gnutls_x509_crq_get_version813604 +-Ref: gnutls_x509_crq_import813955 +-Ref: gnutls_x509_crq_init814647 +-Ref: gnutls_x509_crq_print814987 +-Ref: gnutls_x509_crq_set_attribute_by_oid815647 +-Ref: gnutls_x509_crq_set_basic_constraints816517 +-Ref: gnutls_x509_crq_set_challenge_password817261 +-Ref: gnutls_x509_crq_set_dn817717 +-Ref: gnutls_x509_crq_set_dn_by_oid818270 +-Ref: gnutls_x509_crq_set_key819379 +-Ref: gnutls_x509_crq_set_key_purpose_oid819847 +-Ref: gnutls_x509_crq_set_key_rsa_raw820626 +-Ref: gnutls_x509_crq_set_key_usage821207 +-Ref: gnutls_x509_crq_set_private_key_usage_period821711 +-Ref: gnutls_x509_crq_set_subject_alt_name822240 +-Ref: gnutls_x509_crq_set_version823038 +-Ref: gnutls_x509_crq_sign2823530 +-Ref: gnutls_x509_crq_verify824511 +-Ref: gnutls_x509_crt_check_hostname825110 +-Ref: gnutls_x509_crt_check_issuer825761 +-Ref: gnutls_x509_crt_check_revocation826356 +-Ref: gnutls_x509_crt_cpy_crl_dist_points827007 +-Ref: gnutls_x509_crt_deinit827596 +-Ref: gnutls_x509_crt_export827819 +-Ref: gnutls_x509_crt_export2828730 +-Ref: gnutls_x509_crt_get_activation_time829428 +-Ref: gnutls_x509_crt_get_authority_info_access829811 +-Ref: gnutls_x509_crt_get_authority_key_gn_serial833204 +-Ref: gnutls_x509_crt_get_authority_key_id834649 +-Ref: gnutls_x509_crt_get_basic_constraints835785 +-Ref: gnutls_x509_crt_get_ca_status837004 +-Ref: gnutls_x509_crt_get_crl_dist_points837891 +-Ref: gnutls_x509_crt_get_dn839221 +-Ref: gnutls_x509_crt_get_dn2840073 +-Ref: gnutls_x509_crt_get_dn_by_oid840770 +-Ref: gnutls_x509_crt_get_dn_oid842539 +-Ref: gnutls_x509_crt_get_expiration_time843567 +-Ref: gnutls_x509_crt_get_extension_by_oid843938 +-Ref: gnutls_x509_crt_get_extension_data845059 +-Ref: gnutls_x509_crt_get_extension_info846157 +-Ref: gnutls_x509_crt_get_extension_oid847518 +-Ref: gnutls_x509_crt_get_fingerprint848481 +-Ref: gnutls_x509_crt_get_issuer849276 +-Ref: gnutls_x509_crt_get_issuer_alt_name849919 +-Ref: gnutls_x509_crt_get_issuer_alt_name2851724 +-Ref: gnutls_x509_crt_get_issuer_alt_othername_oid853311 +-Ref: gnutls_x509_crt_get_issuer_dn854965 +-Ref: gnutls_x509_crt_get_issuer_dn2855843 +-Ref: gnutls_x509_crt_get_issuer_dn_by_oid856571 +-Ref: gnutls_x509_crt_get_issuer_dn_oid858358 +-Ref: gnutls_x509_crt_get_issuer_unique_id859394 +-Ref: gnutls_x509_crt_get_key_id860211 +-Ref: gnutls_x509_crt_get_key_purpose_oid861199 +-Ref: gnutls_x509_crt_get_key_usage862360 +-Ref: gnutls_x509_crt_get_pk_algorithm863432 +-Ref: gnutls_x509_crt_get_pk_dsa_raw864153 +-Ref: gnutls_x509_crt_get_pk_rsa_raw864821 +-Ref: gnutls_x509_crt_get_policy865399 +-Ref: gnutls_x509_crt_get_private_key_usage_period866313 +-Ref: gnutls_x509_crt_get_proxy867068 +-Ref: gnutls_x509_crt_get_raw_dn868094 +-Ref: gnutls_x509_crt_get_raw_issuer_dn868692 +-Ref: gnutls_x509_crt_get_serial869276 +-Ref: gnutls_x509_crt_get_signature870021 +-Ref: gnutls_x509_crt_get_signature_algorithm870627 +-Ref: gnutls_x509_crt_get_subject871100 +-Ref: gnutls_x509_crt_get_subject_alt_name871748 +-Ref: gnutls_x509_crt_get_subject_alt_name2873512 +-Ref: gnutls_x509_crt_get_subject_alt_othername_oid875082 +-Ref: gnutls_x509_crt_get_subject_key_id876727 +-Ref: gnutls_x509_crt_get_subject_unique_id877564 +-Ref: gnutls_x509_crt_get_version878363 +-Ref: gnutls_x509_crt_import878695 +-Ref: gnutls_x509_crt_init879389 +-Ref: gnutls_x509_crt_list_import879728 +-Ref: gnutls_x509_crt_list_import2881092 +-Ref: gnutls_x509_crt_list_verify882044 +-Ref: gnutls_x509_crt_print883715 +-Ref: gnutls_x509_crt_set_activation_time884611 +-Ref: gnutls_x509_crt_set_authority_info_access885078 +-Ref: gnutls_x509_crt_set_authority_key_id885973 +-Ref: gnutls_x509_crt_set_basic_constraints886555 +-Ref: gnutls_x509_crt_set_ca_status887254 +-Ref: gnutls_x509_crt_set_crl_dist_points887852 +-Ref: gnutls_x509_crt_set_crl_dist_points2888504 +-Ref: gnutls_x509_crt_set_crq889203 +-Ref: gnutls_x509_crt_set_crq_extensions889760 +-Ref: gnutls_x509_crt_set_dn890222 +-Ref: gnutls_x509_crt_set_dn_by_oid890775 +-Ref: gnutls_x509_crt_set_expiration_time891892 +-Ref: gnutls_x509_crt_set_extension_by_oid892331 +-Ref: gnutls_x509_crt_set_issuer_dn893114 +-Ref: gnutls_x509_crt_set_issuer_dn_by_oid893688 +-Ref: gnutls_x509_crt_set_key894941 +-Ref: gnutls_x509_crt_set_key_purpose_oid895448 +-Ref: gnutls_x509_crt_set_key_usage896216 +-Ref: gnutls_x509_crt_set_pin_function896667 +-Ref: gnutls_x509_crt_set_policy897347 +-Ref: gnutls_x509_crt_set_private_key_usage_period898168 +-Ref: gnutls_x509_crt_set_proxy898675 +-Ref: gnutls_x509_crt_set_proxy_dn899489 +-Ref: gnutls_x509_crt_set_serial900513 +-Ref: gnutls_x509_crt_set_subject_alt_name901378 +-Ref: gnutls_x509_crt_set_subject_alternative_name902200 +-Ref: gnutls_x509_crt_set_subject_key_id903024 +-Ref: gnutls_x509_crt_set_version903524 +-Ref: gnutls_x509_crt_sign904347 +-Ref: gnutls_x509_crt_sign2904902 +-Ref: gnutls_x509_crt_verify905770 +-Ref: gnutls_x509_dn_deinit906697 +-Ref: gnutls_x509_dn_export906959 +-Ref: gnutls_x509_dn_export2907853 +-Ref: gnutls_x509_dn_get_rdn_ava908514 +-Ref: gnutls_x509_dn_import909544 +-Ref: gnutls_x509_dn_init910170 +-Ref: gnutls_x509_dn_oid_known910596 +-Ref: gnutls_x509_dn_oid_name911265 +-Ref: gnutls_x509_policy_release911801 +-Ref: gnutls_x509_privkey_cpy912164 +-Ref: gnutls_x509_privkey_deinit912634 +-Ref: gnutls_x509_privkey_export912881 +-Ref: gnutls_x509_privkey_export2913946 +-Ref: gnutls_x509_privkey_export2_pkcs8914779 +-Ref: gnutls_x509_privkey_export_dsa_raw916055 +-Ref: gnutls_x509_privkey_export_ecc_raw916831 +-Ref: gnutls_x509_privkey_export_pkcs8917614 +-Ref: gnutls_x509_privkey_export_rsa_raw919119 +-Ref: gnutls_x509_privkey_export_rsa_raw2920016 +-Ref: gnutls_x509_privkey_fix921038 +-Ref: gnutls_x509_privkey_generate921431 +-Ref: gnutls_x509_privkey_get_key_id922180 +-Ref: gnutls_x509_privkey_get_pk_algorithm923172 +-Ref: gnutls_x509_privkey_get_pk_algorithm2923605 +-Ref: gnutls_x509_privkey_import924097 +-Ref: gnutls_x509_privkey_import2924897 +-Ref: gnutls_x509_privkey_import_dsa_raw925896 +-Ref: gnutls_x509_privkey_import_ecc_raw926622 +-Ref: gnutls_x509_privkey_import_openssl927335 +-Ref: gnutls_x509_privkey_import_pkcs8928213 +-Ref: gnutls_x509_privkey_import_rsa_raw929665 +-Ref: gnutls_x509_privkey_import_rsa_raw2930524 +-Ref: gnutls_x509_privkey_init931492 +-Ref: gnutls_x509_privkey_sec_param931835 +-Ref: gnutls_x509_privkey_verify_params932272 +-Ref: gnutls_x509_rdn_get932629 +-Ref: gnutls_x509_rdn_get_by_oid933333 +-Ref: gnutls_x509_rdn_get_oid934310 +-Ref: gnutls_x509_trust_list_add_cas935064 +-Ref: gnutls_x509_trust_list_add_crls935683 +-Ref: gnutls_x509_trust_list_add_named_crt936668 +-Ref: gnutls_x509_trust_list_add_system_trust937783 +-Ref: gnutls_x509_trust_list_add_trust_file938481 +-Ref: gnutls_x509_trust_list_add_trust_mem939353 +-Ref: gnutls_x509_trust_list_deinit940147 +-Ref: gnutls_x509_trust_list_get_issuer940548 +-Ref: gnutls_x509_trust_list_init941177 +-Ref: gnutls_x509_trust_list_remove_cas941670 +-Ref: gnutls_x509_trust_list_remove_trust_file942192 +-Ref: gnutls_x509_trust_list_remove_trust_mem942804 +-Ref: gnutls_x509_trust_list_verify_crt943346 +-Ref: gnutls_x509_trust_list_verify_named_crt944513 +-Node: OCSP API947014 +-Ref: gnutls_ocsp_req_add_cert947308 +-Ref: gnutls_ocsp_req_add_cert_id948273 +-Ref: gnutls_ocsp_req_deinit949598 +-Ref: gnutls_ocsp_req_export949820 +-Ref: gnutls_ocsp_req_get_cert_id950239 +-Ref: gnutls_ocsp_req_get_extension951830 +-Ref: gnutls_ocsp_req_get_nonce953161 +-Ref: gnutls_ocsp_req_get_version953814 +-Ref: gnutls_ocsp_req_import954190 +-Ref: gnutls_ocsp_req_init954691 +-Ref: gnutls_ocsp_req_print955011 +-Ref: gnutls_ocsp_req_randomize_nonce955746 +-Ref: gnutls_ocsp_req_set_extension956184 +-Ref: gnutls_ocsp_req_set_nonce956873 +-Ref: gnutls_ocsp_resp_check_crt957465 +-Ref: gnutls_ocsp_resp_deinit958048 +-Ref: gnutls_ocsp_resp_export958277 +-Ref: gnutls_ocsp_resp_get_certs958701 +-Ref: gnutls_ocsp_resp_get_extension959825 +-Ref: gnutls_ocsp_resp_get_nonce961164 +-Ref: gnutls_ocsp_resp_get_produced961829 +-Ref: gnutls_ocsp_resp_get_responder962175 +-Ref: gnutls_ocsp_resp_get_response962925 +-Ref: gnutls_ocsp_resp_get_signature964052 +-Ref: gnutls_ocsp_resp_get_signature_algorithm964540 +-Ref: gnutls_ocsp_resp_get_single965017 +-Ref: gnutls_ocsp_resp_get_status966958 +-Ref: gnutls_ocsp_resp_get_version967376 +-Ref: gnutls_ocsp_resp_import967773 +-Ref: gnutls_ocsp_resp_init968340 +-Ref: gnutls_ocsp_resp_print968667 +-Ref: gnutls_ocsp_resp_verify969392 +-Ref: gnutls_ocsp_resp_verify_direct970984 +-Node: OpenPGP API972096 +-Ref: gnutls_certificate_set_openpgp_key972416 +-Ref: gnutls_certificate_set_openpgp_key_file973347 +-Ref: gnutls_certificate_set_openpgp_key_file2974091 +-Ref: gnutls_certificate_set_openpgp_key_mem975098 +-Ref: gnutls_certificate_set_openpgp_key_mem2975855 +-Ref: gnutls_certificate_set_openpgp_keyring_file976879 +-Ref: gnutls_certificate_set_openpgp_keyring_mem977599 +-Ref: gnutls_openpgp_crt_check_hostname978359 +-Ref: gnutls_openpgp_crt_deinit978930 +-Ref: gnutls_openpgp_crt_export979153 +-Ref: gnutls_openpgp_crt_export2979902 +-Ref: gnutls_openpgp_crt_get_auth_subkey980467 +-Ref: gnutls_openpgp_crt_get_creation_time981181 +-Ref: gnutls_openpgp_crt_get_expiration_time981512 +-Ref: gnutls_openpgp_crt_get_fingerprint981893 +-Ref: gnutls_openpgp_crt_get_key_id982452 +-Ref: gnutls_openpgp_crt_get_key_usage982840 +-Ref: gnutls_openpgp_crt_get_name983402 +-Ref: gnutls_openpgp_crt_get_pk_algorithm984132 +-Ref: gnutls_openpgp_crt_get_pk_dsa_raw984850 +-Ref: gnutls_openpgp_crt_get_pk_rsa_raw985551 +-Ref: gnutls_openpgp_crt_get_preferred_key_id986192 +-Ref: gnutls_openpgp_crt_get_revoked_status986660 +-Ref: gnutls_openpgp_crt_get_subkey_count987034 +-Ref: gnutls_openpgp_crt_get_subkey_creation_time987445 +-Ref: gnutls_openpgp_crt_get_subkey_expiration_time987871 +-Ref: gnutls_openpgp_crt_get_subkey_fingerprint988343 +-Ref: gnutls_openpgp_crt_get_subkey_id989004 +-Ref: gnutls_openpgp_crt_get_subkey_idx989428 +-Ref: gnutls_openpgp_crt_get_subkey_pk_algorithm989842 +-Ref: gnutls_openpgp_crt_get_subkey_pk_dsa_raw990683 +-Ref: gnutls_openpgp_crt_get_subkey_pk_rsa_raw991454 +-Ref: gnutls_openpgp_crt_get_subkey_revoked_status992161 +-Ref: gnutls_openpgp_crt_get_subkey_usage992639 +-Ref: gnutls_openpgp_crt_get_version993321 +-Ref: gnutls_openpgp_crt_import993659 +-Ref: gnutls_openpgp_crt_init994227 +-Ref: gnutls_openpgp_crt_print994520 +-Ref: gnutls_openpgp_crt_set_preferred_key_id995192 +-Ref: gnutls_openpgp_crt_verify_ring995821 +-Ref: gnutls_openpgp_crt_verify_self996717 +-Ref: gnutls_openpgp_keyring_check_id997311 +-Ref: gnutls_openpgp_keyring_deinit997819 +-Ref: gnutls_openpgp_keyring_get_crt998082 +-Ref: gnutls_openpgp_keyring_get_crt_count998749 +-Ref: gnutls_openpgp_keyring_import999124 +-Ref: gnutls_openpgp_keyring_init999746 +-Ref: gnutls_openpgp_privkey_deinit1000071 +-Ref: gnutls_openpgp_privkey_export1000320 +-Ref: gnutls_openpgp_privkey_export21001288 +-Ref: gnutls_openpgp_privkey_export_dsa_raw1002062 +-Ref: gnutls_openpgp_privkey_export_rsa_raw1002837 +-Ref: gnutls_openpgp_privkey_export_subkey_dsa_raw1003743 +-Ref: gnutls_openpgp_privkey_export_subkey_rsa_raw1004588 +-Ref: gnutls_openpgp_privkey_get_fingerprint1005538 +-Ref: gnutls_openpgp_privkey_get_key_id1006142 +-Ref: gnutls_openpgp_privkey_get_pk_algorithm1006545 +-Ref: gnutls_openpgp_privkey_get_preferred_key_id1007326 +-Ref: gnutls_openpgp_privkey_get_revoked_status1007828 +-Ref: gnutls_openpgp_privkey_get_subkey_count1008264 +-Ref: gnutls_openpgp_privkey_get_subkey_creation_time1008691 +-Ref: gnutls_openpgp_privkey_get_subkey_fingerprint1009122 +-Ref: gnutls_openpgp_privkey_get_subkey_id1009797 +-Ref: gnutls_openpgp_privkey_get_subkey_idx1010274 +-Ref: gnutls_openpgp_privkey_get_subkey_pk_algorithm1010716 +-Ref: gnutls_openpgp_privkey_get_subkey_revoked_status1011585 +-Ref: gnutls_openpgp_privkey_import1012057 +-Ref: gnutls_openpgp_privkey_init1012768 +-Ref: gnutls_openpgp_privkey_sec_param1013095 +-Ref: gnutls_openpgp_privkey_set_preferred_key_id1013558 +-Ref: gnutls_openpgp_set_recv_key_function1014217 +-Node: PKCS 12 API1014668 +-Ref: gnutls_pkcs12_bag_decrypt1014961 +-Ref: gnutls_pkcs12_bag_deinit1015393 +-Ref: gnutls_pkcs12_bag_encrypt1015621 +-Ref: gnutls_pkcs12_bag_get_count1016126 +-Ref: gnutls_pkcs12_bag_get_data1016438 +-Ref: gnutls_pkcs12_bag_get_friendly_name1017039 +-Ref: gnutls_pkcs12_bag_get_key_id1017671 +-Ref: gnutls_pkcs12_bag_get_type1018285 +-Ref: gnutls_pkcs12_bag_init1018631 +-Ref: gnutls_pkcs12_bag_set_crl1019081 +-Ref: gnutls_pkcs12_bag_set_crt1019514 +-Ref: gnutls_pkcs12_bag_set_data1019960 +-Ref: gnutls_pkcs12_bag_set_friendly_name1020431 +-Ref: gnutls_pkcs12_bag_set_key_id1021110 +-Ref: gnutls_pkcs12_deinit1021761 +-Ref: gnutls_pkcs12_export1021973 +-Ref: gnutls_pkcs12_export21022893 +-Ref: gnutls_pkcs12_generate_mac1023582 +-Ref: gnutls_pkcs12_get_bag1023990 +-Ref: gnutls_pkcs12_import1024605 +-Ref: gnutls_pkcs12_init1025331 +-Ref: gnutls_pkcs12_set_bag1025759 +-Ref: gnutls_pkcs12_simple_parse1026170 +-Ref: gnutls_pkcs12_verify_mac1028758 +-Node: PKCS 11 API1029119 +-Ref: gnutls_pkcs11_add_provider1029448 +-Ref: gnutls_pkcs11_copy_secret_key1029978 +-Ref: gnutls_pkcs11_copy_x509_crt1030703 +-Ref: gnutls_pkcs11_copy_x509_privkey1031357 +-Ref: gnutls_pkcs11_deinit1032147 +-Ref: gnutls_pkcs11_delete_url1032340 +-Ref: gnutls_pkcs11_get_pin_function1032856 +-Ref: gnutls_pkcs11_init1033219 +-Ref: gnutls_pkcs11_obj_deinit1034181 +-Ref: gnutls_pkcs11_obj_export1034430 +-Ref: gnutls_pkcs11_obj_export21035381 +-Ref: gnutls_pkcs11_obj_export_url1036090 +-Ref: gnutls_pkcs11_obj_get_info1036612 +-Ref: gnutls_pkcs11_obj_get_type1037482 +-Ref: gnutls_pkcs11_obj_import_url1037843 +-Ref: gnutls_pkcs11_obj_init1038565 +-Ref: gnutls_pkcs11_obj_list_import_url1038940 +-Ref: gnutls_pkcs11_obj_list_import_url21039813 +-Ref: gnutls_pkcs11_obj_set_pin_function1040716 +-Ref: gnutls_pkcs11_privkey_deinit1041233 +-Ref: gnutls_pkcs11_privkey_export_url1041494 +-Ref: gnutls_pkcs11_privkey_generate1042004 +-Ref: gnutls_pkcs11_privkey_generate21042674 +-Ref: gnutls_pkcs11_privkey_get_info1043690 +-Ref: gnutls_pkcs11_privkey_get_pk_algorithm1044577 +-Ref: gnutls_pkcs11_privkey_import_url1045113 +-Ref: gnutls_pkcs11_privkey_init1045834 +-Ref: gnutls_pkcs11_privkey_set_pin_function1046209 +-Ref: gnutls_pkcs11_privkey_status1046729 +-Ref: gnutls_pkcs11_reinit1047100 +-Ref: gnutls_pkcs11_set_pin_function1047538 +-Ref: gnutls_pkcs11_set_token_function1048028 +-Ref: gnutls_pkcs11_token_get_flags1048434 +-Ref: gnutls_pkcs11_token_get_info1048946 +-Ref: gnutls_pkcs11_token_get_mechanism1049623 +-Ref: gnutls_pkcs11_token_get_url1050236 +-Ref: gnutls_pkcs11_token_init1050904 +-Ref: gnutls_pkcs11_token_set_pin1051542 +-Ref: gnutls_pkcs11_type_get_name1052155 +-Ref: gnutls_x509_crt_import_pkcs111052644 +-Ref: gnutls_x509_crt_import_pkcs11_url1053164 +-Ref: gnutls_x509_crt_list_import_pkcs111053823 +-Node: TPM API1054437 +-Ref: gnutls_tpm_get_registered1054716 +-Ref: gnutls_tpm_key_list_deinit1055109 +-Ref: gnutls_tpm_key_list_get_url1055377 +-Ref: gnutls_tpm_privkey_delete1056029 +-Ref: gnutls_tpm_privkey_generate1056465 +-Node: Abstract key API1057811 +-Ref: gnutls_certificate_set_key1058123 +-Ref: gnutls_certificate_set_retrieve_function21059486 +-Ref: gnutls_pcert_deinit1061351 +-Ref: gnutls_pcert_import_openpgp1061596 +-Ref: gnutls_pcert_import_openpgp_raw1062206 +-Ref: gnutls_pcert_import_x5091062984 +-Ref: gnutls_pcert_import_x509_raw1063582 +-Ref: gnutls_pcert_list_import_x509_raw1064285 +-Ref: gnutls_privkey_decrypt_data1065328 +-Ref: gnutls_privkey_deinit1065962 +-Ref: gnutls_privkey_get_pk_algorithm1066221 +-Ref: gnutls_privkey_get_type1066840 +-Ref: gnutls_privkey_import_ext1067326 +-Ref: gnutls_privkey_import_ext21068281 +-Ref: gnutls_privkey_import_openpgp1069461 +-Ref: gnutls_privkey_import_openpgp_raw1070306 +-Ref: gnutls_privkey_import_pkcs111071021 +-Ref: gnutls_privkey_import_pkcs11_url1071784 +-Ref: gnutls_privkey_import_tpm_raw1072238 +-Ref: gnutls_privkey_import_tpm_url1073110 +-Ref: gnutls_privkey_import_url1074217 +-Ref: gnutls_privkey_import_x5091074764 +-Ref: gnutls_privkey_import_x509_raw1075517 +-Ref: gnutls_privkey_init1076300 +-Ref: gnutls_privkey_set_pin_function1076659 +-Ref: gnutls_privkey_sign_data1077231 +-Ref: gnutls_privkey_sign_hash1078247 +-Ref: gnutls_privkey_sign_raw_data1079427 +-Ref: gnutls_privkey_status1080445 +-Ref: gnutls_pubkey_deinit1080973 +-Ref: gnutls_pubkey_encrypt_data1081219 +-Ref: gnutls_pubkey_export1081779 +-Ref: gnutls_pubkey_export21082793 +-Ref: gnutls_pubkey_get_key_id1083558 +-Ref: gnutls_pubkey_get_key_usage1084548 +-Ref: gnutls_pubkey_get_openpgp_key_id1085050 +-Ref: gnutls_pubkey_get_pk_algorithm1086252 +-Ref: gnutls_pubkey_get_pk_dsa_raw1086877 +-Ref: gnutls_pubkey_get_pk_ecc_raw1087558 +-Ref: gnutls_pubkey_get_pk_ecc_x9621088201 +-Ref: gnutls_pubkey_get_pk_rsa_raw1088853 +-Ref: gnutls_pubkey_get_preferred_hash_algorithm1089481 +-Ref: gnutls_pubkey_get_verify_algorithm1090445 +-Ref: gnutls_pubkey_import1091067 +-Ref: gnutls_pubkey_import_dsa_raw1091786 +-Ref: gnutls_pubkey_import_ecc_raw1092447 +-Ref: gnutls_pubkey_import_ecc_x9621093055 +-Ref: gnutls_pubkey_import_openpgp1093689 +-Ref: gnutls_pubkey_import_openpgp_raw1094334 +-Ref: gnutls_pubkey_import_pkcs111095028 +-Ref: gnutls_pubkey_import_pkcs11_url1095581 +-Ref: gnutls_pubkey_import_privkey1096093 +-Ref: gnutls_pubkey_import_rsa_raw1096688 +-Ref: gnutls_pubkey_import_tpm_raw1097244 +-Ref: gnutls_pubkey_import_tpm_url1098021 +-Ref: gnutls_pubkey_import_url1098917 +-Ref: gnutls_pubkey_import_x5091099410 +-Ref: gnutls_pubkey_import_x509_crq1099915 +-Ref: gnutls_pubkey_import_x509_raw1100423 +-Ref: gnutls_pubkey_init1101005 +-Ref: gnutls_pubkey_print1101337 +-Ref: gnutls_pubkey_set_key_usage1102075 +-Ref: gnutls_pubkey_set_pin_function1102644 +-Ref: gnutls_pubkey_verify_data1103215 +-Ref: gnutls_pubkey_verify_data21103986 +-Ref: gnutls_pubkey_verify_hash1104709 +-Ref: gnutls_pubkey_verify_hash21105490 +-Ref: gnutls_x509_crl_privkey_sign1106229 +-Ref: gnutls_x509_crq_privkey_sign1107151 +-Ref: gnutls_x509_crq_set_pubkey1108164 +-Ref: gnutls_x509_crt_privkey_sign1108635 +-Ref: gnutls_x509_crt_set_pubkey1109513 +-Node: DANE API1109925 +-Ref: dane_cert_type_name1110296 +-Ref: dane_cert_usage_name1110585 +-Ref: dane_match_type_name1110874 +-Ref: dane_query_data1111156 +-Ref: dane_query_deinit1111835 +-Ref: dane_query_entries1112040 +-Ref: dane_query_status1112282 +-Ref: dane_query_tlsa1112576 +-Ref: dane_state_deinit1113155 +-Ref: dane_state_init1113347 +-Ref: dane_state_set_dlv_file1113730 +-Ref: dane_strerror1114030 +-Ref: dane_verification_status_print1114529 +-Ref: dane_verify_crt1115123 +-Ref: dane_verify_session_crt1116993 +-Node: Cryptographic API1117946 +-Ref: gnutls_cipher_add_auth1118274 +-Ref: gnutls_cipher_decrypt1118856 +-Ref: gnutls_cipher_decrypt21119340 +-Ref: gnutls_cipher_deinit1119952 +-Ref: gnutls_cipher_encrypt1120237 +-Ref: gnutls_cipher_encrypt21120697 +-Ref: gnutls_cipher_get_block_size1121325 +-Ref: gnutls_cipher_init1121626 +-Ref: gnutls_cipher_set_iv1122345 +-Ref: gnutls_cipher_tag1122696 +-Ref: gnutls_hash1123158 +-Ref: gnutls_hash_deinit1123595 +-Ref: gnutls_hash_fast1123929 +-Ref: gnutls_hash_get_len1124440 +-Ref: gnutls_hash_init1124768 +-Ref: gnutls_hash_output1125310 +-Ref: gnutls_hmac1125597 +-Ref: gnutls_hmac_deinit1126034 +-Ref: gnutls_hmac_fast1126367 +-Ref: gnutls_hmac_get_len1126980 +-Ref: gnutls_hmac_init1127295 +-Ref: gnutls_hmac_output1127977 +-Ref: gnutls_rnd1128260 +-Ref: gnutls_rnd_refresh1128651 +-Node: Compatibility API1128932 +-Ref: gnutls_certificate_set_rsa_export_params1129310 +-Ref: gnutls_certificate_type_set_priority1129826 +-Ref: gnutls_cipher_set_priority1130555 +-Ref: gnutls_compression_set_priority1131279 +-Ref: gnutls_kx_set_priority1132153 +-Ref: gnutls_mac_set_priority1132858 +-Ref: gnutls_openpgp_privkey_sign_hash1133575 +-Ref: gnutls_protocol_set_priority1134277 +-Ref: gnutls_rsa_export_get_modulus_bits1134821 +-Ref: gnutls_rsa_export_get_pubkey1135186 +-Ref: gnutls_rsa_params_cpy1135777 +-Ref: gnutls_rsa_params_deinit1136206 +-Ref: gnutls_rsa_params_export_pkcs11136483 +-Ref: gnutls_rsa_params_export_raw1137428 +-Ref: gnutls_rsa_params_generate21138345 +-Ref: gnutls_rsa_params_import_pkcs11139139 +-Ref: gnutls_rsa_params_import_raw1139838 +-Ref: gnutls_rsa_params_init1140640 +-Ref: gnutls_set_default_export_priority1141021 +-Ref: gnutls_sign_callback_get1141859 +-Ref: gnutls_sign_callback_set1142355 +-Ref: gnutls_x509_crl_sign1143309 +-Ref: gnutls_x509_crq_sign1143924 +-Ref: gnutls_x509_crt_get_preferred_hash_algorithm1144486 +-Ref: gnutls_x509_crt_get_verify_algorithm1145377 +-Ref: gnutls_x509_crt_verify_data1146089 +-Ref: gnutls_x509_crt_verify_hash1146827 +-Ref: gnutls_x509_privkey_sign_data1147580 +-Ref: gnutls_x509_privkey_sign_hash1148849 +-Node: Copying Information1149502 +-Node: Bibliography1174676 +-Ref: CBCATT1174815 +-Ref: GPGH1174992 +-Ref: GUTPKI1175114 +-Ref: KEYPIN1175288 +-Ref: NISTSP800571175462 +-Ref: RFC22461175709 +-Ref: RFC46801175864 +-Ref: RFC45141176021 +-Ref: RFC43461176224 +-Ref: RFC43471176373 +-Ref: RFC52461176539 +-Ref: RFC24401176689 +-Ref: RFC48801176870 +-Ref: RFC42111177063 +-Ref: RFC28171177256 +-Ref: RFC28181177408 +-Ref: RFC29451177521 +-Ref: RFC29861177670 +-Ref: PKIX1177858 +-Ref: RFC37491178120 +-Ref: RFC38201178285 +-Ref: RFC65201178527 +-Ref: RFC57461178765 +-Ref: RFC52801178973 +-Ref: TLSTKT1179239 +-Ref: PKCS121179470 +-Ref: PKCS111179610 +-Ref: RESCORLA1179755 +-Ref: SELKEY1179851 +-Ref: SSL31180009 +-Ref: STEVENS1180199 +-Ref: TLSEXT1180307 +-Ref: TLSPGP1180523 +-Ref: TLSSRP1180687 +-Ref: TLSPSK1180883 +-Ref: TOMSRP1181051 +-Ref: WEGER1181163 +-Ref: ECRYPT1181354 +-Ref: RFC50561181558 +-Ref: RFC59291181710 +-Ref: PKCS11URI1181852 +-Ref: TPMURI1182035 +-Ref: ANDERSON1182228 +-Ref: RFC48211182374 +-Ref: RFC25601182526 +-Ref: RIVESTCRL1182719 +-Node: Function and Data Index1183079 +-Node: Concept Index1275242 ++Node: Top1281 ++Node: Preface2463 ++Node: Introduction to GnuTLS3846 ++Node: Downloading and installing5486 ++Node: Document overview7998 ++Node: Introduction to TLS8996 ++Ref: Introduction to TLS-Footnote-110133 ++Node: TLS layers10420 ++Ref: fig:tls-layers11368 ++Node: The transport layer11443 ++Node: The TLS record protocol12047 ++Node: Encryption algorithms used in the record layer13320 ++Ref: tab:ciphers14197 ++Ref: tab:macs15479 ++Node: Compression algorithms used in the record layer16109 ++Ref: gnutls_compression_method_t17051 ++Node: Weaknesses and countermeasures17738 ++Ref: Weaknesses and countermeasures-Footnote-118762 ++Node: On Record Padding18837 ++Node: The TLS Alert Protocol20760 ++Ref: The Alert Protocol20960 ++Ref: tab:alerts21839 ++Node: The TLS Handshake Protocol24510 ++Ref: The Handshake Protocol24709 ++Node: TLS Cipher Suites25372 ++Ref: TLS Cipher Suites-Footnote-126352 ++Node: Authentication26461 ++Node: Client Authentication27176 ++Node: Resuming Sessions27652 ++Ref: resume27811 ++Node: TLS Extensions28455 ++Node: Maximum fragment length negotiation29133 ++Node: Server name indication29736 ++Ref: serverind29936 ++Node: Session tickets30782 ++Node: HeartBeat31390 ++Node: Safe renegotiation32696 ++Node: OCSP status request37592 ++Node: SRTP39414 ++Ref: gnutls_srtp_profile_t39891 ++Node: How to use TLS in application protocols42236 ++Node: Separate ports42754 ++Ref: Separate ports-Footnote-144162 ++Node: Upward negotiation44235 ++Ref: Upward negotiation-Footnote-146907 ++Node: On SSL 2 and older protocols46932 ++Node: Authentication methods48811 ++Node: Certificate authentication49704 ++Ref: tab:key-exchange50252 ++Node: X.509 certificates52628 ++Ref: fig:x50953106 ++Node: X.509 certificate structure53654 ++Ref: tab:x50954043 ++Ref: tab:x509-ext55706 ++Node: Importing an X.509 certificate58239 ++Node: X.509 distinguished names59623 ++Node: X.509 public and private keys63294 ++Node: Verifying X.509 certificate paths65736 ++Ref: gnutls_certificate_status_t73497 ++Node: Verifying a certificate in the context of TLS session75495 ++Ref: gnutls_certificate_verify_flags76976 ++Node: OpenPGP certificates79109 ++Ref: fig:openpgp79910 ++Ref: tab:openpgp-certificate80694 ++Ref: tab:openpgp-key-exchange82257 ++Ref: OpenPGP certificates-Footnote-186276 ++Node: Advanced certificate verification86328 ++Node: Verifying a certificate using trust on first use authentication87212 ++Node: Verifying a certificate using DANE88435 ++Node: Digital signatures89938 ++Node: More on certificate authentication95134 ++Node: PKCS 10 certificate requests95953 ++Ref: ex:crq99200 ++Node: PKIX certificate revocation lists101281 ++Ref: tab:crl102145 ++Node: OCSP certificate status checking107568 ++Ref: tab:ocsp-response114248 ++Ref: gnutls_x509_crl_reason_t117669 ++Node: Managing encrypted keys119003 ++Ref: gnutls_pkcs_encrypt_flags_t123055 ++Node: certtool Invocation129823 ++Ref: certtool usage130411 ++Ref: certtool debug136363 ++Ref: certtool generate-request136508 ++Ref: certtool verify-chain136851 ++Ref: certtool verify137027 ++Ref: certtool verify-crl137344 ++Ref: certtool get-dh-params137643 ++Ref: certtool load-privkey137940 ++Ref: certtool load-pubkey138112 ++Ref: certtool load-certificate138282 ++Ref: certtool load-ca-privkey138463 ++Ref: certtool load-ca-certificate138667 ++Ref: certtool cprint138879 ++Ref: certtool null-password139112 ++Ref: certtool pubkey-info139304 ++Ref: certtool to-p12139546 ++Ref: certtool rsa139846 ++Ref: certtool dsa139977 ++Ref: certtool ecc140107 ++Ref: certtool ecdsa140279 ++Ref: certtool hash140396 ++Ref: certtool inder140586 ++Ref: certtool inraw140908 ++Ref: certtool outder141031 ++Ref: certtool outraw141181 ++Ref: certtool sec-param141309 ++Ref: certtool pkcs-cipher141531 ++Ref: certtool exit status141770 ++Ref: certtool See Also142001 ++Ref: certtool Examples142051 ++Ref: certtool Files145935 ++Node: ocsptool Invocation151325 ++Ref: ocsptool usage151866 ++Ref: ocsptool debug154972 ++Ref: ocsptool ask155117 ++Ref: ocsptool exit status155512 ++Ref: ocsptool See Also155743 ++Ref: ocsptool Examples155794 ++Node: danetool Invocation160755 ++Ref: danetool usage161209 ++Ref: danetool debug164403 ++Ref: danetool load-pubkey164548 ++Ref: danetool load-certificate164717 ++Ref: danetool dlv164898 ++Ref: danetool hash165058 ++Ref: danetool check165248 ++Ref: danetool check-ee165535 ++Ref: danetool check-ca165716 ++Ref: danetool insecure165892 ++Ref: danetool local-dns166036 ++Ref: danetool inder166265 ++Ref: danetool inraw166587 ++Ref: danetool tlsa-rr166710 ++Ref: danetool host167007 ++Ref: danetool proto167200 ++Ref: danetool ca167421 ++Ref: danetool x509167593 ++Ref: danetool local167852 ++Ref: danetool domain167978 ++Ref: danetool exit status168383 ++Ref: danetool See Also168614 @@ Diff output truncated at 100000 characters. @@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 10 13:26:20 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 10 Aug 2013 11:26:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[21694] csw/mgar/pkg/xdg-utils/trunk/Makefile Message-ID: Revision: 21694 http://gar.svn.sourceforge.net/gar/?rev=21694&view=rev Author: pfelecan Date: 2013-08-10 11:26:19 +0000 (Sat, 10 Aug 2013) Log Message: ----------- xdg-utils/trunk: use Bash where expected Modified Paths: -------------- csw/mgar/pkg/xdg-utils/trunk/Makefile Modified: csw/mgar/pkg/xdg-utils/trunk/Makefile =================================================================== --- csw/mgar/pkg/xdg-utils/trunk/Makefile 2013-08-10 09:50:43 UTC (rev 21693) +++ csw/mgar/pkg/xdg-utils/trunk/Makefile 2013-08-10 11:26:19 UTC (rev 21694) @@ -35,12 +35,19 @@ include gar/category.mk -PATH := /opt/csw/gnu:/opt/csw/libexec/flex-2.5.35/bin:$(PATH) +PATH := /opt/csw/gnu:$(PATH) -# TODO there is work remaining on specific tests +# TODO there is work remaining on specific tests; most of them fail as +# they cannot acces to the X server test-custom: -(cd $(WORKSRC)/tests && \ /usr/bin/env -i \ $(CONFIGURE_ENV) \ ./testrun -R -C -I) @$(MAKECOOKIE) + +# replace all shebangs sh to bash as that is expected: +post-install: + cd $(DESTDIR)$(bindir) && \ + gsed -i 's;^#!/bin/sh$$;#!/usr/bin/env bash;' * + @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 10 15:57:40 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 10 Aug 2013 13:57:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[21695] csw/mgar/pkg Message-ID: Revision: 21695 http://gar.svn.sourceforge.net/gar/?rev=21695&view=rev Author: lblume Date: 2013-08-10 13:57:37 +0000 (Sat, 10 Aug 2013) Log Message: ----------- graphicsmagick/trunk: New GraphicsMagick recipe Added Paths: ----------- csw/mgar/pkg/graphicsmagick/ csw/mgar/pkg/graphicsmagick/Makefile csw/mgar/pkg/graphicsmagick/branches/ csw/mgar/pkg/graphicsmagick/tags/ csw/mgar/pkg/graphicsmagick/trunk/ csw/mgar/pkg/graphicsmagick/trunk/Makefile csw/mgar/pkg/graphicsmagick/trunk/checksums csw/mgar/pkg/graphicsmagick/trunk/files/ Added: csw/mgar/pkg/graphicsmagick/Makefile =================================================================== --- csw/mgar/pkg/graphicsmagick/Makefile (rev 0) +++ csw/mgar/pkg/graphicsmagick/Makefile 2013-08-10 13:57:37 UTC (rev 21695) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/graphicsmagick/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/graphicsmagick/trunk/Makefile =================================================================== --- csw/mgar/pkg/graphicsmagick/trunk/Makefile (rev 0) +++ csw/mgar/pkg/graphicsmagick/trunk/Makefile 2013-08-10 13:57:37 UTC (rev 21695) @@ -0,0 +1,102 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = graphicsmagick +VERSION = 1.3.18 +GARTYPE = v2 + +DESCRIPTION = GraphicsMagick Image Processing System +define BLURB + GraphicsMagick is the swiss army knife of image processing. +endef + +MASTER_SITES = $(SF_MIRRORS) +FILENAME = GraphicsMagick +DISTNAME = $(FILENAME)-$(VERSION) +DISTFILES = $(DISTNAME).tar.xz + +LICENSE = Copyright.txt + +GARCOMPILER = GCC4 + +BUILD64 = 1 +ISAEXEC = 1 + +REINPLACEMENTS += gnuplot +REINPLACE_MATCH_gnuplot = /usr/local/bin/gnuplot +REINPLACE_WITH_gnuplot = $(bindir)/gnuplot +REINPLACE_FILES_gnuplot += magick/magic.c + +PACKAGES += CSWgraphicsmagick +SPKG_DESC_CSWgraphicsmagick = GraphicsMagick Image Processing System +# PKGFILES is catchall +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibgraphicsmagick-q16-3 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibtiff5 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibbz2-1-0 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibpng15-15 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibjasper1 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibz1 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibwmflite0-2-7 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibjbig2 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibgomp1 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWgraphicsmagick += CSWlibjpeg7 + +PACKAGES += CSWgraphicsmagick-dev +CATALOGNAME_CSWgraphicsmagick-dev = graphicsmagick_dev +SPKG_DESC_CSWgraphicsmagick-dev += $(DESCRIPTION), development files +PKGFILES_CSWgraphicsmagick-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWgraphicsmagick-dev += CSWgraphicsmagick +RUNTIME_DEP_PKGS_CSWgraphicsmagick-dev += CSWlibgraphicsmagick++q16-3 +RUNTIME_DEP_PKGS_CSWgraphicsmagick-dev += CSWlibgraphicsmagick-q16-3 +RUNTIME_DEP_PKGS_CSWgraphicsmagick-dev += CSWlibgraphicsmagickwand-q16-2 + +PACKAGES += CSWlibgraphicsmagick++q16-3 +CATALOGNAME_CSWlibgraphicsmagick++q16-3 = libgraphicsmagick++q16_3 +PKGFILES_CSWlibgraphicsmagick++q16-3 += $(call baseisadirs,$(libdir),libGraphicsMagick\+\+-Q16\.so\.3\.6\.2) +PKGFILES_CSWlibgraphicsmagick++q16-3 += $(call baseisadirs,$(libdir),libGraphicsMagick\+\+-Q16\.so\.3(\.\d+)*) +SPKG_DESC_CSWlibgraphicsmagick++q16-3 += $(DESCRIPTION), libGraphicsMagick++-Q16.so.3 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick++q16-3 += CSWlibgraphicsmagick-q16-3 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick++q16-3 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick++q16-3 += CSWlibstdc++6 + +PACKAGES += CSWlibgraphicsmagick-q16-3 +CATALOGNAME_CSWlibgraphicsmagick-q16-3 = libgraphicsmagick_q16_3 +PKGFILES_CSWlibgraphicsmagick-q16-3 += $(call baseisadirs,$(libdir),libGraphicsMagick-Q16\.so\.3\.11\.0) +PKGFILES_CSWlibgraphicsmagick-q16-3 += $(call baseisadirs,$(libdir),libGraphicsMagick-Q16\.so\.3(\.\d+)*) +SPKG_DESC_CSWlibgraphicsmagick-q16-3 += $(DESCRIPTION), libGraphicsMagick-Q16.so.3 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick-q16-3 += CSWlibltdl7 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick-q16-3 += CSWlibbz2-1-0 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick-q16-3 += CSWlibz1 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick-q16-3 += CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick-q16-3 += CSWliblcms2-2 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick-q16-3 += CSWlibgomp1 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagick-q16-3 += CSWlibgcc-s1 + +PACKAGES += CSWlibgraphicsmagickwand-q16-2 +CATALOGNAME_CSWlibgraphicsmagickwand-q16-2 = libgraphicsmagickwand_q16_2 +PKGFILES_CSWlibgraphicsmagickwand-q16-2 += $(call baseisadirs,$(libdir),libGraphicsMagickWand-Q16\.so\.2\.6\.0) +PKGFILES_CSWlibgraphicsmagickwand-q16-2 += $(call baseisadirs,$(libdir),libGraphicsMagickWand-Q16\.so\.2(\.\d+)*) +SPKG_DESC_CSWlibgraphicsmagickwand-q16-2 += $(DESCRIPTION), libGraphicsMagickWand-Q16.so.2 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagickwand-q16-2 += CSWlibgraphicsmagick-q16-3 +RUNTIME_DEP_PKGS_CSWlibgraphicsmagickwand-q16-2 += CSWlibgcc-s1 + +# A few tests are failing +SKIPTEST ?= 1 + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --enable-shared=yes +CONFIGURE_ARGS += --enable-static=no +CONFIGURE_ARGS += --enable-maintainer-mode +CONFIGURE_ARGS += --enable-quantum-library-names +CONFIGURE_ARGS += --enable-symbol-prefix +CONFIGURE_ARGS += --with-modules +CONFIGURE_ARGS += --with-quantum-depth=16 +CONFIGURE_ARGS += --with-dps=no +CONFIGURE_ARGS += --without-perl + +EXTRA_LD_OPTIONS = -z nolazyload + +include gar/category.mk + Property changes on: csw/mgar/pkg/graphicsmagick/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/graphicsmagick/trunk/checksums =================================================================== --- csw/mgar/pkg/graphicsmagick/trunk/checksums (rev 0) +++ csw/mgar/pkg/graphicsmagick/trunk/checksums 2013-08-10 13:57:37 UTC (rev 21695) @@ -0,0 +1 @@ +45e16e0e9628c167390de837d2144042 GraphicsMagick-1.3.18.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Aug 10 17:44:46 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 10 Aug 2013 15:44:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[21696] csw/mgar/pkg/liblasi/trunk/Makefile Message-ID: Revision: 21696 http://gar.svn.sourceforge.net/gar/?rev=21696&view=rev Author: chninkel Date: 2013-08-10 15:44:45 +0000 (Sat, 10 Aug 2013) Log Message: ----------- liblasi/trunk: added some missing build dependencies Modified Paths: -------------- csw/mgar/pkg/liblasi/trunk/Makefile Modified: csw/mgar/pkg/liblasi/trunk/Makefile =================================================================== --- csw/mgar/pkg/liblasi/trunk/Makefile 2013-08-10 13:57:37 UTC (rev 21695) +++ csw/mgar/pkg/liblasi/trunk/Makefile 2013-08-10 15:44:45 UTC (rev 21696) @@ -30,6 +30,13 @@ GARCOMPILER = GCC4 +BUILD_DEP_PKGS = CSWcmake +BUILD_DEP_PKGS += CSWpangodevel +BUILD_DEP_PKGS += CSWlibfreetype-dev +BUILD_DEP_PKGS += CSWlibglib2-dev +BUILD_DEP_PKGS += CSWlibpcre-dev +BUILD_DEP_PKGS += CSWfontconfig-dev + PACKAGES += CSWliblasi1 SPKG_DESC_CSWliblasi1 = C++ Unicode support for PostScript, libLASi.so.1 PKGFILES_CSWliblasi1 = $(call pkgfiles_lib,libLASi.so.1) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 10 17:48:54 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 10 Aug 2013 15:48:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[21697] csw/mgar/pkg/ilmbase/trunk Message-ID: Revision: 21697 http://gar.svn.sourceforge.net/gar/?rev=21697&view=rev Author: lblume Date: 2013-08-10 15:48:53 +0000 (Sat, 10 Aug 2013) Log Message: ----------- ilmbase/trunk: Bump version to 2.0.1; switch compiler to GCC4 Modified Paths: -------------- csw/mgar/pkg/ilmbase/trunk/Makefile csw/mgar/pkg/ilmbase/trunk/checksums Added Paths: ----------- csw/mgar/pkg/ilmbase/trunk/files/0002_avoid_cpu_opt_on_sparc.patch Modified: csw/mgar/pkg/ilmbase/trunk/Makefile =================================================================== --- csw/mgar/pkg/ilmbase/trunk/Makefile 2013-08-10 15:44:45 UTC (rev 21696) +++ csw/mgar/pkg/ilmbase/trunk/Makefile 2013-08-10 15:48:53 UTC (rev 21697) @@ -1,5 +1,5 @@ NAME = ilmbase -VERSION = 1.0.2 +VERSION = 2.0.1 GARTYPE = v2 DESCRIPTION = Base libraries used by OpenEXR @@ -24,50 +24,80 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz PATCHFILES += ImathMath.patch +PATCHFILES += 0002_avoid_cpu_opt_on_sparc.patch VENDOR_URL = http://www.openexr.com LICENSE = LICENSE -PACKAGES += CSWlibhalf6 -SPKG_DESC_CSWlibhalf6 += $(DESCRIPTION), libHalf.so.6 -PKGFILES_CSWlibhalf6 += $(call pkgfiles_lib,libHalf.so.6) -OBSOLETED_BY_CSWlibhalf6 += CSWilmbase -RUNTIME_DEP_PKGS_CSWlibilmthread6 += CSWlibiex6 +GARCOMPILER = GCC4 -PACKAGES += CSWlibiex6 -SPKG_DESC_CSWlibiex6 += $(DESCRIPTION), libIex.so.6 -PKGFILES_CSWlibiex6 += $(call pkgfiles_lib,libIex.so.6) -OBSOLETED_BY_CSWlibiex6 += CSWilmbase +PACKAGES += CSWlibhalf10 +CATALOGNAME_CSWlibhalf10 = libhalf10 +PKGFILES_CSWlibhalf10 += $(call baseisadirs,$(libdir),libHalf\.so\.10\.0\.1) +PKGFILES_CSWlibhalf10 += $(call baseisadirs,$(libdir),libHalf\.so\.10(\.\d+)*) +SPKG_DESC_CSWlibhalf10 += $(DESCRIPTION), libHalf.so.10 +RUNTIME_DEP_PKGS_CSWlibhalf10 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibhalf10 += CSWlibstdc++6 +#CHECKPKG_OVERRIDES_CSWlibhalf10 += no-direct-binding -PACKAGES += CSWlibilmthread6 -SPKG_DESC_CSWlibilmthread6 += $(DESCRIPTION), libIlmThread.so.6 -PKGFILES_CSWlibilmthread6 += $(call pkgfiles_lib,libIlmThread.so.6) -OBSOLETED_BY_CSWlibilmthread6 += CSWilmbase +PACKAGES += CSWlibiex2-0-10 +CATALOGNAME_CSWlibiex2-0-10 = libiex2_0_10 +PKGFILES_CSWlibiex2-0-10 += $(call baseisadirs,$(libdir),libIex-2_0\.so\.10\.0\.1) +PKGFILES_CSWlibiex2-0-10 += $(call baseisadirs,$(libdir),libIex-2_0\.so\.10(\.\d+)*) +SPKG_DESC_CSWlibiex2-0-10 += $(DESCRIPTION), libIex-2_0.so.10 +RUNTIME_DEP_PKGS_CSWlibiex2-0-10 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibiex2-0-10 += CSWlibstdc++6 +#CHECKPKG_OVERRIDES_CSWlibiex2-0-10 += no-direct-binding -PACKAGES += CSWlibimath6 -SPKG_DESC_CSWlibimath6 += $(DESCRIPTION), libImath.so.6 -PKGFILES_CSWlibimath6 += $(call pkgfiles_lib,libImath.so.6) -RUNTIME_DEP_PKGS_CSWlibimath6 += CSWlibiex6 -OBSOLETED_BY_CSWlibimath6 += CSWilmbase +PACKAGES += CSWlibiexmath2-0-10 +CATALOGNAME_CSWlibiexmath2-0-10 = libiexmath2_0_10 +PKGFILES_CSWlibiexmath2-0-10 += $(call baseisadirs,$(libdir),libIexMath-2_0\.so\.10\.0\.1) +PKGFILES_CSWlibiexmath2-0-10 += $(call baseisadirs,$(libdir),libIexMath-2_0\.so\.10(\.\d+)*) +SPKG_DESC_CSWlibiexmath2-0-10 += $(DESCRIPTION), libIexMath-2_0.so.10 +RUNTIME_DEP_PKGS_CSWlibiexmath2-0-10 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibiexmath2-0-10 += CSWlibstdc++6 +#CHECKPKG_OVERRIDES_CSWlibiexmath2-0-10 += no-direct-binding +PACKAGES += CSWlibilmthread2-0-10 +CATALOGNAME_CSWlibilmthread2-0-10 = libilmthread2_0_10 +PKGFILES_CSWlibilmthread2-0-10 += $(call baseisadirs,$(libdir),libIlmThread-2_0\.so\.10\.0\.1) +PKGFILES_CSWlibilmthread2-0-10 += $(call baseisadirs,$(libdir),libIlmThread-2_0\.so\.10(\.\d+)*) +SPKG_DESC_CSWlibilmthread2-0-10 += $(DESCRIPTION), libIlmThread-2_0.so.10 +RUNTIME_DEP_PKGS_CSWlibilmthread2-0-10 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibilmthread2-0-10 += CSWlibstdc++6 +#CHECKPKG_OVERRIDES_CSWlibilmthread2-0-10 += no-direct-binding + +PACKAGES += CSWlibimath2-0-10 +CATALOGNAME_CSWlibimath2-0-10 = libimath2_0_10 +PKGFILES_CSWlibimath2-0-10 += $(call baseisadirs,$(libdir),libImath-2_0\.so\.10\.0\.1) +PKGFILES_CSWlibimath2-0-10 += $(call baseisadirs,$(libdir),libImath-2_0\.so\.10(\.\d+)*) +SPKG_DESC_CSWlibimath2-0-10 += $(DESCRIPTION), libImath-2_0.so.10 +RUNTIME_DEP_PKGS_CSWlibimath2-0-10 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibimath2-0-10 += CSWlibstdc++6 +#CHECKPKG_OVERRIDES_CSWlibimath2-0-10 += no-direct-binding + PACKAGES += CSWilmbase-dev SPKG_DESC_CSWilmbase-dev += Development files for ILM base libraries # PKGFILES is catchall -RUNTIME_DEP_PKGS_CSWilmbase-dev += CSWlibilmthread6 -RUNTIME_DEP_PKGS_CSWilmbase-dev += CSWlibhalf6 -RUNTIME_DEP_PKGS_CSWilmbase-dev += CSWlibiex6 -RUNTIME_DEP_PKGS_CSWilmbase-dev += CSWlibimath6 +RUNTIME_DEP_PKGS_CSWilmbase-dev += CSWlibhalf10 +RUNTIME_DEP_PKGS_CSWilmbase-dev += CSWlibiex2-0-10 +RUNTIME_DEP_PKGS_CSWilmbase-dev += CSWlibiexmath2-0-10 +RUNTIME_DEP_PKGS_CSWilmbase-dev += CSWlibilmthread2-0-10 +RUNTIME_DEP_PKGS_CSWilmbase-dev += CSWlibimath2-0-10 OBSOLETED_BY_CSWilmbase-dev += CSWilmbasedevel CATALOGNAME_CSWilmbasedevel = ilmbase_devel_stub -EXTRA_LD_FLAGS = -lm +EXTRA_LD_FLAGS = -lm +EXTRA_LD_OPTIONS = -z nolazyload -EXTRA_CXXFLAGS += -norunpath -REINPLACE_MATCH = (\|-xarch=) -REINPLACE_WITH = |-norunpath$$1 -REINPLACE_FILES += ltmain.sh - BUILD64_LIBS_ONLY = 1 +# make check has some linking issues +SKIPTEST = 1 + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --enable-shared +CONFIGURE_ARGS += --disable-static + include gar/category.mk Modified: csw/mgar/pkg/ilmbase/trunk/checksums =================================================================== --- csw/mgar/pkg/ilmbase/trunk/checksums 2013-08-10 15:44:45 UTC (rev 21696) +++ csw/mgar/pkg/ilmbase/trunk/checksums 2013-08-10 15:48:53 UTC (rev 21697) @@ -1 +1 @@ -26c133ee8ca48e1196fbfb3ffe292ab4 ilmbase-1.0.2.tar.gz +74c0d0d2873960bd0dc1993f8e03f0ae ilmbase-2.0.1.tar.gz Added: csw/mgar/pkg/ilmbase/trunk/files/0002_avoid_cpu_opt_on_sparc.patch =================================================================== --- csw/mgar/pkg/ilmbase/trunk/files/0002_avoid_cpu_opt_on_sparc.patch (rev 0) +++ csw/mgar/pkg/ilmbase/trunk/files/0002_avoid_cpu_opt_on_sparc.patch 2013-08-10 15:48:53 UTC (rev 21697) @@ -0,0 +1,11 @@ +--- a/IexMath/IexMathFpu.cpp Sat Aug 10 10:59:31 2013 ++++ b/IexMath/IexMathFpu.cpp Sat Aug 10 11:03:14 2013 +@@ -53,7 +53,7 @@ + #endif + + +-#ifdef HAVE_UCONTEXT_H ++#if defined(HAVE_UCONTEXT_H) && !defined (sun) + + + #include This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Aug 10 18:07:25 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 10 Aug 2013 16:07:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[21698] csw/mgar/pkg/liblasi/trunk/Makefile Message-ID: Revision: 21698 http://gar.svn.sourceforge.net/gar/?rev=21698&view=rev Author: chninkel Date: 2013-08-10 16:07:23 +0000 (Sat, 10 Aug 2013) Log Message: ----------- liblasi/trunk: removed useless custom targets, that were in particular preventing LD_OPTIONS to be taken into account Modified Paths: -------------- csw/mgar/pkg/liblasi/trunk/Makefile Modified: csw/mgar/pkg/liblasi/trunk/Makefile =================================================================== --- csw/mgar/pkg/liblasi/trunk/Makefile 2013-08-10 15:48:53 UTC (rev 21697) +++ csw/mgar/pkg/liblasi/trunk/Makefile 2013-08-10 16:07:23 UTC (rev 21698) @@ -50,8 +50,6 @@ RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWliblasi1 += CSWpango OBSOLETED_BY_CSWliblasi1 = CSWliblasi -# A lot of those, but the test returns nothing, so false positive -CHECKPKG_OVERRIDES_CSWliblasi1 += no-direct-binding PACKAGES += CSWliblasi-dev SPKG_DESC_CSWliblasi-dev = Developer support for libLASi.so.0 @@ -65,9 +63,8 @@ EXTRA_LD_OPTIONS = -z nolazyload CONFIGURE_SCRIPTS = custom -BUILD_SCRIPTS = custom -TEST_SCRIPTS = custom INSTALL_SCRIPTS = custom +TEST_TARGET = test include gar/category.mk @@ -88,16 +85,6 @@ . ) @$(MAKECOOKIE) -build-custom: - @echo " ==> Building $(NAME) (custom)" - @( cd $(WORKSRC) ; gmake ) - @$(MAKECOOKIE) - -test-custom: - @echo " ==> Testing $(NAME) (custom)" - @( cd $(WORKSRC) ; gmake test) - @$(MAKECOOKIE) - install-custom: @echo " ==> Installing $(NAME) (custom)" @( cd $(WORKSRC) ; \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Aug 10 18:08:02 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 10 Aug 2013 16:08:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[21699] csw/mgar/pkg/liblasi/trunk/Makefile Message-ID: Revision: 21699 http://gar.svn.sourceforge.net/gar/?rev=21699&view=rev Author: chninkel Date: 2013-08-10 16:08:02 +0000 (Sat, 10 Aug 2013) Log Message: ----------- liblasi/trunk: remove useless dependencies Modified Paths: -------------- csw/mgar/pkg/liblasi/trunk/Makefile Modified: csw/mgar/pkg/liblasi/trunk/Makefile =================================================================== --- csw/mgar/pkg/liblasi/trunk/Makefile 2013-08-10 16:07:23 UTC (rev 21698) +++ csw/mgar/pkg/liblasi/trunk/Makefile 2013-08-10 16:08:02 UTC (rev 21699) @@ -40,13 +40,10 @@ PACKAGES += CSWliblasi1 SPKG_DESC_CSWliblasi1 = C++ Unicode support for PostScript, libLASi.so.1 PKGFILES_CSWliblasi1 = $(call pkgfiles_lib,libLASi.so.1) -RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibgmodule2-0-0 RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibfreetype6 RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibstdc++6 RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibfontconfig1 RUNTIME_DEP_PKGS_CSWliblasi1 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWliblasi1 += CSWpango OBSOLETED_BY_CSWliblasi1 = CSWliblasi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 10 19:47:25 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 10 Aug 2013 17:47:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[21700] csw/mgar/pkg/lang-python/sip/trunk Message-ID: Revision: 21700 http://gar.svn.sourceforge.net/gar/?rev=21700&view=rev Author: pfelecan Date: 2013-08-10 17:47:24 +0000 (Sat, 10 Aug 2013) Log Message: ----------- lang-python/sip/trunk: - version bump - multi-version for 2.x interpreters Modified Paths: -------------- csw/mgar/pkg/lang-python/sip/trunk/Makefile csw/mgar/pkg/lang-python/sip/trunk/checksums Modified: csw/mgar/pkg/lang-python/sip/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/sip/trunk/Makefile 2013-08-10 16:08:02 UTC (rev 21699) +++ csw/mgar/pkg/lang-python/sip/trunk/Makefile 2013-08-10 17:47:24 UTC (rev 21700) @@ -1,9 +1,10 @@ # $Id$ -NAME = sip -VERSION = 4.14.6 -CATEGORIES = python -GARTYPE = v2 +NAME = sip +VERSION = 4.14.7 +CATEGORIES = python +PYTHON_VERSION = 2_7 +GARTYPE = v2 DESCRIPTION = Tool for creating Python bindings for C and C++ define BLURB @@ -24,23 +25,28 @@ CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_SCRIPTS = custom +BUILD_DEP_PKGS += CSWpython-dev +BUILD_DEP_PKGS += CSWpython27-dev + BUILD_SCRIPTS = custom TEST_SCRIPTS = INSTALL_SCRIPTS = custom +RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 RUNTIME_DEP_PKGS += CSWlibgcc-s1 include gar/category.mk -PATH := /opt/csw/gnu:/opt/csw/libexec/flex-2.5.35/bin:$(PATH) +PATH := /opt/csw/gnu:$(PATH) configure-custom: cd $(WORKSRC) && \ /usr/bin/env -i \ $(CONFIGURE_ENV) \ - bash -c 'python configure.py \ + bash -c '$(PYTHON_EXECUTABLE) configure.py \ --platform=solaris-g++ \ CC="$${CC}" \ CFLAGS="$${CFLAGS}" \ Modified: csw/mgar/pkg/lang-python/sip/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/sip/trunk/checksums 2013-08-10 16:08:02 UTC (rev 21699) +++ csw/mgar/pkg/lang-python/sip/trunk/checksums 2013-08-10 17:47:24 UTC (rev 21700) @@ -1 +1 @@ -d6493b9f0a7911566545f694327314c4 sip-4.14.6.tar.gz +f5c8001f16ecffd711708de0e07d542f sip-4.14.7.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 10 19:52:37 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 10 Aug 2013 17:52:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[21701] csw/mgar/pkg/lang-python/mechanize/trunk Message-ID: Revision: 21701 http://gar.svn.sourceforge.net/gar/?rev=21701&view=rev Author: pfelecan Date: 2013-08-10 17:52:37 +0000 (Sat, 10 Aug 2013) Log Message: ----------- lang-python/mechanize/trunk: - version bump - multi-version for 2.x interpreters Modified Paths: -------------- csw/mgar/pkg/lang-python/mechanize/trunk/Makefile csw/mgar/pkg/lang-python/mechanize/trunk/checksums Modified: csw/mgar/pkg/lang-python/mechanize/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/mechanize/trunk/Makefile 2013-08-10 17:47:24 UTC (rev 21700) +++ csw/mgar/pkg/lang-python/mechanize/trunk/Makefile 2013-08-10 17:52:37 UTC (rev 21701) @@ -1,9 +1,7 @@ -# Copyright 2009 OpenCSW -# Distributed under the terms of the GNU General Public License v2 # $Id$ NAME = mechanize -VERSION = 0.2.4 +VERSION = 0.2.5 CATEGORIES = python GARTYPE = v2 DESCRIPTION = Stateful programmatic web browsing in Python @@ -15,6 +13,13 @@ LICENSE = PKG-INFO PACKAGES = CSWpy-mechanize ARCHALL_CSWpy-mechanize = 1 + +BUILD_DEP_PKGS += CSWpython-dev +BUILD_DEP_PKGS += CSWpython27-dev + +RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 + # mechanize does have tests, but they require files that we don't have in the # package repository. SKIPTEST = 1 Modified: csw/mgar/pkg/lang-python/mechanize/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/mechanize/trunk/checksums 2013-08-10 17:47:24 UTC (rev 21700) +++ csw/mgar/pkg/lang-python/mechanize/trunk/checksums 2013-08-10 17:52:37 UTC (rev 21701) @@ -1 +1 @@ -0c1c3cec1c6d7b5d87662a069f04eb8d mechanize-0.2.4.tar.gz +32657f139fc2fb75bcf193b63b8c60b2 mechanize-0.2.5.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 10 19:57:11 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 10 Aug 2013 17:57:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[21702] csw/mgar/pkg/lang-python/cssutils/trunk/Makefile Message-ID: Revision: 21702 http://gar.svn.sourceforge.net/gar/?rev=21702&view=rev Author: pfelecan Date: 2013-08-10 17:57:11 +0000 (Sat, 10 Aug 2013) Log Message: ----------- lang-python/mechanize/trunk: - multi-version for 2.x interpreters - corrected build dependency Modified Paths: -------------- csw/mgar/pkg/lang-python/cssutils/trunk/Makefile Modified: csw/mgar/pkg/lang-python/cssutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/cssutils/trunk/Makefile 2013-08-10 17:52:37 UTC (rev 21701) +++ csw/mgar/pkg/lang-python/cssutils/trunk/Makefile 2013-08-10 17:57:11 UTC (rev 21702) @@ -14,7 +14,9 @@ MASTER_SITES = https://bitbucket.org/cthedot/cssutils/downloads/ DISTFILES = $(DISTNAME).zip -BUILD_DEP_PKGS = CSWpysetuptools +BUILD_DEP_PKGS += CSWpython-dev +BUILD_DEP_PKGS += CSWpython27-dev +BUILD_DEP_PKGS += CSWpy-setuptools CONFIGURE_ARGS = $(DIRPATHS) @@ -22,6 +24,9 @@ ARCHALL = 1 +RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 + EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/python/site-packages/tests.* include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Sat Aug 10 20:23:50 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Sat, 10 Aug 2013 18:23:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[21703] csw/mgar/pkg/lang-python/beautifulsoup4/trunk Message-ID: Revision: 21703 http://gar.svn.sourceforge.net/gar/?rev=21703&view=rev Author: pfelecan Date: 2013-08-10 18:23:48 +0000 (Sat, 10 Aug 2013) Log Message: ----------- lang-python/beautifulsoup4/trunk: - multi-version for 2.x interpreters - version bump Modified Paths: -------------- csw/mgar/pkg/lang-python/beautifulsoup4/trunk/Makefile csw/mgar/pkg/lang-python/beautifulsoup4/trunk/checksums Modified: csw/mgar/pkg/lang-python/beautifulsoup4/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/beautifulsoup4/trunk/Makefile 2013-08-10 17:57:11 UTC (rev 21702) +++ csw/mgar/pkg/lang-python/beautifulsoup4/trunk/Makefile 2013-08-10 18:23:48 UTC (rev 21703) @@ -1,18 +1,18 @@ # $Id$ -# TODO (release-critical prefixed with !, non release-critical with *) -# + NAME = beautifulsoup4 -VERSION = 4.1.3 +VERSION = 4.2.1 GARTYPE = v2 DESCRIPTION = Pythonic idioms for working with the HTML parse tree -define BLURB -endef - CATEGORIES = python TEST_SCRIPTS = DISTFILES = $(DISTNAME).tar.gz ARCHALL_CSWpy-beautifulsoup4 = 1 +BUILD_DEP_PKGS += CSWpython-dev +BUILD_DEP_PKGS += CSWpython27-dev +RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 include gar/category.mk Modified: csw/mgar/pkg/lang-python/beautifulsoup4/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/beautifulsoup4/trunk/checksums 2013-08-10 17:57:11 UTC (rev 21702) +++ csw/mgar/pkg/lang-python/beautifulsoup4/trunk/checksums 2013-08-10 18:23:48 UTC (rev 21703) @@ -1 +1 @@ -c012adc06217b8532c446d181cc56586 beautifulsoup4-4.1.3.tar.gz +91ea70ce16a5f1f43e58f2ef05651679 beautifulsoup4-4.2.1.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 Sat Aug 10 21:29:58 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 10 Aug 2013 19:29:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[21704] csw/mgar/gar/v2/bin/check_db_symbols Message-ID: Revision: 21704 http://gar.svn.sourceforge.net/gar/?rev=21704&view=rev Author: chninkel Date: 2013-08-10 19:29:57 +0000 (Sat, 10 Aug 2013) Log Message: ----------- add a little helper script to check direct binding symbols This script is now referenced in the wiki to help diagnose a specific corner case for the no-direct-binding check: http://wiki.opencsw.org/checkpkg-error-tags#no-direct-binding Added Paths: ----------- csw/mgar/gar/v2/bin/check_db_symbols Added: csw/mgar/gar/v2/bin/check_db_symbols =================================================================== --- csw/mgar/gar/v2/bin/check_db_symbols (rev 0) +++ csw/mgar/gar/v2/bin/check_db_symbols 2013-08-10 19:29:57 UTC (rev 21704) @@ -0,0 +1,145 @@ +#!/usr/bin/perl +# +# check_db_symbols - print some statistics about the direct binding +# status of symbols of a given binary +# + +use strict; +use warnings; + +################################################################### +# Useful functions +################################################################### + +my $ELFDUMP_BIN = '/usr/ccs/bin/elfdump'; + +# Returns the list of symbols bind flags for a given binary +# as a hash where symbol name is the key and flag is the value +sub get_symbols_flags { + my ($binary) = @_; + my %symbol_flags_of; + + open( my $elfdump, '-|', "$ELFDUMP_BIN -y $binary" ) or die "ERROR: Can't analyze $binary with elfdump !"; + while (my $line = <$elfdump>) { + chomp($line); + next if not( + $line =~ m{ + \[(?\d+)\]\s+ + (?\S+)\s+ + (?:(? + \[\d+\]\s(?\S+) + |)\s+)? + (?\S+) + }x + ); + + my $soname = defined $+{'soname'} ? $+{'soname'} : ''; + $symbol_flags_of{$soname}{ $+{'symbol'} } = $+{'flags'}; + } + close($elfdump); + + return ( \%symbol_flags_of ); +} + +my $LDD_BIN = '/usr/bin/ldd'; + +# Find the real location of libraries against which the given +# binary is linked. +# Returns a hash where soname is the key and real path is the value +sub get_libraries_location { + my ($binary) = @_; + my %library_location; + + open( my $ldd, '-|', "$LDD_BIN $binary" ) or die "ERROR: Can't analyze $binary with elfdump !"; + while (my $line = <$ldd>) { + my ( $soname, $library_path ) = ( + $line =~ m{\s*(\S+) # soname + \s+=>\s+ + (\S+) # library path + }x + ); + $library_location{$soname} = $library_path; + } + close($ldd); + + return ( \%library_location ); +} + +sub usage { + my ($exit_code) = @_; + print <<'EOF'; +Usage: check_db_symbols BINARY +Print some statistics about the direct binding status of symbols of a given binary + +EOF + exit ($exit_code); +} + +################################################################### +# Main program +################################################################### + +if (@ARGV < 1) { + usage (1); +} + +my $binary = $ARGV[0]; + +if ( ! -f $binary ) { + print STDERR "ERROR: $binary file doesn't exist !!\n\n"; + exit(2); +} + +my $library_location_of = get_libraries_location($binary); +my $symbol_flags_of = get_symbols_flags($binary); + +printf( + "\n%-20s %10s %10s %10s\n", + ( + 'Library', + 'Directly bound', + 'Not directly bound', + 'Not directly bindable' + ) +); + +foreach my $soname ( keys( %{$symbol_flags_of} ) ) { + next if ( $soname eq '' ); + + my %symbol_counts = ( + directly_bound => 0, + not_directly_bound => 0, + non_directly_bindable => 0, + ); + + my $soname_symbol_flags_for = + get_symbols_flags( $library_location_of->{$soname} ); + + foreach my $symbol ( keys( %{ $symbol_flags_of->{$soname} } ) ) { + my $flag = $symbol_flags_of->{$soname}{$symbol}; + if ( $flag =~ /B/ ) { + $symbol_counts{directly_bound}++; + } + else { + if ( $soname_symbol_flags_for->{''}{$symbol} =~ /N/ ) { + $symbol_counts{non_directly_bindable}++; + } + else { + $symbol_counts{not_directly_bound}++; + } + } + } + printf( + "%-20s %10i %10i %10i\n", + ( + $soname, + @symbol_counts{ + 'directly_bound', 'not_directly_bound', + 'non_directly_bindable' + } + ) + ); +} + +print "\n"; + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Aug 10 21:32:09 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 10 Aug 2013 19:32:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[21705] csw/mgar/gar/v2/bin/check_db_symbols Message-ID: Revision: 21705 http://gar.svn.sourceforge.net/gar/?rev=21705&view=rev Author: chninkel Date: 2013-08-10 19:32:09 +0000 (Sat, 10 Aug 2013) Log Message: ----------- gar/v2: fix script permissions of check_db_symbols Modified Paths: -------------- csw/mgar/gar/v2/bin/check_db_symbols Property Changed: ---------------- csw/mgar/gar/v2/bin/check_db_symbols Property changes on: csw/mgar/gar/v2/bin/check_db_symbols ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Aug 10 21:34:45 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 10 Aug 2013 19:34:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[21706] csw/mgar/gar/v2/bin/check_db_symbols Message-ID: Revision: 21706 http://gar.svn.sourceforge.net/gar/?rev=21706&view=rev Author: chninkel Date: 2013-08-10 19:34:45 +0000 (Sat, 10 Aug 2013) Log Message: ----------- gar/v2: fix the perl path of check_db_symbols as native perl is < 5.10 on Solaris < 11 Modified Paths: -------------- csw/mgar/gar/v2/bin/check_db_symbols Modified: csw/mgar/gar/v2/bin/check_db_symbols =================================================================== --- csw/mgar/gar/v2/bin/check_db_symbols 2013-08-10 19:32:09 UTC (rev 21705) +++ csw/mgar/gar/v2/bin/check_db_symbols 2013-08-10 19:34:45 UTC (rev 21706) @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/opt/csw/bin/perl # # check_db_symbols - print some statistics about the direct binding # status of symbols of a given binary This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 11 16:08:13 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 11 Aug 2013 14:08:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[21707] csw/mgar/gar/v2/lib Message-ID: Revision: 21707 http://gar.svn.sourceforge.net/gar/?rev=21707&view=rev Author: wahwah Date: 2013-08-11 14:08:09 +0000 (Sun, 11 Aug 2013) Log Message: ----------- pkgdb-web: Query package by base directory Find files and packages keeping files in a certain directory. Modified Paths: -------------- csw/mgar/gar/v2/lib/python/checkpkg_lib.py csw/mgar/gar/v2/lib/python/rest.py csw/mgar/gar/v2/lib/web/pkgdb_web.py Modified: csw/mgar/gar/v2/lib/python/checkpkg_lib.py =================================================================== --- csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2013-08-10 19:34:45 UTC (rev 21706) +++ csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2013-08-11 14:08:09 UTC (rev 21707) @@ -997,6 +997,39 @@ ".AndReturn(%s)", repr(basename), pprint.pformat(pkgs)) return pkgs + def GetPathsAndPkgnamesByBasedir(self, basedir, osrel, arch, catrel): + sqo_osrel, sqo_arch, sqo_catrel = self.GetSqlobjectTriad( + osrel, arch, catrel) + connection = m.CswFile._connection + join = [ + sqlbuilder.INNERJOINOn(None, + m.Pkginst, + m.CswFile.q.pkginst==m.Pkginst.q.id), + sqlbuilder.INNERJOINOn(None, + m.Srv4FileStats, + m.CswFile.q.srv4_file==m.Srv4FileStats.q.id), + sqlbuilder.INNERJOINOn(None, + m.Srv4FileInCatalog, + m.Srv4FileStats.q.id==m.Srv4FileInCatalog.q.srv4file), + ] + where = sqlobject.AND( + m.CswFile.q.path==basedir, + m.Srv4FileInCatalog.q.osrel==sqo_osrel, + m.Srv4FileInCatalog.q.arch==sqo_arch, + m.Srv4FileInCatalog.q.catrel==sqo_catrel, + ) + query = connection.sqlrepr( + sqlbuilder.Select( + [m.CswFile.q.basename, m.Pkginst.q.pkgname], + where=where, + join=join)) + rows = connection.queryAll(query) + pkgs = {} + for row in rows: + basename, pkginst = row + pkgs.setdefault(pkginst, []).append(basename) + return pkgs + def GetPkgByPath(self, full_file_path, osrel, arch, catrel): """Returns a list of packages.""" # Memoization for performance Modified: csw/mgar/gar/v2/lib/python/rest.py =================================================================== --- csw/mgar/gar/v2/lib/python/rest.py 2013-08-10 19:34:45 UTC (rev 21706) +++ csw/mgar/gar/v2/lib/python/rest.py 2013-08-11 14:08:09 UTC (rev 21707) @@ -253,7 +253,16 @@ data = urllib2.urlopen(url).read() return cjson.decode(data) + def GetBasenamesByCatalogAndDir(self, catrel, arch, osrel, basedir): + url = ( + self.rest_url + + self.PKGDB_APP + + "/catalogs/%s/%s/%s/pkgnames-and-paths-by-basedir?basedir=%s" + % (catrel, arch, osrel, urlencode(basedir))) + data = urllib2.urlopen(url).read() + return cjson.decode(data) + class CachedPkgstats(object): """Class responsible for holding and caching package stats. Modified: csw/mgar/gar/v2/lib/web/pkgdb_web.py =================================================================== --- csw/mgar/gar/v2/lib/web/pkgdb_web.py 2013-08-10 19:34:45 UTC (rev 21706) +++ csw/mgar/gar/v2/lib/web/pkgdb_web.py 2013-08-11 14:08:09 UTC (rev 21707) @@ -43,7 +43,9 @@ r'/rest/catalogs/([^/]+)/(sparc|i386)/(SunOS[^/]+)/pkgname-by-filename', 'PkgnameByFilename', r'/rest/catalogs/([^/]+)/(sparc|i386)/(SunOS[^/]+)/pkgnames-and-paths-by-basename', - 'PkgnamesAndPathsByBasename', + 'PkgnamesAndPathsByBasename', # with ?basename=... + r'/rest/catalogs/([^/]+)/(sparc|i386)/(SunOS[^/]+)/pkgnames-and-paths-by-basedir', + 'PkgnamesAndPathsByBasedir', # with ?basedir=... r'/rest/catalogs/([^/]+)/(sparc|i386)/(SunOS[^/]+)/for-generation/', 'CatalogForGeneration', # Query by catalog release, arch, OS release and catalogname @@ -361,6 +363,32 @@ return cjson.encode(data) +class PkgnamesAndPathsByBasedir(object): + def GET(self, catrel, arch, osrel): + user_data = web.input() + try: + basedir = user_data.basedir + except AttributeError, e: + raise web.badrequest() + send_filename = ( + '%s-%s-%s-%s-packages.txt' + % (catrel, arch, osrel, basedir.replace('/', '-'))) + db_catalog = checkpkg_lib.Catalog() + try: + data = db_catalog.GetPathsAndPkgnamesByBasedir( + basedir, osrel, arch, catrel) + except sqlobject.main.SQLObjectNotFound, e: + raise web.notfound() + web.header( + 'Content-type', + 'application/x-vnd.opencsw.pkg;type=pkgname-list') + web.header('Content-Disposition', + 'attachment; filename=%s' % send_filename) + response = cjson.encode(data) + web.header('Content-Length', str(len(response))) + return response + + class RestSrv4Detail(object): def GET(self, md5_sum): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 11 16:08:31 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 11 Aug 2013 14:08:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[21708] csw/mgar/gar/v2/lib/web/pkgdb_web.py Message-ID: Revision: 21708 http://gar.svn.sourceforge.net/gar/?rev=21708&view=rev Author: wahwah Date: 2013-08-11 14:08:31 +0000 (Sun, 11 Aug 2013) Log Message: ----------- pkgdb-web: Display a hint how to examine metadata It's not the most convenient method, but it works. Modified Paths: -------------- csw/mgar/gar/v2/lib/web/pkgdb_web.py Modified: csw/mgar/gar/v2/lib/web/pkgdb_web.py =================================================================== --- csw/mgar/gar/v2/lib/web/pkgdb_web.py 2013-08-11 14:08:09 UTC (rev 21707) +++ csw/mgar/gar/v2/lib/web/pkgdb_web.py 2013-08-11 14:08:31 UTC (rev 21708) @@ -13,6 +13,7 @@ import sqlobject import web import time +import re from lib.python import models from lib.python import configuration @@ -112,7 +113,12 @@ "As of January 2013, the stats stored are so big that " "processing them can take several minutes before they " "can be served. Disabling until a proper solution " - "is in place.") + "is in place.\n") + if re.match(r'[0-9a-f]{32}', md5_sum): + pkgstats_raw += '\n' + pkgstats_raw += ('curl -s http://buildfarm.opencsw.org/pkgdb/rest/srv4/' + '%s/pkg-stats/ ' + '| python -m json.tool | less' % md5_sum) # pkgstats_raw = pprint.pformat(pkg.GetStatsStruct()) if pkg.arch.name == 'all': archs = models.Architecture.select(models.Architecture.q.name!='all') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 11 16:08:42 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 11 Aug 2013 14:08:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[21709] csw/mgar/gar/v2/lib/web/releases_web.py Message-ID: Revision: 21709 http://gar.svn.sourceforge.net/gar/?rev=21709&view=rev Author: wahwah Date: 2013-08-11 14:08:42 +0000 (Sun, 11 Aug 2013) Log Message: ----------- pkgdb: Allow to upload to different catalogs Not just into unstable. Modified Paths: -------------- csw/mgar/gar/v2/lib/web/releases_web.py Modified: csw/mgar/gar/v2/lib/web/releases_web.py =================================================================== --- csw/mgar/gar/v2/lib/web/releases_web.py 2013-08-11 14:08:31 UTC (rev 21708) +++ csw/mgar/gar/v2/lib/web/releases_web.py 2013-08-11 14:08:42 UTC (rev 21709) @@ -37,10 +37,11 @@ OPENCSW_ROOT = "/home/mirror/opencsw-official" ALLPKGS_DIR = os.path.join(OPENCSW_ROOT, "allpkgs") CAN_UPLOAD_TO_CATALOGS = frozenset([ + "beanie", + "bratislava", + "dublin", + "kiel", "unstable", - "kiel", - "bratislava", - "beanie", ]) class Index(object): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 11 16:08:51 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 11 Aug 2013 14:08:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[21710] csw/mgar/gar/v2/lib/python/safe_remove_package.py Message-ID: Revision: 21710 http://gar.svn.sourceforge.net/gar/?rev=21710&view=rev Author: wahwah Date: 2013-08-11 14:08:50 +0000 (Sun, 11 Aug 2013) Log Message: ----------- safe-remove-pkg: Use OpenCSW Python Modified Paths: -------------- csw/mgar/gar/v2/lib/python/safe_remove_package.py Modified: csw/mgar/gar/v2/lib/python/safe_remove_package.py =================================================================== --- csw/mgar/gar/v2/lib/python/safe_remove_package.py 2013-08-11 14:08:42 UTC (rev 21709) +++ csw/mgar/gar/v2/lib/python/safe_remove_package.py 2013-08-11 14:08:50 UTC (rev 21710) @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.6 +#!/opt/csw/bin/python2.6 """Helps to safely remove a package (by catalogname) from the catalog. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 11 16:12:53 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 11 Aug 2013 14:12:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[21711] csw/mgar/gar/v2/lib/python/checkpkg_lib.py Message-ID: Revision: 21711 http://gar.svn.sourceforge.net/gar/?rev=21711&view=rev Author: wahwah Date: 2013-08-11 14:12:53 +0000 (Sun, 11 Aug 2013) Log Message: ----------- pkgdb: vim not configured well on the web host. :| Modified Paths: -------------- csw/mgar/gar/v2/lib/python/checkpkg_lib.py Modified: csw/mgar/gar/v2/lib/python/checkpkg_lib.py =================================================================== --- csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2013-08-11 14:08:50 UTC (rev 21710) +++ csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2013-08-11 14:12:53 UTC (rev 21711) @@ -1026,8 +1026,8 @@ rows = connection.queryAll(query) pkgs = {} for row in rows: - basename, pkginst = row - pkgs.setdefault(pkginst, []).append(basename) + basename, pkginst = row + pkgs.setdefault(pkginst, []).append(basename) return pkgs def GetPkgByPath(self, full_file_path, osrel, arch, catrel): 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 Aug 12 16:51:11 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 12 Aug 2013 14:51:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[21712] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 21712 http://gar.svn.sourceforge.net/gar/?rev=21712&view=rev Author: dmichelsen Date: 2013-08-12 14:51:11 +0000 (Mon, 12 Aug 2013) Log Message: ----------- mGAR v2: Add other stuff if NORUNPATH is given Modified Paths: -------------- csw/mgar/gar/v2/gar.conf.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2013-08-11 14:12:53 UTC (rev 21711) +++ csw/mgar/gar/v2/gar.conf.mk 2013-08-12 14:51:11 UTC (rev 21712) @@ -689,6 +689,7 @@ ifndef NOISALIST RUNPATH_ISALIST ?= $(EXTRA_RUNPATH_DIRS) $(EXTRA_LIB) $(filter-out $(libpath_install),$(libdir_install)) $(libpath_install) endif +endif LINKER_MAP_RELEASE-5.10 ?= solaris10 LINKER_MAP_RELEASE ?= $(LINKER_MAP_RELEASE-$(GAROSREL)) @@ -700,7 +701,6 @@ # Iterate over all directories in RUNPATH_DIRS, prefix each directory with one # with $ISALIST if it exists in RUNPATH_ISALIST, then append remaining dirs from RUNPATH_ISALIST RUNPATH_LINKER_FLAGS ?= $(foreach D,$(RUNPATH_DIRS),$(addprefix -R,$(addsuffix /\$$ISALIST,$(filter $D,$(RUNPATH_ISALIST))) $(abspath $D/$(MM_LIBDIR)))) $(addprefix -R,$(filter-out $(RUNPATH_DIRS),$(RUNPATH_ISALIST))) $(EXTRA_RUNPATH_LINKER_FLAGS) -endif LINKER_FLAGS ?= $(PREPEND_LINKER_FLAGS) $(foreach ELIB,$(EXTRA_LIB) $(filter-out $(libpath_install),$(libdir_install)) $(libpath_install),-L$(abspath $(ELIB)/$(MM_LIBDIR))) $(EXTRA_LINKER_FLAGS) 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 Aug 12 16:56:46 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 12 Aug 2013 14:56:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[21713] csw/mgar/pkg/libstatgrab/trunk/Makefile Message-ID: Revision: 21713 http://gar.svn.sourceforge.net/gar/?rev=21713&view=rev Author: dmichelsen Date: 2013-08-12 14:56:45 +0000 (Mon, 12 Aug 2013) Log Message: ----------- libstatgrab/trunk: Minor fixup Modified Paths: -------------- csw/mgar/pkg/libstatgrab/trunk/Makefile Modified: csw/mgar/pkg/libstatgrab/trunk/Makefile =================================================================== --- csw/mgar/pkg/libstatgrab/trunk/Makefile 2013-08-12 14:51:11 UTC (rev 21712) +++ csw/mgar/pkg/libstatgrab/trunk/Makefile 2013-08-12 14:56:45 UTC (rev 21713) @@ -26,15 +26,8 @@ PKGFILES_CSWlibstatgrab-dev += $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWlibstatgrab-dev += CSWlibstatgrab9 -# Put this in -utils: -# statgrab-make-mrtg-config -PKGFILES_DEVEL_CONFIG = -PKGFILES_DEVEL_CONFIG_MANPAGE = -DEVEL_EXECUTABLES = -ISAEXEC_EXCLUDE_FILES = - PACKAGES += CSWlibstatgrab-utils -SPKG_DESC_CSWlibstatgrab-utils = Statistic gathering tools based on libstatgrab.so.6 +SPKG_DESC_CSWlibstatgrab-utils = Statistic gathering tools based on libstatgrab.so.9 # PKGFILES is catchall RUNTIME_DEP_PKGS_CSWlibstatgrab-utils += CSWlibstatgrab9 @@ -43,7 +36,6 @@ BUILD64 = 1 ISAEXEC = 1 -NORUNPATH = 1 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-curses-prefix=/usr 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 Aug 12 23:27:09 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Mon, 12 Aug 2013 21:27:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[21714] csw/mgar/gar/v2/bin/check_db_symbols Message-ID: Revision: 21714 http://gar.svn.sourceforge.net/gar/?rev=21714&view=rev Author: chninkel Date: 2013-08-12 21:27:07 +0000 (Mon, 12 Aug 2013) Log Message: ----------- gar/v2: check_db_symbols: handle the case where a library is not found Modified Paths: -------------- csw/mgar/gar/v2/bin/check_db_symbols Modified: csw/mgar/gar/v2/bin/check_db_symbols =================================================================== --- csw/mgar/gar/v2/bin/check_db_symbols 2013-08-12 14:56:45 UTC (rev 21713) +++ csw/mgar/gar/v2/bin/check_db_symbols 2013-08-12 21:27:07 UTC (rev 21714) @@ -19,6 +19,7 @@ my ($binary) = @_; my %symbol_flags_of; + local $ENV{'LANG'} = 'C'; open( my $elfdump, '-|', "$ELFDUMP_BIN -y $binary" ) or die "ERROR: Can't analyze $binary with elfdump !"; while (my $line = <$elfdump>) { chomp($line); @@ -50,6 +51,7 @@ my ($binary) = @_; my %library_location; + local $ENV{'LANG'} = 'C'; open( my $ldd, '-|', "$LDD_BIN $binary" ) or die "ERROR: Can't analyze $binary with elfdump !"; while (my $line = <$ldd>) { my ( $soname, $library_path ) = ( @@ -58,6 +60,10 @@ (\S+) # library path }x ); + # (file not found) case + if ($library_path eq '(file') { + $library_path = undef; + } $library_location{$soname} = $library_path; } close($ldd); @@ -103,6 +109,7 @@ ) ); +my @unfound_libraries; foreach my $soname ( keys( %{$symbol_flags_of} ) ) { next if ( $soname eq '' ); @@ -112,8 +119,12 @@ non_directly_bindable => 0, ); - my $soname_symbol_flags_for = - get_symbols_flags( $library_location_of->{$soname} ); + my $library_location = $library_location_of->{$soname}; + if (not defined($library_location)) { + push (@unfound_libraries, $soname); + next; + } + my $soname_symbol_flags_for = get_symbols_flags( $library_location ); foreach my $symbol ( keys( %{ $symbol_flags_of->{$soname} } ) ) { my $flag = $symbol_flags_of->{$soname}{$symbol}; @@ -141,5 +152,14 @@ ); } +if (@unfound_libraries) { + print <<'EOF'; + +The following libraries were not found, please make sure +I can find them next time by setting LD_LIBRARY_PATH adequately: +EOF + print ("\t" . join(', ', @unfound_libraries) . "\n"); +} + print "\n"; 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 Aug 12 23:34:47 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Mon, 12 Aug 2013 21:34:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[21715] csw/mgar/gar/v2/lib/python/dependency_checks.py Message-ID: Revision: 21715 http://gar.svn.sourceforge.net/gar/?rev=21715&view=rev Author: chninkel Date: 2013-08-12 21:34:47 +0000 (Mon, 12 Aug 2013) Log Message: ----------- gar/v2: no-direct-binding check: handle the case where the symbol is stored in bss Modified Paths: -------------- csw/mgar/gar/v2/lib/python/dependency_checks.py Modified: csw/mgar/gar/v2/lib/python/dependency_checks.py =================================================================== --- csw/mgar/gar/v2/lib/python/dependency_checks.py 2013-08-12 21:27:07 UTC (rev 21714) +++ csw/mgar/gar/v2/lib/python/dependency_checks.py 2013-08-12 21:34:47 UTC (rev 21715) @@ -193,7 +193,7 @@ # not to be directly bound to. # So we consider that direct binding is enabled if at least one # symbol is directly bound to the library - if (syminfo['shndx'] == 'UNDEF' and 'B' in syminfo['flags']): + if (syminfo['shndx'] in ('UNDEF', '.bss') and 'B' in syminfo['flags']): db_libs.add(syminfo['soname']) 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 Aug 12 23:47:24 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Mon, 12 Aug 2013 21:47:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[21716] csw/mgar/gar/v2/lib/python/dependency_checks.py Message-ID: Revision: 21716 http://gar.svn.sourceforge.net/gar/?rev=21716&view=rev Author: chninkel Date: 2013-08-12 21:47:24 +0000 (Mon, 12 Aug 2013) Log Message: ----------- gar/v2: no-direct-binding check: make symbol direct binding test even simpler If symbol['soname'] is not None, that means that it's an external symbol, so we don't need to check the symbol shndx. Modified Paths: -------------- csw/mgar/gar/v2/lib/python/dependency_checks.py Modified: csw/mgar/gar/v2/lib/python/dependency_checks.py =================================================================== --- csw/mgar/gar/v2/lib/python/dependency_checks.py 2013-08-12 21:34:47 UTC (rev 21715) +++ csw/mgar/gar/v2/lib/python/dependency_checks.py 2013-08-12 21:47:24 UTC (rev 21716) @@ -193,7 +193,7 @@ # not to be directly bound to. # So we consider that direct binding is enabled if at least one # symbol is directly bound to the library - if (syminfo['shndx'] in ('UNDEF', '.bss') and 'B' in syminfo['flags']): + if 'B' in syminfo['flags']: db_libs.add(syminfo['soname']) 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 Aug 13 00:05:07 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Mon, 12 Aug 2013 22:05:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[21717] csw/mgar/pkg/openexr/trunk Message-ID: Revision: 21717 http://gar.svn.sourceforge.net/gar/?rev=21717&view=rev Author: lblume Date: 2013-08-12 22:05:06 +0000 (Mon, 12 Aug 2013) Log Message: ----------- openexr/trunk: Bump version to 2.0.1; reorganize packages Modified Paths: -------------- csw/mgar/pkg/openexr/trunk/Makefile csw/mgar/pkg/openexr/trunk/checksums Added Paths: ----------- csw/mgar/pkg/openexr/trunk/files/0003_no_posix_memalign.patch Modified: csw/mgar/pkg/openexr/trunk/Makefile =================================================================== --- csw/mgar/pkg/openexr/trunk/Makefile 2013-08-12 21:47:24 UTC (rev 21716) +++ csw/mgar/pkg/openexr/trunk/Makefile 2013-08-12 22:05:06 UTC (rev 21717) @@ -1,8 +1,8 @@ NAME = openexr -VERSION = 1.7.0 +VERSION = 2.0.1 GARTYPE = v2 -DESCRIPTION = High dynamic-range (HDR) image file format developed by Industrial Light & Magic +DESCRIPTION = High dynamic-range image file format developed by Industrial Light & Magic define BLURB IlmImf is our "EXR" file format for storing 16-bit FP images. Libraries in this package depend on the IlmBase library. @@ -24,20 +24,50 @@ LICENSE = LICENSE +GARCOMPILER = GCC4 + +PATCHFILES += 0003_no_posix_memalign.patch + PACKAGES += CSWopenexr -SPKG_DESC_CSWopenexr += $(DESCRIPTION) +CATALOGNAME_CSWopenexr = openexr +SPKG_DESC_CSWopenexr = $(DESCRIPTION) +RUNTIME_DEP_PKGS_CSWopenexr += CSWlibilmimf-imf2-0-20 +RUNTIME_DEP_PKGS_CSWopenexr += CSWlibhalf10 +RUNTIME_DEP_PKGS_CSWopenexr += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWopenexr += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWopenexr += CSWlibiex2-0-10 +OBSOLETED_BY_CSWopenexr += CSWopenexrrt +# Package is catchall -#PACKAGES += CSWopenexrrt -CATALOGNAME_CSWopenexrrt = openexr_rt_stub -SPKG_DESC_CSW = +PACKAGES += CSWlibilmimf-imf2-0-20 +CATALOGNAME_CSWlibilmimf-imf2-0-20 = libilmimf_imf2_0_20 +PKGFILES_CSWlibilmimf-imf2-0-20 += $(call baseisadirs,$(libdir),libIlmImf-Imf_2_0\.so\.20\.0\.1) +PKGFILES_CSWlibilmimf-imf2-0-20 += $(call baseisadirs,$(libdir),libIlmImf-Imf_2_0\.so\.20(\.\d+)*) +SPKG_DESC_CSWlibilmimf-imf2-0-20 += $(DESCRIPTION), libIlmImf-Imf_2_0.so.20 +RUNTIME_DEP_PKGS_CSWlibilmimf-imf2-0-20 += CSWlibz1 +RUNTIME_DEP_PKGS_CSWlibilmimf-imf2-0-20 += CSWlibilmthread2-0-10 +RUNTIME_DEP_PKGS_CSWlibilmimf-imf2-0-20 += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWlibilmimf-imf2-0-20 += CSWlibiex2-0-10 +RUNTIME_DEP_PKGS_CSWlibilmimf-imf2-0-20 += CSWlibhalf10 +RUNTIME_DEP_PKGS_CSWlibilmimf-imf2-0-20 += CSWlibgcc-s1 PACKAGES += CSWopenexr-dev SPKG_DESC_CSWopenexr-dev = Development files for ... PKGFILES_CSWopenexr-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWopenexr-dev += CSWlibilmimf-imf2-0-20 OBSOLETED_BY_CSWopenexr-dev += CSWopenexrdevel -CATALOGNAME_CSWopenexrdevel = openexr_devel_stub -BUILD64_LIBS_ONLY = 1 +BUILD64 = 1 +ISAEXEC = 1 +SKIPTEST = 1 + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --enable-shared +CONFIGURE_ARGS += --disable-static +CONFIGURE_ARGS += --disable-ilmbasetest + +EXTRA_LD_OPTIONS = -z nolazyload + include gar/category.mk Modified: csw/mgar/pkg/openexr/trunk/checksums =================================================================== --- csw/mgar/pkg/openexr/trunk/checksums 2013-08-12 21:47:24 UTC (rev 21716) +++ csw/mgar/pkg/openexr/trunk/checksums 2013-08-12 22:05:06 UTC (rev 21717) @@ -1 +1 @@ -27113284f7d26a58f853c346e0851d7a openexr-1.7.0.tar.gz +4387e6050d2faa65dd5215618ff2ddce openexr-2.0.1.tar.gz Added: csw/mgar/pkg/openexr/trunk/files/0003_no_posix_memalign.patch =================================================================== --- csw/mgar/pkg/openexr/trunk/files/0003_no_posix_memalign.patch (rev 0) +++ csw/mgar/pkg/openexr/trunk/files/0003_no_posix_memalign.patch 2013-08-12 22:05:06 UTC (rev 21717) @@ -0,0 +1,16 @@ +--- a/IlmImf/ImfSystemSpecific.h Tue Jun 18 21:51:39 2013 ++++ b/IlmImf/ImfSystemSpecific.h Mon Aug 12 00:39:35 2013 +@@ -61,8 +61,13 @@ + static void* EXRAllocAligned(size_t size, size_t alignment) + { + void* ptr = 0; ++#if !defined(sun) + posix_memalign(&ptr, alignment, size); + return ptr; ++#else ++// Solaris 10 doesn't have posix_memalign() ++ return memalign(alignment, size); ++#endif + } + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 13 01:28:12 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 12 Aug 2013 23:28:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[21718] csw/mgar/pkg/lang-python Message-ID: Revision: 21718 http://gar.svn.sourceforge.net/gar/?rev=21718&view=rev Author: wahwah Date: 2013-08-12 23:28:08 +0000 (Mon, 12 Aug 2013) Log Message: ----------- lang-python/distribute: initial commit Modified Paths: -------------- csw/mgar/pkg/lang-python/distribute/trunk/Makefile csw/mgar/pkg/lang-python/distribute/trunk/checksums Added Paths: ----------- csw/mgar/pkg/lang-python/distribute/ Modified: csw/mgar/pkg/lang-python/distribute/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/mock/trunk/Makefile 2013-04-23 13:10:04 UTC (rev 20848) +++ csw/mgar/pkg/lang-python/distribute/trunk/Makefile 2013-08-12 23:28:08 UTC (rev 21718) @@ -2,15 +2,15 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -NAME = mock -VERSION = 1.0.1 +NAME = distribute +VERSION = 0.7.3 CATEGORIES = python GARTYPE = v2 -DESCRIPTION = A Python Mocking and Patching Library for Testing +DESCRIPTION = This package is a simple compatibility layer that installs Setuptools 0.7+ -DISTFILES = $(DISTNAME).tar.gz -VENDOR_URL = https://pypi.python.org/pypi/mock/1.0.1 +DISTFILES = $(DISTNAME).zip +VENDOR_URL = https://pypi.python.org/pypi/distribute ARCHALL = 1 TEST_SCRIPTS = include gar/category.mk Modified: csw/mgar/pkg/lang-python/distribute/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/mock/trunk/checksums 2013-04-23 13:10:04 UTC (rev 20848) +++ csw/mgar/pkg/lang-python/distribute/trunk/checksums 2013-08-12 23:28:08 UTC (rev 21718) @@ -1 +1 @@ -c3971991738caa55ec7c356bbc154ee2 mock-1.0.1.tar.gz +c6c59594a7b180af57af8a0cc0cf5b4a distribute-0.7.3.zip This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 13 01:30:46 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 12 Aug 2013 23:30:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[21719] csw/mgar/gar/v2/lib/python/checkpkg_lib.py Message-ID: Revision: 21719 http://gar.svn.sourceforge.net/gar/?rev=21719&view=rev Author: wahwah Date: 2013-08-12 23:30:43 +0000 (Mon, 12 Aug 2013) Log Message: ----------- pkgdb: Faster searches for files by basename Should speed up both the REST interface and the checkpkg invocations. Modified Paths: -------------- csw/mgar/gar/v2/lib/python/checkpkg_lib.py Modified: csw/mgar/gar/v2/lib/python/checkpkg_lib.py =================================================================== --- csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2013-08-12 23:28:08 UTC (rev 21718) +++ csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2013-08-12 23:30:43 UTC (rev 21719) @@ -969,34 +969,41 @@ sqo_osrel, sqo_arch, sqo_catrel = self.GetSqlobjectTriad( osrel, arch, catrel) - # Looks like this join is hard to do that way. - # res = m.Srv4FileInCatalog.select( - # sqlobject.AND( - # m.Srv4FileInCatalog.q.osrel==sqo_osrel, - # m.Srv4FileInCatalog.q.arch==sqo_arch, - # m.Srv4FileInCatalog.q.catrel==sqo_catrel)). - # throughTo.srv4file.thoughTo.files + connection = m.CswFile._connection + join = [ + sqlbuilder.INNERJOINOn(None, + m.Pkginst, + m.CswFile.q.pkginst==m.Pkginst.q.id), + sqlbuilder.INNERJOINOn(None, + m.Srv4FileStats, + m.CswFile.q.srv4_file==m.Srv4FileStats.q.id), + sqlbuilder.INNERJOINOn(None, + m.Srv4FileInCatalog, + m.Srv4FileStats.q.id==m.Srv4FileInCatalog.q.srv4file), + ] + where = sqlobject.AND( + m.CswFile.q.basename==basename, + m.Srv4FileInCatalog.q.osrel==sqo_osrel, + m.Srv4FileInCatalog.q.arch==sqo_arch, + m.Srv4FileInCatalog.q.catrel==sqo_catrel, + ) + query = connection.sqlrepr( + sqlbuilder.Select( + [m.CswFile.q.path, m.Pkginst.q.pkgname], + where=where, + join=join)) + rows = connection.queryAll(query) + pkgs = {} - # We'll implement it on the application level. First, we'll get all - # the files that match the basename, and then filter them based on - # catalog properties. - res = m.CswFile.select(m.CswFile.q.basename==basename) - file_list = [] - for f in res: - # Check whether osrel, arch and catrel are matching. - for cat in f.srv4_file.in_catalogs: - if (f.srv4_file.registered - and cat.osrel == sqo_osrel - and cat.arch == sqo_arch - and cat.catrel == sqo_catrel): - file_list.append(f) - for obj in file_list: - pkgs.setdefault(obj.path, []) - pkgs[obj.path].append(obj.pkginst.pkgname) + for row in rows: + file_path, pkginst = row + pkgs.setdefault(file_path, []).append(pkginst) + logging.debug("self.error_mgr_mock.GetPathsAndPkgnamesByBasename(%s)" ".AndReturn(%s)", repr(basename), pprint.pformat(pkgs)) return pkgs + def GetPathsAndPkgnamesByBasedir(self, basedir, osrel, arch, catrel): sqo_osrel, sqo_arch, sqo_catrel = self.GetSqlobjectTriad( osrel, arch, catrel) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 13 01:34:38 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 12 Aug 2013 23:34:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[21720] csw/mgar/pkg/bzr/trunk Message-ID: Revision: 21720 http://gar.svn.sourceforge.net/gar/?rev=21720&view=rev Author: wahwah Date: 2013-08-12 23:34:38 +0000 (Mon, 12 Aug 2013) Log Message: ----------- bzr/trunk: Update to a new version Modified Paths: -------------- csw/mgar/pkg/bzr/trunk/Makefile csw/mgar/pkg/bzr/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/bzr/trunk/Makefile Modified: csw/mgar/pkg/bzr/trunk/Makefile =================================================================== --- csw/mgar/pkg/bzr/trunk/Makefile 2013-08-12 23:30:43 UTC (rev 21719) +++ csw/mgar/pkg/bzr/trunk/Makefile 2013-08-12 23:34:38 UTC (rev 21720) @@ -1,8 +1,8 @@ -# $Id: Makefile 19383 2012-10-05 10:07:53Z bilko50000 $ +# $Id$ # NAME = bzr -VERSION = 2.5.1 +VERSION = 2.6.0 GARTYPE = v2 CATEGORIES = python @@ -12,15 +12,16 @@ to branch and merge upstream code very easily. endef -MASTER_SITES = http://launchpad.net/bzr/2.5/$(VERSION)/\+download/ +MASTER_SITES = http://launchpad.net/bzr/2.6/$(VERSION)/\+download/ DISTFILES = $(DISTNAME).tar.gz PACKAGES = CSWbzr LICENSE = COPYING.txt -TEST_SCRIPTS = +TEST_SCRIPTS = RUNTIME_DEP_PKGS = CSWpy-crypto RUNTIME_DEP_PKGS += CSWpy-paramiko RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 CHECKPKG_OVERRIDES_CSWbzr += surplus-dependency|CSWpy-crypto CHECKPKG_OVERRIDES_CSWbzr += surplus-dependency|CSWpy-paramiko Property changes on: csw/mgar/pkg/bzr/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: csw/mgar/pkg/bzr/trunk/checksums =================================================================== --- csw/mgar/pkg/bzr/trunk/checksums 2013-08-12 23:30:43 UTC (rev 21719) +++ csw/mgar/pkg/bzr/trunk/checksums 2013-08-12 23:34:38 UTC (rev 21720) @@ -1 +1 @@ -ac5079858364a046071000d5cdccb67b bzr-2.5.1.tar.gz +28c86653d0df10d202c6b842deb0ea35 bzr-2.6.0.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 13 01:41:27 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 12 Aug 2013 23:41:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[21721] csw/mgar/pkg Message-ID: Revision: 21721 http://gar.svn.sourceforge.net/gar/?rev=21721&view=rev Author: wahwah Date: 2013-08-12 23:41:27 +0000 (Mon, 12 Aug 2013) Log Message: ----------- meliae: Move to lang-python Added Paths: ----------- csw/mgar/pkg/lang-python/meliae/ Removed Paths: ------------- csw/mgar/pkg/meliae/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 13 10:38:10 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 13 Aug 2013 08:38:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[21722] csw/mgar/pkg/bzr/trunk/Makefile Message-ID: Revision: 21722 http://gar.svn.sourceforge.net/gar/?rev=21722&view=rev Author: wahwah Date: 2013-08-13 08:38:04 +0000 (Tue, 13 Aug 2013) Log Message: ----------- bzr/trunk: New override paths. Modified Paths: -------------- csw/mgar/pkg/bzr/trunk/Makefile Modified: csw/mgar/pkg/bzr/trunk/Makefile =================================================================== --- csw/mgar/pkg/bzr/trunk/Makefile 2013-08-12 23:41:27 UTC (rev 21721) +++ csw/mgar/pkg/bzr/trunk/Makefile 2013-08-13 08:38:04 UTC (rev 21722) @@ -22,12 +22,14 @@ RUNTIME_DEP_PKGS += CSWpy-paramiko RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 +RUNTIME_DEP_PKGS_CSWbzr += CSWlibgcc-s1 CHECKPKG_OVERRIDES_CSWbzr += surplus-dependency|CSWpy-crypto CHECKPKG_OVERRIDES_CSWbzr += surplus-dependency|CSWpy-paramiko CHECKPKG_OVERRIDES_CSWbzr += pkgname-does-not-start-with-CSWpy- CHECKPKG_OVERRIDES_CSWbzr += catalogname-does-not-start-with-py_ -CHECKPKG_OVERRIDES_CSWbzr += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/bzrlib/transport/http/_urllib2_wrappers.py +CHECKPKG_OVERRIDES_CSWbzr += file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/bzrlib/transport/http/_urllib2_wrappers.py +CHECKPKG_OVERRIDES_CSWbzr += file-with-bad-content|/usr/local|root/opt/csw/lib/python2.6/site-packages/bzrlib/transport/http/_urllib2_wrappers.py include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 13 12:00:22 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 13 Aug 2013 10:00:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[21723] csw/mgar/pkg/lang-python/pyfpconst/trunk/Makefile Message-ID: Revision: 21723 http://gar.svn.sourceforge.net/gar/?rev=21723&view=rev Author: wahwah Date: 2013-08-13 10:00:20 +0000 (Tue, 13 Aug 2013) Log Message: ----------- lang-python/pyfpconst/trunk: Package rename, rebuild for 2.7 Modified Paths: -------------- csw/mgar/pkg/lang-python/pyfpconst/trunk/Makefile Modified: csw/mgar/pkg/lang-python/pyfpconst/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pyfpconst/trunk/Makefile 2013-08-13 08:38:04 UTC (rev 21722) +++ csw/mgar/pkg/lang-python/pyfpconst/trunk/Makefile 2013-08-13 10:00:20 UTC (rev 21723) @@ -4,28 +4,27 @@ NAME = fpconst VERSION = 0.7.2 -PACKAGES = CSWpyfpconst -CATALOGNAME_CSWpyfpconst = py_fpconst +PACKAGES = CSWpy-fpconst CATEGORIES = python GARTYPE = v2 DESCRIPTION = Utilities for handling IEEE 754 floating point special values +SPKG_DESC_CSWpy-fpconst = $(DESCRIPTION) define BLURB This python module implements constants and functions for working with IEEE754 double-precision special values. It provides constants for Not-a-Number (NaN), Positive Infinity (PosInf), and Negative Infinity (NegInf), as well as functions to test for these values. endef -SPKG_SOURCEURL = http://pypi.python.org/pypi/fpconst/ -MASTER_SITES = http://pypi.python.org/packages/source/f/$(NAME)/ -DISTFILES = $(NAME)-$(VERSION).tar.gz -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz TEST_SCRIPTS = ARCHALL_CSWpy-fpconst = 1 LICENSE = README +DISTFILES += changelog.CSW +DISTFILES += $(DISTNAME).tar.gz +OBSOLETED_BY_CSWpy-fpconst = CSWpyfpconst include gar/category.mk post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) post-install-modulated: @ginstall -d $(DOCDEST) - @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @cp $(WORKDIR)/changelog.CSW $(DOCDEST) @$(MAKECOOKIE) 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 Aug 13 13:19:34 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 13 Aug 2013 11:19:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[21724] csw/mgar/pkg/openexr/trunk/files/ 0003_no_posix_memalign.patch Message-ID: Revision: 21724 http://gar.svn.sourceforge.net/gar/?rev=21724&view=rev Author: lblume Date: 2013-08-13 11:19:33 +0000 (Tue, 13 Aug 2013) Log Message: ----------- openexr/trunk: Change macro used in patch Modified Paths: -------------- csw/mgar/pkg/openexr/trunk/files/0003_no_posix_memalign.patch Modified: csw/mgar/pkg/openexr/trunk/files/0003_no_posix_memalign.patch =================================================================== --- csw/mgar/pkg/openexr/trunk/files/0003_no_posix_memalign.patch 2013-08-13 10:00:20 UTC (rev 21723) +++ csw/mgar/pkg/openexr/trunk/files/0003_no_posix_memalign.patch 2013-08-13 11:19:33 UTC (rev 21724) @@ -4,7 +4,7 @@ static void* EXRAllocAligned(size_t size, size_t alignment) { void* ptr = 0; -+#if !defined(sun) ++#if !defined(__sun) posix_memalign(&ptr, alignment, size); return ptr; +#else 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 Aug 13 13:40:07 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 13 Aug 2013 11:40:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[21725] csw/mgar/pkg/ilmbase/trunk/files/ 0002_avoid_cpu_opt_on_sparc.patch Message-ID: Revision: 21725 http://gar.svn.sourceforge.net/gar/?rev=21725&view=rev Author: lblume Date: 2013-08-13 11:40:07 +0000 (Tue, 13 Aug 2013) Log Message: ----------- ilmbase/trunk: Change macro used in patch Modified Paths: -------------- csw/mgar/pkg/ilmbase/trunk/files/0002_avoid_cpu_opt_on_sparc.patch Modified: csw/mgar/pkg/ilmbase/trunk/files/0002_avoid_cpu_opt_on_sparc.patch =================================================================== --- csw/mgar/pkg/ilmbase/trunk/files/0002_avoid_cpu_opt_on_sparc.patch 2013-08-13 11:19:33 UTC (rev 21724) +++ csw/mgar/pkg/ilmbase/trunk/files/0002_avoid_cpu_opt_on_sparc.patch 2013-08-13 11:40:07 UTC (rev 21725) @@ -5,7 +5,7 @@ -#ifdef HAVE_UCONTEXT_H -+#if defined(HAVE_UCONTEXT_H) && !defined (sun) ++#if defined(HAVE_UCONTEXT_H) && !defined (__sun) #include 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 Aug 13 14:51:01 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 13 Aug 2013 12:51:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[21726] csw/mgar/pkg/openexr/trunk/Makefile Message-ID: Revision: 21726 http://gar.svn.sourceforge.net/gar/?rev=21726&view=rev Author: lblume Date: 2013-08-13 12:50:58 +0000 (Tue, 13 Aug 2013) Log Message: ----------- openexr/trunk: Add build dependency Modified Paths: -------------- csw/mgar/pkg/openexr/trunk/Makefile Modified: csw/mgar/pkg/openexr/trunk/Makefile =================================================================== --- csw/mgar/pkg/openexr/trunk/Makefile 2013-08-13 11:40:07 UTC (rev 21725) +++ csw/mgar/pkg/openexr/trunk/Makefile 2013-08-13 12:50:58 UTC (rev 21726) @@ -28,6 +28,8 @@ PATCHFILES += 0003_no_posix_memalign.patch +BUILD_DEP_PKGS += CSWilmbase-dev + PACKAGES += CSWopenexr CATALOGNAME_CSWopenexr = openexr SPKG_DESC_CSWopenexr = $(DESCRIPTION) 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 Aug 13 14:53:02 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 13 Aug 2013 12:53:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[21727] csw/mgar/pkg/ilmbase/trunk/Makefile Message-ID: Revision: 21727 http://gar.svn.sourceforge.net/gar/?rev=21727&view=rev Author: lblume Date: 2013-08-13 12:53:01 +0000 (Tue, 13 Aug 2013) Log Message: ----------- ilmbase/trunk: Clean up of the file Modified Paths: -------------- csw/mgar/pkg/ilmbase/trunk/Makefile Modified: csw/mgar/pkg/ilmbase/trunk/Makefile =================================================================== --- csw/mgar/pkg/ilmbase/trunk/Makefile 2013-08-13 12:50:58 UTC (rev 21726) +++ csw/mgar/pkg/ilmbase/trunk/Makefile 2013-08-13 12:53:01 UTC (rev 21727) @@ -39,7 +39,6 @@ SPKG_DESC_CSWlibhalf10 += $(DESCRIPTION), libHalf.so.10 RUNTIME_DEP_PKGS_CSWlibhalf10 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibhalf10 += CSWlibstdc++6 -#CHECKPKG_OVERRIDES_CSWlibhalf10 += no-direct-binding PACKAGES += CSWlibiex2-0-10 CATALOGNAME_CSWlibiex2-0-10 = libiex2_0_10 @@ -48,7 +47,6 @@ SPKG_DESC_CSWlibiex2-0-10 += $(DESCRIPTION), libIex-2_0.so.10 RUNTIME_DEP_PKGS_CSWlibiex2-0-10 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibiex2-0-10 += CSWlibstdc++6 -#CHECKPKG_OVERRIDES_CSWlibiex2-0-10 += no-direct-binding PACKAGES += CSWlibiexmath2-0-10 CATALOGNAME_CSWlibiexmath2-0-10 = libiexmath2_0_10 @@ -57,7 +55,6 @@ SPKG_DESC_CSWlibiexmath2-0-10 += $(DESCRIPTION), libIexMath-2_0.so.10 RUNTIME_DEP_PKGS_CSWlibiexmath2-0-10 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibiexmath2-0-10 += CSWlibstdc++6 -#CHECKPKG_OVERRIDES_CSWlibiexmath2-0-10 += no-direct-binding PACKAGES += CSWlibilmthread2-0-10 CATALOGNAME_CSWlibilmthread2-0-10 = libilmthread2_0_10 @@ -66,7 +63,6 @@ SPKG_DESC_CSWlibilmthread2-0-10 += $(DESCRIPTION), libIlmThread-2_0.so.10 RUNTIME_DEP_PKGS_CSWlibilmthread2-0-10 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibilmthread2-0-10 += CSWlibstdc++6 -#CHECKPKG_OVERRIDES_CSWlibilmthread2-0-10 += no-direct-binding PACKAGES += CSWlibimath2-0-10 CATALOGNAME_CSWlibimath2-0-10 = libimath2_0_10 @@ -75,7 +71,6 @@ SPKG_DESC_CSWlibimath2-0-10 += $(DESCRIPTION), libImath-2_0.so.10 RUNTIME_DEP_PKGS_CSWlibimath2-0-10 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibimath2-0-10 += CSWlibstdc++6 -#CHECKPKG_OVERRIDES_CSWlibimath2-0-10 += no-direct-binding PACKAGES += CSWilmbase-dev SPKG_DESC_CSWilmbase-dev += Development files for ILM base libraries 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 Aug 13 15:07:42 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 13 Aug 2013 13:07:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[21728] csw/mgar/pkg/redis/trunk Message-ID: Revision: 21728 http://gar.svn.sourceforge.net/gar/?rev=21728&view=rev Author: dmichelsen Date: 2013-08-13 13:07:42 +0000 (Tue, 13 Aug 2013) Log Message: ----------- redis/trunk: Update to 2.6.14 Modified Paths: -------------- csw/mgar/pkg/redis/trunk/Makefile csw/mgar/pkg/redis/trunk/checksums Modified: csw/mgar/pkg/redis/trunk/Makefile =================================================================== --- csw/mgar/pkg/redis/trunk/Makefile 2013-08-13 12:53:01 UTC (rev 21727) +++ csw/mgar/pkg/redis/trunk/Makefile 2013-08-13 13:07:42 UTC (rev 21728) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = redis -VERSION = 2.6.12 +VERSION = 2.6.14 DESCRIPTION = An advanced key-value store @@ -12,8 +12,8 @@ PACKAGES += CSWredis SPKG_DESC_CSWredis = An advanced key-value store -BUILD64 = 1 -ISAEXEC = 1 +#BUILD64 = 1 +#ISAEXEC = 1 GARCOMPILER = GNU @@ -29,6 +29,11 @@ TEST_TARGET = test +# There are three tests failing which are harmless because strings are not compared in the actual program: +# Expected 'Infinity' to be equal to 'inf' +# https://groups.google.com/forum/#!msg/redis-db/gNtfZ3J-FAU/Ul-P_huFcdMJ +SKIPTEST ?= 1 + INSTALL_OVERRIDE_VARS += PREFIX INSTALL_OVERRIDE_VAR_PREFIX = $(DESTDIR)$(prefix) Modified: csw/mgar/pkg/redis/trunk/checksums =================================================================== --- csw/mgar/pkg/redis/trunk/checksums 2013-08-13 12:53:01 UTC (rev 21727) +++ csw/mgar/pkg/redis/trunk/checksums 2013-08-13 13:07:42 UTC (rev 21728) @@ -1 +1 @@ -d2c87926a650e22c2491c5e4c260849c redis-2.6.12.tar.gz +02e0c06e953413017ff64862953e2756 redis-2.6.14.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 Aug 13 16:09:51 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 13 Aug 2013 14:09:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[21729] csw/mgar/pkg/ImageMagick/trunk/Makefile Message-ID: Revision: 21729 http://gar.svn.sourceforge.net/gar/?rev=21729&view=rev Author: lblume Date: 2013-08-13 14:09:51 +0000 (Tue, 13 Aug 2013) Log Message: ----------- ImageMagick/trunk: Update deps Modified Paths: -------------- csw/mgar/pkg/ImageMagick/trunk/Makefile Modified: csw/mgar/pkg/ImageMagick/trunk/Makefile =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/Makefile 2013-08-13 13:07:42 UTC (rev 21728) +++ csw/mgar/pkg/ImageMagick/trunk/Makefile 2013-08-13 14:09:51 UTC (rev 21729) @@ -30,11 +30,10 @@ BUILD_DEP_PKGS += CSWlibcairo-dev BUILD_DEP_PKGS += CSWlibwmf-dev BUILD_DEP_PKGS += CSWliblzma-dev -BUILD_DEP_PKGS += CSWopenexrdevel +BUILD_DEP_PKGS += CSWopenexr-dev BUILD_DEP_PKGS += CSWlibwebp-dev BUILD_DEP_PKGS += CSWlibfpx-dev BUILD_DEP_PKGS += CSWlibdjvulibre-dev -BUILD_DEP_PKGS += CSWgraphvizdevel BUILD_DEP_PKGS += CSWilmbase-dev BUILD_DEP_PKGS += CSWliblqr-dev BUILD_DEP_PKGS += CSWlibjasper-dev @@ -101,7 +100,7 @@ RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibtiff5 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibz1 -RUNTIME_DEP_PKGS_CSWimagemagick += CSWopenexrrt +RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibilmimf-imf2-0-20 RUNTIME_DEP_PKGS_CSWimagemagick += CSWpango RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibcairo2 RUNTIME_DEP_PKGS_CSWimagemagick += CSWliblzma5 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 13 20:24:53 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 13 Aug 2013 18:24:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[21730] csw/mgar/pkg/bzr/trunk/Makefile Message-ID: Revision: 21730 http://gar.svn.sourceforge.net/gar/?rev=21730&view=rev Author: wahwah Date: 2013-08-13 18:24:53 +0000 (Tue, 13 Aug 2013) Log Message: ----------- bzr/trunk: Updated dependencies Modified Paths: -------------- csw/mgar/pkg/bzr/trunk/Makefile Modified: csw/mgar/pkg/bzr/trunk/Makefile =================================================================== --- csw/mgar/pkg/bzr/trunk/Makefile 2013-08-13 14:09:51 UTC (rev 21729) +++ csw/mgar/pkg/bzr/trunk/Makefile 2013-08-13 18:24:53 UTC (rev 21730) @@ -18,10 +18,10 @@ LICENSE = COPYING.txt TEST_SCRIPTS = -RUNTIME_DEP_PKGS = CSWpy-crypto -RUNTIME_DEP_PKGS += CSWpy-paramiko -RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 -RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 +RUNTIME_DEP_PKGS_CSWbzr = CSWpy-crypto +RUNTIME_DEP_PKGS_CSWbzr += CSWpy-paramiko +RUNTIME_DEP_PKGS_CSWbzr += CSWlibpython2-7-1-0 +RUNTIME_DEP_PKGS_CSWbzr += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWbzr += CSWlibgcc-s1 CHECKPKG_OVERRIDES_CSWbzr += surplus-dependency|CSWpy-crypto This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Wed Aug 14 10:19:44 2013 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Wed, 14 Aug 2013 08:19:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[21731] csw/mgar/pkg/nsd/trunk Message-ID: Revision: 21731 http://gar.svn.sourceforge.net/gar/?rev=21731&view=rev Author: idogan23 Date: 2013-08-14 08:19:41 +0000 (Wed, 14 Aug 2013) Log Message: ----------- nsd: Bump version to NSD 3.2.16 Modified Paths: -------------- csw/mgar/pkg/nsd/trunk/Makefile csw/mgar/pkg/nsd/trunk/checksums Modified: csw/mgar/pkg/nsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsd/trunk/Makefile 2013-08-13 18:24:53 UTC (rev 21730) +++ csw/mgar/pkg/nsd/trunk/Makefile 2013-08-14 08:19:41 UTC (rev 21731) @@ -1,5 +1,5 @@ NAME = nsd -VERSION = 3.2.15 +VERSION = 3.2.16 GARTYPE = v2 DESCRIPTION = An authoritative only non-recursive name server Modified: csw/mgar/pkg/nsd/trunk/checksums =================================================================== --- csw/mgar/pkg/nsd/trunk/checksums 2013-08-13 18:24:53 UTC (rev 21730) +++ csw/mgar/pkg/nsd/trunk/checksums 2013-08-14 08:19:41 UTC (rev 21731) @@ -1 +1 @@ -b5fdbf78bd3f4133d1295af21a61f7c8 nsd-3.2.15.tar.gz +c16a845884851d26c85d5117f11e5f08 nsd-3.2.16.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 Aug 14 12:12:56 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 14 Aug 2013 10:12:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[21732] csw/mgar/pkg/vim/trunk Message-ID: Revision: 21732 http://gar.svn.sourceforge.net/gar/?rev=21732&view=rev Author: lblume Date: 2013-08-14 10:12:52 +0000 (Wed, 14 Aug 2013) Log Message: ----------- vim/trunk: Bump to version 7.4; change compiler on S10 Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile csw/mgar/pkg/vim/trunk/checksums Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2013-08-14 08:19:41 UTC (rev 21731) +++ csw/mgar/pkg/vim/trunk/Makefile 2013-08-14 10:12:52 UTC (rev 21732) @@ -1,6 +1,6 @@ NAME = vim -DISTVERSION = 7.3 -PATCHREV = 905 +DISTVERSION = 7.4 +PATCHREV = 0 VERSION = $(DISTVERSION).$(PATCHREV) GARTYPE = v2 SPKG_SOURCEURL = http://www.vim.org/download.php @@ -16,6 +16,10 @@ # Let's build a CLI vim for those stuck with S9 PACKAGING_PLATFORMS += solaris9-sparc solaris9-i386 +ifneq ($(shell /usr/bin/uname -r),5.9) + GARCOMPILER = SOS12U3 +endif + PACKAGES = CSWvim CATALOGNAME_CSWvim = vim SPKG_DESC_CSWvim = Vi IMproved without GUI @@ -57,9 +61,6 @@ PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) -PATCHFILES += 0003-solaris-sleep-does-not-do-decimals.patch -PATCHFILES += 0004-solaris9-msgfmt-hates-empty-files.patch - PATCHDIRLEVEL = 0 DISTNAME = $(NAME)$(subst .,,$(DISTVERSION)) Modified: csw/mgar/pkg/vim/trunk/checksums =================================================================== --- csw/mgar/pkg/vim/trunk/checksums 2013-08-14 08:19:41 UTC (rev 21731) +++ csw/mgar/pkg/vim/trunk/checksums 2013-08-14 10:12:52 UTC (rev 21732) @@ -1,906 +1 @@ -aa5582d8289b43255f45d4bb6f62e140 7.3.001 -2949cbdfe86f533c487fd144c5935c7a 7.3.002 -9059db41cf3a468935745242cb9c0514 7.3.003 -9aaa4490d2fbf9a1e780a151fb41f279 7.3.004 -bf5b5fad8c4de23449fa7c7c01969369 7.3.005 -f53d95dfb1eee5f5f769594174d0e9d4 7.3.006 -a7a4c56110662bc3ba6fbb2fd645d94f 7.3.007 -be756a231afe754d004b6c8a9d12bb50 7.3.008 -f4ed2feff44e2c1898fd5e60f9f97b0d 7.3.009 -4fffed01d3683b0b8b23df600a0bada2 7.3.010 -4ee8f06dce300c0be029bf00b03ef093 7.3.011 -89faf7d5eef1d1d50b657fe34ee7c90b 7.3.012 -6a029d61f7d51c1bea55330732676319 7.3.013 -d0109c0c413c405fdb827ec20f3903d8 7.3.014 -4db0a869dbe00c360541ad2c1ca87a2d 7.3.015 -e0c634532a865d7ed47942080e371b3e 7.3.016 -f52aa5bc3df02c3bb4c75849b2b5f431 7.3.017 -02270ecbc1dc2f57de80441ac7cdd0f0 7.3.018 -5c1be1a0a107261e0a716c877c82fc97 7.3.019 -ef09917435a7cab9382abe3708cf5152 7.3.020 -53c90651baf1b4b28c99947de58deb91 7.3.021 -c4cb1bf3fa0a45d9cad997cd02fa9439 7.3.022 -1e34e216b0e419096f796d3511ce88da 7.3.023 -5c2ff27d8ce8d1aeb42ff16ca1cb89c2 7.3.024 -69b3e00a17230da16d3be4b96f125196 7.3.025 -687a80a82d05e8e91e9ee659b3e0dd67 7.3.026 -1994a0d1e52111b9fa1b999745da93b8 7.3.027 -2438a52f25cf167bbf5711fc8c7323d7 7.3.028 -302ca6aa621c215736f3db069f8c2285 7.3.029 -ceb0e12297907b13dd39fafffa731c62 7.3.030 -acb42f7f4545a63d35396360dc2799ff 7.3.031 -56c9d1681bfc9fe5e76c281b905f0ad8 7.3.032 -4a399b6f1bcde6d991088118f5a58222 7.3.033 -40580589a13a36cc72a600200b93b8d2 7.3.034 -8f7a617b0cf8fea46e4b1557bc286fda 7.3.035 -3ac58b7fe8347ad87f3628bfb4970f1b 7.3.036 -d83c7635e8b65db98a377f3cc7b72ce0 7.3.037 -a310c68726540ac1a0759ef12778bed1 7.3.038 -6b7243d85b86e03b4a782e4bf6d7646e 7.3.039 -8aa33a527433f1907b72ac7c514d455d 7.3.040 -979abe1512bc48dbaed028a23cb2f6cc 7.3.041 -984ce81978ef2b12b3a09986d37e4719 7.3.042 -27b2418128b4322c3cb92b13d577ad6c 7.3.043 -c29e637b242682dc6df544a0bc89abc4 7.3.044 -bd6ac17eecf226a2d6a31e4fb9069ded 7.3.045 -d97f518c548de06b11b5682f2ca4d9a9 7.3.046 -ae37e72299f02ea1b7f2bb59932ed306 7.3.047 -39aaaf13dfef317febb2442626f262f1 7.3.048 -6469fb212e95ad83c21aaaaf8aee0f3a 7.3.049 -e40dc723ef91adee9854faceaba1e201 7.3.050 -5611eda78907716863ebd6ebd19a000f 7.3.051 -01011da656094510c1cdabbc80c129b9 7.3.052 -faaf035020dcf22b57fa76c998e4553b 7.3.053 -90bd11788f022dc1107f93e702734a2a 7.3.054 -5b4fe73d1c47ab36a6b0a8f5ddd2fe65 7.3.055 -b53b7452e5b92bb1b91e9dd97e52dfcd 7.3.056 -bce5e42b7d2b7a91c332e39ed1f0eec8 7.3.057 -1c6054466398f4612a81289de764ef5c 7.3.058 -e2cf5697e8708390e106553de68ebb2b 7.3.059 -16da4369ed89f0305cf2c3ed1bf338fc 7.3.060 -cbed85cdfe0ad4a1b7b43efc64b1531c 7.3.061 -77f08258dbf30e12914475802eeb9b3d 7.3.062 -97c878554fec3d4f9caf934c0a0c227d 7.3.063 -5f74fee465073a3eb48565300636d9db 7.3.064 -a20ea56117d918b43f5109c9c06787ed 7.3.065 -7c51cfbd55673906035df7b274b247c4 7.3.066 -45625adbc8757b46ba9393dc136cc2e1 7.3.067 -49b340dc261ed455c97d955517264a89 7.3.068 -b423664733d7fd9d7de052dad8154643 7.3.069 -b9ef636a41df5500f8437d38ab3177e2 7.3.070 -1afcb15f38d1e4926918dbbe52356382 7.3.071 -132f122c3b8ac49c1ad56f54c8994e3a 7.3.072 -4a387415ce192506bcb7353cd8dda3c0 7.3.073 -e2b2af94486554c6818693fbf1e3c34e 7.3.074 -91acb2d1e70f6b7bff5e02460d4c3e62 7.3.075 -2627b860bed5c08cead6e48986577fed 7.3.076 -2a8c6197b193a16cb273606d8afcb6b5 7.3.077 -660b3e99b1433a4e992e087e66bc1567 7.3.078 -f69b91c3c55ef81df257178e0af1ca73 7.3.079 -bbe3b3aa56bde525cd4028e807014b33 7.3.080 -d4ce2f5eab7a74f8a51a352b05fde53f 7.3.081 -75b69fb091a12c588992dd282841bde0 7.3.082 -d6bc3caf366cc6735e35bb624701c52b 7.3.083 -c1056e5eac01e94b841ee0f6698bd996 7.3.084 -008cab55300e4aca60b10c5da48fa64b 7.3.085 -d3ce3330380068fc0bb71e1e46715cf8 7.3.086 -76ad849ed21f0f7ea55b5e45bf0ebb8e 7.3.087 -5fe24e8201c4a6bfb04cc1eba830c7d1 7.3.088 -e11e017a6ec88695ed4e68823c8519c8 7.3.089 -85b27ad24ccf7a0a35659104ad5d50a0 7.3.090 -30c533bfa3ce25d6d4ae69537ac6dc5c 7.3.091 -9583f16a6bc74a69848278648692dd0b 7.3.092 -dc1df531af4c8b457291ec3fe55df57d 7.3.093 -4f2fa0bc9ddb599ad5f202474d1baaa9 7.3.094 -527d8531d7d347784506508114eb436c 7.3.095 -07cc669cf0c531c4b9f6410350baad64 7.3.096 -ef918a856c94f9e1ac3732e967e99421 7.3.097 -f5d870f443d75a9849477e937774681b 7.3.098 -60fde4bc61ce362397d430b79856355b 7.3.099 -eb3795dd02ef74e825f0a41b3ae4d6d5 7.3.100 -44b023e4248395d2ccaaac9fda15407b 7.3.101 -f1a8bcdb44fee91a060b5ef4ea8721dc 7.3.102 -fca2fd799b4b76010b2df17e6b0e0c14 7.3.103 -bf17912c76b1bc930af41836899483ae 7.3.104 -2624889029aa8d780eea22c249d53691 7.3.105 -8c94d914a359a1aa81b41efd00f58486 7.3.106 -f91ca9cbbc54d8b9fca3c1884ddcce7a 7.3.107 -5963094fc8a07e5730f7557a9d8d1cf4 7.3.108 -bd660ce14300a3110ea7638c1e11eabd 7.3.109 -ee0dc9b0b38308aa235f0b2b3e5dcea5 7.3.110 -c91b1fb95f25fa9e0915b9e8cf613a49 7.3.111 -67f989ce99ce53c7ab6df5478ca3a90c 7.3.112 -4da7b00c8009a2ebcef6b9dac625bd5f 7.3.113 -5b4db3de0ecef5ca677cba0aedcdff89 7.3.114 -3aa1850a33864d0476104c12be96047d 7.3.115 -31c69a15462f16a6f7601a50a3eaf89b 7.3.116 -9c4c855111dc6acda7c05488da75c7b4 7.3.117 -0ef3f26f6ebd0ae418dae472eb6afcc1 7.3.118 -0010f602a56167a874739c1101da5255 7.3.119 -6cd06c54fe40ab1082fafa461174ab23 7.3.120 -7d4f0af28d817baea5e6c43bde1e1df2 7.3.121 -363a24bec321be90193b60b10e29587b 7.3.122 -7f31de4c9fffd8e504685eef84666dae 7.3.123 -642c96e6a15b67f38022131b5e46132a 7.3.124 -5fc1a25eaae81f91557672a2426b74e1 7.3.125 -6ff55983c952781418172f93374db783 7.3.126 -84ef6940f97c7c946d136dad4ac81d3b 7.3.127 -d56e9032d55d99d19ddb9dfd8f52ccf2 7.3.128 -4a7699f7db4032b1d67e52b3d384b647 7.3.129 -f1a33fe74ead0aaf7a440a7432480d6f 7.3.130 -bbf7bb68b777b831029082e0e865dc2d 7.3.131 -3f761bf7b71b038dc2f775781e6847e5 7.3.132 -7cc3bce20547604b0521be8383c9a6d0 7.3.133 -a34e3da262050d97cb9db46acdd4490b 7.3.134 -b75499f0b035962d7f19de1e2b866f35 7.3.135 -a3631062779f49ed4ab4bc7f87fd307c 7.3.136 -53a736c4dbf298fa465f01d06c15de0b 7.3.137 -a51e6c61c24303a90941571b6bd7753b 7.3.138 -8da651b02794bc7a34286e455e916a2f 7.3.139 -6312930f6a176305bd4f9838700605e6 7.3.140 -2c9665b8da67d1712db9d300b87fc07c 7.3.141 -613a153f1b0901b76f0026a51f19530e 7.3.142 -c3132b4cddda5fa3c11c048c5297e872 7.3.143 -cc8986b4f694b76cb348375c158034d6 7.3.144 -c919c2ea5b3e5b397a53eb8fcc4accde 7.3.145 -d3790014ac6c74d4691e64a839ac0d3a 7.3.146 -5816612acbb7e9862e71defb7e596243 7.3.147 -7610c456812aa93bacaedb8fb90a638b 7.3.148 -7f689222db2fbbc2a1c616b4e2eb6f50 7.3.149 -4ccdacef73da3c14360832393fd18956 7.3.150 -0322e8b82527503b08911c3436f4e5b7 7.3.151 -60e6111797abb558f9869b72892de126 7.3.152 -e791726fd04b11b9293f472fe9e3cb51 7.3.153 -1def37c933f7b1a0aaeb6bb8545e91de 7.3.154 -b1c84972297e04dead1c06c7976ebd69 7.3.155 -05a5584d72fa02708e12de57c1dd230d 7.3.156 -bcbe4f926d7c4ce7c33f2ee163f8e481 7.3.157 -5457a5d2d8e192662dafb4441d728b1a 7.3.158 -8a1b1e2b134e1ffe8058a1007b3f0244 7.3.159 -f8ad1c839a70db0fd67d9a91f2c5adfe 7.3.160 -b8e6b94818cdd5d824bb5bdd71845dcf 7.3.161 -640e4dab93c97e3fc591fa139f3626a0 7.3.162 -b718f9c84f0ef31746837aeb76584b9d 7.3.163 -3658977a1d6601e084001f4ca14990c2 7.3.164 -2a351662b4eb7546a13a697ce6c99e2c 7.3.165 -49be67f5a924f41efd02092d5a363ea2 7.3.166 -763d467cb7f52e65fa04abd47391c46f 7.3.167 -b03500932a593d8f8b503b7f4e597d27 7.3.168 -2bdead87e63f14c1ad94baa4ab83ea31 7.3.169 -55be8ac756a32da430a27684f9b8e1a8 7.3.170 -36cc61d0b91ef0c3a580e244e4062b1c 7.3.171 -38e90f8e7c56ea752ddeef1310854679 7.3.172 -9265e7ca265d58278475cdb4c981b8dd 7.3.173 -3e594ed292b1f2f19a5c9f4906c1479a 7.3.174 -acb7321db8f740b6671765185603a718 7.3.175 -6712e5eebfc7132b4d23044854c29cde 7.3.176 -687088eda45ccf1fdd83e0ce18cdbeb9 7.3.177 -44e37b259178bbea8de1aad8744b639c 7.3.178 -ef97eecd1643ae1375c2141b42ff2a8f 7.3.179 -85efa44de886e0e84914b13f7e356cd3 7.3.180 -a41871ead65ba67d0e91f46e4ed31d74 7.3.181 -a496deb8e705a15931566cc54de95b0e 7.3.182 -a5a93687afc2acb93caed156c5990507 7.3.183 -79db5edf359097848c50baa8e9f1de66 7.3.184 -5a466b6c01d84c6f3b58b409ec77147f 7.3.185 -2073073b84c308648bcc222a6e0e396b 7.3.186 -0aebb3a0fcf78937c8f4930de20fdb09 7.3.187 -665e541c24f5571bb07354a4a6441a28 7.3.188 -540131415452ba4cfa01332ab60571e4 7.3.189 -55d0ac5b715fabce51a05bf8380f6c01 7.3.190 -895a121a97504929ebd5a7a8eb67a2a3 7.3.191 -3b957b9de63a93a30e4c1ee7e9def7c9 7.3.192 -b37da657ae0b51f8181eb8a31d6cc4e8 7.3.193 -c911d5f14e34c8d0c1d3abea73bc830d 7.3.194 -dc09888cdc86f980789cd22889df0bcd 7.3.195 -fb396c9c2e57daf55fdba63635208985 7.3.196 -448eca99d96f5f5c4ddbe05e66ebf812 7.3.197 -d977fa831208ee16503b87a3a29673fe 7.3.198 -39028c76f0b15f9d014b050fb222d24a 7.3.199 -2dd2f0cd5b9af8f127fa02b3d838dd2f 7.3.200 -c1cd1bdaa61c6ab76a39dc59926781ef 7.3.201 -88de82991d04a741c1038f8ce061c5c7 7.3.202 -0d460c9ad9cfac6074960000ff98be7e 7.3.203 -07443373d2221a375988d58e25935599 7.3.204 -857f19149697b27088447bbac1dac8a2 7.3.205 -f6c7f47221c0459c7742a82163b875ec 7.3.206 -8345c7411daf0d5874569aecc00116d6 7.3.207 -305b1a2aca53880ae175bcf5c8b8677c 7.3.208 -318086a8e28f1ef629c447410bcfd5bb 7.3.209 -fc829046b2c27d7255bd41ee53c6bdf3 7.3.210 -3e6c6aeadc3e4442426db92774030fcc 7.3.211 -3fb34281705b6e665b9ec2dbe4529170 7.3.212 -1c2fb1aec7b85b941d4459e65dbf6be2 7.3.213 -d4dc20af8f15778ddea5669ee758d8c1 7.3.214 -ab31988223b9ec68c551ef2e493049d6 7.3.215 -8bfadd46248bbfbe7979d1d6161befc2 7.3.216 -d42c9de414acf351e37f19af168905bc 7.3.217 -6d01c2640c6c27c4b52462d6fb932598 7.3.218 -b723228570479525596d8ecb801d9c76 7.3.219 -36dd4e49c8d0a7407cd3447ce11c0aff 7.3.220 -11791e6072d3237424c0f383835a4b7f 7.3.221 -4a084d6e010fc5c31a89478a918ebe53 7.3.222 -fb57886a2e3e9791b87d68fbc9eef52f 7.3.223 -0b9747a5a0465d7fe543f8b61ffc9b06 7.3.224 -3a36d002f35d54e7e71da0cde224534b 7.3.225 -caa99b2aba3d2f64d4da35c28d4e6ef8 7.3.226 -4e0baffb29e3e38487c4206c78ea515c 7.3.227 -511c6f3ee0703d2b1380c72c7d296e6f 7.3.228 -14997e70581cfb6ff6f2388789171e33 7.3.229 -17259f324289a8e398a3acfba915b979 7.3.230 -97d5c45f8962fc301ca53ce8c5ecc7eb 7.3.231 -4601b72331313fbd68789673055020a8 7.3.232 -d00dd333810b99a9c34ea9fe44c6dec7 7.3.233 -e93dd1dcf4659ad7f7a31d186842180d 7.3.234 -78e79d2172140d6cb26012859d2b765e 7.3.235 -f48a731e37bb068a11615fc84b13d9b4 7.3.236 -ae4c4ba1a880872d735e33d721847f82 7.3.237 -d7b91bce232cc3592aee0b999f2260ce 7.3.238 -45c528a5991e5269d0f99f1bd60a1108 7.3.239 -e73f15b7f1a7cf257a126a797bc1024e 7.3.240 -f32f5f0c4c437f7f661bfe1bbd03924f 7.3.241 -4071af06946723d29a502a0a005ad79a 7.3.242 -93d093ed4a247ebfd9d485e1949b73c6 7.3.243 -0eaf4bd3d26ed9760901e9dbefc0a631 7.3.244 -7906c8701fcfc608c2845937c58d4ebe 7.3.245 -514a57d874e75020342622e3031ff1f6 7.3.246 -0cc613cf226c3eb2b2c6992f6abf8fa6 7.3.247 -36aa885fdfb0ae812b3f3371ee178b7d 7.3.248 -2f1a1c835e46e409ca62a906b014bead 7.3.249 -e3c8db05d35f495ab87f2bd7d6f0798c 7.3.250 -8fad46eda9f29a79b852f9761951b528 7.3.251 -54e0f0c2d867cc3e9dc0d619ceab2fa0 7.3.252 -1dba332eda89257de3b4ab6bb7df2ffb 7.3.253 -42135c50e9b0de895fea643b9fbf31ff 7.3.254 -90e0151fc8c6516315a0aae7e659e493 7.3.255 -ff7faa0e5f65cd23c72658a6769be01d 7.3.256 -eefe321ea81f64d5900b0c22807d1548 7.3.257 -e491344e65975e1bd57b2e2e98c3f37c 7.3.258 -408ef7a75b952a1eff9748ee84e3efd7 7.3.259 -2b978f84b6938e6987c8bfa7381f8149 7.3.260 -5b1be0859bacd79aa4a5825797188891 7.3.261 -b6c7e75eff8c8be855f9edd6de76d2b9 7.3.262 -cdcd0dcc3d01f637631d1a0978ebbd16 7.3.263 -cec9db6615a9151e4c8198dcee8b24a7 7.3.264 -93a2c2ac7d15bec2bf9d6534dc502831 7.3.265 -f1898db88e6e05f22fa6aed6651d34ab 7.3.266 -cc87a858ec150f68f9ce8b232940251a 7.3.267 -2828b282286cadc7d87f0d5de269ae87 7.3.268 -c932150eb67cfb4e1c2f4acf46c6b26f 7.3.269 -b9f9d97811f71c5c6adc9500291e8461 7.3.270 -65b0d9a7038a8d9bb0e775f7119339fe 7.3.271 -8002a6bfd7a00b0172d7a418fdf224ed 7.3.272 -280cd76f9ab8ddf770de28676da14cb6 7.3.273 -d2adf98337891833e14fffd57a817620 7.3.274 -44a14ef64d626da28dbc5a1185ed388c 7.3.275 -691dced900aa8bfdd383fa897cc1acbf 7.3.276 -733dc08c161153f78a2c1de92354f804 7.3.277 -674a40b783070104e8e345a56ff1c699 7.3.278 -b91fba133b43d359c7ee2efb9a768b0d 7.3.279 -355e64bf598184b8ca30f8c686d644cc 7.3.280 -662b3d7aa861ec265b36e96410e24dbb 7.3.281 -2e67fffc2588006857c608a2255ddbdd 7.3.282 -21db9145e815b8ac9850d1952da93252 7.3.283 -033eba7e15012d3bcc7ba59c0bae6ede 7.3.284 -d80855715545d181da083a6fcad20391 7.3.285 -aadb1134e05f13d3ba26aa7282068a02 7.3.286 -049b56c1e98fe411d1f2725695966c09 7.3.287 -2cf39d26f643528c7bf9598a5259601e 7.3.288 -89fa11603ddc5960cccecc9e430b61e0 7.3.289 -aa1c97edcd24877fb7fae3c366c05577 7.3.290 -b52a5034ac4817a05c42541b384161eb 7.3.291 -b364c4dab831803d9854d0161aad6a7a 7.3.292 -f612a0927d40cea71778b484eeb7f111 7.3.293 -25c1d60c4ef4f2e3b35fb56a626676ab 7.3.294 -6c94c99c2fbc246f12785b59e341b747 7.3.295 -5ac3dce88881544eb7b465938dbcb94d 7.3.296 -31782093d3af5044ad2db1373a743fdb 7.3.297 -fd444f0a6aec3a5ddf1999f8fa6986e4 7.3.298 -4ee221a91a9926acaac5f89567e7d265 7.3.299 -4244a43b9c668a9bf29dfe04ea35aa70 7.3.300 -ec895a0a0b76b876c2c82492b203d471 7.3.301 -379ec4b8a77d69e54dc4a68944aac3bd 7.3.302 -78e5137c1ae5471b488d75c942d11cc6 7.3.303 -5a3a569d90d20ba8123cc9639d3e7305 7.3.304 -fd76f9e109875f3d4ae9ab152e49ab33 7.3.305 -cd08fe30975fe10f335815362f7f16ed 7.3.306 -6c3d8d62e49f03b5ba253fbd4f3619c7 7.3.307 -8aa8df0fad4c62dfdc59bc109d80e821 7.3.308 -267da2c42e8fd7958ca923a28f95de21 7.3.309 -464e1df22d56232a5e3c83641d2d5386 7.3.310 -39dbb4123a171f0b76f2f9ff24b56e4c 7.3.311 -f312b59b21aa02ce81efeefa949a8508 7.3.312 -a3b75ee13b25ad9189c480fdab885d96 7.3.313 -48977a05c541f1a731ec2ac4e4fb33cd 7.3.314 -192672f46b60d35b71cd3ce94223ea4a 7.3.315 -d8ded5524850fedee9cab77d850f9c03 7.3.316 -7375af7c6204c64705c6fb39734d65e8 7.3.317 -4d710806ecd74804b893c8cdb17e5227 7.3.318 -acbfc765ebe3c47d46e787a7a54c53cd 7.3.319 -af858d90cfeb2d720202203ada0d2693 7.3.320 -3bc5ad99e7ca30cb8450025677755603 7.3.321 -2c79f0a412531bf08c1a2b36a5047d0f 7.3.322 -d246f24b49c15257fe5b305a98ab427f 7.3.323 -c5fd07c7ffa879cf76da06130688f2e2 7.3.324 -7e3098ed5d6228eb8bc823d09409163d 7.3.325 -1b9abd209e33e4fee02892bcfaad29a1 7.3.326 -cd25f51cc118dfde45a873af2d1dde95 7.3.327 -ed256a9ad43fc919ec816c8f79f28f5c 7.3.328 -2b067cc0b8f36cade83d6bf28f2f28f2 7.3.329 -b4c9c95eee16d19d2b9713bc1b60f696 7.3.330 -bb075b263860ed1b80b5bcbe5a57d423 7.3.331 -d7832ef5a54508dacc105e287874a00b 7.3.332 -accb06d73f1463893da2afb501f466fa 7.3.333 -bdf932190d677b98362dae52cf6eadb1 7.3.334 -26766ba9ea0ab84233e2b29332f796fa 7.3.335 -2ddc5da7409fdd5b3c8d10afef6b1ca9 7.3.336 -24691aeaec5277d0afb4106b40ae267e 7.3.337 -54ff1e2fea2a16965959a9f42b8b5fc9 7.3.338 -620d15666807ab219620954ea6fdca1f 7.3.339 -c3ab5f6227530ab9ca6af494cbf77fea 7.3.340 -8326d6b339724dfe5fc99fadc7c57bf0 7.3.341 -362087e621fe59f13f2ef1ef1cb74e50 7.3.342 -869bd67eb3f1e62fd9f5097fea9472d4 7.3.343 -e3d9a945f29f7ceba3e0330e2e510344 7.3.344 -22ed2d9938820b2c99129d8724849304 7.3.345 -ba18fbdc38d774c05ac02bb413f0bb3d 7.3.346 -07e51c946abcdf904cf6856548fa7145 7.3.347 -3b75c5e11e5ef2a62fd0b02e35b71ad8 7.3.348 -fd58c8ce31e087d9a81301addf816767 7.3.349 -8c8025ab73b595e112f8d32d9ac5ef3d 7.3.350 -4d1587f7394e609c5cfb3d3e506b4abe 7.3.351 -fb4251e16f07b76c2bc51b62aaa58735 7.3.352 -f7c88e37014346eeeaeb952b15100b2e 7.3.353 -5208450dac9cd0de8778a236fa72eb08 7.3.354 -d3f5578199874f3234395c33a1eb5461 7.3.355 -6050fae12e337fea78d14e54b4ba3370 7.3.356 -67c7d610d9d58f4c2105eb05dc1522cb 7.3.357 -455fbdbc0a1fefbf94614c829b544511 7.3.358 -1de4c717ec20d7ecded0f84c57cae132 7.3.359 -350dec5064be57bf8928d667a4d40fad 7.3.360 -6f13d2d8f231de47e7ba61072ccea891 7.3.361 -a471ecbbf370fc02b66fc1584c471691 7.3.362 -33fd36b5070c8b35f6cd9e7f22ea23a7 7.3.363 -14f3ec8d4b379eaf47ed1db484d978f7 7.3.364 -5e7813749abb3ebc7ab9e68a1b3e68c2 7.3.365 -c6331acdb22f8c4d499ca581a705ebb8 7.3.366 -f2fdb72b39438f7027c4be24db25b117 7.3.367 -3a8195f83b2d32d8c2032e26716b9f09 7.3.368 -359bc85c3cd63d0fbb6bc5961f72c739 7.3.369 -25f119547ac48f878b3332befc2649cb 7.3.370 -d36fdfdf639394605ea2b308707d6615 7.3.371 -ad0ddf9295efc3294c773381e5e67fe4 7.3.372 -8442d50d418cedec8b2d635644740d5a 7.3.373 -5c95728de7d9a3c4c3987bcde0650778 7.3.374 -c61c2d446414bf1cab32807c389e2e7c 7.3.375 -444c16fa4146e89b2bc9d32b4da2f7c1 7.3.376 -6ed79f1c361f8c0eb2966a55f3ad52f9 7.3.377 -7b191891dc5f67b99bbdbadf976ac845 7.3.378 -a839cc831d81b6d34dfe90627fe8cf09 7.3.379 -24701c12673b2bf379298345d60f37b3 7.3.380 -a9067b6c0641a17f38e2e97301621673 7.3.381 -349a3d34953464b3688bc31469976f24 7.3.382 -20ba52799f0c3d27c478f011472c0022 7.3.383 -6d5298b6a20256ffcc2cf3e65736d387 7.3.384 -69d842f7ced3d84a35044f9c18c3c6e3 7.3.385 -fd5466d49d7c63643554483b15fa97f6 7.3.386 -0315176916ce9ee581e182f87e016179 7.3.387 -41c28b63e3c84682507228be16af2aa7 7.3.388 -ef42ae9d02239408085ee168e514145f 7.3.389 -be7aafd0a6e9dc35983b72382847b88e 7.3.390 -08870e0a7fddac2855b28cfc5fd6bc21 7.3.391 -9f0362cffe6065ca1d3e5f18b78ab5ff 7.3.392 -50fbce54fba5517687bc39bba7636631 7.3.393 -3b6c224a46a6bed39d88ef94287b4920 7.3.394 -5d8e7c36cd9cd6b647e449a71c811c46 7.3.395 -c91ef87675629cd3fab98b28c8bd6057 7.3.396 -825e916750badaa31f74412f7da69e75 7.3.397 -d3cbffdac50dba36e582c6c3b8d6cf3d 7.3.398 -781b1678b00044498e250a6abd89151b 7.3.399 -456655a8e098a1f36611b526489ec4c6 7.3.400 -22b340b307838db563b5a9a8f9c646bb 7.3.401 -26efa76a8cfc8b926540c099a8a7044b 7.3.402 -6fea59460369918ae54b846f3e876ac8 7.3.403 -a9032b6e58b10d8082547f4a9a98218e 7.3.404 -6210b92d8079bff8eb374ec448defbe9 7.3.405 -388afd617c74b67cbaa5f80016877be2 7.3.406 -120b0a9eed884ce705f482d560021435 7.3.407 -7030a491640aa1b42ec864dbd8ed21cc 7.3.408 -d82c2051756cdd5dd802473f4211e457 7.3.409 -29ccb4bbda97575b4da43a60c8d1d26a 7.3.410 -ff25ffb70dd1186d94c1abe967d5f236 7.3.411 -266abd1bd01cafc7e6547010927933de 7.3.412 -a856fce6bb3cfd1a18a883d2015cdf93 7.3.413 -ed1728eda523c254f73c53cfa4049f98 7.3.414 -2ecb53a65f1e860805c3e76de6649810 7.3.415 -7c4d240cd697a5059215cf30031fdb67 7.3.416 -80bc77423d32592e86fe3878e4c9132a 7.3.417 -e29cd40e83a815bbf5f184a21faec19b 7.3.418 -500806b4fb0f70a9d28d39fd78977c5a 7.3.419 -52ca17111e0b0cfd86a6295f47ccb4de 7.3.420 -da9cd8687afd5226942c732fa3969c48 7.3.421 -137378088538084ac84414b06ed194d2 7.3.422 -1be05403e55b1e7386aa1ba1e9b164a1 7.3.423 -553b897f34b415438149fa1dd62c1cb2 7.3.424 -d65d21569ea9357ab8213b24d5bb3edf 7.3.425 -b0a25aeb502e7dccbd33086fc43bb3d5 7.3.426 -bd27e7c5084ad505689ffe234995c340 7.3.427 -c28f26ba59d4495eee3bc76f887662dd 7.3.428 -041c4bcff7b0a9d511eee0d15dbd97f9 7.3.429 -d37e30c3c09cc3c8d031d2f43d9ae58a 7.3.430 -6ea544142e91749e20ec152960cd7898 7.3.431 -27e2fbee220f1317092cd912f869ccde 7.3.432 -dd06ca07e6cd631a643c0455e7a8260b 7.3.433 -c42d11497c9a3a8310ae88f68e663a54 7.3.434 -a9d3a628cd575fac524db5728dd5919c 7.3.435 -b344d4c8afd0a565cfc5ef2a8c6ea62d 7.3.436 -84a6a23e44ee608c116206c5d986fadf 7.3.437 -5e2ac3a4d3400ee3f3790dc0db666a2c 7.3.438 -2b254fc7a6239be6c5488b186abcead9 7.3.439 -ca0f48ad05bd78667af7bf8b33918e1b 7.3.440 -398511e171699e02a717f6082fa31cec 7.3.441 -c2d2d211b377baf66945b3ab3ed4ae26 7.3.442 -78d8d9a2cb8b2da74ac6cb14d48c7550 7.3.443 -d9e4dff7d98129632750ec85492007bc 7.3.444 -11b865b2056b62864ee74ff6d14ceb05 7.3.445 -4314432b04672e0de08abf10c496878f 7.3.446 -3cd998afdb75bf0c383677a891e83e95 7.3.447 -ea30682770af33ee88f1ead239a8e842 7.3.448 -9caa72ee17f6d53d717504981ee75b85 7.3.449 -c182c9886fa2d5bbd6838f72ad8ce093 7.3.450 -cc461810141649483487a68e1bc1adfe 7.3.451 -a1c39615067b40fdf41ae6f588fd9d75 7.3.452 -7b1a46036cb3315e158702c8e4fc8f85 7.3.453 -4f5988e78327ecaed626ecc545756d3b 7.3.454 -979fa19eda9c88fd7a10bbb08b3d0061 7.3.455 -fcf786d70a06e66d98dd0c0946db32d5 7.3.456 -7acba3727d06dd93d5f8e6e74f8dc6a5 7.3.457 -e92eb0f6eb4b9c13faec3e4bffa08949 7.3.458 -cf8b7072cc45f1e44409c0c7ecca8d49 7.3.459 -f7a99e67e2673f753c1ca7091a4d76db 7.3.460 -3c14adaf6d81d131b1fc2a95811d7aea 7.3.461 -c4202a428ac13e833639beb0e74543a2 7.3.462 -615b00a39aef680b62035f53af6efbcf 7.3.463 -d354dc85be61cdd6fe19a3e451ec1b2c 7.3.464 -ede6c2f3ed8705f394ff827e424b0dc7 7.3.465 -9f50c30a4003705472dc593eeec8d991 7.3.466 -47910a4c4c91aac42d677959d447d07f 7.3.467 -a4ea7d57a28fe607cc1d30271d717419 7.3.468 -f93fc094d5c7851018a14792c28cb3e5 7.3.469 -3a5ec43a7016b47afa311c4f1038633d 7.3.470 -aad7c2ad4b4e6b94ec46e9b2863fd330 7.3.471 -86411483bc6cfd20dd06b47ae91d66b7 7.3.472 -99d5c3ed66497f0e653078a4668156a3 7.3.473 -44723cb5a3f4d5564dfebfe846884764 7.3.474 -40e8bafa5e22efb3ba080e3d62bca7e9 7.3.475 -3d2c5a2b5c1076ab5efd2a754b89b90b 7.3.476 -7b0ed92c340f1f0ea2683949f94d5611 7.3.477 -9d3f8ac8dab7c056b84acc93fa57cd6f 7.3.478 -804be1bb570a94ae546aa25b624ea794 7.3.479 -b373d6f49bb360ea6a3c9926c285185c 7.3.480 -7a82d7511b366b2b5f85d9c2a7455f01 7.3.481 -bc79f4d76bfabb779bc7d6b9a64cd64b 7.3.482 -adb74ecb63693c37c643285ba92e44de 7.3.483 -86792ebdd7cc76bec160132c9d33b636 7.3.484 -42c48b198a8061eda180e2311a7534d4 7.3.485 -276bc5a9a7fd8dc927c23b26f643033e 7.3.486 -31007729cff7767cbf220a9b68b194f6 7.3.487 -e1ce3eabeb588b06ce7dddf487f2499a 7.3.488 -3b2dd5536346a54e36b4e03cd0d824ff 7.3.489 -8ae394bb4c88bef95a1024d6364b38b6 7.3.490 -328e9b2d8a31d7c788264483a80e9250 7.3.491 -68c3491611b8150e0ae968a1ea8affe7 7.3.492 -f5d9ada83869fed1d0d91df88c5a9485 7.3.493 -c3a23838992f56b4636e2627eb143924 7.3.494 -888e9843615e3338ab83fd8c66737433 7.3.495 -a8703d0685fa90bc069d308f7b51bb06 7.3.496 -426610e23cad87328eb082d625d1ee62 7.3.497 -329e2214a8a8b545c05fd86adfe8c1bd 7.3.498 -43c0172dd764412d60faa14c6e6666ec 7.3.499 -f3cf44f98a0238c71024dc631d0ec606 7.3.500 -924ab81950b8a7f25b1d55026fafd6b9 7.3.501 -5c8f12ae2e510b05ba067b17cf49893c 7.3.502 -e41bbf789908cf09df630261e3d69e01 7.3.503 -80ea5159a3edf49b58783becfaa39a5d 7.3.504 -912f7d8c2238f094624b785ca7786585 7.3.505 -22600e53470552074a0aa14b8ddad4f6 7.3.506 -dcce2bcae112b2f374928d043bdad9a8 7.3.507 -8b8df2d863d70954d9e26044fb4e0cbd 7.3.508 -4d7e21eaabea5af10755f28f09f827e3 7.3.509 -2eb7b0cb6063f550285f089e754f92a9 7.3.510 -d3b2614aff5849ebf6bb9ac3d89c19ff 7.3.511 -78256e47b0fff030269cbad57b2597e6 7.3.512 -1288d660de7c01fa185dcfc5004c5293 7.3.513 -7428cc377b36f4fe7afd3dde5fa21b61 7.3.514 -b3c5e3a4590ef7e6a075d1b90149c9ac 7.3.515 -0206b98c70fd2c94fc5ff6eaf14f0959 7.3.516 -0e0afa5a9d1dd586bde50703c96ac3a4 7.3.517 -349c2ddac116f97c31b1bd9b88b72b9b 7.3.518 -6106eecd3408726079fcdd12c1425312 7.3.519 -6da6f66434c93887375b556c857a30c6 7.3.520 -507d6e5854c12c694d4812bdfac2548c 7.3.521 -b6b1b25d63291d989e099103f04bdcb6 7.3.522 -0cf738ba8f7d390756fe8e766eaf3d39 7.3.523 -0b0267864da69c4f122e2353d498c487 7.3.524 -9e17f57c70c2c891fad93806c5e6d705 7.3.525 -336e0620ca9eb9c7f342a632efdf8cbd 7.3.526 -c5de73860845db1db28ae99e295c3792 7.3.527 -a9ea4c3f95d297b158453bfffbb40a99 7.3.528 -18ae440b390439ff2fbede969f9c8a1e 7.3.529 -271e2e9de4dfa37289e48f64a6553500 7.3.530 -869bc6b81597a1fced9392bbd8f8fc5a 7.3.531 -a8da4dec0857a9490a2d8778d1124c47 7.3.532 -bb141feaec8df351d1f6699e40a039b9 7.3.533 -92faaab0e90f8480cb9753f486a4e873 7.3.534 -c897a13a04cf5c584bd615b5c6c7c584 7.3.535 -266c83d93a028c5c41e419e545f5b300 7.3.536 -29ed0928f7357b857487c04c317164be 7.3.537 -fe980b731ba1207ffd3e84529bf71ddd 7.3.538 -af3e4fd995f5de5a6177cfd437e13613 7.3.539 -ce419c1403948bb41355f337723ecf4b 7.3.540 -4de666301e91871c38b53063f8e50cf5 7.3.541 -f2282f6c276031b5ac10b1c26b249259 7.3.542 -46291292966ee035181d88ba0def3e9f 7.3.543 -b36f4a6d591216074f059e30185b795b 7.3.544 -4477450c8ebc25f53c69849fde47961a 7.3.545 -5ca25f97d2e8248b0d6063a9ac6067a0 7.3.546 -f5eb24c91a950cbb8bb4197a0c9576c9 7.3.547 -dc458cfe8ffc6b9398c1e2ce9f53d03b 7.3.548 -ad975396a8c6ff6072726a22a449d82b 7.3.549 -1b9a430451c381730566b6997989226c 7.3.550 -46562714604afdaea878000c4c3d207e 7.3.551 -e9ec165f500549d7df5ba1dca13afc9d 7.3.552 -23a5ab0155214e8f0f2c1aaa71950cbc 7.3.553 -dfffb7b5c54c5d9ec8b0dc71e67a2658 7.3.554 -f6c9f15f23e28773411d643afea566e2 7.3.555 -0ea7e9762a526fc078579429e5cb5204 7.3.556 -37b4e98e68f9168dbe170d45cfaee752 7.3.557 -d55e7cb7d754eaa45becba8997f63e1d 7.3.558 -29f57c3b174c62a113a89fd670476e45 7.3.559 -601e5ae0b7aab3e9bfd740913b4de6ad 7.3.560 -eebc28cbb5b8b50152381389714255c5 7.3.561 -9bfdb1b2c2ad5507709e5d087f73cd69 7.3.562 -02e44731e5a40f1f513e1bab93e0c922 7.3.563 -7dab4d26defce84174fc1ce40968f7cd 7.3.564 -bab851bc6d1cacc5b2aa9357091b5850 7.3.565 -a7fc27c3f13890f7985efbf21f436984 7.3.566 -118aea4f408d18c39594ffe2be2d5654 7.3.567 -d222ae3e9bdcfe27e7e56706196afb07 7.3.568 -4fad201269a1868121088104ba2e2cf8 7.3.569 -b0c8bcdb5bca31cda0e3347ed2707e11 7.3.570 -94a1e5061ed54d8c284bf9e9a7a80893 7.3.571 -c8d48801d35d30965c6bef1617271c0d 7.3.572 -d564977f585a6beadc81f3cced20365d 7.3.573 -df348e7ad84f9eb22a90965de5c33799 7.3.574 -749c07df5e36cbd342c3cd9c27d37753 7.3.575 -bafb6e85f0ed5cdb2bb6fa66d83e5219 7.3.576 -e2167696fe85109810cdc8dac0319882 7.3.577 -ce1cd1adadf03ccea372b31059e456ef 7.3.578 -1069ca066d1677e6a4d8e6bc7cda9c1a 7.3.579 -2c8c1c8c879e23f67c7148ee295720f3 7.3.580 -da732dc847b52e0a79a7a95b5496c653 7.3.581 -c81f20d3e7cfe5329a713737fbe6b3a7 7.3.582 -237ca7dc39ffce18d36e778ffd02ef36 7.3.583 -f379b5fb12af3de41d9d966dd6a00bf7 7.3.584 -f4198c4adb7e8746419fbbef68e0a359 7.3.585 -c9f9ee1f94ca881ff6d6640d448a11f1 7.3.586 -f719b5433676977fc5be497cf63b7741 7.3.587 -1669475093547d2f1acc962913528ba9 7.3.588 -c29b13cc89b6c9d72b7d6ae7a92992eb 7.3.589 -352429b56533ba2435e9cf0580097816 7.3.590 -0aee68dbfaaf1afca1244aac3f0b8e6e 7.3.591 -0324c77762c95a4e5668e1b16b4db6c6 7.3.592 -43cd0694cf7ffb60df7d0c34fd631f1f 7.3.593 -966985f5120f5b19080572a4c7958e6b 7.3.594 -d8ecce5da4c377575ce716aeb5f8087c 7.3.595 -e26f6a6804528d875fc3c3241a87f1b3 7.3.596 -c8aebdb727582e57af6be60072f72dae 7.3.597 -9e8b68256c897ef68b33b5d1e268d567 7.3.598 -48920cdf55ae40362efea9fb3c837296 7.3.599 -76222146210a1a5c4ee01d6bf892febb 7.3.600 -0476e6804ba298a664a9d616c2cc9ef3 7.3.601 -e48ef9748a38098f0a635a5f7e0e31ed 7.3.602 -8de3946060c2ac76ca88e50f44b8ece3 7.3.603 -4eae3d63f205a6608bb40e1d7865f5d8 7.3.604 -3576ee02d1746fc657e808079fc47df0 7.3.605 -8946d8ef910bd7d1a2d3c9828d07544e 7.3.606 -bee3ee47bc46604c39baee585be293ba 7.3.607 -652af92be8dfdac047c7beba45a1ba99 7.3.608 -b46cb8c9884ed0ebbadca26d8a9a4118 7.3.609 -73955c09f53a41bd61083a27882810d8 7.3.610 -96534cdfbc2b758eae95fc0f75b5382d 7.3.611 -b3a601f290f2de1bde0465db6dd51e8f 7.3.612 -2f0704a264e2bfc6da3ae7645d0d8d94 7.3.613 -b379d7849f65b805d919a117046653d9 7.3.614 -1d356280b1e9c94bd468ff90db84999d 7.3.615 -227bd899c6ddd5d132224f81c8a0e775 7.3.616 -638e706969de129cca5ae48885f4382c 7.3.617 -085829e53587ae2fa0332cefdd7c3103 7.3.618 -90cec71f1974a3af93323ee4c2059239 7.3.619 -69bcebf038995bd725a54815091433bb 7.3.620 -02efde0de0afa307653fdbb008687a80 7.3.621 -21cdf0443f83de89d2e4b4f84da9569f 7.3.622 -da953a8f9d5d0f483ee7ce4aaf97d564 7.3.623 -36f3829c4a57e55bfb9a39f7cd1735b5 7.3.624 -35da55de3e906fe1e57c2219122579f5 7.3.625 -becff97ecc29fa653983f531f740d861 7.3.626 -f08883ed102ba663e9a5eb797bb7be84 7.3.627 -35a5ea0bd9b039eacf360323e65380b1 7.3.628 -f41c374b71cc8e8c753d3af3521d4a32 7.3.629 -b9a248eeb6bf38f8930cc0315bc1de8f 7.3.630 -701083254e53d9c95fef75a926cb6c7d 7.3.631 -155df5cf0314931f6f7d1860ea77f2d2 7.3.632 -5f0254fdf2a5d256d39ea54060eff41c 7.3.633 -7013ada217b84af75ddb02b0ea181c3a 7.3.634 -28c0360c7323aa5d2cb52767e0ec74f0 7.3.635 -43d7c83dfeb4fad1829a8634745b55a1 7.3.636 -e76d954bae1a76dbeab2a2b4bdfb4308 7.3.637 -42d9c2dfdb505d9d58a9f9ec924250ad 7.3.638 -ae8e9ed38d39091beed265818d3b8a2e 7.3.639 -2e7e7758536e2e22548a38935890695a 7.3.640 -c01f869a60f3a2b50935e807c76d95da 7.3.641 -043004b7a42f71b2be465cc4829f15e0 7.3.642 -17ecc5f7482a3eead289b432c72f29d6 7.3.643 -83dc413bcfcb3c154f248b435e67b0ef 7.3.644 -3b11f430ceb7474fead9a577d5dcf327 7.3.645 -a0a8131dcc472a78362f11772b6408db 7.3.646 -f7d710eb395fb90b9f24cb2a15e69aed 7.3.647 -1356de03af7da1f43fb7afe9cf30fbb5 7.3.648 -b3c336f40f6b564d3890c9659305f3b7 7.3.649 -772a6293443ad6ac9df0c5397bb71a41 7.3.650 -e6389f21300ec51fa723d64dbf1bd97a 7.3.651 -a8ea4c76eb1daf26c14595ef77029c27 7.3.652 -e65adfbc6e793d67d5c9ecfa3a00903e 7.3.653 -ca3dab18ee91cc5b7ec26fc23372bdd6 7.3.654 -ccfc8ef1dae6e6a25d530cb94c8f882f 7.3.655 -634384d0e9bbf8eb66d5c2c597bcc2d6 7.3.656 -e396c1b0455699a5767d568f6e42b30b 7.3.657 -fe1c21dd1e8d7ef6479b1e3491e60b92 7.3.658 -01a2677308db295311003872c176f907 7.3.659 -2c6411e804089d4b8e7740701365143f 7.3.660 -4c407322041b0d2be237704cc0ce1e79 7.3.661 -a1c125774e82a6dd3a62ac85cc6e25ae 7.3.662 -53a8658df813bcf9ff4b296b5ca075f3 7.3.663 -8d53a150a50dd1af9f7c2d2715482b57 7.3.664 -cb6e506a26884804afc49ddac08aa040 7.3.665 -ddb827b7e4d0f4e77b591eaabef42499 7.3.666 -6d116c937bb0f74dde0d61bf76fc209d 7.3.667 -1f000a3231eaed8b7f857d8f55c2b798 7.3.668 -f8d544b185a2bec049c16958fa8821c0 7.3.669 -15b268096d901016abb6dbdad8d9dd2a 7.3.670 -456fd9d031b995c14f9bb21945e83c79 7.3.671 -ee940b5d7fec05c2eaaac0f3ab4ae7f5 7.3.672 -90947aa4094e2944bc27923b186d6943 7.3.673 -5f20b8c5b6986fc26e344381e5ad0977 7.3.674 -18194e59371649d3930f55ca05200e29 7.3.675 -3abe3fc89eb54cdbfa7d08557987cc8b 7.3.676 -9b6243de57af010b3e57d90a7e69a075 7.3.677 -012fc6d1489e1c6be73952697c180038 7.3.678 -1acd608501c119734085f5b69205a797 7.3.679 -ef2d29e8f48447fb3597f2aca40dc4ed 7.3.680 -277c37e4a3c8b263be0f33cbbe6986b1 7.3.681 -009a08f90a4514bcdc0ad19940b91af9 7.3.682 -73125bf6fca5aef494c4c4a27cf9d84c 7.3.683 -d0133c338d5841f1f8818e38e286a518 7.3.684 -37080ef3e4ff09e7f7de092849af68f0 7.3.685 -a7208adeeaa0e20a20b4db55274b19a2 7.3.686 -29a87e724798d68b58351051232f321a 7.3.687 -92777d7e1b029576e0066973fdce0563 7.3.688 -54199fe735f735613e9c6308387f1e31 7.3.689 -42033c6c57e7656ab3d44b8585a260e3 7.3.690 -c4dbe0ca1ac4017686e8dc4027ed056d 7.3.691 -58e3cb2304e79be3d9767189dbb21f49 7.3.692 -4d55900c4ffebf154faac273d57e84e4 7.3.693 -380b60bac510e0ba7e2193af2e3d503e 7.3.694 -a5886f87f798247c2100408fc3b1f6eb 7.3.695 -4434809fd03593ff4b6572cb35d58b40 7.3.696 -f0cec7cd723e33c22c7875e4e95ca71e 7.3.697 -85b50f9d94ec1eac1bfbc116a4ed09a8 7.3.698 -7eb362619743a5dd17b75915d741a39a 7.3.699 -c2fd1cd1b95084d1ccbce8881511b6ed 7.3.700 -fd0a4d9fbde1645b36a181b5ab54b26e 7.3.701 -f7a5b36d208f3442cbbdd347f3a42563 7.3.702 -5ab9e64caf1f760e6d1ef08d4c399c69 7.3.703 -9c0510d0f2ca3438d7b43563e5a12f2e 7.3.704 -bf172f99cb4a39f5b88f944f31b5f9c6 7.3.705 -065ba8d9038326766bb185332b2ff0a3 7.3.706 -c65424ea7df82ec5cbad5e26980a9211 7.3.707 -9629be9c7269cf5112e35d8eaea035a1 7.3.708 -c3988f2feac4f893f3a1ec933a504bdf 7.3.709 -2c7895a305d50f2ea640df9bffe73c33 7.3.710 -3536102ddedcc5412bc6bd347dead877 7.3.711 -53e0c374077627a7dc14acfd656e2b8d 7.3.712 -964b33d3a08aca14c308548f7e196d8b 7.3.713 -f073950bc171acde05e46eeff5b1d188 7.3.714 -c30b3382b17a476f8e4515079b821879 7.3.715 -f7175afb792a76dfe637620127254389 7.3.716 -0d5dd059ef01650364638df7fdf71aa6 7.3.717 -b677364d9169cee792d6d1a5ce018f37 7.3.718 -a8cc9678c21aaa3a3df47fa49ea1d19b 7.3.719 -d158ea2c0180c3a2a78e3e4f852259c9 7.3.720 -49e4ee8774f421bd7c686c10b6cdd16b 7.3.721 -d4275057101d6d3d0d7ebf907577d2a2 7.3.722 -a8050ec35042e9fd51475fd1048bf54b 7.3.723 -1c7ba44c19b1775722678a54e008b20c 7.3.724 -1dd2c402290b87d89ee4b130694a8f9c 7.3.725 -585b01a15ed8f8b63d40c62c75b9d5cb 7.3.726 -ab89149d96d541346fafabe621ef4885 7.3.727 -8c98d6b2ecd613c84560a2856051ee91 7.3.728 -0d6e1d700d8aea1cb98d918691395c1e 7.3.729 -6884a0da581af8ca961439fba8d5d01e 7.3.730 -d990f67daf2bff5b87717d98ff0ca00f 7.3.731 -a5000fa5de2a7fecb2953e2449b93d56 7.3.732 -b9ab33bb195ed0ba2ee2417b9d0228d6 7.3.733 -50bdbfc91cd20e75090706b50281d2cf 7.3.734 -72f6e57958c416181e6748a339eef726 7.3.735 -fdfe9a8e4d0c3573238bbee3ec5836ad 7.3.736 -0c16ec0aba22fd3086007b8ebc454f8f 7.3.737 -41a709ad15a1dfb5e1405fb2e618f173 7.3.738 -61d956ac3c674b930675160f69330483 7.3.739 -6775625a4b05ac2b196889aab109480e 7.3.740 -616970ab5f892ae1f51fb5d0978d926e 7.3.741 -d039389c4766620b6044153af4504f8d 7.3.742 -ed6127482dfe469d338e9ee18f891d20 7.3.743 -cb1a7c02db2a2bc3ae96ab16cd888c8f 7.3.744 -b82e0fa1508b03c84c72d3a44dff1237 7.3.745 -fa4a781e41f0fd01350eb9ad49369794 7.3.746 -dc9750b1b3e2d8188dbfb4a1ca145c87 7.3.747 -ad5b7f392d113743b73f5043b92b85e2 7.3.748 -9663888372ff6e9a3959abe4f3d527c3 7.3.749 -adbe0502203063e5d1059563dc8aa429 7.3.750 -8b6104f0f3361f7d5ebb4734c3dc9d7e 7.3.751 -d2851c26bb5efe3f44b0436a4c295e06 7.3.752 -8c22baf96c2fd9db61a87ff3923d02f8 7.3.753 -a091a2e3d05932de13be54442bf6548d 7.3.754 -c684e684eeb89171719d97852a216802 7.3.755 -f64197967083256346fafef01e7835ff 7.3.756 -f36da7fd453e2bbd8b74c817f8927dd7 7.3.757 -086067a0fb4b10e16c8014d111f116ad 7.3.758 -662d47608952c60f8923dfb54c8b4613 7.3.759 -feede44e7a31055cdc967abb2162ed3e 7.3.760 -109b0ea8a2924338865855a64017de7f 7.3.761 -d11098382b38b12e3b552400421450bc 7.3.762 -41421f5affa5d4d7aace28f9bcf77ea5 7.3.763 -735563349503f9a61dd0cfc7cde6c589 7.3.764 -46c72c3a1dd3ec3f724bcb50d6dade7a 7.3.765 -da189fdac966e978606cb93cb458208d 7.3.766 -b12fffc522168a4171e2719697e0f5db 7.3.767 -a2057e7be90bddf92ac3319a0aa54c5b 7.3.768 -87e6d0e78dd7313609652e785c10b3fd 7.3.769 -c960937e7ee14d1b7ded058dcb8ea508 7.3.770 -a2a42505b2dec3eaeeb051a57c3d19c6 7.3.771 -79a9882a2e79411d56f3e1fd83685918 7.3.772 -65793f976e3cd13d6ba9f3d40584c16a 7.3.773 -5a0e8b6fc2d5784c85ea039832d67641 7.3.774 -a5ba9b3b9a1152c5be34dc13febc7950 7.3.775 -c55117708c70f883e6db1a940a30fe2b 7.3.776 -8338b979e35b7048b50453a98bbf4532 7.3.777 -be191f4db81309b22f16accceead7748 7.3.778 -c25f516df1a6f4e91bb03596ef123952 7.3.779 -29bc8f46fec4f3f5d49d4280feb7fa35 7.3.780 -1207767150015dbafbc74d7b8405cdec 7.3.781 -83a1a0ae88c37c97c237a2d6555e0cd7 7.3.782 -9d7aec8d3c5e4b5344d8203e1b5efce6 7.3.783 -a4b70df647438d5904f6a8ec02879ee1 7.3.784 -abbdecdc9efc9be9f6dac03a37268520 7.3.785 -a020433516fc2d9afab5186fc56d9fa1 7.3.786 -f96930682ad10b23e1a70540b6ab3d8c 7.3.787 -2e53c81838fd8c17018c1f24704bddb8 7.3.788 -ac01ff688623aad44b3ec1c6cf44ffe9 7.3.789 -f4dad2ef2444a565a869c92589c713ce 7.3.790 -38b8fb23f2a7e62c2e085e3908142f4c 7.3.791 -b5f040a56b0ecfa75ec80d3f6e940ce1 7.3.792 -b7ef33f3d9632ce55b18a2c8d566e306 7.3.793 -a495c230f69bfdd8c5759f62b97c602e 7.3.794 -62d2214429441abc2532736046feaa32 7.3.795 -d820b7899584a76615c5bfaeac99cecb 7.3.796 -b9d5040f551e27ba00fa8af05956f8e4 7.3.797 -09c965b1245f4bd4b218a64cef11130b 7.3.798 -6ef0a3c4d4c09ec1d7c3e5a622486281 7.3.799 -d4ae3cb2665e16fcbc5486f59feeaa79 7.3.800 -1681c127f2aa8bdba9d6844b59fecebf 7.3.801 -af0e2f7ee0934107e8f6427f26ce57d7 7.3.802 -6099115d1de823d7c4db760eaf7e0b49 7.3.803 -6595af234c5e2ed6d293b022952620d6 7.3.804 -36f9da91d4275d298a38d8a3782d93c7 7.3.805 -5c87d23889ee90e363418e7225067158 7.3.806 -375e799b20798f0c48da1260f06beb8b 7.3.807 -89d06c08901d59f528c41ff8222726f6 7.3.808 -ca40dd8b3565b95d8ba79f91178b166e 7.3.809 -44da6a1159468cc2f901c38c8b8249f9 7.3.810 -a24bef95639d7a5b949b25a3f4869d7a 7.3.811 -80441a6cf1565be9311ea87668e6fd9e 7.3.812 -7b1626326917577e5949531cd8548474 7.3.813 -8ece3a0fb3f87fa42f7465415e970bd8 7.3.814 -17cc83581cc8c0b3208c5fc11588255f 7.3.815 -b712b854580eb6842c423f75eb0e3474 7.3.816 -cf1c2b392a9b8e0b568e1d0213ea2b2e 7.3.817 -22745f101e8ad1fede4f4b3b6101a9bb 7.3.818 -30137ebb501f34ef25fc740bb3146e84 7.3.819 -0d34f0a6a04288282dcfb2eccb24722b 7.3.820 -be6c083ee5624621eaec22198bc516b1 7.3.821 -4ee4672fdd33a392010542497d4638fc 7.3.822 -083123561537365a520aeb07a0f43b4a 7.3.823 -b97638fa86f0f4651402a58089480ab6 7.3.824 -415a5269dd35fcfbef03a9d82a4f48e4 7.3.825 -c930b4e1c52dfa262cb0a55f12231306 7.3.826 -cdace24f2193d2e4ed04166481d6276d 7.3.827 -4215b471adda7c16bfdbe87da73b6af0 7.3.828 -186bc7b9036620cfa70677951e227b2d 7.3.829 -94f2416ff615a769750b07b7aaa00179 7.3.830 -4d061236f08a1b077e017f0246c9e4a6 7.3.831 -312223ba089ae771aaa564c0d08a662e 7.3.832 -583ff52dfc79893762283ead7a0e3aee 7.3.833 -ccf2e81d30b95d5e706be57f5a72583c 7.3.834 -c71152054f5f2f1296801b1263cb0f82 7.3.835 -0eb860a53f948645085c5236b0819af4 7.3.836 -51f60b66613b7535855d1e592f544d83 7.3.837 -6a8c2cf0c38024d056820f93e3590de5 7.3.838 -3a1e2a7ef2cb8c98a75e4121d58ebd59 7.3.839 -21e3dcb67ba9926ec7ab8b92c1c3869e 7.3.840 -ca0b0640f383d02715aa74ade316fbd9 7.3.841 -a52eb40ecb77d8fc07a8229cd0c07121 7.3.842 -db29c4289936ea6a94ea7cda8aef4e62 7.3.843 -cce5250b4ea9a362bbefc591c519259a 7.3.844 -16c3883653cf2e13a6941f1d5734b48e 7.3.845 -34dd4ebffd4b84e0abbd9271497159fe 7.3.846 -12fd92c34db268c53e386a8bef5fdc30 7.3.847 -81d762df01e532a439a7ce729eb7e13d 7.3.848 -9a25ed7501d8fa17e9961b607470cd21 7.3.849 -5b59690cf254b2c200abed4e99d54afa 7.3.850 -10ba00ee007cfca5100616a77d3d2ea9 7.3.851 -21c9217486bb1e3df06a5f15295c521f 7.3.852 -99397a46ea6c51d1daecd839fc1632b5 7.3.853 -4746af04bc1010db7e7d09b6e093dd7b 7.3.854 -8ee74cd7a5b471a1260c2ad2acea76f9 7.3.855 -e92fba85962d34e3a92029ecf560a1c5 7.3.856 -26624bb8fda0afedbe66958c1eec7934 7.3.857 -676c6846fd6b27ea0b4ce99f577cceac 7.3.858 -5e462df56c193c638ef59ba3c17c3c16 7.3.859 -b64d2e983a97fd6443caf527b7bfcff0 7.3.860 -773f969b30d9319a70e52dad8d1ae9f2 7.3.861 -306503f664cbf27230f7bf3d38241b6d 7.3.862 -334dda5675fdf63514e6c50ed7925300 7.3.863 -226e51b926f21f7ca9eabaf37fd4a163 7.3.864 -48db280a90fa940da0788f6935623482 7.3.865 -98777b095472a723303f0f195f924d46 7.3.866 -70ba85ebf2ff2f5917844cf9a0f27f54 7.3.867 -7945144a244146248727c67f5f868e35 7.3.868 -6c3102de4b796b085622977286825324 7.3.869 -8e03e9399b3f8a0440ac324b75d44db6 7.3.870 -f888f5aea1b5f456fcedcbbfac6b7cb3 7.3.871 -bd47f2b08911ad0db8209c5f02380a5d 7.3.872 -4e1bafa141c88f83d868de096c431e43 7.3.873 -6e4a64e9e9b392bcf0d2488f07c80608 7.3.874 -abb4523022f7c6c86c43256f80a74550 7.3.875 -437a021bf523442732f1e31f29579e68 7.3.876 -8b71b930825e91e8f7af6aef3b714080 7.3.877 -f69bd305333a102f4f76c40143bf3d2f 7.3.878 -82ea66e60b9e1d3d534352d12534ddf2 7.3.879 -553ee873fb23b8df6262db61de925493 7.3.880 -9ab615958983c113e0e90028cc05256e 7.3.881 -5548c8d030b55771e1887f08522cbe36 7.3.882 -e263181d7409e8bde32520c8314ff2f9 7.3.883 -953f60cb265903910a537bf625e096a6 7.3.884 -2a096f77c95248226b7d4b7eda58a995 7.3.885 -ddef20eb6b2651480f1e52da247d84c0 7.3.886 -2aa53676316887e8c5bcaefe51211c3c 7.3.887 -e087de5e2224b5cd050e34fe371d1261 7.3.888 -71cb3a6d8962c31d094fd335422b6554 7.3.889 -17f6cad309413a38ee09d2eff398a23d 7.3.890 -0ec87c049ab5567d27dc8ff3a29957f7 7.3.891 -2b455dccd2b837efc3af2f2541d90c0a 7.3.892 -b788907206eb4f545de17b2bc5d58674 7.3.893 -9e94c1259a0520661394e33a923fb0ff 7.3.894 -023fcd7d2da2c016c104ce8906ac626e 7.3.895 -8b7cf7447274cb1d32c20b36a51a1f54 7.3.896 -dad8233549d769eba5309e83d65c5a65 7.3.897 -6c6ed2327e4fc08f8051ebb30e0a850a 7.3.898 -60d3359f67a739f9b2b3d51d7c72d0b0 7.3.899 -13041bb9c1123664ea7e53bb86efdee8 7.3.900 -9267fe6ba3b2ca1d7e4ca96d53c228d7 7.3.901 -d500094667b57225a2318c264c07a575 7.3.902 -c0699792e503297752b73ae67821e4b6 7.3.903 -d127bb5702e158368edaddb7a4f7a21d 7.3.904 -90e35d3ec6239a976c8489c2eee293db 7.3.905 -5b9510a17074e2b37d8bb38ae09edbf2 vim-7.3.tar.bz2 +607e135c559be642f210094ad023dc65 vim-7.4.tar.bz2 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 Aug 14 12:14:20 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 14 Aug 2013 10:14:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[21733] csw/mgar/pkg/gvim/trunk Message-ID: Revision: 21733 http://gar.svn.sourceforge.net/gar/?rev=21733&view=rev Author: lblume Date: 2013-08-14 10:14:20 +0000 (Wed, 14 Aug 2013) Log Message: ----------- gvim/trunk: Bump to version 7.4; change compiler; update dependencies Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile csw/mgar/pkg/gvim/trunk/checksums Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2013-08-14 10:12:52 UTC (rev 21732) +++ csw/mgar/pkg/gvim/trunk/Makefile 2013-08-14 10:14:20 UTC (rev 21733) @@ -1,6 +1,6 @@ NAME = vim -DISTVERSION = 7.3 -PATCHREV = 905 +DISTVERSION = 7.4 +PATCHREV = 0 VERSION = $(DISTVERSION).$(PATCHREV) GARTYPE = v2 SPKG_SOURCEURL = http://www.vim.org/download.php @@ -13,6 +13,8 @@ Unix, MS Windows, OS/2, Macintosh, VMS, and Amiga. endef +GARCOMPILER = SOS12U3 + PACKAGES = CSWgvim CATALOGNAME_CSWgvim = gvim @@ -25,7 +27,6 @@ DISTFILES += COPYING PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) -PATCHFILES += 0003-solaris-sleep-does-not-do-decimals.patch PATCHDIRLEVEL = 0 @@ -44,7 +45,7 @@ CONFIGURE_ARGS += --with-vim-name="vim-gnome" CONFIGURE_ARGS += --enable-pythoninterp=dynamic -CONFIGURE_ARGS += --with-python-config-dir=$(libdir)/python/config +CONFIGURE_ARGS += --with-python-config-dir=$(libdir)/python2.6/config BUILD_ARGS = "VIMRCLOC=/opt/csw/share/vim" BUILD_ARGS += "VIMRUNTIMEDIR=/opt/csw/share/vim/vim$(subst .,,$(DISTVERSION))" @@ -57,7 +58,7 @@ BUILD_DEP_PKGS += CSWlibncurses-dev BUILD_DEP_PKGS += CSWlibpcre-dev BUILD_DEP_PKGS += CSWlibfreetype-dev -BUILD_DEP_PKGS += CSWfconfig-dev +BUILD_DEP_PKGS += CSWfontconfig-dev BUILD_DEP_PKGS += CSWlibpng-dev BUILD_DEP_PKGS += CSWsunx11devel BUILD_DEP_PKGS += CSWlibgnomeui-devel Modified: csw/mgar/pkg/gvim/trunk/checksums =================================================================== --- csw/mgar/pkg/gvim/trunk/checksums 2013-08-14 10:12:52 UTC (rev 21732) +++ csw/mgar/pkg/gvim/trunk/checksums 2013-08-14 10:14:20 UTC (rev 21733) @@ -1,906 +1 @@ -aa5582d8289b43255f45d4bb6f62e140 7.3.001 -2949cbdfe86f533c487fd144c5935c7a 7.3.002 -9059db41cf3a468935745242cb9c0514 7.3.003 -9aaa4490d2fbf9a1e780a151fb41f279 7.3.004 -bf5b5fad8c4de23449fa7c7c01969369 7.3.005 -f53d95dfb1eee5f5f769594174d0e9d4 7.3.006 -a7a4c56110662bc3ba6fbb2fd645d94f 7.3.007 -be756a231afe754d004b6c8a9d12bb50 7.3.008 -f4ed2feff44e2c1898fd5e60f9f97b0d 7.3.009 -4fffed01d3683b0b8b23df600a0bada2 7.3.010 -4ee8f06dce300c0be029bf00b03ef093 7.3.011 -89faf7d5eef1d1d50b657fe34ee7c90b 7.3.012 -6a029d61f7d51c1bea55330732676319 7.3.013 -d0109c0c413c405fdb827ec20f3903d8 7.3.014 -4db0a869dbe00c360541ad2c1ca87a2d 7.3.015 -e0c634532a865d7ed47942080e371b3e 7.3.016 -f52aa5bc3df02c3bb4c75849b2b5f431 7.3.017 -02270ecbc1dc2f57de80441ac7cdd0f0 7.3.018 -5c1be1a0a107261e0a716c877c82fc97 7.3.019 -ef09917435a7cab9382abe3708cf5152 7.3.020 -53c90651baf1b4b28c99947de58deb91 7.3.021 -c4cb1bf3fa0a45d9cad997cd02fa9439 7.3.022 -1e34e216b0e419096f796d3511ce88da 7.3.023 -5c2ff27d8ce8d1aeb42ff16ca1cb89c2 7.3.024 -69b3e00a17230da16d3be4b96f125196 7.3.025 -687a80a82d05e8e91e9ee659b3e0dd67 7.3.026 -1994a0d1e52111b9fa1b999745da93b8 7.3.027 -2438a52f25cf167bbf5711fc8c7323d7 7.3.028 -302ca6aa621c215736f3db069f8c2285 7.3.029 -ceb0e12297907b13dd39fafffa731c62 7.3.030 -acb42f7f4545a63d35396360dc2799ff 7.3.031 -56c9d1681bfc9fe5e76c281b905f0ad8 7.3.032 -4a399b6f1bcde6d991088118f5a58222 7.3.033 -40580589a13a36cc72a600200b93b8d2 7.3.034 -8f7a617b0cf8fea46e4b1557bc286fda 7.3.035 -3ac58b7fe8347ad87f3628bfb4970f1b 7.3.036 -d83c7635e8b65db98a377f3cc7b72ce0 7.3.037 -a310c68726540ac1a0759ef12778bed1 7.3.038 -6b7243d85b86e03b4a782e4bf6d7646e 7.3.039 -8aa33a527433f1907b72ac7c514d455d 7.3.040 -979abe1512bc48dbaed028a23cb2f6cc 7.3.041 -984ce81978ef2b12b3a09986d37e4719 7.3.042 -27b2418128b4322c3cb92b13d577ad6c 7.3.043 -c29e637b242682dc6df544a0bc89abc4 7.3.044 -bd6ac17eecf226a2d6a31e4fb9069ded 7.3.045 -d97f518c548de06b11b5682f2ca4d9a9 7.3.046 -ae37e72299f02ea1b7f2bb59932ed306 7.3.047 -39aaaf13dfef317febb2442626f262f1 7.3.048 -6469fb212e95ad83c21aaaaf8aee0f3a 7.3.049 -e40dc723ef91adee9854faceaba1e201 7.3.050 -5611eda78907716863ebd6ebd19a000f 7.3.051 -01011da656094510c1cdabbc80c129b9 7.3.052 -faaf035020dcf22b57fa76c998e4553b 7.3.053 -90bd11788f022dc1107f93e702734a2a 7.3.054 -5b4fe73d1c47ab36a6b0a8f5ddd2fe65 7.3.055 -b53b7452e5b92bb1b91e9dd97e52dfcd 7.3.056 -bce5e42b7d2b7a91c332e39ed1f0eec8 7.3.057 -1c6054466398f4612a81289de764ef5c 7.3.058 -e2cf5697e8708390e106553de68ebb2b 7.3.059 -16da4369ed89f0305cf2c3ed1bf338fc 7.3.060 -cbed85cdfe0ad4a1b7b43efc64b1531c 7.3.061 -77f08258dbf30e12914475802eeb9b3d 7.3.062 -97c878554fec3d4f9caf934c0a0c227d 7.3.063 -5f74fee465073a3eb48565300636d9db 7.3.064 -a20ea56117d918b43f5109c9c06787ed 7.3.065 -7c51cfbd55673906035df7b274b247c4 7.3.066 -45625adbc8757b46ba9393dc136cc2e1 7.3.067 -49b340dc261ed455c97d955517264a89 7.3.068 -b423664733d7fd9d7de052dad8154643 7.3.069 -b9ef636a41df5500f8437d38ab3177e2 7.3.070 -1afcb15f38d1e4926918dbbe52356382 7.3.071 -132f122c3b8ac49c1ad56f54c8994e3a 7.3.072 -4a387415ce192506bcb7353cd8dda3c0 7.3.073 -e2b2af94486554c6818693fbf1e3c34e 7.3.074 -91acb2d1e70f6b7bff5e02460d4c3e62 7.3.075 -2627b860bed5c08cead6e48986577fed 7.3.076 -2a8c6197b193a16cb273606d8afcb6b5 7.3.077 -660b3e99b1433a4e992e087e66bc1567 7.3.078 -f69b91c3c55ef81df257178e0af1ca73 7.3.079 -bbe3b3aa56bde525cd4028e807014b33 7.3.080 -d4ce2f5eab7a74f8a51a352b05fde53f 7.3.081 -75b69fb091a12c588992dd282841bde0 7.3.082 -d6bc3caf366cc6735e35bb624701c52b 7.3.083 -c1056e5eac01e94b841ee0f6698bd996 7.3.084 -008cab55300e4aca60b10c5da48fa64b 7.3.085 -d3ce3330380068fc0bb71e1e46715cf8 7.3.086 -76ad849ed21f0f7ea55b5e45bf0ebb8e 7.3.087 -5fe24e8201c4a6bfb04cc1eba830c7d1 7.3.088 -e11e017a6ec88695ed4e68823c8519c8 7.3.089 -85b27ad24ccf7a0a35659104ad5d50a0 7.3.090 -30c533bfa3ce25d6d4ae69537ac6dc5c 7.3.091 -9583f16a6bc74a69848278648692dd0b 7.3.092 -dc1df531af4c8b457291ec3fe55df57d 7.3.093 -4f2fa0bc9ddb599ad5f202474d1baaa9 7.3.094 -527d8531d7d347784506508114eb436c 7.3.095 -07cc669cf0c531c4b9f6410350baad64 7.3.096 -ef918a856c94f9e1ac3732e967e99421 7.3.097 -f5d870f443d75a9849477e937774681b 7.3.098 -60fde4bc61ce362397d430b79856355b 7.3.099 -eb3795dd02ef74e825f0a41b3ae4d6d5 7.3.100 -44b023e4248395d2ccaaac9fda15407b 7.3.101 -f1a8bcdb44fee91a060b5ef4ea8721dc 7.3.102 -fca2fd799b4b76010b2df17e6b0e0c14 7.3.103 -bf17912c76b1bc930af41836899483ae 7.3.104 -2624889029aa8d780eea22c249d53691 7.3.105 -8c94d914a359a1aa81b41efd00f58486 7.3.106 -f91ca9cbbc54d8b9fca3c1884ddcce7a 7.3.107 -5963094fc8a07e5730f7557a9d8d1cf4 7.3.108 -bd660ce14300a3110ea7638c1e11eabd 7.3.109 -ee0dc9b0b38308aa235f0b2b3e5dcea5 7.3.110 -c91b1fb95f25fa9e0915b9e8cf613a49 7.3.111 -67f989ce99ce53c7ab6df5478ca3a90c 7.3.112 -4da7b00c8009a2ebcef6b9dac625bd5f 7.3.113 -5b4db3de0ecef5ca677cba0aedcdff89 7.3.114 -3aa1850a33864d0476104c12be96047d 7.3.115 -31c69a15462f16a6f7601a50a3eaf89b 7.3.116 -9c4c855111dc6acda7c05488da75c7b4 7.3.117 -0ef3f26f6ebd0ae418dae472eb6afcc1 7.3.118 -0010f602a56167a874739c1101da5255 7.3.119 -6cd06c54fe40ab1082fafa461174ab23 7.3.120 -7d4f0af28d817baea5e6c43bde1e1df2 7.3.121 -363a24bec321be90193b60b10e29587b 7.3.122 -7f31de4c9fffd8e504685eef84666dae 7.3.123 -642c96e6a15b67f38022131b5e46132a 7.3.124 -5fc1a25eaae81f91557672a2426b74e1 7.3.125 -6ff55983c952781418172f93374db783 7.3.126 -84ef6940f97c7c946d136dad4ac81d3b 7.3.127 -d56e9032d55d99d19ddb9dfd8f52ccf2 7.3.128 -4a7699f7db4032b1d67e52b3d384b647 7.3.129 -f1a33fe74ead0aaf7a440a7432480d6f 7.3.130 -bbf7bb68b777b831029082e0e865dc2d 7.3.131 -3f761bf7b71b038dc2f775781e6847e5 7.3.132 -7cc3bce20547604b0521be8383c9a6d0 7.3.133 -a34e3da262050d97cb9db46acdd4490b 7.3.134 -b75499f0b035962d7f19de1e2b866f35 7.3.135 -a3631062779f49ed4ab4bc7f87fd307c 7.3.136 -53a736c4dbf298fa465f01d06c15de0b 7.3.137 -a51e6c61c24303a90941571b6bd7753b 7.3.138 -8da651b02794bc7a34286e455e916a2f 7.3.139 -6312930f6a176305bd4f9838700605e6 7.3.140 -2c9665b8da67d1712db9d300b87fc07c 7.3.141 -613a153f1b0901b76f0026a51f19530e 7.3.142 -c3132b4cddda5fa3c11c048c5297e872 7.3.143 -cc8986b4f694b76cb348375c158034d6 7.3.144 -c919c2ea5b3e5b397a53eb8fcc4accde 7.3.145 -d3790014ac6c74d4691e64a839ac0d3a 7.3.146 -5816612acbb7e9862e71defb7e596243 7.3.147 -7610c456812aa93bacaedb8fb90a638b 7.3.148 -7f689222db2fbbc2a1c616b4e2eb6f50 7.3.149 -4ccdacef73da3c14360832393fd18956 7.3.150 -0322e8b82527503b08911c3436f4e5b7 7.3.151 -60e6111797abb558f9869b72892de126 7.3.152 -e791726fd04b11b9293f472fe9e3cb51 7.3.153 -1def37c933f7b1a0aaeb6bb8545e91de 7.3.154 -b1c84972297e04dead1c06c7976ebd69 7.3.155 -05a5584d72fa02708e12de57c1dd230d 7.3.156 -bcbe4f926d7c4ce7c33f2ee163f8e481 7.3.157 -5457a5d2d8e192662dafb4441d728b1a 7.3.158 -8a1b1e2b134e1ffe8058a1007b3f0244 7.3.159 -f8ad1c839a70db0fd67d9a91f2c5adfe 7.3.160 -b8e6b94818cdd5d824bb5bdd71845dcf 7.3.161 -640e4dab93c97e3fc591fa139f3626a0 7.3.162 -b718f9c84f0ef31746837aeb76584b9d 7.3.163 -3658977a1d6601e084001f4ca14990c2 7.3.164 -2a351662b4eb7546a13a697ce6c99e2c 7.3.165 -49be67f5a924f41efd02092d5a363ea2 7.3.166 -763d467cb7f52e65fa04abd47391c46f 7.3.167 -b03500932a593d8f8b503b7f4e597d27 7.3.168 -2bdead87e63f14c1ad94baa4ab83ea31 7.3.169 -55be8ac756a32da430a27684f9b8e1a8 7.3.170 -36cc61d0b91ef0c3a580e244e4062b1c 7.3.171 -38e90f8e7c56ea752ddeef1310854679 7.3.172 -9265e7ca265d58278475cdb4c981b8dd 7.3.173 -3e594ed292b1f2f19a5c9f4906c1479a 7.3.174 -acb7321db8f740b6671765185603a718 7.3.175 -6712e5eebfc7132b4d23044854c29cde 7.3.176 -687088eda45ccf1fdd83e0ce18cdbeb9 7.3.177 -44e37b259178bbea8de1aad8744b639c 7.3.178 -ef97eecd1643ae1375c2141b42ff2a8f 7.3.179 -85efa44de886e0e84914b13f7e356cd3 7.3.180 -a41871ead65ba67d0e91f46e4ed31d74 7.3.181 -a496deb8e705a15931566cc54de95b0e 7.3.182 -a5a93687afc2acb93caed156c5990507 7.3.183 -79db5edf359097848c50baa8e9f1de66 7.3.184 -5a466b6c01d84c6f3b58b409ec77147f 7.3.185 -2073073b84c308648bcc222a6e0e396b 7.3.186 -0aebb3a0fcf78937c8f4930de20fdb09 7.3.187 -665e541c24f5571bb07354a4a6441a28 7.3.188 -540131415452ba4cfa01332ab60571e4 7.3.189 -55d0ac5b715fabce51a05bf8380f6c01 7.3.190 -895a121a97504929ebd5a7a8eb67a2a3 7.3.191 -3b957b9de63a93a30e4c1ee7e9def7c9 7.3.192 -b37da657ae0b51f8181eb8a31d6cc4e8 7.3.193 -c911d5f14e34c8d0c1d3abea73bc830d 7.3.194 -dc09888cdc86f980789cd22889df0bcd 7.3.195 -fb396c9c2e57daf55fdba63635208985 7.3.196 -448eca99d96f5f5c4ddbe05e66ebf812 7.3.197 -d977fa831208ee16503b87a3a29673fe 7.3.198 -39028c76f0b15f9d014b050fb222d24a 7.3.199 -2dd2f0cd5b9af8f127fa02b3d838dd2f 7.3.200 -c1cd1bdaa61c6ab76a39dc59926781ef 7.3.201 -88de82991d04a741c1038f8ce061c5c7 7.3.202 -0d460c9ad9cfac6074960000ff98be7e 7.3.203 -07443373d2221a375988d58e25935599 7.3.204 -857f19149697b27088447bbac1dac8a2 7.3.205 -f6c7f47221c0459c7742a82163b875ec 7.3.206 -8345c7411daf0d5874569aecc00116d6 7.3.207 -305b1a2aca53880ae175bcf5c8b8677c 7.3.208 -318086a8e28f1ef629c447410bcfd5bb 7.3.209 -fc829046b2c27d7255bd41ee53c6bdf3 7.3.210 -3e6c6aeadc3e4442426db92774030fcc 7.3.211 -3fb34281705b6e665b9ec2dbe4529170 7.3.212 -1c2fb1aec7b85b941d4459e65dbf6be2 7.3.213 -d4dc20af8f15778ddea5669ee758d8c1 7.3.214 -ab31988223b9ec68c551ef2e493049d6 7.3.215 -8bfadd46248bbfbe7979d1d6161befc2 7.3.216 -d42c9de414acf351e37f19af168905bc 7.3.217 -6d01c2640c6c27c4b52462d6fb932598 7.3.218 -b723228570479525596d8ecb801d9c76 7.3.219 -36dd4e49c8d0a7407cd3447ce11c0aff 7.3.220 -11791e6072d3237424c0f383835a4b7f 7.3.221 -4a084d6e010fc5c31a89478a918ebe53 7.3.222 -fb57886a2e3e9791b87d68fbc9eef52f 7.3.223 -0b9747a5a0465d7fe543f8b61ffc9b06 7.3.224 -3a36d002f35d54e7e71da0cde224534b 7.3.225 -caa99b2aba3d2f64d4da35c28d4e6ef8 7.3.226 -4e0baffb29e3e38487c4206c78ea515c 7.3.227 -511c6f3ee0703d2b1380c72c7d296e6f 7.3.228 -14997e70581cfb6ff6f2388789171e33 7.3.229 -17259f324289a8e398a3acfba915b979 7.3.230 -97d5c45f8962fc301ca53ce8c5ecc7eb 7.3.231 -4601b72331313fbd68789673055020a8 7.3.232 -d00dd333810b99a9c34ea9fe44c6dec7 7.3.233 -e93dd1dcf4659ad7f7a31d186842180d 7.3.234 -78e79d2172140d6cb26012859d2b765e 7.3.235 -f48a731e37bb068a11615fc84b13d9b4 7.3.236 -ae4c4ba1a880872d735e33d721847f82 7.3.237 -d7b91bce232cc3592aee0b999f2260ce 7.3.238 -45c528a5991e5269d0f99f1bd60a1108 7.3.239 -e73f15b7f1a7cf257a126a797bc1024e 7.3.240 -f32f5f0c4c437f7f661bfe1bbd03924f 7.3.241 -4071af06946723d29a502a0a005ad79a 7.3.242 -93d093ed4a247ebfd9d485e1949b73c6 7.3.243 -0eaf4bd3d26ed9760901e9dbefc0a631 7.3.244 -7906c8701fcfc608c2845937c58d4ebe 7.3.245 -514a57d874e75020342622e3031ff1f6 7.3.246 -0cc613cf226c3eb2b2c6992f6abf8fa6 7.3.247 -36aa885fdfb0ae812b3f3371ee178b7d 7.3.248 -2f1a1c835e46e409ca62a906b014bead 7.3.249 -e3c8db05d35f495ab87f2bd7d6f0798c 7.3.250 -8fad46eda9f29a79b852f9761951b528 7.3.251 -54e0f0c2d867cc3e9dc0d619ceab2fa0 7.3.252 -1dba332eda89257de3b4ab6bb7df2ffb 7.3.253 -42135c50e9b0de895fea643b9fbf31ff 7.3.254 -90e0151fc8c6516315a0aae7e659e493 7.3.255 -ff7faa0e5f65cd23c72658a6769be01d 7.3.256 -eefe321ea81f64d5900b0c22807d1548 7.3.257 -e491344e65975e1bd57b2e2e98c3f37c 7.3.258 -408ef7a75b952a1eff9748ee84e3efd7 7.3.259 -2b978f84b6938e6987c8bfa7381f8149 7.3.260 -5b1be0859bacd79aa4a5825797188891 7.3.261 -b6c7e75eff8c8be855f9edd6de76d2b9 7.3.262 -cdcd0dcc3d01f637631d1a0978ebbd16 7.3.263 -cec9db6615a9151e4c8198dcee8b24a7 7.3.264 -93a2c2ac7d15bec2bf9d6534dc502831 7.3.265 -f1898db88e6e05f22fa6aed6651d34ab 7.3.266 -cc87a858ec150f68f9ce8b232940251a 7.3.267 -2828b282286cadc7d87f0d5de269ae87 7.3.268 -c932150eb67cfb4e1c2f4acf46c6b26f 7.3.269 -b9f9d97811f71c5c6adc9500291e8461 7.3.270 -65b0d9a7038a8d9bb0e775f7119339fe 7.3.271 -8002a6bfd7a00b0172d7a418fdf224ed 7.3.272 -280cd76f9ab8ddf770de28676da14cb6 7.3.273 -d2adf98337891833e14fffd57a817620 7.3.274 -44a14ef64d626da28dbc5a1185ed388c 7.3.275 -691dced900aa8bfdd383fa897cc1acbf 7.3.276 -733dc08c161153f78a2c1de92354f804 7.3.277 -674a40b783070104e8e345a56ff1c699 7.3.278 -b91fba133b43d359c7ee2efb9a768b0d 7.3.279 -355e64bf598184b8ca30f8c686d644cc 7.3.280 -662b3d7aa861ec265b36e96410e24dbb 7.3.281 -2e67fffc2588006857c608a2255ddbdd 7.3.282 -21db9145e815b8ac9850d1952da93252 7.3.283 -033eba7e15012d3bcc7ba59c0bae6ede 7.3.284 -d80855715545d181da083a6fcad20391 7.3.285 -aadb1134e05f13d3ba26aa7282068a02 7.3.286 -049b56c1e98fe411d1f2725695966c09 7.3.287 -2cf39d26f643528c7bf9598a5259601e 7.3.288 -89fa11603ddc5960cccecc9e430b61e0 7.3.289 -aa1c97edcd24877fb7fae3c366c05577 7.3.290 -b52a5034ac4817a05c42541b384161eb 7.3.291 -b364c4dab831803d9854d0161aad6a7a 7.3.292 -f612a0927d40cea71778b484eeb7f111 7.3.293 -25c1d60c4ef4f2e3b35fb56a626676ab 7.3.294 -6c94c99c2fbc246f12785b59e341b747 7.3.295 -5ac3dce88881544eb7b465938dbcb94d 7.3.296 -31782093d3af5044ad2db1373a743fdb 7.3.297 -fd444f0a6aec3a5ddf1999f8fa6986e4 7.3.298 -4ee221a91a9926acaac5f89567e7d265 7.3.299 -4244a43b9c668a9bf29dfe04ea35aa70 7.3.300 -ec895a0a0b76b876c2c82492b203d471 7.3.301 -379ec4b8a77d69e54dc4a68944aac3bd 7.3.302 -78e5137c1ae5471b488d75c942d11cc6 7.3.303 -5a3a569d90d20ba8123cc9639d3e7305 7.3.304 -fd76f9e109875f3d4ae9ab152e49ab33 7.3.305 -cd08fe30975fe10f335815362f7f16ed 7.3.306 -6c3d8d62e49f03b5ba253fbd4f3619c7 7.3.307 -8aa8df0fad4c62dfdc59bc109d80e821 7.3.308 -267da2c42e8fd7958ca923a28f95de21 7.3.309 -464e1df22d56232a5e3c83641d2d5386 7.3.310 -39dbb4123a171f0b76f2f9ff24b56e4c 7.3.311 -f312b59b21aa02ce81efeefa949a8508 7.3.312 -a3b75ee13b25ad9189c480fdab885d96 7.3.313 -48977a05c541f1a731ec2ac4e4fb33cd 7.3.314 -192672f46b60d35b71cd3ce94223ea4a 7.3.315 -d8ded5524850fedee9cab77d850f9c03 7.3.316 -7375af7c6204c64705c6fb39734d65e8 7.3.317 -4d710806ecd74804b893c8cdb17e5227 7.3.318 -acbfc765ebe3c47d46e787a7a54c53cd 7.3.319 -af858d90cfeb2d720202203ada0d2693 7.3.320 -3bc5ad99e7ca30cb8450025677755603 7.3.321 -2c79f0a412531bf08c1a2b36a5047d0f 7.3.322 -d246f24b49c15257fe5b305a98ab427f 7.3.323 -c5fd07c7ffa879cf76da06130688f2e2 7.3.324 -7e3098ed5d6228eb8bc823d09409163d 7.3.325 -1b9abd209e33e4fee02892bcfaad29a1 7.3.326 -cd25f51cc118dfde45a873af2d1dde95 7.3.327 -ed256a9ad43fc919ec816c8f79f28f5c 7.3.328 -2b067cc0b8f36cade83d6bf28f2f28f2 7.3.329 -b4c9c95eee16d19d2b9713bc1b60f696 7.3.330 -bb075b263860ed1b80b5bcbe5a57d423 7.3.331 -d7832ef5a54508dacc105e287874a00b 7.3.332 -accb06d73f1463893da2afb501f466fa 7.3.333 -bdf932190d677b98362dae52cf6eadb1 7.3.334 -26766ba9ea0ab84233e2b29332f796fa 7.3.335 -2ddc5da7409fdd5b3c8d10afef6b1ca9 7.3.336 -24691aeaec5277d0afb4106b40ae267e 7.3.337 -54ff1e2fea2a16965959a9f42b8b5fc9 7.3.338 -620d15666807ab219620954ea6fdca1f 7.3.339 -c3ab5f6227530ab9ca6af494cbf77fea 7.3.340 -8326d6b339724dfe5fc99fadc7c57bf0 7.3.341 -362087e621fe59f13f2ef1ef1cb74e50 7.3.342 -869bd67eb3f1e62fd9f5097fea9472d4 7.3.343 -e3d9a945f29f7ceba3e0330e2e510344 7.3.344 -22ed2d9938820b2c99129d8724849304 7.3.345 -ba18fbdc38d774c05ac02bb413f0bb3d 7.3.346 -07e51c946abcdf904cf6856548fa7145 7.3.347 -3b75c5e11e5ef2a62fd0b02e35b71ad8 7.3.348 -fd58c8ce31e087d9a81301addf816767 7.3.349 -8c8025ab73b595e112f8d32d9ac5ef3d 7.3.350 -4d1587f7394e609c5cfb3d3e506b4abe 7.3.351 -fb4251e16f07b76c2bc51b62aaa58735 7.3.352 -f7c88e37014346eeeaeb952b15100b2e 7.3.353 -5208450dac9cd0de8778a236fa72eb08 7.3.354 -d3f5578199874f3234395c33a1eb5461 7.3.355 -6050fae12e337fea78d14e54b4ba3370 7.3.356 -67c7d610d9d58f4c2105eb05dc1522cb 7.3.357 -455fbdbc0a1fefbf94614c829b544511 7.3.358 -1de4c717ec20d7ecded0f84c57cae132 7.3.359 -350dec5064be57bf8928d667a4d40fad 7.3.360 -6f13d2d8f231de47e7ba61072ccea891 7.3.361 -a471ecbbf370fc02b66fc1584c471691 7.3.362 -33fd36b5070c8b35f6cd9e7f22ea23a7 7.3.363 -14f3ec8d4b379eaf47ed1db484d978f7 7.3.364 -5e7813749abb3ebc7ab9e68a1b3e68c2 7.3.365 -c6331acdb22f8c4d499ca581a705ebb8 7.3.366 -f2fdb72b39438f7027c4be24db25b117 7.3.367 -3a8195f83b2d32d8c2032e26716b9f09 7.3.368 -359bc85c3cd63d0fbb6bc5961f72c739 7.3.369 -25f119547ac48f878b3332befc2649cb 7.3.370 -d36fdfdf639394605ea2b308707d6615 7.3.371 -ad0ddf9295efc3294c773381e5e67fe4 7.3.372 -8442d50d418cedec8b2d635644740d5a 7.3.373 -5c95728de7d9a3c4c3987bcde0650778 7.3.374 -c61c2d446414bf1cab32807c389e2e7c 7.3.375 -444c16fa4146e89b2bc9d32b4da2f7c1 7.3.376 -6ed79f1c361f8c0eb2966a55f3ad52f9 7.3.377 -7b191891dc5f67b99bbdbadf976ac845 7.3.378 -a839cc831d81b6d34dfe90627fe8cf09 7.3.379 -24701c12673b2bf379298345d60f37b3 7.3.380 -a9067b6c0641a17f38e2e97301621673 7.3.381 -349a3d34953464b3688bc31469976f24 7.3.382 -20ba52799f0c3d27c478f011472c0022 7.3.383 -6d5298b6a20256ffcc2cf3e65736d387 7.3.384 -69d842f7ced3d84a35044f9c18c3c6e3 7.3.385 -fd5466d49d7c63643554483b15fa97f6 7.3.386 -0315176916ce9ee581e182f87e016179 7.3.387 -41c28b63e3c84682507228be16af2aa7 7.3.388 -ef42ae9d02239408085ee168e514145f 7.3.389 -be7aafd0a6e9dc35983b72382847b88e 7.3.390 -08870e0a7fddac2855b28cfc5fd6bc21 7.3.391 -9f0362cffe6065ca1d3e5f18b78ab5ff 7.3.392 -50fbce54fba5517687bc39bba7636631 7.3.393 -3b6c224a46a6bed39d88ef94287b4920 7.3.394 -5d8e7c36cd9cd6b647e449a71c811c46 7.3.395 -c91ef87675629cd3fab98b28c8bd6057 7.3.396 -825e916750badaa31f74412f7da69e75 7.3.397 -d3cbffdac50dba36e582c6c3b8d6cf3d 7.3.398 -781b1678b00044498e250a6abd89151b 7.3.399 -456655a8e098a1f36611b526489ec4c6 7.3.400 -22b340b307838db563b5a9a8f9c646bb 7.3.401 -26efa76a8cfc8b926540c099a8a7044b 7.3.402 -6fea59460369918ae54b846f3e876ac8 7.3.403 -a9032b6e58b10d8082547f4a9a98218e 7.3.404 -6210b92d8079bff8eb374ec448defbe9 7.3.405 -388afd617c74b67cbaa5f80016877be2 7.3.406 -120b0a9eed884ce705f482d560021435 7.3.407 -7030a491640aa1b42ec864dbd8ed21cc 7.3.408 -d82c2051756cdd5dd802473f4211e457 7.3.409 -29ccb4bbda97575b4da43a60c8d1d26a 7.3.410 -ff25ffb70dd1186d94c1abe967d5f236 7.3.411 -266abd1bd01cafc7e6547010927933de 7.3.412 -a856fce6bb3cfd1a18a883d2015cdf93 7.3.413 -ed1728eda523c254f73c53cfa4049f98 7.3.414 -2ecb53a65f1e860805c3e76de6649810 7.3.415 -7c4d240cd697a5059215cf30031fdb67 7.3.416 -80bc77423d32592e86fe3878e4c9132a 7.3.417 -e29cd40e83a815bbf5f184a21faec19b 7.3.418 -500806b4fb0f70a9d28d39fd78977c5a 7.3.419 -52ca17111e0b0cfd86a6295f47ccb4de 7.3.420 -da9cd8687afd5226942c732fa3969c48 7.3.421 -137378088538084ac84414b06ed194d2 7.3.422 -1be05403e55b1e7386aa1ba1e9b164a1 7.3.423 -553b897f34b415438149fa1dd62c1cb2 7.3.424 -d65d21569ea9357ab8213b24d5bb3edf 7.3.425 -b0a25aeb502e7dccbd33086fc43bb3d5 7.3.426 -bd27e7c5084ad505689ffe234995c340 7.3.427 -c28f26ba59d4495eee3bc76f887662dd 7.3.428 -041c4bcff7b0a9d511eee0d15dbd97f9 7.3.429 -d37e30c3c09cc3c8d031d2f43d9ae58a 7.3.430 -6ea544142e91749e20ec152960cd7898 7.3.431 -27e2fbee220f1317092cd912f869ccde 7.3.432 -dd06ca07e6cd631a643c0455e7a8260b 7.3.433 -c42d11497c9a3a8310ae88f68e663a54 7.3.434 -a9d3a628cd575fac524db5728dd5919c 7.3.435 -b344d4c8afd0a565cfc5ef2a8c6ea62d 7.3.436 -84a6a23e44ee608c116206c5d986fadf 7.3.437 -5e2ac3a4d3400ee3f3790dc0db666a2c 7.3.438 -2b254fc7a6239be6c5488b186abcead9 7.3.439 -ca0f48ad05bd78667af7bf8b33918e1b 7.3.440 -398511e171699e02a717f6082fa31cec 7.3.441 -c2d2d211b377baf66945b3ab3ed4ae26 7.3.442 -78d8d9a2cb8b2da74ac6cb14d48c7550 7.3.443 -d9e4dff7d98129632750ec85492007bc 7.3.444 -11b865b2056b62864ee74ff6d14ceb05 7.3.445 -4314432b04672e0de08abf10c496878f 7.3.446 -3cd998afdb75bf0c383677a891e83e95 7.3.447 -ea30682770af33ee88f1ead239a8e842 7.3.448 -9caa72ee17f6d53d717504981ee75b85 7.3.449 -c182c9886fa2d5bbd6838f72ad8ce093 7.3.450 -cc461810141649483487a68e1bc1adfe 7.3.451 -a1c39615067b40fdf41ae6f588fd9d75 7.3.452 -7b1a46036cb3315e158702c8e4fc8f85 7.3.453 -4f5988e78327ecaed626ecc545756d3b 7.3.454 -979fa19eda9c88fd7a10bbb08b3d0061 7.3.455 -fcf786d70a06e66d98dd0c0946db32d5 7.3.456 -7acba3727d06dd93d5f8e6e74f8dc6a5 7.3.457 -e92eb0f6eb4b9c13faec3e4bffa08949 7.3.458 -cf8b7072cc45f1e44409c0c7ecca8d49 7.3.459 -f7a99e67e2673f753c1ca7091a4d76db 7.3.460 -3c14adaf6d81d131b1fc2a95811d7aea 7.3.461 -c4202a428ac13e833639beb0e74543a2 7.3.462 -615b00a39aef680b62035f53af6efbcf 7.3.463 -d354dc85be61cdd6fe19a3e451ec1b2c 7.3.464 -ede6c2f3ed8705f394ff827e424b0dc7 7.3.465 -9f50c30a4003705472dc593eeec8d991 7.3.466 -47910a4c4c91aac42d677959d447d07f 7.3.467 -a4ea7d57a28fe607cc1d30271d717419 7.3.468 -f93fc094d5c7851018a14792c28cb3e5 7.3.469 -3a5ec43a7016b47afa311c4f1038633d 7.3.470 -aad7c2ad4b4e6b94ec46e9b2863fd330 7.3.471 -86411483bc6cfd20dd06b47ae91d66b7 7.3.472 -99d5c3ed66497f0e653078a4668156a3 7.3.473 -44723cb5a3f4d5564dfebfe846884764 7.3.474 -40e8bafa5e22efb3ba080e3d62bca7e9 7.3.475 -3d2c5a2b5c1076ab5efd2a754b89b90b 7.3.476 -7b0ed92c340f1f0ea2683949f94d5611 7.3.477 -9d3f8ac8dab7c056b84acc93fa57cd6f 7.3.478 -804be1bb570a94ae546aa25b624ea794 7.3.479 -b373d6f49bb360ea6a3c9926c285185c 7.3.480 -7a82d7511b366b2b5f85d9c2a7455f01 7.3.481 -bc79f4d76bfabb779bc7d6b9a64cd64b 7.3.482 -adb74ecb63693c37c643285ba92e44de 7.3.483 -86792ebdd7cc76bec160132c9d33b636 7.3.484 -42c48b198a8061eda180e2311a7534d4 7.3.485 -276bc5a9a7fd8dc927c23b26f643033e 7.3.486 -31007729cff7767cbf220a9b68b194f6 7.3.487 -e1ce3eabeb588b06ce7dddf487f2499a 7.3.488 -3b2dd5536346a54e36b4e03cd0d824ff 7.3.489 -8ae394bb4c88bef95a1024d6364b38b6 7.3.490 -328e9b2d8a31d7c788264483a80e9250 7.3.491 -68c3491611b8150e0ae968a1ea8affe7 7.3.492 -f5d9ada83869fed1d0d91df88c5a9485 7.3.493 -c3a23838992f56b4636e2627eb143924 7.3.494 -888e9843615e3338ab83fd8c66737433 7.3.495 -a8703d0685fa90bc069d308f7b51bb06 7.3.496 -426610e23cad87328eb082d625d1ee62 7.3.497 -329e2214a8a8b545c05fd86adfe8c1bd 7.3.498 -43c0172dd764412d60faa14c6e6666ec 7.3.499 -f3cf44f98a0238c71024dc631d0ec606 7.3.500 -924ab81950b8a7f25b1d55026fafd6b9 7.3.501 -5c8f12ae2e510b05ba067b17cf49893c 7.3.502 -e41bbf789908cf09df630261e3d69e01 7.3.503 -80ea5159a3edf49b58783becfaa39a5d 7.3.504 -912f7d8c2238f094624b785ca7786585 7.3.505 -22600e53470552074a0aa14b8ddad4f6 7.3.506 -dcce2bcae112b2f374928d043bdad9a8 7.3.507 -8b8df2d863d70954d9e26044fb4e0cbd 7.3.508 -4d7e21eaabea5af10755f28f09f827e3 7.3.509 -2eb7b0cb6063f550285f089e754f92a9 7.3.510 -d3b2614aff5849ebf6bb9ac3d89c19ff 7.3.511 -78256e47b0fff030269cbad57b2597e6 7.3.512 -1288d660de7c01fa185dcfc5004c5293 7.3.513 -7428cc377b36f4fe7afd3dde5fa21b61 7.3.514 -b3c5e3a4590ef7e6a075d1b90149c9ac 7.3.515 -0206b98c70fd2c94fc5ff6eaf14f0959 7.3.516 -0e0afa5a9d1dd586bde50703c96ac3a4 7.3.517 -349c2ddac116f97c31b1bd9b88b72b9b 7.3.518 -6106eecd3408726079fcdd12c1425312 7.3.519 -6da6f66434c93887375b556c857a30c6 7.3.520 -507d6e5854c12c694d4812bdfac2548c 7.3.521 -b6b1b25d63291d989e099103f04bdcb6 7.3.522 -0cf738ba8f7d390756fe8e766eaf3d39 7.3.523 -0b0267864da69c4f122e2353d498c487 7.3.524 -9e17f57c70c2c891fad93806c5e6d705 7.3.525 -336e0620ca9eb9c7f342a632efdf8cbd 7.3.526 -c5de73860845db1db28ae99e295c3792 7.3.527 -a9ea4c3f95d297b158453bfffbb40a99 7.3.528 -18ae440b390439ff2fbede969f9c8a1e 7.3.529 -271e2e9de4dfa37289e48f64a6553500 7.3.530 -869bc6b81597a1fced9392bbd8f8fc5a 7.3.531 -a8da4dec0857a9490a2d8778d1124c47 7.3.532 -bb141feaec8df351d1f6699e40a039b9 7.3.533 -92faaab0e90f8480cb9753f486a4e873 7.3.534 -c897a13a04cf5c584bd615b5c6c7c584 7.3.535 -266c83d93a028c5c41e419e545f5b300 7.3.536 -29ed0928f7357b857487c04c317164be 7.3.537 -fe980b731ba1207ffd3e84529bf71ddd 7.3.538 -af3e4fd995f5de5a6177cfd437e13613 7.3.539 -ce419c1403948bb41355f337723ecf4b 7.3.540 -4de666301e91871c38b53063f8e50cf5 7.3.541 -f2282f6c276031b5ac10b1c26b249259 7.3.542 -46291292966ee035181d88ba0def3e9f 7.3.543 -b36f4a6d591216074f059e30185b795b 7.3.544 -4477450c8ebc25f53c69849fde47961a 7.3.545 -5ca25f97d2e8248b0d6063a9ac6067a0 7.3.546 -f5eb24c91a950cbb8bb4197a0c9576c9 7.3.547 -dc458cfe8ffc6b9398c1e2ce9f53d03b 7.3.548 -ad975396a8c6ff6072726a22a449d82b 7.3.549 -1b9a430451c381730566b6997989226c 7.3.550 -46562714604afdaea878000c4c3d207e 7.3.551 -e9ec165f500549d7df5ba1dca13afc9d 7.3.552 -23a5ab0155214e8f0f2c1aaa71950cbc 7.3.553 -dfffb7b5c54c5d9ec8b0dc71e67a2658 7.3.554 -f6c9f15f23e28773411d643afea566e2 7.3.555 -0ea7e9762a526fc078579429e5cb5204 7.3.556 -37b4e98e68f9168dbe170d45cfaee752 7.3.557 -d55e7cb7d754eaa45becba8997f63e1d 7.3.558 -29f57c3b174c62a113a89fd670476e45 7.3.559 -601e5ae0b7aab3e9bfd740913b4de6ad 7.3.560 -eebc28cbb5b8b50152381389714255c5 7.3.561 -9bfdb1b2c2ad5507709e5d087f73cd69 7.3.562 -02e44731e5a40f1f513e1bab93e0c922 7.3.563 -7dab4d26defce84174fc1ce40968f7cd 7.3.564 -bab851bc6d1cacc5b2aa9357091b5850 7.3.565 -a7fc27c3f13890f7985efbf21f436984 7.3.566 -118aea4f408d18c39594ffe2be2d5654 7.3.567 -d222ae3e9bdcfe27e7e56706196afb07 7.3.568 -4fad201269a1868121088104ba2e2cf8 7.3.569 -b0c8bcdb5bca31cda0e3347ed2707e11 7.3.570 -94a1e5061ed54d8c284bf9e9a7a80893 7.3.571 -c8d48801d35d30965c6bef1617271c0d 7.3.572 -d564977f585a6beadc81f3cced20365d 7.3.573 -df348e7ad84f9eb22a90965de5c33799 7.3.574 -749c07df5e36cbd342c3cd9c27d37753 7.3.575 -bafb6e85f0ed5cdb2bb6fa66d83e5219 7.3.576 -e2167696fe85109810cdc8dac0319882 7.3.577 -ce1cd1adadf03ccea372b31059e456ef 7.3.578 -1069ca066d1677e6a4d8e6bc7cda9c1a 7.3.579 -2c8c1c8c879e23f67c7148ee295720f3 7.3.580 -da732dc847b52e0a79a7a95b5496c653 7.3.581 -c81f20d3e7cfe5329a713737fbe6b3a7 7.3.582 -237ca7dc39ffce18d36e778ffd02ef36 7.3.583 -f379b5fb12af3de41d9d966dd6a00bf7 7.3.584 -f4198c4adb7e8746419fbbef68e0a359 7.3.585 -c9f9ee1f94ca881ff6d6640d448a11f1 7.3.586 -f719b5433676977fc5be497cf63b7741 7.3.587 -1669475093547d2f1acc962913528ba9 7.3.588 -c29b13cc89b6c9d72b7d6ae7a92992eb 7.3.589 -352429b56533ba2435e9cf0580097816 7.3.590 -0aee68dbfaaf1afca1244aac3f0b8e6e 7.3.591 -0324c77762c95a4e5668e1b16b4db6c6 7.3.592 -43cd0694cf7ffb60df7d0c34fd631f1f 7.3.593 -966985f5120f5b19080572a4c7958e6b 7.3.594 -d8ecce5da4c377575ce716aeb5f8087c 7.3.595 -e26f6a6804528d875fc3c3241a87f1b3 7.3.596 -c8aebdb727582e57af6be60072f72dae 7.3.597 -9e8b68256c897ef68b33b5d1e268d567 7.3.598 -48920cdf55ae40362efea9fb3c837296 7.3.599 -76222146210a1a5c4ee01d6bf892febb 7.3.600 -0476e6804ba298a664a9d616c2cc9ef3 7.3.601 -e48ef9748a38098f0a635a5f7e0e31ed 7.3.602 -8de3946060c2ac76ca88e50f44b8ece3 7.3.603 -4eae3d63f205a6608bb40e1d7865f5d8 7.3.604 -3576ee02d1746fc657e808079fc47df0 7.3.605 -8946d8ef910bd7d1a2d3c9828d07544e 7.3.606 -bee3ee47bc46604c39baee585be293ba 7.3.607 -652af92be8dfdac047c7beba45a1ba99 7.3.608 -b46cb8c9884ed0ebbadca26d8a9a4118 7.3.609 -73955c09f53a41bd61083a27882810d8 7.3.610 -96534cdfbc2b758eae95fc0f75b5382d 7.3.611 -b3a601f290f2de1bde0465db6dd51e8f 7.3.612 -2f0704a264e2bfc6da3ae7645d0d8d94 7.3.613 -b379d7849f65b805d919a117046653d9 7.3.614 -1d356280b1e9c94bd468ff90db84999d 7.3.615 -227bd899c6ddd5d132224f81c8a0e775 7.3.616 -638e706969de129cca5ae48885f4382c 7.3.617 -085829e53587ae2fa0332cefdd7c3103 7.3.618 -90cec71f1974a3af93323ee4c2059239 7.3.619 -69bcebf038995bd725a54815091433bb 7.3.620 -02efde0de0afa307653fdbb008687a80 7.3.621 -21cdf0443f83de89d2e4b4f84da9569f 7.3.622 -da953a8f9d5d0f483ee7ce4aaf97d564 7.3.623 -36f3829c4a57e55bfb9a39f7cd1735b5 7.3.624 -35da55de3e906fe1e57c2219122579f5 7.3.625 -becff97ecc29fa653983f531f740d861 7.3.626 -f08883ed102ba663e9a5eb797bb7be84 7.3.627 -35a5ea0bd9b039eacf360323e65380b1 7.3.628 -f41c374b71cc8e8c753d3af3521d4a32 7.3.629 -b9a248eeb6bf38f8930cc0315bc1de8f 7.3.630 -701083254e53d9c95fef75a926cb6c7d 7.3.631 -155df5cf0314931f6f7d1860ea77f2d2 7.3.632 -5f0254fdf2a5d256d39ea54060eff41c 7.3.633 -7013ada217b84af75ddb02b0ea181c3a 7.3.634 -28c0360c7323aa5d2cb52767e0ec74f0 7.3.635 -43d7c83dfeb4fad1829a8634745b55a1 7.3.636 -e76d954bae1a76dbeab2a2b4bdfb4308 7.3.637 -42d9c2dfdb505d9d58a9f9ec924250ad 7.3.638 -ae8e9ed38d39091beed265818d3b8a2e 7.3.639 -2e7e7758536e2e22548a38935890695a 7.3.640 -c01f869a60f3a2b50935e807c76d95da 7.3.641 -043004b7a42f71b2be465cc4829f15e0 7.3.642 -17ecc5f7482a3eead289b432c72f29d6 7.3.643 -83dc413bcfcb3c154f248b435e67b0ef 7.3.644 -3b11f430ceb7474fead9a577d5dcf327 7.3.645 -a0a8131dcc472a78362f11772b6408db 7.3.646 -f7d710eb395fb90b9f24cb2a15e69aed 7.3.647 -1356de03af7da1f43fb7afe9cf30fbb5 7.3.648 -b3c336f40f6b564d3890c9659305f3b7 7.3.649 -772a6293443ad6ac9df0c5397bb71a41 7.3.650 -e6389f21300ec51fa723d64dbf1bd97a 7.3.651 -a8ea4c76eb1daf26c14595ef77029c27 7.3.652 -e65adfbc6e793d67d5c9ecfa3a00903e 7.3.653 -ca3dab18ee91cc5b7ec26fc23372bdd6 7.3.654 -ccfc8ef1dae6e6a25d530cb94c8f882f 7.3.655 -634384d0e9bbf8eb66d5c2c597bcc2d6 7.3.656 -e396c1b0455699a5767d568f6e42b30b 7.3.657 -fe1c21dd1e8d7ef6479b1e3491e60b92 7.3.658 -01a2677308db295311003872c176f907 7.3.659 -2c6411e804089d4b8e7740701365143f 7.3.660 -4c407322041b0d2be237704cc0ce1e79 7.3.661 -a1c125774e82a6dd3a62ac85cc6e25ae 7.3.662 -53a8658df813bcf9ff4b296b5ca075f3 7.3.663 -8d53a150a50dd1af9f7c2d2715482b57 7.3.664 -cb6e506a26884804afc49ddac08aa040 7.3.665 -ddb827b7e4d0f4e77b591eaabef42499 7.3.666 -6d116c937bb0f74dde0d61bf76fc209d 7.3.667 -1f000a3231eaed8b7f857d8f55c2b798 7.3.668 -f8d544b185a2bec049c16958fa8821c0 7.3.669 -15b268096d901016abb6dbdad8d9dd2a 7.3.670 -456fd9d031b995c14f9bb21945e83c79 7.3.671 -ee940b5d7fec05c2eaaac0f3ab4ae7f5 7.3.672 -90947aa4094e2944bc27923b186d6943 7.3.673 -5f20b8c5b6986fc26e344381e5ad0977 7.3.674 -18194e59371649d3930f55ca05200e29 7.3.675 -3abe3fc89eb54cdbfa7d08557987cc8b 7.3.676 -9b6243de57af010b3e57d90a7e69a075 7.3.677 -012fc6d1489e1c6be73952697c180038 7.3.678 -1acd608501c119734085f5b69205a797 7.3.679 -ef2d29e8f48447fb3597f2aca40dc4ed 7.3.680 -277c37e4a3c8b263be0f33cbbe6986b1 7.3.681 -009a08f90a4514bcdc0ad19940b91af9 7.3.682 -73125bf6fca5aef494c4c4a27cf9d84c 7.3.683 -d0133c338d5841f1f8818e38e286a518 7.3.684 -37080ef3e4ff09e7f7de092849af68f0 7.3.685 -a7208adeeaa0e20a20b4db55274b19a2 7.3.686 -29a87e724798d68b58351051232f321a 7.3.687 -92777d7e1b029576e0066973fdce0563 7.3.688 -54199fe735f735613e9c6308387f1e31 7.3.689 -42033c6c57e7656ab3d44b8585a260e3 7.3.690 -c4dbe0ca1ac4017686e8dc4027ed056d 7.3.691 -58e3cb2304e79be3d9767189dbb21f49 7.3.692 -4d55900c4ffebf154faac273d57e84e4 7.3.693 -380b60bac510e0ba7e2193af2e3d503e 7.3.694 -a5886f87f798247c2100408fc3b1f6eb 7.3.695 -4434809fd03593ff4b6572cb35d58b40 7.3.696 -f0cec7cd723e33c22c7875e4e95ca71e 7.3.697 -85b50f9d94ec1eac1bfbc116a4ed09a8 7.3.698 -7eb362619743a5dd17b75915d741a39a 7.3.699 -c2fd1cd1b95084d1ccbce8881511b6ed 7.3.700 -fd0a4d9fbde1645b36a181b5ab54b26e 7.3.701 -f7a5b36d208f3442cbbdd347f3a42563 7.3.702 -5ab9e64caf1f760e6d1ef08d4c399c69 7.3.703 -9c0510d0f2ca3438d7b43563e5a12f2e 7.3.704 -bf172f99cb4a39f5b88f944f31b5f9c6 7.3.705 -065ba8d9038326766bb185332b2ff0a3 7.3.706 -c65424ea7df82ec5cbad5e26980a9211 7.3.707 -9629be9c7269cf5112e35d8eaea035a1 7.3.708 -c3988f2feac4f893f3a1ec933a504bdf 7.3.709 -2c7895a305d50f2ea640df9bffe73c33 7.3.710 -3536102ddedcc5412bc6bd347dead877 7.3.711 -53e0c374077627a7dc14acfd656e2b8d 7.3.712 -964b33d3a08aca14c308548f7e196d8b 7.3.713 -f073950bc171acde05e46eeff5b1d188 7.3.714 -c30b3382b17a476f8e4515079b821879 7.3.715 -f7175afb792a76dfe637620127254389 7.3.716 -0d5dd059ef01650364638df7fdf71aa6 7.3.717 -b677364d9169cee792d6d1a5ce018f37 7.3.718 -a8cc9678c21aaa3a3df47fa49ea1d19b 7.3.719 -d158ea2c0180c3a2a78e3e4f852259c9 7.3.720 -49e4ee8774f421bd7c686c10b6cdd16b 7.3.721 -d4275057101d6d3d0d7ebf907577d2a2 7.3.722 -a8050ec35042e9fd51475fd1048bf54b 7.3.723 -1c7ba44c19b1775722678a54e008b20c 7.3.724 -1dd2c402290b87d89ee4b130694a8f9c 7.3.725 -585b01a15ed8f8b63d40c62c75b9d5cb 7.3.726 -ab89149d96d541346fafabe621ef4885 7.3.727 -8c98d6b2ecd613c84560a2856051ee91 7.3.728 -0d6e1d700d8aea1cb98d918691395c1e 7.3.729 -6884a0da581af8ca961439fba8d5d01e 7.3.730 -d990f67daf2bff5b87717d98ff0ca00f 7.3.731 -a5000fa5de2a7fecb2953e2449b93d56 7.3.732 -b9ab33bb195ed0ba2ee2417b9d0228d6 7.3.733 -50bdbfc91cd20e75090706b50281d2cf 7.3.734 -72f6e57958c416181e6748a339eef726 7.3.735 -fdfe9a8e4d0c3573238bbee3ec5836ad 7.3.736 -0c16ec0aba22fd3086007b8ebc454f8f 7.3.737 -41a709ad15a1dfb5e1405fb2e618f173 7.3.738 -61d956ac3c674b930675160f69330483 7.3.739 -6775625a4b05ac2b196889aab109480e 7.3.740 -616970ab5f892ae1f51fb5d0978d926e 7.3.741 -d039389c4766620b6044153af4504f8d 7.3.742 -ed6127482dfe469d338e9ee18f891d20 7.3.743 -cb1a7c02db2a2bc3ae96ab16cd888c8f 7.3.744 -b82e0fa1508b03c84c72d3a44dff1237 7.3.745 -fa4a781e41f0fd01350eb9ad49369794 7.3.746 -dc9750b1b3e2d8188dbfb4a1ca145c87 7.3.747 -ad5b7f392d113743b73f5043b92b85e2 7.3.748 -9663888372ff6e9a3959abe4f3d527c3 7.3.749 -adbe0502203063e5d1059563dc8aa429 7.3.750 -8b6104f0f3361f7d5ebb4734c3dc9d7e 7.3.751 -d2851c26bb5efe3f44b0436a4c295e06 7.3.752 -8c22baf96c2fd9db61a87ff3923d02f8 7.3.753 -a091a2e3d05932de13be54442bf6548d 7.3.754 -c684e684eeb89171719d97852a216802 7.3.755 -f64197967083256346fafef01e7835ff 7.3.756 -f36da7fd453e2bbd8b74c817f8927dd7 7.3.757 -086067a0fb4b10e16c8014d111f116ad 7.3.758 -662d47608952c60f8923dfb54c8b4613 7.3.759 -feede44e7a31055cdc967abb2162ed3e 7.3.760 -109b0ea8a2924338865855a64017de7f 7.3.761 -d11098382b38b12e3b552400421450bc 7.3.762 -41421f5affa5d4d7aace28f9bcf77ea5 7.3.763 -735563349503f9a61dd0cfc7cde6c589 7.3.764 -46c72c3a1dd3ec3f724bcb50d6dade7a 7.3.765 -da189fdac966e978606cb93cb458208d 7.3.766 -b12fffc522168a4171e2719697e0f5db 7.3.767 -a2057e7be90bddf92ac3319a0aa54c5b 7.3.768 -87e6d0e78dd7313609652e785c10b3fd 7.3.769 -c960937e7ee14d1b7ded058dcb8ea508 7.3.770 -a2a42505b2dec3eaeeb051a57c3d19c6 7.3.771 -79a9882a2e79411d56f3e1fd83685918 7.3.772 -65793f976e3cd13d6ba9f3d40584c16a 7.3.773 -5a0e8b6fc2d5784c85ea039832d67641 7.3.774 -a5ba9b3b9a1152c5be34dc13febc7950 7.3.775 -c55117708c70f883e6db1a940a30fe2b 7.3.776 -8338b979e35b7048b50453a98bbf4532 7.3.777 -be191f4db81309b22f16accceead7748 7.3.778 -c25f516df1a6f4e91bb03596ef123952 7.3.779 -29bc8f46fec4f3f5d49d4280feb7fa35 7.3.780 -1207767150015dbafbc74d7b8405cdec 7.3.781 -83a1a0ae88c37c97c237a2d6555e0cd7 7.3.782 -9d7aec8d3c5e4b5344d8203e1b5efce6 7.3.783 -a4b70df647438d5904f6a8ec02879ee1 7.3.784 -abbdecdc9efc9be9f6dac03a37268520 7.3.785 -a020433516fc2d9afab5186fc56d9fa1 7.3.786 -f96930682ad10b23e1a70540b6ab3d8c 7.3.787 -2e53c81838fd8c17018c1f24704bddb8 7.3.788 -ac01ff688623aad44b3ec1c6cf44ffe9 7.3.789 -f4dad2ef2444a565a869c92589c713ce 7.3.790 -38b8fb23f2a7e62c2e085e3908142f4c 7.3.791 -b5f040a56b0ecfa75ec80d3f6e940ce1 7.3.792 -b7ef33f3d9632ce55b18a2c8d566e306 7.3.793 -a495c230f69bfdd8c5759f62b97c602e 7.3.794 -62d2214429441abc2532736046feaa32 7.3.795 -d820b7899584a76615c5bfaeac99cecb 7.3.796 -b9d5040f551e27ba00fa8af05956f8e4 7.3.797 -09c965b1245f4bd4b218a64cef11130b 7.3.798 -6ef0a3c4d4c09ec1d7c3e5a622486281 7.3.799 -d4ae3cb2665e16fcbc5486f59feeaa79 7.3.800 -1681c127f2aa8bdba9d6844b59fecebf 7.3.801 -af0e2f7ee0934107e8f6427f26ce57d7 7.3.802 -6099115d1de823d7c4db760eaf7e0b49 7.3.803 -6595af234c5e2ed6d293b022952620d6 7.3.804 -36f9da91d4275d298a38d8a3782d93c7 7.3.805 -5c87d23889ee90e363418e7225067158 7.3.806 -375e799b20798f0c48da1260f06beb8b 7.3.807 -89d06c08901d59f528c41ff8222726f6 7.3.808 -ca40dd8b3565b95d8ba79f91178b166e 7.3.809 -44da6a1159468cc2f901c38c8b8249f9 7.3.810 -a24bef95639d7a5b949b25a3f4869d7a 7.3.811 -80441a6cf1565be9311ea87668e6fd9e 7.3.812 -7b1626326917577e5949531cd8548474 7.3.813 -8ece3a0fb3f87fa42f7465415e970bd8 7.3.814 -17cc83581cc8c0b3208c5fc11588255f 7.3.815 -b712b854580eb6842c423f75eb0e3474 7.3.816 -cf1c2b392a9b8e0b568e1d0213ea2b2e 7.3.817 -22745f101e8ad1fede4f4b3b6101a9bb 7.3.818 -30137ebb501f34ef25fc740bb3146e84 7.3.819 -0d34f0a6a04288282dcfb2eccb24722b 7.3.820 -be6c083ee5624621eaec22198bc516b1 7.3.821 -4ee4672fdd33a392010542497d4638fc 7.3.822 -083123561537365a520aeb07a0f43b4a 7.3.823 -b97638fa86f0f4651402a58089480ab6 7.3.824 -415a5269dd35fcfbef03a9d82a4f48e4 7.3.825 -c930b4e1c52dfa262cb0a55f12231306 7.3.826 -cdace24f2193d2e4ed04166481d6276d 7.3.827 -4215b471adda7c16bfdbe87da73b6af0 7.3.828 -186bc7b9036620cfa70677951e227b2d 7.3.829 -94f2416ff615a769750b07b7aaa00179 7.3.830 -4d061236f08a1b077e017f0246c9e4a6 7.3.831 -312223ba089ae771aaa564c0d08a662e 7.3.832 -583ff52dfc79893762283ead7a0e3aee 7.3.833 -ccf2e81d30b95d5e706be57f5a72583c 7.3.834 -c71152054f5f2f1296801b1263cb0f82 7.3.835 -0eb860a53f948645085c5236b0819af4 7.3.836 -51f60b66613b7535855d1e592f544d83 7.3.837 -6a8c2cf0c38024d056820f93e3590de5 7.3.838 -3a1e2a7ef2cb8c98a75e4121d58ebd59 7.3.839 -21e3dcb67ba9926ec7ab8b92c1c3869e 7.3.840 -ca0b0640f383d02715aa74ade316fbd9 7.3.841 -a52eb40ecb77d8fc07a8229cd0c07121 7.3.842 -db29c4289936ea6a94ea7cda8aef4e62 7.3.843 -cce5250b4ea9a362bbefc591c519259a 7.3.844 -16c3883653cf2e13a6941f1d5734b48e 7.3.845 -34dd4ebffd4b84e0abbd9271497159fe 7.3.846 -12fd92c34db268c53e386a8bef5fdc30 7.3.847 -81d762df01e532a439a7ce729eb7e13d 7.3.848 -9a25ed7501d8fa17e9961b607470cd21 7.3.849 -5b59690cf254b2c200abed4e99d54afa 7.3.850 -10ba00ee007cfca5100616a77d3d2ea9 7.3.851 -21c9217486bb1e3df06a5f15295c521f 7.3.852 -99397a46ea6c51d1daecd839fc1632b5 7.3.853 -4746af04bc1010db7e7d09b6e093dd7b 7.3.854 -8ee74cd7a5b471a1260c2ad2acea76f9 7.3.855 -e92fba85962d34e3a92029ecf560a1c5 7.3.856 -26624bb8fda0afedbe66958c1eec7934 7.3.857 -676c6846fd6b27ea0b4ce99f577cceac 7.3.858 -5e462df56c193c638ef59ba3c17c3c16 7.3.859 -b64d2e983a97fd6443caf527b7bfcff0 7.3.860 -773f969b30d9319a70e52dad8d1ae9f2 7.3.861 -306503f664cbf27230f7bf3d38241b6d 7.3.862 -334dda5675fdf63514e6c50ed7925300 7.3.863 -226e51b926f21f7ca9eabaf37fd4a163 7.3.864 -48db280a90fa940da0788f6935623482 7.3.865 -98777b095472a723303f0f195f924d46 7.3.866 -70ba85ebf2ff2f5917844cf9a0f27f54 7.3.867 -7945144a244146248727c67f5f868e35 7.3.868 -6c3102de4b796b085622977286825324 7.3.869 -8e03e9399b3f8a0440ac324b75d44db6 7.3.870 -f888f5aea1b5f456fcedcbbfac6b7cb3 7.3.871 -bd47f2b08911ad0db8209c5f02380a5d 7.3.872 -4e1bafa141c88f83d868de096c431e43 7.3.873 -6e4a64e9e9b392bcf0d2488f07c80608 7.3.874 -abb4523022f7c6c86c43256f80a74550 7.3.875 -437a021bf523442732f1e31f29579e68 7.3.876 -8b71b930825e91e8f7af6aef3b714080 7.3.877 -f69bd305333a102f4f76c40143bf3d2f 7.3.878 -82ea66e60b9e1d3d534352d12534ddf2 7.3.879 -553ee873fb23b8df6262db61de925493 7.3.880 -9ab615958983c113e0e90028cc05256e 7.3.881 -5548c8d030b55771e1887f08522cbe36 7.3.882 -e263181d7409e8bde32520c8314ff2f9 7.3.883 -953f60cb265903910a537bf625e096a6 7.3.884 -2a096f77c95248226b7d4b7eda58a995 7.3.885 -ddef20eb6b2651480f1e52da247d84c0 7.3.886 -2aa53676316887e8c5bcaefe51211c3c 7.3.887 -e087de5e2224b5cd050e34fe371d1261 7.3.888 -71cb3a6d8962c31d094fd335422b6554 7.3.889 -17f6cad309413a38ee09d2eff398a23d 7.3.890 -0ec87c049ab5567d27dc8ff3a29957f7 7.3.891 -2b455dccd2b837efc3af2f2541d90c0a 7.3.892 -b788907206eb4f545de17b2bc5d58674 7.3.893 -9e94c1259a0520661394e33a923fb0ff 7.3.894 -023fcd7d2da2c016c104ce8906ac626e 7.3.895 -8b7cf7447274cb1d32c20b36a51a1f54 7.3.896 -dad8233549d769eba5309e83d65c5a65 7.3.897 -6c6ed2327e4fc08f8051ebb30e0a850a 7.3.898 -60d3359f67a739f9b2b3d51d7c72d0b0 7.3.899 -13041bb9c1123664ea7e53bb86efdee8 7.3.900 -9267fe6ba3b2ca1d7e4ca96d53c228d7 7.3.901 -d500094667b57225a2318c264c07a575 7.3.902 -c0699792e503297752b73ae67821e4b6 7.3.903 -d127bb5702e158368edaddb7a4f7a21d 7.3.904 -90e35d3ec6239a976c8489c2eee293db 7.3.905 -5b9510a17074e2b37d8bb38ae09edbf2 vim-7.3.tar.bz2 +607e135c559be642f210094ad023dc65 vim-7.4.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Aug 14 13:38:14 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 14 Aug 2013 11:38:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[21734] csw/mgar/pkg/gdb/trunk Message-ID: Revision: 21734 http://gar.svn.sourceforge.net/gar/?rev=21734&view=rev Author: pfelecan Date: 2013-08-14 11:38:12 +0000 (Wed, 14 Aug 2013) Log Message: ----------- gdb/trunk: Fix issue reported at https://www.opencsw.org/mantis/view.php?id=5101 about missing symbol ps_lgetxregsize Modified Paths: -------------- csw/mgar/pkg/gdb/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/gdb/trunk/files/0004-missing-symbol-ps_lgetxregsize.patch Modified: csw/mgar/pkg/gdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/gdb/trunk/Makefile 2013-08-14 10:14:20 UTC (rev 21733) +++ csw/mgar/pkg/gdb/trunk/Makefile 2013-08-14 11:38:12 UTC (rev 21734) @@ -25,14 +25,16 @@ popular UNIX and Microsoft Windows variants. endef -MASTER_SITES = $(GNU_MIRROR) -DISTFILES = $(DISTNAME).tar.gz +MASTER_SITES = $(GNU_MIRROR) +DISTFILES = $(DISTNAME).tar.gz # from private patch 2: -PATCHFILES += 0001-OpenSolaris-gdb-solib-svr4.patch +PATCHFILES += 0001-OpenSolaris-gdb-solib-svr4.patch # from private patch 3: -PATCHFILES += 0002-OpenSolaris-gdb-fork-child.patch +PATCHFILES += 0002-OpenSolaris-gdb-fork-child.patch # from private patch 4: -PATCHFILES += 0003-Extend-to-OpenCSW-the-OpenSolaris-gdb-fork-child.patch +PATCHFILES += 0003-Extend-to-OpenCSW-the-OpenSolaris-gdb-fork-child.patch +# aggregate from http://sourceware.org/bugzilla/show_bug.cgi?id=15420%3E +PATCHFILES += 0004-missing-symbol-ps_lgetxregsize.patch GARCOMPILER = GNU @@ -68,10 +70,9 @@ CONFIGURE_ARGS += --with-x CONFIGURE_ARGS += $(CONFIGURE_ARGS-$(MEMORYMODEL)) -# we skip the lengthy test until the linker on the build platforms are +# skip the lengthy test until the linker on the build platforms are # of the same and latest version... -SKIPTEST = 1 -# TEST_SCRIPTS = parallel +TEST_SCRIPTS = parallel RUNTIME_DEP_PKGS += CSWlibexpat1 RUNTIME_DEP_PKGS += CSWlibiconv2 Added: csw/mgar/pkg/gdb/trunk/files/0004-missing-symbol-ps_lgetxregsize.patch =================================================================== --- csw/mgar/pkg/gdb/trunk/files/0004-missing-symbol-ps_lgetxregsize.patch (rev 0) +++ csw/mgar/pkg/gdb/trunk/files/0004-missing-symbol-ps_lgetxregsize.patch 2013-08-14 11:38:12 UTC (rev 21734) @@ -0,0 +1,106 @@ +From 0320b16973a5858f709c75f6232d6c68a347e528 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 14 Aug 2013 12:01:19 +0200 +Subject: [PATCH] missing symbol ps_lgetxregsize + +Patch set from http://sourceware.org/bugzilla/show_bug.cgi?id=15420%3E +signaled by Ralph Boehme +Fix issue reported at https://www.opencsw.org/mantis/view.php?id=5101 +--- + gdb/ChangeLog | 9 +++++++++ + gdb/configure | 7 ------- + gdb/configure.ac | 7 ------- + gdb/sol-thread.c | 24 ++++++++++++++++++++++++ + 4 files changed, 33 insertions(+), 14 deletions(-) + +diff --git a/gdb/ChangeLog b/gdb/ChangeLog +index c9e1b3d..98d7e13 100644 +--- a/gdb/ChangeLog ++++ b/gdb/ChangeLog +@@ -1,3 +1,12 @@ ++2013-05-10 Joel Brobecker ++ ++ PR tdep/15420: ++ * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs): ++ New functions, directly copied from sparc-sol-thread.c. ++ * sparc-sol-thread.c: Delete. ++ * configure.ac: Remove code handling sparc-solaris-thread.c. ++ * configure: Regenerate. ++ + 2013-04-26 Joel Brobecker + + * NEWS: Change "since GDB 7.5" into "in GDB 7.6". +diff --git a/gdb/configure b/gdb/configure +index b6ad59c..5ac0a23 100755 +--- a/gdb/configure ++++ b/gdb/configure +@@ -11949,13 +11949,6 @@ $as_echo "#define HAVE_THREAD_DB_LIB 1" >>confdefs.h + + CONFIG_OBS="${CONFIG_OBS} sol-thread.o" + CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c" +- # On SPARC CPUs, we also need to build sparc-sol-thread. +- case ${host_cpu} in +- sparc*) +- CONFIG_OBS="${CONFIG_OBS} sparc-sol-thread.o" +- CONFIG_SRCS="${CONFIG_SRCS} sparc-sol-thread.c" +- ;; +- esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 + $as_echo_n "checking for dlopen in -ldl... " >&6; } + if test "${ac_cv_lib_dl_dlopen+set}" = set; then : +diff --git a/gdb/configure.ac b/gdb/configure.ac +index e733d9d..e7ce71b 100644 +--- a/gdb/configure.ac ++++ b/gdb/configure.ac +@@ -1733,13 +1733,6 @@ if test ${build} = ${host} -a ${host} = ${target} ; then + [Define if using Solaris thread debugging.]) + CONFIG_OBS="${CONFIG_OBS} sol-thread.o" + CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c" +- # On SPARC CPUs, we also need to build sparc-sol-thread. +- case ${host_cpu} in +- sparc*) +- CONFIG_OBS="${CONFIG_OBS} sparc-sol-thread.o" +- CONFIG_SRCS="${CONFIG_SRCS} sparc-sol-thread.c" +- ;; +- esac + AC_CHECK_LIB(dl, dlopen) + CONFIG_LDFLAGS="${CONFIG_LDFLAGS} $RDYNAMIC" + # Sun randomly tweaked the prototypes in +diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c +index ec3df83..7bb0864 100644 +--- a/gdb/sol-thread.c ++++ b/gdb/sol-thread.c +@@ -907,6 +907,30 @@ ps_plog (const char *fmt, ...) + vfprintf_filtered (gdb_stderr, fmt, args); + } + ++/* Get size of extra register set. Currently a noop. */ ++ ++ps_err_e ++ps_lgetxregsize (gdb_ps_prochandle_t ph, lwpid_t lwpid, int *xregsize) ++{ ++ return PS_OK; ++} ++ ++/* Get extra register set. Currently a noop. */ ++ ++ps_err_e ++ps_lgetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset) ++{ ++ return PS_OK; ++} ++ ++/* Set extra register set. Currently a noop. */ ++ ++ps_err_e ++ps_lsetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset) ++{ ++ return PS_OK; ++} ++ + /* Get floating-point registers for LWP. */ + + ps_err_e +-- +1.8.3.4 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Aug 14 14:51:44 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 14 Aug 2013 12:51:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[21735] csw/mgar/pkg/gdb/trunk/Makefile Message-ID: Revision: 21735 http://gar.svn.sourceforge.net/gar/?rev=21735&view=rev Author: pfelecan Date: 2013-08-14 12:51:43 +0000 (Wed, 14 Aug 2013) Log Message: ----------- gdb/trunk: add override for Python dependency Modified Paths: -------------- csw/mgar/pkg/gdb/trunk/Makefile Modified: csw/mgar/pkg/gdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/gdb/trunk/Makefile 2013-08-14 11:38:12 UTC (rev 21734) +++ csw/mgar/pkg/gdb/trunk/Makefile 2013-08-14 12:51:43 UTC (rev 21735) @@ -86,6 +86,7 @@ # this should be declared only for the 32 bit ISAs but I doubt that # checkpkg can deal with this subtility RUNTIME_DEP_PKGS += CSWpython +CHECKPKG_OVERRIDES_CSWgdb += surplus-dependency|CSWpython CHECKPKG_OVERRIDES_CSWgdb += file-with-bad-content|/usr/local|root/opt/csw/share/info/gdb.info CHECKPKG_OVERRIDES_CSWgdb += file-with-bad-content|/usr/share|root/opt/csw/share/info/gdb.info 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 Aug 14 15:51:55 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 14 Aug 2013 13:51:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[21736] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 21736 http://gar.svn.sourceforge.net/gar/?rev=21736&view=rev Author: lblume Date: 2013-08-14 13:51:47 +0000 (Wed, 14 Aug 2013) Log Message: ----------- vim/trunk: Add missing S10 targets; fix Python config dir Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2013-08-14 12:51:43 UTC (rev 21735) +++ csw/mgar/pkg/vim/trunk/Makefile 2013-08-14 13:51:47 UTC (rev 21736) @@ -15,6 +15,7 @@ # Let's build a CLI vim for those stuck with S9 PACKAGING_PLATFORMS += solaris9-sparc solaris9-i386 +PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 ifneq ($(shell /usr/bin/uname -r),5.9) GARCOMPILER = SOS12U3 @@ -77,9 +78,8 @@ CONFIGURE_ARGS += --enable-multibyte CONFIGURE_ARGS += --enable-cscope CONFIGURE_ARGS += --without-local-dir - CONFIGURE_ARGS += --enable-pythoninterp=dynamic -CONFIGURE_ARGS += --with-python-config-dir=$(libdir)/python/config +CONFIGURE_ARGS += --with-python-config-dir=$(libdir)/python2.6/config BUILD_ARGS = "VIMRCLOC=/opt/csw/share/vim" BUILD_ARGS += "VIMRUNTIMEDIR=/opt/csw/share/vim/vim$(subst .,,$(DISTVERSION))" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Wed Aug 14 16:59:16 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Wed, 14 Aug 2013 14:59:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[21737] csw/mgar/pkg/tracker/trunk Message-ID: Revision: 21737 http://gar.svn.sourceforge.net/gar/?rev=21737&view=rev Author: slowfranklin Date: 2013-08-14 14:59:11 +0000 (Wed, 14 Aug 2013) Log Message: ----------- tracker/trunk: Add workaround for bug in tracker-extract-pdf: use of non async-signal safe funcs Modified Paths: -------------- csw/mgar/pkg/tracker/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/tracker/trunk/files/0008-Remove-log-calls-in-signal-handler.patch Modified: csw/mgar/pkg/tracker/trunk/Makefile =================================================================== --- csw/mgar/pkg/tracker/trunk/Makefile 2013-08-14 13:51:47 UTC (rev 21736) +++ csw/mgar/pkg/tracker/trunk/Makefile 2013-08-14 14:59:11 UTC (rev 21737) @@ -115,6 +115,7 @@ PATCHFILES += 0005-exempi-xmp.h-is-missing-a-stdbool.h-include.patch # Submitted upstream, should be in 0.16.3 PATCHFILES += 0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli.patch +PATCHFILES += 0008-Remove-log-calls-in-signal-handler.patch # Packages PACKAGES += CSWtracker Added: csw/mgar/pkg/tracker/trunk/files/0008-Remove-log-calls-in-signal-handler.patch =================================================================== --- csw/mgar/pkg/tracker/trunk/files/0008-Remove-log-calls-in-signal-handler.patch (rev 0) +++ csw/mgar/pkg/tracker/trunk/files/0008-Remove-log-calls-in-signal-handler.patch 2013-08-14 14:59:11 UTC (rev 21737) @@ -0,0 +1,30 @@ +From d68782a36ade485723a049d040008899434553d7 Mon Sep 17 00:00:00 2001 +From: Ralph Boehme +Date: Wed, 14 Aug 2013 14:45:44 +0200 +Subject: [PATCH] Remove log calls in signal handler + +--- + src/tracker-extract/tracker-extract-pdf.c | 7 +++---- + 1 file changed, 3 insertions(+), 4 deletions(-) + +diff --git a/src/tracker-extract/tracker-extract-pdf.c b/src/tracker-extract/tracker-extract-pdf.c +index f68914c..1aaae2f 100644 +--- a/src/tracker-extract/tracker-extract-pdf.c ++++ b/src/tracker-extract/tracker-extract-pdf.c +@@ -463,10 +463,9 @@ extract_content_child_cleanup (int action) + pid_t child_pid; + int status; + +- g_debug ("Parent: Zombies, say hello to my little friend!"); +- while ((child_pid = waitpid (-1, &status, WNOHANG)) > 0) { +- g_debug ("Parent: Zombie %d reaped", child_pid); +- } ++ while ((child_pid = waitpid (-1, &status, WNOHANG)) > 0) ++ ; ++ + } + + static gchar * +-- +1.8.3.4 + 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 Aug 14 23:37:54 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 14 Aug 2013 21:37:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[21738] csw/mgar/pkg/awstats/trunk Message-ID: Revision: 21738 http://gar.svn.sourceforge.net/gar/?rev=21738&view=rev Author: lblume Date: 2013-08-14 21:37:49 +0000 (Wed, 14 Aug 2013) Log Message: ----------- awstats/trunk: Bump version to 7.2; recipe cleanup Modified Paths: -------------- csw/mgar/pkg/awstats/trunk/Makefile csw/mgar/pkg/awstats/trunk/checksums Modified: csw/mgar/pkg/awstats/trunk/Makefile =================================================================== --- csw/mgar/pkg/awstats/trunk/Makefile 2013-08-14 14:59:11 UTC (rev 21737) +++ csw/mgar/pkg/awstats/trunk/Makefile 2013-08-14 21:37:49 UTC (rev 21738) @@ -1,5 +1,5 @@ NAME = awstats -VERSION = 7.1 +VERSION = 7.2 GARTYPE = v2 DESCRIPTION = Featureful tool for web, ftp and mail server statistics @@ -25,27 +25,9 @@ RUNTIME_DEP_PKGS_CSWawstats += CSWperl ARCHALL_CSWawstats = 1 -# These are documentation files, ignore for now -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/doc/awstats/awstats_setup.html -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/doc/awstats/awstats_faq.html -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/doc/awstats/awstats_contrib.html -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/doc/awstats/awstats_webmin.html -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/doc/awstats/awstats_changelog.txt - -# Only in comments, patches by 0001 -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/www/awstats/cgi-bin/awstats.pl - # These are all comments, I patched all important occurrences CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/etc/opt/csw/awstats.conf.CSW -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/awstats/awstats_buildstaticpages.pl -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/awstats/awstats_configure.pl -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/awstats/geoip_generator.pl -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/local|root/opt/csw/share/awstats/webmin/awstats-1.9.wbm CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/share|root/etc/opt/csw/awstats.conf.CSW -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/share|root/opt/csw/share/www/awstats/cgi-bin/awstats.pl -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/share|root/opt/csw/share/www/awstats/cgi-bin/plugins/tooltips.pm -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/share|root/opt/csw/share/awstats/awstats_exportlib.pl -CHECKPKG_OVERRIDES_CSWawstats += file-with-bad-content|/usr/share|root/opt/csw/share/doc/awstats/awstats_config.html # awstats is pretty generic, do not directly depend CHECKPKG_OVERRIDES_CSWawstats += missing-dependency|CSWapache2 Modified: csw/mgar/pkg/awstats/trunk/checksums =================================================================== --- csw/mgar/pkg/awstats/trunk/checksums 2013-08-14 14:59:11 UTC (rev 21737) +++ csw/mgar/pkg/awstats/trunk/checksums 2013-08-14 21:37:49 UTC (rev 21738) @@ -1 +1 @@ -9ee8cb9c89295a519638ae1cf6a4e1e2 awstats-7.1.tar.gz +0608ee882bc4a7088e9d588e887846c5 awstats-7.2.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 Thu Aug 15 00:36:08 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 14 Aug 2013 22:36:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[21739] csw/mgar/pkg/awstats/trunk/Makefile Message-ID: Revision: 21739 http://gar.svn.sourceforge.net/gar/?rev=21739&view=rev Author: lblume Date: 2013-08-14 22:36:06 +0000 (Wed, 14 Aug 2013) Log Message: ----------- awstats/trunk: Permissions must be set explicitly Modified Paths: -------------- csw/mgar/pkg/awstats/trunk/Makefile Modified: csw/mgar/pkg/awstats/trunk/Makefile =================================================================== --- csw/mgar/pkg/awstats/trunk/Makefile 2013-08-14 21:37:49 UTC (rev 21738) +++ csw/mgar/pkg/awstats/trunk/Makefile 2013-08-14 22:36:06 UTC (rev 21739) @@ -75,6 +75,10 @@ -e 's!/usr/local/awstats/!$(sharedstatedir)/www/awstats/!;' \ > $(DESTDIR)$(prefix)/apache2/etc/extra/httpd-awstats.conf rm -f $(DESTDIR)$(sharedstatedir)/awstats/httpd_conf + chmod -R +rX $(DESTDIR)$(sharedstatedir)/www/awstats \ + $(DESTDIR)$(docdir)/awstats + chmod +rx $(DESTDIR)$(sharedstatedir)/www/awstats/cgi-bin/*.pl \ + $(DESTDIR)$(sharedstatedir)/awstats/*.pl @$(MAKECOOKIE) # ./awstats_updateall.pl now -awstatsprog=/opt/csw/share/www/awstats/cgi-bin/awstats.pl -configdir=/etc/opt/csw 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 Aug 15 15:43:03 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 15 Aug 2013 13:43:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[21740] csw/mgar/pkg Message-ID: Revision: 21740 http://gar.svn.sourceforge.net/gar/?rev=21740&view=rev Author: dmichelsen Date: 2013-08-15 13:42:59 +0000 (Thu, 15 Aug 2013) Log Message: ----------- libgssglue/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/libgssglue/ csw/mgar/pkg/libgssglue/Makefile csw/mgar/pkg/libgssglue/branches/ csw/mgar/pkg/libgssglue/tags/ csw/mgar/pkg/libgssglue/trunk/ csw/mgar/pkg/libgssglue/trunk/Makefile csw/mgar/pkg/libgssglue/trunk/checksums csw/mgar/pkg/libgssglue/trunk/files/ csw/mgar/pkg/libgssglue/trunk/files/0001-Fix-gcc-issues.patch Added: csw/mgar/pkg/libgssglue/Makefile =================================================================== --- csw/mgar/pkg/libgssglue/Makefile (rev 0) +++ csw/mgar/pkg/libgssglue/Makefile 2013-08-15 13:42:59 UTC (rev 21740) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/libgssglue/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/libgssglue/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgssglue/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libgssglue/trunk/Makefile 2013-08-15 13:42:59 UTC (rev 21740) @@ -0,0 +1,30 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = libgssglue +VERSION = 0.4 +GARTYPE = v2 + +DESCRIPTION = Brief description + +MASTER_SITES = http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/ +DISTFILES += $(DISTNAME).tar.gz + +PATCHFILES += 0001-Fix-gcc-issues.patch + +VENDOR_URL = http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/ + +PACKAGES += CSWlibgssglue0 +SPKG_DESC_CSWlibgssglue0 = A GSSAPI interface +PKGFILES_CSWlibgssglue0 += $(call pkgfiles_lib,libgssglue.so.0) + +PACKAGES += CSWlibgssglue-dev +SPKG_DESC_CSWlibgssglue-dev = Development files for libgssglue.so.0 +# PKGFILES is catchall +RUNTIME_DEP_PKGS_CSWlibgssglue-dev += CSW\xC3libgssglue0 + +BUILD64 = 1 +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + Property changes on: csw/mgar/pkg/libgssglue/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/libgssglue/trunk/checksums =================================================================== --- csw/mgar/pkg/libgssglue/trunk/checksums (rev 0) +++ csw/mgar/pkg/libgssglue/trunk/checksums 2013-08-15 13:42:59 UTC (rev 21740) @@ -0,0 +1 @@ +088797f3180702fa54e786496b32e750 libgssglue-0.4.tar.gz Added: csw/mgar/pkg/libgssglue/trunk/files/0001-Fix-gcc-issues.patch =================================================================== --- csw/mgar/pkg/libgssglue/trunk/files/0001-Fix-gcc-issues.patch (rev 0) +++ csw/mgar/pkg/libgssglue/trunk/files/0001-Fix-gcc-issues.patch 2013-08-15 13:42:59 UTC (rev 21740) @@ -0,0 +1,33 @@ +From fb8ae94a1992d9eb4f7090952f28b5c8fe76c61b Mon Sep 17 00:00:00 2001 +From: Dagobert Michelsen +Date: Thu, 15 Aug 2013 13:46:53 +0200 +Subject: [PATCH] Fix gcc issues + +--- + src/Makefile.in | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/src/Makefile.in b/src/Makefile.in +index b247f75..628837f 100644 +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -220,7 +220,7 @@ top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + lib_LTLIBRARIES = libgssglue.la +-libgssglue_la_LDFLAGS = -version-info 1:0:0 -Wl,--version-script,$(srcdir)/symbol_versions ++libgssglue_la_LDFLAGS = -h libglue.so.1.0.0 + libgssglue_la_SOURCES = \ + g_accept_sec_context.c g_acquire_cred.c g_compare_name.c \ + g_context_time.c g_delete_sec_context.c g_dsp_name.c g_dsp_status.c \ +@@ -239,7 +239,6 @@ EXTRA_DIST = $(srcdir)/gssglue/gssapi/gssapi.h.in $(srcdir)/symbol_versions + DISTCLEANFILES = $(top_builddir)/src/gssglue/gssapi/gssapi.h + BUILT_SOURCES = $(top_builddir)/src/gssglue/gssapi/gssapi.h + nobase_include_HEADERS = gssglue/gssapi/gssapi.h +-AM_CFLAGS = -Wall + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +-- +1.8.3.4 + 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 Aug 15 15:49:00 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 15 Aug 2013 13:49:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[21741] csw/mgar/pkg/libgssglue/trunk/Makefile Message-ID: Revision: 21741 http://gar.svn.sourceforge.net/gar/?rev=21741&view=rev Author: dmichelsen Date: 2013-08-15 13:49:00 +0000 (Thu, 15 Aug 2013) Log Message: ----------- libgssglue/trunk: Fix typo Modified Paths: -------------- csw/mgar/pkg/libgssglue/trunk/Makefile Modified: csw/mgar/pkg/libgssglue/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgssglue/trunk/Makefile 2013-08-15 13:42:59 UTC (rev 21740) +++ csw/mgar/pkg/libgssglue/trunk/Makefile 2013-08-15 13:49:00 UTC (rev 21741) @@ -21,7 +21,7 @@ PACKAGES += CSWlibgssglue-dev SPKG_DESC_CSWlibgssglue-dev = Development files for libgssglue.so.0 # PKGFILES is catchall -RUNTIME_DEP_PKGS_CSWlibgssglue-dev += CSW\xC3libgssglue0 +RUNTIME_DEP_PKGS_CSWlibgssglue-dev += CSWlibgssglue0 BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From phipsy at users.sourceforge.net Thu Aug 15 19:20:17 2013 From: phipsy at users.sourceforge.net (phipsy at users.sourceforge.net) Date: Thu, 15 Aug 2013 17:20:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[21742] csw/mgar/pkg/puppet3/trunk Message-ID: Revision: 21742 http://gar.svn.sourceforge.net/gar/?rev=21742&view=rev Author: phipsy Date: 2013-08-15 17:20:14 +0000 (Thu, 15 Aug 2013) Log Message: ----------- puppet3: version ramp to 3.2.4 Modified Paths: -------------- csw/mgar/pkg/puppet3/trunk/Makefile csw/mgar/pkg/puppet3/trunk/checksums Modified: csw/mgar/pkg/puppet3/trunk/Makefile =================================================================== --- csw/mgar/pkg/puppet3/trunk/Makefile 2013-08-15 13:49:00 UTC (rev 21741) +++ csw/mgar/pkg/puppet3/trunk/Makefile 2013-08-15 17:20:14 UTC (rev 21742) @@ -3,7 +3,7 @@ # $Id$ NAME = puppet3 -VERSION = 3.2.2 +VERSION = 3.2.4 GARTYPE = v2 define BLURB Modified: csw/mgar/pkg/puppet3/trunk/checksums =================================================================== --- csw/mgar/pkg/puppet3/trunk/checksums 2013-08-15 13:49:00 UTC (rev 21741) +++ csw/mgar/pkg/puppet3/trunk/checksums 2013-08-15 17:20:14 UTC (rev 21742) @@ -3,3 +3,4 @@ e942079612703a460a9fdb52e6bcae4a puppet-3.1.1.tar.gz a9bce4fe7a68aebcb6e97256e7faac5b puppet-3.2.1.tar.gz 318de47ab9e7d41cce98c1cbc5d33cc1 puppet-3.2.2.tar.gz +7084f61bea287ba6720ed2ccccd1fb03 puppet-3.2.4.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From phipsy at users.sourceforge.net Thu Aug 15 21:24:46 2013 From: phipsy at users.sourceforge.net (phipsy at users.sourceforge.net) Date: Thu, 15 Aug 2013 19:24:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[21743] csw/mgar/pkg/puppet/trunk Message-ID: Revision: 21743 http://gar.svn.sourceforge.net/gar/?rev=21743&view=rev Author: phipsy Date: 2013-08-15 19:24:41 +0000 (Thu, 15 Aug 2013) Log Message: ----------- puppet: 2.7.23 Modified Paths: -------------- csw/mgar/pkg/puppet/trunk/Makefile csw/mgar/pkg/puppet/trunk/checksums Modified: csw/mgar/pkg/puppet/trunk/Makefile =================================================================== --- csw/mgar/pkg/puppet/trunk/Makefile 2013-08-15 17:20:14 UTC (rev 21742) +++ csw/mgar/pkg/puppet/trunk/Makefile 2013-08-15 19:24:41 UTC (rev 21743) @@ -7,7 +7,7 @@ # [1] http://garylaw.net/packages/puppet-build.sh NAME = puppet -VERSION = 2.7.22 +VERSION = 2.7.23 GARTYPE = v2 define BLURB Modified: csw/mgar/pkg/puppet/trunk/checksums =================================================================== --- csw/mgar/pkg/puppet/trunk/checksums 2013-08-15 17:20:14 UTC (rev 21742) +++ csw/mgar/pkg/puppet/trunk/checksums 2013-08-15 19:24:41 UTC (rev 21743) @@ -19,3 +19,4 @@ 746ebdd7ae734fb54e53bf6167f0928d puppet-2.7.20.tar.gz cfea4e3f8cf268c1340aa5c295b3d7f0 puppet-2.7.21.tar.gz 2fb656ecb5f8c99b25b70cb1438649ab puppet-2.7.22.tar.gz +6b89c493643b1685983c222706543308 puppet-2.7.23.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 15 23:11:32 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 15 Aug 2013 21:11:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[21744] csw/mgar/pkg/lang-python/unittest2/trunk/Makefile Message-ID: Revision: 21744 http://gar.svn.sourceforge.net/gar/?rev=21744&view=rev Author: wahwah Date: 2013-08-15 21:11:31 +0000 (Thu, 15 Aug 2013) Log Message: ----------- lang-python/unittest2/trunk: we need DISTFILES after all Modified Paths: -------------- csw/mgar/pkg/lang-python/unittest2/trunk/Makefile Modified: csw/mgar/pkg/lang-python/unittest2/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/unittest2/trunk/Makefile 2013-08-15 19:24:41 UTC (rev 21743) +++ csw/mgar/pkg/lang-python/unittest2/trunk/Makefile 2013-08-15 21:11:31 UTC (rev 21744) @@ -8,6 +8,8 @@ GARTYPE = v2 DESCRIPTION = The new features in unittest for Python 2.7 backported to Python 2.3+ +DISTFILES = $(DISTNAME).tar.gz + ARCHALL = 1 MODULATIONS_PYTHON_VERSION = 2_6 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Fri Aug 16 10:33:05 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Fri, 16 Aug 2013 08:33:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[21745] csw/mgar/pkg/libgsf/trunk Message-ID: Revision: 21745 http://gar.svn.sourceforge.net/gar/?rev=21745&view=rev Author: slowfranklin Date: 2013-08-16 08:32:56 +0000 (Fri, 16 Aug 2013) Log Message: ----------- libgsf/trunk: Update to 1.14.28 Modified Paths: -------------- csw/mgar/pkg/libgsf/trunk/Makefile csw/mgar/pkg/libgsf/trunk/checksums Modified: csw/mgar/pkg/libgsf/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgsf/trunk/Makefile 2013-08-15 21:11:31 UTC (rev 21744) +++ csw/mgar/pkg/libgsf/trunk/Makefile 2013-08-16 08:32:56 UTC (rev 21745) @@ -1,5 +1,5 @@ NAME = libgsf -VERSION = 1.14.21 +VERSION = 1.14.28 CATEGORIES = gnome GARTYPE = v2 @@ -12,7 +12,7 @@ endef MASTER_SITES = $(GNOME_MIRROR) -DISTFILES += $(DISTNAME).tar.gz +DISTFILES += $(DISTNAME).tar.xz # New glib is Solaris 10 only PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 @@ -20,41 +20,42 @@ BUILD_DEP_PKGS += CSWgnulinks BUILD_DEP_PKGS += CSWgtk-doc BUILD_DEP_PKGS += CSWglib2devel -BUILD_DEP_PKGS += CSWlibxml2devel +BUILD_DEP_PKGS += CSWlibxml2-dev PACKAGES += CSWlibgsf1-114 SPKG_DESC_CSWlibgsf1-114 = GNOME structured file library, libgsf-1.so.114 -PKGFILES_CSWlibgsf1-114 += $(call pkgfiles_lib,libgsf-1.so.114) -PKGFILES_CSWlibgsf1-114 += $(sharedstatedir)/locale/.*\.mo -RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibgthread2-0-0 +# PKGFILES is catchall RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibbz2-1-0 -RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibgmodule2-0-0 RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibz1 RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibintl8 RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibgio2-0-0 +RUNTIME_DEP_PKGS_CSWlibgsf1-114 += CSWlibgdk-pixbuf2-0-0 -PACKAGES += CSWlibgsf-gnome1-114 -SPKG_DESC_CSWlibgsf-gnome1-114 = GNOME structured file library, libgsf-gnome1.so.114 -PKGFILES_CSWlibgsf-gnome1-114 += $(call pkgfiles_lib,libgsf-gnome-1.so.114) -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWorbit2 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgthread2-0-0 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibbz2-1-0 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgmodule2-0-0 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibz1 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgsf1-114 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgobject2-0-0 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibxml2-2 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibbonobo2 -RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgio2-0-0 +# +# Has been dropped +# +# PACKAGES += CSWlibgsf-gnome1-114 +# SPKG_DESC_CSWlibgsf-gnome1-114 = GNOME structured file library, libgsf-gnome1.so.114 +# PKGFILES_CSWlibgsf-gnome1-114 += $(call pkgfiles_lib,libgsf-gnome-1.so.114) +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWorbit2 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgthread2-0-0 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibbz2-1-0 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgmodule2-0-0 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibz1 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibintl8 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgsf1-114 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgobject2-0-0 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibglib2-0-0 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibxml2-2 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibbonobo2 +# RUNTIME_DEP_PKGS_CSWlibgsf-gnome1-114 += CSWlibgio2-0-0 PACKAGES += CSWlibgsf-dev SPKG_DESC_CSWlibgsf-dev = Development files for libgsf-1.so.114 and libgsf-gnome1.so.114 -# PKGFILES is catchall +PKGFILES_CSWlibgsf-dev = $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWlibgsf-dev += CSWlibgsf1-114 RUNTIME_DEP_PKGS_CSWlibgsf-dev += CSWlibgsf-gnome1-114 RUNTIME_DEP_PKGS_CSWlibgsf-dev += CSWlibgthread2-0-0 @@ -68,14 +69,12 @@ RUNTIME_DEP_PKGS_CSWlibgsf-dev += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWlibgsf-dev += CSWlibgio2-0-0 +# Uses stdbool.h, thus needs C99 compilation environment +EXTRA_CFLAGS = -xc99 + # The -L/opt/csw/lib is too early and disturbs the build with the installed libgsf LINKER_FLAGS = -CONFIGURE_ARGS += $(DIRPATHS) - -# There are link errors on newly built gnomemodule.la, disable for now -CONFIGURE_ARGS += --without-python - # Missing 64-bit libs: # libgnomevfs-2.so libgconf-2.so libbonobo-2.so libbonobo-activation.so BUILD64_LIBS_ONLY = 1 Modified: csw/mgar/pkg/libgsf/trunk/checksums =================================================================== --- csw/mgar/pkg/libgsf/trunk/checksums 2013-08-15 21:11:31 UTC (rev 21744) +++ csw/mgar/pkg/libgsf/trunk/checksums 2013-08-16 08:32:56 UTC (rev 21745) @@ -1 +1 @@ -9c56d356094198eb5d46d9aee2515d63 libgsf-1.14.21.tar.gz +48cc1409951419c5e2be1a16f749adb2 libgsf-1.14.28.tar.xz 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 Aug 16 11:35:38 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 16 Aug 2013 09:35:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[21746] csw/mgar/pkg/zabbix/trunk Message-ID: Revision: 21746 http://gar.svn.sourceforge.net/gar/?rev=21746&view=rev Author: dmichelsen Date: 2013-08-16 09:35:38 +0000 (Fri, 16 Aug 2013) Log Message: ----------- zabbix/trunk: Update to 2.0.7, update dependencies Modified Paths: -------------- csw/mgar/pkg/zabbix/trunk/Makefile csw/mgar/pkg/zabbix/trunk/checksums Modified: csw/mgar/pkg/zabbix/trunk/Makefile =================================================================== --- csw/mgar/pkg/zabbix/trunk/Makefile 2013-08-16 08:32:56 UTC (rev 21745) +++ csw/mgar/pkg/zabbix/trunk/Makefile 2013-08-16 09:35:38 UTC (rev 21746) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = zabbix -VERSION = 2.0.0 +VERSION = 2.0.7 GARTYPE = v2 DESCRIPTION = Zabbix monitoring system @@ -15,6 +15,11 @@ # PACKAGING_PLATFORMS += solaris9-sparc solaris9-i386 PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 +REINPLACEMENTS += etc +REINPLACE_MATCH_etc = /usr/local/etc +REINPLACE_WITH_etc = $(sysconfdir) +REINPLACE_FILES_etc += conf/zabbix_proxy.conf + # This is just for the server which is in 64 bit only on Solars 10 BUILD64-5.9 = BUILD64-5.10 = 1 @@ -25,10 +30,12 @@ SPKG_DESC_CSWzabbix-agent = Zabbix monitoring system agent # PKGFILES is catchall RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWlibiconv2 -RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWlibidn11 -RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWlibz1 -RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWlibcurl4 +RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWlibssh2-1 +RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWlibmysqlclient18 +RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWlibnetsnmp25 +RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWlibldap2-4-2 +RUNTIME_DEP_PKGS_CSWzabbix-agent += CSWliblber2-4-2 # These are just examples CHECKPKG_OVERRIDES_CSWzabbix-agent += file-with-bad-content|/usr/local|root/opt/csw/share/man/man8/zabbix_agentd.8 @@ -42,10 +49,11 @@ PKGFILES_CSWzabbix-server += $(call baseisadirs,$(sbindir),zabbix_server) RUNTIME_DEP_PKGS_CSWzabbix-server += CSWlibmysqlclient18 RUNTIME_DEP_PKGS_CSWzabbix-server += CSWlibiconv2 -RUNTIME_DEP_PKGS_CSWzabbix-server += CSWlibz1 -RUNTIME_DEP_PKGS_CSWzabbix-server += CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWzabbix-server += CSWlibcurl4 -RUNTIME_DEP_PKGS_CSWzabbix-server += CSWlibidn11 +RUNTIME_DEP_PKGS_CSWzabbix-server += CSWliblber2-4-2 +RUNTIME_DEP_PKGS_CSWzabbix-server += CSWlibnetsnmp25 +RUNTIME_DEP_PKGS_CSWzabbix-server += CSWlibssh2-1 +RUNTIME_DEP_PKGS_CSWzabbix-server += CSWlibldap2-4-2 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-mysql=$(bindir)/mysql_config @@ -59,6 +67,13 @@ CONFIGURE_ARGS-5.10-64 += --enable-server CONFIGURE_ARGS += $(CONFIGURE_ARGS-$(GAROSREL)-$(MEMORYMODEL)) +CONFIGURE_ARGS += --enable-proxy + +CONFIGURE_ARGS += --with-net-snmp +# This searches libssh2 in $(prefix)/lib regardless if we are building 64 bit or not +CONFIGURE_ARGS += --with-ssh2=$(prefix) +CONFIGURE_ARGS += --with-ldap + PRESERVECONF += $(sysconfdir)/zabbix_agent.conf PRESERVECONF += $(sysconfdir)/zabbix_agentd.conf Modified: csw/mgar/pkg/zabbix/trunk/checksums =================================================================== --- csw/mgar/pkg/zabbix/trunk/checksums 2013-08-16 08:32:56 UTC (rev 21745) +++ csw/mgar/pkg/zabbix/trunk/checksums 2013-08-16 09:35:38 UTC (rev 21746) @@ -1 +1 @@ -d34d398beddee0eaa999789100cf74e3 zabbix-2.0.0.tar.gz +0e86f37e3acecc1e0b618af14edc5346 zabbix-2.0.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 Fri Aug 16 12:19:46 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 16 Aug 2013 10:19:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[21747] csw/mgar/pkg/libxml2/trunk Message-ID: Revision: 21747 http://gar.svn.sourceforge.net/gar/?rev=21747&view=rev Author: dmichelsen Date: 2013-08-16 10:19:45 +0000 (Fri, 16 Aug 2013) Log Message: ----------- libxml2/trunk: Add mapfile to allow sudo compilation Modified Paths: -------------- csw/mgar/pkg/libxml2/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/libxml2/trunk/files/map.sudo Modified: csw/mgar/pkg/libxml2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxml2/trunk/Makefile 2013-08-16 09:35:38 UTC (rev 21746) +++ csw/mgar/pkg/libxml2/trunk/Makefile 2013-08-16 10:19:45 UTC (rev 21747) @@ -13,6 +13,8 @@ MASTER_SITES = ftp://xmlsoft.org/libxml2/ DISTFILES = $(DISTNAME).tar.gz +DISTFILES += map.sudo + # PATCHFILES = 0001-Forcefully-disable-the-symbol-versioning.patch # see Bug: https://www.opencsw.org/mantis/view.php?id=5093 PATCHFILES = 0002-fix-PyCapsulate-for-python-version-less-2.7.patch @@ -20,6 +22,9 @@ sysconfdir = /etc/opt/csw localstatedir = /var/opt/csw +# Force custom mapfile because sudo uses one and sudo uses libxml2 +LINKER_MAPS = -M "$(abspath $(WORKDIR)/map.sudo)" + EXTRA_CPPFLAGS = -DXML_XML_DEFAULT_CATALOG=\\\"$(sysconfdir)/xml/catalog\\\" EXTRA_CPPFLAGS += -DXML_SGML_DEFAULT_CATALOG=\\\"$(sysconfdir)/sgml/catalog\\\" @@ -57,7 +62,6 @@ OBSOLETED_BY_CSWpy-libxml2 = CSWpylibxml2 SPKG_DESC_CSWpy-libxml2 = XML Parser Library Python Bindings RUNTIME_DEP_PKGS_CSWpy-libxml2 = CSWlibpython2-6-1-0 -RUNTIME_DEP_PKGS_CSWpy-libxml2 += CSWpython RUNTIME_DEP_PKGS_CSWpy-libxml2 += CSWlibxml2-2 PKGFILES_CSWpy-libxml2 = $(libdir)/python/.* PKGFILES_CSWpy-libxml2 += $(docdir)/pylibxml2/.* Copied: csw/mgar/pkg/libxml2/trunk/files/map.sudo (from rev 21587, csw/mgar/pkg/sudo/trunk/files/map.sudo) =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/map.sudo (rev 0) +++ csw/mgar/pkg/libxml2/trunk/files/map.sudo 2013-08-16 10:19:45 UTC (rev 21747) @@ -0,0 +1,7 @@ +# Solaris 10 mapfile with libc Version 1.22.2 which is Update?? Kernel Version +# http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/mapfile-vers#301 +libc.so - SUNW_1.22.2 SUNWprivate_1.1 $ADDVERS=SUNW_1.22.2; +# http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libresolv2/common/mapfile-vers +libresolv.so - SUNW_2.2 SUNWprivate_2.1 $ADDVERS=SUNW_2.2; +# http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libnsl/common/mapfile-vers +libnsl.so - SUNW_1.9 SUNWprivate_1.5 $ADDVERS=SUNW_1.9; 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 Aug 16 12:55:51 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 16 Aug 2013 10:55:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[21748] csw/mgar/pkg/libxml2/trunk/Makefile Message-ID: Revision: 21748 http://gar.svn.sourceforge.net/gar/?rev=21748&view=rev Author: dmichelsen Date: 2013-08-16 10:55:50 +0000 (Fri, 16 Aug 2013) Log Message: ----------- libxml2/trunk: Readd dependency to Python Modified Paths: -------------- csw/mgar/pkg/libxml2/trunk/Makefile Modified: csw/mgar/pkg/libxml2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxml2/trunk/Makefile 2013-08-16 10:19:45 UTC (rev 21747) +++ csw/mgar/pkg/libxml2/trunk/Makefile 2013-08-16 10:55:50 UTC (rev 21748) @@ -63,6 +63,7 @@ SPKG_DESC_CSWpy-libxml2 = XML Parser Library Python Bindings RUNTIME_DEP_PKGS_CSWpy-libxml2 = CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWpy-libxml2 += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWpy-libxml2 += CSWpython PKGFILES_CSWpy-libxml2 = $(libdir)/python/.* PKGFILES_CSWpy-libxml2 += $(docdir)/pylibxml2/.* # There is no 64-bit Python. 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 Aug 16 13:11:41 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 16 Aug 2013 11:11:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[21749] csw/mgar/pkg/sudo/trunk Message-ID: Revision: 21749 http://gar.svn.sourceforge.net/gar/?rev=21749&view=rev Author: dmichelsen Date: 2013-08-16 11:11:40 +0000 (Fri, 16 Aug 2013) Log Message: ----------- sudo/trunk: Update to 1.8.7, new location of sudo shared libs Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile csw/mgar/pkg/sudo/trunk/checksums Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2013-08-16 10:55:50 UTC (rev 21748) +++ csw/mgar/pkg/sudo/trunk/Makefile 2013-08-16 11:11:40 UTC (rev 21749) @@ -2,7 +2,7 @@ # NAME = sudo -VERSION = 1.8.6p8 +VERSION = 1.8.7 GARTYPE = v2 EXTRA_MODULATORS = LDAP @@ -64,7 +64,7 @@ PACKAGES += CSWsudo-ldap SPKG_DESC_CSWsudo-ldap = LDAP bindings for SUDO -PKGFILES_CSWsudo-ldap += $(libexecdir)/sudoers-ldap.so +PKGFILES_CSWsudo-ldap += $(libexecdir)/sudo/sudoers-ldap.so PKGFILES_CSWsudo-ldap += $(LDAP_DOCFILES) PKGFILES_CSWsudo-ldap += $(LDAP_MANFILES) RUNTIME_DEP_PKGS_CSWsudo-ldap += CSWlibintl8 @@ -85,10 +85,10 @@ # Looks like these are still needed CHECKPKG_OVERRIDES_CSWsudo += soname-unused|s9_preload.so.1|is|needed|by|/opt/csw/sbin/visudo|but|never|used -CHECKPKG_OVERRIDES_CSWsudo += soname-unused|s9_preload.so.1|is|needed|by|/opt/csw/libexec/sudoers.so|but|never|used -CHECKPKG_OVERRIDES_CSWsudo += soname-unused|s9_preload.so.1|is|needed|by|/opt/csw/libexec/sudo_noexec.so|but|never|used +CHECKPKG_OVERRIDES_CSWsudo += soname-unused|s9_preload.so.1|is|needed|by|/opt/csw/libexec/sudo/sudoers.so|but|never|used +CHECKPKG_OVERRIDES_CSWsudo += soname-unused|s9_preload.so.1|is|needed|by|/opt/csw/libexec/sudo/sudo_noexec.so|but|never|used CHECKPKG_OVERRIDES_CSWsudo += soname-unused|s9_preload.so.1|is|needed|by|/opt/csw/bin/sudoreplay|but|never|used -CHECKPKG_OVERRIDES_CSWsudo-ldap += soname-unused|s9_preload.so.1|is|needed|by|/opt/csw/libexec/sudoers-ldap.so|but|never|used +CHECKPKG_OVERRIDES_CSWsudo-ldap += soname-unused|s9_preload.so.1|is|needed|by|/opt/csw/libexec/sudo/sudoers-ldap.so|but|never|used LOGPATH = $(localstatedir)/log/sudo TIMEPATH = $(localstatedir)/sudo @@ -144,7 +144,7 @@ MERGE_SCRIPTS_isa-default-ldap-disabled = copy-all MERGE_SCRIPTS_isa-default-ldap-enabled = copy-all -EXTRA_PAX_ARGS_LDAP-enabled += -s ',($(libexecdir))/sudoers.so,$$1/sudoers-ldap.so,' +EXTRA_PAX_ARGS_LDAP-enabled += -s ',($(libexecdir))/sudo/sudoers.so,$$1/sudo/sudoers-ldap.so,' EXTRA_PAX_ARGS += $(EXTRA_PAX_ARGS_LDAP-$(LDAP)) MIGRATE_FILES_CSWsudo += sudoers Modified: csw/mgar/pkg/sudo/trunk/checksums =================================================================== --- csw/mgar/pkg/sudo/trunk/checksums 2013-08-16 10:55:50 UTC (rev 21748) +++ csw/mgar/pkg/sudo/trunk/checksums 2013-08-16 11:11:40 UTC (rev 21749) @@ -1 +1 @@ -6dac48c73c8e0932980efcddafa569af sudo-1.8.6p8.tar.gz +a02367090e1dac8d0c1747de1127b6bf sudo-1.8.7.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 Fri Aug 16 14:44:04 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Fri, 16 Aug 2013 12:44:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[21750] csw/mgar/pkg/tidy/trunk/Makefile Message-ID: Revision: 21750 http://gar.svn.sourceforge.net/gar/?rev=21750&view=rev Author: lblume Date: 2013-08-16 12:43:56 +0000 (Fri, 16 Aug 2013) Log Message: ----------- tidy/trunk: Add 64bitness; Make checkpkg happy with the recipe Modified Paths: -------------- csw/mgar/pkg/tidy/trunk/Makefile Modified: csw/mgar/pkg/tidy/trunk/Makefile =================================================================== --- csw/mgar/pkg/tidy/trunk/Makefile 2013-08-16 11:11:40 UTC (rev 21749) +++ csw/mgar/pkg/tidy/trunk/Makefile 2013-08-16 12:43:56 UTC (rev 21750) @@ -10,26 +10,32 @@ An HTML Syntax Checker and Reformatter endef -MASTER_SITES = http://tidy.sourceforge.net +MASTER_SITES = http://tidy.sourceforge.net/ DISTFILES = $(DISTNAME).tar.gz PATCHFILES += 0001-correct-the-path-to-tidy-for-use-by-tests.patch LICENSE = LICENSE -PACKAGES = CSWtidy CSWlibtidy0-99 CSWtidy-dev - +PACKAGES = CSWtidy +SPKG_DESC_CSWtidy = $(DESCRIPTION) +RUNTIME_DEP_PKGS_CSWtidy = CSWlibtidy0-99-0 OBSOLETED_BY_CSWtidy = CSWhtmltidy +# Catchall -SPKG_DESC_CSWtidy = $(DESCRIPTION) -RUNTIME_DEP_PKGS_CSWtidy = CSWlibtidy0-99 - +PACKAGES += CSWtidy-dev SPKG_DESC_CSWtidy-dev = Development files for libtidy -RUNTIME_DEP_PKGS_CSWtidy-dev = CSWlibtidy0-99 +PKGFILES_CSWtidy-dev = $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWtidy-dev += CSWlibtidy0-99-0 -SPKG_DESC_CSWlibtidy0-99 = Tidy, libtidy-0.99.so +PACKAGES += CSWlibtidy0-99-0 +CATALOGNAME_CSWlibtidy0-99-0 = libtidy0_99_0 +PKGFILES_CSWlibtidy0-99-0 += $(call baseisadirs,$(libdir),libtidy-0\.99\.so\.0\.0\.0) +PKGFILES_CSWlibtidy0-99-0 += $(call baseisadirs,$(libdir),libtidy-0\.99\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibtidy0-99-0 += $(DESCRIPTION), libtidy-0.99.so.0 +OBSOLETED_BY_CSWlibtidy0-99-0 += CSWlibtidy0-99 -PKGFILES_CSWtidy-dev = $(PKGFILES_DEVEL) -PKGFILES_CSWlibtidy0-99 = $(call baseisadirs,$(libdir),libtidy-0\.99\.so(\.\d+)*) +BUILD64 = 1 +ISAEXEC = 1 include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Fri Aug 16 15:51:21 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Fri, 16 Aug 2013 13:51:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[21751] csw/mgar/pkg/tracker/trunk Message-ID: Revision: 21751 http://gar.svn.sourceforge.net/gar/?rev=21751&view=rev Author: slowfranklin Date: 2013-08-16 13:51:19 +0000 (Fri, 16 Aug 2013) Log Message: ----------- tracker/trunk: Fix for previous procfs psinfo patch Modified Paths: -------------- csw/mgar/pkg/tracker/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/tracker/trunk/files/0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli2.patch Modified: csw/mgar/pkg/tracker/trunk/Makefile =================================================================== --- csw/mgar/pkg/tracker/trunk/Makefile 2013-08-16 12:43:56 UTC (rev 21750) +++ csw/mgar/pkg/tracker/trunk/Makefile 2013-08-16 13:51:19 UTC (rev 21751) @@ -115,6 +115,7 @@ PATCHFILES += 0005-exempi-xmp.h-is-missing-a-stdbool.h-include.patch # Submitted upstream, should be in 0.16.3 PATCHFILES += 0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli.patch +PATCHFILES += 0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli2.patch PATCHFILES += 0008-Remove-log-calls-in-signal-handler.patch # Packages Added: csw/mgar/pkg/tracker/trunk/files/0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli2.patch =================================================================== --- csw/mgar/pkg/tracker/trunk/files/0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli2.patch (rev 0) +++ csw/mgar/pkg/tracker/trunk/files/0008-libtracker-common-Use-procfs-psinfo-instead-of-cmdli2.patch 2013-08-16 13:51:19 UTC (rev 21751) @@ -0,0 +1,31 @@ +From 3c21cb559af89b1311d8f01ee4e8b1f2bbeaf293 Mon Sep 17 00:00:00 2001 +From: Ralph Boehme +Date: Fri, 16 Aug 2013 15:46:45 +0200 +Subject: [PATCH] libtracker-common: Use procfs psinfo instead of cmdline on + Solaris + +Earlier commit 5b62dbd808928c1886d3ffa54ca01b289d50304e was missing +the correct /proc filename for Solaris. +--- + src/libtracker-common/tracker-dbus.c | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/src/libtracker-common/tracker-dbus.c b/src/libtracker-common/tracker-dbus.c +index beb1814..53da8e7 100644 +--- a/src/libtracker-common/tracker-dbus.c ++++ b/src/libtracker-common/tracker-dbus.c +@@ -165,7 +165,11 @@ client_data_new (gchar *sender) + filename = g_build_filename (G_DIR_SEPARATOR_S, + "proc", + pid_str, ++#ifdef __sun /* Solaris */ ++ "psinfo", ++#else + "cmdline", ++#endif + NULL); + g_free (pid_str); + +-- +1.8.3.4 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From guengel at users.sourceforge.net Fri Aug 16 20:22:24 2013 From: guengel at users.sourceforge.net (guengel at users.sourceforge.net) Date: Fri, 16 Aug 2013 18:22:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[21752] csw/mgar/pkg/gdk-pixbuf/trunk Message-ID: Revision: 21752 http://gar.svn.sourceforge.net/gar/?rev=21752&view=rev Author: guengel Date: 2013-08-16 18:22:18 +0000 (Fri, 16 Aug 2013) Log Message: ----------- gdk-pixbuf/trunk: Bumped to version 2.28.2. Disabled introspection on 64bit builds. Modified Paths: -------------- csw/mgar/pkg/gdk-pixbuf/trunk/Makefile csw/mgar/pkg/gdk-pixbuf/trunk/checksums Modified: csw/mgar/pkg/gdk-pixbuf/trunk/Makefile =================================================================== --- csw/mgar/pkg/gdk-pixbuf/trunk/Makefile 2013-08-16 13:51:19 UTC (rev 21751) +++ csw/mgar/pkg/gdk-pixbuf/trunk/Makefile 2013-08-16 18:22:18 UTC (rev 21752) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = gdk-pixbuf -VERSION = 2.24.1 +VERSION = 2.28.2 GARTYPE = v2 CATEGORIES = gnome @@ -30,8 +30,9 @@ RUNTIME_DEP_PKGS_CSWgdkpixbuf += CSWlibgmodule2-0-0 RUNTIME_DEP_PKGS_CSWgdkpixbuf += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWgdkpixbuf += CSWlibjpeg7 -RUNTIME_DEP_PKGS_CSWgdkpixbuf += CSWlibtiff3 +RUNTIME_DEP_PKGS_CSWgdkpixbuf += CSWlibtiff5 RUNTIME_DEP_PKGS_CSWgdkpixbuf += CSWlibpng15-15 +RUNTIME_DEP_PKGS_CSWgdkpixbuf += CSWlibintl8 # I assume if one installs CSWgdkpixbuf, one wants all the stuff # except -dev CHECKPKG_OVERRIDES_CSWgdkpixbuf += surplus-dependency|CSWlibgdk-pixbuf-xlib2-0-0 @@ -80,9 +81,14 @@ # We need the binaries to query 64 bit modules MERGE_DIRS_isa-extra = $(bindir) $(libdir) +CONFIGURE_ARGS-32 = +# Fails on introspection build on 64bits +CONFIGURE_ARGS-64 = --enable-introspection=no + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-libiconv-prefix CONFIGURE_ARGS += --with-libintl-prefix +CONFIGURE_ARGS += $(CONFIGURE_ARGS-$(MEMORYMODEL)) include gar/category.mk Modified: csw/mgar/pkg/gdk-pixbuf/trunk/checksums =================================================================== --- csw/mgar/pkg/gdk-pixbuf/trunk/checksums 2013-08-16 13:51:19 UTC (rev 21751) +++ csw/mgar/pkg/gdk-pixbuf/trunk/checksums 2013-08-16 18:22:18 UTC (rev 21752) @@ -1 +1 @@ -72f39b34b20f68148c1609bd27415412 gdk-pixbuf-2.24.1.tar.xz +04c04e5042acd85cff6c439aba1995f1 gdk-pixbuf-2.28.2.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 17 02:06:31 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 17 Aug 2013 00:06:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[21753] csw/mgar/pkg/netpbm/trunk Message-ID: Revision: 21753 http://gar.svn.sourceforge.net/gar/?rev=21753&view=rev Author: lblume Date: 2013-08-17 00:06:30 +0000 (Sat, 17 Aug 2013) Log Message: ----------- netpbm/trunk: Bump to version 10.63.00 Modified Paths: -------------- csw/mgar/pkg/netpbm/trunk/Makefile csw/mgar/pkg/netpbm/trunk/checksums csw/mgar/pkg/netpbm/trunk/files/0001-Reorder-includes-so-that-local-includes-come-before-.patch Added Paths: ----------- csw/mgar/pkg/netpbm/trunk/files/0005_missing_stdlib.h.patch csw/mgar/pkg/netpbm/trunk/files/0006-memcpy.patch csw/mgar/pkg/netpbm/trunk/files/0007_stdout_already_used.patch csw/mgar/pkg/netpbm/trunk/files/config.mk Modified: csw/mgar/pkg/netpbm/trunk/Makefile =================================================================== --- csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-16 18:22:18 UTC (rev 21752) +++ csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 00:06:30 UTC (rev 21753) @@ -1,5 +1,5 @@ NAME = netpbm -VERSION = 10.35.80 +VERSION = 10.63.00 GARTYPE = v2 DESCRIPTION = Netpbm is a toolkit for manipulation of graphic images @@ -8,25 +8,31 @@ including conversion of images between a variety of different formats. endef -MASTER_SITES += $(SF_MIRRORS) -DISTFILES += $(DISTNAME).tgz -DISTFILES += Makefile.config +SF_PROJECT = netpbm +MASTER_SITES = svn-http://svn.code.sf.net/p/$(NAME)/code/release_number/ +DISTFILES += config.mk +DISTFILES += $(VERSION) +NOCHECKSUM += $(VERSION) +DISTNAME = $(VERSION) -EXPANDVARS += Makefile.config +GARCOMPILER = GCC4 -PATCHFILES += 0001-Reorder-includes-so-that-local-includes-come-before-.patch -PATCHFILES += 0002-Remove-unused-external-references-causing-link-error.patch -PATCHFILES += 0003-Remove-extra-conversion-in-function-call-causing-err.patch -PATCHFILES += 0004-Move-opt-csw-include-to-the-end.patch +EXPANDVARS += config.mk +PATCHFILES += 0005_missing_stdlib.h.patch +PATCHFILES += 0006-memcpy.patch +PATCHFILES += 0007_stdout_already_used.patch + VENDOR_URL = http://netpbm.sourceforge.net/ LICENSE = doc/GPL_LICENSE.txt +BUILD_DEP_PKGS += CSWx11xproto + PACKAGES += CSWnetpbm SPKG_DESC_CSWnetpbm = A toolkit for manipulation of graphic images RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibjpeg7 -RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibtiff3 +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibtiff5 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibpng12-0 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibz1 @@ -44,8 +50,6 @@ CONFIGURE_SCRIPTS = custom -EXTRA_CFLAGS += -D__inline= - INSTALL_OVERRIDE_VARS += PKGMANDIR INSTALL_ARGS = package pkgdir=$(DESTDIR)$(prefix) INSTALL_OVERRIDE_VAR_PKGMANDIR = share/man @@ -64,8 +68,10 @@ include gar/category.mk +PATH := /opt/csw/gnu:$(PATH):/opt/csw/gcc4/bin + configure-custom: - cp $(WORKDIR)/Makefile.config $(WORKSRC) + cp $(WORKDIR)/config.mk $(WORKSRC) perl -pi \ -e 's,(#define\s+RGB_DB1\s+).*,$$1"/opt/csw/share/netpbm/rgb.txt",;' \ -e 's,(#define\s+RGB_DB2\s+).*,$$1"/usr/openwin/lib/X11/rgb.txt",;' \ Modified: csw/mgar/pkg/netpbm/trunk/checksums =================================================================== --- csw/mgar/pkg/netpbm/trunk/checksums 2013-08-16 18:22:18 UTC (rev 21752) +++ csw/mgar/pkg/netpbm/trunk/checksums 2013-08-17 00:06:30 UTC (rev 21753) @@ -1 +1 @@ -2edf98b802a82e5367fc52382e9ac144 netpbm-10.35.80.tgz +ff609d95f43cc8bf6ea9c3667a15b610 netpbm-10.35.89.tgz Modified: csw/mgar/pkg/netpbm/trunk/files/0001-Reorder-includes-so-that-local-includes-come-before-.patch =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/0001-Reorder-includes-so-that-local-includes-come-before-.patch 2013-08-16 18:22:18 UTC (rev 21752) +++ csw/mgar/pkg/netpbm/trunk/files/0001-Reorder-includes-so-that-local-includes-come-before-.patch 2013-08-17 00:06:30 UTC (rev 21753) @@ -1,25 +1,11 @@ -From aecad6315ae396625724f7253308b25b4be888c6 Mon Sep 17 00:00:00 2001 -From: Dagobert Michelsen -Date: Tue, 24 May 2011 12:27:37 +0200 -Subject: [PATCH 1/3] Reorder includes so that local includes come before /opt/csw/include - ---- - Makefile.common | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/Makefile.common b/Makefile.common -index 2946589..33bfb8a 100644 ---- a/Makefile.common -+++ b/Makefile.common -@@ -68,7 +68,7 @@ - - include $(SRCDIR)/Makefile.version - +--- a/Makefile.common jeu. juin 21 22:40:36 2012 ++++ b/Makefile.common mer. juil 24 21:42:39 2013 +@@ -77,7 +77,7 @@ + # because $(INCLUDES) also contains -I's for some local directories, which + # must go before -I importinc. It is too complex for the Super Stable series. + # -INCLUDES2 := $(INCLUDES) -I$(SRCDIR)/$(SUBDIR) -I. -I importinc +INCLUDES2 := -I$(SRCDIR)/$(SUBDIR) -I. $(INCLUDES) -I importinc ifeq ($(NETPBMLIBTYPE),unixstatic) NETPBMLIBFNAME = libnetpbm.$(STATICLIBSUFFIX) --- -1.7.3.2 - Added: csw/mgar/pkg/netpbm/trunk/files/0005_missing_stdlib.h.patch =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/0005_missing_stdlib.h.patch (rev 0) +++ csw/mgar/pkg/netpbm/trunk/files/0005_missing_stdlib.h.patch 2013-08-17 00:06:30 UTC (rev 21753) @@ -0,0 +1,70 @@ +--- a/urt/rle_putrow.c ven. ao?t 16 22:25:35 2013 ++++ b/urt/rle_putrow.c ven. ao?t 16 22:27:13 2013 +@@ -31,6 +31,7 @@ + */ + + #include ++#include + + #include "rle_put.h" + #include "rle.h" +--- a/urt/scanargs.c ven. ao?t 16 22:32:22 2013 ++++ b/urt/scanargs.c ven. ao?t 16 22:33:13 2013 +@@ -41,6 +41,7 @@ + */ + + #include ++#include + #include + #include + +--- a/urt/rle_open_f.c ven. ao?t 16 22:45:04 2013 ++++ b/urt/rle_open_f.c ven. ao?t 16 23:03:01 2013 +@@ -12,6 +12,7 @@ + + #include + #include ++#include + #include + #include + +--- a/converter/other/zeisstopnm.c ven. ao?t 16 23:25:57 2013 ++++ b/converter/other/zeisstopnm.c ven. ao?t 16 23:28:37 2013 +@@ -49,6 +49,7 @@ + ** + */ + ++#include + #include "pnm.h" + + int +--- a/lib/util/nstring.h ven. ao?t 16 23:41:47 2013 ++++ b/lib/util/nstring.h ven. ao?t 16 23:44:39 2013 +@@ -3,6 +3,7 @@ + + #include + #include ++#include + #include + + #include "pm_c_util.h" +--- a/urt/rle_error.c ven. ao?t 16 23:45:33 2013 ++++ b/urt/rle_error.c ven. ao?t 16 23:47:33 2013 +@@ -25,6 +25,7 @@ + * Copyright (c) 1992, University of Michigan + */ + ++#include + #include + + #include "rle_config.h" +--- a/converter/other/sirtopnm.c ven. ao?t 16 23:54:50 2013 ++++ b/converter/other/sirtopnm.c ven. ao?t 16 23:57:14 2013 +@@ -10,6 +10,7 @@ + ** implied warranty. + */ + ++#include + #include "pnm.h" + + int main( argc, argv ) Added: csw/mgar/pkg/netpbm/trunk/files/0006-memcpy.patch =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/0006-memcpy.patch (rev 0) +++ csw/mgar/pkg/netpbm/trunk/files/0006-memcpy.patch 2013-08-17 00:06:30 UTC (rev 21753) @@ -0,0 +1,23 @@ +--- a/pm_config.in.h ven. ao?t 16 23:48:28 2013 ++++ b/pm_config.in.h ven. ao?t 16 23:51:30 2013 +@@ -91,9 +91,11 @@ + + #ifndef __SASC + #ifndef _DCC /* Amiga DICE Compiler */ ++#ifndef sun /* Solaris */ + #define bzero(dst,len) memset(dst,0,len) + #define bcopy(src,dst,len) memcpy(dst,src,len) + #define bcmp memcmp ++#endif /* sun */ + #endif /* _DCC */ + #endif /* __SASC */ + +@@ -93,7 +93,7 @@ + ** If you have compilation problems that point here, feel free to tweak + ** or remove these declarations. + */ +-#ifdef BSD ++#if defined(BSD) || defined(sun) + #include + #endif + #if defined(SYSV) Added: csw/mgar/pkg/netpbm/trunk/files/0007_stdout_already_used.patch =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/0007_stdout_already_used.patch (rev 0) +++ csw/mgar/pkg/netpbm/trunk/files/0007_stdout_already_used.patch 2013-08-17 00:06:30 UTC (rev 21753) @@ -0,0 +1,29 @@ +--- a/converter/other/pstopnm.c sam. ao?t 17 00:04:17 2013 ++++ b/converter/other/pstopnm.c sam. ao?t 17 00:11:44 2013 +@@ -64,7 +64,7 @@ + unsigned int ysize; /* zero means unspecified */ + unsigned int dpi; /* zero means unspecified */ + enum Orientation orientation; +- unsigned int stdout; ++ unsigned int npstdout; + unsigned int textalphabits; + }; + +@@ -112,7 +112,7 @@ + OPTENT3(0, "dpi", OPT_UINT, &cmdlineP->dpi, &dpiSpec, 0); + OPTENT3(0, "portrait", OPT_FLAG, NULL, &portraitOpt, 0); + OPTENT3(0, "landscape", OPT_FLAG, NULL, &landscapeOpt, 0); +- OPTENT3(0, "stdout", OPT_FLAG, NULL, &cmdlineP->stdout, 0); ++ OPTENT3(0, "stdout", OPT_FLAG, NULL, &cmdlineP->npstdout, 0); + OPTENT3(0, "textalphabits", OPT_UINT, + &cmdlineP->textalphabits, &textalphabitsSpec, 0); + +@@ -623,7 +623,7 @@ + -----------------------------------------------------------------------------*/ + const char * retval; /* malloc'ed */ + +- if (cmdline.stdout) ++ if (cmdline.npstdout) + retval = strdup("-"); + else if (streq(cmdline.inputFileName, "-")) + retval = strdup("-"); Added: csw/mgar/pkg/netpbm/trunk/files/config.mk =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/config.mk (rev 0) +++ csw/mgar/pkg/netpbm/trunk/files/config.mk 2013-08-17 00:06:30 UTC (rev 21753) @@ -0,0 +1,695 @@ +####This file was automatically created by 'configure.' +####Many variables are set twice -- a generic setting, then +####a system-specific override at the bottom of the file. +#### +####This file was automatically created by 'configure.' +####Many variables are set twice -- a generic setting, then +####a system-specific override at the bottom of the file. +#### +# This is a make file inclusion, to be included in all the Netpbm make +# files. + +# This file is meant to contain variable settings that customize the +# build for a particular target system configuration. + +# The distribution contains the file Makefile.config.in. You edit +# Makefile.config.in in ways relevant to your particular environment +# to create Makefile.config. The "configure" program will do this +# for you in simple cases. + +# Some of the variables that the including make file must set for this +# file to work: +# +# SRCDIR: The directory at the top of the Netpbm source tree. Note that +# this is typically a relative directory, and it must be relative to the +# make file that includes this file. + +DEFAULT_TARGET = nonmerge +#DEFAULT_TARGET = merge + +# Fiasco has some special requirements that make it fail to compile on +# some systems, and since it isn't very important, just set this to "N" +# and skip it on those systems unless you want to debug it and fix it. +# OpenBSD: +#BUILD_FIASCO = N +BUILD_FIASCO = Y + +# The following are commands for the build process to use. These values +# do not get built into anything. + +# The C compiler (including macro preprocessor) +#CC = gcc +# Note that 'cc' is usually an alias for whatever is the main compiler +# on a system, e.g. the GNU Compiler on Linux. +CC = cc + +# The linker. +LD = $(CC) +#LD = ld +#Tru64: +#LD = cc +#LD = gcc + +#If the linker identified above is a compiler that invokes a linker +#(as in 'cc foo.o -o foo'), set LINKERISCOMPILER. The main difference is +#that we expect a compiler to take linker options in the '-Wl,-opt1,val1' +#syntax whereas the actual linker would take '-opt1 val1'. +LINKERISCOMPILER=Y +#If $(LD) is 'ld': +#LINKERISCOMPILER=N + +#LINKER_CAN_DO_EXPLICIT_LIBRARY means the linker specified above can +#take a library as just another link object argument, as in 'ld +#pnmtojpeg.o /usr/local/lib/libjpeg.so ...' as opposed to requiring a +#-l option as in 'ld pnmtojpeg.o -L/usr/local/lib -l jpeg'. +#This variable controls how 'libopt' gets built. Note that with some +#linkers, you can specify a shared library explicitly, but then it has +#to live in that exact place at run time. That's not good enough for us. + +LINKER_CAN_DO_EXPLICIT_LIBRARY=N +#GNU: +#LINKER_CAN_DO_EXPLICIT_LIBRARY=Y + +# This is the name of the header file that declares the types +# uint32_t, etc. This name is used as #include $(INTTYPES_H) . +# Set to null if the types come automatically without including anything. + +# We have a report (2005.09.17) that on IRIX 5.3 with the native IDO +# cc, inttypes.h and sys/types.h conflict (and Netpbm programs include +# sys/types for other things), so for that environment, +# won't work, but "inttypes_netpbm.h" might. + +INTTYPES_H = +# Linux libc5: +#INTTYPES_H = +# Solaris: +# Solaris has , but it doesn't define int_fast2_t, etc. +#INTTYPES_H = "inttypes_netpbm.h" +# Others: +#INTTYPES_H = +#INTTYPES_H = +# The automatically generated Netpbm version: +#INTTYPES_H = "inttypes_netpbm.h" + +# HAVE_INT64 tells whether, assuming you include the header indicated by +# INTTYPES_H, you have the int64_t type and related stuff. (If you don't +# the build will omit certain code that does 64 bit computations). +HAVE_INT64 = Y +#HAVE_INT64 = N + +# CC and LD are for building the Netpbm programs, which are not necessarily +# intended to run on the same system on which Make is running. But when we +# build a build tool such as Libopt, it is meant to run only on the same +# system on which the Make is running. The variables below define programs +# to use to compile and link build tools. +CC_FOR_BUILD = $(CC) +LD_FOR_BUILD = $(LD) +CFLAGS_FOR_BUILD = $(CFLAGS) + +# MAKE is set automatically by Make to what was used to invoke Make. + +INSTALL = $(SRCDIR)/buildtools/install.sh +#Solaris: +#INSTALL = /usr/ucb/install +#Tru64: +#INSTALL = installbsd +#OSF1: +#INSTALL = $(SRCDIR)/buildtools/installosf +#Red Hat Linux: +#INSTALL = install + +# STRIPFLAG is the option you pass to the above install program to make it +# strip unnecessary information out of binaries. +STRIPFLAG = -s +# If you don't want to strip the binaries, just leave it null: +#STRIPFLAG = + +SYMLINK = ln -s +# At least some Windows environments don't have any concept of symbolic +# links, but direct copies are usually a passable alternative. +#SYMLINK = cp + +#MANPAGE_FORMAT is "nroff" or "cat". It determines in what format the +#pointer man pages are installed (ready to nroff, or ready to cat). +#A pointer man pages is just a single-paragraph pages that tells you there is +#no man page for the program, to look at the HTML documentation instead. +MANPAGE_FORMAT = nroff +#MANPAGE_FORMAT = cat + +AR = ar +RANLIB = ranlib +# IRIX, SCO don't have Ranlib: +#RANLIB = true + +# LEX is the beginning of a shell command that runs a Lex-like +# pattern matcher generator. Null string means there isn't any such +# command. That means the build will skip parts that need one. + +LEX = flex +# Solaris: +# LEX = flex -e +# Windows Mingw: +# LEX = +# +# LEX = lex + +# C compiler options + +# gcc: +# -ansi and -Werror should work too, but are not included +# by default because there's no point in daring the build to fail. +# -pedantic isn't a problem because it causes at worst a warning. +#CFLAGS = -O3 -ffast-math -pedantic -fno-common \ +# -Wall -Wno-uninitialized -Wmissing-declarations -Wimplicit \ +# -Wwrite-string -Wmissing-prototypes -Wundef +# The merged programs have a main_XXX subroutine instead of main(), +# which would cause a warning with -Wmissing-declarations or +# -Wmissing-prototypes. +#CFLAGS_MERGE = -Wno-missing-declarations -Wno-missing-prototypes +# A user of DEC Tru64 4.0F in May 2000 needed -DLONG_32 for ppmtompeg, +# but word size-sensitive code was removed from parallel.c in September 2004. +# A user of Tru64 5.1A in July 2003 needed NOT to have -DLONG_32. In +# theory, you need this if on your system, long is 32 bits and int is not. +# But it may be completely irrelevant today. +#Tru64: +#CFLAGS = -O2 -std1 -DLONG_32 +#CFLAGS = -O2 -std1 +#AIX: +#CFLAGS= -O3 +#HP-UX: +#CFLAGS= -O3 -fPIC +#IRIX: +#CFLAGS= -n32 -O3 +#Amiga with GNU compiler: +#CFLAGS= -m68020-60 -ffast-math -mstackextend +# You can add -noixemul for Amiga and successfully compile most of the +# programs. (Of the remaining ones, if you can supply your own strtod() +# function, most of them will build with -noixemul). So try building +# with 'make --keep-going CADD=-noixemul' first, then just 'make' to build +# everything that failed for lack of the ixemul library in the first step. +# That way, the parts that don't required the ixemul library won't indicate +# a dependency on it. +#OpenBSD: +#CFLAGS = -I/usr/local/include + +# EXE is a suffix that the linker puts on any executable it generates. +# In cygwin, this is .exe and most programs deal with its existence without +# us having to know about it. Some don't though, so set this: + +EXE = +#Cygwin, DJGPP/Windows: +#EXE = .exe + +# linker options. + +# LDFLAGS is often set as an environment variable; A setting here overrides +# it. So either make sure you want to override it, or do a "LDFLAGS +=" here. + +# LDFLAGS is usually not the right place for a -L option, because we put +# LDFLAGS _before_ our own -L options, so it would cancel out our +# specific selection of libraries. For example, if you say +# LDFLAGS=/usr/local/lib and an old copy of the libnetpbm is in +# /usr/local/lib, then you'd be linking against that old copy instead of +# the copy you just built, which is located by a -L option later on the +# link command. LIBS is the right variable for adding -L options. LIBS +# goes after any of our make files' own -L options. + +# Eunice users may want to use -noshare so that the executables can +# run standalone: +#LDFLAGS += -noshare +#Tru64: +# Russ Allberry says on 2001.06.09 that -oldstyle_liblookup may be necessary +# to keep from finding an ancient system libjpeg.so that isn't compatible with +# NetPBM. Michael Long found that /usr/local/lib is not in the default +# search path, or not soon enough, and he was getting an old libjpeg that +# caused all the jpeg symbol references to be unresolved. He had installed +# a new libjpeg in /usr/local/lib. +#LDFLAGS += -call_shared -oldstyle_liblookup -L/usr/local/lib +#AIX: +#LDFLAGS += -L /usr/pubsw/lib +#HP-UX: +#LDFLAGS += -Wl,+b,/usr/pubsw/lib +#IRIX: +#LDFLAGS += -n32 + +# Linker options for created Netpbm shared libraries. + +# Here, $(SONAME) resolves to the soname for the shared library being created. +# The following are gcc options. This works on GNU libc systems. +LDSHLIB = -shared -Wl,-soname,$(SONAME) +# You need -nostart instead of -shared on BeOS. Though the BeOS compiler is +# ostensibly gcc, it has the -nostart option, which is not mentioned in gcc +# documentation and doesn't exist in at least one non-BeOS installation. +# BeOS doesn't have sonames built in. +#LDSHLIB = -nostart +#LDSHLIB = -G +# Solaris, SunOS with GNU Ld, SCO: +# These systems have no soname option. +#LDSHLIB = -shared +# Solaris with Sun Ld: +#LDSHLIB = -Wl,-Bdynamic,-G,-h,$(SONAME) +#Tru64: +#LDSHLIB = -shared -expect_unresolved "*" +#IRIX: +#LDSHLIB = -shared -n32 +#AIX GNU compiler/linker: +#LDSHLIB = -shared +#AIX Visual Age C: +#LDSHLIB = -qmkshrobj + +# LDRELOC is the command to combine two .o files (relocateable object files) +# into a single .o file that can later be linked into something else. NONE +# means no such command is available. + +LDRELOC = NONE +# GNU Ld: +# Older GNU Ld misspells the option as --relocateable. Newer GNU Ld +# correctly spells it --relocatable. The abbreviation --reloc works on +# both. +#LDRELOC = ld --reloc +#LDRELOC = ld -r + + +# On older systems, you have to make shared libraries out of position +# independent code, so you need -fpic or fPIC here. (The rule is: if +# -fpic works, use it. If it bombs, go to fPIC). On newer systems, +# it isn't necessary, but can save real memory at the expense of +# execution speed. Without position independent code, the library +# loader may have to patch addresses into the executable text. On an +# older system, this would cause a program crash because the loader +# would be writing into read-only shared memory. But on newer +# systems, the system silently creates a private mapping of the page +# or segment being modified (the "copy on write" phenomenon). So it +# needs its own private real page frame. In one experiment, A second +# copy of Pbmtext used 16K less real memory when built with -fpic than +# when built without. 2001.06.02. + +# We have seen -fPIC required on IA64 and AMD64 machines (GNU +# compiler/linker). Build-time linking fails without it. I don't +# know why -- history seems to be repeating itself. 2005.02.23. + +CFLAGS_SHLIB = +# Gcc: +#CFLAGS_SHLIB = -fpic +#CFLAGS_SHLIB = -fPIC +# Sun compiler: +#CFLAGS_SHLIB = -Kpic +#CFLAGS_SHLIB = -KPIC + +# SHLIB_CLIB is the link option to include the C library in a shared library, +# normally "-lc". On typical systems, this serves no purpose. On some, +# though, it causes information about which C library to use to be recorded +# in the shared library and thus choose the correct library among several or +# avoid using an incompatible one. But on some systems, the link fails. +# On 2002.09.30, "John H. DuBois III" reports that on +# SCO OpenServer, he gets the following error message with -lc: +# +# -lc; relocations referenced ; from file(s) /usr/ccs/lib/libc.so(random.o); +# fatal error: relocations remain against allocatable but non-writable +# section: ; .text + +SHLIB_CLIB = -lc +# SCO: +SHLIB_CLIB = + +# On some systems you have to build into an executable the list of +# directories where its dynamically linked libraries can be found at +# run time. This is typically done with a -R or -rpath linker +# option. Even on systems that don't require it, you might prefer to do +# that rather than set up environment variables or configuration files +# to tell the system where the libraries are. A "Y" here means to put +# the directory information in the executable at link time. + +NEED_RUNTIME_PATH = N +# Solaris, SunOS, NetBSD, AIX: +#NEED_RUNTIME_PATH = Y + +# RPATHOPTNAME is the option you use on the link command to specify +# a runtime search path for a shared library. It is meaningless unless +# NEED_RUNTIME_PATH is Y. +RPATHOPTNAME = -rpath + +# The following variables tell where your various libraries on which +# Netpbm depends live. The LIBxxx variable is a full file +# specification of the link library (not necessarily the library used +# at run time). e.g. "/usr/local/lib/graphics/libjpeg.so". It usually +# doesn't matter if the library prefix and suffix are right -- you can +# use "lib" and ".so" or ".a" regardless of what your system actually +# uses because these just turn into "-L" and "-l" linker options +# anyway. ".a" implies a static library for some purposes, though. +# If you don't have the library in question, use a value of NONE for +# LIBxxx and the build will simply skip the programs that require that +# library. If the library is in your linker's (or the Netpbm build's) +# default search path, leave off the directory part, e.g. "libjpeg.so". + +# The xxxHDR_DIR variable is the directory in which the interface +# headers for the library live (e.g. /usr/include). If they are in your +# compiler's default search path, set this variable to null. + +# This is where the Netpbm shared libraries will reside when Netpbm is +# fully installed. In some configurations, the Netpbm builder builds +# this information into the Netpbm executables. This does NOT affect +# where the Netpbm installer installs the libraries. A null value +# means the libraries are in a default search path used by the runtime +# library loader. +NETPBMLIB_RUNTIME_PATH = +#NETPBMLIB_RUNTIME_PATH = /usr/lib/netpbm + +# The TIFF library. See above. If you want to build the tiff +# converters, you must have the tiff library already installed. + +TIFFLIB = NONE +TIFFHDR_DIR = + +#TIFFLIB = libtiff.so +#TIFFHDR_DIR = /usr/include/libtiff +#NetBSD: +#TIFFLIB = $(LOCALBASE)/lib/libtiff.so +#TIFFHDR_DIR = $(LOCALBASE)/include +# OSF, Tru64: +#TIFFLIB = /usr/local1/DEC/lib/libtiff.so +#TIFFHDR_DIR = /usr/local1/DEC/include + +# Some TIFF libraries do Jpeg and/or Z (flate) compression and thus any +# program linked with the TIFF library needs a Jpeg and/or Z library. +# Some TIFF libraries have such library statically linked in, but others +# need it to be dynamically linked at program load time. +# Make this 'N' if youf TIFF library doesn't need such dynamic linking. +# As of 2005.01, the most usual build of the TIFF library appears to require +# both. +TIFFLIB_NEEDS_JPEG = Y +TIFFLIB_NEEDS_Z = Y + +# The JPEG library. See above. If you want to build the jpeg +# converters you must have the jpeg library already installed. + +# Tiff files can use JPEG compression, so the Tiff library can reference +# the JPEG library. If your Tiff library references a dynamic JPEG +# library, you must specify at least JPEGLIB here, or the Tiff +# converters will not build. Note that your Tiff library may have the +# JPEG stuff statically linked in, in which case you won't need +# JPEGLIB in order to build the Tiff converters. + +JPEGLIB = NONE +JPEGHDR_DIR = +#JPEGLIB = libjpeg.so +#JPEGHDR_DIR = /usr/include/jpeg +# Netbsd: +#JPEGLIB = ${LOCALBASE}/lib/libjpeg.so +#JPEGHDR_DIR = ${LOCALBASE}/include +# OSF, Tru64: +#JPEGLIB = /usr/local1/DEC/libjpeg.so +#JPEGHDR_DIR = /usr/local1/DEC/include +# Typical: +#JPEGLIB = /usr/local/lib/libjpeg.so +#JPEGHDR_DIR = /usr/local/include +# Don't build JPEG stuff: +#JPEGLIB = NONE + + +# The PNG library. See above. If you want to build the PNG +# converters you must have the PNG library already installed. + +# The PNG library, by convention starting around April 2002, gets installed +# with names that include a version number, such as libpng10.a and header +# files in /usr/include/libpng10. But there is conventionally an unnumbered +# alias (e.g. libpng.a, /usr/include/libpng) for the preferred version. +# +# Recent versions of the library (since some time in the 2002-2006 period) +# have an associated 'libpng-config' that tells how to link it. The make +# files will use that program if it exists (must be in the PATH). In that +# case, PNGLIB and PNGHDR_DIR are irrelevant, but PNGVER is still meaningful, +# because the make file runs 'libpng$(PNGVER)-config'. + +PNGLIB = NONE +PNGHDR_DIR = +PNGVER = +#PNGLIB = libpng$(PNGVER).so +#PNGHDR_DIR = /usr/include/libpng$(PNGVER) +# NetBSD: +#PNGLIB = $(LOCALBASE)/lib/libpng$(PNGVER).so +#PNGHDR_DIR = $(LOCALBASE)/include +# OSF/Tru64: +#PNGLIB = /usr/local1/DEC/lib/libpng$(PNGVER).so +#PNGHDR_DIR = /usr/local1/DEC/include + +# The zlib compression library. See above. You need it to build +# anything that needs the PNG library (see above). If you selected +# NONE for the PNG library, it doesn't matter what you specify here -- +# it won't get used. +# +# If you have 'libpng-config' (see above), these are irrelevant. + +ZLIB = NONE +ZHDR_DIR = +#ZLIB = libz.so + +# The JBIG lossless image compression library (aka JBIG-KIT): + +JBIGLIB = $(BUILDDIR)/converter/other/jbig/libjbig.a +JBIGHDR_DIR = $(SRCDIR)/converter/other/jbig + +# The Jasper JPEG-2000 image compression library (aka JasPer): +JASPERLIB = $(INTERNAL_JASPERLIB) +JASPERHDR_DIR = $(INTERNAL_JASPERHDR_DIR) +# JASPERDEPLIBS is the libraries (-l options or file names) on which +# The Jasper library depends -- i.e. what you have to link into any +# executable that links in the Jasper library. +JASPERDEPLIBS = +#JASPERDEPLIBS = -ljpeg + +# And the Utah Raster Toolkit (aka URT aka RLE) library: + +URTLIB = $(BUILDDIR)/urt/librle.a +URTHDR_DIR = $(SRCDIR)/urt + +# The X11 library has facilities for talking to an X Window System +# server. It is required by Pamx. + +X11LIB = NONE +X11HDR_DIR = + +#X11LIB = /usr/lib/libX11.so +#X11HDR_DIR = + +# The Linux SVGA library (Svgalib) is a facility for displaying graphics +# on the Linux console. It is required by Ppmsvgalib. + +LINUXSVGALIB = NONE +LINUXSVGAHDR_DIR = + +#LINUXSVGALIB = /usr/lib/libvga.so +#LINUXSVGAHDR_DIR = /usr/include/vgalib + +# If you don't want any network functions, set OMIT_NETWORK to "y". +# The only thing that requires network functions is the option in +# ppmtompeg to run it on multiple computers simultaneously. On some +# systems network functions don't work or we haven't figured out how to +# make them work, or they just aren't worth the effort. +OMIT_NETWORK = +#DJGPP/Windows, Tru64: +# (there's some minor header problem that prevents network functions from +# building on Tru64 2000.10.06) +#OMIT_NETWORK = y + +# These are -l options to link in the network libraries. Often, these are +# built into the standard C library, so this can be null. This is irrelevant +# if OMIT_NETWORK is "y". + +NETWORKLD = +# Solaris, SunOS: +#NETWORKLD = -lsocket -lnsl +# SCO: +#NETWORKLD = -lsocket, -lresolv + +VMS = +#VMS: +#VMS = yes + +# DONT_HAVE_PROCESS_MGMT is Y if this system doesn't have the usual +# Unix process management stuff - fork, wait, etc. N for a regular Unix +# system. +DONT_HAVE_PROCESS_MGMT = N + +# The following variables are used only by 'make install' (and the +# variants of it). Paths here don't, for example, get built into any +# programs. + +# This is where everything goes when you do 'make package', unless you +# override it by setting 'pkgdir' on the Make command line. +PKGDIR_DEFAULT = /tmp/netpbm + +# Subdirectory of the package directory ($(pkgdir)) in which man pages +# go. +PKGMANDIR = man + +# File permissions for installed files. +# Note that on some systems (e.g. Solaris), 'install' can't use the +# mnemonic permissions - you have to use octal. + +# binaries (pbmmake, etc) +INSTALL_PERM_BIN = 755 # u=rwx,go=rx +# shared libraries (libpbm.so, etc) +INSTALL_PERM_LIBD = 755 # u=rwx,go=rx +# static libraries (libpbm.a, etc) +INSTALL_PERM_LIBS = 644 # u=rw,go=r +# header files (pbm.h, etc) +INSTALL_PERM_HDR = 644 # u=rw,go=r +# man pages (pbmmake.1, etc) +INSTALL_PERM_MAN = 644 # u=rw,go=r +# data files (pnmtopalm color maps, etc) +INSTALL_PERM_DATA = 644 # u=rw,go=r + +# Specify the suffix that want the man pages to have. + +SUFFIXMANUALS1 = 1 +SUFFIXMANUALS3 = 3 +SUFFIXMANUALS5 = 5 + +#NETPBMLIBTYPE tells the kind of libraries that will get built to hold the +#Netpbm library functions. The value is used only in make file tests. +# "unixshared" means a unix-style shared library, typically named like +# libxyz.so.2.3 +NETPBMLIBTYPE = unixshared +# "unixstatic" means a unix-style static library, (like libxyz.a) +#NETPBMLIBTYPE = unixstatic +# "dll" means a Windows DLL shared library +#NETPBMLIBTYPE = dll +# "dylib" means a Darwin/Mac OS shared library +#NETPBMLIBTYPE = dylib + +#NETPBMLIBSUFFIX is the suffix used on whatever kind of library is +#selected above. All this is used for is to construct library names. +#The make files never examine the actual value. +NETPBMLIBSUFFIX = so + +# "a" is the suffix for unix-style static libraries. It is also +# traditionally used for shared libraries on AIX. The Visual Age C +# manual says sometimes .so works on AIX, and GNU software for AIX +# 5.1.0 does indeed use it. In our experiments, it works fine if you +# name the library file explicitly on the link, but isn't in the -l +# search order. If you name the library explicitly on the link, the +# library must live in exactly the same position at run time, so we +# can't use that. Therefore, you cannot build both static and shared +# libraries with AIX. You have to choose. +#NETPBMLIBSUFFIX = a +# For HP-UX shared libraries: +#NETPBMLIBSUFFIX = sl +# Darwin/Mac OS shared library: +#NETPBMLIBSUFFIX = dylib +# Windows shared library: +#NETPBMLIBSUFFIX = dll + +#STATICLIB_TOO is "y" to signify that you want a static library built +#and installed in addition to whatever library type you specified by +#NETPBMLIBTYPE. If NETPBMLIBTYPE specified a static library, +#STATICLIB_TOO simply has no effect. +STATICLIB_TOO = y +#STATICLIB_TOO = n + +#STATICLIBSUFFIX is the suffix that static libraries have. It's +#meaningless if you aren't building static libraries. +STATICLIBSUFFIX = a + +#SHLIBPREFIXLIST is a blank-delimited list of prefixes that a filename +#of a shared library may have on this system. Traditionally, it's +#just "lib", as in libc or libnetpbm. On Windows, though, varying +#prefixes are used when multiple alternative forms of a library are +#available. The first prefix in this list is what we use to name the +#Netpbm shared libraries. +# +# This variable controls how 'libopt' gets built. +# +SHLIBPREFIXLIST = lib +#Cygwin: +#SHLIBPREFIXLIST = cyg lib + +NETPBMSHLIBPREFIX = $(firstword $(SHLIBPREFIXLIST)) + +#DLLVER is used to version the DLLs built on cygwin or other +#windowsish platforms. We can't add this to LIBROOT, or we'd +#version the static libs (which is bad). We can't add this +#at the end of the name (like unix does with so numbers) because +#windows will only load dlls whose name ends in "dll". So, +#we have this variable, which becomes the end of the library "root" name +#for DLLs only. +# +# This variable controls how 'libopt' gets built. +# +DLLVER = +#Cygwin +#DLLVER = $(NETPBM_MAJOR_RELEASE) + +#NETPBM_DOCURL is the URL of the main documentation page for Netpbm. +#This is a directory which contains a file for each Netpbm program, +#library, and file type. E.g. The documentation for jpegtopnm might be in +#http://netpbm.sourceforge.net/doc/jpegtopnm.html . This value gets +#installed in the man pages (which say no more than to read the webpage) +#and in the Webman netpbm.url file. +NETPBM_DOCURL = http://netpbm.sourceforge.net/doc/ +#For a system with no web access, but a local copy of the doc: +#NETPBM_DOCURL = file:/usr/doc/netpbm/ + + + + + +####Lines above were copied from Makefile.config.in by 'configure'. +####Lines below were added by 'configure' based on the SOLARIS platform. +DEFAULT_TARGET = nonmerge +NETPBMLIBTYPE=unixshared +NETPBMLIBSUFFIX=so +STATICLIB_TOO=n +NETPBMLIB_RUNTIME_PATH=/opt/csw/lib +LDSHLIB = -Wl,-Bdynamic,-G,-h,$(SONAME) +NEED_RUNTIME_PATH = Y +CFLAGS = @CFLAGS@ +CFLAGS_SHLIB = -fPIC -L/opt/csw/lib +RPATHOPTNAME = -R +NETWORKLD = -lsocket -lnsl +LINKERISCOMPILER = Y +TIFFHDR_DIR = importinc -I/opt/csw/include -I/opt/csw/X11/include +TIFFLIB = /opt/csw/lib/libtiff.so +JPEGHDR_DIR = importinc -I/opt/csw/include -I/opt/csw/X11/include +JPEGLIB = /opt/csw/lib/libjpeg.so +JASPERLIB = /opt/csw/lib/libjasper.so +JASPERHDR_DIR = importinc -I/opt/csw/include -I/opt/csw/X11/include +JASPERDEPLIBS = -ljpeg +JBIGLIB = /opt/csw/lib/libjbig.so +JBIGHDR_DIR = importinc -I/opt/csw/include -I/opt/csw/X11/include + +# And the Utah Raster Toolkit (aka URT aka RLE) library: +ZHDR_DIR = importinc -I/opt/csw/include -I/opt/csw/X11/include +ZLIB = /opt/csw/lib/libz.so +X11HDR_DIR = /usr/openwin/include/X11 -I/opt/csw/X11/include +X11LIB = /usr/openwin/lib/libX11.so +NETPBM_DOCURL = http://netpbm.sourceforge.net/doc/ +INTTYPES_H = "inttypes_netpbm.h" +HAVE_INT64 = N +LDFLAGS = -L/opt/csw/lib +PATH:=/opt/csw/bin:$(PATH) + + + +####Lines above were copied from config.mk.in by 'configure'. +####Lines below were added by 'configure' based on the SOLARIS platform. +DEFAULT_TARGET = nonmerge +NETPBMLIBTYPE=unixshared +NETPBMLIBSUFFIX=so +STATICLIB_TOO=n +NETPBMLIB_RUNTIME_PATH=/opt/csw/lib +LDSHLIB = -Wl,-Bdynamic,-G,-h,$(SONAME) +NEED_RUNTIME_PATH = Y +CC = gcc +CFLAGS = -O3 -ffast-math -pedantic -fno-common -Wall -Wno-uninitialized -Wmissing-declarations -Wimplicit -Wwrite-strings -Wmissing-prototypes -Wundef -std=gnu99 -D_XPG6 -D__EXTENSIONS__ -I/opt/csw/X11/include +RPATHOPTNAME = -R +NETWORKLD = -lsocket -lnsl +LINKERISCOMPILER = Y +CFLAGS_SHLIB += -fPIC +TIFFHDR_DIR = /opt/csw/include -I/opt/csw/X11/include +TIFFLIB = libtiff.so +JPEGLIB = libjpeg.so +ZHDR_DIR = /opt/csw/include -I/opt/csw/X11/include +ZLIB = libz.so +X11LIB = /usr/X11R6/lib/libX11.so +NETPBM_DOCURL = http://netpbm.sourceforge.net/doc/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at opencsw.org Sat Aug 17 09:12:52 2013 From: pfelecan at opencsw.org (Peter FELECAN) Date: Sat, 17 Aug 2013 09:12:52 +0200 Subject: [csw-devel] SF.net SVN: gar:[21753] csw/mgar/pkg/netpbm/trunk In-Reply-To: (lblume@users.sourceforge.net's message of "Sat, 17 Aug 2013 00:06:31 +0000") References: Message-ID: lblume at users.sourceforge.net writes: > +GARCOMPILER = GCC4 GNU is good enough value for this. Of course, you can be stubbornly picky and cling on a given version. IMHO, it's not necessary. -- Peter From dmichelsen at users.sourceforge.net Sat Aug 17 10:11:25 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 17 Aug 2013 08:11:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[21754] csw/mgar/pkg/libgssglue/trunk/Makefile Message-ID: Revision: 21754 http://gar.svn.sourceforge.net/gar/?rev=21754&view=rev Author: dmichelsen Date: 2013-08-17 08:11:20 +0000 (Sat, 17 Aug 2013) Log Message: ----------- libgssglue/trunk: Add missing define for Solaris Modified Paths: -------------- csw/mgar/pkg/libgssglue/trunk/Makefile Modified: csw/mgar/pkg/libgssglue/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgssglue/trunk/Makefile 2013-08-17 00:06:30 UTC (rev 21753) +++ csw/mgar/pkg/libgssglue/trunk/Makefile 2013-08-17 08:11:20 UTC (rev 21754) @@ -23,6 +23,8 @@ # PKGFILES is catchall RUNTIME_DEP_PKGS_CSWlibgssglue-dev += CSWlibgssglue0 +EXTRA_CPPFLAGS += -DUSE_SOLARIS_SHARED_LIBRARIES=1 + BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sat Aug 17 11:02:10 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 17 Aug 2013 09:02:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[21755] csw/mgar/pkg/rdesktop/trunk Message-ID: Revision: 21755 http://gar.svn.sourceforge.net/gar/?rev=21755&view=rev Author: dmichelsen Date: 2013-08-17 09:02:06 +0000 (Sat, 17 Aug 2013) Log Message: ----------- rdesktop/trunk: Update to 1.8.0 and add libgssglue Modified Paths: -------------- csw/mgar/pkg/rdesktop/trunk/Makefile csw/mgar/pkg/rdesktop/trunk/checksums Modified: csw/mgar/pkg/rdesktop/trunk/Makefile =================================================================== --- csw/mgar/pkg/rdesktop/trunk/Makefile 2013-08-17 08:11:20 UTC (rev 21754) +++ csw/mgar/pkg/rdesktop/trunk/Makefile 2013-08-17 09:02:06 UTC (rev 21755) @@ -1,5 +1,5 @@ NAME = rdesktop -VERSION = 1.7.1 +VERSION = 1.8.0 GARTYPE = v2 DESCRIPTION = RDP client for Windows NT/2000/2003/XP Terminal Server @@ -18,6 +18,7 @@ BUILD_DEP_PKGS += CSWlibao-dev BUILD_DEP_PKGS += CSWlibsamplerate-dev BUILD_DEP_PKGS += CSWlibssl-dev +BUILD_DEP_PKGS += CSWlibgssglue-dev PACKAGES += CSWrdesktop SPKG_DESC_CSWrdesktop = RDP client for Windows NT/2000/2003/XP Terminal Server @@ -25,6 +26,7 @@ RUNTIME_DEP_PKGS_CSWrdesktop += CSWlibao4 RUNTIME_DEP_PKGS_CSWrdesktop += CSWlibsamplerate0 RUNTIME_DEP_PKGS_CSWrdesktop += CSWlibssl1-0-0 +RUNTIME_DEP_PKGS_CSWrdesktop += CSWlibgssglue0 BUILD64 = 1 ISAEXEC = 1 @@ -32,6 +34,9 @@ CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-openssl=$(prefix) +# We don't have that framework +CONFIGURE_ARGS += --disable-smartcard + # No test/check target provided by rdesktop TEST_SCRIPTS = Modified: csw/mgar/pkg/rdesktop/trunk/checksums =================================================================== --- csw/mgar/pkg/rdesktop/trunk/checksums 2013-08-17 08:11:20 UTC (rev 21754) +++ csw/mgar/pkg/rdesktop/trunk/checksums 2013-08-17 09:02:06 UTC (rev 21755) @@ -1 +1 @@ -c4b39115951c4a6d74f511c99b18fcf9 rdesktop-1.7.1.tar.gz +203d662ac20b22250bbbd525a9f29f3a rdesktop-1.8.0.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 Sat Aug 17 12:31:36 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 17 Aug 2013 10:31:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[21756] csw/mgar/pkg/netpbm/trunk Message-ID: Revision: 21756 http://gar.svn.sourceforge.net/gar/?rev=21756&view=rev Author: lblume Date: 2013-08-17 10:31:35 +0000 (Sat, 17 Aug 2013) Log Message: ----------- netpbm/trunk: Some cleanup Modified Paths: -------------- csw/mgar/pkg/netpbm/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/netpbm/trunk/files/0006-memcpy_stdlib.patch Removed Paths: ------------- csw/mgar/pkg/netpbm/trunk/files/0006-memcpy.patch Modified: csw/mgar/pkg/netpbm/trunk/Makefile =================================================================== --- csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 09:02:06 UTC (rev 21755) +++ csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 10:31:35 UTC (rev 21756) @@ -19,8 +19,8 @@ EXPANDVARS += config.mk -PATCHFILES += 0005_missing_stdlib.h.patch -PATCHFILES += 0006-memcpy.patch +#PATCHFILES += 0005_missing_stdlib.h.patch +PATCHFILES += 0006-memcpy_stdlib.patch PATCHFILES += 0007_stdout_already_used.patch VENDOR_URL = http://netpbm.sourceforge.net/ Deleted: csw/mgar/pkg/netpbm/trunk/files/0006-memcpy.patch =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/0006-memcpy.patch 2013-08-17 09:02:06 UTC (rev 21755) +++ csw/mgar/pkg/netpbm/trunk/files/0006-memcpy.patch 2013-08-17 10:31:35 UTC (rev 21756) @@ -1,23 +0,0 @@ ---- a/pm_config.in.h ven. ao?t 16 23:48:28 2013 -+++ b/pm_config.in.h ven. ao?t 16 23:51:30 2013 -@@ -91,9 +91,11 @@ - - #ifndef __SASC - #ifndef _DCC /* Amiga DICE Compiler */ -+#ifndef sun /* Solaris */ - #define bzero(dst,len) memset(dst,0,len) - #define bcopy(src,dst,len) memcpy(dst,src,len) - #define bcmp memcmp -+#endif /* sun */ - #endif /* _DCC */ - #endif /* __SASC */ - -@@ -93,7 +93,7 @@ - ** If you have compilation problems that point here, feel free to tweak - ** or remove these declarations. - */ --#ifdef BSD -+#if defined(BSD) || defined(sun) - #include - #endif - #if defined(SYSV) Copied: csw/mgar/pkg/netpbm/trunk/files/0006-memcpy_stdlib.patch (from rev 21753, csw/mgar/pkg/netpbm/trunk/files/0006-memcpy.patch) =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/0006-memcpy_stdlib.patch (rev 0) +++ csw/mgar/pkg/netpbm/trunk/files/0006-memcpy_stdlib.patch 2013-08-17 10:31:35 UTC (rev 21756) @@ -0,0 +1,23 @@ +--- a/pm_config.in.h ven. ao?t 16 23:48:28 2013 ++++ b/pm_config.in.h ven. ao?t 16 23:51:30 2013 +@@ -91,9 +91,11 @@ + + #ifndef __SASC + #ifndef _DCC /* Amiga DICE Compiler */ ++#ifndef sun /* Solaris */ + #define bzero(dst,len) memset(dst,0,len) + #define bcopy(src,dst,len) memcpy(dst,src,len) + #define bcmp memcmp ++#endif /* sun */ + #endif /* _DCC */ + #endif /* __SASC */ + +@@ -93,7 +93,7 @@ + ** If you have compilation problems that point here, feel free to tweak + ** or remove these declarations. + */ +-#ifdef BSD ++#if defined(BSD) || defined(sun) + #include + #endif + #if defined(SYSV) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 17 18:17:25 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 17 Aug 2013 16:17:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[21757] csw/mgar/pkg/netpbm/trunk/Makefile Message-ID: Revision: 21757 http://gar.svn.sourceforge.net/gar/?rev=21757&view=rev Author: lblume Date: 2013-08-17 16:17:17 +0000 (Sat, 17 Aug 2013) Log Message: ----------- netpbm/trunk: Recipe cleanup Modified Paths: -------------- csw/mgar/pkg/netpbm/trunk/Makefile Modified: csw/mgar/pkg/netpbm/trunk/Makefile =================================================================== --- csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 10:31:35 UTC (rev 21756) +++ csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 16:17:17 UTC (rev 21757) @@ -19,7 +19,6 @@ EXPANDVARS += config.mk -#PATCHFILES += 0005_missing_stdlib.h.patch PATCHFILES += 0006-memcpy_stdlib.patch PATCHFILES += 0007_stdout_already_used.patch @@ -31,22 +30,31 @@ PACKAGES += CSWnetpbm SPKG_DESC_CSWnetpbm = A toolkit for manipulation of graphic images +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibnetpbm11 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibjpeg7 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibtiff5 -RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibpng12-0 -RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibz1 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibxml2-2 -RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibnetpbm10 +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibjbig2 +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibpng15-15 +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibjasper1 +# Plenty of those, but check_db_symbols returns absolutely nothing +CHECKPKG_OVERRIDES_CSWnetpbm += no-direct-binding -PACKAGES += CSWlibnetpbm10 -SPKG_DESC_CSWlibnetpbm10 = Library for manipulation of graphic images, libnetpbm.so.10 -PKGFILES_CSWlibnetpbm10 = $(call pkgfiles_lib,libnetpbm.so.10) +PACKAGES += CSWlibnetpbm11 +CATALOGNAME_CSWlibnetpbm11 = libnetpbm11 +PKGFILES_CSWlibnetpbm11 += $(call baseisadirs,$(libdir),libnetpbm\.so\.11\.63) +PKGFILES_CSWlibnetpbm11 += $(call baseisadirs,$(libdir),libnetpbm\.so\.11(\.\d+)*) +SPKG_DESC_CSWlibnetpbm11 += $(DESCRIPTION), libnetpbm.so.11 +# Acceptable, list of locations for rgb.txt +CHECKPKG_OVERRIDES_CSWlibnetpbm11 += file-with-bad-content|/usr/share|root/opt/csw/lib/libnetpbm.so.11.63 PACKAGES += CSWlibnetpbm-dev SPKG_DESC_CSWlibnetpbm-dev = Development files for libnetpbm.so.10 PKGFILES_CSWlibnetpbm-dev += $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWlibnetpbm-dev += CSWlibnetpbm10 +# Acceptable, list of locations for rgb.txt +CHECKPKG_OVERRIDES_CSWlibnetpbm-dev += file-with-bad-content|/usr/share|root/opt/csw/include/netpbm/pm_config.h CONFIGURE_SCRIPTS = custom @@ -66,6 +74,11 @@ EXTRA_PAX_ARGS = -s ",$(prefix)/misc,$(sharedstatedir)/netpbm," +EXTRA_LD_OPTIONS = -z nolazyload + +# Needed so the newly built libis picked before the installed one +EXTRA_LD_OPTIONS += -L$(abspath $(WORKSRC)/libs) + include gar/category.mk PATH := /opt/csw/gnu:$(PATH):/opt/csw/gcc4/bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From slowfranklin at users.sourceforge.net Sat Aug 17 19:37:39 2013 From: slowfranklin at users.sourceforge.net (slowfranklin at users.sourceforge.net) Date: Sat, 17 Aug 2013 17:37:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[21758] csw/mgar/pkg/netatalk/trunk Message-ID: Revision: 21758 http://gar.svn.sourceforge.net/gar/?rev=21758&view=rev Author: slowfranklin Date: 2013-08-17 17:37:34 +0000 (Sat, 17 Aug 2013) Log Message: ----------- netatalk/trunk: Update to 3.0.5 Modified Paths: -------------- csw/mgar/pkg/netatalk/trunk/Makefile csw/mgar/pkg/netatalk/trunk/checksums Modified: csw/mgar/pkg/netatalk/trunk/Makefile =================================================================== --- csw/mgar/pkg/netatalk/trunk/Makefile 2013-08-17 16:17:17 UTC (rev 21757) +++ csw/mgar/pkg/netatalk/trunk/Makefile 2013-08-17 17:37:34 UTC (rev 21758) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = netatalk -VERSION = 3.0.4 +VERSION = 3.0.5 GARTYPE = v2 DESCRIPTION = Open Source AFP fileserver @@ -41,10 +41,6 @@ RUNTIME_DEP_PKGS_sparc = CSWlibgpg-error0 RUNTIME_DEP_PKGS += $(RUNTIME_DEP_PKGS_$(GARCH)) -# Patches are in upstream and will be in 3.0.5 -PATCHFILES += 0000-Add-rpath-for-bdb.patch -PATCHFILES += 0001-Fix-use-of-unnamed-union-inside-struct.patch - REINPLACEMENTS += manifest1 REINPLACE_MATCH_manifest1 = network/netatalk REINPLACE_WITH_manifest1 = network/cswnetatalk Modified: csw/mgar/pkg/netatalk/trunk/checksums =================================================================== --- csw/mgar/pkg/netatalk/trunk/checksums 2013-08-17 16:17:17 UTC (rev 21757) +++ csw/mgar/pkg/netatalk/trunk/checksums 2013-08-17 17:37:34 UTC (rev 21758) @@ -1 +1 @@ -a75d94dfe1eb9dbf6bbfab03a96fc54a netatalk-3.0.4.tar.gz +aa9393f1cf30bea9db0fec3b36bbdb83 netatalk-3.0.5.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 Sat Aug 17 19:38:49 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 17 Aug 2013 17:38:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[21759] csw/mgar/pkg/netpbm/trunk Message-ID: Revision: 21759 http://gar.svn.sourceforge.net/gar/?rev=21759&view=rev Author: lblume Date: 2013-08-17 17:38:49 +0000 (Sat, 17 Aug 2013) Log Message: ----------- netpbm/trunk: Fix some big-endian issues; tinker with some old cruft to clean up the recipe Modified Paths: -------------- csw/mgar/pkg/netpbm/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/netpbm/trunk/files/0008_wordaccess_missing_quotes.patch csw/mgar/pkg/netpbm/trunk/files/0009_wordaccess_missing_semicolon.patch csw/mgar/pkg/netpbm/trunk/files/0010_only_one_rgb.txt.patch Modified: csw/mgar/pkg/netpbm/trunk/Makefile =================================================================== --- csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 17:37:34 UTC (rev 21758) +++ csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 17:38:49 UTC (rev 21759) @@ -21,6 +21,9 @@ PATCHFILES += 0006-memcpy_stdlib.patch PATCHFILES += 0007_stdout_already_used.patch +PATCHFILES += 0008_wordaccess_missing_quotes.patch +PATCHFILES += 0009_wordaccess_missing_semicolon.patch +PATCHFILES += 0010_only_one_rgb.txt.patch VENDOR_URL = http://netpbm.sourceforge.net/ @@ -46,15 +49,11 @@ PKGFILES_CSWlibnetpbm11 += $(call baseisadirs,$(libdir),libnetpbm\.so\.11\.63) PKGFILES_CSWlibnetpbm11 += $(call baseisadirs,$(libdir),libnetpbm\.so\.11(\.\d+)*) SPKG_DESC_CSWlibnetpbm11 += $(DESCRIPTION), libnetpbm.so.11 -# Acceptable, list of locations for rgb.txt -CHECKPKG_OVERRIDES_CSWlibnetpbm11 += file-with-bad-content|/usr/share|root/opt/csw/lib/libnetpbm.so.11.63 PACKAGES += CSWlibnetpbm-dev SPKG_DESC_CSWlibnetpbm-dev = Development files for libnetpbm.so.10 PKGFILES_CSWlibnetpbm-dev += $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWlibnetpbm-dev += CSWlibnetpbm10 -# Acceptable, list of locations for rgb.txt -CHECKPKG_OVERRIDES_CSWlibnetpbm-dev += file-with-bad-content|/usr/share|root/opt/csw/include/netpbm/pm_config.h CONFIGURE_SCRIPTS = custom @@ -74,27 +73,23 @@ EXTRA_PAX_ARGS = -s ",$(prefix)/misc,$(sharedstatedir)/netpbm," -EXTRA_LD_OPTIONS = -z nolazyload +EXTRA_LD_OPTIONS += -z nolazyload -B direct # Needed so the newly built libis picked before the installed one -EXTRA_LD_OPTIONS += -L$(abspath $(WORKSRC)/libs) +EXTRA_LD_OPTIONS += -L$(abspath $(WORKSRC)/lib) include gar/category.mk -PATH := /opt/csw/gnu:$(PATH):/opt/csw/gcc4/bin +PATH := /opt/csw/gnu:$(PATH) configure-custom: cp $(WORKDIR)/config.mk $(WORKSRC) - perl -pi \ - -e 's,(#define\s+RGB_DB1\s+).*,$$1"/opt/csw/share/netpbm/rgb.txt",;' \ - -e 's,(#define\s+RGB_DB2\s+).*,$$1"/usr/openwin/lib/X11/rgb.txt",;' \ - -e 's,(#define\s+RGB_DB3\s+).*,$$1"/usr/openwin/lib/rgb.txt",;' \ - $(WORKSRC)/pm_config.in.h @$(MAKECOOKIE) pre-install-modulated: mkdir -p $(DESTDIR)/opt + @$(MAKECOOKIE) -post-install-modulated: - rm -f $(DESTDIR)$(libdir)/libnetpbm.so - gln -s libnetpbm.so.10 $(DESTDIR)$(libdir)/libnetpbm.so +#post-install-modulated: + #rm -f $(DESTDIR)$(libdir)/libnetpbm.so + #gln -s libnetpbm.so.11 $(DESTDIR)$(libdir)/libnetpbm.so Added: csw/mgar/pkg/netpbm/trunk/files/0008_wordaccess_missing_quotes.patch =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/0008_wordaccess_missing_quotes.patch (rev 0) +++ csw/mgar/pkg/netpbm/trunk/files/0008_wordaccess_missing_quotes.patch 2013-08-17 17:38:49 UTC (rev 21759) @@ -0,0 +1,15 @@ +--- a/lib/util/wordaccess.h Sat Aug 17 18:28:17 2013 ++++ b/lib/util/wordaccess.h Sat Aug 17 18:33:46 2013 +@@ -49,10 +49,10 @@ + #include "wordaccess_generic.h" + #elif BYTE_ORDER == BIG_ENDIAN + #if UNALIGNED_OK +- #include wordaccess_be_unaligned.h ++ #include "wordaccess_be_unaligned.h" + #else + /* Sparc */ +- #include wordaccess_be_aligned.h ++ #include "wordaccess_be_aligned.h" + #endif + #elif HAVE_GCC_BITCOUNT + #if (BITS_PER_LONG == 64) Added: csw/mgar/pkg/netpbm/trunk/files/0009_wordaccess_missing_semicolon.patch =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/0009_wordaccess_missing_semicolon.patch (rev 0) +++ csw/mgar/pkg/netpbm/trunk/files/0009_wordaccess_missing_semicolon.patch 2013-08-17 17:38:49 UTC (rev 21759) @@ -0,0 +1,11 @@ +--- a/lib/util/wordaccess_be_aligned.h Sat Aug 17 18:33:09 2013 ++++ b/lib/util/wordaccess_be_aligned.h Sat Aug 17 18:53:52 2013 +@@ -24,7 +24,7 @@ + static __inline__ void + wordintToBytes(wordintBytes * const bytesP, + wordint const wordInt) { +- uint16_t const hi = ((wordInt >> 48) & 0xFF) ++ uint16_t const hi = ((wordInt >> 48) & 0xFF); + uint16_t const mh = ((wordInt >> 32) & 0xFF); + uint16_t const ml = ((wordInt >> 24) & 0xFF); + uint16_t const lo = ((wordInt >> 0) & 0xFF); Added: csw/mgar/pkg/netpbm/trunk/files/0010_only_one_rgb.txt.patch =================================================================== --- csw/mgar/pkg/netpbm/trunk/files/0010_only_one_rgb.txt.patch (rev 0) +++ csw/mgar/pkg/netpbm/trunk/files/0010_only_one_rgb.txt.patch 2013-08-17 17:38:49 UTC (rev 21759) @@ -0,0 +1,12 @@ +--- a/pm_config.in.h Sat Aug 17 19:10:14 2013 ++++ b/pm_config.in.h Sat Aug 17 19:33:52 2013 +@@ -60,9 +60,6 @@ + ** hex and decimal forms to specify colors (see ppm/pgmtoppm.1 for details). */ + + #define RGB_DB_PATH \ +-"/usr/share/netpbm/rgb.txt:" \ +-"/usr/lib/X11/rgb.txt:" \ +-"/usr/share/X11/rgb.txt:" \ + "/usr/X11R6/lib/X11/rgb.txt" + + /* CONFIGURE: This is the name of an environment variable that tells This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 17 20:27:58 2013 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 17 Aug 2013 18:27:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[21760] csw/mgar/pkg/lang-python/cython/trunk/Makefile Message-ID: Revision: 21760 http://gar.svn.sourceforge.net/gar/?rev=21760&view=rev Author: wahwah Date: 2013-08-17 18:27:53 +0000 (Sat, 17 Aug 2013) Log Message: ----------- lang-python/cython/trunk: 2.6 and 2.7 Modified Paths: -------------- csw/mgar/pkg/lang-python/cython/trunk/Makefile Modified: csw/mgar/pkg/lang-python/cython/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/cython/trunk/Makefile 2013-08-17 17:38:49 UTC (rev 21759) +++ csw/mgar/pkg/lang-python/cython/trunk/Makefile 2013-08-17 18:27:53 UTC (rev 21760) @@ -22,32 +22,25 @@ endef -MASTER_SITES = $(PYPI_MIRROR) +CATEGORIES = python DISTFILES = $(DISTNAME).tar.gz -GARCOMPILER = SOS12U3 - LICENSE = LICENSE.txt -REINPLACE_USRLOCAL = $(libdir)/python/site-packages/pyximport/pyximport.py +REINPLACE_USRLOCAL = $(libdir)/python/site-packages.*/pyximport/pyximport.py REINPLACE_WHEN_USRLOCAL = postinstall PACKAGES = CSWcython -RUNTIME_DEP_PKGS_CSWcython += CSWpython RUNTIME_DEP_PKGS_CSWcython += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWcython += CSWlibpython2-7-1-0 +RUNTIME_DEP_PKGS_CSWcython += CSWlibgcc-s1 -PYCOMPILE = 1 +TEST_SCRIPTS = STRIP_LIBTOOL = 1 -EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc -CONFIGURE_SCRIPTS = -TEST_SCRIPTS = -INSTALL_SCRIPTS = $(WORKSRC)/setup.py -INSTALL_ARGS += --root=$(DESTDIR) -INSTALL_ARGS += --prefix=$(prefix) - CHECKPKG_OVERRIDES_CSWcython += pkgname-does-not-start-with-CSWpy- CHECKPKG_OVERRIDES_CSWcython += catalogname-does-not-start-with-py_ +CHECKPKG_OVERRIDES_CSWcython += file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/pyximport/pyximport.py +CHECKPKG_OVERRIDES_CSWcython += file-with-bad-content|/usr/local|root/opt/csw/lib/python2.6/site-packages/pyximport/pyximport.py include gar/category.mk - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Aug 17 21:39:15 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 17 Aug 2013 19:39:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[21761] csw/mgar/gar/v2/lib/python/inspective_package.py Message-ID: Revision: 21761 http://gar.svn.sourceforge.net/gar/?rev=21761&view=rev Author: chninkel Date: 2013-08-17 19:39:13 +0000 (Sat, 17 Aug 2013) Log Message: ----------- gar/v2: checkpkg: correctly dump the elfdump stdout when an error occured Modified Paths: -------------- csw/mgar/gar/v2/lib/python/inspective_package.py Modified: csw/mgar/gar/v2/lib/python/inspective_package.py =================================================================== --- csw/mgar/gar/v2/lib/python/inspective_package.py 2013-08-17 18:27:53 UTC (rev 21760) +++ csw/mgar/gar/v2/lib/python/inspective_package.py 2013-08-17 19:39:13 UTC (rev 21761) @@ -268,7 +268,7 @@ stderr = re.sub(ignored_error_re, "", stderr) if stderr: with open("/tmp/elfdump_stdout.log", "w") as fd: - fd.write(stdout) + fd.write(elfdump_output_file.read()) with open("/tmp/elfdump_stderr.log", "w") as fd: fd.write(stderr) msg = ("%s returned one or more errors: %s" % (args, stderr) + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Aug 17 22:04:45 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 17 Aug 2013 20:04:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[21762] csw/mgar/pkg/netpbm/trunk/Makefile Message-ID: Revision: 21762 http://gar.svn.sourceforge.net/gar/?rev=21762&view=rev Author: chninkel Date: 2013-08-17 20:04:43 +0000 (Sat, 17 Aug 2013) Log Message: ----------- netpbm/trunk: removed GNU from path to solve no direct binding error Modified Paths: -------------- csw/mgar/pkg/netpbm/trunk/Makefile Modified: csw/mgar/pkg/netpbm/trunk/Makefile =================================================================== --- csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 19:39:13 UTC (rev 21761) +++ csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 20:04:43 UTC (rev 21762) @@ -41,8 +41,6 @@ RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibjbig2 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibpng15-15 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibjasper1 -# Plenty of those, but check_db_symbols returns absolutely nothing -CHECKPKG_OVERRIDES_CSWnetpbm += no-direct-binding PACKAGES += CSWlibnetpbm11 CATALOGNAME_CSWlibnetpbm11 = libnetpbm11 @@ -73,15 +71,11 @@ EXTRA_PAX_ARGS = -s ",$(prefix)/misc,$(sharedstatedir)/netpbm," -EXTRA_LD_OPTIONS += -z nolazyload -B direct - # Needed so the newly built libis picked before the installed one EXTRA_LD_OPTIONS += -L$(abspath $(WORKSRC)/lib) include gar/category.mk -PATH := /opt/csw/gnu:$(PATH) - configure-custom: cp $(WORKDIR)/config.mk $(WORKSRC) @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 17 22:37:54 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 17 Aug 2013 20:37:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[21763] csw/mgar/pkg/netpbm/trunk/Makefile Message-ID: Revision: 21763 http://gar.svn.sourceforge.net/gar/?rev=21763&view=rev Author: lblume Date: 2013-08-17 20:37:54 +0000 (Sat, 17 Aug 2013) Log Message: ----------- netpbm/trunk: Some more recipe fixes Modified Paths: -------------- csw/mgar/pkg/netpbm/trunk/Makefile Modified: csw/mgar/pkg/netpbm/trunk/Makefile =================================================================== --- csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 20:04:43 UTC (rev 21762) +++ csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 20:37:54 UTC (rev 21763) @@ -49,9 +49,9 @@ SPKG_DESC_CSWlibnetpbm11 += $(DESCRIPTION), libnetpbm.so.11 PACKAGES += CSWlibnetpbm-dev -SPKG_DESC_CSWlibnetpbm-dev = Development files for libnetpbm.so.10 +SPKG_DESC_CSWlibnetpbm-dev = Development files for libnetpbm.so.11 PKGFILES_CSWlibnetpbm-dev += $(PKGFILES_DEVEL) -RUNTIME_DEP_PKGS_CSWlibnetpbm-dev += CSWlibnetpbm10 +RUNTIME_DEP_PKGS_CSWlibnetpbm-dev += CSWlibnetpbm11 CONFIGURE_SCRIPTS = custom @@ -84,6 +84,6 @@ mkdir -p $(DESTDIR)/opt @$(MAKECOOKIE) -#post-install-modulated: - #rm -f $(DESTDIR)$(libdir)/libnetpbm.so - #gln -s libnetpbm.so.11 $(DESTDIR)$(libdir)/libnetpbm.so +post-install-modulated: + rm -f $(DESTDIR)$(libdir)/libnetpbm.so + gln -s libnetpbm.so.11 $(DESTDIR)$(libdir)/libnetpbm.so This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 17 23:29:57 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 17 Aug 2013 21:29:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[21764] csw/mgar/pkg/netpbm/trunk/Makefile Message-ID: Revision: 21764 http://gar.svn.sourceforge.net/gar/?rev=21764&view=rev Author: lblume Date: 2013-08-17 21:29:54 +0000 (Sat, 17 Aug 2013) Log Message: ----------- netpbm/trunk: REmove empty dir created during install Modified Paths: -------------- csw/mgar/pkg/netpbm/trunk/Makefile Modified: csw/mgar/pkg/netpbm/trunk/Makefile =================================================================== --- csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 20:37:54 UTC (rev 21763) +++ csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 21:29:54 UTC (rev 21764) @@ -87,3 +87,6 @@ post-install-modulated: rm -f $(DESTDIR)$(libdir)/libnetpbm.so gln -s libnetpbm.so.11 $(DESTDIR)$(libdir)/libnetpbm.so + # Wherever that comes from, it must go + rmdir $(DESTDIR)/link + @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sun Aug 18 00:01:08 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 17 Aug 2013 22:01:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[21765] csw/mgar/pkg/netpbm/trunk/Makefile Message-ID: Revision: 21765 http://gar.svn.sourceforge.net/gar/?rev=21765&view=rev Author: lblume Date: 2013-08-17 22:01:05 +0000 (Sat, 17 Aug 2013) Log Message: ----------- netpbm/trunk: And a few more adjustments to remove that useless dir Modified Paths: -------------- csw/mgar/pkg/netpbm/trunk/Makefile Modified: csw/mgar/pkg/netpbm/trunk/Makefile =================================================================== --- csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 21:29:54 UTC (rev 21764) +++ csw/mgar/pkg/netpbm/trunk/Makefile 2013-08-17 22:01:05 UTC (rev 21765) @@ -67,7 +67,7 @@ EXTRA_MERGE_EXCLUDE_FILES += $(prefix)/VERSION EXTRA_MERGE_EXCLUDE_FILES += $(prefix)/config_template EXTRA_MERGE_EXCLUDE_FILES += $(prefix)/man/.* -EXTRA_MERGE_EXCLUDE_FILES += $(prefix)/link/.* +EXTRA_MERGE_EXCLUDE_FILES += $(prefix)/link.* EXTRA_PAX_ARGS = -s ",$(prefix)/misc,$(sharedstatedir)/netpbm," @@ -85,8 +85,6 @@ @$(MAKECOOKIE) post-install-modulated: + rm -rf $(DESTDIR)$(prefix)/link rm -f $(DESTDIR)$(libdir)/libnetpbm.so gln -s libnetpbm.so.11 $(DESTDIR)$(libdir)/libnetpbm.so - # Wherever that comes from, it must go - rmdir $(DESTDIR)/link - @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at opencsw.org Sun Aug 18 09:17:53 2013 From: pfelecan at opencsw.org (Peter FELECAN) Date: Sun, 18 Aug 2013 09:17:53 +0200 Subject: [csw-devel] SF.net SVN: gar:[21762] csw/mgar/pkg/netpbm/trunk/Makefile In-Reply-To: (chninkel@users.sourceforge.net's message of "Sat, 17 Aug 2013 20:04:45 +0000") References: Message-ID: chninkel at users.sourceforge.net writes: > Revision: 21762 > http://gar.svn.sourceforge.net/gar/?rev=21762&view=rev > Author: chninkel > Date: 2013-08-17 20:04:43 +0000 (Sat, 17 Aug 2013) > Log Message: > ----------- > netpbm/trunk: removed GNU from path to solve no direct binding error Out of curiosity: why removing that from the PATH solves that issue? -- Peter From dmichelsen at users.sourceforge.net Sun Aug 18 21:31:18 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 19:31:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[21766] csw/mgar/pkg/cpan Message-ID: Revision: 21766 http://gar.svn.sourceforge.net/gar/?rev=21766&view=rev Author: dmichelsen Date: 2013-08-18 19:31:12 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Test-Inter/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Test-Inter/ csw/mgar/pkg/cpan/Test-Inter/branches/ csw/mgar/pkg/cpan/Test-Inter/tags/ csw/mgar/pkg/cpan/Test-Inter/trunk/ csw/mgar/pkg/cpan/Test-Inter/trunk/Makefile csw/mgar/pkg/cpan/Test-Inter/trunk/checksums csw/mgar/pkg/cpan/Test-Inter/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Test-Inter/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Test-Inter/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Inter/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Test-Inter/trunk/Makefile 2013-08-18 19:31:12 UTC (rev 21766) @@ -0,0 +1,26 @@ +NAME = Test-Inter +VERSION = 1.05 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SBECK + +DESCRIPTION = Framework for more readable interactive test scripts +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-test-inter +CATALOGNAME_CSWpm-test-inter = pm_test_inter +SPKG_DESC_CSWpm-test-inter = Framework for more readable interactive test scripts +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-test-inter = 1 + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Test-Inter/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Inter/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Test-Inter/trunk/checksums 2013-08-18 19:31:12 UTC (rev 21766) @@ -0,0 +1 @@ +5c021ced9a642f9bb28aa0b8ac6f50a1 Test-Inter-1.05.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 Aug 18 21:48:53 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 19:48:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[21767] csw/mgar/pkg/cpan Message-ID: Revision: 21767 http://gar.svn.sourceforge.net/gar/?rev=21767&view=rev Author: dmichelsen Date: 2013-08-18 19:48:53 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Expect/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Expect/ csw/mgar/pkg/cpan/Expect/branches/ csw/mgar/pkg/cpan/Expect/tags/ csw/mgar/pkg/cpan/Expect/trunk/ csw/mgar/pkg/cpan/Expect/trunk/Makefile csw/mgar/pkg/cpan/Expect/trunk/checksums csw/mgar/pkg/cpan/Expect/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Expect/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Expect/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Expect/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Expect/trunk/Makefile 2013-08-18 19:48:53 UTC (rev 21767) @@ -0,0 +1,23 @@ +NAME = Expect +VERSION = 1.21 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = RGIERSIG + +DESCRIPTION = Perl version of Don Libes' Tcl-Expect +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-expect +CATALOGNAME_CSWpm-expect = pm_expect +SPKG_DESC_CSWpm-expect = Perl version of Don Libes' Tcl-Expect +ARCHALL_CSWpm-expect = 1 +RUNTIME_DEP_PKGS_CSWpm-expect += CSWpm-io-tty +OBSOLETED_BY_CSWpm-expect += CSWpmexpect +CATALOGNAME_CSWpmexpect = pm_expect_stub + +include gar/category.mk Added: csw/mgar/pkg/cpan/Expect/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Expect/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Expect/trunk/checksums 2013-08-18 19:48:53 UTC (rev 21767) @@ -0,0 +1 @@ +a151b0dc4d1a35c73941c65b7c26da5b Expect-1.21.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 Aug 18 21:49:47 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 19:49:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[21768] csw/mgar/pkg/cpan/Date-Manip/trunk Message-ID: Revision: 21768 http://gar.svn.sourceforge.net/gar/?rev=21768&view=rev Author: dmichelsen Date: 2013-08-18 19:49:47 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Date-Manip/trunk: Update to 6.40 and makemake Modified Paths: -------------- csw/mgar/pkg/cpan/Date-Manip/trunk/Makefile csw/mgar/pkg/cpan/Date-Manip/trunk/checksums Modified: csw/mgar/pkg/cpan/Date-Manip/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Date-Manip/trunk/Makefile 2013-08-18 19:48:53 UTC (rev 21767) +++ csw/mgar/pkg/cpan/Date-Manip/trunk/Makefile 2013-08-18 19:49:47 UTC (rev 21768) @@ -1,20 +1,29 @@ NAME = Date-Manip -VERSION = 6.01 +VERSION = 6.40 CATEGORIES = cpan GARTYPE = v2 AUTHOR = SBECK DESCRIPTION = Date manipulation routines define BLURB - This is a set of routines designed to make any common date/time manipulation - easy to do. Operations such as comparing two times, calculating a time a - given amount of time from another, or parsing international times are all - easily done. endef -PACKAGES = CSWpmdatemanip -CATALOGNAME = pm_datemanip +CATALOG_RELEASE = unstable -ARCHALL = 1 +LICENSE = LICENSE +BUILD_DEP_PKGS += CSWpm-test-inter + +PACKAGES += CSWpm-date-manip +CATALOGNAME_CSWpm-date-manip = pm_date_manip +SPKG_DESC_CSWpm-date-manip = Date manipulation routines +ARCHALL_CSWpm-date-manip = 1 +OBSOLETED_BY_CSWpm-date-manip += CSWpmdatemanip +CATALOGNAME_CSWpmdatemanip = pm_datemanip_stub + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + include gar/category.mk Modified: csw/mgar/pkg/cpan/Date-Manip/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Date-Manip/trunk/checksums 2013-08-18 19:48:53 UTC (rev 21767) +++ csw/mgar/pkg/cpan/Date-Manip/trunk/checksums 2013-08-18 19:49:47 UTC (rev 21768) @@ -1 +1 @@ -bd29dbc876a446521cdb9de51493cd67 Date-Manip-6.01.tar.gz +ae57b05e8ec689de2f23c99639e0109d Date-Manip-6.40.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 Aug 18 21:54:25 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 19:54:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[21769] csw/mgar/pkg/cpan Message-ID: Revision: 21769 http://gar.svn.sourceforge.net/gar/?rev=21769&view=rev Author: dmichelsen Date: 2013-08-18 19:54:25 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Expect-Simple/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Expect-Simple/ csw/mgar/pkg/cpan/Expect-Simple/branches/ csw/mgar/pkg/cpan/Expect-Simple/tags/ csw/mgar/pkg/cpan/Expect-Simple/trunk/ csw/mgar/pkg/cpan/Expect-Simple/trunk/Makefile csw/mgar/pkg/cpan/Expect-Simple/trunk/checksums csw/mgar/pkg/cpan/Expect-Simple/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Expect-Simple/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Expect-Simple/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Expect-Simple/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Expect-Simple/trunk/Makefile 2013-08-18 19:54:25 UTC (rev 21769) @@ -0,0 +1,24 @@ +NAME = Expect-Simple +VERSION = 0.04 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DJERIUS + +DESCRIPTION = Wrapper around the Expect module +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-expect-simple +CATALOGNAME_CSWpm-expect-simple = pm_expect_simple +SPKG_DESC_CSWpm-expect-simple = Wrapper around the Expect module +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-expect-simple = 1 +RUNTIME_DEP_PKGS_CSWpm-expect-simple += CSWpm-expect +OBSOLETED_BY_CSWpm-expect-simple += CSWpmexpectsimp +CATALOGNAME_CSWpmexpectsimp = pm_expectsimp_stub + +include gar/category.mk Added: csw/mgar/pkg/cpan/Expect-Simple/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Expect-Simple/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Expect-Simple/trunk/checksums 2013-08-18 19:54:25 UTC (rev 21769) @@ -0,0 +1 @@ +bf185be42e59996021f088788168f9ab Expect-Simple-0.04.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 Aug 18 22:07:32 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 20:07:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[21770] csw/mgar/pkg/cpan/Regexp-Shellish/trunk Message-ID: Revision: 21770 http://gar.svn.sourceforge.net/gar/?rev=21770&view=rev Author: dmichelsen Date: 2013-08-18 20:07:32 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Regexp-Shellish/trunk: Update to makemake and new package name Modified Paths: -------------- csw/mgar/pkg/cpan/Regexp-Shellish/trunk/Makefile csw/mgar/pkg/cpan/Regexp-Shellish/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.depend csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.gspec csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.prototype Modified: csw/mgar/pkg/cpan/Regexp-Shellish/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Regexp-Shellish/trunk/Makefile 2013-08-18 19:54:25 UTC (rev 21769) +++ csw/mgar/pkg/cpan/Regexp-Shellish/trunk/Makefile 2013-08-18 20:07:32 UTC (rev 21770) @@ -4,12 +4,19 @@ GARTYPE = v2 AUTHOR = RBS -DESCRIPTION = shell-like regular expressions +DESCRIPTION = Shell-like regular expressions define BLURB - Provides shell-like regular expressions. The wildcards provided are ?, * and - **, where ** is like * but matches /. endef -DISTFILES = $(call admfiles,CSWpmregexpshellish,depend prototype) +CATALOG_RELEASE = unstable +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-regexp-shellish +CATALOGNAME_CSWpm-regexp-shellish = pm_regexp_shellish +SPKG_DESC_CSWpm-regexp-shellish = Shell-like regular expressions +ARCHALL_CSWpm-regexp-shellish = 1 +OBSOLETED_BY_CSWpm-regexp-shellish += CSWpmregexpshellish +CATALOGNAME_CSWpmregexpshellish = pm_regexpshellish_stub + include gar/category.mk Modified: csw/mgar/pkg/cpan/Regexp-Shellish/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Regexp-Shellish/trunk/checksums 2013-08-18 19:54:25 UTC (rev 21769) +++ csw/mgar/pkg/cpan/Regexp-Shellish/trunk/checksums 2013-08-18 20:07:32 UTC (rev 21770) @@ -1,4 +1 @@ -b11f36ccd53305cb5a21f9911b8bbfbe download/CSWpmregexpshellish.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmregexpshellish.depend -36751d2a15dbcc8ab55424828eb2831f download/CSWpmregexpshellish.prototype -a5f92bf82b3d5033518e6d2c1028ee37 download/Regexp-Shellish-0.93.tar.gz +a5f92bf82b3d5033518e6d2c1028ee37 Regexp-Shellish-0.93.tar.gz Deleted: csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.depend =================================================================== Deleted: csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.gspec =================================================================== --- csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.gspec 2013-08-18 19:54:25 UTC (rev 21769) +++ csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.gspec 2013-08-18 20:07:32 UTC (rev 21770) @@ -1,9 +0,0 @@ -%var bitname pm_regexpshellish -%var pkgname CSWpmregexpshellish -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 1999, Barrie Slaymaker - -You may distribute under the terms of either the GNU General Public -License or the Artistic License, as specified in the README file. Deleted: csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.prototype =================================================================== --- csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.prototype 2013-08-18 19:54:25 UTC (rev 21769) +++ csw/mgar/pkg/cpan/Regexp-Shellish/trunk/files/CSWpmregexpshellish.prototype 2013-08-18 20:07:32 UTC (rev 21770) @@ -1,15 +0,0 @@ -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/perl 0755 root bin -d none /opt/csw/lib/perl/csw 0755 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Regexp 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Regexp/Shellish 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Regexp/Shellish/.packlist 0644 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Regexp::Shellish.3perl 0444 root bin -d none /opt/csw/share/perl 0755 root bin -d none /opt/csw/share/perl/csw 0755 root bin -d none /opt/csw/share/perl/csw/Regexp 0755 root bin -f none /opt/csw/share/perl/csw/Regexp/Shellish.pm 0444 root bin 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 Aug 18 22:08:43 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 20:08:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[21771] csw/mgar/pkg/cpan/Class-Autouse/trunk Message-ID: Revision: 21771 http://gar.svn.sourceforge.net/gar/?rev=21771&view=rev Author: dmichelsen Date: 2013-08-18 20:08:42 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Class-Autouse/trunk: Update to 2.01 and makemake, the previous recipe never got used Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Autouse/trunk/Makefile csw/mgar/pkg/cpan/Class-Autouse/trunk/checksums Modified: csw/mgar/pkg/cpan/Class-Autouse/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Autouse/trunk/Makefile 2013-08-18 20:07:32 UTC (rev 21770) +++ csw/mgar/pkg/cpan/Class-Autouse/trunk/Makefile 2013-08-18 20:08:42 UTC (rev 21771) @@ -1,31 +1,23 @@ NAME = Class-Autouse -VERSION = 1.29 +VERSION = 2.01 CATEGORIES = cpan GARTYPE = v2 AUTHOR = ADAMK -DESCRIPTION = Run-time class loading on first method call +DESCRIPTION = Run-time load a class the first time you call a method in it define BLURB - Class::Autouse allows you to specify a class the will only load when a - method of that class is called. For large classes that might not be used - during the running of a program, such as Date::Manip, this can save you - large amounts of memory, and decrease the script load time a great deal. endef -PACKAGES = CSWpmclassautouse CSWpmclsautouse +CATALOG_RELEASE = unstable -CATALOGNAME_CSWpmclassautouse = pm_classautouse -CATALOGNAME_CSWpmclsautouse = pm_clsautouse - -SPKG_DESC_CSWpmclassautouse = $(DESCRIPTION) -SPKG_DESC_CSWpmclsautouse = Empty stub as contents has been moved to CSWpmclassautouse - -RUNTIME_DEP_PKGS_ONLY_CSWpmclsautouse = CSWpmclassautouse - LICENSE = LICENSE -ARCHALL = 1 +PACKAGES += CSWpm-class-autouse +CATALOGNAME_CSWpm-class-autouse = pm_class_autouse +SPKG_DESC_CSWpm-class-autouse = Run-time load a class the first time you call a method in it +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-class-autouse = 1 +OBSOLETED_BY_CSWpm-class-autouse += CSWpmclsautouse +CATALOGNAME_CSWpmclsautouse = pm_clsautouse_stub -PKGFILES_CSWpmclsautouse = NOFILES - include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-Autouse/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Autouse/trunk/checksums 2013-08-18 20:07:32 UTC (rev 21770) +++ csw/mgar/pkg/cpan/Class-Autouse/trunk/checksums 2013-08-18 20:08:42 UTC (rev 21771) @@ -1 +1 @@ -da37cc729e01a504b93bc8bdc548d9a9 Class-Autouse-1.29.tar.gz +920890629fa60ba1a3a1150ffa2365fe Class-Autouse-2.01.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 Aug 18 22:46:29 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 20:46:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[21772] csw/mgar/pkg/cpan/File-Type/trunk Message-ID: Revision: 21772 http://gar.svn.sourceforge.net/gar/?rev=21772&view=rev Author: dmichelsen Date: 2013-08-18 20:46:27 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/File-Type/trunk: Update to makemake and mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/File-Type/trunk/Makefile csw/mgar/pkg/cpan/File-Type/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.depend csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.gspec csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.prototype Modified: csw/mgar/pkg/cpan/File-Type/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/File-Type/trunk/Makefile 2013-08-18 20:08:42 UTC (rev 21771) +++ csw/mgar/pkg/cpan/File-Type/trunk/Makefile 2013-08-18 20:46:27 UTC (rev 21772) @@ -4,12 +4,25 @@ GARTYPE = v2 AUTHOR = PMISON -DESCRIPTION = determine file type using magic +DESCRIPTION = define BLURB - File::Type uses magic numbers (typically at the start of a file) to - determine the MIME type of that file. endef -DISTFILES = $(call admfiles,CSWpmfiletype,depend prototype) +CATALOG_RELEASE = unstable +LICENSE_TEXT = This module is licensed under the perl license + +PACKAGES += CSWpm-file-type +CATALOGNAME_CSWpm-file-type = pm_file_type +SPKG_DESC_CSWpm-file-type = Determine file type using magic +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-file-type = 1 +OBSOLETED_BY_CSWpm-file-type += CSWpmfiletype +CATALOGNAME_CSWpmfiletype = pm_filetype_stub + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + include gar/category.mk Modified: csw/mgar/pkg/cpan/File-Type/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/File-Type/trunk/checksums 2013-08-18 20:08:42 UTC (rev 21771) +++ csw/mgar/pkg/cpan/File-Type/trunk/checksums 2013-08-18 20:46:27 UTC (rev 21772) @@ -1,4 +1 @@ -5223cc6b92c33c36fa4245a4f6a557ba download/CSWpmfiletype.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmfiletype.depend -07a9277e5f8e8802842621d23b6d500a download/CSWpmfiletype.prototype -4be3b0b7000b325c60351fcc8a04815d download/File-Type-0.22.tar.gz +4be3b0b7000b325c60351fcc8a04815d File-Type-0.22.tar.gz Deleted: csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.depend =================================================================== Deleted: csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.gspec =================================================================== --- csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.gspec 2013-08-18 20:08:42 UTC (rev 21771) +++ csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.gspec 2013-08-18 20:46:27 UTC (rev 21772) @@ -1,8 +0,0 @@ -%var bitname pm_filetype -%var pkgname CSWpmfiletype -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2003-2004 Fotango Ltd. - -Licensed under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.prototype =================================================================== --- csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.prototype 2013-08-18 20:08:42 UTC (rev 21771) +++ csw/mgar/pkg/cpan/File-Type/trunk/files/CSWpmfiletype.prototype 2013-08-18 20:46:27 UTC (rev 21772) @@ -1,18 +0,0 @@ -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/perl 0755 root bin -d none /opt/csw/lib/perl/csw 0755 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/File 0755 root bin -d none /opt/csw/lib/perl/csw/auto/File/Type 0755 root bin -f none /opt/csw/lib/perl/csw/auto/File/Type/.packlist 0644 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/File::Type.3perl 0444 root bin -f none /opt/csw/share/man/man3/File::Type::Builder.3perl 0444 root bin -d none /opt/csw/share/perl 0755 root bin -d none /opt/csw/share/perl/csw 0755 root bin -d none /opt/csw/share/perl/csw/File 0755 root bin -d none /opt/csw/share/perl/csw/File/Type 0755 root bin -f none /opt/csw/share/perl/csw/File/Type.pm 0444 root bin -f none /opt/csw/share/perl/csw/File/Type/Builder.pm 0444 root bin 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 Aug 18 22:47:34 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 20:47:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[21773] csw/mgar/pkg/cpan/Test-XML/trunk Message-ID: Revision: 21773 http://gar.svn.sourceforge.net/gar/?rev=21773&view=rev Author: dmichelsen Date: 2013-08-18 20:47:33 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Test-XML/trunk: Update to 0.08 and makemake Modified Paths: -------------- csw/mgar/pkg/cpan/Test-XML/trunk/Makefile csw/mgar/pkg/cpan/Test-XML/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.depend csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.gspec csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.prototype Modified: csw/mgar/pkg/cpan/Test-XML/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-XML/trunk/Makefile 2013-08-18 20:46:27 UTC (rev 21772) +++ csw/mgar/pkg/cpan/Test-XML/trunk/Makefile 2013-08-18 20:47:33 UTC (rev 21773) @@ -1,18 +1,32 @@ NAME = Test-XML -VERSION = 0.07 +VERSION = 0.08 CATEGORIES = cpan GARTYPE = v2 AUTHOR = SEMANTICO DESCRIPTION = Compare XML in perl tests define BLURB - This module contains generic XML testing tools. See below for a list of - other modules with functions relating to specific XML modules. endef -DISTFILES += $(call admfiles,CSWpmtestxml,depend prototype) +CATALOG_RELEASE = unstable -DEPENDS += cpan/XML-Parser -DEPENDS += cpan/XML-SemanticDiff +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ +BUILD_DEP_PKGS += CSWpm-xml-semanticdiff + +PACKAGES += CSWpm-test-xml +CATALOGNAME_CSWpm-test-xml = pm_test_xml +SPKG_DESC_CSWpm-test-xml = Compare XML in perl tests +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-test-xml = 1 +RUNTIME_DEP_PKGS_CSWpm-test-xml += CSWpm-xml-semanticdiff +RUNTIME_DEP_PKGS_CSWpm-test-xml += CSWpm-xml-parser +OBSOLETED_BY_CSWpm-test-xml += CSWpmtestxml +CATALOGNAME_CSWpmtestxml = pm_testxml_stub + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + include gar/category.mk Modified: csw/mgar/pkg/cpan/Test-XML/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-XML/trunk/checksums 2013-08-18 20:46:27 UTC (rev 21772) +++ csw/mgar/pkg/cpan/Test-XML/trunk/checksums 2013-08-18 20:47:33 UTC (rev 21773) @@ -1,4 +1 @@ -e6805d2ebad52da59d449fab0ccd9ebb download/CSWpmtestxml.gspec -50bc8766138f284c70dac932cba218b4 download/CSWpmtestxml.depend -9836be6ce1c5084ab8a179f031cbae2c download/CSWpmtestxml.prototype -a66ab1eccf993911fcdb8376967a43a7 download/Test-XML-0.07.tar.gz +490b487e07908358eb64a3c3c5b48143 Test-XML-0.08.tar.gz Deleted: csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.depend =================================================================== --- csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.depend 2013-08-18 20:46:27 UTC (rev 21772) +++ csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.depend 2013-08-18 20:47:33 UTC (rev 21773) @@ -1,2 +0,0 @@ -P CSWpmxmlparser xmlparser - A perl module for parsing XML documents -P CSWpmxmlsemdiff pm_xmlsemdiff - extension for comparing XML documents. Deleted: csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.gspec =================================================================== --- csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.gspec 2013-08-18 20:46:27 UTC (rev 21772) +++ csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.gspec 2013-08-18 20:47:33 UTC (rev 21773) @@ -1,9 +0,0 @@ -%var bitname pm_testxml -%var pkgname CSWpmtestxml -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 2002 semantico - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.prototype =================================================================== --- csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.prototype 2013-08-18 20:46:27 UTC (rev 21772) +++ csw/mgar/pkg/cpan/Test-XML/trunk/files/CSWpmtestxml.prototype 2013-08-18 20:47:33 UTC (rev 21773) @@ -1,23 +0,0 @@ -d none /opt/csw/bin 0755 root bin -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/perl 0755 root bin -d none /opt/csw/lib/perl/csw 0755 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Test 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Test/XML 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Test/XML/.packlist 0644 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Test::XML.3perl 0444 root bin -f none /opt/csw/share/man/man3/Test::XML::SAX.3perl 0444 root bin -f none /opt/csw/share/man/man3/Test::XML::Twig.3perl 0444 root bin -f none /opt/csw/share/man/man3/Test::XML::XPath.3perl 0444 root bin -d none /opt/csw/share/perl 0755 root bin -d none /opt/csw/share/perl/csw 0755 root bin -d none /opt/csw/share/perl/csw/Test 0755 root bin -d none /opt/csw/share/perl/csw/Test/XML 0755 root bin -f none /opt/csw/share/perl/csw/Test/XML.pm 0444 root bin -f none /opt/csw/share/perl/csw/Test/XML/SAX.pm 0444 root bin -f none /opt/csw/share/perl/csw/Test/XML/Twig.pm 0444 root bin -f none /opt/csw/share/perl/csw/Test/XML/XPath.pm 0444 root bin 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 Aug 18 22:55:24 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 20:55:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[21774] csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk Message-ID: Revision: 21774 http://gar.svn.sourceforge.net/gar/?rev=21774&view=rev Author: dmichelsen Date: 2013-08-18 20:55:19 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Locale-Maketext-Lexicon/trunk: Update to 0.96 and makemake Modified Paths: -------------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW Modified: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile 2013-08-18 20:47:33 UTC (rev 21773) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile 2013-08-18 20:55:19 UTC (rev 21774) @@ -1,23 +1,22 @@ NAME = Locale-Maketext-Lexicon -VERSION = 0.77 +VERSION = 0.96 CATEGORIES = cpan GARTYPE = v2 AUTHOR = DRTECH DESCRIPTION = Use other catalog formats in Maketext define BLURB - This module provides lexicon-handling modules to read from other - localization formats, such as Gettext, Msgcat, and so on. endef -PACKAGES = CSWpmlclemktxtlex -CATALOGNAME = pm_lclemktxtlex -ARCHALL = 1 +CATALOG_RELEASE = unstable -include gar/category.mk +LICENSE = LICENSE -post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) -post-install-modulated: - @ginstall -d $(DOCDEST) - @cp $(FILEDIR)/changelog.CSW $(DOCDEST) - @$(MAKECOOKIE) +PACKAGES += CSWpm-locale-maketext-lexicon +CATALOGNAME_CSWpm-locale-maketext-lexicon = pm_locale_maketext_lexicon +SPKG_DESC_CSWpm-locale-maketext-lexicon = Use other catalog formats in Maketext +ARCHALL_CSWpm-locale-maketext-lexicon = 1 +OBSOLETED_BY_CSWpm-locale-maketext-lexicon += CSWpmlclemktxtlex +CATALOGNAME_CSWpmlclemktxtlex = pm_lclemktxtlex_stub + +include gar/category.mk Modified: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums 2013-08-18 20:47:33 UTC (rev 21773) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums 2013-08-18 20:55:19 UTC (rev 21774) @@ -1 +1 @@ -622dada722fb6db0e49e453c843af83c download/Locale-Maketext-Lexicon-0.77.tar.gz +7b88febfd5bdbb2ed9e2ea197b7f0148 Locale-Maketext-Lexicon-0.96.tar.gz Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW 2013-08-18 20:47:33 UTC (rev 21773) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW 2013-08-18 20:55:19 UTC (rev 21774) @@ -1,5 +0,0 @@ -pm_lclemktxtlex (0.77,REV=2009.08.08) - - * Adopted and updated to 0.77 - - -- Sebastian Kayser Sat, 8 Aug 2009 02:47:16 +0200 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 Aug 18 22:56:51 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 20:56:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[21775] csw/mgar/pkg/cpan/Time-modules/trunk Message-ID: Revision: 21775 http://gar.svn.sourceforge.net/gar/?rev=21775&view=rev Author: dmichelsen Date: 2013-08-18 20:56:50 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Time-modules/trunk: Update to 2011.0517 and makemake Modified Paths: -------------- csw/mgar/pkg/cpan/Time-modules/trunk/Makefile csw/mgar/pkg/cpan/Time-modules/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Time-modules/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/Time-modules/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Time-modules/trunk/Makefile 2013-08-18 20:55:19 UTC (rev 21774) +++ csw/mgar/pkg/cpan/Time-modules/trunk/Makefile 2013-08-18 20:56:50 UTC (rev 21775) @@ -1,29 +1,24 @@ NAME = Time-modules -VERSION = 2006.0814 +VERSION = 2011.0517 CATEGORIES = cpan GARTYPE = v2 AUTHOR = MUIR -DESCRIPTION = Various time manipulation modules +DESCRIPTION = Parse and format time values define BLURB endef MASTER_SITES = $(addsuffix modules/,$(CPAN_MIRRORS)) -DISTFILES = COPYING -PACKAGES = CSWpmtimemodules CSWpmtimemods +CATALOG_RELEASE = unstable -CATALOGNAME_CSWpmtimemodules = pm_timemodules -CATALOGNAME_CSWpmtimemods = pm_timemods +LICENSE_TEXT = This module is licensed under the unknown license -SPKG_DESC_CSWpmtimemodules = $(DESCRIPTION) -SPKG_DESC_CSWpmtimemods = Empty stub as contents has been moved to CSWpmtimemodules +PACKAGES += CSWpm-time-ctime +CATALOGNAME_CSWpm-time-ctime = pm_time_ctime +SPKG_DESC_CSWpm-time-ctime = Parse and format time values +ARCHALL_CSWpm-time-ctime = 1 +OBSOLETED_BY_CSWpm-time-ctime += CSWpmtimemods +CATALOGNAME_CSWpmtimemods = pm_timemods_stub -ARCHALL = 1 - -RUNTIME_DEP_PKGS_ONLY_CSWpmtimemods = CSWpmtimemodules - -PKGFILES_CSWpmtimemods = NOFILES - include gar/category.mk - Modified: csw/mgar/pkg/cpan/Time-modules/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Time-modules/trunk/checksums 2013-08-18 20:55:19 UTC (rev 21774) +++ csw/mgar/pkg/cpan/Time-modules/trunk/checksums 2013-08-18 20:56:50 UTC (rev 21775) @@ -1 +1 @@ -790c6739f601b85654fac9ee516b18d8 Time-modules-2006.0814.tar.gz +67204ebc06211a877665765f91dc4e51 Time-modules-2011.0517.tar.gz Deleted: csw/mgar/pkg/cpan/Time-modules/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Time-modules/trunk/files/COPYING 2013-08-18 20:55:19 UTC (rev 21774) +++ csw/mgar/pkg/cpan/Time-modules/trunk/files/COPYING 2013-08-18 20:56:50 UTC (rev 21775) @@ -1,4 +0,0 @@ -Copyright (C) 1996-1999 David Muir Sharnoff. License hereby -granted for anyone to use, modify or redistribute this module at -their own risk. Please feed useful changes back to muir at idiom.com. - 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 Aug 18 23:10:31 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 21:10:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[21776] csw/mgar/pkg/cpan/libxml-perl/trunk Message-ID: Revision: 21776 http://gar.svn.sourceforge.net/gar/?rev=21776&view=rev Author: dmichelsen Date: 2013-08-18 21:10:24 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/libxml-perl/trunk: Update to makemake Modified Paths: -------------- csw/mgar/pkg/cpan/libxml-perl/trunk/Makefile csw/mgar/pkg/cpan/libxml-perl/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.depend csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.gspec csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.prototype Modified: csw/mgar/pkg/cpan/libxml-perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/libxml-perl/trunk/Makefile 2013-08-18 20:56:50 UTC (rev 21775) +++ csw/mgar/pkg/cpan/libxml-perl/trunk/Makefile 2013-08-18 21:10:24 UTC (rev 21776) @@ -4,10 +4,20 @@ GARTYPE = v2 AUTHOR = KMACLEOD -DESCRIPTION = Perl SAX parser using XML::Parser +DESCRIPTION = define BLURB endef -DISTFILES += $(call admfiles,CSWpmlibxmlperl,depend prototype) +CATALOG_RELEASE = unstable +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-data-grove +CATALOGNAME_CSWpm-data-grove = pm_data_grove +SPKG_DESC_CSWpm-data-grove = Perl SAX parser using XML::Parser +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-data-grove = 1 +OBSOLETED_BY_CSWpm-data-grove += CSWpmlibxmlperl +CATALOGNAME_CSWpmlibxmlperl = pm_libxmlperl_stub + include gar/category.mk Modified: csw/mgar/pkg/cpan/libxml-perl/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/libxml-perl/trunk/checksums 2013-08-18 20:56:50 UTC (rev 21775) +++ csw/mgar/pkg/cpan/libxml-perl/trunk/checksums 2013-08-18 21:10:24 UTC (rev 21776) @@ -1,4 +1 @@ -a4dba1f679c59998db248d79c79d09fb download/CSWpmlibxmlperl.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmlibxmlperl.depend -d0250de9667273e177aabe82a22756e8 download/CSWpmlibxmlperl.prototype -0ed5fbdda53d1301ddaed88db10503bb download/libxml-perl-0.08.tar.gz +0ed5fbdda53d1301ddaed88db10503bb libxml-perl-0.08.tar.gz Deleted: csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.depend =================================================================== Deleted: csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.gspec =================================================================== --- csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.gspec 2013-08-18 20:56:50 UTC (rev 21775) +++ csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.gspec 2013-08-18 21:10:24 UTC (rev 21776) @@ -1,8 +0,0 @@ -%var bitname pm_libxmlperl -%var pkgname CSWpmlibxmlperl -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 1998 Ken MacLeod -This library is free software; you can redistribute it and/or -modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.prototype =================================================================== --- csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.prototype 2013-08-18 20:56:50 UTC (rev 21775) +++ csw/mgar/pkg/cpan/libxml-perl/trunk/files/CSWpmlibxmlperl.prototype 2013-08-18 21:10:24 UTC (rev 21776) @@ -1,49 +0,0 @@ -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/perl 0755 root bin -d none /opt/csw/lib/perl/csw 0755 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/libxml-perl 0755 root bin -f none /opt/csw/lib/perl/csw/auto/libxml-perl/.packlist 0644 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Data::Grove.3perl 0444 root bin -f none /opt/csw/share/man/man3/Data::Grove::Parent.3perl 0444 root bin -f none /opt/csw/share/man/man3/Data::Grove::Visitor.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::ESISParser.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::Handler::CanonXMLWriter.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::Handler::Sample.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::Handler::Subs.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::Handler::XMLWriter.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::Parser::PerlSAX.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::PatAct::ActionTempl.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::PatAct::Amsterdam.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::PatAct::MatchName.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::PatAct::PatternTempl.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::PatAct::ToObjects.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::Perl2SAX.3perl 0444 root bin -f none /opt/csw/share/man/man3/XML::SAX2Perl.3perl 0444 root bin -d none /opt/csw/share/perl 0755 root bin -d none /opt/csw/share/perl/csw 0755 root bin -d none /opt/csw/share/perl/csw/Data 0755 root bin -d none /opt/csw/share/perl/csw/Data/Grove 0755 root bin -f none /opt/csw/share/perl/csw/Data/Grove.pm 0444 root bin -f none /opt/csw/share/perl/csw/Data/Grove/Parent.pm 0444 root bin -f none /opt/csw/share/perl/csw/Data/Grove/Visitor.pm 0444 root bin -d none /opt/csw/share/perl/csw/XML 0755 root bin -f none /opt/csw/share/perl/csw/XML/ESISParser.pm 0444 root bin -d none /opt/csw/share/perl/csw/XML/Handler 0755 root bin -f none /opt/csw/share/perl/csw/XML/Handler/CanonXMLWriter.pm 0444 root bin -f none /opt/csw/share/perl/csw/XML/Handler/Sample.pm 0444 root bin -f none /opt/csw/share/perl/csw/XML/Handler/Subs.pm 0444 root bin -f none /opt/csw/share/perl/csw/XML/Handler/XMLWriter.pm 0444 root bin -d none /opt/csw/share/perl/csw/XML/Parser 0755 root bin -f none /opt/csw/share/perl/csw/XML/Parser/PerlSAX.pm 0444 root bin -d none /opt/csw/share/perl/csw/XML/PatAct 0755 root bin -f none /opt/csw/share/perl/csw/XML/PatAct/ActionTempl.pm 0444 root bin -f none /opt/csw/share/perl/csw/XML/PatAct/Amsterdam.pm 0444 root bin -f none /opt/csw/share/perl/csw/XML/PatAct/MatchName.pm 0444 root bin -f none /opt/csw/share/perl/csw/XML/PatAct/PatternTempl.pm 0444 root bin -f none /opt/csw/share/perl/csw/XML/PatAct/ToObjects.pm 0444 root bin -f none /opt/csw/share/perl/csw/XML/Perl2SAX.pm 0444 root bin -f none /opt/csw/share/perl/csw/XML/SAX2Perl.pm 0444 root bin 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 Aug 18 23:12:11 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 21:12:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[21777] csw/mgar/pkg/cpan/libxml-perl/trunk/Makefile Message-ID: Revision: 21777 http://gar.svn.sourceforge.net/gar/?rev=21777&view=rev Author: dmichelsen Date: 2013-08-18 21:12:11 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/libxml-perl/trunk: Fix name Modified Paths: -------------- csw/mgar/pkg/cpan/libxml-perl/trunk/Makefile Modified: csw/mgar/pkg/cpan/libxml-perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/libxml-perl/trunk/Makefile 2013-08-18 21:10:24 UTC (rev 21776) +++ csw/mgar/pkg/cpan/libxml-perl/trunk/Makefile 2013-08-18 21:12:11 UTC (rev 21777) @@ -12,12 +12,11 @@ LICENSE_TEXT = This module is licensed under the license -PACKAGES += CSWpm-data-grove -CATALOGNAME_CSWpm-data-grove = pm_data_grove -SPKG_DESC_CSWpm-data-grove = Perl SAX parser using XML::Parser +PACKAGES += CSWpm-libxml-perl +SPKG_DESC_CSWpm-libxml-perl = Perl SAX parser using XML::Parser # There was no information if this is pure Perl or not. Please remove if necessary. -ARCHALL_CSWpm-data-grove = 1 -OBSOLETED_BY_CSWpm-data-grove += CSWpmlibxmlperl +ARCHALL_CSWpm-libxml-perl = 1 +OBSOLETED_BY_CSWpm-libxml-perl += CSWpmlibxmlperl CATALOGNAME_CSWpmlibxmlperl = pm_libxmlperl_stub include gar/category.mk 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 Aug 18 23:33:11 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Aug 2013 21:33:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[21778] csw/mgar/pkg/cpan Message-ID: Revision: 21778 http://gar.svn.sourceforge.net/gar/?rev=21778&view=rev Author: dmichelsen Date: 2013-08-18 21:33:11 +0000 (Sun, 18 Aug 2013) Log Message: ----------- cpan/Progress-Any/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Progress-Any/ csw/mgar/pkg/cpan/Progress-Any/branches/ csw/mgar/pkg/cpan/Progress-Any/tags/ csw/mgar/pkg/cpan/Progress-Any/trunk/ csw/mgar/pkg/cpan/Progress-Any/trunk/Makefile csw/mgar/pkg/cpan/Progress-Any/trunk/checksums csw/mgar/pkg/cpan/Progress-Any/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Progress-Any/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Progress-Any/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Progress-Any/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any/trunk/Makefile 2013-08-18 21:33:11 UTC (rev 21778) @@ -0,0 +1,29 @@ +NAME = Progress-Any +VERSION = 0.09 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Record progress to any output +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-progress-any +CATALOGNAME_CSWpm-progress-any = pm_progress_any +SPKG_DESC_CSWpm-progress-any = Record progress to any output +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-progress-any = 1 +RUNTIME_DEP_PKGS_CSWpm-progress-any += CSWpm-time-duration + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Progress-Any/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Progress-Any/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any/trunk/checksums 2013-08-18 21:33:11 UTC (rev 21778) @@ -0,0 +1 @@ +c4a46a511f5609c1f605457eb9515231 Progress-Any-0.09.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 Aug 19 08:23:21 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 06:23:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[21779] csw/mgar/pkg/cpan/Term-Size/trunk Message-ID: Revision: 21779 http://gar.svn.sourceforge.net/gar/?rev=21779&view=rev Author: dmichelsen Date: 2013-08-19 06:23:16 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Term-Size/trunk: Update to makemake Modified Paths: -------------- csw/mgar/pkg/cpan/Term-Size/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/cpan/Term-Size/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/Term-Size/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Term-Size/trunk/Makefile 2013-08-18 21:33:11 UTC (rev 21778) +++ csw/mgar/pkg/cpan/Term-Size/trunk/Makefile 2013-08-19 06:23:16 UTC (rev 21779) @@ -4,13 +4,18 @@ GARTYPE = v2 AUTHOR = FERREIRA -DESCRIPTION = Retrieve terminal size +DESCRIPTION = Retrieve terminal size (Unix version) define BLURB endef -DISTFILES = COPYING +CATALOG_RELEASE = unstable -PACKAGES = CSWpmtermsize -CATALOGNAME = pm_termsize +LICENSE_TEXT = This module is licensed under the perl license +PACKAGES += CSWpm-term-size +CATALOGNAME_CSWpm-term-size = pm_term_size +SPKG_DESC_CSWpm-term-size = Retrieve terminal size (Unix version) +OBSOLETED_BY_CSWpm-term-size += CSWpmtermsize +CATALOGNAME_CSWpmtermsize = pm_termsize_stub + include gar/category.mk Deleted: csw/mgar/pkg/cpan/Term-Size/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Term-Size/trunk/files/COPYING 2013-08-18 21:33:11 UTC (rev 21778) +++ csw/mgar/pkg/cpan/Term-Size/trunk/files/COPYING 2013-08-19 06:23:16 UTC (rev 21779) @@ -1,5 +0,0 @@ -Tim Goodwin, , 1997-04-23. - -Candidate for maintainership: -Adriano Ferreira, , 2006-05-19. - 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 Aug 19 08:23:56 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 06:23:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[21780] csw/mgar/pkg/cpan Message-ID: Revision: 21780 http://gar.svn.sourceforge.net/gar/?rev=21780&view=rev Author: dmichelsen Date: 2013-08-19 06:23:56 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Progress-Any-Output/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Progress-Any-Output/ csw/mgar/pkg/cpan/Progress-Any-Output/branches/ csw/mgar/pkg/cpan/Progress-Any-Output/tags/ csw/mgar/pkg/cpan/Progress-Any-Output/trunk/ csw/mgar/pkg/cpan/Progress-Any-Output/trunk/Makefile csw/mgar/pkg/cpan/Progress-Any-Output/trunk/checksums csw/mgar/pkg/cpan/Progress-Any-Output/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Progress-Any-Output/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Progress-Any-Output/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Progress-Any-Output/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any-Output/trunk/Makefile 2013-08-19 06:23:56 UTC (rev 21780) @@ -0,0 +1,29 @@ +NAME = Progress-Any-Output +VERSION = 0.03 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Assign output to progress indicators +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-progress-any-output +CATALOGNAME_CSWpm-progress-any-output = pm_progress_any_output +SPKG_DESC_CSWpm-progress-any-output = Assign output to progress indicators +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-progress-any-output = 1 +RUNTIME_DEP_PKGS_CSWpm-progress-any-output += CSWpm-progress-any + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Progress-Any-Output/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Progress-Any-Output/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any-Output/trunk/checksums 2013-08-19 06:23:56 UTC (rev 21780) @@ -0,0 +1 @@ +9f3881ea6c6da798632effc2f100fe7a Progress-Any-Output-0.03.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 Aug 19 08:48:16 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 06:48:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[21781] csw/mgar/pkg/cpan/Data-Dump/trunk Message-ID: Revision: 21781 http://gar.svn.sourceforge.net/gar/?rev=21781&view=rev Author: dmichelsen Date: 2013-08-19 06:48:16 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Data-Dump/trunk: Update to 1.22 and makemake Modified Paths: -------------- csw/mgar/pkg/cpan/Data-Dump/trunk/Makefile csw/mgar/pkg/cpan/Data-Dump/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.depend csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.gspec csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.prototype Modified: csw/mgar/pkg/cpan/Data-Dump/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Data-Dump/trunk/Makefile 2013-08-19 06:23:56 UTC (rev 21780) +++ csw/mgar/pkg/cpan/Data-Dump/trunk/Makefile 2013-08-19 06:48:16 UTC (rev 21781) @@ -1,17 +1,21 @@ NAME = Data-Dump -VERSION = 1.08 +VERSION = 1.22 CATEGORIES = cpan GARTYPE = v2 AUTHOR = GAAS -DESCRIPTION = pretty printing of data structures +DESCRIPTION = Pretty printing of data structures define BLURB - This module provides a single function called dump() that takes a list of - values as its argument and produces a string as its result. The string - contains Perl code that, when evaled, produces a deep copy of the original - arguments. The string is formatted for easy reading. endef -DISTFILES += $(call admfiles,CSWpmdatadump,depend prototype) +CATALOG_RELEASE = unstable +LICENSE_TEXT = This module is licensed under the perl license + +PACKAGES += CSWpm-data-dump +CATALOGNAME_CSWpm-data-dump = pm_data_dump +SPKG_DESC_CSWpm-data-dump = Pretty printing of data structures +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-data-dump = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Data-Dump/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Data-Dump/trunk/checksums 2013-08-19 06:23:56 UTC (rev 21780) +++ csw/mgar/pkg/cpan/Data-Dump/trunk/checksums 2013-08-19 06:48:16 UTC (rev 21781) @@ -1,4 +1 @@ -81f42be07dce82902f3419c54613378a download/CSWpmdatadump.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmdatadump.depend -687943954c87990827e33e360380c058 download/CSWpmdatadump.prototype -a61c1537bdb484b909cfb9a514853838 download/Data-Dump-1.08.tar.gz +db211fe64a5cab15b1e86e5b0dc379a4 Data-Dump-1.22.tar.gz Deleted: csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.depend =================================================================== Deleted: csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.gspec =================================================================== --- csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.gspec 2013-08-19 06:23:56 UTC (rev 21780) +++ csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.gspec 2013-08-19 06:48:16 UTC (rev 21781) @@ -1,10 +0,0 @@ -%var bitname pm_datadump -%var pkgname CSWpmdatadump -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 1998-1999,2003-2004 Gisle Aas. -Copyright 1996-1998 Gurusamy Sarathy. - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.prototype =================================================================== --- csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.prototype 2013-08-19 06:23:56 UTC (rev 21780) +++ csw/mgar/pkg/cpan/Data-Dump/trunk/files/CSWpmdatadump.prototype 2013-08-19 06:48:16 UTC (rev 21781) @@ -1,15 +0,0 @@ -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/perl 0755 root bin -d none /opt/csw/lib/perl/csw 0755 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Data 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Data/Dump 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Data/Dump/.packlist 0644 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Data::Dump.3perl 0444 root bin -d none /opt/csw/share/perl 0755 root bin -d none /opt/csw/share/perl/csw 0755 root bin -d none /opt/csw/share/perl/csw/Data 0755 root bin -f none /opt/csw/share/perl/csw/Data/Dump.pm 0444 root bin 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 Aug 19 08:49:01 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 06:49:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[21782] csw/mgar/pkg/cpan Message-ID: Revision: 21782 http://gar.svn.sourceforge.net/gar/?rev=21782&view=rev Author: dmichelsen Date: 2013-08-19 06:49:01 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Text-CharWidth/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Text-CharWidth/ csw/mgar/pkg/cpan/Text-CharWidth/branches/ csw/mgar/pkg/cpan/Text-CharWidth/tags/ csw/mgar/pkg/cpan/Text-CharWidth/trunk/ csw/mgar/pkg/cpan/Text-CharWidth/trunk/Makefile csw/mgar/pkg/cpan/Text-CharWidth/trunk/checksums csw/mgar/pkg/cpan/Text-CharWidth/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Text-CharWidth/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Text-CharWidth/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Text-CharWidth/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Text-CharWidth/trunk/Makefile 2013-08-19 06:49:01 UTC (rev 21782) @@ -0,0 +1,19 @@ +NAME = Text-CharWidth +VERSION = 0.04 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = KUBOTA + +DESCRIPTION = +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-text-charwidth +CATALOGNAME_CSWpm-text-charwidth = pm_text_charwidth +SPKG_DESC_CSWpm-text-charwidth = Provides equivalent feature as wcwidth(3) and wcswidth(3) + +include gar/category.mk Added: csw/mgar/pkg/cpan/Text-CharWidth/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Text-CharWidth/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Text-CharWidth/trunk/checksums 2013-08-19 06:49:01 UTC (rev 21782) @@ -0,0 +1 @@ +37a723df0580c0758c0ee67b37336c15 Text-CharWidth-0.04.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 Aug 19 08:53:08 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 06:53:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[21783] csw/mgar/pkg/cpan Message-ID: Revision: 21783 http://gar.svn.sourceforge.net/gar/?rev=21783&view=rev Author: dmichelsen Date: 2013-08-19 06:53:08 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Term-ProgressBar-Color/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Term-ProgressBar-Color/ csw/mgar/pkg/cpan/Term-ProgressBar-Color/branches/ csw/mgar/pkg/cpan/Term-ProgressBar-Color/tags/ csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/ csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/Makefile csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/checksums csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/Makefile 2013-08-19 06:53:08 UTC (rev 21783) @@ -0,0 +1,28 @@ +NAME = Term-ProgressBar-Color +VERSION = 0.00 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Provide a progress meter on a standard terminal (with color) +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-term-progressbar-color +CATALOGNAME_CSWpm-term-progressbar-color = pm_term_progressbar_color +SPKG_DESC_CSWpm-term-progressbar-color = Provide a progress meter on a standard terminal (with color) +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-term-progressbar-color = 1 + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Term-ProgressBar-Color/trunk/checksums 2013-08-19 06:53:08 UTC (rev 21783) @@ -0,0 +1 @@ +44760a9b5beed58f05c8efa446228737 Term-ProgressBar-Color-0.00.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 Aug 19 08:56:09 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 06:56:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[21784] csw/mgar/pkg/cpan Message-ID: Revision: 21784 http://gar.svn.sourceforge.net/gar/?rev=21784&view=rev Author: dmichelsen Date: 2013-08-19 06:56:09 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Text-WideChar-Util/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Text-WideChar-Util/ csw/mgar/pkg/cpan/Text-WideChar-Util/branches/ csw/mgar/pkg/cpan/Text-WideChar-Util/tags/ csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/ csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/Makefile csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/checksums csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Text-WideChar-Util/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/Makefile 2013-08-19 06:56:09 UTC (rev 21784) @@ -0,0 +1,29 @@ +NAME = Text-WideChar-Util +VERSION = 0.06 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Routines for text containing wide characters +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-text-widechar-util +CATALOGNAME_CSWpm-text-widechar-util = pm_text_widechar_util +SPKG_DESC_CSWpm-text-widechar-util = Routines for text containing wide characters +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-text-widechar-util = 1 +RUNTIME_DEP_PKGS_CSWpm-text-widechar-util += CSWpm-text-charwidth + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Text-WideChar-Util/trunk/checksums 2013-08-19 06:56:09 UTC (rev 21784) @@ -0,0 +1 @@ +939360dc18fa2a3d2a00ce8ea597da75 Text-WideChar-Util-0.06.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 Aug 19 08:59:22 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 06:59:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[21785] csw/mgar/pkg/cpan Message-ID: Revision: 21785 http://gar.svn.sourceforge.net/gar/?rev=21785&view=rev Author: dmichelsen Date: 2013-08-19 06:59:22 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Progress-Any-Output-TermMessage/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/ csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/branches/ csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/tags/ csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/ csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/Makefile csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/checksums csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/Makefile 2013-08-19 06:59:22 UTC (rev 21785) @@ -0,0 +1,28 @@ +NAME = Progress-Any-Output-TermMessage +VERSION = 0.01 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Output progress to terminal as simple message +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-progress-any-output-termms +SPKG_DESC_CSWpm-progress-any-output-termms = Output progress to terminal as simple message +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-progress-any-output-termms = 1 +RUNTIME_DEP_PKGS_CSWpm-progress-any-output-termms += CSWpm-progress-any + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any-Output-TermMessage/trunk/checksums 2013-08-19 06:59:22 UTC (rev 21785) @@ -0,0 +1 @@ +ff27ab2557abb63ef6662af1cff43e84 Progress-Any-Output-TermMessage-0.01.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 Aug 19 09:03:19 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:03:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[21786] csw/mgar/pkg/cpan Message-ID: Revision: 21786 http://gar.svn.sourceforge.net/gar/?rev=21786&view=rev Author: dmichelsen Date: 2013-08-19 07:03:19 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Text-ANSI-Util/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Text-ANSI-Util/ csw/mgar/pkg/cpan/Text-ANSI-Util/branches/ csw/mgar/pkg/cpan/Text-ANSI-Util/tags/ csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/ csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/Makefile csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/checksums csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Text-ANSI-Util/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/Makefile 2013-08-19 07:03:19 UTC (rev 21786) @@ -0,0 +1,31 @@ +NAME = Text-ANSI-Util +VERSION = 0.10 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Routines for text containing ANSI escape codes +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build +BUILD_DEP_PKGS += CSWpm-data-dump + +PACKAGES += CSWpm-text-ansi-util +CATALOGNAME_CSWpm-text-ansi-util = pm_text_ansi_util +SPKG_DESC_CSWpm-text-ansi-util = Routines for text containing ANSI escape codes +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-text-ansi-util = 1 +RUNTIME_DEP_PKGS_CSWpm-text-ansi-util += CSWpm-text-widechar-util +RUNTIME_DEP_PKGS_CSWpm-text-ansi-util += CSWpm-text-charwidth + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Text-ANSI-Util/trunk/checksums 2013-08-19 07:03:19 UTC (rev 21786) @@ -0,0 +1 @@ +1f2aef9930d5d4519e378d0d69ab413e Text-ANSI-Util-0.10.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 Aug 19 09:03:51 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:03:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[21787] csw/mgar/pkg/cpan Message-ID: Revision: 21787 http://gar.svn.sourceforge.net/gar/?rev=21787&view=rev Author: dmichelsen Date: 2013-08-19 07:03:50 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Progress-Any-Output-Callback/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Progress-Any-Output-Callback/ csw/mgar/pkg/cpan/Progress-Any-Output-Callback/branches/ csw/mgar/pkg/cpan/Progress-Any-Output-Callback/tags/ csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/ csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/Makefile csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/checksums csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/Makefile 2013-08-19 07:03:50 UTC (rev 21787) @@ -0,0 +1,28 @@ +NAME = Progress-Any-Output-Callback +VERSION = 0.01 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Propagate progress update to a callback function +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-progress-any-output-call +SPKG_DESC_CSWpm-progress-any-output-call = Propagate progress update to a callback function +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-progress-any-output-call = 1 +RUNTIME_DEP_PKGS_CSWpm-progress-any-output-call += CSWpm-progress-any + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any-Output-Callback/trunk/checksums 2013-08-19 07:03:50 UTC (rev 21787) @@ -0,0 +1 @@ +b8fb92a5ac064e4df6d30da1a925b744 Progress-Any-Output-Callback-0.01.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 Aug 19 09:13:49 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:13:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[21788] csw/mgar/pkg/cpan Message-ID: Revision: 21788 http://gar.svn.sourceforge.net/gar/?rev=21788&view=rev Author: dmichelsen Date: 2013-08-19 07:13:49 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Template-Tiny/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Template-Tiny/ csw/mgar/pkg/cpan/Template-Tiny/branches/ csw/mgar/pkg/cpan/Template-Tiny/tags/ csw/mgar/pkg/cpan/Template-Tiny/trunk/ csw/mgar/pkg/cpan/Template-Tiny/trunk/Makefile csw/mgar/pkg/cpan/Template-Tiny/trunk/checksums csw/mgar/pkg/cpan/Template-Tiny/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Template-Tiny/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Template-Tiny/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Template-Tiny/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Template-Tiny/trunk/Makefile 2013-08-19 07:13:49 UTC (rev 21788) @@ -0,0 +1,21 @@ +NAME = Template-Tiny +VERSION = 1.12 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = ADAMK + +DESCRIPTION = Template Toolkit reimplemented in as little code as possible +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-template-tiny +CATALOGNAME_CSWpm-template-tiny = pm_template_tiny +SPKG_DESC_CSWpm-template-tiny = Template Toolkit reimplemented in as little code as possible +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-template-tiny = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Template-Tiny/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Template-Tiny/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Template-Tiny/trunk/checksums 2013-08-19 07:13:49 UTC (rev 21788) @@ -0,0 +1 @@ +166662a3d24c1c5f995c2ffc26e0eb36 Template-Tiny-1.12.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 Aug 19 09:16:06 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:16:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[21789] csw/mgar/pkg/cpan Message-ID: Revision: 21789 http://gar.svn.sourceforge.net/gar/?rev=21789&view=rev Author: dmichelsen Date: 2013-08-19 07:16:05 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/strictures/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/strictures/ csw/mgar/pkg/cpan/strictures/branches/ csw/mgar/pkg/cpan/strictures/tags/ csw/mgar/pkg/cpan/strictures/trunk/ csw/mgar/pkg/cpan/strictures/trunk/Makefile csw/mgar/pkg/cpan/strictures/trunk/checksums csw/mgar/pkg/cpan/strictures/trunk/files/ Property changes on: csw/mgar/pkg/cpan/strictures/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/strictures/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/strictures/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/strictures/trunk/Makefile 2013-08-19 07:16:05 UTC (rev 21789) @@ -0,0 +1,21 @@ +NAME = strictures +VERSION = 1.004004 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = ETHER + +DESCRIPTION = Turn on strict and make all warnings fatal +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license + +PACKAGES += CSWpm-strictures +CATALOGNAME_CSWpm-strictures = pm_strictures +SPKG_DESC_CSWpm-strictures = Turn on strict and make all warnings fatal +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-strictures = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/strictures/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/strictures/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/strictures/trunk/checksums 2013-08-19 07:16:05 UTC (rev 21789) @@ -0,0 +1 @@ +1a6323eee9f2c9762a77b97e604034d4 strictures-1.004004.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 Aug 19 09:18:32 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:18:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[21790] csw/mgar/pkg/cpan Message-ID: Revision: 21790 http://gar.svn.sourceforge.net/gar/?rev=21790&view=rev Author: dmichelsen Date: 2013-08-19 07:18:32 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Role-Tiny/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Role-Tiny/ csw/mgar/pkg/cpan/Role-Tiny/branches/ csw/mgar/pkg/cpan/Role-Tiny/tags/ csw/mgar/pkg/cpan/Role-Tiny/trunk/ csw/mgar/pkg/cpan/Role-Tiny/trunk/Makefile csw/mgar/pkg/cpan/Role-Tiny/trunk/checksums csw/mgar/pkg/cpan/Role-Tiny/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Role-Tiny/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Role-Tiny/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Role-Tiny/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Role-Tiny/trunk/Makefile 2013-08-19 07:18:32 UTC (rev 21790) @@ -0,0 +1,23 @@ +NAME = Role-Tiny +VERSION = 1.003001 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = HAARG + +DESCRIPTION = Roles. Like a nouvelle cuisine portion size slice of Moose +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license + +BUILD_DEP_PKGS += CSWpm-test-fatal + +PACKAGES += CSWpm-role-tiny +CATALOGNAME_CSWpm-role-tiny = pm_role_tiny +SPKG_DESC_CSWpm-role-tiny = Roles. Like a nouvelle cuisine portion size slice of Moose +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-role-tiny = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Role-Tiny/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Role-Tiny/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Role-Tiny/trunk/checksums 2013-08-19 07:18:32 UTC (rev 21790) @@ -0,0 +1 @@ +d8b23c4f5b03adec5f0859d814114037 Role-Tiny-1.003001.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 Aug 19 09:19:43 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:19:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[21791] csw/mgar/pkg/cpan Message-ID: Revision: 21791 http://gar.svn.sourceforge.net/gar/?rev=21791&view=rev Author: dmichelsen Date: 2013-08-19 07:19:42 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Class-Method-Modifiers/trunk: Intitial commit Added Paths: ----------- csw/mgar/pkg/cpan/Class-Method-Modifiers/ csw/mgar/pkg/cpan/Class-Method-Modifiers/branches/ csw/mgar/pkg/cpan/Class-Method-Modifiers/tags/ csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/ csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/Makefile csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/checksums csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/Makefile 2013-08-19 07:19:42 UTC (rev 21791) @@ -0,0 +1,23 @@ +NAME = Class-Method-Modifiers +VERSION = 2.04 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = ETHER + +DESCRIPTION = Provides Moose-like method modifiers +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-test-fatal + +PACKAGES += CSWpm-class-method-modifiers +CATALOGNAME_CSWpm-class-method-modifiers = pm_class_method_modifiers +SPKG_DESC_CSWpm-class-method-modifiers = Provides Moose-like method modifiers +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-class-method-modifiers = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Class-Method-Modifiers/trunk/checksums 2013-08-19 07:19:42 UTC (rev 21791) @@ -0,0 +1 @@ +4f9ca5038d4bdf1dad05f26d23f12dee Class-Method-Modifiers-2.04.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 Aug 19 09:25:39 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:25:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[21792] csw/mgar/pkg/cpan Message-ID: Revision: 21792 http://gar.svn.sourceforge.net/gar/?rev=21792&view=rev Author: dmichelsen Date: 2013-08-19 07:25:38 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Sub-Exporter-Progressive/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Sub-Exporter-Progressive/ csw/mgar/pkg/cpan/Sub-Exporter-Progressive/branches/ csw/mgar/pkg/cpan/Sub-Exporter-Progressive/tags/ csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/ csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/Makefile csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/checksums csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/Makefile 2013-08-19 07:25:38 UTC (rev 21792) @@ -0,0 +1,21 @@ +NAME = Sub-Exporter-Progressive +VERSION = 0.001010 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = FREW + +DESCRIPTION = Only use Sub::Exporter if you need it +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license + +PACKAGES += CSWpm-sub-exporter-progressive +CATALOGNAME_CSWpm-sub-exporter-progressive = pm_sub_exporter_progressive +SPKG_DESC_CSWpm-sub-exporter-progressive = Only use Sub::Exporter if you need it +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-sub-exporter-progressive = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Sub-Exporter-Progressive/trunk/checksums 2013-08-19 07:25:38 UTC (rev 21792) @@ -0,0 +1 @@ +0350d9e12549112ae1f618cbff3ecbd9 Sub-Exporter-Progressive-0.001010.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 Aug 19 09:29:02 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:29:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[21793] csw/mgar/pkg/cpan/Devel-GlobalDestruction/trunk Message-ID: Revision: 21793 http://gar.svn.sourceforge.net/gar/?rev=21793&view=rev Author: dmichelsen Date: 2013-08-19 07:29:02 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Devel-GlobalDestruction/trunk: Update to 0.11 Modified Paths: -------------- csw/mgar/pkg/cpan/Devel-GlobalDestruction/trunk/Makefile csw/mgar/pkg/cpan/Devel-GlobalDestruction/trunk/checksums Modified: csw/mgar/pkg/cpan/Devel-GlobalDestruction/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Devel-GlobalDestruction/trunk/Makefile 2013-08-19 07:25:38 UTC (rev 21792) +++ csw/mgar/pkg/cpan/Devel-GlobalDestruction/trunk/Makefile 2013-08-19 07:29:02 UTC (rev 21793) @@ -1,18 +1,22 @@ NAME = Devel-GlobalDestruction -VERSION = 0.04 +VERSION = 0.11 CATEGORIES = cpan GARTYPE = v2 -AUTHOR = FLORA +AUTHOR = HAARG -DESCRIPTION = Expose the flag which marks global destruction +DESCRIPTION = Unknown +define BLURB +endef CATALOG_RELEASE = unstable -LICENSE_TEXT = This module is licensed under the unknown license +LICENSE_TEXT = This module is licensed under the perl license PACKAGES += CSWpm-devel-globaldestruction CATALOGNAME_CSWpm-devel-globaldestruction = pm_devel_globaldestruction -SPKG_DESC_CSWpm-devel-globaldestruction = Expose the flag which marks global destruction -RUNTIME_DEP_PKGS_CSWpm-devel-globaldestruction += CSWpm-sub-exporter +SPKG_DESC_CSWpm-devel-globaldestruction = Unknown +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-devel-globaldestruction = 1 +RUNTIME_DEP_PKGS_CSWpm-devel-globaldestruction += CSWpm-sub-exporter-progressive include gar/category.mk Modified: csw/mgar/pkg/cpan/Devel-GlobalDestruction/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Devel-GlobalDestruction/trunk/checksums 2013-08-19 07:25:38 UTC (rev 21792) +++ csw/mgar/pkg/cpan/Devel-GlobalDestruction/trunk/checksums 2013-08-19 07:29:02 UTC (rev 21793) @@ -1 +1 @@ -823ee705f0c1c59cbf73cbab5bdf08f7 Devel-GlobalDestruction-0.04.tar.gz +f2f811fc3e8876aa3fa23d1d16dfb2bd Devel-GlobalDestruction-0.11.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 Aug 19 09:29:55 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:29:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[21794] csw/mgar/pkg/cpan Message-ID: Revision: 21794 http://gar.svn.sourceforge.net/gar/?rev=21794&view=rev Author: dmichelsen Date: 2013-08-19 07:29:55 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Moo/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Moo/ csw/mgar/pkg/cpan/Moo/branches/ csw/mgar/pkg/cpan/Moo/tags/ csw/mgar/pkg/cpan/Moo/trunk/ csw/mgar/pkg/cpan/Moo/trunk/Makefile csw/mgar/pkg/cpan/Moo/trunk/checksums csw/mgar/pkg/cpan/Moo/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Moo/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Moo/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Moo/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Moo/trunk/Makefile 2013-08-19 07:29:55 UTC (rev 21794) @@ -0,0 +1,29 @@ +NAME = Moo +VERSION = 1.003000 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = HAARG + +DESCRIPTION = Minimalist Object Orientation (with Moose compatibility) +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +BUILD_DEP_PKGS += CSWpm-test-fatal + +PACKAGES += CSWpm-moo +CATALOGNAME_CSWpm-moo = pm_moo +SPKG_DESC_CSWpm-moo = Minimalist Object Orientation (with Moose compatibility) +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-moo = 1 +RUNTIME_DEP_PKGS_CSWpm-moo += CSWpm-strictures +RUNTIME_DEP_PKGS_CSWpm-moo += CSWpm-class-method-modifiers +RUNTIME_DEP_PKGS_CSWpm-moo += CSWpm-role-tiny +RUNTIME_DEP_PKGS_CSWpm-moo += CSWpm-devel-globaldestruction +RUNTIME_DEP_PKGS_CSWpm-moo += CSWpm-dist-checkconflicts +RUNTIME_DEP_PKGS_CSWpm-moo += CSWpm-module-runtime + +include gar/category.mk Added: csw/mgar/pkg/cpan/Moo/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Moo/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Moo/trunk/checksums 2013-08-19 07:29:55 UTC (rev 21794) @@ -0,0 +1 @@ +50701ed665adc9dcb20f46bc18f1ff57 Moo-1.003000.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 Aug 19 09:36:09 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:36:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[21795] csw/mgar/pkg/cpan Message-ID: Revision: 21795 http://gar.svn.sourceforge.net/gar/?rev=21795&view=rev Author: dmichelsen Date: 2013-08-19 07:36:08 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/DefHash/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DefHash/ csw/mgar/pkg/cpan/DefHash/branches/ csw/mgar/pkg/cpan/DefHash/tags/ csw/mgar/pkg/cpan/DefHash/trunk/ csw/mgar/pkg/cpan/DefHash/trunk/Makefile csw/mgar/pkg/cpan/DefHash/trunk/checksums csw/mgar/pkg/cpan/DefHash/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DefHash/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DefHash/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DefHash/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DefHash/trunk/Makefile 2013-08-19 07:36:08 UTC (rev 21795) @@ -0,0 +1,28 @@ +NAME = DefHash +VERSION = 1.0.3 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Define things according to a specification, using hashes +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-defhash +CATALOGNAME_CSWpm-defhash = pm_defhash +SPKG_DESC_CSWpm-defhash = Define things according to a specification, using hashes +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-defhash = 1 + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/DefHash/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DefHash/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DefHash/trunk/checksums 2013-08-19 07:36:08 UTC (rev 21795) @@ -0,0 +1 @@ +6b0ed9b6fba6f25550b44d352ddf2ac8 DefHash-1.0.3.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 Aug 19 09:36:35 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:36:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[21796] csw/mgar/pkg/cpan Message-ID: Revision: 21796 http://gar.svn.sourceforge.net/gar/?rev=21796&view=rev Author: dmichelsen Date: 2013-08-19 07:36:35 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Data-Structure-Util/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Data-Structure-Util/ csw/mgar/pkg/cpan/Data-Structure-Util/branches/ csw/mgar/pkg/cpan/Data-Structure-Util/tags/ csw/mgar/pkg/cpan/Data-Structure-Util/trunk/ csw/mgar/pkg/cpan/Data-Structure-Util/trunk/Makefile csw/mgar/pkg/cpan/Data-Structure-Util/trunk/checksums csw/mgar/pkg/cpan/Data-Structure-Util/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Data-Structure-Util/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Data-Structure-Util/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Data-Structure-Util/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Data-Structure-Util/trunk/Makefile 2013-08-19 07:36:35 UTC (rev 21796) @@ -0,0 +1,20 @@ +NAME = Data-Structure-Util +VERSION = 0.15 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = ANDYA + +DESCRIPTION = Change nature of data within a structure +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license + +PACKAGES += CSWpm-data-structure-util +CATALOGNAME_CSWpm-data-structure-util = pm_data_structure_util +SPKG_DESC_CSWpm-data-structure-util = Change nature of data within a structure +RUNTIME_DEP_PKGS_CSWpm-data-structure-util += CSWpm-test-pod + +include gar/category.mk Added: csw/mgar/pkg/cpan/Data-Structure-Util/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Data-Structure-Util/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Data-Structure-Util/trunk/checksums 2013-08-19 07:36:35 UTC (rev 21796) @@ -0,0 +1 @@ +e12ba777c0abfbd79a131de28d542359 Data-Structure-Util-0.15.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 Aug 19 09:45:34 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:45:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[21797] csw/mgar/pkg/cpan Message-ID: Revision: 21797 http://gar.svn.sourceforge.net/gar/?rev=21797&view=rev Author: dmichelsen Date: 2013-08-19 07:45:34 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Rinci/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Rinci/ csw/mgar/pkg/cpan/Rinci/branches/ csw/mgar/pkg/cpan/Rinci/tags/ csw/mgar/pkg/cpan/Rinci/trunk/ csw/mgar/pkg/cpan/Rinci/trunk/Makefile csw/mgar/pkg/cpan/Rinci/trunk/checksums csw/mgar/pkg/cpan/Rinci/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Rinci/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Rinci/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Rinci/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Rinci/trunk/Makefile 2013-08-19 07:45:34 UTC (rev 21797) @@ -0,0 +1,29 @@ +NAME = Rinci +VERSION = 1.1.35 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Language-neutral metadata for your code +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-rinci +CATALOGNAME_CSWpm-rinci = pm_rinci +SPKG_DESC_CSWpm-rinci = Language-neutral metadata for your code +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-rinci = 1 +RUNTIME_DEP_PKGS_CSWpm-rinci += CSWpm-defhash + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Rinci/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Rinci/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Rinci/trunk/checksums 2013-08-19 07:45:34 UTC (rev 21797) @@ -0,0 +1 @@ +da4d3227222398f4ad1ef986e04bf546 Rinci-1.1.35.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 Aug 19 09:48:31 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:48:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[21798] csw/mgar/pkg/cpan Message-ID: Revision: 21798 http://gar.svn.sourceforge.net/gar/?rev=21798&view=rev Author: dmichelsen Date: 2013-08-19 07:48:31 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Data-Clone/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Data-Clone/ csw/mgar/pkg/cpan/Data-Clone/branches/ csw/mgar/pkg/cpan/Data-Clone/tags/ csw/mgar/pkg/cpan/Data-Clone/trunk/ csw/mgar/pkg/cpan/Data-Clone/trunk/Makefile csw/mgar/pkg/cpan/Data-Clone/trunk/checksums csw/mgar/pkg/cpan/Data-Clone/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Data-Clone/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Data-Clone/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Data-Clone/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Data-Clone/trunk/Makefile 2013-08-19 07:48:31 UTC (rev 21798) @@ -0,0 +1,21 @@ +NAME = Data-Clone +VERSION = 0.003 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = GFUJI + +DESCRIPTION = Polymorphic data cloning +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +BUILD_DEP_PKGS += CSWpm-test-requires + +PACKAGES += CSWpm-data-clone +CATALOGNAME_CSWpm-data-clone = pm_data_clone +SPKG_DESC_CSWpm-data-clone = Polymorphic data cloning + +include gar/category.mk Added: csw/mgar/pkg/cpan/Data-Clone/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Data-Clone/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Data-Clone/trunk/checksums 2013-08-19 07:48:31 UTC (rev 21798) @@ -0,0 +1 @@ +aeef586dd5e1eeafd39992204f37e4cf Data-Clone-0.003.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 Aug 19 09:52:18 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:52:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[21799] csw/mgar/pkg/cpan Message-ID: Revision: 21799 http://gar.svn.sourceforge.net/gar/?rev=21799&view=rev Author: dmichelsen Date: 2013-08-19 07:52:17 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/ExtUtils-Helpers/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/ExtUtils-Helpers/ csw/mgar/pkg/cpan/ExtUtils-Helpers/branches/ csw/mgar/pkg/cpan/ExtUtils-Helpers/tags/ csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/ csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/Makefile csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/checksums csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/files/ Property changes on: csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/Makefile 2013-08-19 07:52:17 UTC (rev 21799) @@ -0,0 +1,21 @@ +NAME = ExtUtils-Helpers +VERSION = 0.021 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = LEONT + +DESCRIPTION = Various portability utilities for module builders +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-extutils-helpers +CATALOGNAME_CSWpm-extutils-helpers = pm_extutils_helpers +SPKG_DESC_CSWpm-extutils-helpers = Various portability utilities for module builders +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-extutils-helpers = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/ExtUtils-Helpers/trunk/checksums 2013-08-19 07:52:17 UTC (rev 21799) @@ -0,0 +1 @@ +94aa8eaf92def26d9af0cb25fcb1570f ExtUtils-Helpers-0.021.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 Aug 19 09:53:19 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:53:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[21800] csw/mgar/pkg/cpan Message-ID: Revision: 21800 http://gar.svn.sourceforge.net/gar/?rev=21800&view=rev Author: dmichelsen Date: 2013-08-19 07:53:19 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Parse-Netstat/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Parse-Netstat/ csw/mgar/pkg/cpan/Parse-Netstat/branches/ csw/mgar/pkg/cpan/Parse-Netstat/tags/ csw/mgar/pkg/cpan/Parse-Netstat/trunk/ csw/mgar/pkg/cpan/Parse-Netstat/trunk/Makefile csw/mgar/pkg/cpan/Parse-Netstat/trunk/checksums csw/mgar/pkg/cpan/Parse-Netstat/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Parse-Netstat/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Parse-Netstat/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Parse-Netstat/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Parse-Netstat/trunk/Makefile 2013-08-19 07:53:19 UTC (rev 21800) @@ -0,0 +1,30 @@ +NAME = Parse-Netstat +VERSION = 0.04 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Parse the output of Unix "netstat" command +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-parse-netstat +CATALOGNAME_CSWpm-parse-netstat = pm_parse_netstat +SPKG_DESC_CSWpm-parse-netstat = Parse the output of Unix "netstat" command +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-parse-netstat = 1 +RUNTIME_DEP_PKGS_CSWpm-parse-netstat += CSWpm-rinci +RUNTIME_DEP_PKGS_CSWpm-parse-netstat += CSWpm-exporter-lite + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Parse-Netstat/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Parse-Netstat/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Parse-Netstat/trunk/checksums 2013-08-19 07:53:19 UTC (rev 21800) @@ -0,0 +1 @@ +40fea0cf21c6efab4b006789a18099fb Parse-Netstat-0.04.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 Aug 19 09:55:23 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 07:55:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[21801] csw/mgar/pkg/cpan Message-ID: Revision: 21801 http://gar.svn.sourceforge.net/gar/?rev=21801&view=rev Author: dmichelsen Date: 2013-08-19 07:55:23 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/SHARYANTO-String-Util/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/SHARYANTO-String-Util/ csw/mgar/pkg/cpan/SHARYANTO-String-Util/branches/ csw/mgar/pkg/cpan/SHARYANTO-String-Util/tags/ csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/ csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/Makefile csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/checksums csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/files/ Property changes on: csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/Makefile 2013-08-19 07:55:23 UTC (rev 21801) @@ -0,0 +1,28 @@ +NAME = SHARYANTO-String-Util +VERSION = 0.24 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = String utilities +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-sharyanto-string-util +CATALOGNAME_CSWpm-sharyanto-string-util = pm_sharyanto_string_util +SPKG_DESC_CSWpm-sharyanto-string-util = String utilities +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-sharyanto-string-util = 1 + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/SHARYANTO-String-Util/trunk/checksums 2013-08-19 07:55:23 UTC (rev 21801) @@ -0,0 +1 @@ +1b8f38cc8f8e83008c5be29596874081 SHARYANTO-String-Util-0.24.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 Aug 19 10:01:49 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 08:01:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[21802] csw/mgar/pkg/cpan Message-ID: Revision: 21802 http://gar.svn.sourceforge.net/gar/?rev=21802&view=rev Author: dmichelsen Date: 2013-08-19 08:01:49 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/ExtUtils-Config/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/ExtUtils-Config/ csw/mgar/pkg/cpan/ExtUtils-Config/branches/ csw/mgar/pkg/cpan/ExtUtils-Config/tags/ csw/mgar/pkg/cpan/ExtUtils-Config/trunk/ csw/mgar/pkg/cpan/ExtUtils-Config/trunk/Makefile csw/mgar/pkg/cpan/ExtUtils-Config/trunk/checksums csw/mgar/pkg/cpan/ExtUtils-Config/trunk/files/ Property changes on: csw/mgar/pkg/cpan/ExtUtils-Config/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/ExtUtils-Config/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-Config/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/ExtUtils-Config/trunk/Makefile 2013-08-19 08:01:49 UTC (rev 21802) @@ -0,0 +1,21 @@ +NAME = ExtUtils-Config +VERSION = 0.007 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = LEONT + +DESCRIPTION = A wrapper for perl's configuration +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-extutils-config +CATALOGNAME_CSWpm-extutils-config = pm_extutils_config +SPKG_DESC_CSWpm-extutils-config = A wrapper for perl's configuration +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-extutils-config = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/ExtUtils-Config/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-Config/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/ExtUtils-Config/trunk/checksums 2013-08-19 08:01:49 UTC (rev 21802) @@ -0,0 +1 @@ +2829c0dfa8a7e51b3f582efbee4bb128 ExtUtils-Config-0.007.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 Aug 19 10:03:38 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 08:03:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[21803] csw/mgar/pkg/cpan Message-ID: Revision: 21803 http://gar.svn.sourceforge.net/gar/?rev=21803&view=rev Author: dmichelsen Date: 2013-08-19 08:03:38 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Perinci-Object/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Perinci-Object/ csw/mgar/pkg/cpan/Perinci-Object/branches/ csw/mgar/pkg/cpan/Perinci-Object/tags/ csw/mgar/pkg/cpan/Perinci-Object/trunk/ csw/mgar/pkg/cpan/Perinci-Object/trunk/Makefile csw/mgar/pkg/cpan/Perinci-Object/trunk/checksums csw/mgar/pkg/cpan/Perinci-Object/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Perinci-Object/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Perinci-Object/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Perinci-Object/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Perinci-Object/trunk/Makefile 2013-08-19 08:03:38 UTC (rev 21803) @@ -0,0 +1,31 @@ +NAME = Perinci-Object +VERSION = 0.11 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Object-oriented interface for Rinci metadata +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-test-exception +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-perinci-object +CATALOGNAME_CSWpm-perinci-object = pm_perinci_object +SPKG_DESC_CSWpm-perinci-object = Object-oriented interface for Rinci metadata +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-perinci-object = 1 +RUNTIME_DEP_PKGS_CSWpm-perinci-object += CSWpm-rinci +RUNTIME_DEP_PKGS_CSWpm-perinci-object += CSWpm-sharyanto-string-util + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Perinci-Object/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Perinci-Object/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Perinci-Object/trunk/checksums 2013-08-19 08:03:38 UTC (rev 21803) @@ -0,0 +1 @@ +1430da9815d4d49149116e35d9a75911 Perinci-Object-0.11.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 Aug 19 10:06:39 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 08:06:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[21804] csw/mgar/pkg/cpan Message-ID: Revision: 21804 http://gar.svn.sourceforge.net/gar/?rev=21804&view=rev Author: dmichelsen Date: 2013-08-19 08:06:39 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/ExtUtils-InstallPaths/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/ExtUtils-InstallPaths/ csw/mgar/pkg/cpan/ExtUtils-InstallPaths/branches/ csw/mgar/pkg/cpan/ExtUtils-InstallPaths/tags/ csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/ csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/Makefile csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/checksums csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/files/ Property changes on: csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/Makefile 2013-08-19 08:06:39 UTC (rev 21804) @@ -0,0 +1,22 @@ +NAME = ExtUtils-InstallPaths +VERSION = 0.009 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = LEONT + +DESCRIPTION = Build.PL install path logic made easy +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-extutils-installpaths +CATALOGNAME_CSWpm-extutils-installpaths = pm_extutils_installpaths +SPKG_DESC_CSWpm-extutils-installpaths = Build.PL install path logic made easy +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-extutils-installpaths = 1 +RUNTIME_DEP_PKGS_CSWpm-extutils-installpaths += CSWpm-extutils-config + +include gar/category.mk Added: csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/ExtUtils-InstallPaths/trunk/checksums 2013-08-19 08:06:39 UTC (rev 21804) @@ -0,0 +1 @@ +6136200e7569dc6d225a074f04530f16 ExtUtils-InstallPaths-0.009.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 Aug 19 10:30:57 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 08:30:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[21805] csw/mgar/pkg/cpan Message-ID: Revision: 21805 http://gar.svn.sourceforge.net/gar/?rev=21805&view=rev Author: dmichelsen Date: 2013-08-19 08:30:57 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Module-Build-Tiny/trunk: Initial commit, install-phase does not work Added Paths: ----------- csw/mgar/pkg/cpan/Module-Build-Tiny/ csw/mgar/pkg/cpan/Module-Build-Tiny/branches/ csw/mgar/pkg/cpan/Module-Build-Tiny/tags/ csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/ csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/Makefile csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/checksums csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Module-Build-Tiny/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/Makefile 2013-08-19 08:30:57 UTC (rev 21805) @@ -0,0 +1,31 @@ +NAME = Module-Build-Tiny +VERSION = 0.025 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = LEONT + +DESCRIPTION = A tiny replacement for Module::Build +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-module-build-tiny +CATALOGNAME_CSWpm-module-build-tiny = pm_module_build_tiny +SPKG_DESC_CSWpm-module-build-tiny = A tiny replacement for Module::Build +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-module-build-tiny = 1 +RUNTIME_DEP_PKGS_CSWpm-module-build-tiny += CSWpm-extutils-installpaths +RUNTIME_DEP_PKGS_CSWpm-module-build-tiny += CSWpm-extutils-helpers +RUNTIME_DEP_PKGS_CSWpm-module-build-tiny += CSWpm-cpan-meta +RUNTIME_DEP_PKGS_CSWpm-module-build-tiny += CSWpm-extutils-config +RUNTIME_DEP_PKGS_CSWpm-module-build-tiny += CSWpm-json-pp + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/checksums 2013-08-19 08:30:57 UTC (rev 21805) @@ -0,0 +1 @@ +2b850aae90b68053999f37ca2d5ef165 Module-Build-Tiny-0.025.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 Aug 19 10:48:02 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 08:48:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[21806] csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/Makefile Message-ID: Revision: 21806 http://gar.svn.sourceforge.net/gar/?rev=21806&view=rev Author: dmichelsen Date: 2013-08-19 08:48:01 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Module-Build-Tiny/trunk: Some fixes Modified Paths: -------------- csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/Makefile Modified: csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/Makefile 2013-08-19 08:30:57 UTC (rev 21805) +++ csw/mgar/pkg/cpan/Module-Build-Tiny/trunk/Makefile 2013-08-19 08:48:01 UTC (rev 21806) @@ -23,7 +23,11 @@ RUNTIME_DEP_PKGS_CSWpm-module-build-tiny += CSWpm-extutils-config RUNTIME_DEP_PKGS_CSWpm-module-build-tiny += CSWpm-json-pp +# Honour https://rt.cpan.org/Ticket/Display.html?id=86240 +PERLBUILD_INSTALL_ARGS = --destdir=$(DESTDIR) --mandir=$(mandir) $(EXTRA_PERLBUILD_INSTALL_ARGS) + CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +CONFIGURE_ARGS += --mandir=$(mandir) BUILD_SCRIPTS = $(WORKSRC)/Build TEST_SCRIPTS = $(WORKSRC)/Build INSTALL_SCRIPTS = $(WORKSRC)/Build 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 Aug 19 10:52:56 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 08:52:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[21807] csw/mgar/pkg/cpan Message-ID: Revision: 21807 http://gar.svn.sourceforge.net/gar/?rev=21807&view=rev Author: dmichelsen Date: 2013-08-19 08:52:56 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/experimental/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/experimental/ csw/mgar/pkg/cpan/experimental/branches/ csw/mgar/pkg/cpan/experimental/tags/ csw/mgar/pkg/cpan/experimental/trunk/ csw/mgar/pkg/cpan/experimental/trunk/Makefile csw/mgar/pkg/cpan/experimental/trunk/checksums csw/mgar/pkg/cpan/experimental/trunk/files/ Property changes on: csw/mgar/pkg/cpan/experimental/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/experimental/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/experimental/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/experimental/trunk/Makefile 2013-08-19 08:52:56 UTC (rev 21807) @@ -0,0 +1,30 @@ +NAME = experimental +VERSION = 0.005 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = LEONT + +DESCRIPTION = Experimental features made easy +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build-tiny + +PACKAGES += CSWpm-experimental +CATALOGNAME_CSWpm-experimental = pm_experimental +SPKG_DESC_CSWpm-experimental = Experimental features made easy +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-experimental = 1 + +PERLBUILD_INSTALL_ARGS = --destdir=$(DESTDIR) --mandir=$(mandir) $(EXTRA_PERLBUILD_INSTALL_ARGS) +CONFIGURE_ARGS += --mandir=$(mandir) +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/experimental/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/experimental/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/experimental/trunk/checksums 2013-08-19 08:52:56 UTC (rev 21807) @@ -0,0 +1 @@ +86de0c6d17826586c75e07f616a4ab39 experimental-0.005.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 Aug 19 10:56:13 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 08:56:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[21808] csw/mgar/pkg/cpan Message-ID: Revision: 21808 http://gar.svn.sourceforge.net/gar/?rev=21808&view=rev Author: dmichelsen Date: 2013-08-19 08:56:12 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/SHARYANTO-Utils/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/SHARYANTO-Utils/ csw/mgar/pkg/cpan/SHARYANTO-Utils/branches/ csw/mgar/pkg/cpan/SHARYANTO-Utils/tags/ csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/ csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/Makefile csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/checksums csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/files/ Property changes on: csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/Makefile 2013-08-19 08:56:12 UTC (rev 21808) @@ -0,0 +1,45 @@ +NAME = SHARYANTO-Utils +VERSION = 0.53 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = SHARYANTO's temporary namespace for various routines +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-file-chdir +BUILD_DEP_PKGS += CSWpm-test-exception +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-sharyanto-proc-util +CATALOGNAME_CSWpm-sharyanto-proc-util = pm_sharyanto_proc_util +SPKG_DESC_CSWpm-sharyanto-proc-util = SHARYANTO's temporary namespace for various routines +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-sharyanto-proc-util = 1 +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-rinci +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-template-tiny +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-uri +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-log-any +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-parse-netstat +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-locale-maketext-lexicon +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-file-which +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-yaml-syck +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-moo +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-data-clone +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-experimental +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-data-structure-util +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-html-parser +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-file-slurp +RUNTIME_DEP_PKGS_CSWpm-sharyanto-proc-util += CSWpm-perinci-object + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/SHARYANTO-Utils/trunk/checksums 2013-08-19 08:56:12 UTC (rev 21808) @@ -0,0 +1 @@ +f3f2fea16921277ad3ea9643e78eab80 SHARYANTO-Utils-0.53.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 Aug 19 10:59:22 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 08:59:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[21809] csw/mgar/pkg/cpan Message-ID: Revision: 21809 http://gar.svn.sourceforge.net/gar/?rev=21809&view=rev Author: dmichelsen Date: 2013-08-19 08:59:22 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Term-Detect/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Term-Detect/ csw/mgar/pkg/cpan/Term-Detect/branches/ csw/mgar/pkg/cpan/Term-Detect/tags/ csw/mgar/pkg/cpan/Term-Detect/trunk/ csw/mgar/pkg/cpan/Term-Detect/trunk/Makefile csw/mgar/pkg/cpan/Term-Detect/trunk/checksums csw/mgar/pkg/cpan/Term-Detect/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Term-Detect/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Term-Detect/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Term-Detect/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Term-Detect/trunk/Makefile 2013-08-19 08:59:22 UTC (rev 21809) @@ -0,0 +1,30 @@ +NAME = Term-Detect +VERSION = 0.06 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Detect running under terminal (and get terminal emulator information) +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-term-detect +CATALOGNAME_CSWpm-term-detect = pm_term_detect +SPKG_DESC_CSWpm-term-detect = Detect running under terminal (and get terminal emulator information) +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-term-detect = 1 +RUNTIME_DEP_PKGS_CSWpm-term-detect += CSWpm-experimental +RUNTIME_DEP_PKGS_CSWpm-term-detect += CSWpm-sharyanto-utils + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Term-Detect/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Term-Detect/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Term-Detect/trunk/checksums 2013-08-19 08:59:22 UTC (rev 21809) @@ -0,0 +1 @@ +4049e6074eb74e6c214e3368eb4c173b Term-Detect-0.06.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 Aug 19 11:02:10 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 09:02:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[21810] csw/mgar/pkg/cpan/Term-Detect/trunk/Makefile Message-ID: Revision: 21810 http://gar.svn.sourceforge.net/gar/?rev=21810&view=rev Author: dmichelsen Date: 2013-08-19 09:02:09 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Term-Detect/trunk: Adjust package name Modified Paths: -------------- csw/mgar/pkg/cpan/Term-Detect/trunk/Makefile Modified: csw/mgar/pkg/cpan/Term-Detect/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Term-Detect/trunk/Makefile 2013-08-19 08:59:22 UTC (rev 21809) +++ csw/mgar/pkg/cpan/Term-Detect/trunk/Makefile 2013-08-19 09:02:09 UTC (rev 21810) @@ -20,7 +20,7 @@ # There was no information if this is pure Perl or not. Please remove if necessary. ARCHALL_CSWpm-term-detect = 1 RUNTIME_DEP_PKGS_CSWpm-term-detect += CSWpm-experimental -RUNTIME_DEP_PKGS_CSWpm-term-detect += CSWpm-sharyanto-utils +RUNTIME_DEP_PKGS_CSWpm-term-detect += CSWpm-sharyanto-proc-util CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL BUILD_SCRIPTS = $(WORKSRC)/Build 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 Aug 19 11:06:52 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 09:06:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[21811] csw/mgar/pkg/cpan Message-ID: Revision: 21811 http://gar.svn.sourceforge.net/gar/?rev=21811&view=rev Author: dmichelsen Date: 2013-08-19 09:06:52 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Color-ANSI-Util/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Color-ANSI-Util/ csw/mgar/pkg/cpan/Color-ANSI-Util/branches/ csw/mgar/pkg/cpan/Color-ANSI-Util/tags/ csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/ csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/Makefile csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/checksums csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Color-ANSI-Util/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/Makefile 2013-08-19 09:06:52 UTC (rev 21811) @@ -0,0 +1,29 @@ +NAME = Color-ANSI-Util +VERSION = 0.07 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Routines for dealing with ANSI colors +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-color-ansi-util +CATALOGNAME_CSWpm-color-ansi-util = pm_color_ansi_util +SPKG_DESC_CSWpm-color-ansi-util = Routines for dealing with ANSI colors +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-color-ansi-util = 1 +RUNTIME_DEP_PKGS_CSWpm-color-ansi-util += CSWpm-term-detect + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Color-ANSI-Util/trunk/checksums 2013-08-19 09:06:52 UTC (rev 21811) @@ -0,0 +1 @@ +43fa72c0b0a9ff800d0906f029bfde06 Color-ANSI-Util-0.07.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 Aug 19 11:18:21 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Aug 2013 09:18:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[21812] csw/mgar/pkg/cpan Message-ID: Revision: 21812 http://gar.svn.sourceforge.net/gar/?rev=21812&view=rev Author: dmichelsen Date: 2013-08-19 09:18:21 +0000 (Mon, 19 Aug 2013) Log Message: ----------- cpan/Progress-Any-Output-TermProgressBarColor/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/ csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/branches/ csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/tags/ csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/ csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/Makefile csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/checksums csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/Makefile 2013-08-19 09:18:21 UTC (rev 21812) @@ -0,0 +1,31 @@ +NAME = Progress-Any-Output-TermProgressBarColor +VERSION = 0.03 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SHARYANTO + +DESCRIPTION = Output progress to terminal as color bar +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-module-build + +PACKAGES += CSWpm-progress-any-output-termpb +SPKG_DESC_CSWpm-progress-any-output-termpb = Output progress to terminal as color bar +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-progress-any-output-termpb = 1 +RUNTIME_DEP_PKGS_CSWpm-progress-any-output-termpb += CSWpm-text-ansi-util +RUNTIME_DEP_PKGS_CSWpm-progress-any-output-termpb += CSWpm-color-ansi-util +RUNTIME_DEP_PKGS_CSWpm-progress-any-output-termpb += CSWpm-term-size +RUNTIME_DEP_PKGS_CSWpm-progress-any-output-termpb += CSWpm-progress-any + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Progress-Any-Output-TermProgressBarColor/trunk/checksums 2013-08-19 09:18:21 UTC (rev 21812) @@ -0,0 +1 @@ +b437620d7fab445f9b91c8ef643db08e Progress-Any-Output-TermProgressBarColor-0.03.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 Mon Aug 19 14:39:54 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Mon, 19 Aug 2013 12:39:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[21813] csw/mgar/pkg/gstplugins/trunk/Makefile Message-ID: Revision: 21813 http://gar.svn.sourceforge.net/gar/?rev=21813&view=rev Author: cgrzemba Date: 2013-08-19 12:39:48 +0000 (Mon, 19 Aug 2013) Log Message: ----------- gstplugins/trunk: remove dependency csw X11 Modified Paths: -------------- csw/mgar/pkg/gstplugins/trunk/Makefile Modified: csw/mgar/pkg/gstplugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstplugins/trunk/Makefile 2013-08-19 09:18:21 UTC (rev 21812) +++ csw/mgar/pkg/gstplugins/trunk/Makefile 2013-08-19 12:39:48 UTC (rev 21813) @@ -18,12 +18,12 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz -PACKAGING_PLATFORMS = Solaris10-sparc Solaris10-i386 +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 GARCOMPILER = GCC4 # SOS12U3 -BUILD_DEP_PKGS += CSWpkgconfig +BUILD_DEP_PKGS += CSWpkgconfig BUILD_DEP_PKGS += CSWgstreamer-dev -BUILD_DEP_PKGS += CSWliboildevel CSWlibglib2-dev +BUILD_DEP_PKGS += CSWliboildevel BUILD_DEP_PKGS += CSWlibglib2-dev BUILD_DEP_PKGS += CSWgnomevfs2-dev BUILD_DEP_PKGS += CSWlibogg-dev @@ -31,25 +31,17 @@ BUILD_DEP_PKGS += CSWlibatk-dev BUILD_DEP_PKGS += CSWlibgconf-dev BUILD_DEP_PKGS += CSWggettextrt -BUILD_DEP_PKGS += CSWlibxml2-dev BUILD_DEP_PKGS += CSWlibz-dev -BUILD_DEP_PKGS += CSWlibogg-dev BUILD_DEP_PKGS += CSWlibtheora-dev -BUILD_DEP_PKGS += CSWlibice -BUILD_DEP_PKGS += CSWlibx11 -# BUILD_DEP_PKGS += CSWx11videoproto -BUILD_DEP_PKGS += CSWlibsm +# BUILD_DEP_PKGS += CSWlibice +# BUILD_DEP_PKGS += CSWlibsm CSWlibxext BUILD_DEP_PKGS += CSWlibvorbis-dev BUILD_DEP_PKGS += CSWpangodevel BUILD_DEP_PKGS += CSWlibpixman-dev -BUILD_DEP_PKGS += CSWfconfig-dev +# BUILD_DEP_PKGS += CSWfconfig-dev BUILD_DEP_PKGS += CSWlibpng-dev -BUILD_DEP_PKGS += CSWx11xproto -# BUILD_DEP_PKGS += CSWx11renderproto -# BUILD_DEP_PKGS += CSWlibx11devel -# BUILD_DEP_PKGS += CSWlibxcbdevel -# BUILD_DEP_PKGS += CSWlibxaudevel -# BUILD_DEP_PKGS += CSWlibxdmcpdevel +# BUILD_DEP_PKGS += CSWx11xproto +# BUILD_DEP_PKGS += CSWlibx11devel CSWlibxcbdevel CSWlibxaudevel CSWlibxdmcpdevel # PATCHFILES += 0001-Makefile.in.patch PATCHFILES += 0002-add-gtk-options.patch @@ -60,7 +52,6 @@ SPKG_DESC_CSWgstplugins += $(DESCRIPTION), base RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstdataprotocol0-10-0 RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibx11 RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibcairo2 RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibogg0 @@ -95,7 +86,6 @@ RUNTIME_DEP_PKGS_CSWlibgstapp0-10-0 += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWlibgstapp0-10-0 += CSWlibgcc-s1 - PACKAGES += CSWlibgstaudio0-10-0 CATALOGNAME_CSWlibgstaudio0-10-0 = libgstaudio0_10_0 PKGFILES_CSWlibgstaudio0-10-0 += $(call baseisadirs,$(libdir),libgstaudio-0\.10\.so\.0\.20\.0) @@ -138,7 +128,6 @@ RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibgstreamer0-10-0 RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibgcc-s1 PACKAGES += CSWlibgstnetbuffer0-10-0 CATALOGNAME_CSWlibgstnetbuffer0-10-0 = libgstnetbuffer0_10_0 @@ -158,8 +147,8 @@ RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibgstreamer0-10-0 RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibglib2-0-0 +# RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibgstvideo0-10-0 RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibgstvideo0-10-0 RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibgcc-s1 PACKAGES += CSWlibgstriff0-10-0 @@ -190,9 +179,9 @@ PKGFILES_CSWlibgstrtsp0-10-0 += $(call baseisadirs,$(libdir),libgstrtsp-0\.10\.so\.0(\.\d+)*) SPKG_DESC_CSWlibgstrtsp0-10-0 += $(DESCRIPTION), libgstrtsp-0.10.so.0 RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibgstreamer0-10-0 -RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibgobject2-0-0 RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibglib2-0-0 RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibgobject2-0-0 PACKAGES += CSWlibgstsdp0-10-0 CATALOGNAME_CSWlibgstsdp0-10-0 = libgstsdp0_10_0 @@ -244,6 +233,7 @@ RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstrtsp0-10-0 RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstapp0-10-0 RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstaudio0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibgcc-s1 CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --disable-silent-rules @@ -254,12 +244,12 @@ CONFIGURE_ARGS += --disable-gst_v4l CONFIGURE_ARGS += --disable-libvisual # CONFIGURE_ARGS += --disable-pango -CONFIGURE_ARGS += --x-includes=$(prefix)/X11/include -CONFIGURE_ARGS += --x-libraries=$(prefix)/X11/lib/$(MM_LIBDIR) +# CONFIGURE_ARGS += --x-includes=$(prefix)/X11/include +# CONFIGURE_ARGS += --x-libraries=$(prefix)/X11/lib/$(MM_LIBDIR) -EXTRA_SOS_LD_FLAGS = -L$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) -EXTRA_SOS_LD_OPTIONS = -R$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) -EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig +# EXTRA_SOS_LD_FLAGS = -L$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) +# EXTRA_SOS_LD_OPTIONS = -R$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) +# EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig EXTRA_CONFIGURE_ENV = PATH=$(PATH):/opt/csw/gcc4/bin EXTRA_BUILD_ENV = PATH=$(PATH):/opt/csw/gcc4/bin EXTRA_INSTALL_ENV = PATH=$(PATH):/opt/csw/gcc4/bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Mon Aug 19 23:29:29 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Mon, 19 Aug 2013 21:29:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[21814] csw/mgar/pkg/samba/branches/samba3 Message-ID: Revision: 21814 http://gar.svn.sourceforge.net/gar/?rev=21814&view=rev Author: lblume Date: 2013-08-19 21:29:26 +0000 (Mon, 19 Aug 2013) Log Message: ----------- samba/branches/samba3: Bump version to 3.6.18 Modified Paths: -------------- csw/mgar/pkg/samba/branches/samba3/Makefile csw/mgar/pkg/samba/branches/samba3/checksums Modified: csw/mgar/pkg/samba/branches/samba3/Makefile =================================================================== --- csw/mgar/pkg/samba/branches/samba3/Makefile 2013-08-19 12:39:48 UTC (rev 21813) +++ csw/mgar/pkg/samba/branches/samba3/Makefile 2013-08-19 21:29:26 UTC (rev 21814) @@ -2,7 +2,7 @@ # - Check http://src.opensolaris.org/source/xref/userland/src/components/samba/samba/ from time to time NAME = samba -VERSION = 3.6.17 +VERSION = 3.6.18 GARTYPE = v2 DESCRIPTION = Tools to access a servers filespace and printers via SMB (server) Modified: csw/mgar/pkg/samba/branches/samba3/checksums =================================================================== --- csw/mgar/pkg/samba/branches/samba3/checksums 2013-08-19 12:39:48 UTC (rev 21813) +++ csw/mgar/pkg/samba/branches/samba3/checksums 2013-08-19 21:29:26 UTC (rev 21814) @@ -1 +1 @@ -c67c3330545c8f1f7ee26e017c28439b samba-3.6.17.tar.gz +c7eec3e83fe4c4750240a8a0a214bbd4 samba-3.6.18.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From mattdarcy at users.sourceforge.net Tue Aug 20 16:39:52 2013 From: mattdarcy at users.sourceforge.net (mattdarcy at users.sourceforge.net) Date: Tue, 20 Aug 2013 14:39:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[21815] csw/mgar/pkg/cpan/GD/branches Message-ID: Revision: 21815 http://gar.svn.sourceforge.net/gar/?rev=21815&view=rev Author: mattdarcy Date: 2013-08-20 14:39:51 +0000 (Tue, 20 Aug 2013) Log Message: ----------- NIM test branch for trying to fix perl in BTS Modified Paths: -------------- csw/mgar/pkg/cpan/GD/branches/nim/Makefile Added Paths: ----------- csw/mgar/pkg/cpan/GD/branches/nim/ Modified: csw/mgar/pkg/cpan/GD/branches/nim/Makefile =================================================================== --- csw/mgar/pkg/cpan/GD/trunk/Makefile 2013-07-31 10:29:30 UTC (rev 21590) +++ csw/mgar/pkg/cpan/GD/branches/nim/Makefile 2013-08-20 14:39:51 UTC (rev 21815) @@ -19,15 +19,15 @@ # The LICENSE file is missing in v2.50 LICENSE = README -PACKAGES += CSWpm-gd -SPKG_DESC_CSWpm-gd = Interface to GD graphics library +PACKAGES += NIMOSSpm-gd +SPKG_DESC_NIMOSSpm-gd = Interface to GD graphics library # PKGFILES is catchall -RUNTIME_DEP_PKGS_CSWpm-gd += CSWlibgd3 -OBSOLETED_BY_CSWpm-gd += CSWpmgd -CATALOGNAME_CSWpmgd = pm_gd_stub +RUNTIME_DEP_PKGS_NIMOSSpm-gd += NIMOSSlibgd3 +OBSOLETED_BY_NIMOSSpm-gd += NIMOSSpmgd +CATALOGNAME_NIMOSSpmgd = pm_gd_stub # These are just docs and examples -CHECKPKG_OVERRIDES_CSWpm-gd += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/qd.pl +CHECKPKG_OVERRIDES_NIMOSSpm-gd += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/qd.pl REINPLACE_USRLOCAL += GD.pm 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 Tue Aug 20 22:22:56 2013 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Tue, 20 Aug 2013 20:22:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[21816] csw/mgar/pkg/dovecot/trunk Message-ID: Revision: 21816 http://gar.svn.sourceforge.net/gar/?rev=21816&view=rev Author: jake_goerzen Date: 2013-08-20 20:22:49 +0000 (Tue, 20 Aug 2013) Log Message: ----------- dovecot: update to version 2.2.5 Modified Paths: -------------- csw/mgar/pkg/dovecot/trunk/Makefile csw/mgar/pkg/dovecot/trunk/checksums Modified: csw/mgar/pkg/dovecot/trunk/Makefile =================================================================== --- csw/mgar/pkg/dovecot/trunk/Makefile 2013-08-20 14:39:51 UTC (rev 21815) +++ csw/mgar/pkg/dovecot/trunk/Makefile 2013-08-20 20:22:49 UTC (rev 21816) @@ -2,7 +2,7 @@ # - SSL certs to /etc/opt/csw/ssl? # - /var/run/dovecot instead of /var/opt/csw/run? NAME = dovecot -VERSION = 2.2.4 +VERSION = 2.2.5 GARTYPE = v2 DESCRIPTION = Secure IMAP server Modified: csw/mgar/pkg/dovecot/trunk/checksums =================================================================== --- csw/mgar/pkg/dovecot/trunk/checksums 2013-08-20 14:39:51 UTC (rev 21815) +++ csw/mgar/pkg/dovecot/trunk/checksums 2013-08-20 20:22:49 UTC (rev 21816) @@ -1 +1 @@ -984cfc921a83c580c52c86e128e9dac2 dovecot-2.2.4.tar.gz +0096442e2a1739b1b7997a833248a263 dovecot-2.2.5.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 Aug 20 22:28:52 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 20 Aug 2013 20:28:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[21817] csw/mgar/pkg/samba/branches/samba3/Makefile Message-ID: Revision: 21817 http://gar.svn.sourceforge.net/gar/?rev=21817&view=rev Author: lblume Date: 2013-08-20 20:28:52 +0000 (Tue, 20 Aug 2013) Log Message: ----------- samba/branches/samba3: winbind needs to depend on cswsamba Modified Paths: -------------- csw/mgar/pkg/samba/branches/samba3/Makefile Modified: csw/mgar/pkg/samba/branches/samba3/Makefile =================================================================== --- csw/mgar/pkg/samba/branches/samba3/Makefile 2013-08-20 20:22:49 UTC (rev 21816) +++ csw/mgar/pkg/samba/branches/samba3/Makefile 2013-08-20 20:28:52 UTC (rev 21817) @@ -304,6 +304,8 @@ RUNTIME_DEP_PKGS_CSWsamba-winbind += CSWlibwbclient0 RUNTIME_DEP_PKGS_CSWsamba-winbind += CSWlibtdb1 RUNTIME_DEP_PKGS_CSWsamba-winbind += CSWlibtevent0 +# Needed for smb.conf +RUNTIME_DEP_PKGS_CSWsamba-winbind += CSWsamba OBSOLETED_BY_CSWsamba-winbind += CSWsambawb CHECKPKG_OVERRIDES_CSWsamba-winbind += surplus-dependency|CSWsamba-nss 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 Aug 21 11:16:57 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 21 Aug 2013 09:16:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[21818] csw/mgar/pkg/cpan Message-ID: Revision: 21818 http://gar.svn.sourceforge.net/gar/?rev=21818&view=rev Author: dmichelsen Date: 2013-08-21 09:16:56 +0000 (Wed, 21 Aug 2013) Log Message: ----------- cpan/Term-ProgressBar/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Term-ProgressBar/ csw/mgar/pkg/cpan/Term-ProgressBar/branches/ csw/mgar/pkg/cpan/Term-ProgressBar/tags/ csw/mgar/pkg/cpan/Term-ProgressBar/trunk/ csw/mgar/pkg/cpan/Term-ProgressBar/trunk/Makefile csw/mgar/pkg/cpan/Term-ProgressBar/trunk/checksums csw/mgar/pkg/cpan/Term-ProgressBar/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Term-ProgressBar/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Term-ProgressBar/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Term-ProgressBar/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Term-ProgressBar/trunk/Makefile 2013-08-21 09:16:56 UTC (rev 21818) @@ -0,0 +1,25 @@ +NAME = Term-ProgressBar +VERSION = 2.14 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SZABGAB + +DESCRIPTION = Provide a progress meter on a standard terminal +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license + +BUILD_DEP_PKGS += CSWpm-test-exception +BUILD_DEP_PKGS += CSWpm-capture-tiny + +PACKAGES += CSWpm-term-progressbar +CATALOGNAME_CSWpm-term-progressbar = pm_term_progressbar +SPKG_DESC_CSWpm-term-progressbar = Provide a progress meter on a standard terminal +ARCHALL_CSWpm-term-progressbar = 1 +RUNTIME_DEP_PKGS_CSWpm-term-progressbar += CSWpm-term-readkey +RUNTIME_DEP_PKGS_CSWpm-term-progressbar += CSWpm-class-methodmaker + +include gar/category.mk Added: csw/mgar/pkg/cpan/Term-ProgressBar/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Term-ProgressBar/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Term-ProgressBar/trunk/checksums 2013-08-21 09:16:56 UTC (rev 21818) @@ -0,0 +1 @@ +eaa537548988167bb72fa38f4fde32bf Term-ProgressBar-2.14.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 Aug 21 13:55:12 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 21 Aug 2013 11:55:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[21819] csw/mgar/pkg/isaexec Message-ID: Revision: 21819 http://gar.svn.sourceforge.net/gar/?rev=21819&view=rev Author: dmichelsen Date: 2013-08-21 11:55:07 +0000 (Wed, 21 Aug 2013) Log Message: ----------- isaexec: Move legacy stuff to tag Added Paths: ----------- csw/mgar/pkg/isaexec/branches/ csw/mgar/pkg/isaexec/tags/ csw/mgar/pkg/isaexec/tags/legacy/ csw/mgar/pkg/isaexec/trunk/ Removed Paths: ------------- csw/mgar/pkg/isaexec/trunk/ 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 Aug 22 10:03:49 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 22 Aug 2013 08:03:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[21820] csw/mgar/pkg/netsnmp/trunk Message-ID: Revision: 21820 http://gar.svn.sourceforge.net/gar/?rev=21820&view=rev Author: cgrzemba Date: 2013-08-22 08:03:48 +0000 (Thu, 22 Aug 2013) Log Message: ----------- netsnmp/trunk: add patch workaround-ksh-stop-alias-problem Modified Paths: -------------- csw/mgar/pkg/netsnmp/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/netsnmp/trunk/files/0002-workaround-ksh-stop-alias-problem.patch Modified: csw/mgar/pkg/netsnmp/trunk/Makefile =================================================================== --- csw/mgar/pkg/netsnmp/trunk/Makefile 2013-08-21 11:55:07 UTC (rev 21819) +++ csw/mgar/pkg/netsnmp/trunk/Makefile 2013-08-22 08:03:48 UTC (rev 21820) @@ -32,6 +32,7 @@ PATCHFILES += Makefile.in.diff PATCHFILES += setup-py.patch PATCHFILES += 0001-fixing-init-scripts.patch +PATCHFILES += 0002-workaround-ksh-stop-alias-problem.patch VENDOR_URL = http://www.net-snmp.org/ Added: csw/mgar/pkg/netsnmp/trunk/files/0002-workaround-ksh-stop-alias-problem.patch =================================================================== --- csw/mgar/pkg/netsnmp/trunk/files/0002-workaround-ksh-stop-alias-problem.patch (rev 0) +++ csw/mgar/pkg/netsnmp/trunk/files/0002-workaround-ksh-stop-alias-problem.patch 2013-08-22 08:03:48 UTC (rev 21820) @@ -0,0 +1,43 @@ +From d96a1551d777bb117dc2641f5a91c8b13aec7b88 Mon Sep 17 00:00:00 2001 +From: Carsten Grzemba +Date: Thu, 22 Aug 2013 10:00:49 +0200 +Subject: [PATCH 2/2] workaround ksh stop alias problem + +--- + dist/snmpd-init.d | 4 ++++ + dist/snmptrapd-init.d | 4 ++++ + 2 files changed, 8 insertions(+) + +diff --git a/dist/snmpd-init.d b/dist/snmpd-init.d +index 9e25f6c..08d9ec9 100755 +--- a/dist/snmpd-init.d ++++ b/dist/snmpd-init.d +@@ -5,6 +5,10 @@ + # + # chkconfig: - 26 74 + # description: snmpd is net-snmp SNMP daemon. ++alias stop > /dev/null 2>&1 ++if [ $? -eq 0 ]; then ++ unalias stop ++fi + + RETVAL=0 + prog="/opt/csw/sbin/snmpd" +diff --git a/dist/snmptrapd-init.d b/dist/snmptrapd-init.d +index 160ce5b..e45600d 100644 +--- a/dist/snmptrapd-init.d ++++ b/dist/snmptrapd-init.d +@@ -5,6 +5,10 @@ + # + # chkconfig: - 25 75 + # description: snmptrapd is net-snmp SNMPTRAP daemon. ++alias stop > /dev/null 2>&1 ++if [ $? -eq 0 ]; then ++ unalias stop ++fi + + RETVAL=0 + prog="/opt/csw/sbin/snmptrapd" +-- +1.8.3.4 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 22 11:12:21 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 22 Aug 2013 09:12:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[21821] csw/mgar/pkg/alternatives Message-ID: Revision: 21821 http://gar.svn.sourceforge.net/gar/?rev=21821&view=rev Author: pfelecan Date: 2013-08-22 09:12:15 +0000 (Thu, 22 Aug 2013) Log Message: ----------- alternatives/trunk: - removed the branch but copied the relevant adaptation - completely garified - manual page generated on the fly - removed the components related to the old recipe Modified Paths: -------------- csw/mgar/pkg/alternatives/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/alternatives/trunk/checksums csw/mgar/pkg/alternatives/trunk/files/ csw/mgar/pkg/alternatives/trunk/files/CSWalternatives.i.cswalternatives csw/mgar/pkg/alternatives/trunk/files/CSWalternatives.r.cswalternatives csw/mgar/pkg/alternatives/trunk/files/LICENSE-2.0.txt csw/mgar/pkg/alternatives/trunk/files/README csw/mgar/pkg/alternatives/trunk/files/README.user csw/mgar/pkg/alternatives/trunk/files/alternatives csw/mgar/pkg/alternatives/trunk/files/alternatives.8 Removed Paths: ------------- csw/mgar/pkg/alternatives/branches/alternatives-gar/ csw/mgar/pkg/alternatives/trunk/README csw/mgar/pkg/alternatives/trunk/README.user csw/mgar/pkg/alternatives/trunk/alternatives csw/mgar/pkg/alternatives/trunk/copyright csw/mgar/pkg/alternatives/trunk/i.cswalternatives csw/mgar/pkg/alternatives/trunk/pkginfo csw/mgar/pkg/alternatives/trunk/prototype csw/mgar/pkg/alternatives/trunk/r.cswalternatives Modified: csw/mgar/pkg/alternatives/trunk/Makefile =================================================================== --- csw/mgar/pkg/alternatives/trunk/Makefile 2013-08-22 08:03:48 UTC (rev 21820) +++ csw/mgar/pkg/alternatives/trunk/Makefile 2013-08-22 09:12:15 UTC (rev 21821) @@ -1,8 +1,54 @@ -package: alternatives - @echo Note: subversion status is: - svn status - createpkg -b `pwd` - touch package +# $Id$ +NAME = alternatives +VERSION = 1.0 -clean: - rm -f *.pkg.gz package +DESCRIPTION = Alternatives implementation specific to OpenCSW +define BLURB +endef + +MASTER_SITES = +DISTFILES = alternatives +DISTFILES += CSWalternatives.i.cswalternatives +DISTFILES += CSWalternatives.r.cswalternatives +DISTFILES += LICENSE-2.0.txt +DISTFILES += README +DISTFILES += README.user + +# File name regex to get notifications about upstream software releases +UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz + +LICENSE = LICENSE-2.0.txt + +VENDOR_URL = http://wiki.opencsw.org/project-alternatives + +CONFIGURE_SCRIPTS = + +BUILD_DEP_PKGS = CSWhelp2man + +BUILD_SCRIPTS = man +INSTALL_SCRIPTS = custom +TEST_SCRIPTS = + +ARCHALL = 1 + +include gar/category.mk + +build-man: + cd $(WORKDIR) && help2man --section=8 --source='Open CSW' --no-info --output=alternatives.8 ./alternatives + @$(MAKECOOKIE) + +install-custom: + ginstall -d $(DESTDIR)$(bindir) + ginstall $(WORKDIR)/alternatives $(DESTDIR)$(bindir) + ginstall -d $(DESTDIR)$(mandir)/man8 + ginstall $(WORKDIR)/alternatives.8 $(DESTDIR)$(mandir)/man8 + ginstall -d $(DESTDIR)/etc/opt/csw/alternatives + ginstall -d $(DESTDIR)/etc/opt/csw/preserve/CSWalternatives/alternatives + ginstall -d $(DESTDIR)/var/opt/csw/alternatives + ginstall -d $(DESTDIR)/usr/sadm/install/scripts + ginstall $(WORKDIR)/CSWalternatives.i.cswalternatives $(DESTDIR)/usr/sadm/install/scripts/i.cswalternatives + ginstall $(WORKDIR)/CSWalternatives.r.cswalternatives $(DESTDIR)/usr/sadm/install/scripts/r.cswalternatives + ginstall -d $(DESTDIR)$(docdir)/$(NAME) + ginstall $(WORKDIR)/README $(DESTDIR)$(docdir)/$(NAME) + ginstall $(WORKDIR)/README.user $(DESTDIR)$(docdir)/$(NAME) + @$(MAKECOOKIE) Deleted: csw/mgar/pkg/alternatives/trunk/README =================================================================== --- csw/mgar/pkg/alternatives/trunk/README 2013-08-22 08:03:48 UTC (rev 21820) +++ csw/mgar/pkg/alternatives/trunk/README 2013-08-22 09:12:15 UTC (rev 21821) @@ -1,66 +0,0 @@ -This file is more of an "internals" thoughts and notes file. -For user facing documentation, see README.user - -Phil decided that a from-scratch, CSW-custom implementation was needed, -because the debian one was hugely bloated, and the redhat smaller one, -did not play nicely with NFS-shared /opt/csw -So please dont go getting ideas that we can migrated back to redhat,etc -in the future! :) we tried, and it failed. - -Sections below: - * CODE NOTES - * FILE FORMATS - - -CODE NOTES - - My initial version seems to expect each "alternative" to have its own -file as /opt/csw/share/alternatives/xyz -One line per file only would be nice, please. But this suports -multiple lines per file now. - -When a choice is manually set (overriding auto settings), it records that -fact by making a symlink from the relevant shipped file, to -/etc/opt/csw/alternatives/(progname) -and then it will make the user-facing symlink(s) indicated by that file - -This way, you can have the binary, and alternatives files per software, -in NFS-shared /opt/csw, but then have machine-local overrides. - -Reminder: Do NOT have to get fancy with the class action script not - getting called with pathnames on sparse zones with pkg-inherit-dir, - because since /opt/csw is shared, the symlink will already be in place. - - Ambuguity for --remove: - what if --remove is used, on something that has a manually set pref? - (rather than calling --auto) - I choose that it will LEAVE the manual choice. - That is to say, it will leave the saved preference as valid. - BUT, if the manual choice matches the --remove", then - it should skip it as a "what to match" option..? !! - - This is to potentially make our pkgrm/pkgadd upgrade cycle - function as a user expects: to preserve their manual choice. - -FILE FORMATS - - Packages that provide implementation of an "alternative" for a - particular path, need to provide a file in - /opt/csw/share/alternatives/[softwarename] - - *** Note that it MUST be in that directory and nowhere else !!! *** - - The format of this file, is one or more lines, of the following format: - - /full/path shortname /provided/path priority [/slave/path shortname /provide! - - Note that tabs are not allowed. - - The purpose of the "slave path", is that sometimes, when the "main" path - changes its implementation, one or more other ones must be changed - to match. - - This line format, is normally passed onto our - "alternatives" binary by the class action script, directly as - an arg list to the --install option. - Deleted: csw/mgar/pkg/alternatives/trunk/README.user =================================================================== --- csw/mgar/pkg/alternatives/trunk/README.user 2013-08-22 08:03:48 UTC (rev 21820) +++ csw/mgar/pkg/alternatives/trunk/README.user 2013-08-22 09:12:15 UTC (rev 21821) @@ -1,44 +0,0 @@ -This is a short documentation file for the OpenCSW targetted implementation of -linux style "alternatives", aka "update-alternatives" in debian. - -USER LEVEL DOCS - - alternatives --display shortname - # will display any currently installed symlink for "shortname" - # will display any installed packages that provide "shortname". - # will display current decision mode for --install, for "shortname" - # (either "auto", or [?? something else] - - - alternatives --config shortname - # will display any installed packages that provide "shortname". - # will prompt user for their preferred choice of package to use, - or to stick/revert to auto mode. - - alternatives --auto shortname - # sets shortname to be auto-chosen. Will adjust symlinks now, if appropriate - - alternatives --set shortname /provided/path - # sets shortname to be the implementation provided by /provided/path, - # IF PRESENT. - # Basically, sets that one to be artificially "highest priority", then - # configure the link now. - # If the manual setting is invalid, it will be ignored - - alternatives --install /full/path/name shortname /path/xx priority [...] - # notifies the alternatives handler, and says, - # "hey, here's an implementation. If its highest priority right now, - # use it!" - # Unlike redhat, we dont actually "register" anything. - - alternatives --remove shortname /full/path/name - # basically, a hint to reconfigure shortname "as appropriate", - # while ignoring anything matching /full/path/name as a valid alternative - - alternatives --list - # Gives a short list of programs "known" to alternatives, on this machine. - - alternatives --relink-missing - # if you are in a situation where symlinks have not been created, - # call this, and it will create any missing ones as appropriate - Deleted: csw/mgar/pkg/alternatives/trunk/alternatives =================================================================== --- csw/mgar/pkg/alternatives/trunk/alternatives 2013-08-22 08:03:48 UTC (rev 21820) +++ csw/mgar/pkg/alternatives/trunk/alternatives 2013-08-22 09:12:15 UTC (rev 21821) @@ -1,472 +0,0 @@ -#!/bin/ksh -p - -# ksh high-level implentation of linux style "alternatives". -# Adjusted for OpenCSW needs -# Author: Philip Brown, phil at bolthole.com, 2010-2011 -# - -PRIORITIESDIR=/opt/csw/share/alternatives -MANUALDIR=/etc/opt/csw/alternatives #manual override location -AWK=nawk -DEBUG=${DEBUG:-/bin/true} - -#echo DEBUG VERSION of $0: dont ship this -#DEBUG=echo - -function usage { - prog=`basename $0` - print "Usage for $prog :" - print " $prog --display {name}" - print " $prog --auto {name}" - print " $prog --set {name} {/full/path}" - print " $prog --config {name}" - print " " - print " The following are provided for compatibility, but do not work" - print " in exactly the same way as linux variants" - print " See comments in usage function code for more information." - print " $prog --install {/full/path/name} {name} {#priority}" - print " $prog --remove {name} {/full/path}" - print "" - print " The following are opencsw-only:" - print " $prog --relink-missing : create missing symlinks" - print " $prog --list" - print "" - print "See /opt/csw/share/doc/alternatives/ for more docs" - - -# I dont want to bloat up the usage message, so here's some more docs -# -# This program is a lightweight 'workalike' to the linux alternatives prog. -# It is written with OpenCSW in mind, and is specificaly tailored for -# our needs. You may find it useful in other fields, but be aware that -# its primary purpose is to be simple, and flexible. NOT an exact clone. -# Part of its flexibility comes from the fact that it is configuration-file -# driven, NOT internal-database-driven -# The --install and --remove flags, while (hopefully) provided as -# a convenience, do NOT install, or remove, any configuration. They just -# update symlinks, "as appropriate" -# -# Priorities are driven by configuration files delivered by our packages. -# They get delivered to /opt/csw/share/alternatives, which keeps things -# NFS friendly. -# Thes files should only get "installed" or "removed" on a per-SVR4 package -# basis normally. (although technically, it would be possible to drop in your -# own config file in either $PRIORITIESDIR or $MANUALDIR, and then -# have things integrate with your own custom non-packaged software). -# -# There is almost NO ERROR CHECKING. There is no saving state of prior actions, -# other than the --set comand. -# It is up to individual packages to make sure that everyone providing -# an alternative for {name}, all have the same "slave entries", -# if you choose to use slave entries -} - - -# Usage: find_highest_prio {name} -# search through all conf files for {name} -# print out the highest priority match. or, potentially nothing. -function find_highest_prio { - if [[ "$1" == "" ]] ; then - print INTERNAL ERROR: find_highest_prio called with no args - return - fi - # I hate using cat, but its the only way to avoid nawk throwing a fit. - cat $PRIORITIESDIR/* $MANUALDIR/$1 2>/dev/null | - $AWK ' BEGIN {save=""} - $2 == "'$1'" {if($4 > highest){ - save=$0; - highest=$4 - } - } - - END {print save} - ' -} - -if [[ $# -lt 1 ]] ; then - print error: need an argument - usage - exit 1 -fi - - -############################################################ -# Start of subroutine area - -# Usage: print_alternatives shortname -# This prints only the INSTALLED alternatives lines for named software. -# Does not display whether or not any have been manually chosen. -# Prints in priority-sorted order -# This is used both as a user-facing display, and also internally -# -function print_alternatives { - if [[ $# != 1 ]] ; then print ERROR print_alternatives needs an arg; fi - cat $PRIORITIESDIR/* 2>/dev/null| - nawk '$2 == "'$1'" {print}' | sort -nr +3 -} - -# User facing function, as well as internal -# enables "alternatives --list" -function list_alternatives { - cat $PRIORITIESDIR/* 2>/dev/null| nawk '{print $2}' | sort -u -} - -# prints ONLY the manually set alternatives line, if present -function print_manual_set { - if [[ $# != 1 ]] ; then print ERROR print_manual_set needs an arg; fi - - if [[ -f $MANUALDIR/$1 ]] ; then - nawk '$2 == "'$1'" {print}' $MANUALDIR/$1 - else - return 1 - fi -} - -function fileerr_exit { - print Debug: potentially should check to see if /opt/csw is - print specifically read-only, or we are in jumpstart, or something - print before returning a bad status exit, perhaps - - case `/bin/id` in - 'uid=0('*) - : - ;; - *) - echo "Hey! Try running this as root whydoncha?" - exit 1 - ;; - esac - - print If someone other than Phil is seeing this, please let him know - - exit 1 -} - -# Called only internally, by set_alternative. -# args: {target} {shortname} {implementation-path} -# Split out, because one "alternatives" line may have multiple "slave" links -function set_link { - $DEBUG set_link called with: $1 $2 $3 - if [[ $# -lt 3 ]] ; then - print ERROR: set_link needs 3 arguments - return 1 - fi - - if [[ -h $1 ]] ; then - linktarget=`ls -l $1 | nawk '{print $NF}'` - if [[ "$linktarget" == "$3" ]] ; then - $DEBUG $1 already linked to $3 - return 0 - fi - - $DEBUG removing symlink $1 - /bin/rm -f $1 - if [[ $? -ne 0 ]] ; then - $DEBUG permission to remove $1 failed - fileerr_exit - fi - fi - if [[ ! -f $1 ]] ; then - $DEBUG linking $1 to $3 - ln -s $3 $1 - if [[ $? -ne 0 ]] ; then - $DEBUG permission to create symlink for $1 failed - fileerr_exit - fi - return 0 - else - print ERROR: $1 exists, and is not symlink. - print Not installing $3 as $1 - return 1 - fi - - ## Note to self: check existing, and dont attempt to - ## update if already set how we want it? - ## Also, dont crash if /opt/csw is read-only. - ## Just politely print warning, and exit cleanly. - ## At least if running from jumpstart environment? - ## ALSO, be paranoid and dont remove a "real" file, if - ## one already exists in the target space. - ## only a symlink -} - - -#Used for --remove. -# removes the old symlinks. -# pass in the "normal" cache file format. -# Should be called ONLY IF THERE ARE NO MORE "alternatives" installed -# or if, perhaps, the "current" alternative is the one being removed. -function rm_alternative_links { - $DEBUG rm_alternative_links called with $@ - # first one is special - if [[ -h $1 ]] ; then - rm -f $1 - fi - shift 4 - while [[ $# -ge 3 ]] ; do - rm -f $1 - shift 3 - done - -} - -# set_alternatives: mostly internal function. -# It "sets" only in the sense of making the symlink for the binary(s) -# -# Usage: set_alternative {shortname} [ignore-path] -# -# Goes and checks both standard configs, and manual config, for best fit. -# Mandatory first argument, is the "shortname" of the alternative. -# Optional second argument implies "remove" mode, and needs to be -# a full path to one of the main implementations of an alternative. -# The line containing that, will then be ignored. -# -# -function set_alternative { - typeset shortname remove_match line - $DEBUG set_alternative called with $* - - if [[ $# -lt 1 ]] ; then - print ERROR set_alternative needs an arg; exit 1; - fi - - shortname="$1" - remove_match="$2" - - - - line=`print_manual_set $shortname` - if [[ "$line" != "" ]] ; then - set $line - if [[ "$3" = "$remove_match" ]] ; then - $DEBUG Note: manual choice is currently $line - rm_alternative_links $line - line="" - fi - if [[ ! -f "$3" ]] ; then - print $0 Note: manual choice set, but is invalid. - print Ignoring $3 - line="" - fi - fi - - if [[ "$line" = "" ]] ; then - if [[ "$remove_match" != "" ]] ; then - line=`print_alternatives $shortname| - nawk ' $3 != "'$remove_match'" {print}' | - head -1` - if [[ "$line" = "" ]] ; then - line=`print_alternatives $shortname` - set $line - if [[ $3 = "$remove_match" ]] ; then - print Removing last alternative for $shortname - rm_alternative_links $line - return 0 - fi - fi - else - line=`print_alternatives $shortname|head -1` - fi - fi - - - if [[ "$line" != "" ]] ; then - set $line - set_link $1 $2 $3 - shift 4 - while [[ "$1" != "" ]] ; do - set_link $1 $2 $3 - shift 3 - done - return 0 - fi - - # If we are here, then our "database" is internally - # inconsistent...? - print $0: Error 52: should not be in this code section. - print "Inconsistency with files in $PRIORITIESDIR ?" - - -} - -function revert_to_auto { - case $1 in - */*) - print Error: need short name for --auto - exit 1 - ;; - esac - if [[ -f "$MANUALDIR/$1" ]] ; then - $DEBUG removing manual setting for $1 - rm "$MANUALDIR/$1" - else - $DEBUG no manual setting for $1 found - fi - set_alternative $1 -} - -# Usage: set_manual_prio shortname /full/path -# Sets a manual override for priorities, for "shortname", by finding -# the alternatives file supporting the desired combo, and making -# a symlink under $MANUALDIR, pointing to it. -# Attempting to set non-alternatives-supported paths is a user error -# Will then call our internal "make a symlink" routine to create the -# user-facing symlink for 'shortname'. -function set_manual_prio { - case $1 in - */*) - print Error: need short name as first arg for --set - exit 1 - ;; - esac - - if [[ ! -d $MANUALDIR ]] ; then - mkdir $MANUALDIR 2>/dev/null - fi - if [[ ! -d $MANUALDIR ]] ; then - print Error: $MANUALDIR does not exist. Cannot continue - exit 1 - fi - check=`egrep -l "^[^ ]* [ ]*$1 [ ]*$2 " $PRIORITIESDIR/*` - if [[ "$check" == "" ]] ; then - print Error: no installed match found for $1 $2 - exit 1 - fi - # Note: target file may have more than one line in it!! - - $DEBUG found match for $1: $check - rm -f $MANUALDIR/$1 - ln -s $check $MANUALDIR/$1 - # I use a symlink, so that way, the manual set does not take - # effect if the package has been removed.. but it is remembered - # if the package is coming right back, hopefully. - - set_alternative $1 - -} - - - -function display_choices { - case $1 in - */*) - print Error: need short name as arg for --display - exit 1 - ;; - esac - - if [[ -f $MANUALDIR/$1 ]] ; then - print Manual mode for $1 set. Paths are: - print_manual_set $1 - fi - print Installed alternatives for $1 are: - print_alternatives $1 -} - -function config_alternative { - case $1 in - */*) - print Error: need short name as arg for --config - exit 1 - ;; - "") - print Error: Need a name for --config - exit 1 - ;; - esac - print "Chooser for software '$1'" - print_alternatives $1 |nawk '{print $4,$1,$3}' - print "Input the priority number for your desired choice, or 0 to quit" - - read prio - case $prio in - 0|Q|q) - print Quitting without change - exit 0 - ;; - esac - fullpath=`cat $PRIORITIESDIR/* | - nawk '$2 == "'$1'" && $4 == "'$prio'" {print $3}'` - - if [[ "$fullpath" = "" ]] ; then - print Error: no match for priority $prio - exit 1 - fi - - set_manual_prio $1 $fullpath -} - -# User facing function: --relink-missing -# Used as a damage control function for zones that are non-sparse. -# Even though we dont officially support non-sparse zones :-) -# Go through and create links for all alternatives known. -function relink_missing { - for alt in `list_alternatives` ; do - set_alternative $alt - done -} -############################################################ -# Return to "main" area below - -## Comment on --remove arg: -## It does not actually **remove* registration of alternative. -## That is left for pkgrm. -## What it does do, is reset link, while ignoring the specified alternative. -## So for strict purposes, it would better be called "--ignore-and-set" -## Left in original flag, but dual-implemented as --ignore -## - -if [[ "$1" == "--remove" ]] ; then - $DEBUG $0 $* - $DEBUG Note: --remove is really only temporary - $DEBUG It works like --ignore - $DEBUG You must pkgrm or rm the appropriate file in $PRIORITIESDIR - $DEBUG to remove a "registration" for an alternative -fi - - - -case $1 in - --install) - shift - $DEBUG "($0 Using files in $PRIORITIESDIR)" - set_alternative $2 - ;; - --remove|--ignore) #args = shortname /local/path - shift - print "(Note: ignoring arguments for --remove except for '$1')" - $DEBUG "(Using files in $PRIORITIESDIR)" - set_alternative $1 $2 - ;; - --auto) - shift - revert_to_auto $1 - ;; - --list) - echo "List of installed software that uses the alternatives system:" - list_alternatives - ;; - --display) - shift - display_choices $1 - ;; - --config) - shift - config_alternative $1 - ;; - --set) - shift - set_manual_prio $1 $2 - ;; - --relink-missing) - relink_missing - ;; - *) - print -- $1 is not a recognized command. - usage - - exit 1 - ;; -esac - - Added: csw/mgar/pkg/alternatives/trunk/checksums =================================================================== Deleted: csw/mgar/pkg/alternatives/trunk/copyright =================================================================== --- csw/mgar/pkg/alternatives/trunk/copyright 2013-08-22 08:03:48 UTC (rev 21820) +++ csw/mgar/pkg/alternatives/trunk/copyright 2013-08-22 09:12:15 UTC (rev 21821) @@ -1,2 +0,0 @@ -Scripts in this package are copyright Dagobert Michelsen and Philip Brown -They may be freely used and copied as part of this package. Added: csw/mgar/pkg/alternatives/trunk/files/CSWalternatives.i.cswalternatives =================================================================== --- csw/mgar/pkg/alternatives/trunk/files/CSWalternatives.i.cswalternatives (rev 0) +++ csw/mgar/pkg/alternatives/trunk/files/CSWalternatives.i.cswalternatives 2013-08-22 09:12:15 UTC (rev 21821) @@ -0,0 +1,52 @@ +#!/bin/sh +# +# i.cswalternatives - Class action script for +# registering applications in alternatives +# +# Written and maintained by Dagobert Michelsen +# +# 2010-02-11 Initial release + +: ${PKG_INSTALL_ROOT:=/} + +while read src dest; do + /usr/bin/cp $src $dest || exit 2 + + cat $dest | while read C; do + set -- $C + + ALTLINK="$1" + ALTNAME="$2" + ALTPATH="$3" + ALTPRIO="$4" + + echo "Registering '$ALTNAME' alternative $ALTPATH ..." + + ARGS="--install $ALTLINK $ALTNAME $ALTPATH $ALTPRIO" + shift; shift; shift; shift + + while [ $# -gt 0 ]; do + ARGS="$ARGS --slave $1 $2 $3" + shift; shift; shift + done + + if [ ! -x ${PKG_INSTALL_ROOT}/opt/csw/sbin/alternatives ]; then + echo "ERROR: /opt/csw/sbin/alternatives could not be found" >&2 + exit 2 + fi + + chroot ${PKG_INSTALL_ROOT} /opt/csw/sbin/alternatives $ARGS + + # Redo previous manual selection if this is an upgrade + if /usr/bin/test -L "${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$ALTNAME"; then + CHOICE=`/usr/bin/perl -e 'print readlink $ARGV[0]' "${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$ALTNAME"` + if [ "${CHOICE}" = "$ALTPATH" ]; then + echo "Applying previous manual selection ${CHOICE} ..." + chroot ${PKG_INSTALL_ROOT} /opt/csw/sbin/alternatives --set $ALTNAME ${CHOICE} + rm -f ${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$ALTNAME + fi + fi + done +done + +exit 0 Added: csw/mgar/pkg/alternatives/trunk/files/CSWalternatives.r.cswalternatives =================================================================== --- csw/mgar/pkg/alternatives/trunk/files/CSWalternatives.r.cswalternatives (rev 0) +++ csw/mgar/pkg/alternatives/trunk/files/CSWalternatives.r.cswalternatives 2013-08-22 09:12:15 UTC (rev 21821) @@ -0,0 +1,42 @@ +#!/bin/sh +# +# r.cswalternatives - Class action script for +# registering applications in alternatives +# +# Written and maintained by Dagobert Michelsen +# +# 2010-02-11 Initial release + +: ${PKG_INSTALL_ROOT:=/} + +while read dest; do + cat $dest | while read C; do + set -- $C + + # If we are in manual mode and the selected item is about to be removed + # make sure to remember the selection for next install to be reset. + + if egrep '^manual$' ${PKG_INSTALL_ROOT}/var/opt/csw/alternatives/$2 >/dev/null 2>&1; then + CHOICE="`perl -e 'print readlink $ARGV[0]' ${PKG_INSTALL_ROOT}/etc/opt/csw/alternatives/$2`" + if [ "$3" = "${CHOICE}" ]; then + echo "Preserving '$2' manual choice ${CHOICE} ..." + mkdir -p ${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives + rm -f ${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$2 + ln -s "${CHOICE}" ${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$2 + fi + fi + + echo "Unregistering '$2' alternative $3 ..." + + if [ -x ${PKG_INSTALL_ROOT}/opt/csw/sbin/alternatives ]; then + chroot ${PKG_INSTALL_ROOT} /opt/csw/sbin/alternatives --remove $2 $3 + else + echo "ERROR: /opt/csw/sbin/alternatives could not be found" >&2 + exit 2 + fi + done + + rm -f $dest +done + +exit 0 Added: csw/mgar/pkg/alternatives/trunk/files/LICENSE-2.0.txt =================================================================== --- csw/mgar/pkg/alternatives/trunk/files/LICENSE-2.0.txt (rev 0) +++ csw/mgar/pkg/alternatives/trunk/files/LICENSE-2.0.txt 2013-08-22 09:12:15 UTC (rev 21821) @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. Copied: csw/mgar/pkg/alternatives/trunk/files/README (from rev 21819, csw/mgar/pkg/alternatives/trunk/README) =================================================================== --- csw/mgar/pkg/alternatives/trunk/files/README (rev 0) +++ csw/mgar/pkg/alternatives/trunk/files/README 2013-08-22 09:12:15 UTC (rev 21821) @@ -0,0 +1,66 @@ +This file is more of an "internals" thoughts and notes file. +For user facing documentation, see README.user + +Phil decided that a from-scratch, CSW-custom implementation was needed, +because the debian one was hugely bloated, and the redhat smaller one, +did not play nicely with NFS-shared /opt/csw +So please dont go getting ideas that we can migrated back to redhat,etc +in the future! :) we tried, and it failed. + +Sections below: + * CODE NOTES + * FILE FORMATS + + +CODE NOTES + + My initial version seems to expect each "alternative" to have its own +file as /opt/csw/share/alternatives/xyz +One line per file only would be nice, please. But this suports +multiple lines per file now. + +When a choice is manually set (overriding auto settings), it records that +fact by making a symlink from the relevant shipped file, to +/etc/opt/csw/alternatives/(progname) +and then it will make the user-facing symlink(s) indicated by that file + +This way, you can have the binary, and alternatives files per software, +in NFS-shared /opt/csw, but then have machine-local overrides. + +Reminder: Do NOT have to get fancy with the class action script not + getting called with pathnames on sparse zones with pkg-inherit-dir, + because since /opt/csw is shared, the symlink will already be in place. + + Ambuguity for --remove: + what if --remove is used, on something that has a manually set pref? + (rather than calling --auto) + I choose that it will LEAVE the manual choice. + That is to say, it will leave the saved preference as valid. + BUT, if the manual choice matches the --remove", then + it should skip it as a "what to match" option..? !! + + This is to potentially make our pkgrm/pkgadd upgrade cycle + function as a user expects: to preserve their manual choice. + +FILE FORMATS + + Packages that provide implementation of an "alternative" for a + particular path, need to provide a file in + /opt/csw/share/alternatives/[softwarename] + + *** Note that it MUST be in that directory and nowhere else !!! *** + + The format of this file, is one or more lines, of the following format: + + /full/path shortname /provided/path priority [/slave/path shortname /provide! + + Note that tabs are not allowed. + + The purpose of the "slave path", is that sometimes, when the "main" path + changes its implementation, one or more other ones must be changed + to match. + + This line format, is normally passed onto our + "alternatives" binary by the class action script, directly as + an arg list to the --install option. + Copied: csw/mgar/pkg/alternatives/trunk/files/README.user (from rev 21819, csw/mgar/pkg/alternatives/trunk/README.user) =================================================================== --- csw/mgar/pkg/alternatives/trunk/files/README.user (rev 0) +++ csw/mgar/pkg/alternatives/trunk/files/README.user 2013-08-22 09:12:15 UTC (rev 21821) @@ -0,0 +1,44 @@ +This is a short documentation file for the OpenCSW targetted implementation of +linux style "alternatives", aka "update-alternatives" in debian. + +USER LEVEL DOCS + + alternatives --display shortname + # will display any currently installed symlink for "shortname" + # will display any installed packages that provide "shortname". + # will display current decision mode for --install, for "shortname" + # (either "auto", or [?? something else] + + + alternatives --config shortname + # will display any installed packages that provide "shortname". + # will prompt user for their preferred choice of package to use, + or to stick/revert to auto mode. + + alternatives --auto shortname + # sets shortname to be auto-chosen. Will adjust symlinks now, if appropriate + + alternatives --set shortname /provided/path + # sets shortname to be the implementation provided by /provided/path, + # IF PRESENT. + # Basically, sets that one to be artificially "highest priority", then + # configure the link now. + # If the manual setting is invalid, it will be ignored + + alternatives --install /full/path/name shortname /path/xx priority [...] + # notifies the alternatives handler, and says, + # "hey, here's an implementation. If its highest priority right now, + # use it!" + # Unlike redhat, we dont actually "register" anything. + + alternatives --remove shortname /full/path/name + # basically, a hint to reconfigure shortname "as appropriate", + # while ignoring anything matching /full/path/name as a valid alternative + + alternatives --list + # Gives a short list of programs "known" to alternatives, on this machine. + + alternatives --relink-missing + # if you are in a situation where symlinks have not been created, + # call this, and it will create any missing ones as appropriate + Copied: csw/mgar/pkg/alternatives/trunk/files/alternatives (from rev 21819, csw/mgar/pkg/alternatives/trunk/alternatives) =================================================================== --- csw/mgar/pkg/alternatives/trunk/files/alternatives (rev 0) +++ csw/mgar/pkg/alternatives/trunk/files/alternatives 2013-08-22 09:12:15 UTC (rev 21821) @@ -0,0 +1,479 @@ +#!/bin/ksh -p + +# ksh high-level implentation of linux style "alternatives". +# Adjusted for OpenCSW needs +# Author: Philip Brown, phil at bolthole.com, 2010-2011 +# $Id$ +Revision="$(echo '$Revision$' | sed -e 's/^[$]Revision: //' -e 's/ [$]$//')" + +PRIORITIESDIR=/opt/csw/share/alternatives +MANUALDIR=/etc/opt/csw/alternatives #manual override location +AWK=nawk +DEBUG=${DEBUG:-/bin/true} + +#echo DEBUG VERSION of $0: dont ship this +#DEBUG=echo + +function usage { + prog=`basename $0` + print "Usage for $prog :" + print " $prog --display {name}" + print " $prog --auto {name}" + print " $prog --set {name} {/full/path}" + print " $prog --config {name}" + print " " + print " The following are provided for compatibility, but do not work" + print " in exactly the same way as linux variants" + print " See comments in usage function code for more information." + print " $prog --install {/full/path/name} {name} {#priority}" + print " $prog --remove {name} {/full/path}" + print "" + print " The following are opencsw-only:" + print " $prog --relink-missing : create missing symlinks" + print " $prog --list" + print "" + print "See /opt/csw/share/doc/alternatives/ for more docs" + + +# I dont want to bloat up the usage message, so here's some more docs +# +# This program is a lightweight 'workalike' to the linux alternatives prog. +# It is written with OpenCSW in mind, and is specificaly tailored for +# our needs. You may find it useful in other fields, but be aware that +# its primary purpose is to be simple, and flexible. NOT an exact clone. +# Part of its flexibility comes from the fact that it is configuration-file +# driven, NOT internal-database-driven +# The --install and --remove flags, while (hopefully) provided as +# a convenience, do NOT install, or remove, any configuration. They just +# update symlinks, "as appropriate" +# +# Priorities are driven by configuration files delivered by our packages. +# They get delivered to /opt/csw/share/alternatives, which keeps things +# NFS friendly. +# Thes files should only get "installed" or "removed" on a per-SVR4 package +# basis normally. (although technically, it would be possible to drop in your +# own config file in either $PRIORITIESDIR or $MANUALDIR, and then +# have things integrate with your own custom non-packaged software). +# +# There is almost NO ERROR CHECKING. There is no saving state of prior actions, +# other than the --set comand. +# It is up to individual packages to make sure that everyone providing +# an alternative for {name}, all have the same "slave entries", +# if you choose to use slave entries +} + + +# Usage: find_highest_prio {name} +# search through all conf files for {name} +# print out the highest priority match. or, potentially nothing. +function find_highest_prio { + if [[ "$1" == "" ]] ; then + print INTERNAL ERROR: find_highest_prio called with no args + return + fi + # I hate using cat, but its the only way to avoid nawk throwing a fit. + cat $PRIORITIESDIR/* $MANUALDIR/$1 2>/dev/null | + $AWK ' BEGIN {save=""} + $2 == "'$1'" {if($4 > highest){ + save=$0; + highest=$4 + } + } + + END {print save} + ' +} + +if [[ $# -lt 1 ]] ; then + print error: need an argument + usage + exit 1 +fi + + +############################################################ +# Start of subroutine area + +# Usage: print_alternatives shortname +# This prints only the INSTALLED alternatives lines for named software. +# Does not display whether or not any have been manually chosen. +# Prints in priority-sorted order +# This is used both as a user-facing display, and also internally +# +function print_alternatives { + if [[ $# != 1 ]] ; then print ERROR print_alternatives needs an arg; fi + cat $PRIORITIESDIR/* 2>/dev/null| + nawk '$2 == "'$1'" {print}' | sort -nr +3 +} + +# User facing function, as well as internal +# enables "alternatives --list" +function list_alternatives { + cat $PRIORITIESDIR/* 2>/dev/null| nawk '{print $2}' | sort -u +} + +# prints ONLY the manually set alternatives line, if present +function print_manual_set { + if [[ $# != 1 ]] ; then print ERROR print_manual_set needs an arg; fi + + if [[ -f $MANUALDIR/$1 ]] ; then + nawk '$2 == "'$1'" {print}' $MANUALDIR/$1 + else + return 1 + fi +} + +function fileerr_exit { + print Debug: potentially should check to see if /opt/csw is + print specifically read-only, or we are in jumpstart, or something + print before returning a bad status exit, perhaps + + case `/bin/id` in + 'uid=0('*) + : + ;; + *) + echo "Hey! Try running this as root whydoncha?" + exit 1 + ;; + esac + + print If someone other than Phil is seeing this, please let him know + + exit 1 +} + +# Called only internally, by set_alternative. +# args: {target} {shortname} {implementation-path} +# Split out, because one "alternatives" line may have multiple "slave" links +function set_link { + $DEBUG set_link called with: $1 $2 $3 + if [[ $# -lt 3 ]] ; then + print ERROR: set_link needs 3 arguments + return 1 + fi + + if [[ -h $1 ]] ; then + linktarget=`ls -l $1 | nawk '{print $NF}'` + if [[ "$linktarget" == "$3" ]] ; then + $DEBUG $1 already linked to $3 + return 0 + fi + + $DEBUG removing symlink $1 + /bin/rm -f $1 + if [[ $? -ne 0 ]] ; then + $DEBUG permission to remove $1 failed + fileerr_exit + fi + fi + if [[ ! -f $1 ]] ; then + $DEBUG linking $1 to $3 + ln -s $3 $1 + if [[ $? -ne 0 ]] ; then + $DEBUG permission to create symlink for $1 failed + fileerr_exit + fi + return 0 + else + print ERROR: $1 exists, and is not symlink. + print Not installing $3 as $1 + return 1 + fi + + ## Note to self: check existing, and dont attempt to + ## update if already set how we want it? + ## Also, dont crash if /opt/csw is read-only. + ## Just politely print warning, and exit cleanly. + ## At least if running from jumpstart environment? + ## ALSO, be paranoid and dont remove a "real" file, if + ## one already exists in the target space. + ## only a symlink +} + + +#Used for --remove. +# removes the old symlinks. +# pass in the "normal" cache file format. +# Should be called ONLY IF THERE ARE NO MORE "alternatives" installed +# or if, perhaps, the "current" alternative is the one being removed. +function rm_alternative_links { + $DEBUG rm_alternative_links called with $@ + # first one is special + if [[ -h $1 ]] ; then + rm -f $1 + fi + shift 4 + while [[ $# -ge 3 ]] ; do + rm -f $1 + shift 3 + done + +} + +# set_alternatives: mostly internal function. +# It "sets" only in the sense of making the symlink for the binary(s) +# +# Usage: set_alternative {shortname} [ignore-path] +# +# Goes and checks both standard configs, and manual config, for best fit. +# Mandatory first argument, is the "shortname" of the alternative. +# Optional second argument implies "remove" mode, and needs to be +# a full path to one of the main implementations of an alternative. +# The line containing that, will then be ignored. +# +# +function set_alternative { + typeset shortname remove_match line + $DEBUG set_alternative called with $* + + if [[ $# -lt 1 ]] ; then + print ERROR set_alternative needs an arg; exit 1; + fi + + shortname="$1" + remove_match="$2" + + + + line=`print_manual_set $shortname` + if [[ "$line" != "" ]] ; then + set $line + if [[ "$3" = "$remove_match" ]] ; then + $DEBUG Note: manual choice is currently $line + rm_alternative_links $line + line="" + fi + if [[ ! -f "$3" ]] ; then + print $0 Note: manual choice set, but is invalid. + print Ignoring $3 + line="" + fi + fi + + if [[ "$line" = "" ]] ; then + if [[ "$remove_match" != "" ]] ; then + line=`print_alternatives $shortname| + nawk ' $3 != "'$remove_match'" {print}' | + head -1` + if [[ "$line" = "" ]] ; then + line=`print_alternatives $shortname` + set $line + if [[ $3 = "$remove_match" ]] ; then + print Removing last alternative for $shortname + rm_alternative_links $line + return 0 + fi + fi + else + line=`print_alternatives $shortname|head -1` + fi + fi + + + if [[ "$line" != "" ]] ; then + set $line + set_link $1 $2 $3 + shift 4 + while [[ "$1" != "" ]] ; do + set_link $1 $2 $3 + shift 3 + done + return 0 + fi + + # If we are here, then our "database" is internally + # inconsistent...? + print $0: Error 52: should not be in this code section. + print "Inconsistency with files in $PRIORITIESDIR ?" + + +} + +function revert_to_auto { + case $1 in + */*) + print Error: need short name for --auto + exit 1 + ;; + esac + if [[ -f "$MANUALDIR/$1" ]] ; then + $DEBUG removing manual setting for $1 + rm "$MANUALDIR/$1" + else + $DEBUG no manual setting for $1 found + fi + set_alternative $1 +} + +# Usage: set_manual_prio shortname /full/path +# Sets a manual override for priorities, for "shortname", by finding +# the alternatives file supporting the desired combo, and making +# a symlink under $MANUALDIR, pointing to it. +# Attempting to set non-alternatives-supported paths is a user error +# Will then call our internal "make a symlink" routine to create the +# user-facing symlink for 'shortname'. +function set_manual_prio { + case $1 in + */*) + print Error: need short name as first arg for --set + exit 1 + ;; + esac + + if [[ ! -d $MANUALDIR ]] ; then + mkdir $MANUALDIR 2>/dev/null + fi + if [[ ! -d $MANUALDIR ]] ; then + print Error: $MANUALDIR does not exist. Cannot continue + exit 1 + fi + check=`egrep -l "^[^ ]* [ ]*$1 [ ]*$2 " $PRIORITIESDIR/*` + if [[ "$check" == "" ]] ; then + print Error: no installed match found for $1 $2 + exit 1 + fi + # Note: target file may have more than one line in it!! + + $DEBUG found match for $1: $check + rm -f $MANUALDIR/$1 + ln -s $check $MANUALDIR/$1 + # I use a symlink, so that way, the manual set does not take + # effect if the package has been removed.. but it is remembered + # if the package is coming right back, hopefully. + + set_alternative $1 + +} + + + +function display_choices { + case $1 in + */*) + print Error: need short name as arg for --display + exit 1 + ;; + esac + + if [[ -f $MANUALDIR/$1 ]] ; then + print Manual mode for $1 set. Paths are: + print_manual_set $1 + fi + print Installed alternatives for $1 are: + print_alternatives $1 +} + +function config_alternative { + case $1 in + */*) + print Error: need short name as arg for --config + exit 1 + ;; + "") + print Error: Need a name for --config + exit 1 + ;; + esac + print "Chooser for software '$1'" + print_alternatives $1 |nawk '{print $4,$1,$3}' + print "Input the priority number for your desired choice, or 0 to quit" + + read prio + case $prio in + 0|Q|q) + print Quitting without change + exit 0 + ;; + esac + fullpath=`cat $PRIORITIESDIR/* | + nawk '$2 == "'$1'" && $4 == "'$prio'" {print $3}'` + + if [[ "$fullpath" = "" ]] ; then + print Error: no match for priority $prio + exit 1 + fi + + set_manual_prio $1 $fullpath +} + +# User facing function: --relink-missing +# Used as a damage control function for zones that are non-sparse. +# Even though we dont officially support non-sparse zones :-) +# Go through and create links for all alternatives known. +function relink_missing { + for alt in `list_alternatives` ; do + set_alternative $alt + done +} +############################################################ +# Return to "main" area below + +## Comment on --remove arg: +## It does not actually **remove* registration of alternative. +## That is left for pkgrm. +## What it does do, is reset link, while ignoring the specified alternative. +## So for strict purposes, it would better be called "--ignore-and-set" +## Left in original flag, but dual-implemented as --ignore +## + +if [[ "$1" == "--remove" ]] ; then + $DEBUG $0 $* + $DEBUG Note: --remove is really only temporary + $DEBUG It works like --ignore + $DEBUG You must pkgrm or rm the appropriate file in $PRIORITIESDIR + $DEBUG to remove a "registration" for an alternative +fi + + + +case $1 in + --install) + shift + $DEBUG "($0 Using files in $PRIORITIESDIR)" + set_alternative $2 + ;; + --remove|--ignore) #args = shortname /local/path + shift + print "(Note: ignoring arguments for --remove except for '$1')" + $DEBUG "(Using files in $PRIORITIESDIR)" + set_alternative $1 $2 + ;; + --auto) + shift + revert_to_auto $1 + ;; + --list) + echo "List of installed software that uses the alternatives system:" + list_alternatives + ;; + --display) + shift + display_choices $1 + ;; + --config) + shift + config_alternative $1 + ;; + --set) + shift + set_manual_prio $1 $2 + ;; + --relink-missing) + relink_missing + ;; + --help) + usage + ;; + --version) + print ${Revision} + ;; + *) + print -- $1 is not a recognized command. + usage + + exit 1 + ;; +esac + + Property changes on: csw/mgar/pkg/alternatives/trunk/files/alternatives ___________________________________________________________________ Added: svn:executable + * Added: svn:keywords + Author Date Id Revision Added: csw/mgar/pkg/alternatives/trunk/files/alternatives.8 =================================================================== Deleted: csw/mgar/pkg/alternatives/trunk/i.cswalternatives =================================================================== --- csw/mgar/pkg/alternatives/trunk/i.cswalternatives 2013-08-22 08:03:48 UTC (rev 21820) +++ csw/mgar/pkg/alternatives/trunk/i.cswalternatives 2013-08-22 09:12:15 UTC (rev 21821) @@ -1,52 +0,0 @@ -#!/bin/sh -# -# i.cswalternatives - Class action script for -# registering applications in alternatives -# -# Written and maintained by Dagobert Michelsen -# -# 2010-02-11 Initial release - -: ${PKG_INSTALL_ROOT:=/} - -while read src dest; do - /usr/bin/cp $src $dest || exit 2 - - cat $dest | while read C; do - set -- $C - - ALTLINK="$1" - ALTNAME="$2" - ALTPATH="$3" - ALTPRIO="$4" - - echo "Registering '$ALTNAME' alternative $ALTPATH ..." - - ARGS="--install $ALTLINK $ALTNAME $ALTPATH $ALTPRIO" - shift; shift; shift; shift - - while [ $# -gt 0 ]; do - ARGS="$ARGS --slave $1 $2 $3" - shift; shift; shift - done - - if [ ! -x ${PKG_INSTALL_ROOT}/opt/csw/sbin/alternatives ]; then - echo "ERROR: /opt/csw/sbin/alternatives could not be found" >&2 - exit 2 - fi - - chroot ${PKG_INSTALL_ROOT} /opt/csw/sbin/alternatives $ARGS - - # Redo previous manual selection if this is an upgrade - if /usr/bin/test -L "${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$ALTNAME"; then - CHOICE=`/usr/bin/perl -e 'print readlink $ARGV[0]' "${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$ALTNAME"` - if [ "${CHOICE}" = "$ALTPATH" ]; then - echo "Applying previous manual selection ${CHOICE} ..." - chroot ${PKG_INSTALL_ROOT} /opt/csw/sbin/alternatives --set $ALTNAME ${CHOICE} - rm -f ${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$ALTNAME - fi - fi - done -done - -exit 0 Deleted: csw/mgar/pkg/alternatives/trunk/pkginfo =================================================================== --- csw/mgar/pkg/alternatives/trunk/pkginfo 2013-08-22 08:03:48 UTC (rev 21820) +++ csw/mgar/pkg/alternatives/trunk/pkginfo 2013-08-22 09:12:15 UTC (rev 21821) @@ -1,9 +0,0 @@ -PKG=CSWalternatives -ARCH=all -NAME=alternatives - an implementation of linux-style alternatives choice mgr -VERSION=1.1.1,REV=YYYY.MM.DD -CATEGORY=system -VENDOR=http://www.opencsw.org written and packaged for CSW by Philip Brown -EMAIL=phil at opencsw.org -HOTLINE=http://www.opencsw.org/bugtrack/ -PSTAMP=cswalternatives v1.1 Deleted: csw/mgar/pkg/alternatives/trunk/prototype =================================================================== --- csw/mgar/pkg/alternatives/trunk/prototype 2013-08-22 08:03:48 UTC (rev 21820) +++ csw/mgar/pkg/alternatives/trunk/prototype 2013-08-22 09:12:15 UTC (rev 21821) @@ -1,8 +0,0 @@ -i pkginfo -i copyright -f none /usr/sadm/install/scripts/i.cswalternatives=i.cswalternatives 0755 root bin -f none /usr/sadm/install/scripts/r.cswalternatives=r.cswalternatives 0755 root bin -f none /opt/csw/sbin/alternatives=alternatives 0755 root bin -d none /opt/csw/share/doc/alternatives 0755 root bin -f none /opt/csw/share/doc/alternatives/README.user=README.user 0644 root bin -f none /opt/csw/share/doc/alternatives/README.code=README 0644 root bin Deleted: csw/mgar/pkg/alternatives/trunk/r.cswalternatives =================================================================== --- csw/mgar/pkg/alternatives/trunk/r.cswalternatives 2013-08-22 08:03:48 UTC (rev 21820) +++ csw/mgar/pkg/alternatives/trunk/r.cswalternatives 2013-08-22 09:12:15 UTC (rev 21821) @@ -1,42 +0,0 @@ -#!/bin/sh -# -# r.cswalternatives - Class action script for -# registering applications in alternatives -# -# Written and maintained by Dagobert Michelsen -# -# 2010-02-11 Initial release - -: ${PKG_INSTALL_ROOT:=/} - -while read dest; do - cat $dest | while read C; do - set -- $C - - # If we are in manual mode and the selected item is about to be removed - # make sure to remember the selection for next install to be reset. - - if egrep '^manual$' ${PKG_INSTALL_ROOT}/var/opt/csw/alternatives/$2 >/dev/null 2>&1; then - CHOICE="`perl -e 'print readlink $ARGV[0]' ${PKG_INSTALL_ROOT}/etc/opt/csw/alternatives/$2`" - if [ "$3" = "${CHOICE}" ]; then - echo "Preserving '$2' manual choice ${CHOICE} ..." - mkdir -p ${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives - rm -f ${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$2 - ln -s "${CHOICE}" ${PKG_INSTALL_ROOT}/etc/opt/csw/preserve/${PKG}/alternatives/$2 - fi - fi - - echo "Unregistering '$2' alternative $3 ..." - - if [ -x ${PKG_INSTALL_ROOT}/opt/csw/sbin/alternatives ]; then - chroot ${PKG_INSTALL_ROOT} /opt/csw/sbin/alternatives --remove $2 $3 - else - echo "ERROR: /opt/csw/sbin/alternatives could not be found" >&2 - exit 2 - fi - done - - rm -f $dest -done - -exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 22 11:20:24 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 22 Aug 2013 09:20:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[21822] csw/mgar/pkg/alternatives/trunk/files/alternatives. 8 Message-ID: Revision: 21822 http://gar.svn.sourceforge.net/gar/?rev=21822&view=rev Author: pfelecan Date: 2013-08-22 09:20:24 +0000 (Thu, 22 Aug 2013) Log Message: ----------- alternatives/trunk: the manual page being generated on the fly there is no more need to have it in the sources Removed Paths: ------------- csw/mgar/pkg/alternatives/trunk/files/alternatives.8 Deleted: csw/mgar/pkg/alternatives/trunk/files/alternatives.8 =================================================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 22 11:32:45 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 22 Aug 2013 09:32:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[21823] csw/mgar/pkg/alternatives/trunk/Makefile Message-ID: Revision: 21823 http://gar.svn.sourceforge.net/gar/?rev=21823&view=rev Author: pfelecan Date: 2013-08-22 09:32:45 +0000 (Thu, 22 Aug 2013) Log Message: ----------- alternatives/trunk: corrected the placement of the script Modified Paths: -------------- csw/mgar/pkg/alternatives/trunk/Makefile Modified: csw/mgar/pkg/alternatives/trunk/Makefile =================================================================== --- csw/mgar/pkg/alternatives/trunk/Makefile 2013-08-22 09:20:24 UTC (rev 21822) +++ csw/mgar/pkg/alternatives/trunk/Makefile 2013-08-22 09:32:45 UTC (rev 21823) @@ -38,8 +38,8 @@ @$(MAKECOOKIE) install-custom: - ginstall -d $(DESTDIR)$(bindir) - ginstall $(WORKDIR)/alternatives $(DESTDIR)$(bindir) + ginstall -d $(DESTDIR)$(sbindir) + ginstall $(WORKDIR)/alternatives $(DESTDIR)$(sbindir) ginstall -d $(DESTDIR)$(mandir)/man8 ginstall $(WORKDIR)/alternatives.8 $(DESTDIR)$(mandir)/man8 ginstall -d $(DESTDIR)/etc/opt/csw/alternatives This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 22 12:28:03 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 22 Aug 2013 10:28:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[21824] csw/mgar/pkg/alternatives/trunk/Makefile Message-ID: Revision: 21824 http://gar.svn.sourceforge.net/gar/?rev=21824&view=rev Author: pfelecan Date: 2013-08-22 10:27:59 +0000 (Thu, 22 Aug 2013) Log Message: ----------- alternatives/trunk: override for the class scripts Modified Paths: -------------- csw/mgar/pkg/alternatives/trunk/Makefile Modified: csw/mgar/pkg/alternatives/trunk/Makefile =================================================================== --- csw/mgar/pkg/alternatives/trunk/Makefile 2013-08-22 09:32:45 UTC (rev 21823) +++ csw/mgar/pkg/alternatives/trunk/Makefile 2013-08-22 10:27:59 UTC (rev 21824) @@ -29,6 +29,7 @@ INSTALL_SCRIPTS = custom TEST_SCRIPTS = +CHECKPKG_OVERRIDES_CSWalternatives += bad-location-of-file ARCHALL = 1 include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 22 13:40:10 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 22 Aug 2013 11:40:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[21825] csw/mgar/pkg/alternatives/trunk/Makefile Message-ID: Revision: 21825 http://gar.svn.sourceforge.net/gar/?rev=21825&view=rev Author: pfelecan Date: 2013-08-22 11:40:10 +0000 (Thu, 22 Aug 2013) Log Message: ----------- alternatives/trunk: bump the version Modified Paths: -------------- csw/mgar/pkg/alternatives/trunk/Makefile Modified: csw/mgar/pkg/alternatives/trunk/Makefile =================================================================== --- csw/mgar/pkg/alternatives/trunk/Makefile 2013-08-22 10:27:59 UTC (rev 21824) +++ csw/mgar/pkg/alternatives/trunk/Makefile 2013-08-22 11:40:10 UTC (rev 21825) @@ -1,6 +1,6 @@ # $Id$ NAME = alternatives -VERSION = 1.0 +VERSION = 1.2 DESCRIPTION = Alternatives implementation specific to OpenCSW define BLURB 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 Aug 22 14:41:31 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Aug 2013 12:41:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[21826] csw/mgar/pkg/geolitedb/trunk Message-ID: Revision: 21826 http://gar.svn.sourceforge.net/gar/?rev=21826&view=rev Author: dmichelsen Date: 2013-08-22 12:41:30 +0000 (Thu, 22 Aug 2013) Log Message: ----------- geolitedb/trunk: Update to 20130822, add ASN databases Modified Paths: -------------- csw/mgar/pkg/geolitedb/trunk/Makefile csw/mgar/pkg/geolitedb/trunk/checksums Modified: csw/mgar/pkg/geolitedb/trunk/Makefile =================================================================== --- csw/mgar/pkg/geolitedb/trunk/Makefile 2013-08-22 11:40:10 UTC (rev 21825) +++ csw/mgar/pkg/geolitedb/trunk/Makefile 2013-08-22 12:41:30 UTC (rev 21826) @@ -1,19 +1,22 @@ NAME = geolitedb -VERSION = 20130521 +VERSION = 20130822 GARTYPE = v2 DESCRIPTION = Geolite country database -MASTER_SITES += http://geolite.maxmind.com/download/geoip/database/ -MASTER_SITES += http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/ -MASTER_SITES += http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/ +MASTER_SITES += http://download.maxmind.com/download/geoip/database/ +MASTER_SITES += http://download.maxmind.com/download/geoip/database/GeoLiteCountry/ +MASTER_SITES += http://download.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/ +MASTER_SITES += http://download.maxmind.com/download/geoip/database/asnum/ DISTFILES += GeoIP.dat.gz DISTFILES += GeoIPv6.dat.gz DISTFILES += GeoLiteCity.dat.xz DISTFILES += GeoLiteCityv6.dat.gz +DISTFILES += GeoIPASNum.dat.gz +DISTFILES += GeoIPASNumv6.dat.gz DISTFILES += COPYING -VENDOR_URL = http://www.maxmind.com/app/geolitecountry +VENDOR_URL = http://dev.maxmind.com/geoip/legacy/geolite/ ARCHALL = 1 @@ -31,4 +34,6 @@ ginstall $(WORKDIR)/GeoIPv6.dat $(DESTDIR)/opt/csw/share/GeoIP/GeoIPv6.dat ginstall $(WORKDIR)/GeoLiteCity.dat $(DESTDIR)/opt/csw/share/GeoIP/GeoIPCity.dat ginstall $(WORKDIR)/GeoLiteCityv6.dat $(DESTDIR)/opt/csw/share/GeoIP/GeoIPCityv6.dat + ginstall $(WORKDIR)/GeoIPASNum.dat $(DESTDIR)/opt/csw/share/GeoIP/GeoIPASNum.dat + ginstall $(WORKDIR)/GeoIPASNumv6.dat $(DESTDIR)/opt/csw/share/GeoIP/GeoIPASNumv6.dat @$(MAKECOOKIE) Modified: csw/mgar/pkg/geolitedb/trunk/checksums =================================================================== --- csw/mgar/pkg/geolitedb/trunk/checksums 2013-08-22 11:40:10 UTC (rev 21825) +++ csw/mgar/pkg/geolitedb/trunk/checksums 2013-08-22 12:41:30 UTC (rev 21826) @@ -1,4 +1,6 @@ -634d72f4ffbb2de57efa468add572d38 GeoIP.dat.gz -42a24002066543943220721adf304ee1 GeoIPv6.dat.gz -645e2b1f351bc7740786670708ef90d5 GeoLiteCity.dat.xz -4beb1bf51a56bd0775684e8fb6f446f2 GeoLiteCityv6.dat.gz +f3eee10daa10fe5a4ca204daf8aff689 GeoIP.dat.gz +7787b1b75626cef57680c809cd9ca059 GeoIPASNum.dat.gz +55af75660db5db2f94effcbdc1b7fed9 GeoIPASNumv6.dat.gz +e02d3809e312cf0a0628015c9a0190fa GeoIPv6.dat.gz +a273ba6bef3e3e60cb3f1a71378fdb3e GeoLiteCity.dat.xz +c5dd0ae06fd3d9fa9d2b09fa6d963497 GeoLiteCityv6.dat.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 Thu Aug 22 16:24:44 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 22 Aug 2013 14:24:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[21827] csw/mgar/pkg/netsnmp/trunk/Makefile Message-ID: Revision: 21827 http://gar.svn.sourceforge.net/gar/?rev=21827&view=rev Author: cgrzemba Date: 2013-08-22 14:24:44 +0000 (Thu, 22 Aug 2013) Log Message: ----------- netsnmp/trunk: add checkpkg hints Modified Paths: -------------- csw/mgar/pkg/netsnmp/trunk/Makefile Modified: csw/mgar/pkg/netsnmp/trunk/Makefile =================================================================== --- csw/mgar/pkg/netsnmp/trunk/Makefile 2013-08-22 12:41:30 UTC (rev 21826) +++ csw/mgar/pkg/netsnmp/trunk/Makefile 2013-08-22 14:24:44 UTC (rev 21827) @@ -105,6 +105,7 @@ RUNTIME_DEP_PKGS_CSWpy-netsnmp += CSWpython RUNTIME_DEP_PKGS_CSWpy-netsnmp += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWpy-netsnmp += CSWlibnetsnmp25 +CHECKPKG_OVERRIDES_CSWpy-netsnmp += surplus-dependency|CSWpython PACKAGES += CSWnetsnmp SPKG_DESC_CSWnetsnmp += $(DESCRIPTION), Base @@ -121,7 +122,7 @@ # CHECKPKG_OVERRIDES_CSWnetsnmp += file-with-bad-content|/usr/local|root/opt/csw/bin/traptoemail # CHECKPKG_OVERRIDES_CSWnetsnmp += file-with-bad-content|/usr/local|root/opt/csw/bin/ipf-mod.pl # CHECKPKG_OVERRIDES_CSWnetsnmp += file-with-bad-content|/usr/local|root/opt/csw/share/snmp/mib2c-data/mfd-makefile.m2m -CHECKPKG_OVERRIDES_CSWnetsnmp += file-with-bad-content|/usr/share|root/opt/csw/bin/net-snmp-cert +# CHECKPKG_OVERRIDES_CSWnetsnmp += file-with-bad-content|/usr/share|root/opt/csw/bin/net-snmp-cert # BUILD64 = 1 BUILD64_LIBS_ONLY = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Fri Aug 23 12:23:25 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Fri, 23 Aug 2013 10:23:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[21828] csw/mgar/pkg Message-ID: Revision: 21828 http://gar.svn.sourceforge.net/gar/?rev=21828&view=rev Author: lblume Date: 2013-08-23 10:23:16 +0000 (Fri, 23 Aug 2013) Log Message: ----------- gwhich/trunk: Clean up the recipe; add opt/gnu Modified Paths: -------------- csw/mgar/pkg/gwhich/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/gwhich/ Modified: csw/mgar/pkg/gwhich/trunk/Makefile =================================================================== --- csw/mgar/pkg/which/trunk/Makefile 2013-08-22 14:24:44 UTC (rev 21827) +++ csw/mgar/pkg/gwhich/trunk/Makefile 2013-08-23 10:23:16 UTC (rev 21828) @@ -1,3 +1,6 @@ +# $Id: Makefile 13420 2011-02-20 21:04:03Z bdwalton $ +# TODO (release-critical prefixed with !, non release-critical with *) +# NAME = which VERSION = 2.20 GARTYPE = v2 @@ -2,20 +5,23 @@ -DESCRIPTION = locate a command and display its pathname or alias +DESCRIPTION = Utility used to find which executable is executed when entered on the shell prompt. define BLURB - GNU which - is a utility that is used to find which executable (or alias or shell function) is executed when entered on the shell prompt + GNU which - is a utility that is used to find which executable (or alias or shell function) is executed when entered on the shell prompt. endef -MASTER_SITES = $(GNU_MIRROR) -DISTFILES = $(NAME)-$(VERSION).tar.gz -DISTFILES += $(call admfiles,CSWwhich,) +MASTER_SITES = http://ftp.gnu.org/gnu/which/ +DISTFILES = $(DISTNAME).tar.gz -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz +VENDOR_URL = http://savannah.gnu.org/projects/which/ -CONFIGURE_ARGS = $(DIRPATHS) +GARCOMPILER = GCC4 + +CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --program-prefix=g -CONFIGURE_ARGS += --disable-dependency-tracking -BUILD64_LIBS_ONLY = 1 +include gar/category.mk -include gar/category.mk +post-install-modulated: + ginstall -d $(DESTDIR)$(prefix)/gnu + $(foreach G,$(notdir $(wildcard $(DESTDIR)$(bindir)/*)),ln -s ../bin/$G $(DESTDIR)$(prefix)/gnu/$(patsubst g%,%,$G);) + @$(MAKECOOKIE) + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Fri Aug 23 12:32:55 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Fri, 23 Aug 2013 10:32:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[21829] csw/mgar/pkg/gwhich/trunk/files/CSWwhich.gspec Message-ID: Revision: 21829 http://gar.svn.sourceforge.net/gar/?rev=21829&view=rev Author: lblume Date: 2013-08-23 10:32:51 +0000 (Fri, 23 Aug 2013) Log Message: ----------- gwhich/trunk: Remove old file Removed Paths: ------------- csw/mgar/pkg/gwhich/trunk/files/CSWwhich.gspec Deleted: csw/mgar/pkg/gwhich/trunk/files/CSWwhich.gspec =================================================================== --- csw/mgar/pkg/gwhich/trunk/files/CSWwhich.gspec 2013-08-23 10:23:16 UTC (rev 21828) +++ csw/mgar/pkg/gwhich/trunk/files/CSWwhich.gspec 2013-08-23 10:32:51 UTC (rev 21829) @@ -1,4 +0,0 @@ -%var bitname which -%var pkgname CSWwhich -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING 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 Aug 26 09:14:23 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 26 Aug 2013 07:14:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[21830] csw/mgar/pkg/libcurl4/trunk Message-ID: Revision: 21830 http://gar.svn.sourceforge.net/gar/?rev=21830&view=rev Author: dmichelsen Date: 2013-08-26 07:14:22 +0000 (Mon, 26 Aug 2013) Log Message: ----------- libcurl4/trunk: Update to 7.32.0 and fix #5104 Modified Paths: -------------- csw/mgar/pkg/libcurl4/trunk/Makefile csw/mgar/pkg/libcurl4/trunk/checksums Modified: csw/mgar/pkg/libcurl4/trunk/Makefile =================================================================== --- csw/mgar/pkg/libcurl4/trunk/Makefile 2013-08-23 10:32:51 UTC (rev 21829) +++ csw/mgar/pkg/libcurl4/trunk/Makefile 2013-08-26 07:14:22 UTC (rev 21830) @@ -1,5 +1,5 @@ NAME = curl -VERSION = 7.28.1 +VERSION = 7.32.0 GARTYPE = v2 DESCRIPTION = Command line tool and library for client-side URL transfers @@ -37,6 +37,9 @@ RUNTIME_DEP_PKGS_CSWlibcurl4 += CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWlibcurl4 += CSWlibz1 RUNTIME_DEP_PKGS_CSWlibcurl4 += CSWlibidn11 +# We want the certs needed for ssl +RUNTIME_DEP_PKGS_CSWlibcurl4 += CSWcacertificates +CHECKPKG_OVERRIDES_CSWlibcurl4 += surplus-dependency|CSWcacertificates PACKAGES += CSWlibcurl4-feature CATALOGNAME_CSWlibcurl4-feature = libcurl4_feature @@ -99,13 +102,15 @@ CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-static #CONFIGURE_ARGS += --with-ssl=/opt/csw/ssl -CONFIGURE_ARGS += --with-ca-path=/opt/csw/ssl/certs + +# Update cert path as reported in #5104 +CONFIGURE_ARGS += --with-ca-path=/etc/opt/csw/ssl/certs CONFIGURE_ARGS += $(EXTRA_CONFIGURE_ARGS_features-$(FEATURES)) BUILD64 = 1 # There are some failing tests, ignore for now -SKIPTEST ?= 1 +# SKIPTEST ?= 1 # We do special 32/64 merging for this one, see post-merge EXTRA_MERGE_EXCLUDE_FILES += $(includedir)/curl/curlbuild.h Modified: csw/mgar/pkg/libcurl4/trunk/checksums =================================================================== --- csw/mgar/pkg/libcurl4/trunk/checksums 2013-08-23 10:32:51 UTC (rev 21829) +++ csw/mgar/pkg/libcurl4/trunk/checksums 2013-08-26 07:14:22 UTC (rev 21830) @@ -1 +1 @@ -b716ab1103fd4bef99b98f5ff2c7b638 curl-7.28.1.tar.lzma +db5948f44e7ef3edbf9a7907af9556ac curl-7.32.0.tar.lzma This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Aug 26 20:08:51 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 26 Aug 2013 18:08:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[21831] csw/mgar/pkg/lang-python/python-dateutil/trunk/ Makefile Message-ID: Revision: 21831 http://gar.svn.sourceforge.net/gar/?rev=21831&view=rev Author: pfelecan Date: 2013-08-26 18:08:50 +0000 (Mon, 26 Aug 2013) Log Message: ----------- lang-python/python-dateutil/trunk: adapted override for dual support Modified Paths: -------------- csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile Modified: csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile 2013-08-26 07:14:22 UTC (rev 21830) +++ csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile 2013-08-26 18:08:50 UTC (rev 21831) @@ -25,7 +25,8 @@ LICENSE = LICENSE ARCHALL = 1 -CHECKPKG_OVERRIDES_CSWpy-dateutil += file-with-bad-content|/usr/share|root/opt/csw/lib/python/site-packages/dateutil/tz.py +CHECKPKG_OVERRIDES_CSWpy-dateutil += file-with-bad-content|/usr/share|root/opt/csw/lib/python2.6/site-packages/dateutil/tz.py +CHECKPKG_OVERRIDES_CSWpy-dateutil += file-with-bad-content|/usr/share|root/opt/csw/lib/python2.7/site-packages/dateutil/tz.py include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 21:39:58 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 19:39:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[21832] csw/mgar/pkg/mod_geoip/trunk Message-ID: Revision: 21832 http://gar.svn.sourceforge.net/gar/?rev=21832&view=rev Author: wilbury Date: 2013-08-26 19:39:58 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Upgrade to geoip2 Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile csw/mgar/pkg/mod_geoip/trunk/checksums Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 18:08:50 UTC (rev 21831) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 19:39:58 UTC (rev 21832) @@ -1,43 +1,39 @@ -NAME = ap2_modgeoip -SPKG_NAME = mod_geoip -VERSION = 1.2.5 -GARTYPE = v1 +NAME = mod_geoip2 +VERSION = 1.2.8 +GARTYPE = v2 -DESCRIPTION = Apache 2.x GeoIP module +DESCRIPTION = GeoIP Apache module define BLURB - mod_geoip2 is an Apache 2.x module for finding the country and city - that a web request originated from. It uses the GeoIP library and - database to perform the lookup. It is free software, licensed under - the Apache license. It requires the C API, version 1.4.3 and above, see: - http://www.maxmind.com/app/c + The mod_geoip2 module embeds GeoIP database lookups into the Apache web server. + It is only capable of looking up the IP of a client that connects to the web server, + as opposed to looking up arbitrary addresses. endef +PACKAGES = CSWap2modgeoip2 + MASTER_SITES = http://www.maxmind.com/download/geoip/api/mod_geoip2/ -DISTFILES = $(SPKG_NAME)2_$(VERSION).tar.gz -DISTFILES += $(call admfiles,CSWap2modgeoip,depend postinstall preremove) +DISTFILES = mod_geoip2-latest.tar.gz +#WORKSRC = $(WORKDIR)/$(DISTNAME)-src/native +#PATCHDIR = $(WORKDIR)/$(DISTNAME)-src -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(SPKG_NAME)2-(\d+(?:\.\d+)*).tar.gz +# Apache paths +AP2_ROOT = $(prefix)/apache2 +AP2_LIBEXEC = $(DESTDIR)$(AP2_ROOT)/libexec +AP2_APXS = $(AP2_ROOT)/sbin/apxs +AP2_MODS = 1 +AP2_MODFILES += mod_geoip2.so -CONFIGURE_SCRIPTS = -BUILD_SCRIPTS = custom -INSTALL_SCRIPTS = custom -TEST_SCRIPTS = +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --libexecdir=$(AP2_ROOT)/libexec +CONFIGURE_ARGS += --with-apxs=$(AP2_ROOT)/sbin/apxs -include gar/category.mk -include ../apache2/files/extensionbuild.mk +BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWapache2-dev +RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 -WORKSRC := $(WORKDIR)/$(SPKG_NAME)2_$(VERSION) -SPKG_SOURCEURL = http://www.maxmind.com/app/mod_geoip/ +LICENSE_TEXT = Apache -build-custom: - @( cd $(WORKSRC) ; $(APXS2_BUILD) -L$(libdir) -Wl,"-R $(libdir)" -lGeoIP $(SPKG_NAME).c ) - @$(MAKECOOKIE) +# No test suite available +TEST_SCRIPTS = -install-custom: - @mkdir -p $(DESTDIR)$(docdir)/$(NAME) - @( cd $(WORKSRC) ; \ - $(APXS2_INSTALL) $(SPKG_NAME).la ; \ - cp Changes README* INSTALL $(DESTDIR)$(docdir)/$(NAME) ) - @cp $(FILEDIR)/CSWap2modgeoip.copyright $(DESTDIR)$(docdir)/$(NAME)/copyright - @$(MAKECOOKIE) +include gar/category.mk + Modified: csw/mgar/pkg/mod_geoip/trunk/checksums =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/checksums 2013-08-26 18:08:50 UTC (rev 21831) +++ csw/mgar/pkg/mod_geoip/trunk/checksums 2013-08-26 19:39:58 UTC (rev 21832) @@ -1,5 +1 @@ -5d35c9a9cbf47c2cb636bed26cd5fa19 download/mod_geoip2_1.2.5.tar.gz -3c890c2b8db8b7366fc36eddfaaaefb8 download/CSWap2modgeoip.gspec -3794fa588d42ec4ba824a145666a813e download/CSWap2modgeoip.depend -a4bc5e76c41a6e2e468b45b3d938bac8 download/CSWap2modgeoip.postinstall -8dc70925d3bd5e484cd453d9b8401f03 download/CSWap2modgeoip.preremove +adab5ca32be41980155e07c8c8bcfc87 mod_geoip2-latest.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 21:40:57 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 19:40:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[21833] csw/mgar/pkg/mod_geoip/branches Message-ID: Revision: 21833 http://gar.svn.sourceforge.net/gar/?rev=21833&view=rev Author: wilbury Date: 2013-08-26 19:40:57 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/branches/old-gar-v1: old recipe Added Paths: ----------- csw/mgar/pkg/mod_geoip/branches/old-gar-v1/ csw/mgar/pkg/mod_geoip/branches/old-gar-v1/Makefile csw/mgar/pkg/mod_geoip/branches/old-gar-v1/checksums csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/ csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.copyright csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.depend csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.gspec csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.postinstall csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.preremove Added: csw/mgar/pkg/mod_geoip/branches/old-gar-v1/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/branches/old-gar-v1/Makefile (rev 0) +++ csw/mgar/pkg/mod_geoip/branches/old-gar-v1/Makefile 2013-08-26 19:40:57 UTC (rev 21833) @@ -0,0 +1,43 @@ +NAME = ap2_modgeoip +SPKG_NAME = mod_geoip +VERSION = 1.2.5 +GARTYPE = v1 + +DESCRIPTION = Apache 2.x GeoIP module +define BLURB + mod_geoip2 is an Apache 2.x module for finding the country and city + that a web request originated from. It uses the GeoIP library and + database to perform the lookup. It is free software, licensed under + the Apache license. It requires the C API, version 1.4.3 and above, see: + http://www.maxmind.com/app/c +endef + +MASTER_SITES = http://www.maxmind.com/download/geoip/api/mod_geoip2/ +DISTFILES = $(SPKG_NAME)2_$(VERSION).tar.gz +DISTFILES += $(call admfiles,CSWap2modgeoip,depend postinstall preremove) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(SPKG_NAME)2-(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = custom +INSTALL_SCRIPTS = custom +TEST_SCRIPTS = + +include gar/category.mk +include ../apache2/files/extensionbuild.mk + +WORKSRC := $(WORKDIR)/$(SPKG_NAME)2_$(VERSION) +SPKG_SOURCEURL = http://www.maxmind.com/app/mod_geoip/ + +build-custom: + @( cd $(WORKSRC) ; $(APXS2_BUILD) -L$(libdir) -Wl,"-R $(libdir)" -lGeoIP $(SPKG_NAME).c ) + @$(MAKECOOKIE) + +install-custom: + @mkdir -p $(DESTDIR)$(docdir)/$(NAME) + @( cd $(WORKSRC) ; \ + $(APXS2_INSTALL) $(SPKG_NAME).la ; \ + cp Changes README* INSTALL $(DESTDIR)$(docdir)/$(NAME) ) + @cp $(FILEDIR)/CSWap2modgeoip.copyright $(DESTDIR)$(docdir)/$(NAME)/copyright + @$(MAKECOOKIE) Added: csw/mgar/pkg/mod_geoip/branches/old-gar-v1/checksums =================================================================== --- csw/mgar/pkg/mod_geoip/branches/old-gar-v1/checksums (rev 0) +++ csw/mgar/pkg/mod_geoip/branches/old-gar-v1/checksums 2013-08-26 19:40:57 UTC (rev 21833) @@ -0,0 +1,5 @@ +5d35c9a9cbf47c2cb636bed26cd5fa19 download/mod_geoip2_1.2.5.tar.gz +3c890c2b8db8b7366fc36eddfaaaefb8 download/CSWap2modgeoip.gspec +3794fa588d42ec4ba824a145666a813e download/CSWap2modgeoip.depend +a4bc5e76c41a6e2e468b45b3d938bac8 download/CSWap2modgeoip.postinstall +8dc70925d3bd5e484cd453d9b8401f03 download/CSWap2modgeoip.preremove Added: csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.copyright =================================================================== --- csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.copyright (rev 0) +++ csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.copyright 2013-08-26 19:40:57 UTC (rev 21833) @@ -0,0 +1,49 @@ +==================================================================== +Copyright (c) 1995 The Apache Group. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in +the documentation and/or other materials provided with the +distribution. + +3. All advertising materials mentioning features or use of this +software must display the following acknowledgment: +"This product includes software developed by the Apache Group +for use in the Apache HTTP server project (http://www.apache.org/)." + +4. The names "Apache Server" and "Apache Group" must not be used to +endorse or promote products derived from this software without +prior written permission. + +5. Redistributions of any form whatsoever must retain the following +acknowledgment: +"This product includes software developed by the Apache Group +for use in the Apache HTTP server project (http://www.apache.org/)." + +THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR +IT'S CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================== + +This software consists of voluntary contributions made by many +individuals on behalf of the Apache Group and was originally based +on public domain software written at the National Center for +Supercomputing Applications, University of Illinois, Urbana-Champaign. +For more information on the Apache Group and the Apache HTTP server +project, please see . Added: csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.depend =================================================================== --- csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.depend (rev 0) +++ csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.depend 2013-08-26 19:40:57 UTC (rev 21833) @@ -0,0 +1,2 @@ +P CSWapache2 +P CSWgeoip Added: csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.gspec =================================================================== --- csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.gspec (rev 0) +++ csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.gspec 2013-08-26 19:40:57 UTC (rev 21833) @@ -0,0 +1,7 @@ +%var bitname ap2_modgeoip +%var pkgname CSWap2modgeoip +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright + +Please see /opt/csw/share/doc/ap2_modgeoip/copyright for license information. + Added: csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.postinstall =================================================================== --- csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.postinstall (rev 0) +++ csw/mgar/pkg/mod_geoip/branches/old-gar-v1/files/CSWap2modgeoip.postinstall 2013-08-26 19:40:57 UTC (rev 21833) @@ -0,0 +1,25 @@ +#!/bin/sh + +CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw +AP2_PREFIX=$CSW_PREFIX/apache2 +AP2_BINDIR=$AP2_PREFIX/sbin +AP2_LIBEXEC=$AP2_PREFIX/libexec +AP2_CONFDIR=$AP2_PREFIX/etc +AP2_EXTRADIR=$AP2_CONFDIR/extra +AP2_CONFIG=$AP2_CONFDIR/httpd.conf + +# Enable module +PKG_INSTALL_ROOT=${PKG_INSTALL_ROOT:-'/'} +chroot $PKG_INSTALL_ROOT \ + $AP2_BINDIR/apxs -S LIBEXECDIR=$AP2_LIBEXEC -e -a -n \ + geoip mod_geoip.so + +# Finito +cat < Revision: 21834 http://gar.svn.sourceforge.net/gar/?rev=21834&view=rev Author: wilbury Date: 2013-08-26 20:02:56 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: build and install Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 19:40:57 UTC (rev 21833) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:02:56 UTC (rev 21834) @@ -13,7 +13,7 @@ MASTER_SITES = http://www.maxmind.com/download/geoip/api/mod_geoip2/ DISTFILES = mod_geoip2-latest.tar.gz -#WORKSRC = $(WORKDIR)/$(DISTNAME)-src/native +WORKSRC = $(WORKDIR)/mod_geoip2_$(VERSION) #PATCHDIR = $(WORKDIR)/$(DISTNAME)-src # Apache paths @@ -29,11 +29,24 @@ BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWapache2-dev RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 +PKGFILES_CSWap2modgeoip2 += $(AP2_ROOT)/libexec/mod_geoip2.so LICENSE_TEXT = Apache # No test suite available TEST_SCRIPTS = +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = custom +INSTALL_SCRIPTS = custom include gar/category.mk +build-custom: + $(AP2_APXS) -c $(WORKSRC)/mod_geoip.c + @$(MAKECOOKIE) + +install-custom: + @ginstall -d -m 755 $(DESTDIR)$(AP2_ROOT)/libexec + @ginstall -m 755 $(WORKSRC)/mod_geoip.o $(DESTDIR)$(AP2_ROOT)/libexec/mod_geoip2.so + @$(MAKECOOKIE) + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 22:05:36 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 20:05:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[21835] csw/mgar/pkg/mod_geoip/trunk/files/ Message-ID: Revision: 21835 http://gar.svn.sourceforge.net/gar/?rev=21835&view=rev Author: wilbury Date: 2013-08-26 20:05:36 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Remove stale entries. Removed Paths: ------------- csw/mgar/pkg/mod_geoip/trunk/files/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 22:08:52 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 20:08:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[21836] csw/mgar/pkg/mod_geoip/trunk/Makefile Message-ID: Revision: 21836 http://gar.svn.sourceforge.net/gar/?rev=21836&view=rev Author: wilbury Date: 2013-08-26 20:08:52 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Depend on GeoLiteDB Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:05:36 UTC (rev 21835) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:08:52 UTC (rev 21836) @@ -29,6 +29,7 @@ BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWapache2-dev RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 +RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWgeolitedb PKGFILES_CSWap2modgeoip2 += $(AP2_ROOT)/libexec/mod_geoip2.so LICENSE_TEXT = Apache This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 22:10:28 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 20:10:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[21837] csw/mgar/pkg/mod_geoip/trunk/Makefile Message-ID: Revision: 21837 http://gar.svn.sourceforge.net/gar/?rev=21837&view=rev Author: wilbury Date: 2013-08-26 20:10:28 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Depend on GeoLiteDB Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:08:52 UTC (rev 21836) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:10:28 UTC (rev 21837) @@ -32,6 +32,9 @@ RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWgeolitedb PKGFILES_CSWap2modgeoip2 += $(AP2_ROOT)/libexec/mod_geoip2.so +# This dependency should be in place. +CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWgeolitedb + LICENSE_TEXT = Apache # No test suite available This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 22:34:42 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 20:34:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[21838] csw/mgar/pkg/mod_geoip/trunk/Makefile Message-ID: Revision: 21838 http://gar.svn.sourceforge.net/gar/?rev=21838&view=rev Author: wilbury Date: 2013-08-26 20:34:42 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Add LIBDIR Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:10:28 UTC (rev 21837) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:34:42 UTC (rev 21838) @@ -28,8 +28,10 @@ CONFIGURE_ARGS += --with-apxs=$(AP2_ROOT)/sbin/apxs BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWapache2-dev +BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWgeoip-dev RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWgeolitedb +RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWlibgeoip1 PKGFILES_CSWap2modgeoip2 += $(AP2_ROOT)/libexec/mod_geoip2.so # This dependency should be in place. @@ -46,7 +48,7 @@ include gar/category.mk build-custom: - $(AP2_APXS) -c $(WORKSRC)/mod_geoip.c + $(AP2_APXS) -L$(prefix)/lib -lGeoIP -c $(WORKSRC)/mod_geoip.c @$(MAKECOOKIE) install-custom: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 22:37:37 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 20:37:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[21839] csw/mgar/pkg/mod_geoip/trunk/Makefile Message-ID: Revision: 21839 http://gar.svn.sourceforge.net/gar/?rev=21839&view=rev Author: wilbury Date: 2013-08-26 20:37:37 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Add overrides. Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:34:42 UTC (rev 21838) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:37:37 UTC (rev 21839) @@ -36,6 +36,7 @@ # This dependency should be in place. CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWgeolitedb +CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWlibgeoip1 LICENSE_TEXT = Apache This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 22:40:47 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 20:40:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[21840] csw/mgar/pkg/mod_geoip/trunk/Makefile Message-ID: Revision: 21840 http://gar.svn.sourceforge.net/gar/?rev=21840&view=rev Author: wilbury Date: 2013-08-26 20:40:46 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Overrides change. Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:37:37 UTC (rev 21839) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:40:46 UTC (rev 21840) @@ -30,13 +30,13 @@ BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWapache2-dev BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWgeoip-dev RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 -RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWgeolitedb -RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWlibgeoip1 +#RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWgeolitedb +#RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWlibgeoip1 PKGFILES_CSWap2modgeoip2 += $(AP2_ROOT)/libexec/mod_geoip2.so # This dependency should be in place. -CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWgeolitedb -CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWlibgeoip1 +#CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWgeolitedb +#CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWlibgeoip1 LICENSE_TEXT = Apache This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 23:11:36 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 21:11:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[21841] csw/mgar/pkg/mod_geoip/trunk/Makefile Message-ID: Revision: 21841 http://gar.svn.sourceforge.net/gar/?rev=21841&view=rev Author: wilbury Date: 2013-08-26 21:11:36 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Try without explicit dependencies. Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 20:40:46 UTC (rev 21840) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 21:11:36 UTC (rev 21841) @@ -29,10 +29,10 @@ BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWapache2-dev BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWgeoip-dev -RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 +#RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 #RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWgeolitedb #RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWlibgeoip1 -PKGFILES_CSWap2modgeoip2 += $(AP2_ROOT)/libexec/mod_geoip2.so +PKGFILES_CSWap2modgeoip2 += $(AP2_LIBEXEC)/mod_geoip2.so # This dependency should be in place. #CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWgeolitedb @@ -49,11 +49,10 @@ include gar/category.mk build-custom: - $(AP2_APXS) -L$(prefix)/lib -lGeoIP -c $(WORKSRC)/mod_geoip.c + @ginstall -d -m 755 $(AP2_LIBEXEC) + @$(AP2_APXS) -L$(prefix)/lib -lGeoIP -S LIBEXECDIR=$(AP2_LIBEXEC)/ -i -c $(WORKSRC)/mod_geoip.c @$(MAKECOOKIE) install-custom: - @ginstall -d -m 755 $(DESTDIR)$(AP2_ROOT)/libexec - @ginstall -m 755 $(WORKSRC)/mod_geoip.o $(DESTDIR)$(AP2_ROOT)/libexec/mod_geoip2.so @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Mon Aug 26 23:16:57 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 21:16:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[21842] csw/mgar/pkg/mod_geoip/trunk/Makefile Message-ID: Revision: 21842 http://gar.svn.sourceforge.net/gar/?rev=21842&view=rev Author: wilbury Date: 2013-08-26 21:16:56 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Try without explicit dependencies. Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 21:11:36 UTC (rev 21841) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 21:16:56 UTC (rev 21842) @@ -32,7 +32,7 @@ #RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 #RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWgeolitedb #RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWlibgeoip1 -PKGFILES_CSWap2modgeoip2 += $(AP2_LIBEXEC)/mod_geoip2.so +PKGFILES_CSWap2modgeoip2 += $(AP2_LIBEXEC)/mod_geoip.so # This dependency should be in place. #CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWgeolitedb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Tue Aug 27 00:06:22 2013 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Mon, 26 Aug 2013 22:06:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[21843] csw/mgar/pkg/mod_geoip/trunk/Makefile Message-ID: Revision: 21843 http://gar.svn.sourceforge.net/gar/?rev=21843&view=rev Author: wilbury Date: 2013-08-26 22:06:22 +0000 (Mon, 26 Aug 2013) Log Message: ----------- mod_geoip/trunk: Adjust build environment Modified Paths: -------------- csw/mgar/pkg/mod_geoip/trunk/Makefile Modified: csw/mgar/pkg/mod_geoip/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 21:16:56 UTC (rev 21842) +++ csw/mgar/pkg/mod_geoip/trunk/Makefile 2013-08-26 22:06:22 UTC (rev 21843) @@ -29,14 +29,14 @@ BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWapache2-dev BUILD_DEP_PKGS_CSWap2modgeoip2 += CSWgeoip-dev -#RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 -#RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWgeolitedb -#RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWlibgeoip1 -PKGFILES_CSWap2modgeoip2 += $(AP2_LIBEXEC)/mod_geoip.so +RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWapache2 +RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWgeolitedb +RUNTIME_DEP_PKGS_CSWap2modgeoip2 += CSWlibgeoip1 +#PKGFILES_CSWap2modgeoip2 += $(AP2_LIBEXEC)/mod_geoip2.so # This dependency should be in place. -#CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWgeolitedb -#CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWlibgeoip1 +CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWgeolitedb +CHECKPKG_OVERRIDES_CSWap2modgeoip2 += surplus-dependency|CSWlibgeoip1 LICENSE_TEXT = Apache @@ -48,9 +48,13 @@ include gar/category.mk +post-extract: + @-gmv $(WORKSRC)/mod_geoip.c $(WORKSRC)/mod_geoip2.c + @$(MAKECOOKIE) + build-custom: @ginstall -d -m 755 $(AP2_LIBEXEC) - @$(AP2_APXS) -L$(prefix)/lib -lGeoIP -S LIBEXECDIR=$(AP2_LIBEXEC)/ -i -c $(WORKSRC)/mod_geoip.c + @$(BUILD_ENV) $(AP2_APXS) -L$(prefix)/lib -lGeoIP -S LIBEXECDIR=$(AP2_LIBEXEC)/ -i -c $(WORKSRC)/mod_geoip2.c @$(MAKECOOKIE) install-custom: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Aug 27 09:37:14 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 27 Aug 2013 07:37:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[21844] csw/mgar/pkg/lang-python/cssutils/trunk/Makefile Message-ID: Revision: 21844 http://gar.svn.sourceforge.net/gar/?rev=21844&view=rev Author: pfelecan Date: 2013-08-27 07:37:12 +0000 (Tue, 27 Aug 2013) Log Message: ----------- lang-python/cssutils/trunk: - adapted merge exclusion for dual support - removed dependency on python library as it doesn't supply binaries Modified Paths: -------------- csw/mgar/pkg/lang-python/cssutils/trunk/Makefile Modified: csw/mgar/pkg/lang-python/cssutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/cssutils/trunk/Makefile 2013-08-26 22:06:22 UTC (rev 21843) +++ csw/mgar/pkg/lang-python/cssutils/trunk/Makefile 2013-08-27 07:37:12 UTC (rev 21844) @@ -24,11 +24,8 @@ ARCHALL = 1 -RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 -RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/python.*/site-packages/tests.* -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/lib/python/site-packages/tests.* - include gar/category.mk test-non-stop: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Aug 27 10:20:12 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 27 Aug 2013 08:20:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[21845] csw/mgar/pkg/lang-python/pylxml/trunk/Makefile Message-ID: Revision: 21845 http://gar.svn.sourceforge.net/gar/?rev=21845&view=rev Author: pfelecan Date: 2013-08-27 08:20:11 +0000 (Tue, 27 Aug 2013) Log Message: ----------- lang-python/pylxml/trunk: addition of missing run-time dependency on GCC run time. Modified Paths: -------------- csw/mgar/pkg/lang-python/pylxml/trunk/Makefile Modified: csw/mgar/pkg/lang-python/pylxml/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pylxml/trunk/Makefile 2013-08-27 07:37:12 UTC (rev 21844) +++ csw/mgar/pkg/lang-python/pylxml/trunk/Makefile 2013-08-27 08:20:11 UTC (rev 21845) @@ -29,6 +29,7 @@ PACKAGES = CSWpy-lxml SPKG_DESC_CSWpy-lxml = Easy to use and powerful libxml2/libxslt binding for Python +RUNTIME_DEP_PKGS_CSWpy-lxml += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWpy-lxml += CSWlibxslt1 RUNTIME_DEP_PKGS_CSWpy-lxml += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWpy-lxml += CSWlibpython2-7-1-0 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 Aug 27 10:28:51 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 27 Aug 2013 08:28:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[21846] csw/mgar/pkg/libgpg_error/trunk Message-ID: Revision: 21846 http://gar.svn.sourceforge.net/gar/?rev=21846&view=rev Author: lblume Date: 2013-08-27 08:28:44 +0000 (Tue, 27 Aug 2013) Log Message: ----------- libgpg_error/trunk: Bump version to 1.12 Modified Paths: -------------- csw/mgar/pkg/libgpg_error/trunk/Makefile csw/mgar/pkg/libgpg_error/trunk/checksums Modified: csw/mgar/pkg/libgpg_error/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgpg_error/trunk/Makefile 2013-08-27 08:20:11 UTC (rev 21845) +++ csw/mgar/pkg/libgpg_error/trunk/Makefile 2013-08-27 08:28:44 UTC (rev 21846) @@ -1,5 +1,5 @@ NAME = libgpg-error -VERSION = 1.10 +VERSION = 1.12 GARTYPE = v2 DESCRIPTION = GNU gpg related library Modified: csw/mgar/pkg/libgpg_error/trunk/checksums =================================================================== --- csw/mgar/pkg/libgpg_error/trunk/checksums 2013-08-27 08:20:11 UTC (rev 21845) +++ csw/mgar/pkg/libgpg_error/trunk/checksums 2013-08-27 08:28:44 UTC (rev 21846) @@ -1 +1 @@ -736a03daa9dc5873047d4eb4a9c22a16 libgpg-error-1.10.tar.bz2 +8f0eb41a344d19ac2aa9bd101dfb9ce6 libgpg-error-1.12.tar.bz2 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 Aug 27 10:33:03 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 27 Aug 2013 08:33:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[21847] csw/mgar/pkg/libassuan/trunk Message-ID: Revision: 21847 http://gar.svn.sourceforge.net/gar/?rev=21847&view=rev Author: lblume Date: 2013-08-27 08:33:02 +0000 (Tue, 27 Aug 2013) Log Message: ----------- libassuan/trunk: Bump version to 2.1.1 Modified Paths: -------------- csw/mgar/pkg/libassuan/trunk/Makefile csw/mgar/pkg/libassuan/trunk/checksums Modified: csw/mgar/pkg/libassuan/trunk/Makefile =================================================================== --- csw/mgar/pkg/libassuan/trunk/Makefile 2013-08-27 08:28:44 UTC (rev 21846) +++ csw/mgar/pkg/libassuan/trunk/Makefile 2013-08-27 08:33:02 UTC (rev 21847) @@ -1,5 +1,5 @@ NAME = libassuan -VERSION = 2.1.0 +VERSION = 2.1.1 GARTYPE = v2 DESCRIPTION = IPC library used by some GnuPG related software Modified: csw/mgar/pkg/libassuan/trunk/checksums =================================================================== --- csw/mgar/pkg/libassuan/trunk/checksums 2013-08-27 08:28:44 UTC (rev 21846) +++ csw/mgar/pkg/libassuan/trunk/checksums 2013-08-27 08:33:02 UTC (rev 21847) @@ -1 +1 @@ -b3231eec8e567f4f9294474a387378f5 libassuan-2.1.0.tar.bz2 +757243cc4a71b30ed8d8dbe784035d36 libassuan-2.1.1.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Aug 27 10:45:17 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 27 Aug 2013 08:45:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[21848] csw/mgar/pkg/lang-python/pil/trunk/Makefile Message-ID: Revision: 21848 http://gar.svn.sourceforge.net/gar/?rev=21848&view=rev Author: pfelecan Date: 2013-08-27 08:45:17 +0000 (Tue, 27 Aug 2013) Log Message: ----------- lang-python/pil/trunk: addition of missing run-time dependencies Modified Paths: -------------- csw/mgar/pkg/lang-python/pil/trunk/Makefile Modified: csw/mgar/pkg/lang-python/pil/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pil/trunk/Makefile 2013-08-27 08:33:02 UTC (rev 21847) +++ csw/mgar/pkg/lang-python/pil/trunk/Makefile 2013-08-27 08:45:17 UTC (rev 21848) @@ -23,15 +23,18 @@ PACKAGES = CSWpy-pil SPKG_DESC_CSWpy-pil = Python Imaging Library +RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibgcc-s1 + RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibfreetype6 RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibjpeg7 RUNTIME_DEP_PKGS_CSWpy-pil += CSWliblcms1 RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibpython2-7-1-0 RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibz1 +RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibtcl8-5 RUNTIME_DEP_PKGS_CSWpy-pil += CSWtcl +RUNTIME_DEP_PKGS_CSWpy-pil += CSWlibtk8-5 RUNTIME_DEP_PKGS_CSWpy-pil += CSWtk - CHECKPKG_OVERRIDES_CSWpy-pil += surplus-dependency|CSWtcl CHECKPKG_OVERRIDES_CSWpy-pil += surplus-dependency|CSWtk 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 Aug 27 10:55:40 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 27 Aug 2013 08:55:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[21849] csw/mgar/pkg/libgcrypt/trunk Message-ID: Revision: 21849 http://gar.svn.sourceforge.net/gar/?rev=21849&view=rev Author: lblume Date: 2013-08-27 08:55:40 +0000 (Tue, 27 Aug 2013) Log Message: ----------- libgcrypt/trunk: Bump version to 1.5.3 Modified Paths: -------------- csw/mgar/pkg/libgcrypt/trunk/Makefile csw/mgar/pkg/libgcrypt/trunk/checksums Modified: csw/mgar/pkg/libgcrypt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/Makefile 2013-08-27 08:45:17 UTC (rev 21848) +++ csw/mgar/pkg/libgcrypt/trunk/Makefile 2013-08-27 08:55:40 UTC (rev 21849) @@ -1,5 +1,5 @@ NAME = libgcrypt -VERSION = 1.5.2 +VERSION = 1.5.3 GARTYPE = v2 DESCRIPTION = GNU libgcrypt Modified: csw/mgar/pkg/libgcrypt/trunk/checksums =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/checksums 2013-08-27 08:45:17 UTC (rev 21848) +++ csw/mgar/pkg/libgcrypt/trunk/checksums 2013-08-27 08:55:40 UTC (rev 21849) @@ -1 +1 @@ -668aa1a1aae93f5fccb7eda4be403026 libgcrypt-1.5.2.tar.bz2 +993159b2924ae7b0e4eaff0743c2db35 libgcrypt-1.5.3.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Aug 27 11:15:40 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 27 Aug 2013 09:15:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[21850] csw/mgar/pkg/lang-python/sip/trunk/Makefile Message-ID: Revision: 21850 http://gar.svn.sourceforge.net/gar/?rev=21850&view=rev Author: pfelecan Date: 2013-08-27 09:15:34 +0000 (Tue, 27 Aug 2013) Log Message: ----------- lang-python/pil/trunk: removal of python library run-time dependence Modified Paths: -------------- csw/mgar/pkg/lang-python/sip/trunk/Makefile Modified: csw/mgar/pkg/lang-python/sip/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/sip/trunk/Makefile 2013-08-27 08:55:40 UTC (rev 21849) +++ csw/mgar/pkg/lang-python/sip/trunk/Makefile 2013-08-27 09:15:34 UTC (rev 21850) @@ -34,8 +34,6 @@ INSTALL_SCRIPTS = custom -RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 -RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 RUNTIME_DEP_PKGS += CSWlibgcc-s1 include gar/category.mk 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 Aug 27 11:32:28 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 27 Aug 2013 09:32:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[21851] csw/mgar/pkg/gpgme/trunk Message-ID: Revision: 21851 http://gar.svn.sourceforge.net/gar/?rev=21851&view=rev Author: lblume Date: 2013-08-27 09:32:27 +0000 (Tue, 27 Aug 2013) Log Message: ----------- gpgme/trunk: Bump to 1.4.3; cleanup the recipe Modified Paths: -------------- csw/mgar/pkg/gpgme/trunk/Makefile csw/mgar/pkg/gpgme/trunk/checksums Added Paths: ----------- csw/mgar/pkg/gpgme/trunk/files/0001_need_posix_shell.patch Modified: csw/mgar/pkg/gpgme/trunk/Makefile =================================================================== --- csw/mgar/pkg/gpgme/trunk/Makefile 2013-08-27 09:15:34 UTC (rev 21850) +++ csw/mgar/pkg/gpgme/trunk/Makefile 2013-08-27 09:32:27 UTC (rev 21851) @@ -1,5 +1,5 @@ NAME = gpgme -VERSION = 1.1.8 +VERSION = 1.4.3 GARTYPE = v2 DESCRIPTION = GPGME - GnuPG Made Easy @@ -13,17 +13,27 @@ MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/gpgme/ DISTFILES = $(NAME)-$(VERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWgpgme,) SPKG_SOURCEURL = http://www.gnupg.org/related_software/libraries.en.html#lib-GPGME -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = -(\d+(?:\.\d+)*).tar.bz2 +GARCOMPILER = GCC4 +PATCHFILES += 0001_need_posix_shell.patch + +BUILD_DEP_PKGS += CSWlibgpg-error-dev +BUILD_DEP_PKGS += CSWlibpth-dev +BUILD_DEP_PKGS += CSWgnupg2 + RUNTIME_DEP_PKGS = CSWgpgerr CSWpth BUILD64_LIBS_ONLY = 1 CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-gpg-version=2 +CONFIGURE_ARGS += --with-gpgsm-version=2 +CONFIGURE_ARGS += --with-gpgconf-version=2 +CONFIGURE_ARGS += --with-gpgconf=$(prefix)/bin +CONFIGURE_ARGS += --with-gpg=$(prefix)/bin +CONFIGURE_ARGS += --with-gpgsm=$(prefix)/bin include gar/category.mk Modified: csw/mgar/pkg/gpgme/trunk/checksums =================================================================== --- csw/mgar/pkg/gpgme/trunk/checksums 2013-08-27 09:15:34 UTC (rev 21850) +++ csw/mgar/pkg/gpgme/trunk/checksums 2013-08-27 09:32:27 UTC (rev 21851) @@ -1,2 +1 @@ -39bd929d5f3dc6d3d91cf465ec91b4af download/gpgme-1.1.8.tar.bz2 -26a005ef4b0f216b9cf6ff0b4237d523 download/CSWgpgme.gspec +334e524cffa8af4e2f43ae8afe585672 gpgme-1.4.3.tar.bz2 Added: csw/mgar/pkg/gpgme/trunk/files/0001_need_posix_shell.patch =================================================================== --- csw/mgar/pkg/gpgme/trunk/files/0001_need_posix_shell.patch (rev 0) +++ csw/mgar/pkg/gpgme/trunk/files/0001_need_posix_shell.patch 2013-08-27 09:32:27 UTC (rev 21851) @@ -0,0 +1,8 @@ +--- a/tests/gpg/start-stop-agent lun. ao?t 12 11:29:38 2013 ++++ b/tests/gpg/start-stop-agent mar. ao?t 27 11:15:20 2013 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/bin/ksh + # Copyright (C) 2013 g10 Code GmbH + # + # This file is free software; as a special exception the author gives This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Aug 27 12:24:29 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 27 Aug 2013 10:24:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[21852] csw/mgar/pkg/lang-python/virtualenv/trunk/Makefile Message-ID: Revision: 21852 http://gar.svn.sourceforge.net/gar/?rev=21852&view=rev Author: pfelecan Date: 2013-08-27 10:24:27 +0000 (Tue, 27 Aug 2013) Log Message: ----------- lang-python/virtual env/trunk: bump to latest version upstream Modified Paths: -------------- csw/mgar/pkg/lang-python/virtualenv/trunk/Makefile Modified: csw/mgar/pkg/lang-python/virtualenv/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/virtualenv/trunk/Makefile 2013-08-27 09:32:27 UTC (rev 21851) +++ csw/mgar/pkg/lang-python/virtualenv/trunk/Makefile 2013-08-27 10:24:27 UTC (rev 21852) @@ -3,7 +3,7 @@ # $Id$ NAME = virtualenv -VERSION = 1.8.2 +VERSION = 1.10.1 PACKAGES = CSWpy-virtualenv CATALOGNAME_CSWpy-virtualenv = py_virtualenv CATEGORIES = python @@ -11,6 +11,7 @@ SPKG_DESC_CSWpy-virtualenv = Virtual Python Environment builder ARCHALL_CSWpy-virtualenv = 1 define BLURB +A tool to create isolated Python environments. endef SPKG_SOURCEURL = http://pypi.python.org/pypi/virtualenv MASTER_SITES = http://pypi.python.org/packages/source/v/virtualenv/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Aug 27 12:41:56 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 27 Aug 2013 10:41:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[21853] csw/mgar/pkg/lang-python/virtualenv/trunk/checksums Message-ID: Revision: 21853 http://gar.svn.sourceforge.net/gar/?rev=21853&view=rev Author: pfelecan Date: 2013-08-27 10:41:56 +0000 (Tue, 27 Aug 2013) Log Message: ----------- lang-python/virtual env/trunk: the corresponding checksum for the archive of latest version upstream Modified Paths: -------------- csw/mgar/pkg/lang-python/virtualenv/trunk/checksums Modified: csw/mgar/pkg/lang-python/virtualenv/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/virtualenv/trunk/checksums 2013-08-27 10:24:27 UTC (rev 21852) +++ csw/mgar/pkg/lang-python/virtualenv/trunk/checksums 2013-08-27 10:41:56 UTC (rev 21853) @@ -1 +1 @@ -174ca075c6b1a42c685415692ec4ce2e virtualenv-1.8.2.tar.gz +3a04aa2b32c76c83725ed4d9918e362e virtualenv-1.10.1.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 Tue Aug 27 12:57:14 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Tue, 27 Aug 2013 10:57:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[21854] csw/mgar/pkg/gstplugins_good/trunk/Makefile Message-ID: Revision: 21854 http://gar.svn.sourceforge.net/gar/?rev=21854&view=rev Author: cgrzemba Date: 2013-08-27 10:57:13 +0000 (Tue, 27 Aug 2013) Log Message: ----------- gstplugins_good/trunk: remove dependency CSWx11 Modified Paths: -------------- csw/mgar/pkg/gstplugins_good/trunk/Makefile Modified: csw/mgar/pkg/gstplugins_good/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstplugins_good/trunk/Makefile 2013-08-27 10:41:56 UTC (rev 21853) +++ csw/mgar/pkg/gstplugins_good/trunk/Makefile 2013-08-27 10:57:13 UTC (rev 21854) @@ -1,7 +1,6 @@ NAME = gst-plugins-good VERSION = 0.10.28 CATEGORIES = gnome -GARTYPE = v2 DESCRIPTION = GStreamer plugins (Good) define BLURB @@ -14,20 +13,40 @@ MASTER_SITES = http://gstreamer.freedesktop.org/src/gst-plugins-good/ DISTFILES = $(NAME)-$(VERSION).tar.gz -PACKAGES = CSWgstplugins-good -CATALOGNAME = gstplugins_good # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz GARCOMPILER = GCC4 -PACKAGING_PLATFORMS += Solaris10-sparc Solaris10-i386 +PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 -BUILD_DEP_PKGS += CSWgstreamer-dev CSWgstplugins-dev CSWlibflac-dev CSWesound -BUILD_DEP_PKGS += CSWlibsmdevel CSWlibesd-dev CSWtaglib-devel CSWlibcairo-dev -BUILD_DEP_PKGS += CSWlibaudiofile-dev CSWlibjpeg-dev +# DEP_PKGS += CSWzlib CSWspeex CSWpng CSWlibice CSWlibx11 CSWgtk2 CSWvorbis +# DEP_PKGS += CSWlibxml2 CSWliboil CSWlibcairo CSWjpeg CSWglib2 CSWgconf2 +# DEP_PKGS += CSWgstreamer CSWgstplugins CSWflac CSWesound CSWbzip2 CSWlibsm +# DEP_PKGS += CSWggettextrt CSWlibogg CSWlibshout CSWtheora CSWlibxext +BUILD_DEP_PKGS += CSWlibpng-dev +BUILD_DEP_PKGS += CSWlibgtk2-dev +BUILD_DEP_PKGS += CSWlibvorbis-dev +BUILD_DEP_PKGS += CSWlibxml2-dev +BUILD_DEP_PKGS += CSWliboildevel +BUILD_DEP_PKGS += CSWlibcairo-dev +BUILD_DEP_PKGS += CSWlibjpeg-dev +BUILD_DEP_PKGS += CSWlibglib2-dev +BUILD_DEP_PKGS += CSWlibgconf-dev +BUILD_DEP_PKGS += CSWggettext +BUILD_DEP_PKGS += CSWlibogg-dev +# BUILD_DEP_PKGS += CSWlibshout-dev +BUILD_DEP_PKGS += CSWlibtheora-dev +BUILD_DEP_PKGS += CSWgstreamer-dev +BUILD_DEP_PKGS += CSWgstplugins-dev +BUILD_DEP_PKGS += CSWlibflac-dev +BUILD_DEP_PKGS += CSWesound +BUILD_DEP_PKGS += CSWlibesd-dev +# BUILD_DEP_PKGS += CSWtaglib-devel +BUILD_DEP_PKGS += CSWlibaudiofile-dev -PACKAGES = CSWgstplugins-good +PACKAGES += CSWgstplugins-good +CATALOGNAME = gstplugins_good RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgstsdp0-10-0 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgstriff0-10-0 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgstinterfaces0-10-0 @@ -63,13 +82,11 @@ CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --disable-debug -CONFIGURE_ARGS += --x-includes=$(prefix)/X11/include -CONFIGURE_ARGS += --x-libraries=$(prefix)/X11/lib/$(MM_LIBDIR) -CONFIGURE_ARGS += --disable-silent-rules +# CONFIGURE_ARGS += --x-includes=$(prefix)/X11/include +# CONFIGURE_ARGS += --x-libraries=$(prefix)/X11/lib/$(MM_LIBDIR) -EXTRA_SOS_LD_FLAGS = -L$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) -EXTRA_SOS_LD_OPTIONS = -R$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) -EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig +# EXTRA_SOS_LD_FLAGS = -L$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) +# EXTRA_SOS_LD_OPTIONS = -R$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) STRIP_LIBTOOL = 1 @@ -77,11 +94,7 @@ # PATCHFILES = patch-matroska-demux.c -# EXTRA_CFLAGS = -UHAVE_GCC_ASM -BUILD_ARGS = CCAS=gcc - include gar/category.mk - # post-configure-modulated: # @# we do not have a hyperbolic tangent float function on solaris8, # @# using hyperbolic tangent double instead @@ -101,5 +114,4 @@ # $(WORKSRC)/tests/examples/spectrum/Makefile # gsed -i 's/\(spectrum_example_LDFLAGS =\)/\1 $$(X_LIBS)/' \ # $(WORKSRC)/tests/examples/spectrum/Makefile - -PATH := $(PATH):/opt/csw/gcc4/bin/ + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Aug 27 13:01:26 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 27 Aug 2013 11:01:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[21855] csw/mgar/pkg/lang-python/dnspython/trunk/Makefile Message-ID: Revision: 21855 http://gar.svn.sourceforge.net/gar/?rev=21855&view=rev Author: pfelecan Date: 2013-08-27 11:01:25 +0000 (Tue, 27 Aug 2013) Log Message: ----------- lang-python/dnspython: adjusted build dependency and declare its architecture neutrality Modified Paths: -------------- csw/mgar/pkg/lang-python/dnspython/trunk/Makefile Modified: csw/mgar/pkg/lang-python/dnspython/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/dnspython/trunk/Makefile 2013-08-27 10:57:13 UTC (rev 21854) +++ csw/mgar/pkg/lang-python/dnspython/trunk/Makefile 2013-08-27 11:01:25 UTC (rev 21855) @@ -21,10 +21,12 @@ DISTFILES = $(DISTNAME).tar.gz PATCHFILES += 0001-consistent-use-of-tabs-and-spaces-in-indentation.patch SPKG_SOURCEURL = $(MASTER_SITES) -BUILD_DEP_PKGS = CSWpysetuptools +BUILD_DEP_PKGS = CSWpy-setuptools TEST_SCRIPTS = nominal +ARCHALL = 1 + include gar/category.mk test-nominal: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Aug 27 13:13:35 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 27 Aug 2013 11:13:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[21856] csw/mgar/pkg/lang-python/netifaces/trunk/Makefile Message-ID: Revision: 21856 http://gar.svn.sourceforge.net/gar/?rev=21856&view=rev Author: pfelecan Date: 2013-08-27 11:13:34 +0000 (Tue, 27 Aug 2013) Log Message: ----------- lang-python/dnspython: adjusted build and run-time dependency Modified Paths: -------------- csw/mgar/pkg/lang-python/netifaces/trunk/Makefile Modified: csw/mgar/pkg/lang-python/netifaces/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/netifaces/trunk/Makefile 2013-08-27 11:01:25 UTC (rev 21855) +++ csw/mgar/pkg/lang-python/netifaces/trunk/Makefile 2013-08-27 11:13:34 UTC (rev 21856) @@ -15,12 +15,12 @@ MASTER_SITES = http://alastairs-place.net/projects/netifaces/ DISTFILES = $(DISTNAME).tar.gz -BUILD_DEP_PKGS = CSWpysetuptools +BUILD_DEP_PKGS = CSWpy-setuptools CONFIGURE_ARGS = $(DIRPATHS) RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 -CHECKPKG_OVERRIDES_CSWpy-netifaces += surplus-dependency|CSWpython +RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Aug 27 13:43:57 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 27 Aug 2013 11:43:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[21857] csw/mgar/pkg/lang-python/netifaces/trunk/Makefile Message-ID: Revision: 21857 http://gar.svn.sourceforge.net/gar/?rev=21857&view=rev Author: pfelecan Date: 2013-08-27 11:43:57 +0000 (Tue, 27 Aug 2013) Log Message: ----------- lang-python/dnspython: adition of a run-time dependency Modified Paths: -------------- csw/mgar/pkg/lang-python/netifaces/trunk/Makefile Modified: csw/mgar/pkg/lang-python/netifaces/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/netifaces/trunk/Makefile 2013-08-27 11:13:34 UTC (rev 21856) +++ csw/mgar/pkg/lang-python/netifaces/trunk/Makefile 2013-08-27 11:43:57 UTC (rev 21857) @@ -19,6 +19,7 @@ CONFIGURE_ARGS = $(DIRPATHS) +RUNTIME_DEP_PKGS += CSWlibgcc-s1 RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS += CSWlibpython2-7-1-0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Tue Aug 27 14:14:48 2013 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Tue, 27 Aug 2013 12:14:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[21858] csw/mgar/pkg/gstplugins_good/trunk/Makefile Message-ID: Revision: 21858 http://gar.svn.sourceforge.net/gar/?rev=21858&view=rev Author: cgrzemba Date: 2013-08-27 12:14:47 +0000 (Tue, 27 Aug 2013) Log Message: ----------- gstplugins_good/trunk: update dependencies Modified Paths: -------------- csw/mgar/pkg/gstplugins_good/trunk/Makefile Modified: csw/mgar/pkg/gstplugins_good/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstplugins_good/trunk/Makefile 2013-08-27 11:43:57 UTC (rev 21857) +++ csw/mgar/pkg/gstplugins_good/trunk/Makefile 2013-08-27 12:14:47 UTC (rev 21858) @@ -20,10 +20,6 @@ GARCOMPILER = GCC4 PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 -# DEP_PKGS += CSWzlib CSWspeex CSWpng CSWlibice CSWlibx11 CSWgtk2 CSWvorbis -# DEP_PKGS += CSWlibxml2 CSWliboil CSWlibcairo CSWjpeg CSWglib2 CSWgconf2 -# DEP_PKGS += CSWgstreamer CSWgstplugins CSWflac CSWesound CSWbzip2 CSWlibsm -# DEP_PKGS += CSWggettextrt CSWlibogg CSWlibshout CSWtheora CSWlibxext BUILD_DEP_PKGS += CSWlibpng-dev BUILD_DEP_PKGS += CSWlibgtk2-dev BUILD_DEP_PKGS += CSWlibvorbis-dev @@ -44,6 +40,9 @@ BUILD_DEP_PKGS += CSWlibesd-dev # BUILD_DEP_PKGS += CSWtaglib-devel BUILD_DEP_PKGS += CSWlibaudiofile-dev +BUILD_DEP_PKGS += CSWlibbz2-dev +BUILD_DEP_PKGS += CSWlibwavpack-dev +BUILD_DEP_PKGS += CSWlibaa-dev PACKAGES += CSWgstplugins-good CATALOGNAME = gstplugins_good @@ -55,11 +54,9 @@ RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibspeex1 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgstnetbuffer0-10-0 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibjpeg7 -RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibx11 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibpng15-15 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibintl8 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibcairo2 -RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibsoup-gnome2-4-1 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgsttag0-10-0 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgstrtsp0-10-0 @@ -74,11 +71,12 @@ RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgstaudio0-10-0 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibesd0 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgstbase0-10-0 -RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibxext RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibflac8 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgstcontroller0-10-0 RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibsoup2-4-1 +RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibbz2-1-0 +RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibwavpack1 +RUNTIME_DEP_PKGS_CSWgstplugins-good += CSWlibaa1 CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --disable-debug 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 Aug 27 15:41:17 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 27 Aug 2013 13:41:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[21859] csw/mgar/pkg/pth/trunk Message-ID: Revision: 21859 http://gar.svn.sourceforge.net/gar/?rev=21859&view=rev Author: lblume Date: 2013-08-27 13:41:16 +0000 (Tue, 27 Aug 2013) Log Message: ----------- pth/trunk: Modify pth.h so it can handle FD_SETSIZE for either 32 or 64 bit Modified Paths: -------------- csw/mgar/pkg/pth/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/pth/trunk/files/0001_patch_pth_fdsetsize64.diff csw/mgar/pkg/pth/trunk/files/0002_FD_SETSIZE_depends_on_arch.patch Removed Paths: ------------- csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff Modified: csw/mgar/pkg/pth/trunk/Makefile =================================================================== --- csw/mgar/pkg/pth/trunk/Makefile 2013-08-27 12:14:47 UTC (rev 21858) +++ csw/mgar/pkg/pth/trunk/Makefile 2013-08-27 13:41:16 UTC (rev 21859) @@ -13,8 +13,11 @@ DISTFILES = $(DISTNAME).tar.gz # Patch PTH.H to increase FD_SETSIZE for 64bit builds -PATCHFILES = patch_pth_fdsetsize64.diff +PATCHFILES += 0001_patch_pth_fdsetsize64.diff +# The max FD_SETSIZE test must depend on the architecture being built +PATCHFILES += 0002_FD_SETSIZE_depends_on_arch.patch + VENDOR_URL = http://www.gnu.org/software/pth/ PACKAGES += CSWlibpth20 @@ -29,6 +32,8 @@ BUILD64_LIBS_ONLY = 1 +CONFIGURE_ARGS = $(DIRPATHS) + # This is an example of 'configure' CHECKPKG_OVERRIDES_CSWlibpth-dev += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/pth.3 Copied: csw/mgar/pkg/pth/trunk/files/0001_patch_pth_fdsetsize64.diff (from rev 21828, csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff) =================================================================== --- csw/mgar/pkg/pth/trunk/files/0001_patch_pth_fdsetsize64.diff (rev 0) +++ csw/mgar/pkg/pth/trunk/files/0001_patch_pth_fdsetsize64.diff 2013-08-27 13:41:16 UTC (rev 21859) @@ -0,0 +1,39 @@ +--- pth-2.0.7/configure.o 2009-04-03 21:48:07.888815157 -0500 ++++ pth-2.0.7/configure 2009-04-03 21:50:45.969836100 -0500 +@@ -19603,7 +19603,7 @@ + echo $ECHO_N "checking for default value of FD_SETSIZE... $ECHO_C" >&6 + cross_compiling=no + if test "$cross_compiling" = yes; then +- ac_fdsetsize=1024 ++ ac_fdsetsize=65536 + + else + cat >conftest.$ac_ext <<_ACEOF +@@ -19652,7 +19652,7 @@ + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) +-ac_fdsetsize=1024 ++ac_fdsetsize=65536 + fi + rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi +@@ -19666,12 +19666,13 @@ + if test "${with_fdsetsize+set}" = set; then + withval="$with_fdsetsize" + +-case $withval in +- [1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]) PTH_FDSETSIZE=$withval ;; +- * ) { { echo "$as_me:$LINENO: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&5 ++ if test $withval -ge 10 -a test $withval -le 65536; then ++ PTH_FDSETSIZE=$withval ++ else ++ { { echo "$as_me:$LINENO: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&5 + echo "$as_me: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&2;} +- { (exit 1); exit 1; }; } ;; +-esac ++ { (exit 1); exit 1; }; } ++fi + CPPFLAGS="$CPPFLAGS -DFD_SETSIZE=$PTH_FDSETSIZE" + echo "$as_me:$LINENO: checking for overridden FD_SETSIZE value" >&5 + echo $ECHO_N "checking for overridden FD_SETSIZE value... $ECHO_C" >&6 Added: csw/mgar/pkg/pth/trunk/files/0002_FD_SETSIZE_depends_on_arch.patch =================================================================== --- csw/mgar/pkg/pth/trunk/files/0002_FD_SETSIZE_depends_on_arch.patch (rev 0) +++ csw/mgar/pkg/pth/trunk/files/0002_FD_SETSIZE_depends_on_arch.patch 2013-08-27 13:41:16 UTC (rev 21859) @@ -0,0 +1,17 @@ +--- a/pth.h.in ++++ b/pth.h.in +@@ -89,7 +89,13 @@ struct timespec; + + /* check if the user requests a bigger FD_SETSIZE than we can handle */ + #if defined(FD_SETSIZE) +-#if FD_SETSIZE > @PTH_FDSETSIZE@ ++#ifdef _LP64 ++#if FD_SETSIZE > 65536 ++#error "FD_SETSIZE is larger than what GNU Pth can handle." ++#endif ++#else /* ! _LP64 */ ++#if FD_SETSIZE > 1024 + #error "FD_SETSIZE is larger than what GNU Pth can handle." ++#endif + #endif + #endif Deleted: csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff =================================================================== --- csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff 2013-08-27 12:14:47 UTC (rev 21858) +++ csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff 2013-08-27 13:41:16 UTC (rev 21859) @@ -1,39 +0,0 @@ ---- pth-2.0.7/configure.o 2009-04-03 21:48:07.888815157 -0500 -+++ pth-2.0.7/configure 2009-04-03 21:50:45.969836100 -0500 -@@ -19603,7 +19603,7 @@ - echo $ECHO_N "checking for default value of FD_SETSIZE... $ECHO_C" >&6 - cross_compiling=no - if test "$cross_compiling" = yes; then -- ac_fdsetsize=1024 -+ ac_fdsetsize=65536 - - else - cat >conftest.$ac_ext <<_ACEOF -@@ -19652,7 +19652,7 @@ - sed 's/^/| /' conftest.$ac_ext >&5 - - ( exit $ac_status ) --ac_fdsetsize=1024 -+ac_fdsetsize=65536 - fi - rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext - fi -@@ -19666,12 +19666,13 @@ - if test "${with_fdsetsize+set}" = set; then - withval="$with_fdsetsize" - --case $withval in -- [1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]) PTH_FDSETSIZE=$withval ;; -- * ) { { echo "$as_me:$LINENO: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&5 -+ if test $withval -ge 10 -a test $withval -le 65536; then -+ PTH_FDSETSIZE=$withval -+ else -+ { { echo "$as_me:$LINENO: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&5 - echo "$as_me: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&2;} -- { (exit 1); exit 1; }; } ;; --esac -+ { (exit 1); exit 1; }; } -+fi - CPPFLAGS="$CPPFLAGS -DFD_SETSIZE=$PTH_FDSETSIZE" - echo "$as_me:$LINENO: checking for overridden FD_SETSIZE value" >&5 - echo $ECHO_N "checking for overridden FD_SETSIZE value... $ECHO_C" >&6 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 Aug 27 15:45:11 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Tue, 27 Aug 2013 13:45:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[21860] csw/mgar/pkg/pth/trunk/Makefile Message-ID: Revision: 21860 http://gar.svn.sourceforge.net/gar/?rev=21860&view=rev Author: lblume Date: 2013-08-27 13:45:10 +0000 (Tue, 27 Aug 2013) Log Message: ----------- pth/trunk: Remove unused override Modified Paths: -------------- csw/mgar/pkg/pth/trunk/Makefile Modified: csw/mgar/pkg/pth/trunk/Makefile =================================================================== --- csw/mgar/pkg/pth/trunk/Makefile 2013-08-27 13:41:16 UTC (rev 21859) +++ csw/mgar/pkg/pth/trunk/Makefile 2013-08-27 13:45:10 UTC (rev 21860) @@ -34,7 +34,4 @@ CONFIGURE_ARGS = $(DIRPATHS) -# This is an example of 'configure' -CHECKPKG_OVERRIDES_CSWlibpth-dev += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/pth.3 - include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Tue Aug 27 15:52:28 2013 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 27 Aug 2013 13:52:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[21861] csw/mgar/pkg/pkgutil/trunk Message-ID: Revision: 21861 http://gar.svn.sourceforge.net/gar/?rev=21861&view=rev Author: bonivart Date: 2013-08-27 13:52:27 +0000 (Tue, 27 Aug 2013) Log Message: ----------- pkgutil/trunk: update to 2.6.6b1 Modified Paths: -------------- csw/mgar/pkg/pkgutil/trunk/Makefile csw/mgar/pkg/pkgutil/trunk/checksums Modified: csw/mgar/pkg/pkgutil/trunk/Makefile =================================================================== --- csw/mgar/pkg/pkgutil/trunk/Makefile 2013-08-27 13:45:10 UTC (rev 21860) +++ csw/mgar/pkg/pkgutil/trunk/Makefile 2013-08-27 13:52:27 UTC (rev 21861) @@ -1,5 +1,5 @@ NAME = pkgutil -VERSION = 2.6.5 +VERSION = 2.6.6b1 GARTYPE = v2 DESCRIPTION = Installs Solaris packages easily @@ -72,9 +72,16 @@ CHECKPKG_OVERRIDES_CSWpkgutilplus += surplus-dependency|CSWpmstringapprox CHECKPKG_OVERRIDES_CSWpkgutilplus += surplus-dependency|CSWpkgutil -# This is slightly suspicious, may take a look later +# This is Dago's script CHECKPKG_OVERRIDES_CSWpkgutilplus += file-with-bad-content|/export/home|root/opt/csw/bin/cswcatalog +# There's actually a Python script in this package +CHECKPKG_OVERRIDES_CSWpkgutilplus += surplus-dependency|CSWpython + +# These are just included binaries used as last resort +CHECKPKG_OVERRIDES_CSWpkgutil += no-direct-binding|/opt/csw/libexec/pkgutil/wget-i386|is|not|directly|bound|to|soname|libmd5.so.1 +CHECKPKG_OVERRIDES_CSWpkgutil += no-direct-binding|/opt/csw/libexec/pkgutil/wget-sparc|is|not|directly|bound|to|soname|libmd5.so.1 + PKGFILES_CSWpkgutilplus = .*bldcat.* PKGFILES_CSWpkgutilplus += .*chkcat.* PKGFILES_CSWpkgutilplus += .*pkgutilplus.* Modified: csw/mgar/pkg/pkgutil/trunk/checksums =================================================================== --- csw/mgar/pkg/pkgutil/trunk/checksums 2013-08-27 13:45:10 UTC (rev 21860) +++ csw/mgar/pkg/pkgutil/trunk/checksums 2013-08-27 13:52:27 UTC (rev 21861) @@ -1 +1 @@ -eea02e6cff965815a86386693c8b3a79 pkgutil-2.6.5.zip +16e9c7aa0a39730753b0412aab93d044 pkgutil-2.6.6b1.zip This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From laurent at opencsw.org Tue Aug 27 16:48:54 2013 From: laurent at opencsw.org (Laurent Blume) Date: Tue, 27 Aug 2013 16:48:54 +0200 Subject: [csw-devel] SF.net SVN: gar:[21859] csw/mgar/pkg/pth/trunk In-Reply-To: References: Message-ID: <521CBC56.6030401@opencsw.org> You guys are welcome to have a look at this fix. Basically, I add 0002_FD_SETSIZE_depends_on_arch.patch, which makes a different check in pth.h depending on _LP64 (same as what is in Solaris' sys/select.h), using the Solaris' values. It's not very elegant nor portable, but that project appears dead, so it should not be an issue. This should fix the build of 64 bit tools using pth, particularly for GnuPG2. Cheers, Laurent On 27/08/13 15:41, lblume at users.sourceforge.net wrote: > Revision: 21859 > http://gar.svn.sourceforge.net/gar/?rev=21859&view=rev > Author: lblume > Date: 2013-08-27 13:41:16 +0000 (Tue, 27 Aug 2013) > Log Message: > ----------- > pth/trunk: Modify pth.h so it can handle FD_SETSIZE for either 32 or 64 bit > > Modified Paths: > -------------- > csw/mgar/pkg/pth/trunk/Makefile > > Added Paths: > ----------- > csw/mgar/pkg/pth/trunk/files/0001_patch_pth_fdsetsize64.diff > csw/mgar/pkg/pth/trunk/files/0002_FD_SETSIZE_depends_on_arch.patch > > Removed Paths: > ------------- > csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff > > Modified: csw/mgar/pkg/pth/trunk/Makefile > =================================================================== > --- csw/mgar/pkg/pth/trunk/Makefile 2013-08-27 12:14:47 UTC (rev 21858) > +++ csw/mgar/pkg/pth/trunk/Makefile 2013-08-27 13:41:16 UTC (rev 21859) > @@ -13,8 +13,11 @@ > DISTFILES = $(DISTNAME).tar.gz > > # Patch PTH.H to increase FD_SETSIZE for 64bit builds > -PATCHFILES = patch_pth_fdsetsize64.diff > +PATCHFILES += 0001_patch_pth_fdsetsize64.diff > > +# The max FD_SETSIZE test must depend on the architecture being built > +PATCHFILES += 0002_FD_SETSIZE_depends_on_arch.patch > + > VENDOR_URL = http://www.gnu.org/software/pth/ > > PACKAGES += CSWlibpth20 > @@ -29,6 +32,8 @@ > > BUILD64_LIBS_ONLY = 1 > > +CONFIGURE_ARGS = $(DIRPATHS) > + > # This is an example of 'configure' > CHECKPKG_OVERRIDES_CSWlibpth-dev += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/pth.3 > > > Copied: csw/mgar/pkg/pth/trunk/files/0001_patch_pth_fdsetsize64.diff (from rev 21828, csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff) > =================================================================== > --- csw/mgar/pkg/pth/trunk/files/0001_patch_pth_fdsetsize64.diff (rev 0) > +++ csw/mgar/pkg/pth/trunk/files/0001_patch_pth_fdsetsize64.diff 2013-08-27 13:41:16 UTC (rev 21859) > @@ -0,0 +1,39 @@ > +--- pth-2.0.7/configure.o 2009-04-03 21:48:07.888815157 -0500 > ++++ pth-2.0.7/configure 2009-04-03 21:50:45.969836100 -0500 > +@@ -19603,7 +19603,7 @@ > + echo $ECHO_N "checking for default value of FD_SETSIZE... $ECHO_C" >&6 > + cross_compiling=no > + if test "$cross_compiling" = yes; then > +- ac_fdsetsize=1024 > ++ ac_fdsetsize=65536 > + > + else > + cat >conftest.$ac_ext <<_ACEOF > +@@ -19652,7 +19652,7 @@ > + sed 's/^/| /' conftest.$ac_ext >&5 > + > + ( exit $ac_status ) > +-ac_fdsetsize=1024 > ++ac_fdsetsize=65536 > + fi > + rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext > + fi > +@@ -19666,12 +19666,13 @@ > + if test "${with_fdsetsize+set}" = set; then > + withval="$with_fdsetsize" > + > +-case $withval in > +- [1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]) PTH_FDSETSIZE=$withval ;; > +- * ) { { echo "$as_me:$LINENO: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&5 > ++ if test $withval -ge 10 -a test $withval -le 65536; then > ++ PTH_FDSETSIZE=$withval > ++ else > ++ { { echo "$as_me:$LINENO: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&5 > + echo "$as_me: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&2;} > +- { (exit 1); exit 1; }; } ;; > +-esac > ++ { (exit 1); exit 1; }; } > ++fi > + CPPFLAGS="$CPPFLAGS -DFD_SETSIZE=$PTH_FDSETSIZE" > + echo "$as_me:$LINENO: checking for overridden FD_SETSIZE value" >&5 > + echo $ECHO_N "checking for overridden FD_SETSIZE value... $ECHO_C" >&6 > > Added: csw/mgar/pkg/pth/trunk/files/0002_FD_SETSIZE_depends_on_arch.patch > =================================================================== > --- csw/mgar/pkg/pth/trunk/files/0002_FD_SETSIZE_depends_on_arch.patch (rev 0) > +++ csw/mgar/pkg/pth/trunk/files/0002_FD_SETSIZE_depends_on_arch.patch 2013-08-27 13:41:16 UTC (rev 21859) > @@ -0,0 +1,17 @@ > +--- a/pth.h.in > ++++ b/pth.h.in > +@@ -89,7 +89,13 @@ struct timespec; > + > + /* check if the user requests a bigger FD_SETSIZE than we can handle */ > + #if defined(FD_SETSIZE) > +-#if FD_SETSIZE > @PTH_FDSETSIZE@ > ++#ifdef _LP64 > ++#if FD_SETSIZE > 65536 > ++#error "FD_SETSIZE is larger than what GNU Pth can handle." > ++#endif > ++#else /* ! _LP64 */ > ++#if FD_SETSIZE > 1024 > + #error "FD_SETSIZE is larger than what GNU Pth can handle." > ++#endif > + #endif > + #endif > > Deleted: csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff > =================================================================== > --- csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff 2013-08-27 12:14:47 UTC (rev 21858) > +++ csw/mgar/pkg/pth/trunk/files/patch_pth_fdsetsize64.diff 2013-08-27 13:41:16 UTC (rev 21859) > @@ -1,39 +0,0 @@ > ---- pth-2.0.7/configure.o 2009-04-03 21:48:07.888815157 -0500 > -+++ pth-2.0.7/configure 2009-04-03 21:50:45.969836100 -0500 > -@@ -19603,7 +19603,7 @@ > - echo $ECHO_N "checking for default value of FD_SETSIZE... $ECHO_C" >&6 > - cross_compiling=no > - if test "$cross_compiling" = yes; then > -- ac_fdsetsize=1024 > -+ ac_fdsetsize=65536 > - > - else > - cat >conftest.$ac_ext <<_ACEOF > -@@ -19652,7 +19652,7 @@ > - sed 's/^/| /' conftest.$ac_ext >&5 > - > - ( exit $ac_status ) > --ac_fdsetsize=1024 > -+ac_fdsetsize=65536 > - fi > - rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext > - fi > -@@ -19666,12 +19666,13 @@ > - if test "${with_fdsetsize+set}" = set; then > - withval="$with_fdsetsize" > - > --case $withval in > -- [1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]) PTH_FDSETSIZE=$withval ;; > -- * ) { { echo "$as_me:$LINENO: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&5 > -+ if test $withval -ge 10 -a test $withval -le 65536; then > -+ PTH_FDSETSIZE=$withval > -+ else > -+ { { echo "$as_me:$LINENO: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&5 > - echo "$as_me: error: invalid FD_SETSIZE specified -- allowed: 10-9999" >&2;} > -- { (exit 1); exit 1; }; } ;; > --esac > -+ { (exit 1); exit 1; }; } > -+fi > - CPPFLAGS="$CPPFLAGS -DFD_SETSIZE=$PTH_FDSETSIZE" > - echo "$as_me:$LINENO: checking for overridden FD_SETSIZE value" >&5 > - echo $ECHO_N "checking for overridden FD_SETSIZE value... $ECHO_C" >&6 > > This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. > > _______________________________________________ > devel mailing list > devel at lists.opencsw.org > https://lists.opencsw.org/mailman/listinfo/devel > From lblume at users.sourceforge.net Wed Aug 28 16:50:14 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 28 Aug 2013 14:50:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[21862] csw/mgar/pkg/libassuan/trunk Message-ID: Revision: 21862 http://gar.svn.sourceforge.net/gar/?rev=21862&view=rev Author: lblume Date: 2013-08-28 14:50:13 +0000 (Wed, 28 Aug 2013) Log Message: ----------- libassuan/trunk: Fix for the segfault (slowfranklin did it!) Modified Paths: -------------- csw/mgar/pkg/libassuan/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/libassuan/trunk/files/0001-Fix-usage-of-variadic-arguments.patch Modified: csw/mgar/pkg/libassuan/trunk/Makefile =================================================================== --- csw/mgar/pkg/libassuan/trunk/Makefile 2013-08-27 13:52:27 UTC (rev 21861) +++ csw/mgar/pkg/libassuan/trunk/Makefile 2013-08-28 14:50:13 UTC (rev 21862) @@ -13,6 +13,12 @@ BUILD_DEP_PKGS += CSWlibgpg-error-dev +# Related to: +# https://bugs.g10code.com/gnupg/msg4081 +# http://bugs.g10code.com/gnupg/issue1477 +# http://bugs.g10code.com/gnupg/issue1350 +PATCHFILES += 0001-Fix-usage-of-variadic-arguments.patch + PACKAGES += CSWlibassuan0 SPKG_DESC_CSWlibassuan0 = IPC library used by some GnuPG related software, libassuan.so.0 PKGFILES_CSWlibassuan0 += $(call pkgfiles_lib,libassuan.so.0) @@ -26,8 +32,4 @@ BUILD64_LIBS_ONLY = 1 -# Disable tests until this is fixed: -# https://bugs.g10code.com/gnupg/msg4081 -SKIPTEST ?= 1 - include gar/category.mk Added: csw/mgar/pkg/libassuan/trunk/files/0001-Fix-usage-of-variadic-arguments.patch =================================================================== --- csw/mgar/pkg/libassuan/trunk/files/0001-Fix-usage-of-variadic-arguments.patch (rev 0) +++ csw/mgar/pkg/libassuan/trunk/files/0001-Fix-usage-of-variadic-arguments.patch 2013-08-28 14:50:13 UTC (rev 21862) @@ -0,0 +1,65 @@ +From 0fff25442b1661069e4e995864d7b32924305ac6 Mon Sep 17 00:00:00 2001 +From: Ralph Boehme +Date: Wed, 28 Aug 2013 12:22:08 +0200 +Subject: [PATCH] Fix usage of variadic arguments + +--- + src/vasprintf.c | 11 ++++++----- + 1 file changed, 6 insertions(+), 5 deletions(-) + +diff --git a/src/vasprintf.c b/src/vasprintf.c +index bacb71c..fffeb71 100644 +--- a/src/vasprintf.c ++++ b/src/vasprintf.c +@@ -43,13 +43,13 @@ Boston, MA 02111-1307, USA. */ + int global_total_width; + #endif + +-static int int_vasprintf (char **, const char *, va_list *); ++static int int_vasprintf (char **, const char *, va_list); + + static int + int_vasprintf (result, format, args) + char **result; + const char *format; +- va_list *args; ++ va_list args; + { + #if defined(HAVE_W32CE_SYSTEM) && defined(_MSC_VER) + /* No va_copy and the replacement above doesn't work. */ +@@ -70,7 +70,7 @@ int_vasprintf (result, format, args) + int total_width = strlen (format) + 1; + va_list ap; + +- va_copy (ap, *args); ++ va_copy (ap, args); + + while (*p != '\0') + { +@@ -138,12 +138,13 @@ int_vasprintf (result, format, args) + p++; + } + } ++ va_end(ap); + #ifdef TEST + global_total_width = total_width; + #endif + *result = malloc (total_width); + if (*result != NULL) +- return vsprintf (*result, format, *args); ++ return vsprintf (*result, format, args); + else + return 0; + #endif +@@ -154,7 +155,7 @@ int_vasprintf (result, format, args) + int + _assuan_vasprintf (char **result, const char *format, va_list args) + { +- return int_vasprintf (result, format, &args); ++ return int_vasprintf (result, format, args); + } + + +-- +1.8.3.4 + 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 Aug 28 21:46:23 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Wed, 28 Aug 2013 19:46:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[21863] csw/mgar/pkg/gnupg2/trunk Message-ID: Revision: 21863 http://gar.svn.sourceforge.net/gar/?rev=21863&view=rev Author: lblume Date: 2013-08-28 19:46:21 +0000 (Wed, 28 Aug 2013) Log Message: ----------- gnupg2/trunk: Bump to 2.0.21; add 64bit binary Modified Paths: -------------- csw/mgar/pkg/gnupg2/trunk/Makefile csw/mgar/pkg/gnupg2/trunk/checksums csw/mgar/pkg/gnupg2/trunk/files/0001-Fix-mutex-stream-return-args-in-macro.patch Modified: csw/mgar/pkg/gnupg2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg2/trunk/Makefile 2013-08-28 14:50:13 UTC (rev 21862) +++ csw/mgar/pkg/gnupg2/trunk/Makefile 2013-08-28 19:46:21 UTC (rev 21863) @@ -3,7 +3,7 @@ # $Id$ NAME = gnupg -VERSION = 2.0.18 +VERSION = 2.0.21 GARTYPE = v2 DESCRIPTION = GnuPG is a complete and free replacement for PGP @@ -28,7 +28,8 @@ BUILD_DEP_PKGS += CSWlibassuan-dev BUILD_DEP_PKGS += CSWlibksba-dev BUILD_DEP_PKGS += CSWlibreadline-dev -BUILD_DEP_PKGS += CSWoldapdevel +BUILD_DEP_PKGS += CSWopenldap-dev +BUILD_DEP_PKGS += CSWlibpth-dev PACKAGES += CSWgnupg2 SPKG_DESC_CSWgnupg2 = GnuPG is a complete and free replacement for PGP @@ -76,9 +77,8 @@ NOISALIST = 1 -# Unfortunately GNU PTH does not handle 64 bit sanely: -# "/opt/csw/include/pth.h", line 93: #error: "FD_SETSIZE is larger than what GNU Pth can handle." -#BUILD64_LIBS_ONLY = 1 +BUILD64 = 1 +ISAEXEC = 1 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-libcurl=$(prefix) Modified: csw/mgar/pkg/gnupg2/trunk/checksums =================================================================== --- csw/mgar/pkg/gnupg2/trunk/checksums 2013-08-28 14:50:13 UTC (rev 21862) +++ csw/mgar/pkg/gnupg2/trunk/checksums 2013-08-28 19:46:21 UTC (rev 21863) @@ -1 +1 @@ -2f37e0722666a0fedbe4d9f9227ac4d7 gnupg-2.0.18.tar.bz2 +48c05f5dfe97cf21ae0ced811aaad750 gnupg-2.0.21.tar.bz2 Modified: csw/mgar/pkg/gnupg2/trunk/files/0001-Fix-mutex-stream-return-args-in-macro.patch =================================================================== --- csw/mgar/pkg/gnupg2/trunk/files/0001-Fix-mutex-stream-return-args-in-macro.patch 2013-08-28 14:50:13 UTC (rev 21862) +++ csw/mgar/pkg/gnupg2/trunk/files/0001-Fix-mutex-stream-return-args-in-macro.patch 2013-08-28 19:46:21 UTC (rev 21863) @@ -1,23 +1,8 @@ -From 7615eb0c7ed9aec93e9d10a5d8c530bf23e34005 Mon Sep 17 00:00:00 2001 -From: Dagobert Michelsen -Date: Tue, 20 Sep 2011 13:58:03 +0200 -Subject: [PATCH] Fix mutex stream return args in macro - ---- - common/estream.c | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/common/estream.c b/common/estream.c -index 2d68415..d350da6 100644 --- a/common/estream.c +++ b/common/estream.c -@@ -175,16 +175,16 @@ static int estream_pth_killed; - - # define ESTREAM_MUTEX_INITIALIZER PTH_MUTEX_INIT - # define ESTREAM_MUTEX_LOCK(mutex) \ -- (estream_pth_killed ? dummy_mutex_call_void ((mutex)) \ -+ (estream_pth_killed ? dummy_mutex_call_int ((mutex)) \ - : pth_mutex_acquire (&(mutex), 0, NULL)) +@@ -181,13 +181,13 @@ static int estream_pth_killed; + (estream_pth_killed ? dummy_mutex_call_void ((mutex)) \ + : (void)pth_mutex_acquire (&(mutex), 0, NULL)) # define ESTREAM_MUTEX_UNLOCK(mutex) \ - (estream_pth_killed ? dummy_mutex_call_void ((mutex)) \ + (estream_pth_killed ? dummy_mutex_call_int ((mutex)) \ @@ -31,6 +16,3 @@ : pth_mutex_init (&(mutex))) #else /*!HAVE_PTH*/ --- -1.7.6.1 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Aug 29 10:26:53 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 29 Aug 2013 08:26:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[21864] csw/mgar/pkg/gnupg2/trunk/Makefile Message-ID: Revision: 21864 http://gar.svn.sourceforge.net/gar/?rev=21864&view=rev Author: lblume Date: 2013-08-29 08:26:49 +0000 (Thu, 29 Aug 2013) Log Message: ----------- gnupg2/trunk: Update deps in recipe Modified Paths: -------------- csw/mgar/pkg/gnupg2/trunk/Makefile Modified: csw/mgar/pkg/gnupg2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg2/trunk/Makefile 2013-08-28 19:46:21 UTC (rev 21863) +++ csw/mgar/pkg/gnupg2/trunk/Makefile 2013-08-29 08:26:49 UTC (rev 21864) @@ -44,17 +44,10 @@ RUNTIME_DEP_PKGS_CSWgnupg2 += CSWlibpth20 RUNTIME_DEP_PKGS_CSWgnupg2 += CSWlibreadline6 RUNTIME_DEP_PKGS_CSWgnupg2 += CSWlibassuan0 -RUNTIME_DEP_PKGS_CSWgnupg2 += CSWoldaprt +RUNTIME_DEP_PKGS_CSWgnupg2 += CSWlibadns1 +RUNTIME_DEP_PKGS_CSWgnupg2 += CSWlibcurl4 +RUNTIME_DEP_PKGS_CSWgnupg2 += CSWlibldap2-4-2 -# Documentation overrides -CHECKPKG_OVERRIDES_CSWgnupg2 += file-with-bad-content|/usr/share|root/opt/csw/share/gnupg/help.txt -CHECKPKG_OVERRIDES_CSWgnupg2 += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/gpgconf.1 -CHECKPKG_OVERRIDES_CSWgnupg2 += file-with-bad-content|/usr/share|root/opt/csw/share/info/gnupg.info-1 -CHECKPKG_OVERRIDES_CSWgnupg2 += file-with-bad-content|/usr/local|root/opt/csw/share/info/gnupg.info-1 -CHECKPKG_OVERRIDES_CSWgnupg2 += file-with-bad-content|/usr/local|root/opt/csw/share/info/gnupg.info-2 -CHECKPKG_OVERRIDES_CSWgnupg2 += file-with-bad-content|/usr/share|root/opt/csw/share/man/man1/gpgsm.1 -CHECKPKG_OVERRIDES_CSWgnupg2 += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/gpgsm.1 - PACKAGES += CSWgnupg-agent SPKG_DESC_CSWgnupg-agent = GNU privacy guard - password agent PKGFILES_CSWgnupg-agent += .*gpg-agent.* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Aug 29 10:42:14 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 29 Aug 2013 08:42:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[21865] csw/mgar/pkg/gnupg/trunk Message-ID: Revision: 21865 http://gar.svn.sourceforge.net/gar/?rev=21865&view=rev Author: lblume Date: 2013-08-29 08:42:13 +0000 (Thu, 29 Aug 2013) Log Message: ----------- gnupg/trunk: Bump version to 1.4.14; add 64 bit build Modified Paths: -------------- csw/mgar/pkg/gnupg/trunk/Makefile csw/mgar/pkg/gnupg/trunk/checksums Modified: csw/mgar/pkg/gnupg/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg/trunk/Makefile 2013-08-29 08:26:49 UTC (rev 21864) +++ csw/mgar/pkg/gnupg/trunk/Makefile 2013-08-29 08:42:13 UTC (rev 21865) @@ -1,5 +1,5 @@ NAME = gnupg -VERSION = 1.4.12 +VERSION = 1.4.14 GARTYPE = v2 DESCRIPTION = GnuPG is a complete and free replacement for PGP @@ -47,4 +47,7 @@ CHECKPKG_OVERRIDES_CSWgnupg += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/gpg.1 CHECKPKG_OVERRIDES_CSWgnupg += file-with-bad-content|/usr/local|root/opt/csw/share/info/gnupg1.info +BUILD64 = 1 +ISAEXEC = 1 + include gar/category.mk Modified: csw/mgar/pkg/gnupg/trunk/checksums =================================================================== --- csw/mgar/pkg/gnupg/trunk/checksums 2013-08-29 08:26:49 UTC (rev 21864) +++ csw/mgar/pkg/gnupg/trunk/checksums 2013-08-29 08:42:13 UTC (rev 21865) @@ -1 +1 @@ -ce3742e5c7912559cab7894ad8ba7f6b gnupg-1.4.12.tar.bz2 +99dede468204cb6ee22de7e3e3772ab1 gnupg-1.4.14.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Aug 29 11:03:30 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 29 Aug 2013 09:03:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[21866] csw/mgar/pkg/gnupg2/trunk/Makefile Message-ID: Revision: 21866 http://gar.svn.sourceforge.net/gar/?rev=21866&view=rev Author: lblume Date: 2013-08-29 09:03:30 +0000 (Thu, 29 Aug 2013) Log Message: ----------- gnupg2/trunk: Remove unused override Modified Paths: -------------- csw/mgar/pkg/gnupg2/trunk/Makefile Modified: csw/mgar/pkg/gnupg2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg2/trunk/Makefile 2013-08-29 08:42:13 UTC (rev 21865) +++ csw/mgar/pkg/gnupg2/trunk/Makefile 2013-08-29 09:03:30 UTC (rev 21866) @@ -65,9 +65,6 @@ RUNTIME_DEP_PKGS_CSWgnupg-agent += CSWpinentry CHECKPKG_OVERRIDES_CSWgnupg-agent += surplus-dependency|CSWpinentry -# Documentation overrides -CHECKPKG_OVERRIDES_CSWgnupg-agent += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/gpg-agent.1 - NOISALIST = 1 BUILD64 = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Aug 29 11:18:57 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 29 Aug 2013 09:18:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[21867] csw/mgar/pkg/gnupg/trunk/Makefile Message-ID: Revision: 21867 http://gar.svn.sourceforge.net/gar/?rev=21867&view=rev Author: lblume Date: 2013-08-29 09:18:57 +0000 (Thu, 29 Aug 2013) Log Message: ----------- gnupg/trunk: Update recipe Modified Paths: -------------- csw/mgar/pkg/gnupg/trunk/Makefile Modified: csw/mgar/pkg/gnupg/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg/trunk/Makefile 2013-08-29 09:03:30 UTC (rev 21866) +++ csw/mgar/pkg/gnupg/trunk/Makefile 2013-08-29 09:18:57 UTC (rev 21867) @@ -20,7 +20,7 @@ RUNTIME_DEP_PKGS_CSWgnupg += CSWlibintl8 RUNTIME_DEP_PKGS_CSWgnupg += CSWlibreadline6 RUNTIME_DEP_PKGS_CSWgnupg += CSWlibz1 -RUNTIME_DEP_PKGS_CSWgnupg += CSWoldaprt +RUNTIME_DEP_PKGS_CSWgnupg += CSWlibldap2-4-2 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-libcurl=$(prefix) @@ -43,10 +43,6 @@ PROTOTYPE_FILES_suid = .*/gpg PROTOTYPE_PERMS_suid = 4755 -CHECKPKG_OVERRIDES_CSWgnupg += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/gpg.ru.1 -CHECKPKG_OVERRIDES_CSWgnupg += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/gpg.1 -CHECKPKG_OVERRIDES_CSWgnupg += file-with-bad-content|/usr/local|root/opt/csw/share/info/gnupg1.info - BUILD64 = 1 ISAEXEC = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 29 11:45:30 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 29 Aug 2013 09:45:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[21868] csw/mgar/pkg/lang-python/pyqt/trunk/Makefile Message-ID: Revision: 21868 http://gar.svn.sourceforge.net/gar/?rev=21868&view=rev Author: pfelecan Date: 2013-08-29 09:45:29 +0000 (Thu, 29 Aug 2013) Log Message: ----------- lang-python/pyqt: - support only Python 2.7 - builds only with the last Qt4 recipe, revision 21645 Revision Links: -------------- http://gar.svn.sourceforge.net/gar/?rev=21645&view=rev Modified Paths: -------------- csw/mgar/pkg/lang-python/pyqt/trunk/Makefile Modified: csw/mgar/pkg/lang-python/pyqt/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pyqt/trunk/Makefile 2013-08-29 09:18:57 UTC (rev 21867) +++ csw/mgar/pkg/lang-python/pyqt/trunk/Makefile 2013-08-29 09:45:29 UTC (rev 21868) @@ -1,9 +1,10 @@ # $Id$ -NAME = pyqt -VERSION = 4.10.2 -CATEGORIES = python -GARTYPE = v2 +NAME = pyqt +VERSION = 4.10.2 +CATEGORIES = python +PYTHON_VERSION = 2_7 +GARTYPE = v2 DESCRIPTION = Python bindings for Qt define BLURB @@ -86,7 +87,7 @@ touch reference && \ /usr/bin/env -i \ $(CONFIGURE_ENV) \ - python configure.py \ + $(PYTHON_EXECUTABLE) configure.py \ --verbose \ --confirm-license \ --assume-shared \ @@ -126,7 +127,7 @@ cd $(WORKSRC) && \ /usr/bin/env -i \ $(CONFIGURE_ENV) \ - python configure-ng.py \ + $(PYTHON_EXECUTABLE) configure-ng.py \ --verbose \ --confirm-license \ --assume-shared \ @@ -150,6 +151,6 @@ /usr/bin/env -i \ $(INSTALL_ENV) \ $(MAKE) DESTDIR=$(DESTDIR) INSTALL_ROOT=$(DESTDIR) install - ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/pyqtconfig.py $(DESTDIR)/$(libdir)/python/site-packages/PyQt4 + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/pyqtconfig.py $(DESTDIR)/$(PYTHON_SITE_PACKAGES)/PyQt4 @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Aug 29 11:48:18 2013 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 29 Aug 2013 09:48:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[21869] csw/mgar/pkg/lang-python Message-ID: Revision: 21869 http://gar.svn.sourceforge.net/gar/?rev=21869&view=rev Author: pfelecan Date: 2013-08-29 09:48:18 +0000 (Thu, 29 Aug 2013) Log Message: ----------- lang-python/calibre: - packaging complete - support only Python 2.7 - builds only with the last Qt4 recipe, revision 21645 - builds only with the last pyqt recipe, revision 21868 Revision Links: -------------- http://gar.svn.sourceforge.net/gar/?rev=21645&view=rev http://gar.svn.sourceforge.net/gar/?rev=21868&view=rev Added Paths: ----------- csw/mgar/pkg/lang-python/calibre/ csw/mgar/pkg/lang-python/calibre/Makefile csw/mgar/pkg/lang-python/calibre/branches/ csw/mgar/pkg/lang-python/calibre/tags/ csw/mgar/pkg/lang-python/calibre/trunk/ csw/mgar/pkg/lang-python/calibre/trunk/Makefile csw/mgar/pkg/lang-python/calibre/trunk/checksums csw/mgar/pkg/lang-python/calibre/trunk/files/ csw/mgar/pkg/lang-python/calibre/trunk/files/0001-solaris-extensions.patch csw/mgar/pkg/lang-python/calibre/trunk/files/0002-add-timer-macros.patch csw/mgar/pkg/lang-python/calibre/trunk/files/0003-endianness-and-byte-order.patch Added: csw/mgar/pkg/lang-python/calibre/Makefile =================================================================== --- csw/mgar/pkg/lang-python/calibre/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/calibre/Makefile 2013-08-29 09:48:18 UTC (rev 21869) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/lang-python/calibre/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/lang-python/calibre/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/calibre/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/calibre/trunk/Makefile 2013-08-29 09:48:18 UTC (rev 21869) @@ -0,0 +1,80 @@ +# $Id$ + +NAME = calibre +VERSION = 0.9.38 +#CATEGORIES = python +PYTHON_VERSION = 2_7 +GARTYPE = v2 + +DESCRIPTION = e-book converter and library management +define BLURB + calibre is an e-book manager. It can view, convert and catalog e-books + in all of the major e-book formats. It can also talk to e-book reader + devices. It can go out to the internet and fetch metadata for your books. + It can download newspapers and convert them into e-books for convenient + reading. It is cross platform, running on Linux, Windows, OS X and now + Solaris. +endef + +MASTER_SITES = http://download.calibre-ebook.com/$(VERSION)/ +SPKG_SOURCEURL = $(MASTER_SITES) +DISTNAME = $(NAME) +DISTFILES = $(NAME)-$(VERSION).tar.xz +LICENSE = LICENSE +PATCHFILES += 0001-solaris-extensions.patch +PATCHFILES += 0002-add-timer-macros.patch +PATCHFILES += 0003-endianness-and-byte-order.patch + +BUILD_DEP_PKGS += CSWpy-sip +BUILD_DEP_PKGS += CSWpython27-dev +BUILD_DEP_PKGS += CSWqt4-dev +BUILD_DEP_PKGS += CSWpy-pyqt +BUILD_DEP_PKGS += CSWimagemagick-dev +BUILD_DEP_PKGS += CSWxdg-utils +BUILD_DEP_PKGS += CSWpy-lxml +BUILD_DEP_PKGS += CSWpy-dateutil +BUILD_DEP_PKGS += CSWpy-cssutils +BUILD_DEP_PKGS += CSWpy-beautifulsoup4 +BUILD_DEP_PKGS += CSWpy-dnspython +BUILD_DEP_PKGS += CSWpoppler-dev +BUILD_DEP_PKGS += CSWlibpodofo-dev +BUILD_DEP_PKGS += CSWlibwmf-dev +BUILD_DEP_PKGS += CSWlibchm-dev +BUILD_DEP_PKGS += CSWlibicu-dev +BUILD_DEP_PKGS += CSWlibmtp-dev +BUILD_DEP_PKGS += CSWpy-netifaces +BUILD_DEP_PKGS += CSWpsutils +BUILD_DEP_PKGS += CSWpy-cssselect + +GARCOMPILER = GNU + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = custom +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +PATH := /opt/csw/gnu:$(PATH) + +build-custom: + cd $(WORKSRC) && \ + /usr/bin/env -i \ + $(BUILD_ENV) \ + OVERRIDE_CFLAGS="$(CFLAGS)" \ + OVERRIDE_LDFLAGS="$(LDFLAGS)b" \ + PODOFO_INC_DIR=$(includedir)/podofo \ + PODOFO_LIB_DIR=$(libdir) \ + $(PYTHON_EXECUTABLE) setup.py build + @$(MAKECOOKIE) + +install-custom: + cd $(WORKSRC) && \ + /usr/bin/env -i \ + $(INSTALL_ENV) \ + OVERRIDE_CFLAGS="$(CFLAGS)" \ + OVERRIDE_LDFLAGS="$(LDFLAGS)b" \ + PODOFO_INC_DIR=$(includedir)/podofo \ + PODOFO_LIB_DIR=$(libdir) \ + $(PYTHON_EXECUTABLE) setup.py install --staging-root=$(DESTDIR)$(prefix) + @$(MAKECOOKIE) Property changes on: csw/mgar/pkg/lang-python/calibre/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/lang-python/calibre/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/calibre/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/calibre/trunk/checksums 2013-08-29 09:48:18 UTC (rev 21869) @@ -0,0 +1 @@ +7dac0c5896d3affb87667fe5dbdf9019 calibre-0.9.38.tar.xz Added: csw/mgar/pkg/lang-python/calibre/trunk/files/0001-solaris-extensions.patch =================================================================== --- csw/mgar/pkg/lang-python/calibre/trunk/files/0001-solaris-extensions.patch (rev 0) +++ csw/mgar/pkg/lang-python/calibre/trunk/files/0001-solaris-extensions.patch 2013-08-29 09:48:18 UTC (rev 21869) @@ -0,0 +1,93 @@ +From c7ad91b291cd486fcf6e0b5444b1a6aaad0150d2 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Thu, 29 Aug 2013 11:13:46 +0200 +Subject: [PATCH] solaris extensions + +- introduce a specific platform boolean +- adapt the extensions to the platform +- includes CSW specifc X11 header for some definitions not found in the system + provided ones +--- + setup/__init__.py | 1 + + setup/extensions.py | 39 ++++++++++++++++++++------------------- + 2 files changed, 21 insertions(+), 19 deletions(-) + +diff --git a/setup/__init__.py b/setup/__init__.py +index 49d3225..f77e832 100644 +--- a/setup/__init__.py ++++ b/setup/__init__.py +@@ -13,6 +13,7 @@ iswindows = re.search('win(32|64)', sys.platform) + isosx = 'darwin' in sys.platform + isfreebsd = 'freebsd' in sys.platform + isnetbsd = 'netbsd' in sys.platform ++issolaris = 'sunos5' in sys.platform + isbsd = isnetbsd or isfreebsd + islinux = not isosx and not iswindows and not isbsd + SRC = os.path.abspath('src') +diff --git a/setup/extensions.py b/setup/extensions.py +index 3b4a37a..939f08a 100644 +--- a/setup/extensions.py ++++ b/setup/extensions.py +@@ -12,7 +12,7 @@ from multiprocessing import cpu_count + + from PyQt4.pyqtconfig import QtGuiModuleMakefile + +-from setup import Command, islinux, isbsd, isosx, SRC, iswindows ++from setup import Command, islinux, issolaris, isbsd, isosx, SRC, iswindows + from setup.build_environment import (chmlib_inc_dirs, + podofo_inc, podofo_lib, podofo_error, pyqt, OSX_SDK, NMAKE, QMAKE, + msvc, MT, win_inc, win_lib, win_ddk, magick_inc_dirs, magick_lib_dirs, +@@ -248,23 +248,24 @@ if isosx: + ) + + if islinux or isosx: +- extensions.append(Extension('libusb', +- ['calibre/devices/libusb/libusb.c'], +- libraries=['usb-1.0'] +- )) +- +- extensions.append(Extension('libmtp', +- [ +- 'calibre/devices/mtp/unix/devices.c', +- 'calibre/devices/mtp/unix/libmtp.c' +- ], +- headers=[ +- 'calibre/devices/mtp/unix/devices.h', +- 'calibre/devices/mtp/unix/upstream/music-players.h', +- 'calibre/devices/mtp/unix/upstream/device-flags.h', +- ], +- libraries=['mtp'] +- )) ++ if not issolaris: ++ extensions.append(Extension('libusb', ++ ['calibre/devices/libusb/libusb.c'], ++ libraries=['usb-1.0'] ++ )) ++ ++ extensions.append(Extension('libmtp', ++ [ ++ 'calibre/devices/mtp/unix/devices.c', ++ 'calibre/devices/mtp/unix/libmtp.c' ++ ], ++ headers=[ ++ 'calibre/devices/mtp/unix/devices.h', ++ 'calibre/devices/mtp/unix/upstream/music-players.h', ++ 'calibre/devices/mtp/unix/upstream/device-flags.h', ++ ], ++ libraries=['mtp'] ++ )) + + if isunix: + cc = os.environ.get('CC', 'gcc') +@@ -498,7 +499,7 @@ class Build(Command): + DESTDIR = . + TARGET = calibre + QT *= svg +- INCLUDEPATH *= {conf} {inc} ++ INCLUDEPATH *= {conf} {inc} "/opt/csw/X11/include" + win32-msvc*:DEFINES *= _CRT_SECURE_NO_WARNINGS + + # Force C++ language +-- +1.8.3.4 + Added: csw/mgar/pkg/lang-python/calibre/trunk/files/0002-add-timer-macros.patch =================================================================== --- csw/mgar/pkg/lang-python/calibre/trunk/files/0002-add-timer-macros.patch (rev 0) +++ csw/mgar/pkg/lang-python/calibre/trunk/files/0002-add-timer-macros.patch 2013-08-29 09:48:18 UTC (rev 21869) @@ -0,0 +1,45 @@ +From 4585ceaf27b3cc33d7ac198e1f2783f66e9023fa Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Thu, 29 Aug 2013 11:18:14 +0200 +Subject: [PATCH] add timer macros + +not defined for Solaris but existing in Linux +--- + src/qtcurve/config.h | 24 +++++++++++++++++++++++- + 1 file changed, 23 insertions(+), 1 deletion(-) + +diff --git a/src/qtcurve/config.h b/src/qtcurve/config.h +index 19ce0bf..aa34f0c 100644 +--- a/src/qtcurve/config.h ++++ b/src/qtcurve/config.h +@@ -9,4 +9,26 @@ + #undef QTC_STYLE_SUPPORT + /* #undef QTC_KWIN_MAX_BUTTON_HACK */ + +- ++#if !defined(timeradd) ++#define timeradd(a, b, result) \ ++ do { \ ++ (result)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ ++ (result)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ ++ if ((result)->tv_usec >= 1000000) \ ++ { \ ++ ++(result)->tv_sec; \ ++ (result)->tv_usec -= 1000000; \ ++ } \ ++ } while (0) ++#endif /* : !defined(timeradd) */ ++#if !defined(timersub) ++#define timersub(a, b, result) \ ++ do { \ ++ (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ ++ (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ ++ if ((result)->tv_usec < 0) { \ ++ --(result)->tv_sec; \ ++ (result)->tv_usec += 1000000; \ ++ } \ ++ } while (0) ++#endif /* : !defined(timersub) */ +-- +1.8.3.4 + Added: csw/mgar/pkg/lang-python/calibre/trunk/files/0003-endianness-and-byte-order.patch =================================================================== --- csw/mgar/pkg/lang-python/calibre/trunk/files/0003-endianness-and-byte-order.patch (rev 0) +++ csw/mgar/pkg/lang-python/calibre/trunk/files/0003-endianness-and-byte-order.patch 2013-08-29 09:48:18 UTC (rev 21869) @@ -0,0 +1,53 @@ +From aedbeea97cf8e986d7c05a76cf0d613886e3bdd5 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Thu, 29 Aug 2013 11:20:50 +0200 +Subject: [PATCH] endianness and byte order + +again some linuxisms +--- + src/unrar/os.hpp | 21 +++++++++++++++++++-- + 1 file changed, 19 insertions(+), 2 deletions(-) + +diff --git a/src/unrar/os.hpp b/src/unrar/os.hpp +index 21488a8..29fccbe 100644 +--- a/src/unrar/os.hpp ++++ b/src/unrar/os.hpp +@@ -214,6 +214,23 @@ + + #endif + ++#if defined(__GNUC__) ++/* all the above is quite bullshit as the GCC defines these values */ ++#if defined(BYTE_ORDER) ++#undef BYTE_ORDER ++#endif /* : defined(BYTE_ORDER) */ ++#define BYTE_ORDER __BYTE_ORDER__ ++#if defined(LITTLE_ENDIAN) ++#undef LITTLE_ENDIAN ++#endif /* : defined(LITTLE_ENDIAN) */ ++#define LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__ ++#if defined(BIG_ENDIAN) ++#undef BIG_ENDIAN ++#endif /* : defined(BIG_ENDIAN) */ ++#define BIG_ENDIAN __ORDER_BIG_ENDIAN__ ++/* I don't care about __ORDER_PDP_ENDIAN__ */ ++#endif /* : defined(__GNUC__) */ ++ + typedef const char* MSGID; + + #define safebuf static +@@ -221,9 +238,9 @@ + #if !defined(LITTLE_ENDIAN) && !defined(BIG_ENDIAN) + #if defined(__i386) || defined(i386) || defined(__i386__) + #define LITTLE_ENDIAN +- #elif defined(BYTE_ORDER) && BYTE_ORDER == LITTLE_ENDIAN ++#elif defined(BYTE_ORDER) && BYTE_ORDER == LITTLE_ENDIAN + #define LITTLE_ENDIAN +- #elif defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN ++#elif defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN + #define BIG_ENDIAN + #else + #error "Neither LITTLE_ENDIAN nor BIG_ENDIAN are defined. Define one of them." +-- +1.8.3.4 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Aug 29 22:05:32 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 29 Aug 2013 20:05:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[21870] csw/mgar/pkg/gpgme/trunk/Makefile Message-ID: Revision: 21870 http://gar.svn.sourceforge.net/gar/?rev=21870&view=rev Author: lblume Date: 2013-08-29 20:05:30 +0000 (Thu, 29 Aug 2013) Log Message: ----------- gpgme/trunk: Split the recipe into several packages Modified Paths: -------------- csw/mgar/pkg/gpgme/trunk/Makefile Modified: csw/mgar/pkg/gpgme/trunk/Makefile =================================================================== --- csw/mgar/pkg/gpgme/trunk/Makefile 2013-08-29 09:48:18 UTC (rev 21869) +++ csw/mgar/pkg/gpgme/trunk/Makefile 2013-08-29 20:05:30 UTC (rev 21870) @@ -22,10 +22,43 @@ BUILD_DEP_PKGS += CSWlibgpg-error-dev BUILD_DEP_PKGS += CSWlibpth-dev +BUILD_DEP_PKGS += CSWlibassuan-dev +BUILD_DEP_PKGS += CSWlibgpg-error-dev BUILD_DEP_PKGS += CSWgnupg2 -RUNTIME_DEP_PKGS = CSWgpgerr CSWpth +PACKAGES += CSWgpgme +CATALOGNAME_CSWgpgme = gpgme +SPKG_DESC_CSWgpgme += $(DESCRIPTION) +RUNTIME_DEP_PKGS_CSWgpgme += CSWlibgpgme-pthread11 +RUNTIME_DEP_PKGS_CSWgpgme += CSWlibgpgme11 +CHECKPKG_OVERRIDES_CSWgpgme += surplus-dependency|CSWlibgpgme-pthread11 +CHECKPKG_OVERRIDES_CSWgpgme += surplus-dependency|CSWlibgpgme11 +PACKAGES += CSWlibgpgme-pthread11 +CATALOGNAME_CSWlibgpgme-pthread11 = libgpgme_pthread11 +PKGFILES_CSWlibgpgme-pthread11 += $(call baseisadirs,$(libdir),libgpgme-pthread\.so\.11\.11\.0) +PKGFILES_CSWlibgpgme-pthread11 += $(call baseisadirs,$(libdir),libgpgme-pthread\.so\.11(\.\d+)*) +SPKG_DESC_CSWlibgpgme-pthread11 += $(DESCRIPTION), libgpgme-pthread.so.11 +RUNTIME_DEP_PKGS_CSWlibgpgme-pthread11 += CSWlibassuan0 +RUNTIME_DEP_PKGS_CSWlibgpgme-pthread11 += CSWlibgpg-error0 +RUNTIME_DEP_PKGS_CSWlibgpgme-pthread11 += CSWlibgcc-s1 + +PACKAGES += CSWlibgpgme11 +CATALOGNAME_CSWlibgpgme11 = libgpgme11 +PKGFILES_CSWlibgpgme11 += $(call baseisadirs,$(libdir),libgpgme\.so\.11\.11\.0) +PKGFILES_CSWlibgpgme11 += $(call baseisadirs,$(libdir),libgpgme\.so\.11(\.\d+)*) +SPKG_DESC_CSWlibgpgme11 += $(DESCRIPTION), libgpgme.so.11 +RUNTIME_DEP_PKGS_CSWlibgpgme11 += CSWlibassuan0 +RUNTIME_DEP_PKGS_CSWlibgpgme11 += CSWlibgpg-error0 +RUNTIME_DEP_PKGS_CSWlibgpgme11 += CSWlibgcc-s1 + +PACKAGES += CSWgpgme-dev +CATALOGNAME_CSWgpgme-dev = gpgme_dev +SPKG_DESC_CSWgpgme-dev += $(DESCRIPTION), development files +PKGFILES_CSWgpgme-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWgpgme-dev += CSWlibgpgme11 +RUNTIME_DEP_PKGS_CSWgpgme-dev += CSWlibgpgme-pthread11 + BUILD64_LIBS_ONLY = 1 CONFIGURE_ARGS = $(DIRPATHS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Aug 29 22:43:33 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 29 Aug 2013 20:43:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[21871] csw/mgar/pkg Message-ID: Revision: 21871 http://gar.svn.sourceforge.net/gar/?rev=21871&view=rev Author: lblume Date: 2013-08-29 20:43:31 +0000 (Thu, 29 Aug 2013) Log Message: ----------- procmail/trunk: Recreate the recipe Added Paths: ----------- csw/mgar/pkg/procmail/ csw/mgar/pkg/procmail/Makefile csw/mgar/pkg/procmail/branches/ csw/mgar/pkg/procmail/tags/ csw/mgar/pkg/procmail/trunk/ csw/mgar/pkg/procmail/trunk/Makefile csw/mgar/pkg/procmail/trunk/checksums csw/mgar/pkg/procmail/trunk/files/ csw/mgar/pkg/procmail/trunk/files/Makefile csw/mgar/pkg/procmail/trunk/files/config.h Added: csw/mgar/pkg/procmail/Makefile =================================================================== --- csw/mgar/pkg/procmail/Makefile (rev 0) +++ csw/mgar/pkg/procmail/Makefile 2013-08-29 20:43:31 UTC (rev 21871) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/procmail/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/procmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/procmail/trunk/Makefile (rev 0) +++ csw/mgar/pkg/procmail/trunk/Makefile 2013-08-29 20:43:31 UTC (rev 21871) @@ -0,0 +1,45 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = procmail +VERSION = 3.22 +GARTYPE = v2 + +DESCRIPTION = The procmail mail processing program +define BLURB + Procmail can be used to create mail-servers, mailing lists, sort your incoming mail into separate folders/files (real convenient when subscribing to one or more mailing lists or for prioritising your mail), preprocess your mail, start any programs upon mail arrival (e.g. to generate different chimes on your workstation for different types of mail) or selectively forward certain incoming mail automatically to someone +endef + +VENDOR_URL = http://www.procmail.org/ + +# The official repository appears broken as of 2013/08/29 +MASTER_SITES = ftp://ftp.fu-berlin.de/pub/unix/mail/procmail/ +DISTFILES = $(DISTNAME).tar.gz +DISTFILES += Makefile config.h + +LICENSE = COPYING + +CONFIGURE_SCRIPTS = custom +TEST_SCRIPTS = + +PROTOTYPE_MODIFIERS += lockfile +PROTOTYPE_FILES_lockfile = $(bindir)/lockfile.* +PROTOTYPE_PERMS_lockfile = 2755 +PROTOTYPE_GROUP_lockfile = mail + +PROTOTYPE_MODIFIERS += procmail +PROTOTYPE_FILES_procmail = $(bindir)/procmail.* +PROTOTYPE_PERMS_procmail = 6755 +PROTOTYPE_GROUP_procmail = mail + +include gar/category.mk + +configure-custom: + cp $(WORKDIR)/Makefile $(WORKDIR)/config.h $(WORKSRC) + @$(MAKECOOKIE) + +pre-install-modulated: + ginstall -d $(DESTDIR)$(mandir)/man1 + @$(MAKECOOKIE) + + Property changes on: csw/mgar/pkg/procmail/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/procmail/trunk/checksums =================================================================== --- csw/mgar/pkg/procmail/trunk/checksums (rev 0) +++ csw/mgar/pkg/procmail/trunk/checksums 2013-08-29 20:43:31 UTC (rev 21871) @@ -0,0 +1 @@ +1678ea99b973eb77eda4ecf6acae53f1 procmail-3.22.tar.gz Added: csw/mgar/pkg/procmail/trunk/files/Makefile =================================================================== --- csw/mgar/pkg/procmail/trunk/files/Makefile (rev 0) +++ csw/mgar/pkg/procmail/trunk/files/Makefile 2013-08-29 20:43:31 UTC (rev 21871) @@ -0,0 +1,144 @@ +#$Id: Makefile,v 1.76 2001/07/12 01:27:19 guenther Exp $ + +# BASENAME should point to where the whole lot will be installed +# change BASENAME to your home directory if need be +BASENAME = $(DESTDIR)$(prefix) +# For display in the man pages +VISIBLE_BASENAME= $(prefix) + +# You can predefine ARCHITECTURE to a bin directory suffix +ARCHITECTURE = +#ARCHITECTURE =.sun4 + +BINDIR_TAIL = bin$(ARCHITECTURE) +MANDIR = $(BASENAME)/man +BINDIR = $(BASENAME)/$(BINDIR_TAIL) +VISIBLE_BINDIR = $(VISIBLE_BASENAME)/$(BINDIR_TAIL) +# MAN1SUFFIX for regular utility manuals +MAN1SUFFIX =1 +# MAN5SUFFIX for file-format descriptions +MAN5SUFFIX =5 +MAN1DIR = $(MANDIR)/man$(MAN1SUFFIX) +MAN5DIR = $(MANDIR)/man$(MAN5SUFFIX) + +# Uncomment to install compressed man pages (possibly add extra suffix +# to the definitions of MAN?DIR and/or MAN?SUFFIX by hand) +#MANCOMPRESS = compress + +############################*# +# Things that can be made are: +# +# help (or targets) Displays this list you are looking at +# init (or makefiles) Performs some preliminary sanity checks on your system +# and generates Makefiles accordingly +# bins Preinstalls only the binaries to ./new +# mans Preinstalls only the man pages to ./new +# all Does both +# install.bin Installs the binaries from ./new to $(BINDIR) +# install.man Installs the man pages from ./new to $(MAN[15]DIR) +# install Does both +# recommend Show some recommended suid/sgid modes +# install-suid Impose the modes shown by 'make recommend' +# clean Attempts to restore the package to pre-make state +# realclean Attempts to restore the package to pre-make-init state +# deinstall Removes any previously installed binaries and man +# pages from your system by careful surgery +# autoconf.h Will list your system's anomalies +# procmail Preinstalls just all procmail related stuff to ./new +# formail Preinstalls just all formail related stuff to ./new +# lockfile Preinstalls just all lockfile related stuff to ./new +# setid Creates the setid binary needed by the SmartList +# installation +######################*# + +# Makefile.0 - mark, don't (re)move this, a sed script needs it + +#LOCKINGTEST=__defaults__ + +LOCKINGTEST=/tmp . # Uncomment and add any directories you see fit. +# If LOCKINGTEST is defined, autoconf will NOT +# prompt you to enter additional directories. +# See INSTALL for more information about the +# significance of the locking tests. + +######################################################################## +# Only edit below this line if you *think* you know what you are doing # +######################################################################## + +#LOCKINGTEST=100 # Uncomment (and change) if you think you know +# it better than the autoconf lockingtests. +# This will cause the lockingtests to be hotwired. +# 100 to enable fcntl() +# 010 to enable lockf() +# 001 to enable flock() +# Or them together to get the desired combination. + +# Optional system libraries we search for +SEARCHLIBS = -lm -ldir -lx -lsocket -lnet -linet -lnsl_s -lnsl_i -lnsl -lsun \ + -lgen -lsockdns -ldl +# -lresolv # not really needed, is it? + +# Informal list of directories where we look for the libraries in SEARCHLIBS +LIBPATHS=/opt/csw/lib /lib /usr/lib + +GCC_WARNINGS = -O2 -pedantic -Wreturn-type -Wunused -Wformat -Wtraditional \ + -Wpointer-arith -Wconversion -Waggregate-return \ + #-Wimplicit -Wshadow -Wid-clash-6 #-Wuninitialized + +# The place to put your favourite extra cc flag +CFLAGS0 = -O #$(GCC_WARNINGS) +LDFLAGS0= -s -R/opt/csw/lib -L/opt/csw/lib +# Read my libs :-) +LIBS= + +CFLAGS1 = $(CFLAGS0) #-posix -Xp +LDFLAGS1= $(LDFLAGS0) $(LIBS) #-lcposix + +####CC = cc # gcc +# object file extension +O = o +RM = /bin/rm -f +MV = mv -f +LN = ln +BSHELL = /bin/sh +INSTALL = cp +DEVNULL = /dev/null +STRIP = strip +MKDIRS = new/mkinstalldirs + +SUBDIRS = src man +BINSS = procmail lockfile formail mailstat +MANS1S = procmail formail lockfile +MANS5S = procmailrc procmailsc procmailex + +# Possible locations for the sendmail.cf file +SENDMAILCFS = /etc/mail/sendmail.cf /etc/sendmail.cf /usr/lib/sendmail.cf + +# Makefile - mark, don't (re)move this, a sed script needs it + +all: init + $(MAKE) make $@ + +make: + @$(BSHELL) -c "exit 0" + +.PRECIOUS: Makefile + +init: + $(BSHELL) ./initmake $(BSHELL) "$(SHELL)" "$(RM)" "$(MV)" "$(LN)" \ + "$(SEARCHLIBS)" \ + "$(LIBPATHS)" \ + $(DEVNULL) "$(MAKE)" $(O) \ + "$(CC)" "$(CFLAGS1)" "$(LDFLAGS1)" "$(BINSS)" \ + "$(MANS1S)" \ + "$(MANS5S)" "$(SUBDIRS)" \ + "$(VISIBLE_BINDIR)" \ + "$(STRIP)" + +makefiles makefile Makefiles Makefile: init + @$(BSHELL) -c "exit 0" + +help target targets \ +bins mans install.bin install.man install recommend install-suid clean setid \ +realclean veryclean clobber deinstall autoconf.h $(BINSS) multigram: init + $(MAKE) make $@ Added: csw/mgar/pkg/procmail/trunk/files/config.h =================================================================== --- csw/mgar/pkg/procmail/trunk/files/config.h (rev 0) +++ csw/mgar/pkg/procmail/trunk/files/config.h 2013-08-29 20:43:31 UTC (rev 21871) @@ -0,0 +1,392 @@ +/*$Id: config.h,v 1.101 2001/08/27 08:43:57 guenther Exp $*/ + +/*#define sMAILBOX_SEPARATOR "\1\1\1\1\n" /* sTART- and eNDing separ. */ +/*#define eMAILBOX_SEPARATOR "\1\1\1\1\n" /* uncomment (one or both) + if your mail system uses + nonstandard mail separators (non sendmail or smail compatible mailers + like MMDF), if yours is even different, uncomment and change the + value of course */ + +/* KEEPENV and PRESTENV should be defined as a comma-separated null-terminated + list of strings */ + +/* every environment variable appearing in KEEPENV will not be thrown away + * upon startup of procmail, e.g. you could define KEEPENV as follows: + * #define KEEPENV {"TZ","LANG",0} + * environment variables ending in an _ will designate the whole group starting + * with this prefix (e.g. "LC_"). Note that keeping LANG and or the LC_ + * variables is not recommended for most installations due to the security + * considerations/dependencies present in the use of locales other than + * the "C" locale. + */ +#define KEEPENV {"TZ",0} + +/* procmail is compiled with two definitions of the PATH variable. The first + * definition is used while processing the /etc/procmailrc file and should + * only contain trustable (i.e., system) directories. Otherwise the second + * definition is used. Note that the /etc/procmailrc file cannot change the + * PATH seen by user's rcfiles: the second definition will be applied upon the + * completion of the /etc/procmailrc file (future versions of procmail are + * expected to provide better runtime configuration control). The autoconf + * process attempts to determine reasonable values for these versions of PATH + * and sets the defSPATH and defPATH variables accordingly. If you want to + * override those settings you should uncomment and possibly change the + * DEFSPATH and DEFPATH defines below + */ +#define DEFSPATH "PATH=/usr/bin:/usr/sbin" /* */ +#define DEFPATH "PATH=$HOME/bin:/usr/bin" /* */ + +/* every environment variable appearing in PRESTENV will be set or wiped + * out of the environment (variables without an '=' sign will be thrown + * out), e.g. you could define PRESTENV as follows: + * #define PRESTENV {"IFS","ENV","PWD",0} + * any side effects (like setting the umask after an assignment to UMASK) will + * *not* take place. Do *not* define PATH here -- use the DEFSPATH and + * DEFPATH defines above instead + */ +#define PRESTENV {"IFS","ENV","PWD",0} + +/*#define GROUP_PER_USER /* uncomment this if each + user has his or her own + group and procmail can therefore trust a $HOME/.procmailrc that + is group writable or contained in a group writable home directory + if the group involved is the user's default group. */ + +/*#define LMTP /* uncomment this if you + want to use procmail + as an LMTP (rfc2033) server, presumably for invocation by an MTA. + The file examples/local_procmail_lmtp.m4 contains info on how to + set this up with sendmail. */ + +/* This file previously allowed you to define SYSTEM_MBOX. This has + changed. If you want mail delivery to custom mail-spool-files, edit the + src/authenticate.c file and change the content of: auth_mailboxname() + (either directly, or through changing the definitions in the same file + of MAILSPOOLDIR, MAILSPOOLSUFFIX, MAILSPOOLHASH or MAILSPOOLHOME) */ + +/************************************************************************ + * Only edit below this line if you have viewed/edited this file before * + ************************************************************************/ + +/* every user & group appearing in TRUSTED_IDS is allowed to use the -f option + if the list is empty (just a terminating 0), everyone can use it + TRUSTED_IDS should be defined as a comma-separated null-terminated + list of strings; if unauthorised users use the -f option, an extra + >From_ field will be added in the header */ + +#define TRUSTED_IDS {"root","daemon","uucp","mail","x400","network",\ + "list","slist","lists","news",0} + +/*#define NO_fcntl_LOCK /* uncomment any of these three if you */ +/*#define NO_lockf_LOCK /* definitely do not want procmail to make */ +/*#define NO_flock_LOCK /* use of those kernel-locking methods */ + /* If you set LOCKINGTEST to a binary number + than there's no need to set these. These #defines are only useful + if you want to disable particular locking styles but are unsure which + of the others are safe. Otherwise, don't touch them. */ + +/*#define RESTRICT_EXEC 100 /* uncomment to prevent users with uids equal + or higher than RESTRICT_EXEC from + executing programs from within their .procmailrc files (this + restriction does not apply to the /etc/procmailrc and + /etc/procmailrcs files) */ + +/*#define NO_NFS_ATIME_HACK /* uncomment if you're definitely not using + NFS mounted filesystems and can't afford + procmail to sleep for 1 sec. before writing to an empty regular + mailbox. This lets programs correctly judge whether there is unread + mail present. procmail automatically suppresses this when it isn't + needed or under heavy load. */ + +#define DEFsendmail "/usr/sbin/sendmail" /* uncomment and/or change if + the autoconfigured default + SENDMAIL is not suitable. This program should quack like a sendmail: + it should accept the -oi flag (to tell it to _not_ treat a line + containing just a period as EOF) and then a list of recipients. If the + -t flag is given, it should instead extract the recipients from the + To:, Cc:, and Bcc: header fields. If it can't do this, many standard + recipes will not work. One reasonable candidate is "/etc/mta/send" + on systems that support the MTA configuration switch. */ + +#define DEFmaildir "$HOME" /* default value for the MAILDIR variable; + this must be an absolute path */ + +#define PROCMAILRC "$HOME/.procmailrc" /* default rcfile for every + recipient; if this file + is not found, maildelivery will proceed as normal to the default + system mailbox. This also must be an absolute path */ + +#define ETCRC "/etc/opt/csw/procmailrc" /* optional global procmailrc startup + file (will only be read if procmail + is started with no rcfile on the command line). */ + +#define ETCRCS "/etc/opt/csw/procmailrcs/" /* optional trusted path prefix for + rcfiles which will be executed with + the uid of the owner of the rcfile (this only happens if procmail is + called with the -m option, without variable assignments on the command + line). */ + +/*#define console "/dev/console" /* uncomment if you want procmail to + use the console (or any other + terminal or file) to print any error messages that could not be dumped + in the "logfile"; only recommended for debugging purposes, if you have + trouble creating a "logfile" or suspect that the trouble starts before + procmail can interpret any rcfile or arguments. */ + +/************************************************************************ + * Only edit below this line if you *think* you know what you are doing * + ************************************************************************/ + +#define ROOT_uid 0 +#define LDENV {"LD_","_RLD","LIBPATH=","ELF_LD_","AOUT_LD_",0} + +#define UPDATE_MASK S_IXOTH /* bit set on mailboxes when mail arrived */ +#define OVERRIDE_MASK (S_IXUSR|S_ISUID|S_ISGID|S_ISVTX) /* if found set */ + /* the permissions on the mailbox will be left untouched */ +#define INIT_UMASK (S_IRWXG|S_IRWXO) /* == 077 */ +#define GROUPW_UMASK (INIT_UMASK&~S_IRWXG) /* == 007 */ +#define NORMperm \ + (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH|UPDATE_MASK) + /* == 0667, normal mode bits used to create files, before umask */ +#define READperm (S_IRUSR|S_IRGRP|S_IROTH) /* == 0444 */ +#define NORMdirperm (S_IRWXU|S_IRWXG|S_IRWXO) /* == 0777 */ +#define LOCKperm READperm /* mode bits used while creating lockfiles */ +#define MAX_locksize 16 /* lockfiles are expected not to be longer */ +#ifndef SMALLHEAP +#define DEFlinebuf 2048 /* default max expanded line length */ +#define BLKSIZ 16384 /* blocksize while reading/writing */ +#define STDBUF 1024 /* blocksize for emulated stdio */ +#else /* and some lower defaults for the unfortunate amongst us */ +#define DEFlinebuf 512 +#define BLKSIZ 1024 +#define STDBUF 128 +#undef USE_MMAP /* don't bother on these guys */ +#endif /* SMALLHEAP */ +#undef USE_MMAP /* UNTIL PROBLEMS ARE FIXED */ +#ifdef USE_MMAP +#ifndef INEFFICIENTrealloc +#define INEFFICIENTrealloc /* don't pussy-foot around */ +#endif +#define MAXinMEM (1024*1024) /* when to switch to mmap() */ +#define MMAP_DIR "/var/opt/csw/procmail/" /* where to put */ +#endif /* the files */ +#define MINlogbuf 81 /* fit an entire line */ +#define MAXlogbuf 1000 /* in case someone abuses LOG */ +#define MAILERDAEMON "MAILER-DAEMON" /* From_ address to replace <> */ +#define FAKE_FIELD ">From " +#define RETRYunique 8 /* # of tries at making a unique filename */ +#define BOGUSprefix "BOGUS." /* prepended to bogus mailboxes */ +#define DEFsuspend 16 /* multi-purpose 'idle loop' period */ +#define DEFlocksleep 8 +#define TO_key "^TO_" /* for addresses */ +#define TO_substitute "(^((Original-)?(Resent-)?(To|Cc|Bcc)|\ +(X-Envelope|Apparently(-Resent)?)-To):(.*[^-a-zA-Z0-9_.])?)" +#define TOkey "^TO" /* for words */ +#define TOsubstitute "(^((Original-)?(Resent-)?(To|Cc|Bcc)|\ +(X-Envelope|Apparently(-Resent)?)-To):(.*[^a-zA-Z])?)" +#define FROMDkey "^FROM_DAEMON" /* matches most daemons */ +#define FROMDsubstitute "(^(Mailing-List:|Precedence:.*(junk|bulk|list)|\ +To: Multiple recipients of |\ +(((Resent-)?(From|Sender)|X-Envelope-From):|>?From )([^>]*[^(.%@a-z0-9])?(\ +Post(ma?(st(e?r)?|n)|office)|(send)?Mail(er)?|daemon|m(mdf|ajordomo)|n?uucp|\ +LIST(SERV|proc)|NETSERV|o(wner|ps)|r(e(quest|sponse)|oot)|b(ounce|bs\\.smtp)|\ +echo|mirror|s(erv(ices?|er)|mtp(error)?|ystem)|\ +A(dmin(istrator)?|MMGR|utoanswer)\ +)(([^).!:a-z0-9][-_a-z0-9]*)?[%@> ][^<)]*(\\(.*\\).*)?)?$([^>]|$)))" +#define FROMMkey "^FROM_MAILER" /* matches most mailer-daemons */ +#define FROMMsubstitute "(^(((Resent-)?(From|Sender)|X-Envelope-From):|\ +>?From )([^>]*[^(.%@a-z0-9])?(\ +Post(ma(st(er)?|n)|office)|(send)?Mail(er)?|daemon|mmdf|n?uucp|ops|\ +r(esponse|oot)|(bbs\\.)?smtp(error)?|s(erv(ices?|er)|ystem)|A(dmin(istrator)?|\ +MMGR)\ +)(([^).!:a-z0-9][-_a-z0-9]*)?[%@> ][^<)]*(\\(.*\\).*)?)?$([^>]|$))" +#define DEFshellmetas "&|<>~;?*[" /* never put '$' in here */ +#define DEFdefault "$ORGMAIL" +#define DEFmsgprefix "msg." +#define DEFlockext ".lock" +#define DEFshellflags "-c" +#define DEFlocktimeout 1024 /* defaults to about 17 minutes */ +#define DEFtimeout (DEFlocktimeout-64) /* 64 seconds to clean up */ +#define DEFnoresretry 4 /* default nr of retries if no resources left */ +#define nfsTRY (7+1) /* nr of times+1 to ignore spurious NFS errors */ +#define MATCHVAR "MATCH" +#define AMATCHVAR "MATCH=" +#define DEFlogabstract -1 /* abstract by default, but don't mail it back */ +#define COMSAThost "localhost" /* where the biff/comsat daemon lives */ +#define COMSATservice "biff" /* the service name of the comsat daemon */ +#define COMSATprotocol "udp" /* if you change this, comsat() needs patching */ +#define COMSATxtrsep ":" /* mailbox-spec extension separator */ +#define SERV_ADDRsep '@' /* when overriding in COMSAT=serv at addr */ +#define DEFcomsat offvalue /* when an rcfile has been specified */ + /* set to either "offvalue" or "empty" */ + +#define BinSh "/bin/sh" +#define ROOT_DIR "/" +#define DEAD_LETTER "/tmp/dead.letter" /* $ORGMAIL if no passwd entry */ +#define DevNull "/dev/null" +#define NICE_RANGE 39 /* maximal nice difference */ +#define chCURDIR '.' /* the current directory */ +#define chPARDIR ".." /* the parent directory */ +#define DIRSEP "/" /* directory separator symbols, the */ + /* last one should be the most common one */ +#define MAILDIRtmp "/tmp" /* maildir subdirectories */ +#define MAILDIRcur "/cur" +#define MAILDIRnew "/new" +#define MAILDIRLEN STRLEN(MAILDIRnew) +#define MAILDIRretries 5 /* retries on obtaining a unique filename */ + +#define EOFName " \t\n#`'\");" + +#define HELPOPT1 'h' /* options to get command line help */ +#define HELPOPT2 '?' + +#define VERSIONOPT 'v' /* option to display version */ +#define PRESERVOPT 'p' /* preserve environment */ +#define TEMPFAILOPT 't' /* return EX_TEMPFAIL on error */ +#define MAILFILTOPT 'm' /* act as a general purpose mail filter */ +#define FROMWHOPT 'f' /* set name on From_ line */ +#define REFRESH_TIME '-' /* when given as argument to -f */ +#define ALTFROMWHOPT 'r' /* alternate and obsolete form of -f */ +#define OVERRIDEOPT 'o' /* do not generate >From_ lines */ +#define BERKELEYOPT 'Y' /* Berkeley format, disregard Content-Length: */ +#define ALTBERKELEYOPT 'y' /* same effect as -Y, kludge */ +#define ARGUMENTOPT 'a' /* set $1 */ +#define DELIVEROPT 'd' /* deliver mail to named recipient */ +#define LMTPOPT 'z' /* talk LTMP on stdin/stdout */ +#define PM_USAGE \ + "Usage: procmail [-vptoY] [-f fromwhom] [parameter=value | rcfile] ...\ +\n Or: procmail [-toY] [-f fromwhom] [-a argument] ... -d recipient ...\ +\n\ + Or: procmail [-ptY] [-f fromwhom] -m [parameter=value] ... rcfile [arg] ...\ +\n Or: procmail [-toY] [-a argument] ... -z\ +\n" +#define PM_HELP \ + "\t-v\t\tdisplay the version number and exit\ +\n\t-p\t\tpreserve (most of) the environment upon startup\ +\n\t-t\t\tfail softly if mail is undeliverable\ +\n\t-f fromwhom\t(re)generate the leading 'From ' line\ +\n\t-o\t\toverride the leading 'From ' line if necessary\ +\n\t-Y\t\tBerkeley format mailbox, disregard Content-Length:\ +\n\t-a argument\twill set $1, $2, etc\ +\n\t-d recipient\texplicit delivery mode\ +\n\t-z\t\tact as an LMTP server\ +\n\t-m\t\tact as a general purpose mail filter\n" +#define PM_QREFERENCE \ + "Recipe flag quick reference:\ +\n\tH egrep header (default)\tB egrep body\ +\n\tD distinguish case\ +\n\tA also execute this recipe if the common condition matched\ +\n\ta same as 'A', but only if the previous recipe was successful\ +\n\tE else execute this recipe, if the preceding condition didn't match\ +\n\te on error execute this recipe, if the previous recipe failed\ +\n\th deliver header (default)\tb deliver body (default)\ +\n\tf filter\t\t\ti ignore write errors\ +\n\tc carbon copy or clone message\ +\n\tw wait for a program\t\tr\ + raw mode, mail as is\ +\n\tW same as 'w', but suppress 'Program failure' messages\n" + +#define MINlinebuf 128 /* minimal LINEBUF length (don't change this) */ +#define FROM_EXPR "\nFrom " +#define FROM "From " +#define SHFROM "From" +#define NSUBJECT "^Subject:.*$" +#define MAXSUBJECTSHOW 78 +#define FOLDER " Folder: " +#define LENtSTOP 9 /* tab stop at which message length will be logged */ + +#define TABCHAR "\t" +#define TABWIDTH 8 + +#define RECFLAGS "HBDAahbfcwWiEer" +#define HEAD_GREP 0 +#define BODY_GREP 1 +#define DISTINGUISH_CASE 2 +#define ALSO_NEXT_RECIPE 3 +#define ALSO_N_IF_SUCC 4 +#define PASS_HEAD 5 +#define PASS_BODY 6 +#define FILTER 7 +#define CONTINUE 8 /* carbon copy */ +#define WAIT_EXIT 9 +#define WAIT_EXIT_QUIET 10 +#define IGNORE_WRITERR 11 +#define ELSE_DO 12 +#define ERROR_DO 13 +#define RAW_NONL 14 + +#define UNIQ_PREFIX '_' /* prepended to temporary unique filenames */ +#define ESCAP ">" + + /* some formail-specific configuration options: */ + +#define UNKNOWN "foo at bar" /* formail default originator name */ +#define OLD_PREFIX "Old-" /* formail field-Old-prefix */ +#define RESENT_ "Resent-" /* -a *this* to reply to Resent headers */ +#define BABYL_SEP1 '\037' /* BABYL format separator one */ +#define BABYL_SEP2 '\f' /* BABYL format separator two */ +#define DEFfileno "FILENO=000" /* split counter for formail */ +#define LEN_FILENO_VAR 7 /* =strlen("FILENO=") */ +#define CHILD_FACTOR 3/4 /* do not parenthesise; average running children */ + +#define FM_SKIP '+' /* skip the first nnn messages */ +#define FM_TOTAL '-' /* only spit out a total of nnn messages */ +#define FM_BOGUS 'b' /* leave bogus Froms intact */ +#define FM_BERKELEY BERKELEYOPT /* Berkeley format, no Content-Length: */ +#define FM_QPREFIX 'p' /* define quotation prefix */ +#define FM_CONCATENATE 'c' /* concatenate continued header-fields */ +#define FM_ZAPWHITE 'z' /* zap whitespace and empty headers */ +#define FM_FORCE 'f' /* force formail to accept an arbitrary format */ +#define FM_REPLY 'r' /* generate an auto-reply header */ +#define FM_KEEPB 'k' /* keep the header, when replying */ +#define FM_TRUST 't' /* reply to the header sender */ +#define FM_LOGSUMMARY 'l' /* generate a procmail-compatible log summary */ +#define FM_SPLIT 's' /* split it up */ +#define FM_NOWAIT 'n' /* don't wait for the programs */ +#define FM_EVERY 'e' /* don't require empty lines leading headers */ +#define FM_MINFIELDS 'm' /* the number of fields that have to be found */ +#define DEFminfields 2 /* before a header is recognised as such */ +#define FM_DIGEST 'd' /* split up digests */ +#define FM_BABYL 'B' /* split up BABYL format rmail files */ +#define FM_QUIET 'q' /* be quiet */ +#define FM_DUPLICATE 'D' /* return success on duplicate mails */ +#define FM_EXTRACT 'x' /* extract field contents */ +#define FM_EXTRC_KEEP 'X' /* extract field */ +#define FM_ADD_IFNOT 'a' /* add a field if not already there */ +#define FM_ADD_ALWAYS 'A' /* add this field in any case */ +#define FM_REN_INSERT 'i' /* rename and insert a field */ +#define FM_DEL_INSERT 'I' /* delete and insert a field */ +#define FM_FIRST_UNIQ 'u' /* preserve the first occurrence */ +#define FM_LAST_UNIQ 'U' /* preserve the last occurrence */ +#define FM_ReNAME 'R' /* rename a field */ +#define FM_VERSION VERSIONOPT /* option to display version */ +#define FM_USAGE "\ +Usage: formail [-vbczfrktqY] [-D nnn idcache] [-p prefix] [-l folder]\n\ +\t[-xXaAiIuU field] [-R ofield nfield]\n\ + Or: formail [+nnn] [-nnn] [-bczfrktedqBY] [-D nnn idcache] [-p prefix]\n\ +\t[-n [nnn]] [-m nnn] [-l folder] [-xXaAiIuU field] [-R ofield nfield]\n\ +\t-s [prg [arg ...]]\n" /* split up FM_HELP, token too long for some ccs */ +#define FM_HELP \ + " -v\t\tdisplay the version number and exit\ +\n -b\t\tdon't escape bogus mailbox headers\ +\n -Y\t\tBerkeley format mailbox, disregard Content-Length:\ +\n -c\t\tconcatenate continued header-fields\ +\n -z\t\tzap whitespace and empty header-fields\ +\n -f\t\tforce formail to pass along any non-mailbox format\ +\n -r\t\tgenerate an auto-reply header, preserve fields with -i\ +\n -k\t\ton auto-reply keep the body, prevent escaping with -b\ +\n -t\t\treply to the header sender instead of the envelope sender\ +\n -l folder\tgenerate a procmail-compatible log summary\ +\n -D nnn idcache\tdetect duplicates with an idcache of length nnn\ +\n -s prg arg\tsplit the mail, startup prg for every message\n" +#define FM_HELP2 \ + " +nnn\t\tskip the first nnn\t-nnn\toutput at most nnn messages\ +\n -n [nnn]\tdon't serialise splits\t-e\tempty lines are optional\ +\n -d\t\taccept digest format\t-B\texpect BABYL rmail format\ +\n -q\t\tbe quiet\t\t-p prefix\tquotation prefix\ +\n -m nnn \tmin fields threshold (default 2) for start of message\ +\n -x field\textract contents\t-X field\textract fully\ +\n -a field\tadd if not present\t-A field\tadd in any case\ +\n -i field\trename and insert\t-I field\tdelete and insert\ +\n -u field\tfirst unique\t\t-U field\tlast unique\ +\n -R oldfield newfield\trename\n" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Thu Aug 29 22:54:22 2013 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Thu, 29 Aug 2013 20:54:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[21872] csw/mgar/pkg/bash/trunk Message-ID: Revision: 21872 http://gar.svn.sourceforge.net/gar/?rev=21872&view=rev Author: chninkel Date: 2013-08-29 20:54:22 +0000 (Thu, 29 Aug 2013) Log Message: ----------- add back the bash.info file (Closes: #5103) Modified Paths: -------------- csw/mgar/pkg/bash/trunk/Makefile csw/mgar/pkg/bash/trunk/files/changelog.CSW Modified: csw/mgar/pkg/bash/trunk/Makefile =================================================================== --- csw/mgar/pkg/bash/trunk/Makefile 2013-08-29 20:43:31 UTC (rev 21871) +++ csw/mgar/pkg/bash/trunk/Makefile 2013-08-29 20:54:22 UTC (rev 21872) @@ -98,4 +98,3 @@ done ) ginstall -D $(WORKDIR_FIRSTMOD)/changelog.CSW $(PKGROOT)$(docdir)/$(NAME)/changelog.CSW ( cd "$(PKGROOT)/$(bindir)" && rm -f rbash && ln -sf bash rbash ) - rm -f $(PKGROOT)/$(infodir)/bash.info Modified: csw/mgar/pkg/bash/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/bash/trunk/files/changelog.CSW 2013-08-29 20:43:31 UTC (rev 21871) +++ csw/mgar/pkg/bash/trunk/files/changelog.CSW 2013-08-29 20:54:22 UTC (rev 21872) @@ -1,3 +1,9 @@ +bash (4.2.45,REV=2013.08.29) unstable + + * Added the bash.info file in the package (Closes: #5103). + + -- Yann Rouillard Thu, 29 Aug 2013 22:14:48 +0200 + bash (4.2.45,REV=2013.07.10) unstable * Added bash patches bash42-038 and bash42-045. 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 Aug 30 10:12:35 2013 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Aug 2013 08:12:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[21873] csw/mgar/pkg/tomcat7/trunk Message-ID: Revision: 21873 http://gar.svn.sourceforge.net/gar/?rev=21873&view=rev Author: dmichelsen Date: 2013-08-30 08:12:35 +0000 (Fri, 30 Aug 2013) Log Message: ----------- tomcat7/trunk: Update to 7.0.42 and some cleanup Modified Paths: -------------- csw/mgar/pkg/tomcat7/trunk/Makefile csw/mgar/pkg/tomcat7/trunk/checksums Modified: csw/mgar/pkg/tomcat7/trunk/Makefile =================================================================== --- csw/mgar/pkg/tomcat7/trunk/Makefile 2013-08-29 20:54:22 UTC (rev 21872) +++ csw/mgar/pkg/tomcat7/trunk/Makefile 2013-08-30 08:12:35 UTC (rev 21873) @@ -1,5 +1,5 @@ NAME = tomcat7 -VERSION = 7.0.39 +VERSION = 7.0.42 GARTYPE = v2 DESCRIPTION = Apache Jakarta Tomcat 7 Servlet/JSP Container @@ -25,9 +25,9 @@ LICENSE = LICENSE ARCHALL = 1 -CONFIGURE_SCRIPTS = none -BUILD_SCRIPTS = none -TEST_SCRIPTS = none +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = INSTALL_SCRIPTS = tomcat prefix = / @@ -45,25 +45,8 @@ PROTOTYPE_USER_etcperm = tomcat PROTOTYPE_GROUP_etcperm = tomcat -# Reviewed and fine to override -CHECKPKG_OVERRIDES_CSWtomcat7 += file-with-bad-content|/usr/local|root/opt/csw/share/tomcat7/webapps/docs/virtual-hosting-howto.html -CHECKPKG_OVERRIDES_CSWtomcat7 += file-with-bad-content|/usr/local|root/opt/csw/share/tomcat7/webapps/docs/manager-howto.html -CHECKPKG_OVERRIDES_CSWtomcat7 += file-with-bad-content|/usr/local|root/opt/csw/share/tomcat7/webapps/docs/ssl-howto.html -CHECKPKG_OVERRIDES_CSWtomcat7 += file-with-bad-content|/usr/local|root/opt/csw/share/tomcat7/webapps/docs/appdev/processes.html -CHECKPKG_OVERRIDES_CSWtomcat7 += file-with-bad-content|/usr/share|root/opt/csw/share/tomcat7/webapps/docs/building.html -CHECKPKG_OVERRIDES_CSWtomcat7 += file-with-bad-content|/usr/share|root/opt/csw/share/tomcat7/webapps/docs/BUILDING.txt - include gar/category.mk -configure-none: - @$(MAKECOOKIE) - -test-none: - @$(MAKECOOKIE) - -build-none: - @$(MAKECOOKIE) - post-extract: ( mv $(WORKDIR)/apache-tomcat-$(VERSION) $(WORKDIR)/$(DISTNAME) ) ( for i in temp work logs conf ; do find $(WORKDIR)/$(DISTNAME)/$$i -type d -exec chmod 0750 {} \; ; find $(WORKDIR)/$(DISTNAME)/$$i -type f -exec chmod 0640 {} \; ; done ) Modified: csw/mgar/pkg/tomcat7/trunk/checksums =================================================================== --- csw/mgar/pkg/tomcat7/trunk/checksums 2013-08-29 20:54:22 UTC (rev 21872) +++ csw/mgar/pkg/tomcat7/trunk/checksums 2013-08-30 08:12:35 UTC (rev 21873) @@ -1 +1 @@ -1c195fc456d771ff1637f4758273c584 apache-tomcat-7.0.39.tar.gz +1dd9abf3ae5154677e55a5d4e1fae5ed apache-tomcat-7.0.42.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 Fri Aug 30 16:30:26 2013 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 30 Aug 2013 14:30:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[21874] csw/mgar/pkg/spamassassin/trunk/files/ CSWspamassassin.cswspamd Message-ID: Revision: 21874 http://gar.svn.sourceforge.net/gar/?rev=21874&view=rev Author: bonivart Date: 2013-08-30 14:30:25 +0000 (Fri, 30 Aug 2013) Log Message: ----------- spamassassin/trunk: fix init script (Norbert Matzke) Modified Paths: -------------- csw/mgar/pkg/spamassassin/trunk/files/CSWspamassassin.cswspamd Modified: csw/mgar/pkg/spamassassin/trunk/files/CSWspamassassin.cswspamd =================================================================== --- csw/mgar/pkg/spamassassin/trunk/files/CSWspamassassin.cswspamd 2013-08-30 08:12:35 UTC (rev 21873) +++ csw/mgar/pkg/spamassassin/trunk/files/CSWspamassassin.cswspamd 2013-08-30 14:30:25 UTC (rev 21874) @@ -4,7 +4,7 @@ #RC_SLEV 3 # rc-script for CSW SpamAssassin -# Peter Bonivart, 2010-02-01 +# Peter Bonivart, 2013-08-30 # Source SMF includes [ -r /lib/svc/share/smf_include.sh ] && . /lib/svc/share/smf_include.sh @@ -21,7 +21,7 @@ case "$1" in start) if [ -x /opt/csw/bin/spamd ]; then - if [ -d /var/opt/csw/spamassassin/3.003001 ]; then + if [ -d /var/opt/csw/spamassassin/3.003002 ]; then echo "Starting $PROG." /opt/csw/bin/spamd -d $OPTIONS else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Fri Aug 30 23:58:50 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Fri, 30 Aug 2013 21:58:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[21875] csw/mgar/pkg/procmail/trunk/files/Makefile Message-ID: Revision: 21875 http://gar.svn.sourceforge.net/gar/?rev=21875&view=rev Author: lblume Date: 2013-08-30 21:58:49 +0000 (Fri, 30 Aug 2013) Log Message: ----------- procmail/trunk: Fix manual location Modified Paths: -------------- csw/mgar/pkg/procmail/trunk/files/Makefile Modified: csw/mgar/pkg/procmail/trunk/files/Makefile =================================================================== --- csw/mgar/pkg/procmail/trunk/files/Makefile 2013-08-30 14:30:25 UTC (rev 21874) +++ csw/mgar/pkg/procmail/trunk/files/Makefile 2013-08-30 21:58:49 UTC (rev 21875) @@ -11,7 +11,7 @@ #ARCHITECTURE =.sun4 BINDIR_TAIL = bin$(ARCHITECTURE) -MANDIR = $(BASENAME)/man +MANDIR = $(BASENAME)/share/man BINDIR = $(BASENAME)/$(BINDIR_TAIL) VISIBLE_BINDIR = $(VISIBLE_BASENAME)/$(BINDIR_TAIL) # MAN1SUFFIX for regular utility manuals This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 31 10:18:39 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 31 Aug 2013 08:18:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[21876] csw/mgar/pkg/procmail/trunk/Makefile Message-ID: Revision: 21876 http://gar.svn.sourceforge.net/gar/?rev=21876&view=rev Author: lblume Date: 2013-08-31 08:18:36 +0000 (Sat, 31 Aug 2013) Log Message: ----------- procmail/trunk: Create configuration directory on install Modified Paths: -------------- csw/mgar/pkg/procmail/trunk/Makefile Modified: csw/mgar/pkg/procmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/procmail/trunk/Makefile 2013-08-30 21:58:49 UTC (rev 21875) +++ csw/mgar/pkg/procmail/trunk/Makefile 2013-08-31 08:18:36 UTC (rev 21876) @@ -40,6 +40,5 @@ pre-install-modulated: ginstall -d $(DESTDIR)$(mandir)/man1 + ginstall -d $(DESTDIR)$(sysconfdir)/procmailrcs @$(MAKECOOKIE) - - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 31 14:01:19 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 31 Aug 2013 12:01:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[21877] csw/mgar/pkg Message-ID: Revision: 21877 http://gar.svn.sourceforge.net/gar/?rev=21877&view=rev Author: lblume Date: 2013-08-31 12:01:17 +0000 (Sat, 31 Aug 2013) Log Message: ----------- nxlog/trunk: New package: nxlog Added Paths: ----------- csw/mgar/pkg/nxlog/ csw/mgar/pkg/nxlog/Makefile csw/mgar/pkg/nxlog/branches/ csw/mgar/pkg/nxlog/tags/ csw/mgar/pkg/nxlog/trunk/ csw/mgar/pkg/nxlog/trunk/Makefile csw/mgar/pkg/nxlog/trunk/checksums csw/mgar/pkg/nxlog/trunk/files/ Added: csw/mgar/pkg/nxlog/Makefile =================================================================== --- csw/mgar/pkg/nxlog/Makefile (rev 0) +++ csw/mgar/pkg/nxlog/Makefile 2013-08-31 12:01:17 UTC (rev 21877) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/nxlog/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/nxlog/trunk/Makefile =================================================================== --- csw/mgar/pkg/nxlog/trunk/Makefile (rev 0) +++ csw/mgar/pkg/nxlog/trunk/Makefile 2013-08-31 12:01:17 UTC (rev 21877) @@ -0,0 +1,29 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = nxlog-ce +VERSION = 2.5.1089 +GARTYPE = v2 + +DESCRIPTION = A multi-platform universal log collector and forwarder +define BLURB + nxlog is a modular, multi-threaded, high-performance log management solution with multi-platform support. In concept it is similar to syslog-ng or rsyslog but is not limited to unix/syslog only. It can collect logs from files in various formats, receive logs from the network remotely over UDP, TCP or TLS/SSL . It supports platform specific sources such as the Windows Eventlog, Linux kernel logs, Android logs, local syslog etc. Writing and reading logs to/from databases is also supported. The collected logs can be stored into files, databases or forwarded to a remote log server using various protocols. The old BSD Syslog and the newer IETF syslog standard is fully supported by nxlog in addition to XML, JSON, GELF, CSV and custom formats. A key concept in nxlog is to be able to handle and preserve structured logs. No need to convert everything to syslog and parse these logs again at the other side. It has powerful message filtering, log rewrite and conversion capabilities. +endef + +VENDOR_URL = http://nxlog-ce.sourceforge.net/ +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(DISTNAME).tar.gz + +GARCOMPILER = GCC4 + +BUILD_DEP_PKGS += CSWlibdbi-dev +BUILD_DEP_PKGS += CSWlibapr-dev + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --enable-static=no + +BUILD64 = 1 +ISAEXEC = 1 + +include gar/category.mk + Property changes on: csw/mgar/pkg/nxlog/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/nxlog/trunk/checksums =================================================================== --- csw/mgar/pkg/nxlog/trunk/checksums (rev 0) +++ csw/mgar/pkg/nxlog/trunk/checksums 2013-08-31 12:01:17 UTC (rev 21877) @@ -0,0 +1 @@ +527795596da4f54793dae8f95b0e31e6 nxlog-ce-2.5.1089.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 Sat Aug 31 15:02:05 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 31 Aug 2013 13:02:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[21878] csw/mgar/pkg/nxlog/trunk/Makefile Message-ID: Revision: 21878 http://gar.svn.sourceforge.net/gar/?rev=21878&view=rev Author: lblume Date: 2013-08-31 13:02:05 +0000 (Sat, 31 Aug 2013) Log Message: ----------- nxlog/trunk: Skip the tests; split into packages; fix dependencies Modified Paths: -------------- csw/mgar/pkg/nxlog/trunk/Makefile Modified: csw/mgar/pkg/nxlog/trunk/Makefile =================================================================== --- csw/mgar/pkg/nxlog/trunk/Makefile 2013-08-31 12:01:17 UTC (rev 21877) +++ csw/mgar/pkg/nxlog/trunk/Makefile 2013-08-31 13:02:05 UTC (rev 21878) @@ -19,9 +19,36 @@ BUILD_DEP_PKGS += CSWlibdbi-dev BUILD_DEP_PKGS += CSWlibapr-dev +RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibssl1-0-0 +RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibexpat1 +RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibz1 +RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibpcre1 +RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibapr1-0 +RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibdbi1 +RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibnx0 + +PACKAGES += CSWlibnx0 +CATALOGNAME_CSWlibnx0 = libnx0 +PKGFILES_CSWlibnx0 += $(call baseisadirs,$(libdir),libnx\.so\.0\.0\.0) +PKGFILES_CSWlibnx0 += $(call baseisadirs,$(libdir),libnx\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibnx0 += $(DESCRIPTION), libnx.so.0 +RUNTIME_DEP_PKGS_CSWlibnx0 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibnx0 += CSWlibapr1-0 +RUNTIME_DEP_PKGS_CSWlibnx0 += CSWlibpcre1 + +PACKAGES += CSWnxlog-ce-dev +CATALOGNAME_CSWnxlog-ce-dev = nxlog_ce_dev +SPKG_DESC_CSWnxlog-ce-dev += $(DESCRIPTION), development files +PKGFILES_CSWnxlog-ce-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWnxlog-ce-dev += CSWlibnx0 + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-static=no +# Some tests on dates are failing +SKIPTEST ?= 1 + BUILD64 = 1 ISAEXEC = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Sat Aug 31 15:08:52 2013 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Sat, 31 Aug 2013 13:08:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[21879] csw/mgar/pkg/nxlog/trunk/Makefile Message-ID: Revision: 21879 http://gar.svn.sourceforge.net/gar/?rev=21879&view=rev Author: lblume Date: 2013-08-31 13:08:52 +0000 (Sat, 31 Aug 2013) Log Message: ----------- nxlog/trunk: Main package missing Modified Paths: -------------- csw/mgar/pkg/nxlog/trunk/Makefile Modified: csw/mgar/pkg/nxlog/trunk/Makefile =================================================================== --- csw/mgar/pkg/nxlog/trunk/Makefile 2013-08-31 13:02:05 UTC (rev 21878) +++ csw/mgar/pkg/nxlog/trunk/Makefile 2013-08-31 13:08:52 UTC (rev 21879) @@ -19,6 +19,10 @@ BUILD_DEP_PKGS += CSWlibdbi-dev BUILD_DEP_PKGS += CSWlibapr-dev +PACKAGES += CSWnxlog-ce +CATALOGNAME_CSWnxlog-ce = nxlog_ce +SPKG_DESC_CSWnxlog-ce += $(DESCRIPTION), utilities +# PKGFILES is catchall RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibexpat1 RUNTIME_DEP_PKGS_CSWnxlog-ce += CSWlibz1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.