<p>Em 28/07/2011 15:57, <<a href="mailto:bonivart@users.sourceforge.net">bonivart@users.sourceforge.net</a>> escreveu:<br>
><br>
> Revision: 15228<br>
>          <a href="http://gar.svn.sourceforge.net/gar/?rev=15228&view=rev">http://gar.svn.sourceforge.net/gar/?rev=15228&view=rev</a><br>
> Author:   bonivart<br>
> Date:     2011-07-28 14:57:03 +0000 (Thu, 28 Jul 2011)<br>
><br>
> Log Message:<br>
> -----------<br>
> pdsh: initial commit<br>
><br>
> Added Paths:<br>
> -----------<br>
>    csw/mgar/pkg/pdsh/<br>
>    csw/mgar/pkg/pdsh/Makefile<br>
>    csw/mgar/pkg/pdsh/branches/<br>
>    csw/mgar/pkg/pdsh/tags/<br>
>    csw/mgar/pkg/pdsh/trunk/<br>
>    csw/mgar/pkg/pdsh/trunk/Makefile<br>
>    csw/mgar/pkg/pdsh/trunk/checksums<br>
>    csw/mgar/pkg/pdsh/trunk/files/<br>
>    csw/mgar/pkg/pdsh/trunk/files/0001-use-bash-for-tests.patch<br>
><br>
> Added: csw/mgar/pkg/pdsh/Makefile<br>
> ===================================================================<br>
> --- csw/mgar/pkg/pdsh/Makefile                          (rev 0)<br>
> +++ csw/mgar/pkg/pdsh/Makefile  2011-07-28 14:57:03 UTC (rev 15228)<br>
> @@ -0,0 +1,2 @@<br>
> +%:<br>
> +       $(MAKE) -C trunk $*<br>
><br>
><br>
> Property changes on: csw/mgar/pkg/pdsh/trunk<br>
> ___________________________________________________________________<br>
> Added: svn:ignore<br>
>   + cookies<br>
> download<br>
> work<br>
><br>
><br>
> Added: svn:externals<br>
>   + gar <a href="https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2">https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2</a><br>
><br>
><br>
> Added: csw/mgar/pkg/pdsh/trunk/Makefile<br>
> ===================================================================<br>
> --- csw/mgar/pkg/pdsh/trunk/Makefile                            (rev 0)<br>
> +++ csw/mgar/pkg/pdsh/trunk/Makefile    2011-07-28 14:57:03 UTC (rev 15228)<br>
> @@ -0,0 +1,27 @@<br>
> +# $Id$<br>
> +# TODO (release-critical prefixed with !, non release-critical with *)<br>
> +#<br>
> +NAME = pdsh<br>
> +VERSION = 2.26<br>
> +GARTYPE = v2<br>
> +CATEGORIES = utils<br>
> +<br>
> +DESCRIPTION = Parallel Distributed Shell<br>
> +define BLURB<br>
> +  Parallel Distributed Shell<br>
> +endef<br>
> +<br>
> +MASTER_SITES = $(GOOGLE_MIRROR)<br>
> +DISTFILES  = $(DISTNAME).tar.bz2<br>
> +PATCHFILES += 0001-use-bash-for-tests.patch<br>
> +<br>
> +# A few tests fail (4 out of 100+)<br>
> +SKIPTEST = 1<br>
> +<br>
> +# Alternatives?<br>
> +CHECKPKG_OVERRIDES_CSWpdsh += file-collision|/opt/csw/bin/dshbak|CSWclusterit|CSWpdsh</p>
<p>I would suggest not putting overrides into builds like this. If it is a problem, it should be reported. For example, you know that it's an issue, but another person might check out the sources, build them and think that the override means a false positive, while it's a true positive.</p>

<p>> +CONFIGURE_ARGS = $(DIRPATHS)<br>
> +<br>
> +include gar/<a href="http://category.mk">category.mk</a><br>
> +<br>
><br>
><br>
> Property changes on: csw/mgar/pkg/pdsh/trunk/Makefile<br>
> ___________________________________________________________________<br>
> Added: svn:keywords<br>
>   + Id<br>
><br>
> Added: csw/mgar/pkg/pdsh/trunk/checksums<br>
> ===================================================================<br>
> --- csw/mgar/pkg/pdsh/trunk/checksums                           (rev 0)<br>
> +++ csw/mgar/pkg/pdsh/trunk/checksums   2011-07-28 14:57:03 UTC (rev 15228)<br>
> @@ -0,0 +1 @@<br>
> +7c7860a8d5133eaf4561dae99d922261  pdsh-2.26.tar.bz2<br>
><br>
> Added: csw/mgar/pkg/pdsh/trunk/files/0001-use-bash-for-tests.patch<br>
> ===================================================================<br>
> --- csw/mgar/pkg/pdsh/trunk/files/0001-use-bash-for-tests.patch                         (rev 0)<br>
> +++ csw/mgar/pkg/pdsh/trunk/files/0001-use-bash-for-tests.patch 2011-07-28 14:57:03 UTC (rev 15228)<br>
> @@ -0,0 +1,27 @@<br>
> +From 0d6eca6feaade2c8c3d02b1b67585e1f1569bb22 Mon Sep 17 00:00:00 2001<br>
> +From: Peter Bonivart <<a href="mailto:bonivart@opencsw.org">bonivart@opencsw.org</a>><br>
> +Date: Thu, 28 Jul 2011 16:22:43 +0200<br>
> +Subject: [PATCH] use-bash-for-tests<br>
> +<br>
> +---<br>
> + tests/runtests.sh |    2 +-<br>
> + 1 files changed, 1 insertions(+), 1 deletions(-)<br>
> +<br>
> +diff --git a/tests/runtests.sh b/tests/runtests.sh<br>
> +index d7b1b95..f78d672 100755<br>
> +--- a/tests/runtests.sh<br>
> ++++ b/tests/runtests.sh<br>
> +@@ -1,7 +1,8 @@<br>
> +-#!/bin/sh<br>
> ++#!/opt/csw/bin/bash<br>
> + rm -rf test-results trash-directory*<br>
> +<br>
> ++PATH=/opt/csw/gnu:$PATH<br>
> +-SHELL_PATH="/bin/sh"<br>
> ++SHELL_PATH="/opt/csw/bin/bash"<br>
> +<br>
> + uname_s=$(uname -s)<br>
> + case "${uname_s}" in<br>
> +--<br>
> +1.7.6<br>
> +<br>
><br>
><br>
> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.<br>
> _______________________________________________<br>
> devel mailing list<br>
> <a href="mailto:devel@lists.opencsw.org">devel@lists.opencsw.org</a><br>
> <a href="https://lists.opencsw.org/mailman/listinfo/devel">https://lists.opencsw.org/mailman/listinfo/devel</a><br>
</p>