From skayser at users.sourceforge.net Mon Jun 1 02:29:20 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 01 Jun 2009 00:29:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5118] csw/mgar/pkg/stunnel/trunk Message-ID: Revision: 5118 http://gar.svn.sourceforge.net/gar/?rev=5118&view=rev Author: skayser Date: 2009-06-01 00:29:19 +0000 (Mon, 01 Jun 2009) Log Message: ----------- stunnel: added init script, fixed chroot dir ownership Modified Paths: -------------- csw/mgar/pkg/stunnel/trunk/Makefile csw/mgar/pkg/stunnel/trunk/checksums csw/mgar/pkg/stunnel/trunk/files/gar-base.diff Added Paths: ----------- csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.cswstunnel Modified: csw/mgar/pkg/stunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/stunnel/trunk/Makefile 2009-05-31 20:58:10 UTC (rev 5117) +++ csw/mgar/pkg/stunnel/trunk/Makefile 2009-06-01 00:29:19 UTC (rev 5118) @@ -1,6 +1,9 @@ # Todo: # * postinstall mknod not possible within zone (mknod fails with "not owner") # Work around this or provide README.CSW with instructions for chroot +# --> Why should /dev/zero be required at all? google suggests relation +# to pthreads .. truss doesn't show /dev/zero usage on Solaris 10 +# Test on Solaris 8 / 9 for comparison GARNAME = stunnel GARVERSION = 4.27 CATEGORIES = net @@ -16,11 +19,12 @@ MASTER_SITES = http://www.stunnel.org/download/stunnel/src/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += CSWstunnel.postinstall +#DISTFILES += CSWstunnel.postinstall SPKG_SOURCEURL = http://www.stunnel.org +SPKG_CLASSES = none cswcpsampleconf cswinitsmf -REQUIRED_PKGS = CSWzlib CSWosslrt CSWtcpwrap +REQUIRED_PKGS = CSWzlib CSWosslrt CSWtcpwrap CSWcswclassutils # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -37,6 +41,12 @@ # No test target available TEST_SCRIPTS = +PROTOTYPE_FILTER = awk '\ + $$$$3 ~ /cswstunnel$$$$/ { $$$$2 = "cswinitsmf" } \ + $$$$3 ~ /stunnel.pem$$$$/ { $$$$2 = "cswcpsampleconf" } \ + $$$$3 ~ /\/var\/opt\/csw\/lib\/stunnel/ { $$$$5 = "nobody"; $$$$6 = "nogroup" } \ + { print }' + include gar/category.mk # 1) Suppress prompts for openssl sample cert generation (-batch) @@ -52,6 +62,10 @@ post-install-modulated: DOCS=AUTHORS BUGS CREDITS ChangeLog TODO post-install-modulated: DOCS+= doc/stunnel.*html post-install-modulated: + @ginstall -d $(DESTDIR)/etc/opt/csw/init.d + @ginstall -m 755 $(FILEDIR)/CSWstunnel.cswstunnel \ + $(DESTDIR)/etc/opt/csw/init.d/cswstunnel + # create pidfile directory @ginstall -d $(DESTDIR)/var/opt/csw/run/stunnel Modified: csw/mgar/pkg/stunnel/trunk/checksums =================================================================== --- csw/mgar/pkg/stunnel/trunk/checksums 2009-05-31 20:58:10 UTC (rev 5117) +++ csw/mgar/pkg/stunnel/trunk/checksums 2009-06-01 00:29:19 UTC (rev 5118) @@ -1,3 +1,2 @@ -b3f085499896129ad6813b1bda46113c download/CSWstunnel.postinstall -b73143a6ffa7d55f4dffcd3d6fa0544a download/gar-base.diff +8d6730bd87af222c3ff66547e82d8d7f download/gar-base.diff 3c655d815576f50046a1c28744b88681 download/stunnel-4.27.tar.gz Added: csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.cswstunnel =================================================================== --- csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.cswstunnel (rev 0) +++ csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.cswstunnel 2009-06-01 00:29:19 UTC (rev 5118) @@ -0,0 +1,54 @@ +#!/bin/sh +# Based on Sample stunnel SysV startup file +# Copyright by Michal Trojnara 2002,2007,2008 +# +# Modified for CSW by Sebastian Kayser +# +# Don't enable SMF service right away +#AUTOENABLE=no + +PATH=/opt/csw/sbin:/opt/csw/bin:/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/opt/csw/bin/stunnel +DEFAULTPIDFILE=/var/opt/csw/run/stunnel/stunnel.pid + +CONFIG=/opt/csw/etc/stunnel/stunnel.conf +CONFIG_LOCAL=/etc/opt/csw/stunnel/stunnel.conf +test -r $CONFIG_LOCAL && CONFIG=$CONFIG_LOCAL + +test -f $DAEMON || exit 0 +test -f $CONFIG || exit 0 + +CHROOT=`grep ^chroot $CONFIG | sed 's/.*= *//'` +PIDFILE=`grep ^pid $CONFIG | sed 's/.*= *//'` + +test -z "$DEFAULTPIDFILE" && PIDFILE = $DEFAULTPIDFILE + +case "$1" in + start) + printf "Starting universal SSL tunnel: stunnel" + $DAEMON $CONFIG || printf " failed" + echo "." + ;; + stop) + printf "Stopping universal SSL tunnel: stunnel" + if test -r $CHROOT/$PIDFILE; then + kill `cat $CHROOT/$PIDFILE` 2> /dev/null || printf " failed" + else + printf " no PID file" + fi + echo "." + ;; + restart|force-reload) + echo "Restarting universal SSL tunnel" + $0 stop + sleep 1 + $0 start + echo "done." + ;; + *) + echo "Usage: /etc/opt/csw/init.d/cswstunnel {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 Modified: csw/mgar/pkg/stunnel/trunk/files/gar-base.diff =================================================================== --- csw/mgar/pkg/stunnel/trunk/files/gar-base.diff 2009-05-31 20:58:10 UTC (rev 5117) +++ csw/mgar/pkg/stunnel/trunk/files/gar-base.diff 2009-06-01 00:29:19 UTC (rev 5118) @@ -24,7 +24,7 @@ ;CApath = /certs ; It's often easier to use CAfile -;CAfile = @prefix@/etc/stunnel/certs.pem -+;CAfile = @sysconfdir/stunnel/certs.pem ++;CAfile = @sysconfdir@/stunnel/certs.pem ; Don't forget to c_rehash CRLpath ; CRLpath is located inside chroot jail ;CRLpath = /crls @@ -34,19 +34,3 @@ ; Some debugging stuff useful for troubleshooting ;debug = 7 -diff --speed-large-files --minimal -Nru stunnel-4.27.orig/tools/stunnel.init.in stunnel-4.27/tools/stunnel.init.in ---- stunnel-4.27.orig/tools/stunnel.init.in 2008-09-17 20:53:46.000000000 +0200 -+++ stunnel-4.27/tools/stunnel.init.in 2009-05-17 12:21:18.360927513 +0200 -@@ -2,9 +2,9 @@ - # Sample stunnel SysV startup file - # Copyright by Michal Trojnara 2002,2007,2008 - --PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin --DAEMON=@prefix@/bin/stunnel --PIDFILE=@prefix@/var/run/stunnel/stunnel.pid -+PATH=@sbindir@:@bindir@:/sbin:/bin:/usr/sbin:/usr/bin -+DAEMON=@bindir@/stunnel -+PIDFILE=@localstatedir@/run/stunnel/stunnel.pid - - test -f $DAEMON || exit 0 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Mon Jun 1 15:42:08 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 01 Jun 2009 13:42:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5119] csw/mgar/pkg Message-ID: Revision: 5119 http://gar.svn.sourceforge.net/gar/?rev=5119&view=rev Author: skayser Date: 2009-06-01 13:42:08 +0000 (Mon, 01 Jun 2009) Log Message: ----------- mtr: initial commit Added Paths: ----------- csw/mgar/pkg/mtr/ csw/mgar/pkg/mtr/branches/ csw/mgar/pkg/mtr/tags/ csw/mgar/pkg/mtr/trunk/ csw/mgar/pkg/mtr/trunk/Makefile csw/mgar/pkg/mtr/trunk/checksums csw/mgar/pkg/mtr/trunk/files/ csw/mgar/pkg/mtr/trunk/files/changelog.CSW csw/mgar/pkg/mtr/trunk/files/gar-base.diff Property changes on: csw/mgar/pkg/mtr/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/mtr/trunk/Makefile =================================================================== --- csw/mgar/pkg/mtr/trunk/Makefile (rev 0) +++ csw/mgar/pkg/mtr/trunk/Makefile 2009-06-01 13:42:08 UTC (rev 5119) @@ -0,0 +1,57 @@ +# Todo +# * Provide additional non-X11 package to reduce dependencies (mtr-tiny) +# * Revisit curses autoconf detection. Maybe have a chat with upstream +# as the README says that there are known, yet unsolved Solaris autoconf +# recipe problems +GARNAME = mtr +GARVERSION = 0.75 +CATEGORIES = net + +DESCRIPTION = Combined traceroute and ping utility +define BLURB + mtr combines the functionality of the 'traceroute' and 'ping' programs + in a single network diagnostic tool. + + As mtr starts, it investigates the network connection between the host + mtr runs on and a user-specified destination host. After it determines + the address of each network hop between the machines, it sends a + sequence ICMP ECHO requests to each one to determine the quality of the + link to each machine. As it does this, it prints running statistics + about each machine. +endef + +SPKG_SOURCEURL = http://www.bitwizard.nl/mtr/ +MASTER_SITES = ftp://ftp.bitwizard.nl/mtr/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +REQUIRED_PKGS = CSWggettextrt CSWglib2 CSWgtk2 CSWlibatk CSWlibcairo +REQUIRED_PKGS += CSWncurses CSWpango + +# 1) Check for socklen_t via sys/socket.h (not netinet/in.h) +# 2) Don't cast sin_addr to (struct in_addr), cc bails out with invalid cast +PATCHFILES = gar-base.diff + +TEST_SCRIPTS = + +CONFIGURE_ARGS = $(DIRPATHS) + +# Make mtr setuid so that it can access raw sockets +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~ /sbin\/mtr$$$$/ { $$$$4 = "4755" } \ + { print }' + +include gar/category.mk + +# curses detection is somehow broken, ncurses.h is included but no curses +# lib is added to LIBS (according to comments in configure.in termcap is only +# included to satisfy Solaris curses dependencies) +post-configure-modulated: + @perl -pi -e 'if (/^LIBS =/) { s|-ltermcap|-lncurses| }' \ + $(WORKSRC)/Makefile + @$(MAKECOOKIE) + +post-install-modulated: + @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) + @cp $(FILEDIR)/changelog.CSW $(DESTDIR)$(docdir)/$(GARNAME) + @$(MAKECOOKIE) Added: csw/mgar/pkg/mtr/trunk/checksums =================================================================== --- csw/mgar/pkg/mtr/trunk/checksums (rev 0) +++ csw/mgar/pkg/mtr/trunk/checksums 2009-06-01 13:42:08 UTC (rev 5119) @@ -0,0 +1,2 @@ +4a3e6fef662eb4794e61e334f6c33722 download/gar-base.diff +23baca52d0922c2ecba7eba05317868c download/mtr-0.75.tar.gz Added: csw/mgar/pkg/mtr/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/mtr/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/mtr/trunk/files/changelog.CSW 2009-06-01 13:42:08 UTC (rev 5119) @@ -0,0 +1,5 @@ +mtr (0.75,REV=2009.06.01) + + * Adopted and updated to 0.75. (Closes #2557, #3278) + + -- Sebastian Kayser Mon, 1 Jun 2009 15:37:02 +0200 Added: csw/mgar/pkg/mtr/trunk/files/gar-base.diff =================================================================== --- csw/mgar/pkg/mtr/trunk/files/gar-base.diff (rev 0) +++ csw/mgar/pkg/mtr/trunk/files/gar-base.diff 2009-06-01 13:42:08 UTC (rev 5119) @@ -0,0 +1,24 @@ +diff --speed-large-files --minimal -Nru mtr-0.75.orig/configure mtr-0.75/configure +--- mtr-0.75.orig/configure 2008-09-19 11:38:58.000000000 +0200 ++++ mtr-0.75/configure 2009-06-01 14:04:15.934912770 +0200 +@@ -7834,7 +7834,7 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + +-#include ++#include + + + typedef socklen_t ac__type_new_; +diff --speed-large-files --minimal -Nru mtr-0.75.orig/net.c mtr-0.75/net.c +--- mtr-0.75.orig/net.c 2008-09-19 11:37:57.000000000 +0200 ++++ mtr-0.75/net.c 2009-06-01 14:06:05.858053169 +0200 +@@ -1205,7 +1205,7 @@ + switch ( saddr->sa_family ) { + case AF_INET: + sa4 = (struct sockaddr_in *) saddr; +- strncpy( strptr, inet_ntoa( (struct in_addr) sa4->sin_addr ), len - 1 ); ++ strncpy( strptr, inet_ntoa( sa4->sin_addr ), len - 1 ); + strptr[ len - 1 ] = '\0'; + return; + #ifdef ENABLE_IPV6 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Mon Jun 1 15:51:41 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 01 Jun 2009 13:51:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5120] csw/mgar/pkg/stunnel/trunk/Makefile Message-ID: Revision: 5120 http://gar.svn.sourceforge.net/gar/?rev=5120&view=rev Author: skayser Date: 2009-06-01 13:51:35 +0000 (Mon, 01 Jun 2009) Log Message: ----------- stunnel: adjusted name of an cswcpsampleconf file Modified Paths: -------------- csw/mgar/pkg/stunnel/trunk/Makefile Modified: csw/mgar/pkg/stunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/stunnel/trunk/Makefile 2009-06-01 13:42:08 UTC (rev 5119) +++ csw/mgar/pkg/stunnel/trunk/Makefile 2009-06-01 13:51:35 UTC (rev 5120) @@ -43,7 +43,7 @@ PROTOTYPE_FILTER = awk '\ $$$$3 ~ /cswstunnel$$$$/ { $$$$2 = "cswinitsmf" } \ - $$$$3 ~ /stunnel.pem$$$$/ { $$$$2 = "cswcpsampleconf" } \ + $$$$3 ~ /stunnel.pem.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ $$$$3 ~ /\/var\/opt\/csw\/lib\/stunnel/ { $$$$5 = "nobody"; $$$$6 = "nogroup" } \ { print }' @@ -65,6 +65,8 @@ @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @ginstall -m 755 $(FILEDIR)/CSWstunnel.cswstunnel \ $(DESTDIR)/etc/opt/csw/init.d/cswstunnel + @mv $(DESTDIR)$(sysconfdir)/stunnel/stunnel.pem \ + $(DESTDIR)$(sysconfdir)/stunnel/stunnel.pem.CSW # create pidfile directory @ginstall -d $(DESTDIR)/var/opt/csw/run/stunnel This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Mon Jun 1 16:07:07 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 01 Jun 2009 14:07:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5121] csw/mgar/pkg/stunnel/trunk/files/CSWstunnel. cswstunnel Message-ID: Revision: 5121 http://gar.svn.sourceforge.net/gar/?rev=5121&view=rev Author: skayser Date: 2009-06-01 14:07:07 +0000 (Mon, 01 Jun 2009) Log Message: ----------- stunnel: fixed init script typo Modified Paths: -------------- csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.cswstunnel Modified: csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.cswstunnel =================================================================== --- csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.cswstunnel 2009-06-01 13:51:35 UTC (rev 5120) +++ csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.cswstunnel 2009-06-01 14:07:07 UTC (rev 5121) @@ -5,7 +5,7 @@ # Modified for CSW by Sebastian Kayser # # Don't enable SMF service right away -#AUTOENABLE=no +#AUTOENABLE no PATH=/opt/csw/sbin:/opt/csw/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/opt/csw/bin/stunnel This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Jun 1 16:12:50 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 01 Jun 2009 14:12:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[5122] csw/mgar/pkg/dhcp/trunk Message-ID: Revision: 5122 http://gar.svn.sourceforge.net/gar/?rev=5122&view=rev Author: bonivart Date: 2009-06-01 14:12:50 +0000 (Mon, 01 Jun 2009) Log Message: ----------- dhcp: update 4.1.1 beta 1 Modified Paths: -------------- csw/mgar/pkg/dhcp/trunk/Makefile csw/mgar/pkg/dhcp/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.gspec csw/mgar/pkg/dhcp/trunk/files/CSWdhcpdevel.gspec Modified: csw/mgar/pkg/dhcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/dhcp/trunk/Makefile 2009-06-01 14:07:07 UTC (rev 5121) +++ csw/mgar/pkg/dhcp/trunk/Makefile 2009-06-01 14:12:50 UTC (rev 5122) @@ -1,5 +1,5 @@ GARNAME = dhcp -GARVERSION = 4.1.0 +GARVERSION = 4.1.1b1 CATEGORIES = net DESCRIPTION = ISC DHCP reference implementation @@ -12,9 +12,9 @@ MASTER_SITES = http://ftp.isc.org/isc/dhcp/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWdhcp,) -DISTFILES += $(call admfiles,CSWdhcpdevel,) +PACKAGES = CSWdhcp CSWdhcpdevel +CATALOGNAME_CSWdhcpdevel = dhcp_devel SPKG_DESC_CSWdhcp = ISC DHCP reference implementation REQUIRED_PKGS_CSWdhcp = CSWcswclassutils CSWosslrt @@ -38,7 +38,12 @@ INSTALL_SCRIPTS = custom -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswdhcpd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/dhcpd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/dhclient.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/dhcpd.leases.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } { print }' +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~ /\/init.d\/cswdhcpd$$$$/ { $$$$2 = "cswinitsmf" } \ + $$$$3 ~ /\/dhcpd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ + $$$$3 ~ /\/dhclient.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ + $$$$3 ~ /\/dhcpd.leases.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ + { print }' SPKG_SOURCEURL = https://www.isc.org/software/dhcp SPKG_CLASSES_CSWdhcp = none cswcpsampleconf cswinitsmf Modified: csw/mgar/pkg/dhcp/trunk/checksums =================================================================== --- csw/mgar/pkg/dhcp/trunk/checksums 2009-06-01 14:07:07 UTC (rev 5121) +++ csw/mgar/pkg/dhcp/trunk/checksums 2009-06-01 14:12:50 UTC (rev 5122) @@ -1,3 +1 @@ -1fffed2e8c3d67b111316d6a9b33db7a download/dhcp-4.1.0.tar.gz -688cb75529efcf37de7526cd4111eea9 download/CSWdhcp.gspec -5d8f4f34a43f235e28db4da8ecb1837d download/CSWdhcpdevel.gspec +20ee8a5328af03d528414d06883973fc download/dhcp-4.1.1b1.tar.gz Deleted: csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.gspec =================================================================== --- csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.gspec 2009-06-01 14:07:07 UTC (rev 5121) +++ csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.gspec 2009-06-01 14:12:50 UTC (rev 5122) @@ -1,7 +0,0 @@ -%var bitname dhcp -%var pkgname CSWdhcp -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright - -Please see /opt/csw/share/doc/dhcp/LICENSE for license information - Deleted: csw/mgar/pkg/dhcp/trunk/files/CSWdhcpdevel.gspec =================================================================== --- csw/mgar/pkg/dhcp/trunk/files/CSWdhcpdevel.gspec 2009-06-01 14:07:07 UTC (rev 5121) +++ csw/mgar/pkg/dhcp/trunk/files/CSWdhcpdevel.gspec 2009-06-01 14:12:50 UTC (rev 5122) @@ -1,7 +0,0 @@ -%var bitname dhcp_devel -%var pkgname CSWdhcpdevel -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright - -Please see /opt/csw/share/doc/dhcp/LICENSE for license information - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From hson at users.sourceforge.net Mon Jun 1 16:54:06 2009 From: hson at users.sourceforge.net (hson at users.sourceforge.net) Date: Mon, 01 Jun 2009 14:54:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5123] csw/mgar/pkg/ImageMagick/trunk/Makefile Message-ID: Revision: 5123 http://gar.svn.sourceforge.net/gar/?rev=5123&view=rev Author: hson Date: 2009-06-01 14:54:06 +0000 (Mon, 01 Jun 2009) Log Message: ----------- imagemagick: Update to 6.5.3-0 Modified Paths: -------------- csw/mgar/pkg/ImageMagick/trunk/Makefile Modified: csw/mgar/pkg/ImageMagick/trunk/Makefile =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/Makefile 2009-06-01 14:12:50 UTC (rev 5122) +++ csw/mgar/pkg/ImageMagick/trunk/Makefile 2009-06-01 14:54:06 UTC (rev 5123) @@ -1,6 +1,6 @@ GARNAME = imagemagick -GARVERSION = 6.5.2 -GARSUBREV = 10 +GARVERSION = 6.5.3 +GARSUBREV = 0 CATEGORIES = lib DESCRIPTION = A comprehensive package supporting automated and interative manipulation of images This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Mon Jun 1 18:20:44 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 01 Jun 2009 16:20:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5124] csw/mgar/pkg Message-ID: Revision: 5124 http://gar.svn.sourceforge.net/gar/?rev=5124&view=rev Author: skayser Date: 2009-06-01 16:20:44 +0000 (Mon, 01 Jun 2009) Log Message: ----------- slocate: initial commit Added Paths: ----------- csw/mgar/pkg/slocate/ csw/mgar/pkg/slocate/branches/ csw/mgar/pkg/slocate/tags/ csw/mgar/pkg/slocate/trunk/ csw/mgar/pkg/slocate/trunk/Makefile csw/mgar/pkg/slocate/trunk/checksums csw/mgar/pkg/slocate/trunk/files/ Property changes on: csw/mgar/pkg/slocate/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/slocate/trunk/Makefile =================================================================== --- csw/mgar/pkg/slocate/trunk/Makefile (rev 0) +++ csw/mgar/pkg/slocate/trunk/Makefile 2009-06-01 16:20:44 UTC (rev 5124) @@ -0,0 +1,35 @@ +# Todo +# * Build fails due to missing fts.h -> incooperate from gnulib +# * Go through README to implement correct file ownership / modes +# * Use cswusergroups to add slocate group +GARNAME = slocate +GARVERSION = 3.1 +CATEGORIES = utils + +DESCRIPTION = Secure locate alternative +define BLURB + Secure locate provides a secure way to index and quickly search for + files on your system. It uses incremental encoding just like GNU locate + to compress its database to make searching faster, but it will also + check file permissions and ownership so that users will not see files + they do not have access to. +endef + +MASTER_SITES = http://slocate.trakker.ca/files/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +SPKG_SOURCEURL = http://slocate.trakker.ca/ + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_SCRIPTS = +BUILD_ARGS = PATH=/opt/csw/gnu:$(PATH) \ + CC=$(CC) CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" + +INSTALL_SCRIPTS = custom + +include gar/category.mk + +install-custom: + # tbd + @$(MAKECOOKIE) Added: csw/mgar/pkg/slocate/trunk/checksums =================================================================== --- csw/mgar/pkg/slocate/trunk/checksums (rev 0) +++ csw/mgar/pkg/slocate/trunk/checksums 2009-06-01 16:20:44 UTC (rev 5124) @@ -0,0 +1 @@ +908e6949d959ae7b686c10bb76b35bf3 download/slocate-3.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon Jun 1 18:38:00 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 01 Jun 2009 16:38:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[5125] csw/mgar/pkg/pysetuptools/trunk/Makefile Message-ID: Revision: 5125 http://gar.svn.sourceforge.net/gar/?rev=5125&view=rev Author: valholla Date: 2009-06-01 16:38:00 +0000 (Mon, 01 Jun 2009) Log Message: ----------- update to archall Modified Paths: -------------- csw/mgar/pkg/pysetuptools/trunk/Makefile Modified: csw/mgar/pkg/pysetuptools/trunk/Makefile =================================================================== --- csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-06-01 16:20:44 UTC (rev 5124) +++ csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-06-01 16:38:00 UTC (rev 5125) @@ -5,11 +5,13 @@ SPKG_SOURCEURL = http://peak.telecommunity.com/DevCenter/setuptools PYSETUPTOOLS_VERSION := $(shell echo $(GARVERSION) | sed -e 's/[a-z].*//') PYSETUPTOOLS_RELEASE := $(shell echo $(GARVERSION) | sed -e 's/^[0-9].[0-9]*//') + DESCRIPTION = Distribution Utiltiies for Python define BLURB Distribution Utilities for Python endef +ARCHALL_CSWpysetuptools = 1 MASTER_SITES = http://cheeseshop.python.org/packages/source/s/setuptools/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz @@ -18,6 +20,10 @@ CATALOGNAME_CSWpysetuptools = pysetuptools SPKG_DESC_CSWpysetuptools = Distribution Utiltiies for Python +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc .*\.exe +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)(\d+(?:\.\d+)*) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Mon Jun 1 20:18:49 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 01 Jun 2009 18:18:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5126] csw/mgar/pkg Message-ID: Revision: 5126 http://gar.svn.sourceforge.net/gar/?rev=5126&view=rev Author: skayser Date: 2009-06-01 18:18:49 +0000 (Mon, 01 Jun 2009) Log Message: ----------- xsel: initial commit Added Paths: ----------- csw/mgar/pkg/xsel/ csw/mgar/pkg/xsel/branches/ csw/mgar/pkg/xsel/tags/ csw/mgar/pkg/xsel/trunk/ csw/mgar/pkg/xsel/trunk/Makefile csw/mgar/pkg/xsel/trunk/checksums csw/mgar/pkg/xsel/trunk/files/ csw/mgar/pkg/xsel/trunk/files/changelog.CSW Property changes on: csw/mgar/pkg/xsel/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/xsel/trunk/Makefile =================================================================== --- csw/mgar/pkg/xsel/trunk/Makefile (rev 0) +++ csw/mgar/pkg/xsel/trunk/Makefile 2009-06-01 18:18:49 UTC (rev 5126) @@ -0,0 +1,26 @@ +GARNAME = xsel +GARVERSION = 1.2.0 +CATEGORIES = utils + +DESCRIPTION = Command-line tool to access X clipboard and selection buffers +define BLURB + XSel is a command-line program for getting and setting the contents of + the X selection. Normally this is only accessible by manually + highlighting information and pasting it with the middle mouse button. +endef + +MASTER_SITES = http://www.vergenet.net/~conrad/software/xsel/download/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +TEST_SCRIPTS = +CONFIGURE_ARGS = $(DIRPATHS) +NORUNPATH = 1 + +include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) +post-install-modulated: + @ginstall -d -m 755 $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/xsel/trunk/checksums =================================================================== --- csw/mgar/pkg/xsel/trunk/checksums (rev 0) +++ csw/mgar/pkg/xsel/trunk/checksums 2009-06-01 18:18:49 UTC (rev 5126) @@ -0,0 +1 @@ +75983f143ce83dc259796c6eaf85c8f5 download/xsel-1.2.0.tar.gz Added: csw/mgar/pkg/xsel/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/xsel/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/xsel/trunk/files/changelog.CSW 2009-06-01 18:18:49 UTC (rev 5126) @@ -0,0 +1,5 @@ +xsel (1.2.0,REV=2009.06.01) + + * Initial release. + + -- Sebastian Kayser Mon, 1 Jun 2009 19:29:26 +0200 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Tue Jun 2 00:09:29 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 01 Jun 2009 22:09:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[5127] csw/mgar/pkg Message-ID: Revision: 5127 http://gar.svn.sourceforge.net/gar/?rev=5127&view=rev Author: skayser Date: 2009-06-01 22:09:29 +0000 (Mon, 01 Jun 2009) Log Message: ----------- shmux: initial commit Added Paths: ----------- csw/mgar/pkg/shmux/ csw/mgar/pkg/shmux/branches/ csw/mgar/pkg/shmux/tags/ csw/mgar/pkg/shmux/trunk/ csw/mgar/pkg/shmux/trunk/Makefile csw/mgar/pkg/shmux/trunk/checksums csw/mgar/pkg/shmux/trunk/files/ csw/mgar/pkg/shmux/trunk/files/changelog.CSW Property changes on: csw/mgar/pkg/shmux/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/shmux/trunk/Makefile =================================================================== --- csw/mgar/pkg/shmux/trunk/Makefile (rev 0) +++ csw/mgar/pkg/shmux/trunk/Makefile 2009-06-01 22:09:29 UTC (rev 5127) @@ -0,0 +1,36 @@ +# Todo +# * Review patches from http://cr.opensolaris.org/~lilyli/shmux/ +GARNAME = shmux +GARVERSION = 1.0.2 +CATEGORIES = utils + +DESCRIPTION = Executes the same command on many hosts in parallel +define BLURB + shmux is program for executing the same command on many hosts in + parallel. For each target, a child process is spawned by shmux, and a + shell on the target obtained one of the supported methods: rsh, ssh, or + sh. The output produced by the children is received by shmux and either + (optionally) output in turn to the user using an easy to read format, or + written to files for later processing making it well suited for use in + scripts. +endef + +SPKG_SOURCEURL = http://web.taranis.org/shmux/ +MASTER_SITES = http://web.taranis.org/shmux/dist/ +DISTFILES = $(GARNAME)-$(GARVERSION).tgz + +REQUIRED_PKGS = CSWpcrert + +# We define upstream file regex so we can be notifed of new upstream software +# release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tgz + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/shmux/trunk/checksums =================================================================== --- csw/mgar/pkg/shmux/trunk/checksums (rev 0) +++ csw/mgar/pkg/shmux/trunk/checksums 2009-06-01 22:09:29 UTC (rev 5127) @@ -0,0 +1 @@ +4ab5c46b4154cbeab54bdc0036bd9140 download/shmux-1.0.2.tgz Added: csw/mgar/pkg/shmux/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/shmux/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/shmux/trunk/files/changelog.CSW 2009-06-01 22:09:29 UTC (rev 5127) @@ -0,0 +1,5 @@ +shmux (1.0.2,REV=2009.06.02) + + * Adopted and updated to 1.0.2. (Closes #2988) + + -- Sebastian Kayser Tue, 2 Jun 2009 00:08:04 +0200 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Tue Jun 2 02:02:17 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 02 Jun 2009 00:02:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[5128] csw/mgar/pkg Message-ID: Revision: 5128 http://gar.svn.sourceforge.net/gar/?rev=5128&view=rev Author: skayser Date: 2009-06-02 00:02:17 +0000 (Tue, 02 Jun 2009) Log Message: ----------- autossh: initial commit Added Paths: ----------- csw/mgar/pkg/autossh/ csw/mgar/pkg/autossh/branches/ csw/mgar/pkg/autossh/tags/ csw/mgar/pkg/autossh/trunk/ csw/mgar/pkg/autossh/trunk/Makefile csw/mgar/pkg/autossh/trunk/checksums csw/mgar/pkg/autossh/trunk/files/ csw/mgar/pkg/autossh/trunk/files/changelog.CSW Property changes on: csw/mgar/pkg/autossh/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/autossh/trunk/Makefile =================================================================== --- csw/mgar/pkg/autossh/trunk/Makefile (rev 0) +++ csw/mgar/pkg/autossh/trunk/Makefile 2009-06-02 00:02:17 UTC (rev 5128) @@ -0,0 +1,40 @@ +# Todo +# * man page seems broken, verify and check why +GARNAME = autossh +GARVERSION = 1.4b +CATEGORIES = net + +DESCRIPTION = Automatically restart SSH sessions and tunnels +define BLURB + autossh is a program to start a copy of ssh and monitor it, restarting + it as necessary should it die or stop passing traffic. The idea is from + rstunnel (Reliable SSH Tunnel), but implemented in C. +endef + +MASTER_SITES = http://www.harding.motd.ca/autossh/ +DISTFILES = $(GARNAME)-$(GARVERSION).tgz + +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +CONFIGURE_ARGS = $(DIRPATHS) +NORUNPATH = 1 + +include gar/category.mk + +# Makefile doesn't honor $(DESTDIR) so we have to do it manually +install-custom: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) +install-custom: DOCS=CHANGES README +install-custom: + @ginstall -d $(DESTDIR)$(bindir) + @ginstall -d $(DESTDIR)$(mandir)/man1 + @ginstall -d $(DOCDEST) + @ginstall -d $(DOCDEST)/examples + + @cp $(WORKSRC)/autossh $(DESTDIR)$(bindir) + @cp $(WORKSRC)/autossh.1 $(DESTDIR)$(mandir)/man1 + @cp $(addprefix $(WORKSRC)/,$(DOCS)) $(DOCDEST) + @cp $(addprefix $(WORKSRC)/,autossh.host rscreen) $(DOCDEST)/examples + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + + @$(MAKECOOKIE) Added: csw/mgar/pkg/autossh/trunk/checksums =================================================================== --- csw/mgar/pkg/autossh/trunk/checksums (rev 0) +++ csw/mgar/pkg/autossh/trunk/checksums 2009-06-02 00:02:17 UTC (rev 5128) @@ -0,0 +1 @@ +8f9aa006f6f69e912d3c2f504622d6f7 download/autossh-1.4b.tgz Added: csw/mgar/pkg/autossh/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/autossh/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/autossh/trunk/files/changelog.CSW 2009-06-02 00:02:17 UTC (rev 5128) @@ -0,0 +1,5 @@ +autossh (1.4b,REV=2009.06.02) + + * Initial release. + + -- Sebastian Kayser Tue, 2 Jun 2009 01:57:24 +0200 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Tue Jun 2 10:35:39 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 02 Jun 2009 08:35:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[5129] csw/mgar/pkg/pixman/trunk Message-ID: Revision: 5129 http://gar.svn.sourceforge.net/gar/?rev=5129&view=rev Author: wbonnet Date: 2009-06-02 08:35:39 +0000 (Tue, 02 Jun 2009) Log Message: ----------- upgrade to 0.15.8 Modified Paths: -------------- csw/mgar/pkg/pixman/trunk/Makefile csw/mgar/pkg/pixman/trunk/checksums Modified: csw/mgar/pkg/pixman/trunk/Makefile =================================================================== --- csw/mgar/pkg/pixman/trunk/Makefile 2009-06-02 00:02:17 UTC (rev 5128) +++ csw/mgar/pkg/pixman/trunk/Makefile 2009-06-02 08:35:39 UTC (rev 5129) @@ -1,5 +1,5 @@ GARNAME = pixman -GARVERSION = 0.15.6 +GARVERSION = 0.15.8 CATEGORIES = lib DESCRIPTION = The pixel-manipulation library for X and cairo Modified: csw/mgar/pkg/pixman/trunk/checksums =================================================================== --- csw/mgar/pkg/pixman/trunk/checksums 2009-06-02 00:02:17 UTC (rev 5128) +++ csw/mgar/pkg/pixman/trunk/checksums 2009-06-02 08:35:39 UTC (rev 5129) @@ -1 +1 @@ -fe922698df46b21d7e19f28ded4ca100 download/pixman-0.15.6.tar.gz +22318888bdc56c28b742ebdd93931c41 download/pixman-0.15.8.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 Tue Jun 2 19:14:53 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 02 Jun 2009 17:14:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[5130] csw/mgar/pkg/cswclassutils/trunk Message-ID: Revision: 5130 http://gar.svn.sourceforge.net/gar/?rev=5130&view=rev Author: bonivart Date: 2009-06-02 17:14:53 +0000 (Tue, 02 Jun 2009) Log Message: ----------- cswclassutils: fix bugs regarding AUTOENABLE (#3635) Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/Makefile csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-06-02 08:35:39 UTC (rev 5129) +++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-06-02 17:14:53 UTC (rev 5130) @@ -1,5 +1,5 @@ GARNAME = cswclassutils -GARVERSION = 1.14 +GARVERSION = 1.15 CATEGORIES = utils DESCRIPTION = CSW class action utilities Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2009-06-02 08:35:39 UTC (rev 5129) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2009-06-02 17:14:53 UTC (rev 5130) @@ -223,9 +223,9 @@ # Start service AUTOENABLE="yes" if [ "`grep '^#AUTOENABLE' $dest`" ]; then - AUTOENABLE=`grep '^#AUTOENABLE' $dest | awk '{print $2}' | tr -s '[:upper:]' '[:lower:]'` + AUTOENABLE=`grep '^#AUTOENABLE' $dest | awk '{print $2}' | /usr/xpg4/bin/tr -s '[:upper:]' '[:lower:]'` fi - if [ "$daemon" = "yes" -a "$AUTOENABLE" != "no" -a "$AUTOENABLE" != "false"]; then + if [ "$daemon" = "yes" -a "$AUTOENABLE" != "no" -a "$AUTOENABLE" != "false" ]; then load_smf_service_state "$FMRI/$service" if [ "$SMF_STATE" = "enabled" ]; then echo Enabling svc:/$FMRI/$service ... 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 Jun 2 19:56:26 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 02 Jun 2009 17:56:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[5131] csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/ Makefile Message-ID: Revision: 5131 http://gar.svn.sourceforge.net/gar/?rev=5131&view=rev Author: wahwah Date: 2009-06-02 17:56:26 +0000 (Tue, 02 Jun 2009) Log Message: ----------- syslog_ng: Added cswclassutils to dependencies Modified Paths: -------------- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile Modified: csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile 2009-06-02 17:14:53 UTC (rev 5130) +++ csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile 2009-06-02 17:56:26 UTC (rev 5131) @@ -49,6 +49,7 @@ REQUIRED_PKGS += CSWggettextrt REQUIRED_PKGS += CSWglib2 REQUIRED_PKGS += CSWtcpwrap +REQUIRED_PKGS += CSWclassutils GARCOMPILER = GNU TEST_SCRIPTS = 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 Jun 2 20:00:57 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 02 Jun 2009 18:00:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5132] csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/ Makefile Message-ID: Revision: 5132 http://gar.svn.sourceforge.net/gar/?rev=5132&view=rev Author: wahwah Date: 2009-06-02 18:00:57 +0000 (Tue, 02 Jun 2009) Log Message: ----------- syslog_ng: Correcting names of preinstall and postremove scripts. Modified Paths: -------------- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile Modified: csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile 2009-06-02 17:56:26 UTC (rev 5131) +++ csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile 2009-06-02 18:00:57 UTC (rev 5132) @@ -13,8 +13,8 @@ DISTFILES = $(GARNAME)_$(GARVERSION).tar.gz DISTFILES += $(GARNAME).conf.CSW DISTFILES += cswsyslog_ng -DISTFILES += CSWsyslog-ng.preinstall -DISTFILES += CSWsyslog-ng.postremove +DISTFILES += CSWsyslogng.preinstall +DISTFILES += CSWsyslogng.postremove CATALOGNAME = syslog_ng 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 Jun 2 20:02:47 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 02 Jun 2009 18:02:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[5133] csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/ files Message-ID: Revision: 5133 http://gar.svn.sourceforge.net/gar/?rev=5133&view=rev Author: wahwah Date: 2009-06-02 18:02:47 +0000 (Tue, 02 Jun 2009) Log Message: ----------- syslog_ng: Correcting names of preinstall and postremove scripts, md5 sums and actual files update. Added Paths: ----------- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslogng.postremove csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslogng.preinstall Removed Paths: ------------- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.postremove csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.preinstall Deleted: csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.postremove =================================================================== --- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.postremove 2009-06-02 18:00:57 UTC (rev 5132) +++ csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.postremove 2009-06-02 18:02:47 UTC (rev 5133) @@ -1,4 +0,0 @@ -#!/bin/sh - -echo "Enabling svc:/system/system-log:default" -svcadm enable svc:/system/system-log:default Deleted: csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.preinstall =================================================================== --- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.preinstall 2009-06-02 18:00:57 UTC (rev 5132) +++ csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.preinstall 2009-06-02 18:02:47 UTC (rev 5133) @@ -1,4 +0,0 @@ -#!/bin/sh - -echo "Disabling svc:/system/system-log:default" -svcadm disable svc:/system/system-log:default Copied: csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslogng.postremove (from rev 5131, csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.postremove) =================================================================== --- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslogng.postremove (rev 0) +++ csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslogng.postremove 2009-06-02 18:02:47 UTC (rev 5133) @@ -0,0 +1,4 @@ +#!/bin/sh + +echo "Enabling svc:/system/system-log:default" +svcadm enable svc:/system/system-log:default Copied: csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslogng.preinstall (from rev 5131, csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslog-ng.preinstall) =================================================================== --- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslogng.preinstall (rev 0) +++ csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/files/CSWsyslogng.preinstall 2009-06-02 18:02:47 UTC (rev 5133) @@ -0,0 +1,4 @@ +#!/bin/sh + +echo "Disabling svc:/system/system-log:default" +svcadm disable svc:/system/system-log:default 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 Jun 2 21:33:30 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 02 Jun 2009 19:33:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[5134] csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/ checksums Message-ID: Revision: 5134 http://gar.svn.sourceforge.net/gar/?rev=5134&view=rev Author: wahwah Date: 2009-06-02 19:33:30 +0000 (Tue, 02 Jun 2009) Log Message: ----------- syslog_ng: Updated md5 sums. Modified Paths: -------------- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/checksums Modified: csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/checksums =================================================================== --- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/checksums 2009-06-02 18:02:47 UTC (rev 5133) +++ csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/checksums 2009-06-02 19:33:30 UTC (rev 5134) @@ -1,5 +1,5 @@ -2204f69bd703115748073e99297e5083 download/CSWsyslog-ng.postremove -b4b01531e2de07e6e4231afc4079a168 download/CSWsyslog-ng.preinstall +2204f69bd703115748073e99297e5083 download/CSWsyslogng.postremove +b4b01531e2de07e6e4231afc4079a168 download/CSWsyslogng.preinstall fd0f7ccdc627d08a00a2e57fdbfd51d8 download/cswsyslog_ng 69bad95775b98d26e52db8a8292e2790 download/syslog-ng.conf.CSW e5ca55796c11899739affa417ff8a71e download/syslog-ng_2.0.10.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 Jun 2 21:36:13 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 02 Jun 2009 19:36:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5135] csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/ Makefile Message-ID: Revision: 5135 http://gar.svn.sourceforge.net/gar/?rev=5135&view=rev Author: wahwah Date: 2009-06-02 19:36:13 +0000 (Tue, 02 Jun 2009) Log Message: ----------- syslog_ng: Fixed the dependency name (CSWcswclassutils != CSWclassutils) Modified Paths: -------------- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile Modified: csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile 2009-06-02 19:33:30 UTC (rev 5134) +++ csw/mgar/pkg/syslog_ng/branches/smf-via-classutils/Makefile 2009-06-02 19:36:13 UTC (rev 5135) @@ -49,7 +49,7 @@ REQUIRED_PKGS += CSWggettextrt REQUIRED_PKGS += CSWglib2 REQUIRED_PKGS += CSWtcpwrap -REQUIRED_PKGS += CSWclassutils +REQUIRED_PKGS += CSWcswclassutils GARCOMPILER = GNU TEST_SCRIPTS = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Wed Jun 3 01:25:42 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 02 Jun 2009 23:25:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[5136] csw/mgar/pkg/stunnel/trunk Message-ID: Revision: 5136 http://gar.svn.sourceforge.net/gar/?rev=5136&view=rev Author: skayser Date: 2009-06-02 23:25:42 +0000 (Tue, 02 Jun 2009) Log Message: ----------- stunnel: added checkinstall to verify cswclassutils version Modified Paths: -------------- csw/mgar/pkg/stunnel/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.checkinstall Modified: csw/mgar/pkg/stunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/stunnel/trunk/Makefile 2009-06-02 19:36:13 UTC (rev 5135) +++ csw/mgar/pkg/stunnel/trunk/Makefile 2009-06-02 23:25:42 UTC (rev 5136) @@ -20,6 +20,7 @@ MASTER_SITES = http://www.stunnel.org/download/stunnel/src/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz #DISTFILES += CSWstunnel.postinstall +DISTFILES += CSWstunnel.checkinstall SPKG_SOURCEURL = http://www.stunnel.org SPKG_CLASSES = none cswcpsampleconf cswinitsmf Added: csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.checkinstall =================================================================== --- csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.checkinstall (rev 0) +++ csw/mgar/pkg/stunnel/trunk/files/CSWstunnel.checkinstall 2009-06-02 23:25:42 UTC (rev 5136) @@ -0,0 +1,17 @@ +#!/bin/sh +# +# Make sure we use at least cswclassutils 1.15 (this is where AUTOENABLE +# support was introduced). pkgutil should take care of this sometime, but +# as we don't know whether the system has a recent pkgutil, we do it here +# for now. + +# Use the REV stamp as it is guaranteed to go up and is easier to compare +# than the version field +R=`/bin/pkgparam CSWcswclassutils VERSION | cut -d= -f2 | tr -d .` + +[ "0$R" -ge 20090602 ] && exit 0 + +echo "Please install cswclassutils >= REV=2009-06-02 first." >&2 +echo "Aborting installation." >&2 + +exit 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Wed Jun 3 12:13:30 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Wed, 03 Jun 2009 10:13:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[5137] csw/mgar/pkg/cpan Message-ID: Revision: 5137 http://gar.svn.sourceforge.net/gar/?rev=5137&view=rev Author: skayser Date: 2009-06-03 10:13:29 +0000 (Wed, 03 Jun 2009) Log Message: ----------- perlconsole: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/perlconsole/ csw/mgar/pkg/cpan/perlconsole/branches/ csw/mgar/pkg/cpan/perlconsole/tags/ csw/mgar/pkg/cpan/perlconsole/trunk/ csw/mgar/pkg/cpan/perlconsole/trunk/Makefile csw/mgar/pkg/cpan/perlconsole/trunk/checksums csw/mgar/pkg/cpan/perlconsole/trunk/files/ Property changes on: csw/mgar/pkg/cpan/perlconsole/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/perlconsole/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/perlconsole/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/perlconsole/trunk/Makefile 2009-06-03 10:13:29 UTC (rev 5137) @@ -0,0 +1,24 @@ +GARNAME = perlconsole +GARVERSION = 0.4 +CATEGORIES = cpan +AUTHOR = SUKRIA + +DESCRIPTION = Evaluate Perl code interactively +define BLURB + Perl Console is a light program that lets you evaluate Perl code + interactively. It uses Readline for grabing input and provides + completion with all the namespaces loaded during your session. + + This is pretty useful for Perl developers that write modules. You can + load a module in your session and test a function exported by the + module. + + Readline is used to grab user input and provides then all the facilities + your are used to : completion, key bindings, ... +endef + +PACKAGES = CSWperlconsole +CATALOGNAME = perlconsole +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/perlconsole/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/perlconsole/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/perlconsole/trunk/checksums 2009-06-03 10:13:29 UTC (rev 5137) @@ -0,0 +1 @@ +4a31b5f720b3c05f1a5564ce78459f22 download/perlconsole-0.4.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Wed Jun 3 12:14:19 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Wed, 03 Jun 2009 10:14:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[5138] csw/mgar/pkg/cpan/perlconsole/trunk/Makefile Message-ID: Revision: 5138 http://gar.svn.sourceforge.net/gar/?rev=5138&view=rev Author: skayser Date: 2009-06-03 10:14:19 +0000 (Wed, 03 Jun 2009) Log Message: ----------- perlconsole: added SPKG_SOURCEURL Modified Paths: -------------- csw/mgar/pkg/cpan/perlconsole/trunk/Makefile Modified: csw/mgar/pkg/cpan/perlconsole/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/perlconsole/trunk/Makefile 2009-06-03 10:13:29 UTC (rev 5137) +++ csw/mgar/pkg/cpan/perlconsole/trunk/Makefile 2009-06-03 10:14:19 UTC (rev 5138) @@ -21,4 +21,6 @@ CATALOGNAME = perlconsole ARCHALL = 1 +SPKG_SOURCEURL = http://www.sukria.net/perlconsole.html + 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 Wed Jun 3 12:19:12 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 03 Jun 2009 10:19:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[5139] csw/mgar/pkg/zsh/trunk Message-ID: Revision: 5139 http://gar.svn.sourceforge.net/gar/?rev=5139&view=rev Author: dmichelsen Date: 2009-06-03 10:19:12 +0000 (Wed, 03 Jun 2009) Log Message: ----------- zsh: Update to 4.3.10 Modified Paths: -------------- csw/mgar/pkg/zsh/trunk/Makefile csw/mgar/pkg/zsh/trunk/checksums Modified: csw/mgar/pkg/zsh/trunk/Makefile =================================================================== --- csw/mgar/pkg/zsh/trunk/Makefile 2009-06-03 10:14:19 UTC (rev 5138) +++ csw/mgar/pkg/zsh/trunk/Makefile 2009-06-03 10:19:12 UTC (rev 5139) @@ -1,5 +1,5 @@ GARNAME = zsh -GARVERSION = 4.3.9 +GARVERSION = 4.3.10 CATEGORIES = devel DESCRIPTION = Powerful UNIX shell Modified: csw/mgar/pkg/zsh/trunk/checksums =================================================================== --- csw/mgar/pkg/zsh/trunk/checksums 2009-06-03 10:14:19 UTC (rev 5138) +++ csw/mgar/pkg/zsh/trunk/checksums 2009-06-03 10:19:12 UTC (rev 5139) @@ -1,4 +1,4 @@ -0539d0a590e545ad8c40ff8c97e94538 download/zsh-4.3.9.tar.bz2 842c07918a370f97ef79b3eda4b86719 download/CSWzsh.gspec 72d6d1fda29bc08af1df29d7a1870dc7 download/CSWzsh.postinstall b75df6a79ee632a6b6866c587c487796 download/CSWzsh.postremove +74c5b275544400082a1cde806c98682a download/zsh-4.3.10.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jun 3 12:42:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 03 Jun 2009 10:42:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[5140] csw/mgar/pkg/x11/xcb-proto/trunk/Makefile Message-ID: Revision: 5140 http://gar.svn.sourceforge.net/gar/?rev=5140&view=rev Author: dmichelsen Date: 2009-06-03 10:42:34 +0000 (Wed, 03 Jun 2009) Log Message: ----------- x11/xcb-proto: Relocate python files Modified Paths: -------------- csw/mgar/pkg/x11/xcb-proto/trunk/Makefile Modified: csw/mgar/pkg/x11/xcb-proto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xcb-proto/trunk/Makefile 2009-06-03 10:19:12 UTC (rev 5139) +++ csw/mgar/pkg/x11/xcb-proto/trunk/Makefile 2009-06-03 10:42:34 UTC (rev 5140) @@ -37,8 +37,15 @@ UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz BUILD64 = 1 + CONFIGURE_ARGS = $(DIRPATHS) + +PYTHON_PREFIX=$(BUILD_PREFIX)/lib/python/site-packages + +EXTRA_PAX_ARGS = -s ',^.*/\(xcbgen/.*\.py\),.$(BUILD_PREFIX)/lib/python/site-packages/\1,' +EXTRA_PAX_ARGS += -s ',^\.$(libdir)/python.*,,' + EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' SPKG_CLASSES = none cswpycompile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Jun 3 13:42:17 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 03 Jun 2009 11:42:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[5141] csw/mgar/pkg/cswclassutils/trunk Message-ID: Revision: 5141 http://gar.svn.sourceforge.net/gar/?rev=5141&view=rev Author: bonivart Date: 2009-06-03 11:42:17 +0000 (Wed, 03 Jun 2009) Log Message: ----------- cswclassutils: add AUTOENABLE to non-SMF services (#3635) Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/Makefile csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-06-03 10:42:34 UTC (rev 5140) +++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-06-03 11:42:17 UTC (rev 5141) @@ -1,5 +1,5 @@ GARNAME = cswclassutils -GARVERSION = 1.15 +GARVERSION = 1.16 CATEGORIES = utils DESCRIPTION = CSW class action utilities Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2009-06-03 10:42:34 UTC (rev 5140) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2009-06-03 11:42:17 UTC (rev 5141) @@ -292,10 +292,16 @@ done # Start service - echo Starting $service ... - # fix permissions temporarily since 644 is used until verification - /usr/bin/chmod 744 /etc/init.d/$service - /etc/init.d/$service start > /dev/null 2>&1 + AUTOENABLE="yes" + if [ "`grep '^#AUTOENABLE' $dest`" ]; then + AUTOENABLE=`grep '^#AUTOENABLE' $dest | awk '{print $2}' | /usr/xpg4/bin/tr -s '[:upper:]' '[:lower:]'` + fi + if [ "$AUTOENABLE" != "no" -a "$AUTOENABLE" != "false" ]; then + echo Starting $service ... + # fix permissions temporarily since 644 is used until verification + /usr/bin/chmod 744 /etc/init.d/$service + /etc/init.d/$service start > /dev/null 2>&1 + fi fi fi done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Wed Jun 3 18:57:17 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Wed, 03 Jun 2009 16:57:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[5142] csw/mgar/pkg Message-ID: Revision: 5142 http://gar.svn.sourceforge.net/gar/?rev=5142&view=rev Author: skayser Date: 2009-06-03 16:57:16 +0000 (Wed, 03 Jun 2009) Log Message: ----------- dante: initial commit Added Paths: ----------- csw/mgar/pkg/dante/ csw/mgar/pkg/dante/branches/ csw/mgar/pkg/dante/tags/ csw/mgar/pkg/dante/trunk/ csw/mgar/pkg/dante/trunk/Makefile csw/mgar/pkg/dante/trunk/checksums csw/mgar/pkg/dante/trunk/files/ csw/mgar/pkg/dante/trunk/files/CSWdante.cswdante Property changes on: csw/mgar/pkg/dante/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/dante/trunk/Makefile =================================================================== --- csw/mgar/pkg/dante/trunk/Makefile (rev 0) +++ csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 16:57:16 UTC (rev 5142) @@ -0,0 +1,85 @@ +# Todo +# * Add changelog.CSW +# * Compare with current catalog package WRT to config file etc. +GARNAME = dante +GARVERSION = 1.1.19 +CATEGORIES = net + +DESCRIPTION = Dante SOCKS packages +define BLURB + Dante is a circuit-level firewall/proxy that can be used to provide + convenient and secure network connectivity to a wide range of hosts + while requiring only the server Dante runs on to have external network + connectivity. + + Once installed, Dante can in most cases be made transparent to the + clients while offering detailed access control and logging facilities to + the server administrator. +endef + +MASTER_SITES = ftp://ftp.inet.no/pub/socks/ +MASTER_SITES += ftp://ftp.inet.no/pub/socks/old/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +SPKG_SOURCEURL = http://www.inet.no/dante/ + +PACKAGES = CSWlibsocks CSWdante CSWdanteclient + +SPKG_DESC_CSWlibsocks = Dante SOCKS runtime libraries +SPKG_DESC_CSWdante = Dante SOCKS (v4 and v5) proxy daemon +SPKG_DESC_CSWdanteclient = Dante SOCKS wrapper to SOCKsify applications +SPKG_CLASSES_CSWdante = none cswinitsmf + +CATALOGNAME_CSWdanteclient = dante-client + +# There is no pkg compiling against dante right now, just drop the +# header file +EXTRA_MERGE_EXCLUDE_FILES = $(includedir)/socks.h + +# Would have liked to keep it simple and just put *.sockd.* and +# *.socks.* in the server/client package, but then some _RT end up in +# the client package also. Seems as if files can be matched by multiple +# packages. +PKGFILES_CSWlibsocks = $(PKGFILES_RT) +PKGFILES_CSWdante = .*sockd.* /etc/opt/csw/init.d/cswdante +PKGFILES_CSWdanteclient = $(mandir)/.*socks.* +PKGFILES_CSWdanteclient += $(docdir)/.*socks.* +PKGFILES_CSWdanteclient += $(bindir)/.*socks.* + +REQUIRED_PKGS_CSWdante = CSWlibsocks CSWcswclassutils CSWtcpwrap +REQUIRED_PKGS_CSWdanteclient = CSWlibsocks + +# CSWlibsocks not yet installed on the build farm +ENABLE_CHECK = 0 + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +TEST_SCRIPTS = + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-socks-conf=$(sysconfdir)/socks.conf +CONFIGURE_ARGS += --with-sockd-conf=$(sysconfdir)/sockd.conf +CONFIGURE_ARGS += --with-pidfile=/var/opt/csw/run/sockd.pid + +# Don't bother about the "not found" modules after the ./configure run, +# they are commercial add-ons (http://www.inet.no/dante/module.html). + +PROTOTYPE_FILTER = awk '\ + $$$$3 ~ /\/init.d\/cswdante$$$$/ { $$$$2 = "cswinitsmf" } \ + { print }' + +include gar/category.mk + +post-install-modulated: DOCDEST = $(DESTDIR)$(docdir)/$(GARNAME) +post-install-modulated: DOCS = CREDITS NEWS SUPPORT +post-install-modulated: + @ginstall -d $(DOCDEST)/examples + @cp $(WORKSRC)/example/*.conf $(DOCDEST)/examples + @$(foreach D,$(DOCS),cp $(WORKSRC)/$(D) $(DOCDEST);) + + @ginstall -d $(DESTDIR)/etc/opt/csw/init.d + @cp $(FILEDIR)/CSWdante.cswdante $(DESTDIR)/etc/opt/csw/init.d/cswdante + + # /var/opt/csw/run is not in CSWcommon + @ginstall -d /var/opt/csw/run + @$(MAKECOOKIE) Added: csw/mgar/pkg/dante/trunk/checksums =================================================================== --- csw/mgar/pkg/dante/trunk/checksums (rev 0) +++ csw/mgar/pkg/dante/trunk/checksums 2009-06-03 16:57:16 UTC (rev 5142) @@ -0,0 +1 @@ +58b56d1e964f3f0186f3eeed3d95d9a4 download/dante-1.1.19.tar.gz Added: csw/mgar/pkg/dante/trunk/files/CSWdante.cswdante =================================================================== --- csw/mgar/pkg/dante/trunk/files/CSWdante.cswdante (rev 0) +++ csw/mgar/pkg/dante/trunk/files/CSWdante.cswdante 2009-06-03 16:57:16 UTC (rev 5142) @@ -0,0 +1,43 @@ +#!/sbin/sh +# Simple init script for dante. +# +#AUTOENABLE no + +PATH=/usr/bin:/opt/csw/bin:/usr/sbin + +PIDFILE=/var/opt/csw/run/sockd.pid +CONFIG=/opt/csw/etc/sockd.conf +CONFIG_LOCAL=/etc/opt/csw/etc/sockd.conf + +[ -r $CONFIG_LOCAL ] && CONFIG=$CONFIG_LOCAL + +case $1 in + 'start') + if [ -f "$CONFIG" ]; then + /opt/csw/sbin/sockd -D -f $CONFIG + else + echo "No config file $CONFFILE. Not starting cswdante." + fi + ;; + 'stop') + if [ -f "$PIDFILE" ]; then + /usr/bin/kill `/usr/bin/cat $PIDFILE` + fi + ;; + 'restart') + # Kill everything + $0 stop + $0 start + ;; + 'reload') + # Make the parent process reload the config file, but leave + # child processes untouched. + if [ -f "$PIDFILE" ]; then + /usr/bin/kill -HUP `/usr/bin/cat $PIDFILE` + fi + ;; + *) + echo "Usage: $0 { start | stop | restart | reload }" + exit 1 + ;; +esac This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Wed Jun 3 19:54:57 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Wed, 03 Jun 2009 17:54:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5143] csw/mgar/pkg/dante/trunk/Makefile Message-ID: Revision: 5143 http://gar.svn.sourceforge.net/gar/?rev=5143&view=rev Author: skayser Date: 2009-06-03 17:54:57 +0000 (Wed, 03 Jun 2009) Log Message: ----------- dante: updated Todo Modified Paths: -------------- csw/mgar/pkg/dante/trunk/Makefile Modified: csw/mgar/pkg/dante/trunk/Makefile =================================================================== --- csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 16:57:16 UTC (rev 5142) +++ csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 17:54:57 UTC (rev 5143) @@ -1,6 +1,7 @@ # Todo # * Add changelog.CSW # * Compare with current catalog package WRT to config file etc. +# * Client libraries ignore SOCKS_CONF, fix possible culprit issetguid() GARNAME = dante GARVERSION = 1.1.19 CATEGORIES = net This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Wed Jun 3 20:58:20 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Wed, 03 Jun 2009 18:58:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5144] csw/mgar/pkg/dante/trunk/Makefile Message-ID: Revision: 5144 http://gar.svn.sourceforge.net/gar/?rev=5144&view=rev Author: skayser Date: 2009-06-03 18:58:20 +0000 (Wed, 03 Jun 2009) Log Message: ----------- dante: preliminary workaround for missing issetugid() Modified Paths: -------------- csw/mgar/pkg/dante/trunk/Makefile Modified: csw/mgar/pkg/dante/trunk/Makefile =================================================================== --- csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 17:54:57 UTC (rev 5143) +++ csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 18:58:20 UTC (rev 5144) @@ -71,6 +71,17 @@ include gar/category.mk +# Fix missing issetugid on Solaris 8, it is not nice, but the best i can +# come up with for now, ref. +# http://bugs.gentoo.org/attachment.cgi?id=180390 +# issetugid(2) on a Solaris 10 box (WRT to concerns) +# This should be revamped into a patch for libscompat/issetugid.c +post-extract-modulated: + @perl -pi -e '\ + s/int issetugid __P\(\(void\)\)/#define issetugid() (getuid() != geteuid()) || (getgid() != getegid())/' \ + $(WORKSRC)/include/common.h + @$(MAKECOOKIE) + post-install-modulated: DOCDEST = $(DESTDIR)$(docdir)/$(GARNAME) post-install-modulated: DOCS = CREDITS NEWS SUPPORT post-install-modulated: @@ -82,5 +93,5 @@ @cp $(FILEDIR)/CSWdante.cswdante $(DESTDIR)/etc/opt/csw/init.d/cswdante # /var/opt/csw/run is not in CSWcommon - @ginstall -d /var/opt/csw/run + @ginstall -d $(DESTDIR)/var/opt/csw/run @$(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 Wed Jun 3 21:42:00 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 03 Jun 2009 19:42:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[5145] csw/mgar/pkg Message-ID: Revision: 5145 http://gar.svn.sourceforge.net/gar/?rev=5145&view=rev Author: dmichelsen Date: 2009-06-03 19:42:00 +0000 (Wed, 03 Jun 2009) Log Message: ----------- bdb: Move from bdb47 to bdb as new general package Modified Paths: -------------- csw/mgar/pkg/bdb/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/bdb/ Removed Paths: ------------- csw/mgar/pkg/bdb47/ Modified: csw/mgar/pkg/bdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/bdb47/trunk/Makefile 2009-05-27 21:50:22 UTC (rev 5079) +++ csw/mgar/pkg/bdb/trunk/Makefile 2009-06-03 19:42:00 UTC (rev 5145) @@ -30,7 +30,7 @@ BUILD64 = 1 CONFIGURE_SCRIPTS = dist -prefix = $(BUILD_PREFIX)/bdb47 +#prefix = $(BUILD_PREFIX)/bdb47 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-compat185 CONFIGURE_ARGS += --enable-o_direct @@ -44,32 +44,32 @@ CONFIGURE_ARGS += --with-tcl=$(libdir) endif -FIXCONFIG_DIRS = $(DESTDIR)$(prefix)/bdb47/lib +#FIXCONFIG_DIRS = $(DESTDIR)$(prefix)/bdb47/lib # bdb tests are *very* time consuming TEST_SCRIPTS = NO_ISAEXEC = 1 -PACKAGES = CSWbdb47 CSWbdb47-devel CSWbdb47-doc +PACKAGES = CSWbdb CSWbdb-devel CSWbdb-doc -CATALOGNAME_CSWbdb47 = berkeleydb47 -CATALOGNAME_CSWbdb47-devel = berkeleydb47_devel -CATALOGNAME_CSWbdb47-doc = berkeleydb47_doc +CATALOGNAME_CSWbdb = berkeleydb +CATALOGNAME_CSWbdb-devel = berkeleydb_devel +CATALOGNAME_CSWbdb-doc = berkeleydb_doc -ARCHALL_CSWbdb47-doc = 1 +ARCHALL_CSWbdb-doc = 1 -SPKG_DESC_CSWbdb47 = BerkeleyDB 4.7 embedded database libraries and utilities -SPKG_DESC_CSWbdb47-devel = BerkeleyDB 4.7 development support -SPKG_DESC_CSWbdb47-doc = BerkeleyDB 4.7 documentation +SPKG_DESC_CSWbdb = BerkeleyDB 4.7 embedded database libraries and utilities +SPKG_DESC_CSWbdb-devel = BerkeleyDB 4.7 development support +SPKG_DESC_CSWbdb-doc = BerkeleyDB 4.7 documentation -REQUIRED_PKGS_CSWbdb47-devel = CSWbdb47 +REQUIRED_PKGS_CSWbdb-devel = CSWbdb LICENSE = LICENSE -PKGFILES_CSWbdb47-doc = $(prefix)/docs/.* +PKGFILES_CSWbdb-doc = $(prefix)/docs/.* -PKGFILES_CSWbdb47-devel = $(PKGFILES_DEVEL) +PKGFILES_CSWbdb-devel = $(PKGFILES_DEVEL) include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Thu Jun 4 01:39:42 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Wed, 03 Jun 2009 23:39:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[5146] csw/mgar/pkg/dante/trunk Message-ID: Revision: 5146 http://gar.svn.sourceforge.net/gar/?rev=5146&view=rev Author: skayser Date: 2009-06-03 23:39:42 +0000 (Wed, 03 Jun 2009) Log Message: ----------- dante: added CSW docs, deactived issetugid() workaround, naming like it is now Modified Paths: -------------- csw/mgar/pkg/dante/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/dante/trunk/files/README.CSW csw/mgar/pkg/dante/trunk/files/changelog.CSW Modified: csw/mgar/pkg/dante/trunk/Makefile =================================================================== --- csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 19:42:00 UTC (rev 5145) +++ csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 23:39:42 UTC (rev 5146) @@ -1,7 +1,6 @@ # Todo -# * Add changelog.CSW # * Compare with current catalog package WRT to config file etc. -# * Client libraries ignore SOCKS_CONF, fix possible culprit issetguid() +# * Ponder about the SOCKS_CONF / issetguid() issue GARNAME = dante GARVERSION = 1.1.19 CATEGORIES = net @@ -23,31 +22,21 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz SPKG_SOURCEURL = http://www.inet.no/dante/ -PACKAGES = CSWlibsocks CSWdante CSWdanteclient +PACKAGES = CSWlibsocks CSWdante -SPKG_DESC_CSWlibsocks = Dante SOCKS runtime libraries +SPKG_DESC_CSWlibsocks = Dante SOCKS runtime libraries (and socksify wrapper) SPKG_DESC_CSWdante = Dante SOCKS (v4 and v5) proxy daemon -SPKG_DESC_CSWdanteclient = Dante SOCKS wrapper to SOCKsify applications SPKG_CLASSES_CSWdante = none cswinitsmf -CATALOGNAME_CSWdanteclient = dante-client - -# There is no pkg compiling against dante right now, just drop the -# header file +# There is no pkg compiling against dante right now, just drop the .h file EXTRA_MERGE_EXCLUDE_FILES = $(includedir)/socks.h -# Would have liked to keep it simple and just put *.sockd.* and -# *.socks.* in the server/client package, but then some _RT end up in -# the client package also. Seems as if files can be matched by multiple -# packages. -PKGFILES_CSWlibsocks = $(PKGFILES_RT) +PKGFILES_CSWlibsocks = $(PKGFILES_RT) .*socks.* +PKGFILES_CSWlibsocks += $(addprefix $(docdir)/,NEWS SUPPORT CREDITS ) +PKGFILES_CSWlibsocks += $(docdir)/*.CSW PKGFILES_CSWdante = .*sockd.* /etc/opt/csw/init.d/cswdante -PKGFILES_CSWdanteclient = $(mandir)/.*socks.* -PKGFILES_CSWdanteclient += $(docdir)/.*socks.* -PKGFILES_CSWdanteclient += $(bindir)/.*socks.* REQUIRED_PKGS_CSWdante = CSWlibsocks CSWcswclassutils CSWtcpwrap -REQUIRED_PKGS_CSWdanteclient = CSWlibsocks # CSWlibsocks not yet installed on the build farm ENABLE_CHECK = 0 @@ -71,23 +60,29 @@ include gar/category.mk +# The SOCKS_CONF and issetugid() issue needs some thought. Are there any +# secure alternative to the simple get{ug}id below? Could ask upstream. +# # Fix missing issetugid on Solaris 8, it is not nice, but the best i can # come up with for now, ref. # http://bugs.gentoo.org/attachment.cgi?id=180390 -# issetugid(2) on a Solaris 10 box (WRT to concerns) -# This should be revamped into a patch for libscompat/issetugid.c -post-extract-modulated: - @perl -pi -e '\ - s/int issetugid __P\(\(void\)\)/#define issetugid() (getuid() != geteuid()) || (getgid() != getegid())/' \ - $(WORKSRC)/include/common.h - @$(MAKECOOKIE) +# issetugid(2) on a Solaris 10 box (WRT to concerns) +# +# If at all this needs to be revamped into a patch for libscompat/issetugid.c +#post-extract-modulated: +# @perl -pi -e '\ +# s/int issetugid __P\(\(void\)\)/#define issetugid() (getuid() != geteuid()) || (getgid() != getegid())/' \ +# $(WORKSRC)/include/common.h +# @$(MAKECOOKIE) post-install-modulated: DOCDEST = $(DESTDIR)$(docdir)/$(GARNAME) post-install-modulated: DOCS = CREDITS NEWS SUPPORT +post-install-modulated: CSWDOCS = README.CSW changelog.CSW post-install-modulated: @ginstall -d $(DOCDEST)/examples @cp $(WORKSRC)/example/*.conf $(DOCDEST)/examples - @$(foreach D,$(DOCS),cp $(WORKSRC)/$(D) $(DOCDEST);) + @$(foreach D,$(DOCS), cp $(WORKSRC)/$(D) $(DOCDEST);) + @$(foreach D,$(CSWDOCS), cp $(FILEDIR)/$(D) $(DOCDEST);) @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @cp $(FILEDIR)/CSWdante.cswdante $(DESTDIR)/etc/opt/csw/init.d/cswdante Added: csw/mgar/pkg/dante/trunk/files/README.CSW =================================================================== --- csw/mgar/pkg/dante/trunk/files/README.CSW (rev 0) +++ csw/mgar/pkg/dante/trunk/files/README.CSW 2009-06-03 23:39:42 UTC (rev 5146) @@ -0,0 +1,13 @@ +Known client issue: $SOCKS_CONF not used +---------------------------------------- + +The Dante socks client libraries are supposed to evaluate the environment +variable $SOCKS_CONF that can be used to specify an alternative config +location. This is _not working_ with this version. + +Dante employs SETUID/SETGID safety checks before evaluating $SOCKS_CONF +and Solaris 8 (our base build platform) does not offer the required system +calls that are used for these checks. Dante hence deactivates looking +for $SOCK_CONF completely. + +This might change in a future version of this package or Dante. Added: csw/mgar/pkg/dante/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/dante/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/dante/trunk/files/changelog.CSW 2009-06-03 23:39:42 UTC (rev 5146) @@ -0,0 +1,5 @@ +dante|libsocks (1.1.19,REV=2009.06.04) + + * Adopted and updated to 1.1.19. + + -- Sebastian Kayser Thu, 4 Jun 2009 01:17:08 +0200 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Thu Jun 4 01:48:00 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Wed, 03 Jun 2009 23:48:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[5147] csw/mgar/pkg/dante/trunk Message-ID: Revision: 5147 http://gar.svn.sourceforge.net/gar/?rev=5147&view=rev Author: skayser Date: 2009-06-03 23:47:59 +0000 (Wed, 03 Jun 2009) Log Message: ----------- dante: tweaked PKGFILES Modified Paths: -------------- csw/mgar/pkg/dante/trunk/Makefile csw/mgar/pkg/dante/trunk/files/README.CSW Modified: csw/mgar/pkg/dante/trunk/Makefile =================================================================== --- csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 23:39:42 UTC (rev 5146) +++ csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 23:47:59 UTC (rev 5147) @@ -32,8 +32,8 @@ EXTRA_MERGE_EXCLUDE_FILES = $(includedir)/socks.h PKGFILES_CSWlibsocks = $(PKGFILES_RT) .*socks.* -PKGFILES_CSWlibsocks += $(addprefix $(docdir)/,NEWS SUPPORT CREDITS ) -PKGFILES_CSWlibsocks += $(docdir)/*.CSW +PKGFILES_CSWlibsocks += $(addprefix $(docdir)/$(GARNAME)/,NEWS SUPPORT CREDITS ) +PKGFILES_CSWlibsocks += $(docdir)/$(GARNAME)/.*CSW PKGFILES_CSWdante = .*sockd.* /etc/opt/csw/init.d/cswdante REQUIRED_PKGS_CSWdante = CSWlibsocks CSWcswclassutils CSWtcpwrap Modified: csw/mgar/pkg/dante/trunk/files/README.CSW =================================================================== --- csw/mgar/pkg/dante/trunk/files/README.CSW 2009-06-03 23:39:42 UTC (rev 5146) +++ csw/mgar/pkg/dante/trunk/files/README.CSW 2009-06-03 23:47:59 UTC (rev 5147) @@ -7,7 +7,6 @@ Dante employs SETUID/SETGID safety checks before evaluating $SOCKS_CONF and Solaris 8 (our base build platform) does not offer the required system -calls that are used for these checks. Dante hence deactivates looking -for $SOCK_CONF completely. +calls. Dante hence deactivates looking for $SOCK_CONF. This might change in a future version of this package or Dante. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Thu Jun 4 02:28:07 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Thu, 04 Jun 2009 00:28:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5148] csw/mgar/pkg/dante/trunk/Makefile Message-ID: Revision: 5148 http://gar.svn.sourceforge.net/gar/?rev=5148&view=rev Author: skayser Date: 2009-06-04 00:28:07 +0000 (Thu, 04 Jun 2009) Log Message: ----------- dante: license included, pkgs now each have their own docs Modified Paths: -------------- csw/mgar/pkg/dante/trunk/Makefile Modified: csw/mgar/pkg/dante/trunk/Makefile =================================================================== --- csw/mgar/pkg/dante/trunk/Makefile 2009-06-03 23:47:59 UTC (rev 5147) +++ csw/mgar/pkg/dante/trunk/Makefile 2009-06-04 00:28:07 UTC (rev 5148) @@ -1,5 +1,4 @@ # Todo -# * Compare with current catalog package WRT to config file etc. # * Ponder about the SOCKS_CONF / issetguid() issue GARNAME = dante GARVERSION = 1.1.19 @@ -21,6 +20,7 @@ MASTER_SITES += ftp://ftp.inet.no/pub/socks/old/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz SPKG_SOURCEURL = http://www.inet.no/dante/ +LICENSE = LICENSE PACKAGES = CSWlibsocks CSWdante @@ -32,9 +32,9 @@ EXTRA_MERGE_EXCLUDE_FILES = $(includedir)/socks.h PKGFILES_CSWlibsocks = $(PKGFILES_RT) .*socks.* -PKGFILES_CSWlibsocks += $(addprefix $(docdir)/$(GARNAME)/,NEWS SUPPORT CREDITS ) -PKGFILES_CSWlibsocks += $(docdir)/$(GARNAME)/.*CSW +PKGFILES_CSWlibsocks += $(docdir)/libsocks/.* PKGFILES_CSWdante = .*sockd.* /etc/opt/csw/init.d/cswdante +PKGFILES_CSWdante += $(docdir)/dante/.* REQUIRED_PKGS_CSWdante = CSWlibsocks CSWcswclassutils CSWtcpwrap @@ -75,18 +75,33 @@ # $(WORKSRC)/include/common.h # @$(MAKECOOKIE) -post-install-modulated: DOCDEST = $(DESTDIR)$(docdir)/$(GARNAME) -post-install-modulated: DOCS = CREDITS NEWS SUPPORT -post-install-modulated: CSWDOCS = README.CSW changelog.CSW -post-install-modulated: +post-install-libsocks: DOCDEST = $(DESTDIR)$(docdir)/libsocks +post-install-libsocks: DOCS = CREDITS NEWS SUPPORT +post-install-libsocks: CSWDOCS = README.CSW changelog.CSW +post-install-libsocks: @ginstall -d $(DOCDEST)/examples - @cp $(WORKSRC)/example/*.conf $(DOCDEST)/examples + @cp $(WORKSRC)/example/socks*.conf $(DOCDEST)/examples @$(foreach D,$(DOCS), cp $(WORKSRC)/$(D) $(DOCDEST);) @$(foreach D,$(CSWDOCS), cp $(FILEDIR)/$(D) $(DOCDEST);) + @$(MAKECOOKIE) + +post-install-dante: DOCDEST = $(DESTDIR)$(docdir)/dante +post-install-dante: DOCS = CREDITS NEWS SUPPORT +post-install-dante: CSWDOCS = changelog.CSW +post-install-dante: + @ginstall -d $(DOCDEST)/examples + @cp $(WORKSRC)/example/sockd*.conf $(DOCDEST)/examples + @$(foreach D,$(DOCS), cp $(WORKSRC)/$(D) $(DOCDEST);) + @$(foreach D,$(CSWDOCS), cp $(FILEDIR)/$(D) $(DOCDEST);) + @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @cp $(FILEDIR)/CSWdante.cswdante $(DESTDIR)/etc/opt/csw/init.d/cswdante # /var/opt/csw/run is not in CSWcommon @ginstall -d $(DESTDIR)/var/opt/csw/run @$(MAKECOOKIE) + + +post-install-modulated: post-install-libsocks post-install-dante + @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jun 4 02:29:00 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 04 Jun 2009 00:29:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[5149] csw/mgar/pkg/gitosis/trunk/Makefile Message-ID: Revision: 5149 http://gar.svn.sourceforge.net/gar/?rev=5149&view=rev Author: bdwalton Date: 2009-06-04 00:29:00 +0000 (Thu, 04 Jun 2009) Log Message: ----------- Leverage cswclassutils to add a gitosis user/group during install, which sets up the gitosis ~/ in /var/opt/csw/. This is where the repositories will be hosted from. Prune .pyc and .pyo files from the merge...use cswpycompile when it's available too. Modified Paths: -------------- csw/mgar/pkg/gitosis/trunk/Makefile Modified: csw/mgar/pkg/gitosis/trunk/Makefile =================================================================== --- csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 00:28:07 UTC (rev 5148) +++ csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 00:29:00 UTC (rev 5149) @@ -18,7 +18,7 @@ PREREQUISITE_PKGS_CSWgitosis = CSWpython -REQUIRED_PKGS_CSWgitosis = CSWgit CSWpython +REQUIRED_PKGS_CSWgitosis = CSWgit CSWpython CSWcswclassutils GIT_REPOS = git://eagain.net/gitosis.git GIT_USE_PROXY = 1 @@ -42,6 +42,15 @@ INSTALL_SCRIPTS = $(WORKSRC)/setup.py INSTALL_ARGS = --root $(DESTDIR) --single-version-externally-managed +CSWUG = gitosis:gitosis:Gitosis Host:/var/opt/csw/gitosis:/bin/bash:m: +CSWUGD = $(INSTALLISADIR)/opt/csw/etc/pkg/CSW$(GARNAME) + +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc + +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/CSWgitosis\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } { print }' + +SPKG_CLASSES = none cswusergroup + include gar/category.mk PATH := /opt/csw/gnu:$(PATH) @@ -49,3 +58,8 @@ # Set a slightly altered revstamp to indicate that we're not using a # pressed release. SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHLEVEL) + +post-install-modulated: + @( gmkdir -p $(CSWUGD); \ + echo "$(CSWUG)" > $(CSWUGD)/cswusergroup ) + $(MAKECOOKIE) \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jun 4 03:37:44 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 04 Jun 2009 01:37:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5150] csw/mgar/pkg/gitosis/trunk/Makefile Message-ID: Revision: 5150 http://gar.svn.sourceforge.net/gar/?rev=5150&view=rev Author: bdwalton Date: 2009-06-04 01:37:43 +0000 (Thu, 04 Jun 2009) Log Message: ----------- * Don't create ~/ with cswusergroup * Do install ~/ and some bash init files with package. * Do set ownership of ~/ files to gitosis:gitosis in using another class. * Do ensure /opt/csw/bin is at the head of PATH so python is csw python, which will make gitosis-init happy when run. Modified Paths: -------------- csw/mgar/pkg/gitosis/trunk/Makefile Modified: csw/mgar/pkg/gitosis/trunk/Makefile =================================================================== --- csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 00:29:00 UTC (rev 5149) +++ csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 01:37:43 UTC (rev 5150) @@ -18,7 +18,7 @@ PREREQUISITE_PKGS_CSWgitosis = CSWpython -REQUIRED_PKGS_CSWgitosis = CSWgit CSWpython CSWcswclassutils +REQUIRED_PKGS_CSWgitosis = CSWgit CSWpython CSWcswclassutils CSWpysetuptools GIT_REPOS = git://eagain.net/gitosis.git GIT_USE_PROXY = 1 @@ -42,14 +42,15 @@ INSTALL_SCRIPTS = $(WORKSRC)/setup.py INSTALL_ARGS = --root $(DESTDIR) --single-version-externally-managed -CSWUG = gitosis:gitosis:Gitosis Host:/var/opt/csw/gitosis:/bin/bash:m: +GITOSISHOME = /var/opt/csw/gitosis +CSWUG = gitosis:gitosis:Gitosis Host:$(GITOSISHOME):/bin/bash:: CSWUGD = $(INSTALLISADIR)/opt/csw/etc/pkg/CSW$(GARNAME) EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/CSWgitosis\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/CSWgitosis\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" }; $$$$3 ~ /\/var\/opt\/csw\/gitosis/ { $$$$2 = "ugfiles"; $$$$5 = "gitosis"; $$$$6 = "gitosis" } { print }' -SPKG_CLASSES = none cswusergroup +SPKG_CLASSES = none cswusergroup ugfiles include gar/category.mk @@ -61,5 +62,8 @@ post-install-modulated: @( gmkdir -p $(CSWUGD); \ - echo "$(CSWUG)" > $(CSWUGD)/cswusergroup ) + echo "$(CSWUG)" > $(CSWUGD)/cswusergroup; \ + gmkdir -p $(INSTALLISADIR)$(GITOSISHOME); \ + echo 'PATH=/opt/csw/bin:$$PATH' > $(INSTALLISADIR)$(GITOSISHOME)/.bashrc; \ + echo 'PATH=/opt/csw/bin:$$PATH' > $(INSTALLISADIR)$(GITOSISHOME)/.bash_profile; ) $(MAKECOOKIE) \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jun 4 03:50:55 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 04 Jun 2009 01:50:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5151] csw/mgar/pkg/gitosis/trunk/Makefile Message-ID: Revision: 5151 http://gar.svn.sourceforge.net/gar/?rev=5151&view=rev Author: bdwalton Date: 2009-06-04 01:50:55 +0000 (Thu, 04 Jun 2009) Log Message: ----------- Set NP instead of *LK* for gitosis user password - this is required for the ssh-based access to the account. Modified Paths: -------------- csw/mgar/pkg/gitosis/trunk/Makefile Modified: csw/mgar/pkg/gitosis/trunk/Makefile =================================================================== --- csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 01:37:43 UTC (rev 5150) +++ csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 01:50:55 UTC (rev 5151) @@ -12,6 +12,12 @@ gitosis aims to make hosting git repos easier and safer. It manages multiple repositories under one user account, using SSH keys to identify users. End users do not need shell accounts on the server, they will talk to one shared account that will not let them run arbitrary commands. endef +define CSWgitosis_postinstall +#!/bin/sh + +/usr/bin/passwd -N gitosis +endef + PACKAGES = CSWgitosis CATALOGNAME_CSWgitosis = $(GARNAME) ARCHALL_CSWgitosis = 1 @@ -66,4 +72,4 @@ gmkdir -p $(INSTALLISADIR)$(GITOSISHOME); \ echo 'PATH=/opt/csw/bin:$$PATH' > $(INSTALLISADIR)$(GITOSISHOME)/.bashrc; \ echo 'PATH=/opt/csw/bin:$$PATH' > $(INSTALLISADIR)$(GITOSISHOME)/.bash_profile; ) - $(MAKECOOKIE) \ No newline at end of file + $(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jun 4 04:39:44 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 04 Jun 2009 02:39:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5152] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 5152 http://gar.svn.sourceforge.net/gar/?rev=5152&view=rev Author: bdwalton Date: 2009-06-04 02:39:44 +0000 (Thu, 04 Jun 2009) Log Message: ----------- Now that gcc4 is out and has ISALIST capabilities, I'm committing this patch that was discussed some weeks back. Modified Paths: -------------- csw/mgar/gar/v2/gar.conf.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-06-04 01:50:55 UTC (rev 5151) +++ csw/mgar/gar/v2/gar.conf.mk 2009-06-04 02:39:44 UTC (rev 5152) @@ -477,7 +477,7 @@ OPTFLAGS ?= $(strip $($(GARCOMPILER)_CC_FLAGS) $(_CATEGORY_OPTFLAGS) $(EXTRA_OPTFLAGS)) GCC3_LD_OPTIONS = -R$(GCC3_CC_HOME)/lib $(EXTRA_GCC3_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) -GCC4_LD_OPTIONS = -R$(GCC4_CC_HOME)/lib $(EXTRA_GCC4_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) +GCC4_LD_OPTIONS = -R$(GCC4_CC_HOME)/lib/\$$ISALIST $(EXTRA_GCC4_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) SOS11_LD_OPTIONS = $(EXTRA_SOS11_LD_OPTIONS) $(EXTRA_SOS_LD_OPTIONS) SOS12_LD_OPTIONS = $(EXTRA_SOS12_LD_OPTIONS) $(EXTRA_SOS_LD_OPTIONS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jun 4 05:04:00 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 04 Jun 2009 03:04:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[5153] csw/mgar/pkg/gitosis/trunk Message-ID: Revision: 5153 http://gar.svn.sourceforge.net/gar/?rev=5153&view=rev Author: bdwalton Date: 2009-06-04 03:04:00 +0000 (Thu, 04 Jun 2009) Log Message: ----------- * Add a README.csw that documents the non-automated post-install requirements. * Copy in sample config files and notes from the author as well. Modified Paths: -------------- csw/mgar/pkg/gitosis/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/gitosis/trunk/files/README.csw Modified: csw/mgar/pkg/gitosis/trunk/Makefile =================================================================== --- csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 02:39:44 UTC (rev 5152) +++ csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 03:04:00 UTC (rev 5153) @@ -71,5 +71,8 @@ echo "$(CSWUG)" > $(CSWUGD)/cswusergroup; \ gmkdir -p $(INSTALLISADIR)$(GITOSISHOME); \ echo 'PATH=/opt/csw/bin:$$PATH' > $(INSTALLISADIR)$(GITOSISHOME)/.bashrc; \ - echo 'PATH=/opt/csw/bin:$$PATH' > $(INSTALLISADIR)$(GITOSISHOME)/.bash_profile; ) + echo 'PATH=/opt/csw/bin:$$PATH' > $(INSTALLISADIR)$(GITOSISHOME)/.bash_profile; \ + gmkdir -p $(INSTALLISADIR)/opt/csw/share/doc/gitosis; \ + gcp files/README.csw $(INSTALLISADIR)/opt/csw/share/doc/gitosis/; \ + gcp $(WORKSRC)/*rst $(WORKSRC)/*conf $(WORKSRC)/etc* $(INSTALLISADIR)/opt/csw/share/doc/gitosis/; ) $(MAKECOOKIE) Added: csw/mgar/pkg/gitosis/trunk/files/README.csw =================================================================== --- csw/mgar/pkg/gitosis/trunk/files/README.csw (rev 0) +++ csw/mgar/pkg/gitosis/trunk/files/README.csw 2009-06-04 03:04:00 UTC (rev 5153) @@ -0,0 +1,50 @@ +After installing gitosis, there are a few things that need to be done +before you can get started. It's pretty simple, but not something I +could automate for you. + +First, copy the ssh public key of the first gitosis admin user to +/tmp. From here out, I'll assume that key is /tmp/id_dsa.pub. I'm +also going to use the name 'code' as the hostname for the server +running gitosis and that it is available by ssh from any hosts you'll +be connecting from, including the host where you do the initial +checkout of the gitosis-admin repo. + +Perform the following steps on the gitosis server: + +1. su - gitosis +2. gitosis-init < /tmp/id_dsa.pub + +The server should now be ready to go. Now, in the account holding the +private half of the ssh key you used, run: + +1. cd /path/where/you/wnat/gitosis/checked/out/ +2. git clone gitosis at code:gitosis-admin.git + +If this all worked, you should have +/path/where/you/wnat/gitosis/checked/out/gitosis-admin with the +following as the content: + +/gitosis.conf +/keydir/ +/.git/ + +You can now add users (by placing ssh public keys in keydir/) and +grant access to projects, etc by manipulating gitosis.conf. When +you've made the required changes, check them in and push them up. + +1. git add keydir/*; #add any new keys +2. git add gitosis.conf; # add any changes to the config +3. git commit -m 'added a new user with 2 projects' +4. git push origin master + +If this all worked, code:~gitosis/.gitosis.conf should reflect the +changes you just made. + +For more help, I found this page helpful: +http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-way + +There are also lots of hits on Google. Also, feel free to ping me on +the CSW user list (users at lists.opencsw.org) or at bwalton at opencsw.org. + +Enjoy! +-Ben Walton This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jun 4 05:05:38 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 04 Jun 2009 03:05:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[5154] csw/mgar/pkg/gitosis/trunk/Makefile Message-ID: Revision: 5154 http://gar.svn.sourceforge.net/gar/?rev=5154&view=rev Author: bdwalton Date: 2009-06-04 03:05:38 +0000 (Thu, 04 Jun 2009) Log Message: ----------- pysetuptools is a build dep too. Modified Paths: -------------- csw/mgar/pkg/gitosis/trunk/Makefile Modified: csw/mgar/pkg/gitosis/trunk/Makefile =================================================================== --- csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 03:04:00 UTC (rev 5153) +++ csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-04 03:05:38 UTC (rev 5154) @@ -22,7 +22,7 @@ CATALOGNAME_CSWgitosis = $(GARNAME) ARCHALL_CSWgitosis = 1 -PREREQUISITE_PKGS_CSWgitosis = CSWpython +PREREQUISITE_PKGS_CSWgitosis = CSWpython CSWpysetuptools REQUIRED_PKGS_CSWgitosis = CSWgit CSWpython CSWcswclassutils CSWpysetuptools This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Thu Jun 4 16:30:13 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Thu, 04 Jun 2009 14:30:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5155] csw/mgar/pkg Message-ID: Revision: 5155 http://gar.svn.sourceforge.net/gar/?rev=5155&view=rev Author: skayser Date: 2009-06-04 14:30:13 +0000 (Thu, 04 Jun 2009) Log Message: ----------- scala: non-maintainer commit, GAR-ized build description Added Paths: ----------- csw/mgar/pkg/scala/ csw/mgar/pkg/scala/branches/ csw/mgar/pkg/scala/tags/ csw/mgar/pkg/scala/trunk/ csw/mgar/pkg/scala/trunk/Makefile csw/mgar/pkg/scala/trunk/checksums csw/mgar/pkg/scala/trunk/files/ csw/mgar/pkg/scala/trunk/files/sbaz.properties csw/mgar/pkg/scala/trunk/files/scala.csw Property changes on: csw/mgar/pkg/scala/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/scala/trunk/Makefile =================================================================== --- csw/mgar/pkg/scala/trunk/Makefile (rev 0) +++ csw/mgar/pkg/scala/trunk/Makefile 2009-06-04 14:30:13 UTC (rev 5155) @@ -0,0 +1,89 @@ +# Todo +# * Non-maintainer upload, needs to be checked by Alexander +GARNAME = scala +GARVERSION = 2.7.4 +CATEGORIES = java + +DESCRIPTION = The Scala programming language +define BLURB + Scala is a general purpose programming language designed to express + common programming patterns in a concise, elegant, and type-safe way. It + smoothly integrates features of object-oriented and functional + languages. It is also fully interoperable with Java. +endef + +MASTER_SITES = http://www.scala-lang.org/sites/default/files/linuxsoft_archives/downloads/distrib/files/ +DISTFILES = $(GARNAME)-$(GARVERSION).final.tgz +DISTNAME = $(GARNAME)-$(GARVERSION).final + +SPKG_SOURCEURL = http://www.scala-lang.org/ +SPKG_CLASSES = none cswpreserveconf +REQUIRED_PKGS = CSWcswclassutils +ARCHALL = 1 + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).final.tgz +UPSTREAM_MASTER_SITES = http://www.scala-lang.org/downloads + +BUILD_SCRIPTS = +CONFIGURE_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +PROTOTYPE_FILTER = awk '\ + $$$$3 ~ /meta\/[^/]+.CSW$$$$/ { $$$$2 = "cswpreserveconf" } \ + $$$$3 ~ /config\/[^/]+.CSW$$$$/ { $$$$2 = "cswpreserveconf" } \ + { print }' + +include gar/category.mk + +install-dirs: + @ginstall -d $(DESTDIR)$(datadir)/vim/vimfiles + @ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/config + @ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/bin + @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) + @ginstall -d $(DESTDIR)$(mandir) + @ginstall -d $(DESTDIR)$(bindir) + $(MAKECOOKIE) + +# Binaries go to /opt/csw/share/scala/bin and are then linked to /opt/csw/bin +# XXX: Where did you source the $(FILEDIR) binaries? +install-bin: SCALA_LINKS = scalac fsc scaladoc sbaz +install-bin: + @ginstall -m 0755 $(FILEDIR)/scala.csw $(DESTDIR)$(datadir)/scala/bin/scala + @cd $(DESTDIR)$(datadir)/scala/bin; \ + $(foreach L,$(SCALA_LINKS), ln scala $(L);) + @ginstall -m 0755 $(WORKSRC)/bin/sbaz-setup $(DESTDIR)$(datadir)/scala/bin + @cd $(DESTDIR)$(bindir); for i in ../share/scala/bin/*; do ln -s $$i; done + @rm -rf $(WORKSRC)/bin + $(MAKECOOKIE) + +# Most of the installation goes to /opt/csw/share/scala +install-data: + @mv $(WORKSRC)/misc/scala-tool-support/vim/syntax \ + $(WORKSRC)/misc/scala-tool-support/vim/indent \ + $(WORKSRC)/misc/scala-tool-support/vim/ftdetect \ + $(DESTDIR)$(datadir)/vim + @rm -rf $(WORKSRC)/misc/scala-tool-support/vim + @rm -rf \ + $(WORKSRC)/misc/scala-tool-support/notepad-plus \ + $(WORKSRC)/misc/scala-tool-support/subethaedit \ + $(WORKSRC)/misc/scala-tool-support/textmate \ + $(WORKSRC)/misc/scala-tool-support/xcode \ + $(WORKSRC)/misc/scala-tool-support/textwrangler + + @mv $(WORKSRC)/man/man1 $(DESTDIR)$(mandir); rm -rf $(WORKSRC)/man + @mv $(WORKSRC)/doc/* $(DESTDIR)$(docdir)/$(GARNAME); rm -rf $(WORKSRC)/doc + @mv $(WORKSRC)/* $(DESTDIR)$(datadir)/$(GARNAME) + @$(MAKECOOKIE) + +install-config: + @cp $(FILEDIR)/sbaz.properties \ + $(DESTDIR)$(datadir)/$(GARNAME)/config/sbaz.properties.CSW + @$(foreach F,available description installed universe, \ + mv $(DESTDIR)$(datadir)/$(GARNAME)/meta/$(F) \ + $(DESTDIR)$(datadir)/$(GARNAME)/meta/$(F).CSW; ) + @$(MAKECOOKIE) + +install-custom: install-dirs install-bin install-data install-config + @$(MAKECOOKIE) Added: csw/mgar/pkg/scala/trunk/checksums =================================================================== --- csw/mgar/pkg/scala/trunk/checksums (rev 0) +++ csw/mgar/pkg/scala/trunk/checksums 2009-06-04 14:30:13 UTC (rev 5155) @@ -0,0 +1 @@ +9077f5d083c59f591f044b5295eb2011 download/scala-2.7.4.final.tgz Added: csw/mgar/pkg/scala/trunk/files/sbaz.properties =================================================================== --- csw/mgar/pkg/scala/trunk/files/sbaz.properties (rev 0) +++ csw/mgar/pkg/scala/trunk/files/sbaz.properties 2009-06-04 14:30:13 UTC (rev 5155) @@ -0,0 +1,4 @@ +# uncomment lines and adjust to your needs +#http.proxySet=true +#http.proxyHost=localhost +#http.proxyPort=3128 Added: csw/mgar/pkg/scala/trunk/files/scala.csw =================================================================== --- csw/mgar/pkg/scala/trunk/files/scala.csw (rev 0) +++ csw/mgar/pkg/scala/trunk/files/scala.csw 2009-06-04 14:30:13 UTC (rev 5155) @@ -0,0 +1,71 @@ +#!/bin/sh + +############################################################################## +# Copyright 2002-2009, LAMP/EPFL +# +# This is free software; see the distribution for copying conditions. +# There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. +############################################################################## + +# Finding the root folder for this Scala distribution +SOURCE=$0; +SCRIPT=`basename "$SOURCE"`; +while [ -h "$SOURCE" ]; do + SCRIPT=`basename "$SOURCE"`; + LOOKUP=`ls -ld "$SOURCE"`; + TARGET=`expr "$LOOKUP" : '.*-> \(.*\)$'`; + if expr "${TARGET:-.}/" : '/.*/$' > /dev/null; then + SOURCE=${TARGET:-.}; + else + SOURCE=`dirname "$SOURCE"`/${TARGET:-.}; + fi; +done; +SCALA_HOME=`dirname "$SOURCE"`/..; +SCALA_HOME=`cd "$SCALA_HOME"; pwd`; + +# Constructing the extension classpath +TOOL_CLASSPATH="" +if [ -z "$TOOL_CLASSPATH" ] ; then + for ext in `ls -d "$SCALA_HOME"/lib/*` ; do + if [ -z "$TOOL_CLASSPATH" ] ; then + TOOL_CLASSPATH="$ext" + else + TOOL_CLASSPATH="$TOOL_CLASSPATH:$ext" + fi + done +fi + +if [ -z "$JAVACMD" -a -n "$JAVA_HOME" -a -x "$JAVA_HOME/bin/java" ]; then + JAVACMD="$JAVA_HOME/bin/java" +fi + +# Sol10 ships with Java 5 but we want to default to latest Java version +if [ -z "$JAVA_HOME" -a -z "$JAVACMD" -a -x "/usr/jdk/latest/bin/java" ]; then + JAVACMD="/usr/jdk/latest/bin/java" +fi + +# Sol8/9 does not came with Java 5, so either JAVA_HOME or JAVACMD have to be used +SOLARISVERSION=`uname -r | cut -f2 -d.` +if [ "$SOLARISVERSION" -le 10 -a -z "$JAVA_HOME" -a -z "$JAVACMD" ]; then + echo "Scala requires Java 5 or later. Please download and install the latest" + echo "Java Runtime Environment(JRE) from http://java.sun.com/jre and let" + echo "JAVA_HOME point to the installation directory, e.g." + echo "JAVA_HOME=/opt/jre1.6.0_12; export JAVA_HOME" + exit 1 +fi + +# Reminder: substitution ${JAVA_OPTS:=-Xmx256M -Xms16M} DO NOT work on Solaris +[ -n "$JAVA_OPTS" ] || JAVA_OPTS="-Xmx256M -Xms32M" + +FILENAME=`basename "$0"` + +case "$FILENAME" in + scala) MAIN=scala.tools.nsc.MainGenericRunner ;; + scalac) MAIN=scala.tools.nsc.Main ;; + scaladoc) MAIN=scala.tools.nsc.ScalaDoc ;; + fsc) MAIN=scala.tools.nsc.CompileClient ;; + sbaz) MAIN=sbaz.clui.CommandLine ;; +esac + +exec "${JAVACMD:=java}" $JAVA_OPTS -cp "$TOOL_CLASSPATH" -Dscala.home="$SCALA_HOME" -Denv.classpath="$CLASSPATH" -Denv.emacs="$EMACS" $MAIN "$@" Property changes on: csw/mgar/pkg/scala/trunk/files/scala.csw ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Thu Jun 4 18:27:28 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 04 Jun 2009 16:27:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[5156] csw/mgar/pkg/pkgutil/trunk Message-ID: Revision: 5156 http://gar.svn.sourceforge.net/gar/?rev=5156&view=rev Author: bonivart Date: 2009-06-04 16:27:26 +0000 (Thu, 04 Jun 2009) Log Message: ----------- pkgutil: update to 1.6.1 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 2009-06-04 14:30:13 UTC (rev 5155) +++ csw/mgar/pkg/pkgutil/trunk/Makefile 2009-06-04 16:27:26 UTC (rev 5156) @@ -1,5 +1,5 @@ GARNAME = pkgutil -GARVERSION = 1.6 +GARVERSION = 1.6.1 CATEGORIES = utils DESCRIPTION = Installs Solaris packages easily Modified: csw/mgar/pkg/pkgutil/trunk/checksums =================================================================== --- csw/mgar/pkg/pkgutil/trunk/checksums 2009-06-04 14:30:13 UTC (rev 5155) +++ csw/mgar/pkg/pkgutil/trunk/checksums 2009-06-04 16:27:26 UTC (rev 5156) @@ -2,4 +2,4 @@ e1407c24d47306dbc4cea22dcb291f1d download/CSWpkgutil.postinstall 2fb6c94a2d212f08b71d462082a2d31a download/CSWpkgutil.preremove 4ef9d7ba62987112987311d96e249e3e download/CSWpkgutil.prototype -c86ef868272eec55b2cd930ebe31220c download/pkgutil-1.6.zip +307a3dfee197974c89c2f38da9d0090d download/pkgutil-1.6.1.zip This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jun 4 22:10:21 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 04 Jun 2009 20:10:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5157] csw/mgar/pkg Message-ID: Revision: 5157 http://gar.svn.sourceforge.net/gar/?rev=5157&view=rev Author: bdwalton Date: 2009-06-04 20:10:20 +0000 (Thu, 04 Jun 2009) Log Message: ----------- initial gar recipe creation Added Paths: ----------- csw/mgar/pkg/scponly/ csw/mgar/pkg/scponly/branches/ csw/mgar/pkg/scponly/tags/ csw/mgar/pkg/scponly/trunk/ csw/mgar/pkg/scponly/trunk/Makefile csw/mgar/pkg/scponly/trunk/checksums csw/mgar/pkg/scponly/trunk/files/ Property changes on: csw/mgar/pkg/scponly/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/scponly/trunk/Makefile =================================================================== --- csw/mgar/pkg/scponly/trunk/Makefile (rev 0) +++ csw/mgar/pkg/scponly/trunk/Makefile 2009-06-04 20:10:20 UTC (rev 5157) @@ -0,0 +1,22 @@ +GARNAME = scponly +GARVERSION = 4.8 +CATEGORIES = xtra + +DESCRIPTION = A Restricted Shell +define BLURB +scponly is an alternative 'shell' (of sorts) for system administrators who would like to provide access to remote users to both read and write local files without providing any remote execution priviledges. +endef + +MASTER_SITES = $(SF_MIRROR) +DISTFILES = $(GARNAME)-$(GARVERSION).tgz + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +# If the url used to check for software update is different of MASTER_SITES, then +# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES +# UPSTREAM_MASTER_SITES = + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/scponly/trunk/checksums =================================================================== --- csw/mgar/pkg/scponly/trunk/checksums (rev 0) +++ csw/mgar/pkg/scponly/trunk/checksums 2009-06-04 20:10:20 UTC (rev 5157) @@ -0,0 +1 @@ +139ac9abd7f3b8dbc5c5520745318f8a download/scponly-4.8.tgz 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 Jun 4 22:34:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 04 Jun 2009 20:34:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5158] csw/mgar/pkg/x11/xcb-proto/trunk/Makefile Message-ID: Revision: 5158 http://gar.svn.sourceforge.net/gar/?rev=5158&view=rev Author: dmichelsen Date: 2009-06-04 20:34:09 +0000 (Thu, 04 Jun 2009) Log Message: ----------- x11/xcb-proto: Split off python package Modified Paths: -------------- csw/mgar/pkg/x11/xcb-proto/trunk/Makefile Modified: csw/mgar/pkg/x11/xcb-proto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xcb-proto/trunk/Makefile 2009-06-04 20:10:20 UTC (rev 5157) +++ csw/mgar/pkg/x11/xcb-proto/trunk/Makefile 2009-06-04 20:34:09 UTC (rev 5158) @@ -27,12 +27,15 @@ MASTER_SITES = $(XCB_MASTER_SITES) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -PACKAGES = CSWxcbproto +PACKAGES = CSWxcbproto CSWpyxcbproto PREREQUISITE_PKGS = CSWpython -REQUIRED_PKGS = CSWpython -REQUIRED_PKGS += CSWx11common +REQUIRED_PKGS_CSWxcbproto = CSWx11common +REQUIRED_PKGS_CSWpyxcbproto = CSWxcbproto CSWpython +SPKG_DESC_CSWxcbproto = XCB protocol descriptions (in XML) +SPKG_DESC_CSWpyxcbproto = XCB protocol descriptions (in XML) Python Bindings + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -40,7 +43,6 @@ CONFIGURE_ARGS = $(DIRPATHS) - PYTHON_PREFIX=$(BUILD_PREFIX)/lib/python/site-packages EXTRA_PAX_ARGS = -s ',^.*/\(xcbgen/.*\.py\),.$(BUILD_PREFIX)/lib/python/site-packages/\1,' @@ -51,4 +53,6 @@ SPKG_CLASSES = none cswpycompile REQUIRED_PKGS += CSWcswclassutils +PKGFILES_CSWpyxcbproto = .*\.py + 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 Thu Jun 4 22:39:42 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 04 Jun 2009 20:39:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[5159] csw/mgar/pkg/cswutils/trunk Message-ID: Revision: 5159 http://gar.svn.sourceforge.net/gar/?rev=5159&view=rev Author: dmichelsen Date: 2009-06-04 20:39:42 +0000 (Thu, 04 Jun 2009) Log Message: ----------- cswutils: Minor fixes from Phil Modified Paths: -------------- csw/mgar/pkg/cswutils/trunk/Makefile csw/mgar/pkg/cswutils/trunk/checksums csw/mgar/pkg/cswutils/trunk/files/checkpkg csw/mgar/pkg/cswutils/trunk/files/createpkg Modified: csw/mgar/pkg/cswutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswutils/trunk/Makefile 2009-06-04 20:34:09 UTC (rev 5158) +++ csw/mgar/pkg/cswutils/trunk/Makefile 2009-06-04 20:39:42 UTC (rev 5159) @@ -1,5 +1,5 @@ GARNAME = cswutils -GARVERSION = 1.14.1 +GARVERSION = 1.14.2 CATEGORIES = utils DESCRIPTION = Utilities for CSW maintainers Modified: csw/mgar/pkg/cswutils/trunk/checksums =================================================================== --- csw/mgar/pkg/cswutils/trunk/checksums 2009-06-04 20:34:09 UTC (rev 5158) +++ csw/mgar/pkg/cswutils/trunk/checksums 2009-06-04 20:39:42 UTC (rev 5159) @@ -1,8 +1,8 @@ 091b12575ebc0e45cf8c3d8b43d8b638 download/COPYING -0b9aeb7ab703b45e0961020bc4587f61 download/checkpkg +94fc299b1be5cc4c20f92721ef43573b download/checkpkg 6ec3b6597e04714430987ccc199db3c4 download/checkpkg.8 9a637f6546cc50974159a987302d91c0 download/cpan2pkg -2349d876bada6ee1bf025e576ec2c465 download/createpkg +44e944a12a8691068de0c95e1052a922 download/createpkg a605598f30195f9ab1b29fc3944d3b31 download/createpkg.8 cd4496ee27bf86d5c8bc656c9c5974be download/stagepkg 8908a0a898aa07a7a928b2b8bd8384f0 download/stagepkg.8 Modified: csw/mgar/pkg/cswutils/trunk/files/checkpkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/checkpkg 2009-06-04 20:34:09 UTC (rev 5158) +++ csw/mgar/pkg/cswutils/trunk/files/checkpkg 2009-06-04 20:39:42 UTC (rev 5159) @@ -1,6 +1,6 @@ #!/bin/ksh -p -# checkpkg 2.7 +# checkpkg 2.8 # This script examines a package that has been put together # for submittal to the CSW archive at opencsw.org # @@ -326,15 +326,15 @@ if [[ $? -eq 0 ]] ; then errmsg You must have execute permission set on directories fi - egrep '/opt/csw/man|d none man' $EXTRACTDIR/$pkgname/pkgmap + egrep '/opt/csw/man/|d none man' $EXTRACTDIR/$pkgname/pkgmap if [[ $? -eq 0 ]] ; then errmsg /opt/csw/man should not have a directory entry in prototype fi - egrep '/opt/csw/doc|d none doc' $EXTRACTDIR/$pkgname/pkgmap + egrep '/opt/csw/doc/|d none doc' $EXTRACTDIR/$pkgname/pkgmap if [[ $? -eq 0 ]] ; then errmsg /opt/csw/doc should not have a directory entry in prototype fi - egrep '/opt/csw/info|d none info' $EXTRACTDIR/$pkgname/pkgmap + egrep '/opt/csw/info/|d none info' $EXTRACTDIR/$pkgname/pkgmap if [[ $? -eq 0 ]] ; then errmsg /opt/csw/info should not have a directory entry in prototype fi Modified: csw/mgar/pkg/cswutils/trunk/files/createpkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/createpkg 2009-06-04 20:34:09 UTC (rev 5158) +++ csw/mgar/pkg/cswutils/trunk/files/createpkg 2009-06-04 20:39:42 UTC (rev 5159) @@ -1,6 +1,6 @@ #!/bin/ksh -p -# createpkg 1.6 +# createpkg # This script actually builds the package.. once you have already # put together the pkginfo and prototype file. # See the makeproto script for a way to make a prototype file. @@ -64,13 +64,13 @@ fi grep 'i copyright' $PROTO || die need copyright in $PROTO -grep 'root other' $PROTO && die fix $PROTO file -grep 'csw/man' $PROTO && die fix csw/man entry in $PROTO file -grep 'none man' $PROTO && die fix csw/man entry in $PROTO file -grep 'csw/info' $PROTO && die fix csw/info entry in $PROTO file -grep 'none info' $PROTO && die fix csw/info entry in $PROTO file -grep 'csw/doc' $PROTO && die fix csw/doc entry in $PROTO file -grep 'none doc' $PROTO && die fix csw/doc entry in $PROTO file +grep 'root other' $PROTO && die fix $PROTO file: root other ownership +grep 'csw/man/' $PROTO && die fix csw/man entry in $PROTO file +grep 'none man/' $PROTO && die fix csw/man entry in $PROTO file +grep 'csw/info/' $PROTO && die fix csw/info entry in $PROTO file +grep 'none info/' $PROTO && die fix csw/info entry in $PROTO file +grep 'csw/doc/' $PROTO && die fix csw/doc entry in $PROTO file +grep 'none doc/' $PROTO && die fix csw/doc entry in $PROTO file grep 'Replace this file' copyright && die fix copyright file 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 Jun 4 23:34:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 04 Jun 2009 21:34:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[5160] csw/mgar/pkg/x11/libXau/trunk/Makefile Message-ID: Revision: 5160 http://gar.svn.sourceforge.net/gar/?rev=5160&view=rev Author: dmichelsen Date: 2009-06-04 21:34:58 +0000 (Thu, 04 Jun 2009) Log Message: ----------- x11/libxau: Added prerequisites Modified Paths: -------------- csw/mgar/pkg/x11/libXau/trunk/Makefile Modified: csw/mgar/pkg/x11/libXau/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libXau/trunk/Makefile 2009-06-04 20:39:42 UTC (rev 5159) +++ csw/mgar/pkg/x11/libXau/trunk/Makefile 2009-06-04 21:34:58 UTC (rev 5160) @@ -11,6 +11,9 @@ MASTER_SITES = http://xorg.freedesktop.org/releases/individual/lib/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +PREREQUISITE_PKGS = CSWinputproto CSWkbproto CSWrenderproto CSWxcbproto +PREREQUISITE_PKGS += CSWxextproto CSWxproto CSWxtrans CSWlibpthreadstubs + PACKAGES = CSWlibxau CSWlibxaudevel # We define upstream file regex so we can be notifed of new upstream software release This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Fri Jun 5 00:09:13 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Thu, 04 Jun 2009 22:09:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5161] csw/mgar/pkg/dante/trunk Message-ID: Revision: 5161 http://gar.svn.sourceforge.net/gar/?rev=5161&view=rev Author: skayser Date: 2009-06-04 22:09:13 +0000 (Thu, 04 Jun 2009) Log Message: ----------- dante: fixed init script permissions and typo Modified Paths: -------------- csw/mgar/pkg/dante/trunk/Makefile csw/mgar/pkg/dante/trunk/files/CSWdante.cswdante csw/mgar/pkg/dante/trunk/files/changelog.CSW Modified: csw/mgar/pkg/dante/trunk/Makefile =================================================================== --- csw/mgar/pkg/dante/trunk/Makefile 2009-06-04 21:34:58 UTC (rev 5160) +++ csw/mgar/pkg/dante/trunk/Makefile 2009-06-04 22:09:13 UTC (rev 5161) @@ -96,7 +96,8 @@ @$(foreach D,$(CSWDOCS), cp $(FILEDIR)/$(D) $(DOCDEST);) @ginstall -d $(DESTDIR)/etc/opt/csw/init.d - @cp $(FILEDIR)/CSWdante.cswdante $(DESTDIR)/etc/opt/csw/init.d/cswdante + @ginstall -m 0755 $(FILEDIR)/CSWdante.cswdante \ + $(DESTDIR)/etc/opt/csw/init.d/cswdante # /var/opt/csw/run is not in CSWcommon @ginstall -d $(DESTDIR)/var/opt/csw/run Modified: csw/mgar/pkg/dante/trunk/files/CSWdante.cswdante =================================================================== --- csw/mgar/pkg/dante/trunk/files/CSWdante.cswdante 2009-06-04 21:34:58 UTC (rev 5160) +++ csw/mgar/pkg/dante/trunk/files/CSWdante.cswdante 2009-06-04 22:09:13 UTC (rev 5161) @@ -16,7 +16,7 @@ if [ -f "$CONFIG" ]; then /opt/csw/sbin/sockd -D -f $CONFIG else - echo "No config file $CONFFILE. Not starting cswdante." + echo "No config file ($CONFIG). Not starting cswdante." fi ;; 'stop') Modified: csw/mgar/pkg/dante/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/dante/trunk/files/changelog.CSW 2009-06-04 21:34:58 UTC (rev 5160) +++ csw/mgar/pkg/dante/trunk/files/changelog.CSW 2009-06-04 22:09:13 UTC (rev 5161) @@ -1,5 +1,5 @@ -dante|libsocks (1.1.19,REV=2009.06.04) +dante|libsocks (1.1.19,REV=2009.06.05) * Adopted and updated to 1.1.19. - -- Sebastian Kayser Thu, 4 Jun 2009 01:17:08 +0200 + -- Sebastian Kayser Fri, 5 Jun 2009 00:02:09 +0200 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jun 5 02:37:49 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 05 Jun 2009 00:37:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5162] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 5162 http://gar.svn.sourceforge.net/gar/?rev=5162&view=rev Author: bdwalton Date: 2009-06-05 00:37:49 +0000 (Fri, 05 Jun 2009) Log Message: ----------- correct typo Modified Paths: -------------- csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-06-04 22:09:13 UTC (rev 5161) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-06-05 00:37:49 UTC (rev 5162) @@ -160,7 +160,7 @@ _CSWCLASS_FILTER = | perl -ane '\ $(foreach FILE,$(SAMPLECONF),$$F[1] = "cswsampleconf" if ( $$F[2] =~ m(^$(FILE)$$) );)\ $(foreach FILE,$(PRESERVECONF),$$F[1] = "cswpreserveconf" if( $$F[2] =~ m(^$(FILE)$$) );)\ - $(foreach FILE,$(INITMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ + $(foreach FILE,$(INITSMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ print join(" ", at F),"\n";' _EXTRA_GAR_PKGS += CSWcswclassutils endif 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 Jun 5 08:28:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 05 Jun 2009 06:28:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[5163] csw/mgar/pkg/x11/libxcb/trunk Message-ID: Revision: 5163 http://gar.svn.sourceforge.net/gar/?rev=5163&view=rev Author: dmichelsen Date: 2009-06-05 06:28:26 +0000 (Fri, 05 Jun 2009) Log Message: ----------- libxcb: Update to 1.3 Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile csw/mgar/pkg/x11/libxcb/trunk/checksums Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-06-05 00:37:49 UTC (rev 5162) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-06-05 06:28:26 UTC (rev 5163) @@ -1,5 +1,5 @@ GARNAME = libxcb -GARVERSION = 1.2 +GARVERSION = 1.3 CATEGORIES = x11 DESCRIPTION = The XCB library Modified: csw/mgar/pkg/x11/libxcb/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/checksums 2009-06-05 00:37:49 UTC (rev 5162) +++ csw/mgar/pkg/x11/libxcb/trunk/checksums 2009-06-05 06:28:26 UTC (rev 5163) @@ -1 +1 @@ -f55c731d32ec1a555c77ebbbc8f386aa download/libxcb-1.2.tar.gz +0c61161743e42bf5d26d4618125f069c download/libxcb-1.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 Fri Jun 5 08:35:44 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 05 Jun 2009 06:35:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5164] csw/mgar/pkg/x11/libXau/trunk/Makefile Message-ID: Revision: 5164 http://gar.svn.sourceforge.net/gar/?rev=5164&view=rev Author: dmichelsen Date: 2009-06-05 06:35:44 +0000 (Fri, 05 Jun 2009) Log Message: ----------- x11/libxau: Add missing depdency from from devel to base Modified Paths: -------------- csw/mgar/pkg/x11/libXau/trunk/Makefile Modified: csw/mgar/pkg/x11/libXau/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libXau/trunk/Makefile 2009-06-05 06:28:26 UTC (rev 5163) +++ csw/mgar/pkg/x11/libXau/trunk/Makefile 2009-06-05 06:35:44 UTC (rev 5164) @@ -20,6 +20,7 @@ UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz REQUIRED_PKGS_CSWlibxau = CSWx11common +REQUIRED_PKGS_CSWlibxaudevel = CSWlibxau CATALOGNAME_CSWlibxau = libxau CATALOGNAME_CSWlibxaudevel = libxau_devel 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 Jun 5 08:58:45 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 05 Jun 2009 06:58:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[5165] csw/mgar/pkg/x11/libxcb/trunk/Makefile Message-ID: Revision: 5165 http://gar.svn.sourceforge.net/gar/?rev=5165&view=rev Author: dmichelsen Date: 2009-06-05 06:58:45 +0000 (Fri, 05 Jun 2009) Log Message: ----------- x11/libxcb: make docs archall Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-06-05 06:35:44 UTC (rev 5164) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-06-05 06:58:45 UTC (rev 5165) @@ -32,6 +32,8 @@ REQUIRED_PKGS_CSWlibxcbdevel = CSWlibxcb REQUIRED_PKGS_CSWlibxcb = CSWx11common CSWlibxau +ARCHALL_CSWlibxcbdoc = 1 + BUILD64 = 1 NOISALIST = 1 CONFIGURE_ARGS = $(DIRPATHS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 16:21:37 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 14:21:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[5166] csw/mgar/pkg/pydocutils/trunk/Makefile Message-ID: Revision: 5166 http://gar.svn.sourceforge.net/gar/?rev=5166&view=rev Author: valholla Date: 2009-06-05 14:21:36 +0000 (Fri, 05 Jun 2009) Log Message: ----------- add cswpycompile class Modified Paths: -------------- csw/mgar/pkg/pydocutils/trunk/Makefile Modified: csw/mgar/pkg/pydocutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/pydocutils/trunk/Makefile 2009-06-05 06:58:45 UTC (rev 5165) +++ csw/mgar/pkg/pydocutils/trunk/Makefile 2009-06-05 14:21:36 UTC (rev 5166) @@ -15,6 +15,12 @@ CATALOGNAME_CSWpydocutils = pydocutils SPKG_DESC = Documentation Utiltiies for Python +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + + # We define upstream file regex so we can be notifed of # new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).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 Jun 5 16:22:33 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 05 Jun 2009 14:22:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[5167] csw/mgar/pkg/pkgutil/trunk/checksums Message-ID: Revision: 5167 http://gar.svn.sourceforge.net/gar/?rev=5167&view=rev Author: bonivart Date: 2009-06-05 14:22:33 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pkgutil: better fix for #3701 Modified Paths: -------------- csw/mgar/pkg/pkgutil/trunk/checksums Modified: csw/mgar/pkg/pkgutil/trunk/checksums =================================================================== --- csw/mgar/pkg/pkgutil/trunk/checksums 2009-06-05 14:21:36 UTC (rev 5166) +++ csw/mgar/pkg/pkgutil/trunk/checksums 2009-06-05 14:22:33 UTC (rev 5167) @@ -2,4 +2,4 @@ e1407c24d47306dbc4cea22dcb291f1d download/CSWpkgutil.postinstall 2fb6c94a2d212f08b71d462082a2d31a download/CSWpkgutil.preremove 4ef9d7ba62987112987311d96e249e3e download/CSWpkgutil.prototype -307a3dfee197974c89c2f38da9d0090d download/pkgutil-1.6.1.zip +82c500662d2871e70633a1c58d02cacc download/pkgutil-1.6.1.zip This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 16:24:49 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 14:24:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5168] csw/mgar/pkg/pydocutils/trunk/Makefile Message-ID: Revision: 5168 http://gar.svn.sourceforge.net/gar/?rev=5168&view=rev Author: valholla Date: 2009-06-05 14:24:49 +0000 (Fri, 05 Jun 2009) Log Message: ----------- archall = 1 Modified Paths: -------------- csw/mgar/pkg/pydocutils/trunk/Makefile Modified: csw/mgar/pkg/pydocutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/pydocutils/trunk/Makefile 2009-06-05 14:22:33 UTC (rev 5167) +++ csw/mgar/pkg/pydocutils/trunk/Makefile 2009-06-05 14:24:49 UTC (rev 5168) @@ -10,6 +10,7 @@ MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +ARCHALL_CSWpydocutils = 1 PACKAGES = CSWpydocutils REQUIRED_PKGS_CSWpydocutils = CSWpython CATALOGNAME_CSWpydocutils = pydocutils This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 16:32:30 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 14:32:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[5169] csw/mgar/pkg/mod_python/trunk/Makefile Message-ID: Revision: 5169 http://gar.svn.sourceforge.net/gar/?rev=5169&view=rev Author: valholla Date: 2009-06-05 14:32:30 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pycompile class Modified Paths: -------------- csw/mgar/pkg/mod_python/trunk/Makefile Modified: csw/mgar/pkg/mod_python/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_python/trunk/Makefile 2009-06-05 14:24:49 UTC (rev 5168) +++ csw/mgar/pkg/mod_python/trunk/Makefile 2009-06-05 14:32:30 UTC (rev 5169) @@ -18,12 +18,17 @@ REQUIRED_PKGS_CSWap2modpython = CSWap2prefork CSWpython CATALOGNAME_CSWap2modpython = ap2_modpython SPKG_DESC_CSWap2modpython = an Apache/Python integration module -#DISTFILES += fixme.sh -#STRIP_LIBTOOL = 1 +STRIP_LIBTOOL = 1 PATCHFILES += connobject.diff -# We define upstream file regex so we can be notifed of new upstream software release +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + +# We define upstream file regex so we can be notifed of +# new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) CONFIGURE_ARGS = $(DIRPATHS) @@ -36,13 +41,6 @@ DESTDOC = $(DESTDIR)$(docdir)/ap2_modpython - -#post-configure-modulated: -# @echo " ==> Fixing libtool files" -# @$(DOWNLOADDIR)/fixme.sh $(WORKSRC) -# @$(MAKECOOKIE) - - post-install-modulated: @install -d $(DESTDOC) @for file in COPYRIGHT CREDITS LICENSE NEWS NOTICE README ; do \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 16:35:10 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 14:35:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[5170] csw/mgar/pkg/mysql-python/trunk/Makefile Message-ID: Revision: 5170 http://gar.svn.sourceforge.net/gar/?rev=5170&view=rev Author: valholla Date: 2009-06-05 14:35:10 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pycompile class Modified Paths: -------------- csw/mgar/pkg/mysql-python/trunk/Makefile Modified: csw/mgar/pkg/mysql-python/trunk/Makefile =================================================================== --- csw/mgar/pkg/mysql-python/trunk/Makefile 2009-06-05 14:32:30 UTC (rev 5169) +++ csw/mgar/pkg/mysql-python/trunk/Makefile 2009-06-05 14:35:10 UTC (rev 5170) @@ -20,6 +20,11 @@ # new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py TEST_SCRIPTS = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 16:36:15 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 14:36:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[5171] csw/mgar/pkg/mysql-python/trunk/Makefile Message-ID: Revision: 5171 http://gar.svn.sourceforge.net/gar/?rev=5171&view=rev Author: valholla Date: 2009-06-05 14:36:15 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pycompile class Modified Paths: -------------- csw/mgar/pkg/mysql-python/trunk/Makefile Modified: csw/mgar/pkg/mysql-python/trunk/Makefile =================================================================== --- csw/mgar/pkg/mysql-python/trunk/Makefile 2009-06-05 14:35:10 UTC (rev 5170) +++ csw/mgar/pkg/mysql-python/trunk/Makefile 2009-06-05 14:36:15 UTC (rev 5171) @@ -12,7 +12,7 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz PACKAGES = CSWpymysql -REQUIRED_PKGS_CSWpymysql = CSWmysql5rt CSWpython CSWosslrt CSWzlib +REQUIRED_PKGS_CSWpymysql = CSWmysql5rt CSWpython-rt CSWosslrt CSWzlib CATALOGNAME_CSWpymysql = pymysql SPKG_DESC = MySQL Support for Python This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 16:46:58 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 14:46:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5172] csw/mgar/pkg/pysqlite2/trunk/Makefile Message-ID: Revision: 5172 http://gar.svn.sourceforge.net/gar/?rev=5172&view=rev Author: valholla Date: 2009-06-05 14:46:58 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pycompile class Modified Paths: -------------- csw/mgar/pkg/pysqlite2/trunk/Makefile Modified: csw/mgar/pkg/pysqlite2/trunk/Makefile =================================================================== --- csw/mgar/pkg/pysqlite2/trunk/Makefile 2009-06-05 14:36:15 UTC (rev 5171) +++ csw/mgar/pkg/pysqlite2/trunk/Makefile 2009-06-05 14:46:58 UTC (rev 5172) @@ -13,11 +13,17 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz PACKAGES = CSWpysqlite2 -REQUIRED_PKGS_CSWpysqlite2 = CSWpython CSWsqlite3rt +REQUIRED_PKGS_CSWpysqlite2 = CSWpython-rt CSWsqlite3rt CATALOGNAME_CSWpysqlite2 = pysqlite2 SPKG_DESC_CSWpysqlite2 = SQLite3 support for Python -# We define upstream file regex so we can be notifed of new upstream software release +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + +# We define upstream file regex so we can be notifed of +# new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) CONFIGURE_SCRIPTS = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 16:53:14 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 14:53:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[5173] csw/mgar/pkg/pysqlite/trunk/Makefile Message-ID: Revision: 5173 http://gar.svn.sourceforge.net/gar/?rev=5173&view=rev Author: valholla Date: 2009-06-05 14:53:14 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pycompile class Modified Paths: -------------- csw/mgar/pkg/pysqlite/trunk/Makefile Modified: csw/mgar/pkg/pysqlite/trunk/Makefile =================================================================== --- csw/mgar/pkg/pysqlite/trunk/Makefile 2009-06-05 14:46:58 UTC (rev 5172) +++ csw/mgar/pkg/pysqlite/trunk/Makefile 2009-06-05 14:53:14 UTC (rev 5173) @@ -18,8 +18,14 @@ PACKAGES = CSWpysqlite CATALOGNAME_CSWpysqlite = pysqlite SPKG_DESC_CSWpysqlite = SQLite 1.x support for Python -REQUIRED_PKGS_CSWpysqlite = CSWpython CSWsqlite3rt +REQUIRED_PKGS_CSWpysqlite = CSWpython-rt CSWsqlite3rt +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + + # We define upstream file regex so we can be notifed of # new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 16:53:32 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 14:53:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[5174] csw/mgar/pkg/mod_python/trunk/Makefile Message-ID: Revision: 5174 http://gar.svn.sourceforge.net/gar/?rev=5174&view=rev Author: valholla Date: 2009-06-05 14:53:32 +0000 (Fri, 05 Jun 2009) Log Message: ----------- tweak Modified Paths: -------------- csw/mgar/pkg/mod_python/trunk/Makefile Modified: csw/mgar/pkg/mod_python/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_python/trunk/Makefile 2009-06-05 14:53:14 UTC (rev 5173) +++ csw/mgar/pkg/mod_python/trunk/Makefile 2009-06-05 14:53:32 UTC (rev 5174) @@ -15,7 +15,7 @@ PACKAGES = CSWap2modpython -REQUIRED_PKGS_CSWap2modpython = CSWap2prefork CSWpython +REQUIRED_PKGS_CSWap2modpython = CSWap2prefork CSWpython-rt CATALOGNAME_CSWap2modpython = ap2_modpython SPKG_DESC_CSWap2modpython = an Apache/Python integration module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 18:28:49 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 16:28:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5175] csw/mgar/pkg/silvercity/trunk/Makefile Message-ID: Revision: 5175 http://gar.svn.sourceforge.net/gar/?rev=5175&view=rev Author: valholla Date: 2009-06-05 16:28:49 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pycompile class Modified Paths: -------------- csw/mgar/pkg/silvercity/trunk/Makefile Modified: csw/mgar/pkg/silvercity/trunk/Makefile =================================================================== --- csw/mgar/pkg/silvercity/trunk/Makefile 2009-06-05 14:53:32 UTC (rev 5174) +++ csw/mgar/pkg/silvercity/trunk/Makefile 2009-06-05 16:28:49 UTC (rev 5175) @@ -13,7 +13,7 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz PACKAGES = CSWsilvercity -REQUIRED_PKGS_CSWsilvercity = CSWpython +REQUIRED_PKGS_CSWsilvercity = CSWpython-rt CATALOGNAME_CSWsilvercity = silvercity SPKG_DESC_CSWsilvercity = Lexical analysis package for Python @@ -21,6 +21,12 @@ # new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + + NOISALIST = 1 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 bonivart at users.sourceforge.net Fri Jun 5 18:29:20 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 05 Jun 2009 16:29:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5176] csw/mgar/pkg/cpan/Authen-SASL/trunk Message-ID: Revision: 5176 http://gar.svn.sourceforge.net/gar/?rev=5176&view=rev Author: bonivart Date: 2009-06-05 16:29:20 +0000 (Fri, 05 Jun 2009) Log Message: ----------- Authen-SASL: update to 2.12 Modified Paths: -------------- csw/mgar/pkg/cpan/Authen-SASL/trunk/Makefile csw/mgar/pkg/cpan/Authen-SASL/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Authen-SASL/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/Authen-SASL/trunk/files/CSWpmauthensasl.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Authen-SASL/trunk/ Property changes on: csw/mgar/pkg/cpan/Authen-SASL/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/Authen-SASL/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Authen-SASL/trunk/Makefile 2009-06-05 16:28:49 UTC (rev 5175) +++ csw/mgar/pkg/cpan/Authen-SASL/trunk/Makefile 2009-06-05 16:29:20 UTC (rev 5176) @@ -1,5 +1,5 @@ GARNAME = Authen-SASL -GARVERSION = 2.10 +GARVERSION = 2.12 CATEGORIES = cpan AUTHOR = GBARR @@ -10,6 +10,13 @@ protocols should be able to share. endef -DISTFILES += CSWpmauthensasl.gspec +DISTFILES += COPYING +PACKAGES = CSWpmauthensasl +CATALOGNAME = pm_authensasl + +ARCHALL = 1 + +EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod + include gar/category.mk Modified: csw/mgar/pkg/cpan/Authen-SASL/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Authen-SASL/trunk/checksums 2009-06-05 16:28:49 UTC (rev 5175) +++ csw/mgar/pkg/cpan/Authen-SASL/trunk/checksums 2009-06-05 16:29:20 UTC (rev 5176) @@ -1,2 +1,2 @@ -9289a1db1550fc7ec0860dd2bd22d916 download/CSWpmauthensasl.gspec -041ce912640c5dff626a91435a359b88 download/Authen-SASL-2.10.tar.gz +ddbcb7917bf3659d5cf1ee6b681f06d4 download/Authen-SASL-2.12.tar.gz +9fa272a706a6f6b8ccbb19ca13e8b0e2 download/COPYING Added: csw/mgar/pkg/cpan/Authen-SASL/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Authen-SASL/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Authen-SASL/trunk/files/COPYING 2009-06-05 16:29:20 UTC (rev 5176) @@ -0,0 +1,3 @@ +Copyright (c) 1998-2008 Graham Barr. All rights reserved. This program is +free software; you can redistribute it and/or modify it under the same +terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Authen-SASL/trunk/files/CSWpmauthensasl.gspec =================================================================== --- csw/mgar/pkg/cpan/Authen-SASL/trunk/files/CSWpmauthensasl.gspec 2009-06-05 16:28:49 UTC (rev 5175) +++ csw/mgar/pkg/cpan/Authen-SASL/trunk/files/CSWpmauthensasl.gspec 2009-06-05 16:29:20 UTC (rev 5176) @@ -1,8 +0,0 @@ -%var bitname pm_authensasl -%var pkgname CSWpmauthensasl -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 1998-2004 Graham Barr. All rights reserved. This program is -free software; you can redistribute it and/or modify it under the same -terms as Perl itself. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 18:35:46 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 16:35:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[5177] csw/mgar/pkg/clearsilver/trunk/Makefile Message-ID: Revision: 5177 http://gar.svn.sourceforge.net/gar/?rev=5177&view=rev Author: valholla Date: 2009-06-05 16:35:46 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pycompile class Modified Paths: -------------- csw/mgar/pkg/clearsilver/trunk/Makefile Modified: csw/mgar/pkg/clearsilver/trunk/Makefile =================================================================== --- csw/mgar/pkg/clearsilver/trunk/Makefile 2009-06-05 16:29:20 UTC (rev 5176) +++ csw/mgar/pkg/clearsilver/trunk/Makefile 2009-06-05 16:35:46 UTC (rev 5177) @@ -32,7 +32,10 @@ PKGFILES_CSWpycs = $(libdir)/python.*/.* PKGFILES_CSWpycs += $(mandir)/.*python.* -#GARCOMPILER = GNU +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils # We define upstream file regex so we can be notifed of # new upstream software release This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 18:42:50 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 16:42:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[5178] csw/mgar/pkg/genshi/trunk/Makefile Message-ID: Revision: 5178 http://gar.svn.sourceforge.net/gar/?rev=5178&view=rev Author: valholla Date: 2009-06-05 16:42:49 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pycompile class Modified Paths: -------------- csw/mgar/pkg/genshi/trunk/Makefile Modified: csw/mgar/pkg/genshi/trunk/Makefile =================================================================== --- csw/mgar/pkg/genshi/trunk/Makefile 2009-06-05 16:35:46 UTC (rev 5177) +++ csw/mgar/pkg/genshi/trunk/Makefile 2009-06-05 16:42:49 UTC (rev 5178) @@ -12,7 +12,12 @@ MASTER_SITES = http://ftp.edgewall.com/pub/genshi/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +ARCHALL_CSWgenshi = 1 PACKAGES = CSWgenshi +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils REQUIRED_PKGS_CSWgenshi = CSWpython-rt CATALOGNAME_CSWgenshi = genshi @@ -24,7 +29,7 @@ CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py -TEST_SCRIPTS = $(WORKSRC)/setup.py +TEST_SCRIPTS = INSTALL_SCRIPTS = $(WORKSRC)/setup.py INSTALL_ARGS += --root=$(DESTDIR) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 18:45:14 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 16:45:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[5179] csw/mgar/pkg/genshi/trunk/ Message-ID: Revision: 5179 http://gar.svn.sourceforge.net/gar/?rev=5179&view=rev Author: valholla Date: 2009-06-05 16:45:14 +0000 (Fri, 05 Jun 2009) Log Message: ----------- ignore dirs Property Changed: ---------------- csw/mgar/pkg/genshi/trunk/ Property changes on: csw/mgar/pkg/genshi/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work 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 Jun 5 18:46:18 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 05 Jun 2009 16:46:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5180] csw/mgar/pkg/cpan/HTML-Mason/trunk Message-ID: Revision: 5180 http://gar.svn.sourceforge.net/gar/?rev=5180&view=rev Author: bonivart Date: 2009-06-05 16:46:18 +0000 (Fri, 05 Jun 2009) Log Message: ----------- HTML-Mason: update to 1.42 Modified Paths: -------------- csw/mgar/pkg/cpan/HTML-Mason/trunk/Makefile csw/mgar/pkg/cpan/HTML-Mason/trunk/checksums Modified: csw/mgar/pkg/cpan/HTML-Mason/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/HTML-Mason/trunk/Makefile 2009-06-05 16:45:14 UTC (rev 5179) +++ csw/mgar/pkg/cpan/HTML-Mason/trunk/Makefile 2009-06-05 16:46:18 UTC (rev 5180) @@ -1,5 +1,5 @@ GARNAME = HTML-Mason -GARVERSION = 1.40 +GARVERSION = 1.42 CATEGORIES = cpan AUTHOR = DROLSKY @@ -10,13 +10,13 @@ content, such as online newspapers or database driven e-commerce sites. endef -REQUIRED_PKGS_CSWpmhtmlmason = CSWpmcachecache CSWpmfcgi CSWpmclscontainer CSWpmexceptcls CSWpmprmsvldt CSWpmscalarlist +LICENSE = LICENSE +REQUIRED_PKGS = CSWpmcachecache CSWpmfcgi CSWpmclscontainer CSWpmexceptcls CSWpmprmsvldt CSWpmscalarlist + +PACKAGES = CSWpmhtmlmason CATALOGNAME = pm_htmlmason -PACKAGES = CSWpmhtmlmason -ARCHALL_CSWpmfilehomedir = 1 +ARCHALL = 1 -LICENSE = LICENSE - include gar/category.mk Modified: csw/mgar/pkg/cpan/HTML-Mason/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/HTML-Mason/trunk/checksums 2009-06-05 16:45:14 UTC (rev 5179) +++ csw/mgar/pkg/cpan/HTML-Mason/trunk/checksums 2009-06-05 16:46:18 UTC (rev 5180) @@ -1 +1 @@ -920069e013d00de2bf8fb526c4f64c04 download/HTML-Mason-1.40.tar.gz +5fe5555ebb4bd6929eb6438e0f709355 download/HTML-Mason-1.42.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 18:56:41 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 16:56:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5181] csw/mgar/pkg/pygobject/trunk/Makefile Message-ID: Revision: 5181 http://gar.svn.sourceforge.net/gar/?rev=5181&view=rev Author: valholla Date: 2009-06-05 16:56:41 +0000 (Fri, 05 Jun 2009) Log Message: ----------- pycompile class Modified Paths: -------------- csw/mgar/pkg/pygobject/trunk/Makefile Modified: csw/mgar/pkg/pygobject/trunk/Makefile =================================================================== --- csw/mgar/pkg/pygobject/trunk/Makefile 2009-06-05 16:46:18 UTC (rev 5180) +++ csw/mgar/pkg/pygobject/trunk/Makefile 2009-06-05 16:56:41 UTC (rev 5181) @@ -9,8 +9,9 @@ MASTER_SITES = http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.15/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += fixme.sh +STRIP_LIBTOOL = 1 + PACKAGES = CSWpygobject REQUIRED_PKGS_CSWpygobject = CSWpython CSWggettextrt CSWglib2 @@ -20,10 +21,17 @@ ## patch to change zero sized struct to zero-sized sub-object PATCHFILES = pygobject.diff -# We define upstream file regex so we can be notifed of new upstream software release +# We define upstream file regex so we can be notifed of +# new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --without-ffi ## Tests require gtk, but gtk requries gobject #TEST_TARGET = check @@ -31,7 +39,3 @@ include gar/category.mk -post-configure-$(MODULATION): - @(echo "~~~ Fixing Libtool ~~~") - @$(DOWNLOADDIR)/fixme.sh $(WORKSRC) - $(DONADA) 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 Jun 5 19:00:54 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 05 Jun 2009 17:00:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[5182] csw/mgar/pkg/cpan/Module-Build/trunk Message-ID: Revision: 5182 http://gar.svn.sourceforge.net/gar/?rev=5182&view=rev Author: bonivart Date: 2009-06-05 17:00:54 +0000 (Fri, 05 Jun 2009) Log Message: ----------- Module-Build: update to 0.33 Modified Paths: -------------- csw/mgar/pkg/cpan/Module-Build/trunk/Makefile csw/mgar/pkg/cpan/Module-Build/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.depend csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.gspec csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Module-Build/trunk/ Property changes on: csw/mgar/pkg/cpan/Module-Build/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/Module-Build/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Build/trunk/Makefile 2009-06-05 16:56:41 UTC (rev 5181) +++ csw/mgar/pkg/cpan/Module-Build/trunk/Makefile 2009-06-05 17:00:54 UTC (rev 5182) @@ -1,7 +1,7 @@ GARNAME = Module-Build -GARVERSION = 0.2806 +GARVERSION = 0.33 CATEGORIES = cpan -AUTHOR = KWILLIAMS +AUTHOR = EWILHELM DESCRIPTION = build and install Perl modules define BLURB @@ -11,12 +11,20 @@ much more straightforward way than with MakeMaker. endef -DISTFILES += $(call admfiles,CSWpmmodulebuild,depend prototype) +#DISTFILES += $(call admfiles,CSWpmmodulebuild,depend prototype) +PACKAGES = CSWpmmodulebuild +CATALOGNAME = pm_modulebuild +REQUIRED_PKGS = CSWpmarchivetar CSWpmextutparsexs CSWpmyaml + +LICENSE = LICENSE + DEPENDS += cpan/YAML DEPENDS += cpan/ExtUtils-ParseXS DEPENDS += cpan/Archive-Tar CONFIGURE_ARGS = destdir=$(DESTDIR) +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Module-Build/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-Build/trunk/checksums 2009-06-05 16:56:41 UTC (rev 5181) +++ csw/mgar/pkg/cpan/Module-Build/trunk/checksums 2009-06-05 17:00:54 UTC (rev 5182) @@ -1,4 +1 @@ -868496deb446dcd2d1255b3f190babb3 download/CSWpmmodulebuild.gspec -ba00be694524115b457f8da5e0f427ac download/CSWpmmodulebuild.depend -44719f7e59d9160a04c061e7d63a82a7 download/CSWpmmodulebuild.prototype -919a54ab295329ab668fae14756ae80a download/Module-Build-0.2806.tar.gz +5c31482551c2cfeb0edd6eac42869c52 download/Module-Build-0.33.tar.gz Deleted: csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.depend =================================================================== --- csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.depend 2009-06-05 16:56:41 UTC (rev 5181) +++ csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.depend 2009-06-05 17:00:54 UTC (rev 5182) @@ -1,3 +0,0 @@ -P CSWpmarchivetar pm_archivetar - module for manipulations of tar archives -P CSWpmextutparsexs pm_extutparsexs - converts Perl XS code into C code -P CSWpmyaml pm_yaml - YAML Aint Markup Language Deleted: csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.gspec =================================================================== --- csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.gspec 2009-06-05 16:56:41 UTC (rev 5181) +++ csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.gspec 2009-06-05 17:00:54 UTC (rev 5182) @@ -1,9 +0,0 @@ -%var bitname pm_modulebuild -%var pkgname CSWpmmodulebuild -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 1999, Ken Williams. All rights reserved. - -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/Module-Build/trunk/files/CSWpmmodulebuild.prototype =================================================================== --- csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.prototype 2009-06-05 16:56:41 UTC (rev 5181) +++ csw/mgar/pkg/cpan/Module-Build/trunk/files/CSWpmmodulebuild.prototype 2009-06-05 17:00:54 UTC (rev 5182) @@ -1,60 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/config_data 0555 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/Module 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module/Build 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Module/Build/.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/man1 0755 root bin -f none /opt/csw/share/man/man1/config_data.1 0444 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Module::Build.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Base.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Compat.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::ConfigData.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Cookbook.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::PPMMaker.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::Amiga.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::Default.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::EBCDIC.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::MPEiX.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::MacOS.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::RiscOS.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::Unix.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::VMS.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::VOS.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::Windows.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::aix.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::cygwin.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::darwin.3perl 0444 root bin -f none /opt/csw/share/man/man3/Module::Build::Platform::os2.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/Module 0755 root bin -d none /opt/csw/share/perl/csw/Module/Build 0755 root bin -f none /opt/csw/share/perl/csw/Module/Build.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Compat.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/ConfigData.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Cookbook.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/PPMMaker.pm 0444 root bin -d none /opt/csw/share/perl/csw/Module/Build/Platform 0755 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/Amiga.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/Default.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/EBCDIC.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/MPEiX.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/MacOS.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/RiscOS.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/Unix.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/VMS.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/VOS.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/Windows.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/aix.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/cygwin.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/darwin.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/Platform/os2.pm 0444 root bin -f none /opt/csw/share/perl/csw/Module/Build/PodParser.pm 0444 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 19:05:57 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 17:05:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5183] csw/mgar/pkg Message-ID: Revision: 5183 http://gar.svn.sourceforge.net/gar/?rev=5183&view=rev Author: valholla Date: 2009-06-05 17:05:57 +0000 (Fri, 05 Jun 2009) Log Message: ----------- initial checkin Added Paths: ----------- csw/mgar/pkg/dbus-python/ csw/mgar/pkg/dbus-python/Makefile csw/mgar/pkg/dbus-python/branches/ csw/mgar/pkg/dbus-python/tags/ csw/mgar/pkg/dbus-python/trunk/ csw/mgar/pkg/dbus-python/trunk/files/ Added: csw/mgar/pkg/dbus-python/Makefile =================================================================== --- csw/mgar/pkg/dbus-python/Makefile (rev 0) +++ csw/mgar/pkg/dbus-python/Makefile 2009-06-05 17:05:57 UTC (rev 5183) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) 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 Jun 5 19:09:09 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 05 Jun 2009 17:09:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5184] csw/mgar/pkg/cpan/Test-Builder-Tester/trunk Message-ID: Revision: 5184 http://gar.svn.sourceforge.net/gar/?rev=5184&view=rev Author: bonivart Date: 2009-06-05 17:09:09 +0000 (Fri, 05 Jun 2009) Log Message: ----------- Test-Builder-Tester: move to mGAR2 Modified Paths: -------------- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/CSWpmtstbldrtester.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/ Property changes on: csw/mgar/pkg/cpan/Test-Builder-Tester/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile 2009-06-05 17:05:57 UTC (rev 5183) +++ csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile 2009-06-05 17:09:09 UTC (rev 5184) @@ -11,8 +11,13 @@ output with Test::Builder to stdout and stderr endef -DISTFILES += $(call admfiles,CSWpmtstbldrtester,prototype) +DISTFILES += COPYING +PACKAGES = CSWpmtstbldrtester +CATALOGNAME = pm_tstbldrtester + +ARCHALL = 1 + # Seems that tests might assume a newer version of Test-Simple than is # provided with Perl 5.8.8. TEST_SCRIPTS = Modified: csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/checksums 2009-06-05 17:05:57 UTC (rev 5183) +++ csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/checksums 2009-06-05 17:09:09 UTC (rev 5184) @@ -1,3 +1,2 @@ -3ff9e37adcd42ce9a3271bd7bbf48efa download/CSWpmtstbldrtester.gspec -f7575380ba13427738e569dccb7577cf download/CSWpmtstbldrtester.prototype +8911ed04eb985a8b313c881d492e0072 download/COPYING 4751252f1e33af4f582c8af4c7b7666f download/Test-Builder-Tester-1.01.tar.gz Added: csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/COPYING 2009-06-05 17:09:09 UTC (rev 5184) @@ -0,0 +1,9 @@ +Copyright Mark Fowler Emark at twoshortplanks.comE 2002, 2004. + +Some code taken from B and B, written by by +Michael G Schwern Eschwern at pobox.comE. Hence, those parts +Copyright Micheal G Schwern 2001. Used and distributed with +permission. + +This program is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/CSWpmtstbldrtester.gspec =================================================================== --- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/CSWpmtstbldrtester.gspec 2009-06-05 17:05:57 UTC (rev 5183) +++ csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/CSWpmtstbldrtester.gspec 2009-06-05 17:09:09 UTC (rev 5184) @@ -1,14 +0,0 @@ -%var bitname pm_tstbldrtester -%var pkgname CSWpmtstbldrtester -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright Mark Fowler Emark at twoshortplanks.comE 2002, 2004. - -Some code taken from B and B, written by by -Michael G Schwern Eschwern at pobox.comE. Hence, those parts -Copyright Micheal G Schwern 2001. Used and distributed with -permission. - -This program is free software; you can redistribute it -and/or modify it under the same terms as Perl itself. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 19:12:32 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 17:12:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[5185] csw/mgar/pkg/dbus-python/trunk Message-ID: Revision: 5185 http://gar.svn.sourceforge.net/gar/?rev=5185&view=rev Author: valholla Date: 2009-06-05 17:12:32 +0000 (Fri, 05 Jun 2009) Log Message: ----------- initial structure Added Paths: ----------- csw/mgar/pkg/dbus-python/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/dbus-python/trunk/ Property changes on: csw/mgar/pkg/dbus-python/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/dbus-python/trunk/Makefile =================================================================== --- csw/mgar/pkg/dbus-python/trunk/Makefile (rev 0) +++ csw/mgar/pkg/dbus-python/trunk/Makefile 2009-06-05 17:12:32 UTC (rev 5185) @@ -0,0 +1,45 @@ +GARNAME = dbus-python +GARVERSION = 0.83.0 +CATEGORIES = lib + +DESCRIPTION = DBUS Bindings for Python +define BLURB + D-Bus is a message bus system, a simple way for applications to + talk to one another. In addition to interprocess communication, + D-Bus helps coordinate process lifecycle; it makes it simple and + reliable to code a "single instance" application or daemon, + and to launch applications and daemons on demand when their services + are needed. + + D-Bus supplies both a system daemon + (for events such as "new hardware device added" or "printer queue changed") + and a per-user-login-session daemon + (for general IPC needs among user applications). + Also, the message bus is built on top of a general one-to-one + message passing framework, which can be used by any two apps to + communicate directly (without going through the message bus daemon). + Currently the communicating applications are on one computer, + or through unencrypted TCP/IP suitable for use behind a firewall + with shared NFS home directories. (Help wanted with better remote + transports - the transport mechanism is well-abstracted and extensible.) +endef + +MASTER_SITES = http://dbus.freedesktop.org/releases/dbus-python/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +SPKG_SOURCEURL = http://www.freedesktop.org/wiki/Software/DBusBindings +PACKAGES = CSWdbus-python +CATALOGNAME_CSWdbus-python = dbus-python +SPKG_DESC_CSWdbus-python = $(DESCRIPTION) + +REQUIRED_PKGS_CSWdbus-python = + +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 + +STRIP_LIBTOOL = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 19:59:02 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 17:59:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[5186] csw/mgar/pkg/dbus-python/trunk Message-ID: Revision: 5186 http://gar.svn.sourceforge.net/gar/?rev=5186&view=rev Author: valholla Date: 2009-06-05 17:58:58 +0000 (Fri, 05 Jun 2009) Log Message: ----------- checkin work Modified Paths: -------------- csw/mgar/pkg/dbus-python/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/dbus-python/trunk/checksums Modified: csw/mgar/pkg/dbus-python/trunk/Makefile =================================================================== --- csw/mgar/pkg/dbus-python/trunk/Makefile 2009-06-05 17:12:32 UTC (rev 5185) +++ csw/mgar/pkg/dbus-python/trunk/Makefile 2009-06-05 17:58:58 UTC (rev 5186) @@ -37,9 +37,7 @@ # We define upstream file regex so we can be notifed of # new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 - -STRIP_LIBTOOL = 1 - +CFLAGS = -xc99 CONFIGURE_ARGS = $(DIRPATHS) include gar/category.mk Added: csw/mgar/pkg/dbus-python/trunk/checksums =================================================================== --- csw/mgar/pkg/dbus-python/trunk/checksums (rev 0) +++ csw/mgar/pkg/dbus-python/trunk/checksums 2009-06-05 17:58:58 UTC (rev 5186) @@ -0,0 +1 @@ +562c78876219bf458d79a041af18293d download/dbus-python-0.83.0.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri Jun 5 20:35:44 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 05 Jun 2009 18:35:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5187] csw/mgar/pkg/dbus-python/trunk Message-ID: Revision: 5187 http://gar.svn.sourceforge.net/gar/?rev=5187&view=rev Author: valholla Date: 2009-06-05 18:35:44 +0000 (Fri, 05 Jun 2009) Log Message: ----------- working Modified Paths: -------------- csw/mgar/pkg/dbus-python/trunk/Makefile csw/mgar/pkg/dbus-python/trunk/checksums Added Paths: ----------- csw/mgar/pkg/dbus-python/trunk/files/no-stdint.diff Modified: csw/mgar/pkg/dbus-python/trunk/Makefile =================================================================== --- csw/mgar/pkg/dbus-python/trunk/Makefile 2009-06-05 17:58:58 UTC (rev 5186) +++ csw/mgar/pkg/dbus-python/trunk/Makefile 2009-06-05 18:35:44 UTC (rev 5187) @@ -10,34 +10,33 @@ reliable to code a "single instance" application or daemon, and to launch applications and daemons on demand when their services are needed. - - D-Bus supplies both a system daemon - (for events such as "new hardware device added" or "printer queue changed") - and a per-user-login-session daemon - (for general IPC needs among user applications). - Also, the message bus is built on top of a general one-to-one - message passing framework, which can be used by any two apps to - communicate directly (without going through the message bus daemon). - Currently the communicating applications are on one computer, - or through unencrypted TCP/IP suitable for use behind a firewall - with shared NFS home directories. (Help wanted with better remote - transports - the transport mechanism is well-abstracted and extensible.) endef MASTER_SITES = http://dbus.freedesktop.org/releases/dbus-python/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz SPKG_SOURCEURL = http://www.freedesktop.org/wiki/Software/DBusBindings -PACKAGES = CSWdbus-python -CATALOGNAME_CSWdbus-python = dbus-python -SPKG_DESC_CSWdbus-python = $(DESCRIPTION) +PACKAGES = CSWdbuspython +CATALOGNAME_CSWdbuspython = dbus_python +SPKG_DESC_CSWdbuspython = $(DESCRIPTION) +REQUIRED_PKGS_CSWdbuspython = CSWdbusglib CSWggettextrt CSWglib2 CSWlibdbus -REQUIRED_PKGS_CSWdbus-python = +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils # We define upstream file regex so we can be notifed of # new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -CFLAGS = -xc99 + +PATCHFILES = no-stdint.diff + +CPPFLAGS += -I$(DESTDIR)/opt/csw/include/dbus-1.0 +CPPFLAGS += -I$(DESTDIR)/opt/csw/lib/dbus-1.0/include + CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --disable-tests + include gar/category.mk Modified: csw/mgar/pkg/dbus-python/trunk/checksums =================================================================== --- csw/mgar/pkg/dbus-python/trunk/checksums 2009-06-05 17:58:58 UTC (rev 5186) +++ csw/mgar/pkg/dbus-python/trunk/checksums 2009-06-05 18:35:44 UTC (rev 5187) @@ -1 +1,2 @@ 562c78876219bf458d79a041af18293d download/dbus-python-0.83.0.tar.gz +c42304c930b301e5041a809db73dcbe6 download/no-stdint.diff Added: csw/mgar/pkg/dbus-python/trunk/files/no-stdint.diff =================================================================== --- csw/mgar/pkg/dbus-python/trunk/files/no-stdint.diff (rev 0) +++ csw/mgar/pkg/dbus-python/trunk/files/no-stdint.diff 2009-06-05 18:35:44 UTC (rev 5187) @@ -0,0 +1,72 @@ +diff --speed-large-files --minimal -Nru dbus-python-0.83.0.orig/_dbus_bindings/abstract.c dbus-python-0.83.0/_dbus_bindings/abstract.c +--- dbus-python-0.83.0.orig/_dbus_bindings/abstract.c 2008-07-23 10:35:58.000000000 -0500 ++++ dbus-python-0.83.0/_dbus_bindings/abstract.c 2009-06-05 13:25:05.519497264 -0500 +@@ -26,7 +26,7 @@ + #include + #include + +-#include ++#include + + #include "dbus_bindings-internal.h" + #include "types-internal.h" +diff --speed-large-files --minimal -Nru dbus-python-0.83.0.orig/_dbus_bindings/bytes.c dbus-python-0.83.0/_dbus_bindings/bytes.c +--- dbus-python-0.83.0.orig/_dbus_bindings/bytes.c 2008-07-23 10:35:58.000000000 -0500 ++++ dbus-python-0.83.0/_dbus_bindings/bytes.c 2009-06-05 13:25:32.683434850 -0500 +@@ -26,7 +26,7 @@ + #include + #include + +-#include ++#include + + #include "dbus_bindings-internal.h" + #include "types-internal.h" +diff --speed-large-files --minimal -Nru dbus-python-0.83.0.orig/_dbus_bindings/containers.c dbus-python-0.83.0/_dbus_bindings/containers.c +--- dbus-python-0.83.0.orig/_dbus_bindings/containers.c 2008-07-23 10:35:58.000000000 -0500 ++++ dbus-python-0.83.0/_dbus_bindings/containers.c 2009-06-05 13:25:51.428790510 -0500 +@@ -26,7 +26,7 @@ + #include + #include + +-#include ++#include + + #include "dbus_bindings-internal.h" + #include "types-internal.h" +diff --speed-large-files --minimal -Nru dbus-python-0.83.0.orig/_dbus_bindings/float.c dbus-python-0.83.0/_dbus_bindings/float.c +--- dbus-python-0.83.0.orig/_dbus_bindings/float.c 2008-07-23 10:35:59.000000000 -0500 ++++ dbus-python-0.83.0/_dbus_bindings/float.c 2009-06-05 13:26:00.721774780 -0500 +@@ -26,7 +26,7 @@ + #include + #include + +-#include ++#include + + #include "dbus_bindings-internal.h" + #include "types-internal.h" +diff --speed-large-files --minimal -Nru dbus-python-0.83.0.orig/_dbus_bindings/signature.c dbus-python-0.83.0/_dbus_bindings/signature.c +--- dbus-python-0.83.0.orig/_dbus_bindings/signature.c 2008-07-23 10:35:59.000000000 -0500 ++++ dbus-python-0.83.0/_dbus_bindings/signature.c 2009-06-05 13:26:10.893919772 -0500 +@@ -26,7 +26,7 @@ + #include + #include + +-#include ++#include + + #include "dbus_bindings-internal.h" + #include "types-internal.h" +diff --speed-large-files --minimal -Nru dbus-python-0.83.0.orig/_dbus_bindings/types-internal.h dbus-python-0.83.0/_dbus_bindings/types-internal.h +--- dbus-python-0.83.0.orig/_dbus_bindings/types-internal.h 2008-07-23 10:35:59.000000000 -0500 ++++ dbus-python-0.83.0/_dbus_bindings/types-internal.h 2009-06-05 13:26:23.934533899 -0500 +@@ -24,7 +24,7 @@ + */ + + #include +-#include ++#include + + #include "dbus_bindings-internal.h" + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jun 5 22:17:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 05 Jun 2009 20:17:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[5188] csw/mgar/pkg/x11/libxcb/trunk/Makefile Message-ID: Revision: 5188 http://gar.svn.sourceforge.net/gar/?rev=5188&view=rev Author: dmichelsen Date: 2009-06-05 20:17:39 +0000 (Fri, 05 Jun 2009) Log Message: ----------- x11/libxcb: Fix catalog name Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-06-05 18:35:44 UTC (rev 5187) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-06-05 20:17:39 UTC (rev 5188) @@ -23,7 +23,7 @@ SPKG_DESC_CSWlibxcbdoc = The XCB library documentation CATALOGNAME_CSWlibxcb = libxcb -CATALOGNAME_CSWlibxcbdevel = libxcb_dev +CATALOGNAME_CSWlibxcbdevel = libxcb_devel CATALOGNAME_CSWlibxcbdoc = libxcb_doc PKGFILES_CSWlibxcbdevel = $(PKGFILES_DEVEL) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jun 5 23:22:28 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 05 Jun 2009 21:22:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[5189] csw/mgar/pkg/gitosis/trunk/Makefile Message-ID: Revision: 5189 http://gar.svn.sourceforge.net/gar/?rev=5189&view=rev Author: bdwalton Date: 2009-06-05 21:22:28 +0000 (Fri, 05 Jun 2009) Log Message: ----------- take advantage of pycompile Modified Paths: -------------- csw/mgar/pkg/gitosis/trunk/Makefile Modified: csw/mgar/pkg/gitosis/trunk/Makefile =================================================================== --- csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-05 20:17:39 UTC (rev 5188) +++ csw/mgar/pkg/gitosis/trunk/Makefile 2009-06-05 21:22:28 UTC (rev 5189) @@ -54,9 +54,9 @@ EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/CSWgitosis\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" }; $$$$3 ~ /\/var\/opt\/csw\/gitosis/ { $$$$2 = "ugfiles"; $$$$5 = "gitosis"; $$$$6 = "gitosis" } { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/CSWgitosis\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" }; $$$$3 ~ /\/var\/opt\/csw\/gitosis/ { $$$$2 = "ugfiles"; $$$$5 = "gitosis"; $$$$6 = "gitosis" }; $$$$3 ~ /\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' -SPKG_CLASSES = none cswusergroup ugfiles +SPKG_CLASSES = none cswpycompile cswusergroup ugfiles include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sat Jun 6 04:20:09 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 06 Jun 2009 02:20:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5190] csw/mgar/pkg/trac/trunk Message-ID: Revision: 5190 http://gar.svn.sourceforge.net/gar/?rev=5190&view=rev Author: valholla Date: 2009-06-06 02:20:08 +0000 (Sat, 06 Jun 2009) Log Message: ----------- relocate gar and pycompile class Modified Paths: -------------- csw/mgar/pkg/trac/trunk/Makefile csw/mgar/pkg/trac/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/trac/trunk/ Property changes on: csw/mgar/pkg/trac/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2-relocate Modified: csw/mgar/pkg/trac/trunk/Makefile =================================================================== --- csw/mgar/pkg/trac/trunk/Makefile 2009-06-05 21:22:28 UTC (rev 5189) +++ csw/mgar/pkg/trac/trunk/Makefile 2009-06-06 02:20:08 UTC (rev 5190) @@ -1,5 +1,5 @@ GARNAME = Trac -GARVERSION = 0.11.2.1 +GARVERSION = 0.11.4 CATEGORIES = apps DESCRIPTION = Integrated SCM and Project Management @@ -23,26 +23,26 @@ SPKG_DESC_CSWtrac = Integrated SCM and Project Management # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = (\d+(?:\.\d+)*) +UFILES_REGEX = (\d+(?:\.\d+)*).tar.gz SPKG_SOURCEURL = http://trac.edgewall.org/wiki/TracDownload +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + CONFIGURE_SCRIPTS = -BUILD_SCRIPTS = +BUILD_SCRIPTS = $(WORKSRC)/setup.py TEST_SCRIPTS = -INSTALL_SCRIPTS = custom +INSTALL_SCRIPTS = $(WORKSRC)/setup.py INSTALL_ARGS = --root=$(DESTDIR) include gar/category.mk -install-custom: - @echo " ==> Installing $(GARNAME)" - @( cd $(WORKSRC) ; $(INSTALL_ENV) python ./setup.py install $(INSTALL_ARGS) ) +post-install-modulated: copy-docs $(DONADA) -post-install: copy-docs - $(DONADA) - copy-docs: @install -d $(DESTDIR)$(docdir)/trac @cp -R $(WORKSRC)/contrib $(DESTDIR)$(docdir)/trac Modified: csw/mgar/pkg/trac/trunk/checksums =================================================================== --- csw/mgar/pkg/trac/trunk/checksums 2009-06-05 21:22:28 UTC (rev 5189) +++ csw/mgar/pkg/trac/trunk/checksums 2009-06-06 02:20:08 UTC (rev 5190) @@ -1 +1 @@ -984ade4c234539f50c738d6a55a45e80 download/Trac-0.11.2.1.tar.gz +a765087b22661cf4aa1520518cddecae download/Trac-0.11.4.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Jun 6 22:49:45 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 06 Jun 2009 20:49:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[5191] csw/mgar/pkg/pixman/trunk Message-ID: Revision: 5191 http://gar.svn.sourceforge.net/gar/?rev=5191&view=rev Author: wbonnet Date: 2009-06-06 20:49:45 +0000 (Sat, 06 Jun 2009) Log Message: ----------- Modified Paths: -------------- csw/mgar/pkg/pixman/trunk/Makefile csw/mgar/pkg/pixman/trunk/checksums Modified: csw/mgar/pkg/pixman/trunk/Makefile =================================================================== --- csw/mgar/pkg/pixman/trunk/Makefile 2009-06-06 02:20:08 UTC (rev 5190) +++ csw/mgar/pkg/pixman/trunk/Makefile 2009-06-06 20:49:45 UTC (rev 5191) @@ -1,5 +1,5 @@ GARNAME = pixman -GARVERSION = 0.15.8 +GARVERSION = 0.15.10 CATEGORIES = lib DESCRIPTION = The pixel-manipulation library for X and cairo Modified: csw/mgar/pkg/pixman/trunk/checksums =================================================================== --- csw/mgar/pkg/pixman/trunk/checksums 2009-06-06 02:20:08 UTC (rev 5190) +++ csw/mgar/pkg/pixman/trunk/checksums 2009-06-06 20:49:45 UTC (rev 5191) @@ -1 +1 @@ -22318888bdc56c28b742ebdd93931c41 download/pixman-0.15.8.tar.gz +8813e13aa3817df03039bd66a4863670 download/pixman-0.15.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 Jun 8 10:05:43 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 08 Jun 2009 08:05:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[5192] csw/mgar/pkg/x11/libX11/trunk/Makefile Message-ID: Revision: 5192 http://gar.svn.sourceforge.net/gar/?rev=5192&view=rev Author: dmichelsen Date: 2009-06-08 08:05:40 +0000 (Mon, 08 Jun 2009) Log Message: ----------- libX11: Add prerequisite Modified Paths: -------------- csw/mgar/pkg/x11/libX11/trunk/Makefile Modified: csw/mgar/pkg/x11/libX11/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-06-06 20:49:45 UTC (rev 5191) +++ csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-06-08 08:05:40 UTC (rev 5192) @@ -18,7 +18,7 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -PREREQUISITE_PKGS = CSWxcbproto CSWxextproto CSWxtrans CSWkbproto CSWinputproto CSWlibpthreadstubs +PREREQUISITE_PKGS = CSWxcbproto CSWxextproto CSWxtrans CSWkbproto CSWinputproto CSWlibpthreadstubs CSWlibxcbdevel PACKAGES = CSWlibx11 CSWlibx11devel 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 Jun 8 10:12:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 08 Jun 2009 08:12:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5193] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 5193 http://gar.svn.sourceforge.net/gar/?rev=5193&view=rev Author: dmichelsen Date: 2009-06-08 08:12:06 +0000 (Mon, 08 Jun 2009) Log Message: ----------- mGAR v2: Add modulation-specific PAX args and fix remerge-bug Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-06-08 08:05:40 UTC (rev 5192) +++ csw/mgar/gar/v2/gar.mk 2009-06-08 08:12:06 UTC (rev 5193) @@ -595,7 +595,7 @@ # has not, so we use this one for appending. -_PAX_ARGS = $(_INC_EXT_RULE) $(EXTRA_PAX_ARGS) +_PAX_ARGS = $(_INC_EXT_RULE) $(EXTRA_PAX_ARGS_$(MODULATION)) $(EXTRA_PAX_ARGS) # The basic merge merges the compiles for all ISAs on the current architecture merge: checksum pre-merge $(addprefix merge-,$(MODULATIONS)) merge-license $(if $(NOSOURCEPACKAGE),,merge-src) post-merge @@ -649,7 +649,7 @@ remerge: reset-merge merge reset-merge: reset-package $(addprefix reset-merge-,$(MODULATIONS)) reset-merge-license reset-merge-src - @rm -f $(foreach M,$(MODULATIONS),$(COOKIEDIR)/merge-$M) $(COOKIEDIR)/merge + @rm -f $(COOKIEDIR)/pre-merge $(foreach M,$(MODULATIONS),$(COOKIEDIR)/merge-$M) $(COOKIEDIR)/merge $(COOKIEDIR)/post-merge @rm -rf $(PKGROOT) @$(DONADA) 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 Jun 8 10:17:14 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 08 Jun 2009 08:17:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[5194] csw/mgar/pkg/sysstat/trunk Message-ID: Revision: 5194 http://gar.svn.sourceforge.net/gar/?rev=5194&view=rev Author: dmichelsen Date: 2009-06-08 08:17:14 +0000 (Mon, 08 Jun 2009) Log Message: ----------- sysstat: Update to 20090606 Modified Paths: -------------- csw/mgar/pkg/sysstat/trunk/Makefile csw/mgar/pkg/sysstat/trunk/checksums Modified: csw/mgar/pkg/sysstat/trunk/Makefile =================================================================== --- csw/mgar/pkg/sysstat/trunk/Makefile 2009-06-08 08:12:06 UTC (rev 5193) +++ csw/mgar/pkg/sysstat/trunk/Makefile 2009-06-08 08:17:14 UTC (rev 5194) @@ -1,5 +1,5 @@ GARNAME = sysstat -GARVERSION = 20090522 +GARVERSION = 20090606 CATEGORIES = utils DESCRIPTION = Key system statistics at a glance Modified: csw/mgar/pkg/sysstat/trunk/checksums =================================================================== --- csw/mgar/pkg/sysstat/trunk/checksums 2009-06-08 08:12:06 UTC (rev 5193) +++ csw/mgar/pkg/sysstat/trunk/checksums 2009-06-08 08:17:14 UTC (rev 5194) @@ -1,2 +1,2 @@ 7a7f0f67bb68484b56375d4a922fb63f download/patch-onlyisaexec-sysstatd.diff -f3cd696724b9291265dd3d3216dcacf7 download/sysstat-20090522.tgz +9f64755af85844d2c3cbe49802dab324 download/sysstat-20090606.tgz 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 Jun 8 11:55:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 08 Jun 2009 09:55:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5195] csw/mgar/pkg/bdb/trunk/Makefile Message-ID: Revision: 5195 http://gar.svn.sourceforge.net/gar/?rev=5195&view=rev Author: dmichelsen Date: 2009-06-08 09:55:25 +0000 (Mon, 08 Jun 2009) Log Message: ----------- bdb47: Relocate from bdb47/* to /opt/csw, adjust package names Modified Paths: -------------- csw/mgar/pkg/bdb/trunk/Makefile Modified: csw/mgar/pkg/bdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/bdb/trunk/Makefile 2009-06-08 08:17:14 UTC (rev 5194) +++ csw/mgar/pkg/bdb/trunk/Makefile 2009-06-08 09:55:25 UTC (rev 5195) @@ -51,18 +51,26 @@ NO_ISAEXEC = 1 -PACKAGES = CSWbdb CSWbdb-devel CSWbdb-doc +PACKAGES = CSWbdb CSWbdbdevel CSWbdbdoc -CATALOGNAME_CSWbdb = berkeleydb -CATALOGNAME_CSWbdb-devel = berkeleydb_devel -CATALOGNAME_CSWbdb-doc = berkeleydb_doc +CATALOGNAME_CSWbdb = berkeleydb +CATALOGNAME_CSWbdbdevel = berkeleydb_devel +CATALOGNAME_CSWbdbdoc = berkeleydb_doc -ARCHALL_CSWbdb-doc = 1 +# Remove the license from share/doc/berkeleydb/license/.* +# because GAR expects license to be a file instead of a directory +EXTRA_MERGE_EXCLUDE_FILES = .*/license.* -SPKG_DESC_CSWbdb = BerkeleyDB 4.7 embedded database libraries and utilities -SPKG_DESC_CSWbdb-devel = BerkeleyDB 4.7 development support -SPKG_DESC_CSWbdb-doc = BerkeleyDB 4.7 documentation +EXTRA_PAX_ARGS += -s ',^\.$(prefix)/docs/,.$(BUILD_PREFIX)/share/doc/$(CATALOGNAME_CSWbdb)/,' +EXTRA_MERGE_EXCLUDE_FILES_isa-sparcv9 = .*/docs.* +EXTRA_MERGE_EXCLUDE_FILES_isa-amd64 = .*/docs.* +ARCHALL_CSWbdbdoc = 1 + +SPKG_DESC_CSWbdb = BerkeleyDB 4.7 embedded database libraries and utilities +SPKG_DESC_CSWbdbdevel = BerkeleyDB 4.7 development support +SPKG_DESC_CSWbdbdoc = BerkeleyDB 4.7 documentation + REQUIRED_PKGS_CSWbdb-devel = CSWbdb LICENSE = LICENSE @@ -83,8 +91,8 @@ @( cd $(WORKSRC) ; $(CONFIGURE_ENV) ../dist/configure $(CONFIGURE_ARGS) ) @$(MAKECOOKIE) -post-merge: - gln -s . $(PKGROOT)$(libdir)/32 - gln -s $(ISA_DEFAULT64) $(PKGROOT)$(libdir)/64 - @$(MAKECOOKIE) +#post-merge: +# gln -s . $(PKGROOT)$(libdir)/32 +# gln -s $(ISA_DEFAULT64) $(PKGROOT)$(libdir)/64 +# @$(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 Jun 8 12:13:56 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 08 Jun 2009 10:13:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[5196] csw/mgar/pkg/bdb/trunk/Makefile Message-ID: Revision: 5196 http://gar.svn.sourceforge.net/gar/?rev=5196&view=rev Author: dmichelsen Date: 2009-06-08 10:13:56 +0000 (Mon, 08 Jun 2009) Log Message: ----------- bdb: Fixup doc merging Modified Paths: -------------- csw/mgar/pkg/bdb/trunk/Makefile Modified: csw/mgar/pkg/bdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/bdb/trunk/Makefile 2009-06-08 09:55:25 UTC (rev 5195) +++ csw/mgar/pkg/bdb/trunk/Makefile 2009-06-08 10:13:56 UTC (rev 5196) @@ -61,7 +61,7 @@ # because GAR expects license to be a file instead of a directory EXTRA_MERGE_EXCLUDE_FILES = .*/license.* -EXTRA_PAX_ARGS += -s ',^\.$(prefix)/docs/,.$(BUILD_PREFIX)/share/doc/$(CATALOGNAME_CSWbdb)/,' +EXTRA_PAX_ARGS += -s ',^\.$(prefix)/docs,.$(BUILD_PREFIX)/share/doc/$(CATALOGNAME_CSWbdb),' EXTRA_MERGE_EXCLUDE_FILES_isa-sparcv9 = .*/docs.* EXTRA_MERGE_EXCLUDE_FILES_isa-amd64 = .*/docs.* @@ -75,9 +75,9 @@ LICENSE = LICENSE -PKGFILES_CSWbdb-doc = $(prefix)/docs/.* +PKGFILES_CSWbdbdoc = $(PKGFILES_DOC) -PKGFILES_CSWbdb-devel = $(PKGFILES_DEVEL) +PKGFILES_CSWbdbdevel = $(PKGFILES_DEVEL) include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From j_arndt at users.sourceforge.net Mon Jun 8 12:32:23 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Mon, 08 Jun 2009 10:32:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[5197] csw/mgar/pkg/nrpe/trunk Message-ID: Revision: 5197 http://gar.svn.sourceforge.net/gar/?rev=5197&view=rev Author: j_arndt Date: 2009-06-08 10:32:23 +0000 (Mon, 08 Jun 2009) Log Message: ----------- nrpe: fixed issue #3707 Modified Paths: -------------- csw/mgar/pkg/nrpe/trunk/Makefile csw/mgar/pkg/nrpe/trunk/checksums Modified: csw/mgar/pkg/nrpe/trunk/Makefile =================================================================== --- csw/mgar/pkg/nrpe/trunk/Makefile 2009-06-08 10:13:56 UTC (rev 5196) +++ csw/mgar/pkg/nrpe/trunk/Makefile 2009-06-08 10:32:23 UTC (rev 5197) @@ -35,6 +35,7 @@ PATCHFILES = patch.diff # Removal of LOG_AUTHPRIV and LOG_FTP # Solaris doesn't have these log facilities PATCHFILES += configure.diff +PATCHFILES += common.h.diff # Enable packet size of 8192 bytes sysconfdir = $(prefix)/etc bindir = $(prefix)/bin Modified: csw/mgar/pkg/nrpe/trunk/checksums =================================================================== --- csw/mgar/pkg/nrpe/trunk/checksums 2009-06-08 10:13:56 UTC (rev 5196) +++ csw/mgar/pkg/nrpe/trunk/checksums 2009-06-08 10:32:23 UTC (rev 5197) @@ -1,11 +1,12 @@ -b2d75e2962f1e3151ef58794d60c9e97 download/nrpe-2.12.tar.gz +bda68135e2b65da40c3d2b68a3b8dc78 download/CSWnrpe.checkinstall 1c656040abd280f9228b42df744d93eb download/CSWnrpe.gspec -ab50f565dba01e9c891f7fd0fc585fda download/CSWnrpe.prototype -bda68135e2b65da40c3d2b68a3b8dc78 download/CSWnrpe.checkinstall 53eea7ed36535bb6cbe1d6fe0aae3508 download/CSWnrpe.preinstall 393872a95d2b9ec90363664c31074415 download/CSWnrpe.preremove -4aad349d0e04e6cb8af186d87c44c3ba download/cswnrpe +ab50f565dba01e9c891f7fd0fc585fda download/CSWnrpe.prototype 2b35d5e0d57bcb3aff096040e0d06b8b download/CSWnrpeplugin.gspec e22a7817c7665e79bcbad7e091375be9 download/CSWnrpeplugin.prototype +36b85dd37d47a3813bfef5dee5804b61 download/common.h.diff +4b51476c782d2c5764d10f8ed530ada0 download/configure.diff +4aad349d0e04e6cb8af186d87c44c3ba download/cswnrpe +b2d75e2962f1e3151ef58794d60c9e97 download/nrpe-2.12.tar.gz 5b02d4385daaea2a8c13903539aa6189 download/patch.diff -4b51476c782d2c5764d10f8ed530ada0 download/configure.diff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From j_arndt at users.sourceforge.net Mon Jun 8 12:47:29 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Mon, 08 Jun 2009 10:47:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[5198] csw/mgar/pkg/nrpe/trunk/files/common.h.diff Message-ID: Revision: 5198 http://gar.svn.sourceforge.net/gar/?rev=5198&view=rev Author: j_arndt Date: 2009-06-08 10:47:29 +0000 (Mon, 08 Jun 2009) Log Message: ----------- nrpe: fixed issue #3707, forget to include patch file Added Paths: ----------- csw/mgar/pkg/nrpe/trunk/files/common.h.diff Added: csw/mgar/pkg/nrpe/trunk/files/common.h.diff =================================================================== --- csw/mgar/pkg/nrpe/trunk/files/common.h.diff (rev 0) +++ csw/mgar/pkg/nrpe/trunk/files/common.h.diff 2009-06-08 10:47:29 UTC (rev 5198) @@ -0,0 +1,21 @@ +diff --speed-large-files --minimal -Nru nrpe-2.12.orig/include/common.h nrpe-2.12/include/common.h +--- nrpe-2.12.orig/include/common.h 2008-03-10 22:04:42.000000000 +0100 ++++ nrpe-2.12/include/common.h 2009-06-08 12:23:57.199466306 +0200 +@@ -41,7 +41,7 @@ + #define DEFAULT_SOCKET_TIMEOUT 10 /* timeout after 10 seconds */ + #define DEFAULT_CONNECTION_TIMEOUT 300 /* timeout if daemon is waiting for connection more than this time */ + +-#define MAX_INPUT_BUFFER 2048 /* max size of most buffers we use */ ++#define MAX_INPUT_BUFFER 8192 /* max size of most buffers we use */ + #define MAX_FILENAME_LENGTH 256 + + #define MAX_HOST_ADDRESS_LENGTH 256 /* max size of a host address */ +@@ -60,7 +60,7 @@ + #define NRPE_PACKET_VERSION_2 2 + #define NRPE_PACKET_VERSION_1 1 /* older packet version identifiers (no longer supported) */ + +-#define MAX_PACKETBUFFER_LENGTH 1024 /* max amount of data we'll send in one query/response */ ++#define MAX_PACKETBUFFER_LENGTH 8192 /* max amount of data we'll send in one query/response */ + + typedef struct packet_struct{ + int16_t packet_version; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Jun 8 13:50:10 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 08 Jun 2009 11:50:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[5199] csw/mgar/pkg/cpan/Test-Builder-Tester/trunk Message-ID: Revision: 5199 http://gar.svn.sourceforge.net/gar/?rev=5199&view=rev Author: bonivart Date: 2009-06-08 11:50:10 +0000 (Mon, 08 Jun 2009) Log Message: ----------- Test-Builder-Tester: remove man pages (#2192) Modified Paths: -------------- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/CSWpmtstbldrtester.prototype Modified: csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile 2009-06-08 10:47:29 UTC (rev 5198) +++ csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile 2009-06-08 11:50:10 UTC (rev 5199) @@ -22,4 +22,7 @@ # provided with Perl 5.8.8. TEST_SCRIPTS = +PROTOTYPE_FILTER = awk '$$$$3 ~ /\.3perl$$$$/ { next } \ + { print }' + include gar/category.mk Deleted: csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/CSWpmtstbldrtester.prototype =================================================================== --- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/CSWpmtstbldrtester.prototype 2009-06-08 10:47:29 UTC (rev 5198) +++ csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/files/CSWpmtstbldrtester.prototype 2009-06-08 11:50:10 UTC (rev 5199) @@ -1,20 +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/Test 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Test/Builder 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Test/Builder/Tester 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Test/Builder/Tester/.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::Builder::Tester.3perl 0444 root bin -f none /opt/csw/share/man/man3/Test::Builder::Tester::Color.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/Builder 0755 root bin -d none /opt/csw/share/perl/csw/Test/Builder/Tester 0755 root bin -f none /opt/csw/share/perl/csw/Test/Builder/Tester.pm 0444 root bin -f none /opt/csw/share/perl/csw/Test/Builder/Tester/Color.pm 0444 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Jun 8 14:21:44 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 08 Jun 2009 12:21:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5200] csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile Message-ID: Revision: 5200 http://gar.svn.sourceforge.net/gar/?rev=5200&view=rev Author: bonivart Date: 2009-06-08 12:21:44 +0000 (Mon, 08 Jun 2009) Log Message: ----------- Test-Builder-Tester: Makefile update Modified Paths: -------------- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile Modified: csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile 2009-06-08 11:50:10 UTC (rev 5199) +++ csw/mgar/pkg/cpan/Test-Builder-Tester/trunk/Makefile 2009-06-08 12:21:44 UTC (rev 5200) @@ -22,7 +22,6 @@ # provided with Perl 5.8.8. TEST_SCRIPTS = -PROTOTYPE_FILTER = awk '$$$$3 ~ /\.3perl$$$$/ { next } \ - { print }' +EXTRA_MERGE_EXCLUDE_FILES = .*\.3perl 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 Mon Jun 8 15:20:32 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 08 Jun 2009 13:20:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[5201] csw/mgar/pkg/cpan/Module-Build/trunk/Makefile Message-ID: Revision: 5201 http://gar.svn.sourceforge.net/gar/?rev=5201&view=rev Author: bonivart Date: 2009-06-08 13:20:32 +0000 (Mon, 08 Jun 2009) Log Message: ----------- Module-Build: fix Makefile Modified Paths: -------------- csw/mgar/pkg/cpan/Module-Build/trunk/Makefile Modified: csw/mgar/pkg/cpan/Module-Build/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Build/trunk/Makefile 2009-06-08 12:21:44 UTC (rev 5200) +++ csw/mgar/pkg/cpan/Module-Build/trunk/Makefile 2009-06-08 13:20:32 UTC (rev 5201) @@ -11,20 +11,14 @@ much more straightforward way than with MakeMaker. endef -#DISTFILES += $(call admfiles,CSWpmmodulebuild,depend prototype) +LICENSE = LICENSE PACKAGES = CSWpmmodulebuild CATALOGNAME = pm_modulebuild -REQUIRED_PKGS = CSWpmarchivetar CSWpmextutparsexs CSWpmyaml -LICENSE = LICENSE +REQUIRED_PKGS = CSWpmarchivetar CSWpmextutparsexs CSWpmextutcbuilder CSWpmmodulesign +PREREQUISITE_PKGS = CSWperl -DEPENDS += cpan/YAML -DEPENDS += cpan/ExtUtils-ParseXS -DEPENDS += cpan/Archive-Tar - -CONFIGURE_ARGS = destdir=$(DESTDIR) - 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 bonivart at users.sourceforge.net Mon Jun 8 16:59:31 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 08 Jun 2009 14:59:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[5202] csw/mgar/pkg/cpan/HTML-Mason/trunk/Makefile Message-ID: Revision: 5202 http://gar.svn.sourceforge.net/gar/?rev=5202&view=rev Author: bonivart Date: 2009-06-08 14:59:31 +0000 (Mon, 08 Jun 2009) Log Message: ----------- HTML-Mason: update dependencies Modified Paths: -------------- csw/mgar/pkg/cpan/HTML-Mason/trunk/Makefile Modified: csw/mgar/pkg/cpan/HTML-Mason/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/HTML-Mason/trunk/Makefile 2009-06-08 13:20:32 UTC (rev 5201) +++ csw/mgar/pkg/cpan/HTML-Mason/trunk/Makefile 2009-06-08 14:59:31 UTC (rev 5202) @@ -12,11 +12,11 @@ LICENSE = LICENSE -REQUIRED_PKGS = CSWpmcachecache CSWpmfcgi CSWpmclscontainer CSWpmexceptcls CSWpmprmsvldt CSWpmscalarlist - PACKAGES = CSWpmhtmlmason CATALOGNAME = pm_htmlmason +REQUIRED_PKGS = CSWpmexceptcls CSWpmclscontainer CSWpmprmsvldt CSWpmcachecache + 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 bonivart at users.sourceforge.net Mon Jun 8 17:04:02 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 08 Jun 2009 15:04:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[5203] csw/mgar/pkg/cpan/Authen-SASL/trunk/Makefile Message-ID: Revision: 5203 http://gar.svn.sourceforge.net/gar/?rev=5203&view=rev Author: bonivart Date: 2009-06-08 15:04:01 +0000 (Mon, 08 Jun 2009) Log Message: ----------- Authen-SASL: update dependencies Modified Paths: -------------- csw/mgar/pkg/cpan/Authen-SASL/trunk/Makefile Modified: csw/mgar/pkg/cpan/Authen-SASL/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Authen-SASL/trunk/Makefile 2009-06-08 14:59:31 UTC (rev 5202) +++ csw/mgar/pkg/cpan/Authen-SASL/trunk/Makefile 2009-06-08 15:04:01 UTC (rev 5203) @@ -15,6 +15,9 @@ PACKAGES = CSWpmauthensasl CATALOGNAME = pm_authensasl +REQUIRED_PKGS = CSWpmgssapi CSWpmdigesthmac +PREREQUISITE_PKGS = CSWperl + ARCHALL = 1 EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon Jun 8 18:29:56 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 08 Jun 2009 16:29:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[5204] csw/mgar/pkg/pygtk/trunk Message-ID: Revision: 5204 http://gar.svn.sourceforge.net/gar/?rev=5204&view=rev Author: valholla Date: 2009-06-08 16:29:56 +0000 (Mon, 08 Jun 2009) Log Message: ----------- fix fetch url Modified Paths: -------------- csw/mgar/pkg/pygtk/trunk/Makefile csw/mgar/pkg/pygtk/trunk/checksums Modified: csw/mgar/pkg/pygtk/trunk/Makefile =================================================================== --- csw/mgar/pkg/pygtk/trunk/Makefile 2009-06-08 15:04:01 UTC (rev 5203) +++ csw/mgar/pkg/pygtk/trunk/Makefile 2009-06-08 16:29:56 UTC (rev 5204) @@ -1,34 +1,29 @@ GARNAME = pygtk -GARVERSION = 2.12.1 +GARVERSION = 2.14.1 CATEGORIES = lang +RELVER = $(shell echo $(GARVERSION) |gsed 's/\(^[0-9].*\.[0-9].*\)\.[0-9]*/\1/') DESCRIPTION = pygtk support for Python define BLURB This is a Python language binding for gobject. endef -MASTER_SITES = http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.15/ +MASTER_SITES = http://ftp.gnome.org/pub/GNOME/sources/pygtk/$(RELVER)/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += fixme.sh +STRIP_LIBTOOL = 1 PACKAGES = CSWpygtk REQUIRED_PKGS_CSWpygtk = CSWpython -EXTRA_CFLAGS = -I../../pygobject/work/install-isa-sparcv8/usr/local/include/pygtk-2.0 -EXTRA_LINKER_FLAGS = -L../../pygobject/work/install-isa-sparcv8/usr/local/lib - CATALOGNAME_CSWpygtk = py_gtk SPKG_DESC_CSWpygtk = pygtk support for Python -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = (\d+(?:\.\d+)*) +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = (\d+(?:\.\d+)*).tar.bz2 #TEST_TARGET = check TEST_SCRIPTS = include gar/category.mk -post-configure-modulated: - @(echo "~~~ Fixing Libtool ~~~") - @$(DOWNLOADDIR)/fixme.sh $(WORKSRC) - $(DONADA) Modified: csw/mgar/pkg/pygtk/trunk/checksums =================================================================== --- csw/mgar/pkg/pygtk/trunk/checksums 2009-06-08 15:04:01 UTC (rev 5203) +++ csw/mgar/pkg/pygtk/trunk/checksums 2009-06-08 16:29:56 UTC (rev 5204) @@ -1,2 +1 @@ -a816346d750d61e3fa67a200e4292694 download/pygtk-2.12.1.tar.bz2 -70771682427d524354d50482371edca5 download/fixme.sh +c27a7d21b87910e80605d9135d220592 download/pygtk-2.14.1.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jun 8 19:29:29 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 08 Jun 2009 17:29:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[5205] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 5205 http://gar.svn.sourceforge.net/gar/?rev=5205&view=rev Author: dmichelsen Date: 2009-06-08 17:29:29 +0000 (Mon, 08 Jun 2009) Log Message: ----------- mGAR v2: Introduce GNOME_PROJ Modified Paths: -------------- csw/mgar/gar/v2/gar.conf.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-06-08 16:29:56 UTC (rev 5204) +++ csw/mgar/gar/v2/gar.conf.mk 2009-06-08 17:29:29 UTC (rev 5205) @@ -500,9 +500,10 @@ # # Gnome +GNOME_PROJ ?= $(GARNAME) GNOME_ROOT = http://ftp.gnome.org/pub/GNOME/sources GNOME_SUBV = $(shell echo $(GARVERSION) | awk -F. '{print $$1"."$$2}') -GNOME_MIRROR = $(GNOME_ROOT)/$(GARNAME)/$(GNOME_SUBV)/ +GNOME_MIRROR = $(GNOME_ROOT)/$(GNOME_PROJ)/$(GNOME_SUBV)/ # SourceForge SF_PROJ ?= $(GARNAME) 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 Jun 8 19:48:00 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 08 Jun 2009 17:48:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[5206] csw/mgar/pkg/orbit2 Message-ID: Revision: 5206 http://gar.svn.sourceforge.net/gar/?rev=5206&view=rev Author: dmichelsen Date: 2009-06-08 17:47:59 +0000 (Mon, 08 Jun 2009) Log Message: ----------- orbit2: Initial commit of gar'ified version Added Paths: ----------- csw/mgar/pkg/orbit2/Makefile csw/mgar/pkg/orbit2/branches/ csw/mgar/pkg/orbit2/tags/ csw/mgar/pkg/orbit2/tags/legacy/ csw/mgar/pkg/orbit2/trunk/Makefile csw/mgar/pkg/orbit2/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/orbit2/trunk/legacy/ Property Changed: ---------------- csw/mgar/pkg/orbit2/trunk/ Copied: csw/mgar/pkg/orbit2/Makefile (from rev 5079, csw/mgar/pkg/glib2/Makefile) =================================================================== --- csw/mgar/pkg/orbit2/Makefile (rev 0) +++ csw/mgar/pkg/orbit2/Makefile 2009-06-08 17:47:59 UTC (rev 5206) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/orbit2/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/orbit2/trunk/Makefile =================================================================== --- csw/mgar/pkg/orbit2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/orbit2/trunk/Makefile 2009-06-08 17:47:59 UTC (rev 5206) @@ -0,0 +1,27 @@ +GARNAME = ORBit2 +GARVERSION = 2.14.17 +CATEGORIES = lib + +DESCRIPTION = ORBit 2.x CORBA tools and libs +define BLURB + ORBit2 is a CORBA 2.4-compliant Object Request Broker (ORB) featuring + mature C, C++ and Python bindings. +endef + +MASTER_SITES = $(GNOME_MIRROR) + +SPKG_SOURCEURL = http://projects.gnome.org/ORBit2/ + +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 + +CONFIGURE_ARGS = $(DIRPATHS) +STRIP_LIBTOOL = 1 + +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 + +BUILD64 = 1 +NO_ISAEXEC = 1 + +TEST_TARGET = check + +include gar/category.mk Added: csw/mgar/pkg/orbit2/trunk/checksums =================================================================== --- csw/mgar/pkg/orbit2/trunk/checksums (rev 0) +++ csw/mgar/pkg/orbit2/trunk/checksums 2009-06-08 17:47:59 UTC (rev 5206) @@ -0,0 +1 @@ +10bfb957fa4a8935a0b4afaee7d71df7 download/ORBit2-2.14.17.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jun 8 20:02:06 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 08 Jun 2009 18:02:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5207] csw/mgar/pkg/libidl Message-ID: Revision: 5207 http://gar.svn.sourceforge.net/gar/?rev=5207&view=rev Author: dmichelsen Date: 2009-06-08 18:02:06 +0000 (Mon, 08 Jun 2009) Log Message: ----------- libidl: Initial commit after garifying legacy Added Paths: ----------- csw/mgar/pkg/libidl/Makefile csw/mgar/pkg/libidl/branches/ csw/mgar/pkg/libidl/tags/ csw/mgar/pkg/libidl/tags/legacy/ csw/mgar/pkg/libidl/trunk/Makefile csw/mgar/pkg/libidl/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/libidl/trunk/ Copied: csw/mgar/pkg/libidl/Makefile (from rev 5206, csw/mgar/pkg/orbit2/Makefile) =================================================================== --- csw/mgar/pkg/libidl/Makefile (rev 0) +++ csw/mgar/pkg/libidl/Makefile 2009-06-08 18:02:06 UTC (rev 5207) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/libidl/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Copied: csw/mgar/pkg/libidl/trunk/Makefile (from rev 5206, csw/mgar/pkg/orbit2/trunk/Makefile) =================================================================== --- csw/mgar/pkg/libidl/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libidl/trunk/Makefile 2009-06-08 18:02:06 UTC (rev 5207) @@ -0,0 +1,29 @@ +GARNAME = libIDL +GARVERSION = 0.8.13 +CATEGORIES = lib + +DESCRIPTION = Library for handling CORBA IDL +define BLURB +endef + +MASTER_SITES = $(GNOME_MIRROR) + +REQUIRED_PKGS = CSWggettextrt CSWglib2 + +SPKG_SOURCEURL = http://projects.gnome.org/$(GARNAME)/ + +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 + +CONFIGURE_ARGS = $(DIRPATHS) +STRIP_LIBTOOL = 1 + +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 + +BUILD64 = 1 +NO_ISAEXEC = 1 + +TEST_TARGET = check + +PACKAGES = CSWlibidl + +include gar/category.mk Copied: csw/mgar/pkg/libidl/trunk/checksums (from rev 5206, csw/mgar/pkg/orbit2/trunk/checksums) =================================================================== --- csw/mgar/pkg/libidl/trunk/checksums (rev 0) +++ csw/mgar/pkg/libidl/trunk/checksums 2009-06-08 18:02:06 UTC (rev 5207) @@ -0,0 +1 @@ +b43b289a859eb38a710f70622c46e571 download/libIDL-0.8.13.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Mon Jun 8 23:16:15 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 08 Jun 2009 21:16:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[5208] csw/mgar/pkg/pidgin/trunk Message-ID: Revision: 5208 http://gar.svn.sourceforge.net/gar/?rev=5208&view=rev Author: harpchad Date: 2009-06-08 21:16:15 +0000 (Mon, 08 Jun 2009) Log Message: ----------- Update to 2.5.6 Modified Paths: -------------- csw/mgar/pkg/pidgin/trunk/Makefile csw/mgar/pkg/pidgin/trunk/checksums Modified: csw/mgar/pkg/pidgin/trunk/Makefile =================================================================== --- csw/mgar/pkg/pidgin/trunk/Makefile 2009-06-08 18:02:06 UTC (rev 5207) +++ csw/mgar/pkg/pidgin/trunk/Makefile 2009-06-08 21:16:15 UTC (rev 5208) @@ -1,5 +1,5 @@ GARNAME = pidgin -GARVERSION = 2.5.5 +GARVERSION = 2.5.6 CATEGORIES = apps DESCRIPTION = Multi-protocol IM client Modified: csw/mgar/pkg/pidgin/trunk/checksums =================================================================== --- csw/mgar/pkg/pidgin/trunk/checksums 2009-06-08 18:02:06 UTC (rev 5207) +++ csw/mgar/pkg/pidgin/trunk/checksums 2009-06-08 21:16:15 UTC (rev 5208) @@ -1,2 +1,2 @@ -08d9c0c8dd43dbcec6f67d8ba596029f download/pidgin-2.5.5.tar.gz +1c935b7a758999c8acdc5ba0e665797c download/pidgin-2.5.6.tar.gz 41ec540885de7c34625768aa1fb9682b download/fixme.sh 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 Jun 8 23:16:28 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 08 Jun 2009 21:16:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[5209] csw/mgar/pkg/x11/xrender/trunk/Makefile Message-ID: Revision: 5209 http://gar.svn.sourceforge.net/gar/?rev=5209&view=rev Author: dmichelsen Date: 2009-06-08 21:16:27 +0000 (Mon, 08 Jun 2009) Log Message: ----------- x11/libxrender: Add link for compatibility lib Modified Paths: -------------- csw/mgar/pkg/x11/xrender/trunk/Makefile Modified: csw/mgar/pkg/x11/xrender/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-06-08 21:16:15 UTC (rev 5208) +++ csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-06-08 21:16:27 UTC (rev 5209) @@ -34,4 +34,7 @@ include gar/category.mk - +post-merge: + ginstall -d $(PKGROOT)$(BUILD_PREFIX)/lib + gln -s ../X11/lib/libXrender.so.1 $(PKGROOT)$(BUILD_PREFIX)/lib/libXrender.so.1 + @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon Jun 8 23:20:09 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 08 Jun 2009 21:20:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5210] csw/mgar/pkg/squirrelmail/trunk/Makefile Message-ID: Revision: 5210 http://gar.svn.sourceforge.net/gar/?rev=5210&view=rev Author: valholla Date: 2009-06-08 21:20:09 +0000 (Mon, 08 Jun 2009) Log Message: ----------- move basedir Modified Paths: -------------- csw/mgar/pkg/squirrelmail/trunk/Makefile Modified: csw/mgar/pkg/squirrelmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-06-08 21:16:27 UTC (rev 5209) +++ csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-06-08 21:20:09 UTC (rev 5210) @@ -37,7 +37,7 @@ TEST_SCRIPTS = ALLOW_RELOCATE = 1 -RELOCATE_PREFIX = /opt/csw/share +RELOCATE_PREFIX = /opt/csw/share/www configure-cswize: @(perl -i -pe 's|/var/local|/var/opt/csw|' \ $(WORKSRC)/config/config_default.php) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon Jun 8 23:24:44 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 08 Jun 2009 21:24:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5211] csw/mgar/pkg/mediawiki/trunk/Makefile Message-ID: Revision: 5211 http://gar.svn.sourceforge.net/gar/?rev=5211&view=rev Author: valholla Date: 2009-06-08 21:24:40 +0000 (Mon, 08 Jun 2009) Log Message: ----------- move basedir Modified Paths: -------------- csw/mgar/pkg/mediawiki/trunk/Makefile Modified: csw/mgar/pkg/mediawiki/trunk/Makefile =================================================================== --- csw/mgar/pkg/mediawiki/trunk/Makefile 2009-06-08 21:20:09 UTC (rev 5210) +++ csw/mgar/pkg/mediawiki/trunk/Makefile 2009-06-08 21:24:40 UTC (rev 5211) @@ -16,7 +16,7 @@ DISTFILES += httpd-mediawiki.conf.CSW README.CSW ALLOW_RELOCATE = 1 -RELOCATE_PREFIX = /opt/csw/share +RELOCATE_PREFIX = /opt/csw/share/www CATALOGNAME_CSWmediawiki = mediawiki SPKG_DESC_CSWmediawiki = $(DESCRIPTION) 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 Jun 9 16:54:54 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 09 Jun 2009 14:54:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[5212] csw/mgar/pkg/x11/xrender/trunk/Makefile Message-ID: Revision: 5212 http://gar.svn.sourceforge.net/gar/?rev=5212&view=rev Author: dmichelsen Date: 2009-06-09 14:54:54 +0000 (Tue, 09 Jun 2009) Log Message: ----------- x11/xrender: Change package name from CSWrenderdev to CSWlibxrenderdevel Modified Paths: -------------- csw/mgar/pkg/x11/xrender/trunk/Makefile Modified: csw/mgar/pkg/x11/xrender/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-06-08 21:24:40 UTC (rev 5211) +++ csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-06-09 14:54:54 UTC (rev 5212) @@ -17,16 +17,19 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = libXrender-(\d+(?:\.\d+)*).tar.gz -PACKAGES = CSWlibxrender CSWrenderdev +PACKAGES = CSWlibxrender CSWlibxrenderdevel +CATALOGNAME_CSWlibxrender = libxrender +CATALOGNAME_CSWlibxrenderdevel = libxrender_devel + PREREQUISITE_PKGS = CSWrenderproto -REQUIRED_PKGS_CSWrenderdev = CSWlibxrender +REQUIRED_PKGS_CSWlibxrenderdevel = CSWlibxrender REQUIRED_PKGS_CSWlibxrender = CSWx11common CSWlibx11 SPKG_DESC_CSWlibxrender = $(DESCRIPTION) -SPKG_DESC_CSWrenderdev = $(DESCRIPTION) development package +SPKG_DESC_CSWlibxrenderdevel = $(DESCRIPTION) development package -PKGFILES_CSWrenderdev = $(PKGFILES_DEVEL) +PKGFILES_CSWlibxrenderdevel = $(PKGFILES_DEVEL) BUILD64 = 1 NOISALIST = 1 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 Jun 9 17:30:19 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 09 Jun 2009 15:30:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[5213] csw/mgar/pkg Message-ID: Revision: 5213 http://gar.svn.sourceforge.net/gar/?rev=5213&view=rev Author: bonivart Date: 2009-06-09 15:30:19 +0000 (Tue, 09 Jun 2009) Log Message: ----------- samba: initial commit Added Paths: ----------- csw/mgar/pkg/samba/ csw/mgar/pkg/samba/branches/ csw/mgar/pkg/samba/tags/ csw/mgar/pkg/samba/trunk/ csw/mgar/pkg/samba/trunk/Makefile csw/mgar/pkg/samba/trunk/checksums csw/mgar/pkg/samba/trunk/files/ Property changes on: csw/mgar/pkg/samba/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/samba/trunk/Makefile =================================================================== --- csw/mgar/pkg/samba/trunk/Makefile (rev 0) +++ csw/mgar/pkg/samba/trunk/Makefile 2009-06-09 15:30:19 UTC (rev 5213) @@ -0,0 +1,39 @@ +GARNAME = samba +GARVERSION = 3.3.4 +CATEGORIES = apps + +DESCRIPTION = Tools to access a servers filespace and printers via SMB (server) +define BLURB + Tools to access a servers filespace and printers via SMB (server) +endef + +MASTER_SITES = http://samba.org/samba/ftp/stable/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +PACKAGES = CSWsamba CSWsambaclient CSWsambacommon CSWsambadoc CSWsambalib CSWsambalibdev CSWsambaswat CSWsambawb + +CATALOGNAME_CSWsamba = samba +CATALOGNAME_CSWsambaclient = samba_client +CATALOGNAME_CSWsambacommon = samba_common +CATALOGNAME_CSWsambadoc = samba_doc +CATALOGNAME_CSWsambalib = samba_lib +CATALOGNAME_CSWsambalibdev = samba_libdev +CATALOGNAME_CSWsambaswat = samba_swat +CATALOGNAME_CSWsambawb = samba_wb + +REQUIRED_PKGS_CSWsamba = CSWsasl CSWsambacommon CSWoldaprt CSWlibpopt CSWlibnet CSWlibcups CSWkrb5lib CSWiconv CSWggettext CSWfam +REQUIRED_PKGS_CSWsambaclient = CSWsasl CSWsambacommon CSWreadline CSWlibpopt CSWlibnet CSWkrb5lib CSWiconv CSWggettext +REQUIRED_PKGS_CSWsambacommon = CSWsasl CSWreadline CSWlibpopt CSWlibnet CSWkrb5lib CSWiconv CSWggettext +REQUIRED_PKGS_CSWsambalib = CSWsasl CSWlibnet CSWkrb5lib CSWiconv +REQUIRED_PKGS_CSWsambalibdev = CSWsasl CSWlibnet CSWkrb5lib CSWiconv +REQUIRED_PKGS_CSWsambaswat = CSWsasl CSWlibpopt CSWlibnet CSWlibcups CSWkrb5lib CSWiconv CSWggettext +REQUIRED_PKGS_CSWsambawb = CSWsamba + +ARCHALL_CSWsambadoc = 1 + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/samba/trunk/checksums =================================================================== --- csw/mgar/pkg/samba/trunk/checksums (rev 0) +++ csw/mgar/pkg/samba/trunk/checksums 2009-06-09 15:30:19 UTC (rev 5213) @@ -0,0 +1 @@ +1443165edb7cb3f56f1e77aec1ee3266 download/samba-3.3.4.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue Jun 9 20:44:03 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 09 Jun 2009 18:44:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[5214] csw/mgar/gar/v2-relocate/gar.pkg.mk Message-ID: Revision: 5214 http://gar.svn.sourceforge.net/gar/?rev=5214&view=rev Author: valholla Date: 2009-06-09 18:44:02 +0000 (Tue, 09 Jun 2009) Log Message: ----------- force basedir of /opt not to relocate Modified Paths: -------------- csw/mgar/gar/v2-relocate/gar.pkg.mk Modified: csw/mgar/gar/v2-relocate/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2-relocate/gar.pkg.mk 2009-06-09 15:30:19 UTC (rev 5213) +++ csw/mgar/gar/v2-relocate/gar.pkg.mk 2009-06-09 18:44:02 UTC (rev 5214) @@ -295,6 +295,10 @@ # for distributing files to individual packages. PROTOTYPE = $(WORKDIR)/prototype +define dontrelocate + $(shell gsed -i -e 's,\(.\) .* \($(1)[\s/]*\),\1 norelocate /\2,g' $(2)) +endef + # Dynamic prototypes work like this: # - A prototype from DISTFILES takes precedence over @@ -330,6 +334,7 @@ else \ cat $(PROTOTYPE) $(_CSWCLASS_FILTER) $(_PROTOTYPE_FILTER_$*) >$@; \ fi + $(if $(ALLOW_RELOCATE),$(call dontrelocate,opt,$(PROTOTYPE))) $(WORKDIR)/%.prototype-$(GARCH): | $(WORKDIR)/%.prototype $(_DBG)cat $(WORKDIR)/$*.prototype $(_PROTOTYPE_FILTER_$*) >$@ @@ -451,7 +456,8 @@ echo "VENDOR=$(call pkgvar,SPKG_VENDOR,$*)"; \ echo "EMAIL=$(call pkgvar,SPKG_EMAIL,$*)"; \ echo "PSTAMP=$(LOGNAME)@$(shell hostname)-$(shell date '+%Y%m%d%H%M%S')"; \ - echo "CLASSES=$(call pkgvar,SPKG_CLASSES,$*)"; \ + $(if $(ALLOW_RELOCATE),echo "CLASSES=$(call pkgvar,SPKG_CLASSES,$*) norelocate"; \ + ,echo "CLASSES=$(call pkgvar,SPKG_CLASSES,$*)";) \ echo "HOTLINE=http://www.opencsw.org/bugtrack/"; \ echo "OPENCSW_REPOSITORY=$(call _URL)@$(call _REVISION)"; \ echo "OPENCSW_MODE64=$(call mode64,$*)"; \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Tue Jun 9 21:57:50 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Tue, 09 Jun 2009 19:57:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[5215] csw/mgar/pkg/vsftpd/trunk Message-ID: Revision: 5215 http://gar.svn.sourceforge.net/gar/?rev=5215&view=rev Author: chninkel Date: 2009-06-09 19:57:49 +0000 (Tue, 09 Jun 2009) Log Message: ----------- vsftpd: updated to 2.1.1 Modified Paths: -------------- csw/mgar/pkg/vsftpd/trunk/Makefile csw/mgar/pkg/vsftpd/trunk/checksums csw/mgar/pkg/vsftpd/trunk/files/CSWvsftpd.prototype csw/mgar/pkg/vsftpd/trunk/files/changelog.CSW csw/mgar/pkg/vsftpd/trunk/files/cswvsftpd.xml Modified: csw/mgar/pkg/vsftpd/trunk/Makefile =================================================================== --- csw/mgar/pkg/vsftpd/trunk/Makefile 2009-06-09 18:44:02 UTC (rev 5214) +++ csw/mgar/pkg/vsftpd/trunk/Makefile 2009-06-09 19:57:49 UTC (rev 5215) @@ -13,7 +13,7 @@ ###### Package information ####### GARNAME = vsftpd -GARVERSION = 2.1.0 +GARVERSION = 2.1.1 CATEGORIES = server DESCRIPTION = A very secure and fast FTP server. @@ -35,7 +35,7 @@ # adding configuration handling classes # (init/smf classes are dynamically added in checkinstall) -SPKG_CLASSES = none cswpreserveconf cswusergroup +SPKG_CLASSES = none cswpreserveconf cswusergroup cswinitsmf ###### Upstream and opencsw files information ####### @@ -47,7 +47,7 @@ DISTFILES += CSWvsftpd.prototype CSWvsftpd.preinstall DISTFILES += changelog.CSW README.CSW DISTFILES += vsftpd.conf vsftpd.userlist -DISTFILES += cswvsftpd cswvsftpd.xml svc-cswvsftpd +DISTFILES += cswvsftpd DISTFILES += cswusergroup # build options are set by modifying @@ -82,12 +82,6 @@ DOCFILES += EXAMPLE/INTERNET_SITE_NOINETD/README EXAMPLE/INTERNET_SITE_NOINETD/vsftpd.conf -# little hack to be able to still use old smf support with gar v2 -# until openssh is migrated to cswclassutils init system -DISTFILES += vsftpd_dyngspec.fakespec -_CATEGORY_GSPEC_INCLUDE = ../../$(DOWNLOADDIR)/vsftpd_dyngspec.fakespec - - ##### Build and installation information ##### GARCOMPILER = SUN @@ -120,8 +114,11 @@ ginstall -d $(DESTDIR)$(docdir)/vsftpd ) -post-merge: merge-doc-files merge-config-files +post-merge: merge-doc-files merge-config-files merge-init-file +merge-init-file: + ginstall -D "$(WORKDIR_FIRSTMOD)/cswvsftpd" "$(PKGROOT)/etc/init.d/cswvsftpd" + merge-config-files: ginstall -D "$(WORKDIR_FIRSTMOD)/vsftpd.conf" "$(PKGROOT)$(sysconfdir)/vsftpd/vsftpd.conf.CSW" ginstall -D "$(WORKDIR_FIRSTMOD)/vsftpd.userlist" "$(PKGROOT)$(sysconfdir)/vsftpd/vsftpd.userlist.CSW" Modified: csw/mgar/pkg/vsftpd/trunk/checksums =================================================================== --- csw/mgar/pkg/vsftpd/trunk/checksums 2009-06-09 18:44:02 UTC (rev 5214) +++ csw/mgar/pkg/vsftpd/trunk/checksums 2009-06-09 19:57:49 UTC (rev 5215) @@ -1,17 +1,14 @@ a2f5b70fe49839b0463c9d90af0f11dd download/CSWvsftpd.preinstall -accf66084b40cc8ea89037f1cc351833 download/CSWvsftpd.prototype +2cc88ffd0b8be226f3977b9105701159 download/CSWvsftpd.prototype eeaf77528b2da0c7730323838f30b7ef download/README.CSW 281c51282cabd9475cceef363bbc699b download/build_options.patch -68178673c7d33baead2d7b97e878ed79 download/changelog.CSW +dfb43f73fcf859af22510af9600a954e download/changelog.CSW 54c1c39c6bfa8747a4457f135fd5bca1 download/csw_build_system.patch a9e994d2b57999b76a0e03503745c01a download/csw_paths.patch 98e1d831801985daf5ce2ed01fbc0efd download/cswusergroup 8a11892757760e07534a4a455f051e84 download/cswvsftpd -5d093652c802b21dd00a52b2d012d977 download/cswvsftpd.xml 73e59f9ada47d3d20199f7c97849fb13 download/destdir.patch a9a65f55cbfd01f9d72d1de25e67148d download/set_priv_sep_user.patch -32905b27a67ac3d4c93a52e10a3a80fd download/svc-cswvsftpd -7890b54e7ffa6106ffbdfda53f47fa41 download/vsftpd-2.1.0.tar.gz +b1fab0e6212738f9f3572e067c419778 download/vsftpd-2.1.1.tar.gz f6ce22a6959b93e500a4ae800295c2ee download/vsftpd.conf 60c736802e2ce00c531953b01e4a26f6 download/vsftpd.userlist -372d9e524d45e1b62578ef3361c8524c download/vsftpd_dyngspec.fakespec Modified: csw/mgar/pkg/vsftpd/trunk/files/CSWvsftpd.prototype =================================================================== --- csw/mgar/pkg/vsftpd/trunk/files/CSWvsftpd.prototype 2009-06-09 18:44:02 UTC (rev 5214) +++ csw/mgar/pkg/vsftpd/trunk/files/CSWvsftpd.prototype 2009-06-09 19:57:49 UTC (rev 5215) @@ -1,3 +1,5 @@ +d none /opt/csw/etc/pkg/CSWvsftpd 0755 root bin +f cswinitsmf /etc/init.d/cswvsftpd 0755 root bin d none /opt/csw/etc/vsftpd 0755 root bin f none /opt/csw/etc/vsftpd/vsftpd.conf.CSW 0644 root bin f cswpreserveconf /opt/csw/etc/vsftpd/vsftpd.userlist.CSW 0644 root bin Modified: csw/mgar/pkg/vsftpd/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/vsftpd/trunk/files/changelog.CSW 2009-06-09 18:44:02 UTC (rev 5214) +++ csw/mgar/pkg/vsftpd/trunk/files/changelog.CSW 2009-06-09 19:57:49 UTC (rev 5215) @@ -1,3 +1,9 @@ +vsftpd (2.1.1,REV=2009.05.28) unstable + + * New upstream version. + + -- Yann Rouillard Thu, 28 May 2009 23:57:00 +0200 + vsftpd (2.1.0,REV=2009.03.21) unstable * New upstream version. Modified: csw/mgar/pkg/vsftpd/trunk/files/cswvsftpd.xml =================================================================== --- csw/mgar/pkg/vsftpd/trunk/files/cswvsftpd.xml 2009-06-09 18:44:02 UTC (rev 5214) +++ csw/mgar/pkg/vsftpd/trunk/files/cswvsftpd.xml 2009-06-09 19:57:49 UTC (rev 5215) @@ -52,23 +52,17 @@ - -