You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cocoon.apache.org by Stefan Bodewig <bo...@apache.org> on 2003/09/29 10:16:09 UTC

[PATCH][GUMP] adjust qdox version

The qdox project descriptor points to a jar that no longer exists.

Several parts of Avalon fail to build because of the wrong file name
and as a side effect, Cocoon doesn't get built by Gump as its prereqs
coming from Avalon are missing.

The appended patch fixes the file name, but I'm not sure whether there
are more out-of-date file names.

Cheers

        Stefan

--- /home/bodewig/gump/cache/http___cvs.apache.org_viewcvs__checkout__cocoon-2.1_gump.xml.xml	Sun Sep 28 22:15:22 2003
+++ gump.xml	Mon Sep 29 10:11:28 2003
@@ -1156,7 +1156,7 @@
       definitions from java source files.
     </description>
     <home nested="src/blocks/qdox/lib"/>
-    <jar name="qdox-1.1.jar"/>
+    <jar name="qdox-1.2.jar"/>
   </project>
 
   <project name="joost">


Re: [PATCH][GUMP] adjust qdox version

Posted by Stephen McConnell <mc...@apache.org>.

Stefan Bodewig wrote:

>The qdox project descriptor points to a jar that no longer exists.
>
>Several parts of Avalon fail to build because of the wrong file name
>and as a side effect, Cocoon doesn't get built by Gump as its prereqs
>coming from Avalon are missing.
>

Can you be a bit more specific. 

According to the gump report that I'm looking at, the bulk of Cocoon 
build failures are linked to a failed build from jaxen which in turn is 
linked to a fail of dom4j.

Stephen.

>
>The appended patch fixes the file name, but I'm not sure whether there
>are more out-of-date file names.
>
>Cheers
>
>        Stefan
>
>--- /home/bodewig/gump/cache/http___cvs.apache.org_viewcvs__checkout__cocoon-2.1_gump.xml.xml	Sun Sep 28 22:15:22 2003
>+++ gump.xml	Mon Sep 29 10:11:28 2003
>@@ -1156,7 +1156,7 @@
>       definitions from java source files.
>     </description>
>     <home nested="src/blocks/qdox/lib"/>
>-    <jar name="qdox-1.1.jar"/>
>+    <jar name="qdox-1.2.jar"/>
>   </project>
> 
>   <project name="joost">
>
>
>  
>

-- 

Stephen J. McConnell
mailto:mcconnell@apache.org




Re: [PATCH][GUMP] adjust qdox version

Posted by Nicola Ken Barozzi <ni...@apache.org>.
Bertrand Delacretaz wrote:

> Le Lundi, 29 sep 2003, à 10:16 Europe/Zurich, Stefan Bodewig a écrit :
> 
>> ..The appended patch fixes the file name, but I'm not sure whether there
>> are more out-of-date file names...
> 
> There were several more, should be fixed now.
> 
> I don't know how to ascertain this precisely though, just created a 
> checking script from gump.xml (below FYI).

NOTE: with the automatic jar download this problem should disappear, as
Ruper fetches the jars as stated in the descriptor.

-- 
Nicola Ken Barozzi                   nicolaken@apache.org
             - verba volant, scripta manent -
    (discussions get forgotten, just code remains)
---------------------------------------------------------------------



Re: [PATCH][GUMP] adjust qdox version

Posted by Bertrand Delacretaz <bd...@codeconsult.ch>.
Le Lundi, 29 sep 2003, à 10:16 Europe/Zurich, Stefan Bodewig a écrit :

> ..The appended patch fixes the file name, but I'm not sure whether 
> there
> are more out-of-date file names...

There were several more, should be fixed now.

I don't know how to ascertain this precisely though, just created a 
checking script from gump.xml (below FYI).

-Bertrand



<?xml version="1.0" encoding="iso-8859-1"?>

<!-- extract jar names used by blocks from gump.xml to test the 
filenames -->

<xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     >

     <xsl:output method="text" encoding="UTF-8"/>

     <xsl:template match="/">
         # Execute this script to check that all blocks jars defined in 
gump.xml exist
         <xsl:apply-templates 
select="//project[starts-with(home/@nested,'src/blocks')]"/>
     </xsl:template>

     <xsl:template match="project">
         <xsl:apply-templates select="jar"/>
     </xsl:template>

     <xsl:template match="jar">
         <xsl:variable name="jarFile" 
select="concat(../home/@nested,'/',@name)"/>
         file <xsl:value-of select="$jarFile"/>
     </xsl:template>

</xsl:stylesheet>


Re: [PATCH][GUMP] adjust qdox version

Posted by Stefan Bodewig <bo...@apache.org>.
On Mon, 29 Sep 2003, Bertrand Delacretaz <bd...@codeconsult.ch>
wrote:

> I have applied the patch,

Thanks

        Stefan

Re: [PATCH][GUMP] adjust qdox version

Posted by Stefan Bodewig <bo...@apache.org>.
On Mon, 29 Sep 2003, Bertrand Delacretaz <bd...@codeconsult.ch>
wrote:

> I have applied the patch,

Thanks

        Stefan

Re: [PATCH][GUMP] adjust qdox version

Posted by Bertrand Delacretaz <bd...@codeconsult.ch>.
I have applied the patch, thanks, will check for other similar problems.

-Bertrand



Le Lundi, 29 sep 2003, à 10:16 Europe/Zurich, Stefan Bodewig a écrit :

> The qdox project descriptor points to a jar that no longer exists.
>
> Several parts of Avalon fail to build because of the wrong file name
> and as a side effect, Cocoon doesn't get built by Gump as its prereqs
> coming from Avalon are missing.
>
> The appended patch fixes the file name, but I'm not sure whether there
> are more out-of-date file names....


Re: [PATCH][GUMP] adjust qdox version

Posted by Bertrand Delacretaz <bd...@codeconsult.ch>.
Le Lundi, 29 sep 2003, à 10:16 Europe/Zurich, Stefan Bodewig a écrit :

> ..The appended patch fixes the file name, but I'm not sure whether 
> there
> are more out-of-date file names...

There were several more, should be fixed now.

I don't know how to ascertain this precisely though, just created a 
checking script from gump.xml (below FYI).

-Bertrand



<?xml version="1.0" encoding="iso-8859-1"?>

<!-- extract jar names used by blocks from gump.xml to test the 
filenames -->

<xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     >

     <xsl:output method="text" encoding="UTF-8"/>

     <xsl:template match="/">
         # Execute this script to check that all blocks jars defined in 
gump.xml exist
         <xsl:apply-templates 
select="//project[starts-with(home/@nested,'src/blocks')]"/>
     </xsl:template>

     <xsl:template match="project">
         <xsl:apply-templates select="jar"/>
     </xsl:template>

     <xsl:template match="jar">
         <xsl:variable name="jarFile" 
select="concat(../home/@nested,'/',@name)"/>
         file <xsl:value-of select="$jarFile"/>
     </xsl:template>

</xsl:stylesheet>


Re: [PATCH][GUMP] adjust qdox version

Posted by Bertrand Delacretaz <bd...@codeconsult.ch>.
I have applied the patch, thanks, will check for other similar problems.

-Bertrand



Le Lundi, 29 sep 2003, à 10:16 Europe/Zurich, Stefan Bodewig a écrit :

> The qdox project descriptor points to a jar that no longer exists.
>
> Several parts of Avalon fail to build because of the wrong file name
> and as a side effect, Cocoon doesn't get built by Gump as its prereqs
> coming from Avalon are missing.
>
> The appended patch fixes the file name, but I'm not sure whether there
> are more out-of-date file names....