projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f1b6a3
)
setup: leave the "file:" off the front of your URLs and setuptools (v0.6c7) will...
author
Zooko O'Whielacronx
<zooko@zooko.com>
Thu, 20 Sep 2007 22:29:12 +0000
(15:29 -0700)
committer
Zooko O'Whielacronx
<zooko@zooko.com>
Thu, 20 Sep 2007 22:29:12 +0000
(15:29 -0700)
calcdeps.py
patch
|
blob
|
history
diff --git
a/calcdeps.py
b/calcdeps.py
index fb0a0e69c614562c30ca9e12619f35c9565965c4..e2090bb6a5fdd6ee3f9d49dd905574d3675d6849 100644
(file)
--- a/
calcdeps.py
+++ b/
calcdeps.py
@@
-8,7
+8,7
@@
import os.path, sys
# "file:misc/dependencies/zfec-1.0.2.tar.gz",
# The file: URL can start with either 'misc' or './misc' to get a relative path.
-dependency_tarballs=[
"file:" +
os.path.join("misc", "dependencies", fn)
+dependency_tarballs=[ os.path.join("misc", "dependencies", fn)
for fn in os.listdir(os.path.join("misc", "dependencies"))
if fn.endswith(".tar.gz") or fn.endswith(".zip") ]