avinashjoshi / walkaround

Automatically exported from code.google.com/p/walkaround
Apache License 2.0
0 stars 1 forks source link

get-third-party-deps can't find a file #117

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I have a working version of Walkaround running, but I wanted to see how the 
newest version works. So I made an alternate directory separate from my current 
working Walkaround directory. 

What steps will reproduce the problem?
--------------------------------------
1. Create an empty directory, run:
      git clone https://code.google.com/p/walkaround/
      cd walkaround
      ./get-third-party-deps
2. In an otherwise working Walkaround directory, run:
      git pull
      ./runant war
   (get compile error from ./runant war)
      rm -rf third_party third_party_src
      ./get-third-party-deps

What is the expected output?  What do you see instead?
------------------------------------------------------
I expected to see it downloading the third party deps for several minutes, 
instead it fails on one of the zip files:

fetching http://gxp.googlecode.com/files/gxp-0.2.4-beta.jar
2012-10-03 08:47:51 URL:http://gxp.googlecode.com/files/gxp-0.2.4-beta.jar 
[2694082/2694082] -> "gxp-0.2.4-beta.jar" [1]
b80c7c780973ffd5eac63de301eb6a05035aeb46  gxp-0.2.4-beta.jar
gxp-0.2.4-beta.jar: OK
fetching http://www.apache.org/dist/commons/cli/binaries/commons-cli-1.2-bin.zip
2012-10-03 08:47:53 
URL:http://www.apache.org/dist/commons/cli/binaries/commons-cli-1.2-bin.zip 
[508526/508526] -> "commons-cli-1.2-bin.zip" [1]
c10b9d17317815e44367c477ccecb075  commons-cli-1.2-bin.zip
commons-cli-1.2-bin.zip: OK
fetching 
http://mirrors.axint.net/apache//commons/codec/binaries/commons-codec-1.5-bin.zi
p
http://mirrors.axint.net/apache//commons/codec/binaries/commons-codec-1.5-bin.zi
p:
2012-10-03 08:47:53 ERROR 404: Not Found.

Other notes:
------------
I have been trying this for several days, suspecting maybe the third party site 
might have been having issues, but it has not worked yet. I have also tried 
directly copying my working Walkaround directory, and updating it. When I get 
to the

./runant war

step, it gives me a compile error. So, in accordance with the instructions, I 
try:

rm -rf third_party third_party_src
./get-third-party-deps

and the same thing happens as above. I am sorry if this is a know issue, I 
couldn't find this specifically in the issues list. The similar entries I saw 
seemed to be past this step.

Original issue reported on code.google.com by AdemiusD...@gmail.com on 3 Oct 2012 at 12:55

GoogleCodeExporter commented 9 years ago
just replace line 60 with the new url 

------------------------------
[[ -f $out/commons-codec/commons-codec-1.5.jar ]] || (
  dir commons-codec
  get http://archive.apache.org/dist/commons/codec/binaries/ commons-codec-1.5-bin.zip md5 376bd4a1cb78f41bf1eb1c544af6f1c0
  unzip -o -q commons-codec-1.5-bin.zip
  mkdir -p $out/commons-codec
  cp commons-codec-1.5/{commons-codec-1.5.jar,LICENSE.txt,NOTICE.txt} $out/commons-codec
)

-------------------

this solved it for me but now getting into build errors :-)

Original comment by dnoe...@gmail.com on 7 Jan 2013 at 9:59