Re: easy_install --upgrade hangs

2009-04-15 Thread Anverc

So I attempted to upgrade by downloading the eggs and doing an upgrade
on them, but now I have two copies of ReviewBoard and Djiblits egg
files...

I assume this is a bad thing? see log below:

[r...@home src]# wget 
http://downloads.review-board.org/releases/ReviewBoard-1.0beta2-py2.4.egg
--12:09:55--  
http://downloads.review-board.org/releases/ReviewBoard-1.0beta2-py2.4.egg
Resolving downloads.review-board.org... 208.78.244.88
Connecting to downloads.review-board.org|208.78.244.88|:80...
connected.
HTTP request sent, awaiting response... 200 OK
Length: 1091447 (1.0M) [text/plain]
Saving to: `ReviewBoard-1.0beta2-py2.4.egg'

100%[===] 1,091,447220K/s
in 5.6s

12:10:02 (191 KB/s) - `ReviewBoard-1.0beta2-py2.4.egg' saved
[1091447/1091447]

[r...@home src]# wget 
http://downloads.review-board.org/releases/Djblets-0.5beta1-py2.4.egg
--12:15:29--  
http://downloads.review-board.org/releases/Djblets-0.5beta1-py2.4.egg
Resolving downloads.review-board.org... 208.78.244.88
Connecting to downloads.review-board.org|208.78.244.88|:80...
connected.
HTTP request sent, awaiting response... 200 OK
Length: 451839 (441K) [text/plain]
Saving to: `Djblets-0.5beta1-py2.4.egg'

100%[===] 451,839  150K/s
in 2.9s

12:15:33 (150 KB/s) - `Djblets-0.5beta1-py2.4.egg' saved
[451839/451839]

[r...@home src]# easy_install --upgrade /usr/local/src/
Djblets-0.5beta1-py2.4.egg
Processing Djblets-0.5beta1-py2.4.egg
creating /usr/lib/python2.4/site-packages/Djblets-0.5beta1-py2.4.egg
Extracting Djblets-0.5beta1-py2.4.egg to /usr/lib/python2.4/site-
packages
Removing Djblets 0.5alpha3 from easy-install.pth file
Adding Djblets 0.5beta1 to easy-install.pth file

Installed /usr/lib/python2.4/site-packages/Djblets-0.5beta1-py2.4.egg
Processing dependencies for Djblets==0.5beta1
Finished processing dependencies for Djblets==0.5beta1

[r...@home src]# easy_install --upgrade /usr/local/src/
ReviewBoard-1.0beta2-py2.4.egg
Processing ReviewBoard-1.0beta2-py2.4.egg
removing '/usr/lib/python2.4/site-packages/ReviewBoard-1.0beta2-
py2.4.egg' (and everything under it)
creating /usr/lib/python2.4/site-packages/ReviewBoard-1.0beta2-
py2.4.egg
Extracting ReviewBoard-1.0beta2-py2.4.egg to /usr/lib/python2.4/site-
packages
ReviewBoard 1.0beta2 is already the active version in easy-
install.pth
Installing rb-site script to /usr/bin

Installed /usr/lib/python2.4/site-packages/ReviewBoard-1.0beta2-
py2.4.egg
Processing dependencies for ReviewBoard==1.0beta2
Finished processing dependencies for ReviewBoard==1.0beta2

[r...@home src]# find / -iname ReviewBoard
/var/lib/mysql/reviewboard
/usr/lib/python2.4/site-packages/ReviewBoard-1.0alpha4-py2.4.egg/
reviewboard
/usr/lib/python2.4/site-packages/ReviewBoard-1.0beta2-py2.4.egg/
reviewboard

[r...@home src]# find / -iname Djblets
/var/www/rb/htdocs/media/djblets
/usr/lib/python2.4/site-packages/Djblets-0.5beta1-py2.4.egg/djblets
/usr/lib/python2.4/site-packages/Djblets-0.5alpha3-py2.4.egg/djblets


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: easy_install --upgrade hangs

2009-04-15 Thread Anverc

one more thing... if I go into the admin area of reviewboard, i see
this:
Review Board version1.0beta2

but I haven't run the rb-site upgrade command yet (by the way, the
reviewboard website is all 500 errors)


so, after running rb-site upgrade, it appears like things are ok...
except that the old .egg files are still in my python directories - is
it safe to delete them or what should I be doing?

[r...@home src]# rb-site upgrade /var/www/rb/
Rebuilding directory structure
Updating database
Upgrading Review Board from 1.0alpha4 to 1.0beta2
Installing json fixture 'initial_data' from '/usr/lib/python2.4/site-
packages/ReviewBoard-1.0beta2-py2.4.egg/reviewboard/scmtools/
fixtures'.
Installed 6 object(s) from 1 fixture(s)
No evolution required
.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: easy_install --upgrade hangs

2009-04-15 Thread Anverc

here I am answering my own questions, perhaps someone else will have
the same problem as me...

when you're done upgrading, you can safely delete the old .egg files

the easy_install system keeps these old egg files around, you can read
all about it here:
http://peak.telecommunity.com/DevCenter/EasyInstall

most notably this part:
Uninstalling Packages
If you have replaced a package with another version, then you can just
delete the package(s) you don't need by deleting the PackageName-
versioninfo.egg file or directory (found in the installation
directory)

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: easy_install --upgrade hangs

2009-04-15 Thread Christian Hammond
Yeah, it's sort of confusing. I'd like down the road to have something a bit
more custom for keeping servers installed and auto-upgrading sites, which
could delete the old eggs. Still, I suppose there's reasons you may want old
eggs around, but as you noticed, the newest version will be used by default
even if your site is not upgraded.

I should at least update the docs to let users know they can remove the old
eggs.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.review-board.org
VMware, Inc. - http://www.vmware.com


On Wed, Apr 15, 2009 at 9:30 AM, Anverc anv...@gmail.com wrote:


 here I am answering my own questions, perhaps someone else will have
 the same problem as me...

 when you're done upgrading, you can safely delete the old .egg files

 the easy_install system keeps these old egg files around, you can read
 all about it here:
 http://peak.telecommunity.com/DevCenter/EasyInstall

 most notably this part:
 Uninstalling Packages
 If you have replaced a package with another version, then you can just
 delete the package(s) you don't need by deleting the PackageName-
 versioninfo.egg file or directory (found in the installation
 directory)

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: easy_install --upgrade hangs

2009-04-14 Thread Anverc

Looks like if I leave it along for several minutes, it eventually
times out and I get the following information:

Traceback (most recent call last):
  File /usr/bin/easy_install, line 7, in ?
sys.exit(
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 1671, in main
with_ei_usage(lambda:
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 1659, in with_ei_usage
return f()
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 1675, in lambda
distclass=DistributionWithoutHelpCommands, **kw
  File /usr/lib64/python2.4/distutils/core.py, line 149, in setup
dist.run_commands()
  File /usr/lib64/python2.4/distutils/dist.py, line 946, in
run_commands
self.run_command(cmd)
  File /usr/lib64/python2.4/distutils/dist.py, line 966, in
run_command
cmd_obj.run()
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 211, in run
self.easy_install(spec, not self.no_deps)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 432, in easy_install
dist = self.package_index.fetch_distribution(
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 454, in fetch_distribution
self.find_packages(requirement)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 303, in find_packages
self.scan_url(self.index_url + requirement.unsafe_name+'/')
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 617, in scan_url
self.process_url(url, True)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 189, in process_url
f = self.open_url(url, Download error: %s -- Some packages may
not be found!)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 579, in open_url
return open_with_auth(url)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 717, in open_with_auth
fp = urllib2.urlopen(request)
  File /usr/lib64/python2.4/urllib2.py, line 130, in urlopen
return _opener.open(url, data)
  File /usr/lib64/python2.4/urllib2.py, line 358, in open
response = self._open(req, data)
  File /usr/lib64/python2.4/urllib2.py, line 376, in _open
'_open', req)
  File /usr/lib64/python2.4/urllib2.py, line 337, in _call_chain
result = func(*args)
  File /usr/lib64/python2.4/urllib2.py, line 1032, in http_open
return self.do_open(httplib.HTTPConnection, req)
  File /usr/lib64/python2.4/urllib2.py, line 1004, in do_open
r = h.getresponse()
  File /usr/lib64/python2.4/httplib.py, line 872, in getresponse
response.begin()
  File /usr/lib64/python2.4/httplib.py, line 336, in begin
version, status, reason = self._read_status()
  File /usr/lib64/python2.4/httplib.py, line 300, in _read_status
raise BadStatusLine(line)
httplib.BadStatusLine


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: easy_install --upgrade hangs

2009-04-14 Thread Christian Hammond
This appears to be your proxy. Try unsetting your HTTP_PROXY variable.

Running without -U will only install if it isn't already installed. It won't
check for upgrades. That's why it settled on alpha4.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.review-board.org
VMware, Inc. - http://www.vmware.com


On Tue, Apr 14, 2009 at 7:59 AM, Anverc anv...@gmail.com wrote:


 Looks like if I leave it along for several minutes, it eventually
 times out and I get the following information:

 Traceback (most recent call last):
  File /usr/bin/easy_install, line 7, in ?
sys.exit(
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/command/easy_install.py, line 1671, in main
with_ei_usage(lambda:
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/command/easy_install.py, line 1659, in with_ei_usage
return f()
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/command/easy_install.py, line 1675, in lambda
distclass=DistributionWithoutHelpCommands, **kw
  File /usr/lib64/python2.4/distutils/core.py, line 149, in setup
dist.run_commands()
  File /usr/lib64/python2.4/distutils/dist.py, line 946, in
 run_commands
self.run_command(cmd)
  File /usr/lib64/python2.4/distutils/dist.py, line 966, in
 run_command
cmd_obj.run()
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/command/easy_install.py, line 211, in run
self.easy_install(spec, not self.no_deps)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/command/easy_install.py, line 432, in easy_install
dist = self.package_index.fetch_distribution(
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/package_index.py, line 454, in fetch_distribution
self.find_packages(requirement)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/package_index.py, line 303, in find_packages
self.scan_url(self.index_url + requirement.unsafe_name+'/')
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/package_index.py, line 617, in scan_url
self.process_url(url, True)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/package_index.py, line 189, in process_url
f = self.open_url(url, Download error: %s -- Some packages may
 not be found!)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/package_index.py, line 579, in open_url
return open_with_auth(url)
  File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
 setuptools/package_index.py, line 717, in open_with_auth
fp = urllib2.urlopen(request)
  File /usr/lib64/python2.4/urllib2.py, line 130, in urlopen
return _opener.open(url, data)
  File /usr/lib64/python2.4/urllib2.py, line 358, in open
response = self._open(req, data)
  File /usr/lib64/python2.4/urllib2.py, line 376, in _open
'_open', req)
  File /usr/lib64/python2.4/urllib2.py, line 337, in _call_chain
result = func(*args)
  File /usr/lib64/python2.4/urllib2.py, line 1032, in http_open
return self.do_open(httplib.HTTPConnection, req)
  File /usr/lib64/python2.4/urllib2.py, line 1004, in do_open
r = h.getresponse()
  File /usr/lib64/python2.4/httplib.py, line 872, in getresponse
response.begin()
  File /usr/lib64/python2.4/httplib.py, line 336, in begin
version, status, reason = self._read_status()
  File /usr/lib64/python2.4/httplib.py, line 300, in _read_status
raise BadStatusLine(line)
 httplib.BadStatusLine


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: easy_install --upgrade hangs

2009-04-14 Thread Anverc

I get no response when I try to echo the HTTP_PROXY variable, so I
assume it isn't set:
[r...@home]# echo $HTTP_PROXY

[r...@home]# echo test
test
[r...@home]#




On Apr 14, 4:43 pm, Christian Hammond chip...@chipx86.com wrote:
 This appears to be your proxy. Try unsetting your HTTP_PROXY variable.

 Running without -U will only install if it isn't already installed. It won't
 check for upgrades. That's why it settled on alpha4.

 Christian

 --
 Christian Hammond - chip...@chipx86.com
 Review Board -http://www.review-board.org
 VMware, Inc. -http://www.vmware.com

 On Tue, Apr 14, 2009 at 7:59 AM, Anverc anv...@gmail.com wrote:

  Looks like if I leave it along for several minutes, it eventually
  times out and I get the following information:

  Traceback (most recent call last):
   File /usr/bin/easy_install, line 7, in ?
     sys.exit(
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/command/easy_install.py, line 1671, in main
     with_ei_usage(lambda:
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/command/easy_install.py, line 1659, in with_ei_usage
     return f()
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/command/easy_install.py, line 1675, in lambda
     distclass=DistributionWithoutHelpCommands, **kw
   File /usr/lib64/python2.4/distutils/core.py, line 149, in setup
     dist.run_commands()
   File /usr/lib64/python2.4/distutils/dist.py, line 946, in
  run_commands
     self.run_command(cmd)
   File /usr/lib64/python2.4/distutils/dist.py, line 966, in
  run_command
     cmd_obj.run()
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/command/easy_install.py, line 211, in run
     self.easy_install(spec, not self.no_deps)
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/command/easy_install.py, line 432, in easy_install
     dist = self.package_index.fetch_distribution(
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/package_index.py, line 454, in fetch_distribution
     self.find_packages(requirement)
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/package_index.py, line 303, in find_packages
     self.scan_url(self.index_url + requirement.unsafe_name+'/')
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/package_index.py, line 617, in scan_url
     self.process_url(url, True)
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/package_index.py, line 189, in process_url
     f = self.open_url(url, Download error: %s -- Some packages may
  not be found!)
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/package_index.py, line 579, in open_url
     return open_with_auth(url)
   File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
  setuptools/package_index.py, line 717, in open_with_auth
     fp = urllib2.urlopen(request)
   File /usr/lib64/python2.4/urllib2.py, line 130, in urlopen
     return _opener.open(url, data)
   File /usr/lib64/python2.4/urllib2.py, line 358, in open
     response = self._open(req, data)
   File /usr/lib64/python2.4/urllib2.py, line 376, in _open
     '_open', req)
   File /usr/lib64/python2.4/urllib2.py, line 337, in _call_chain
     result = func(*args)
   File /usr/lib64/python2.4/urllib2.py, line 1032, in http_open
     return self.do_open(httplib.HTTPConnection, req)
   File /usr/lib64/python2.4/urllib2.py, line 1004, in do_open
     r = h.getresponse()
   File /usr/lib64/python2.4/httplib.py, line 872, in getresponse
     response.begin()
   File /usr/lib64/python2.4/httplib.py, line 336, in begin
     version, status, reason = self._read_status()
   File /usr/lib64/python2.4/httplib.py, line 300, in _read_status
     raise BadStatusLine(line)
  httplib.BadStatusLine
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: easy_install --upgrade hangs

2009-04-14 Thread Christian Hammond
Maybe $http_proxy? (Not sure which Python uses. Some apps use one or the
other).

Other than that, not sure.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.review-board.org
VMware, Inc. - http://www.vmware.com


On Tue, Apr 14, 2009 at 5:03 PM, Anverc anv...@gmail.com wrote:


 I get no response when I try to echo the HTTP_PROXY variable, so I
 assume it isn't set:
 [r...@home]# echo $HTTP_PROXY

 [r...@home]# echo test
 test
 [r...@home]#




 On Apr 14, 4:43 pm, Christian Hammond chip...@chipx86.com wrote:
  This appears to be your proxy. Try unsetting your HTTP_PROXY variable.
 
  Running without -U will only install if it isn't already installed. It
 won't
  check for upgrades. That's why it settled on alpha4.
 
  Christian
 
  --
  Christian Hammond - chip...@chipx86.com
  Review Board -http://www.review-board.org
  VMware, Inc. -http://www.vmware.com
 
  On Tue, Apr 14, 2009 at 7:59 AM, Anverc anv...@gmail.com wrote:
 
   Looks like if I leave it along for several minutes, it eventually
   times out and I get the following information:
 
   Traceback (most recent call last):
File /usr/bin/easy_install, line 7, in ?
  sys.exit(
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/command/easy_install.py, line 1671, in main
  with_ei_usage(lambda:
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/command/easy_install.py, line 1659, in with_ei_usage
  return f()
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/command/easy_install.py, line 1675, in lambda
  distclass=DistributionWithoutHelpCommands, **kw
File /usr/lib64/python2.4/distutils/core.py, line 149, in setup
  dist.run_commands()
File /usr/lib64/python2.4/distutils/dist.py, line 946, in
   run_commands
  self.run_command(cmd)
File /usr/lib64/python2.4/distutils/dist.py, line 966, in
   run_command
  cmd_obj.run()
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/command/easy_install.py, line 211, in run
  self.easy_install(spec, not self.no_deps)
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/command/easy_install.py, line 432, in easy_install
  dist = self.package_index.fetch_distribution(
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/package_index.py, line 454, in fetch_distribution
  self.find_packages(requirement)
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/package_index.py, line 303, in find_packages
  self.scan_url(self.index_url + requirement.unsafe_name+'/')
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/package_index.py, line 617, in scan_url
  self.process_url(url, True)
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/package_index.py, line 189, in process_url
  f = self.open_url(url, Download error: %s -- Some packages may
   not be found!)
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/package_index.py, line 579, in open_url
  return open_with_auth(url)
File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
   setuptools/package_index.py, line 717, in open_with_auth
  fp = urllib2.urlopen(request)
File /usr/lib64/python2.4/urllib2.py, line 130, in urlopen
  return _opener.open(url, data)
File /usr/lib64/python2.4/urllib2.py, line 358, in open
  response = self._open(req, data)
File /usr/lib64/python2.4/urllib2.py, line 376, in _open
  '_open', req)
File /usr/lib64/python2.4/urllib2.py, line 337, in _call_chain
  result = func(*args)
File /usr/lib64/python2.4/urllib2.py, line 1032, in http_open
  return self.do_open(httplib.HTTPConnection, req)
File /usr/lib64/python2.4/urllib2.py, line 1004, in do_open
  r = h.getresponse()
File /usr/lib64/python2.4/httplib.py, line 872, in getresponse
  response.begin()
File /usr/lib64/python2.4/httplib.py, line 336, in begin
  version, status, reason = self._read_status()
File /usr/lib64/python2.4/httplib.py, line 300, in _read_status
  raise BadStatusLine(line)
   httplib.BadStatusLine
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
-~--~~~~--~~--~--~---



Re: easy_install --upgrade hangs

2009-04-14 Thread Anverc

:/ no luck

[r...@home]# echo $http_proxy

[r...@home]# echo $httpproxy

[r...@home]# echo $HTTP_PROXY

[r...@home]# echo $HTTPPROXY

[r...@home]#


I tried setting them to  anyway to see what would happen and got the
same hang followed by the same error dump.

On Apr 14, 8:07 pm, Christian Hammond chip...@chipx86.com wrote:
 Maybe $http_proxy? (Not sure which Python uses. Some apps use one or the
 other).

 Other than that, not sure.

 Christian

 --
 Christian Hammond - chip...@chipx86.com
 Review Board -http://www.review-board.org
 VMware, Inc. -http://www.vmware.com

 On Tue, Apr 14, 2009 at 5:03 PM, Anverc anv...@gmail.com wrote:

  I get no response when I try to echo the HTTP_PROXY variable, so I
  assume it isn't set:
  [r...@home]# echo $HTTP_PROXY

  [r...@home]# echo test
  test
  [r...@home]#

  On Apr 14, 4:43 pm, Christian Hammond chip...@chipx86.com wrote:
   This appears to be your proxy. Try unsetting your HTTP_PROXY variable.

   Running without -U will only install if it isn't already installed. It
  won't
   check for upgrades. That's why it settled on alpha4.

   Christian

   --
   Christian Hammond - chip...@chipx86.com
   Review Board -http://www.review-board.org
   VMware, Inc. -http://www.vmware.com

   On Tue, Apr 14, 2009 at 7:59 AM, Anverc anv...@gmail.com wrote:

Looks like if I leave it along for several minutes, it eventually
times out and I get the following information:

Traceback (most recent call last):
 File /usr/bin/easy_install, line 7, in ?
   sys.exit(
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 1671, in main
   with_ei_usage(lambda:
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 1659, in with_ei_usage
   return f()
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 1675, in lambda
   distclass=DistributionWithoutHelpCommands, **kw
 File /usr/lib64/python2.4/distutils/core.py, line 149, in setup
   dist.run_commands()
 File /usr/lib64/python2.4/distutils/dist.py, line 946, in
run_commands
   self.run_command(cmd)
 File /usr/lib64/python2.4/distutils/dist.py, line 966, in
run_command
   cmd_obj.run()
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 211, in run
   self.easy_install(spec, not self.no_deps)
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/command/easy_install.py, line 432, in easy_install
   dist = self.package_index.fetch_distribution(
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 454, in fetch_distribution
   self.find_packages(requirement)
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 303, in find_packages
   self.scan_url(self.index_url + requirement.unsafe_name+'/')
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 617, in scan_url
   self.process_url(url, True)
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 189, in process_url
   f = self.open_url(url, Download error: %s -- Some packages may
not be found!)
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 579, in open_url
   return open_with_auth(url)
 File /usr/lib/python2.4/site-packages/setuptools-0.6c9-py2.4.egg/
setuptools/package_index.py, line 717, in open_with_auth
   fp = urllib2.urlopen(request)
 File /usr/lib64/python2.4/urllib2.py, line 130, in urlopen
   return _opener.open(url, data)
 File /usr/lib64/python2.4/urllib2.py, line 358, in open
   response = self._open(req, data)
 File /usr/lib64/python2.4/urllib2.py, line 376, in _open
   '_open', req)
 File /usr/lib64/python2.4/urllib2.py, line 337, in _call_chain
   result = func(*args)
 File /usr/lib64/python2.4/urllib2.py, line 1032, in http_open
   return self.do_open(httplib.HTTPConnection, req)
 File /usr/lib64/python2.4/urllib2.py, line 1004, in do_open
   r = h.getresponse()
 File /usr/lib64/python2.4/httplib.py, line 872, in getresponse
   response.begin()
 File /usr/lib64/python2.4/httplib.py, line 336, in begin
   version, status, reason = self._read_status()
 File /usr/lib64/python2.4/httplib.py, line 300, in _read_status
   raise BadStatusLine(line)
httplib.BadStatusLine
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To post to this group, send email to reviewboard@googlegroups.com
To unsubscribe from this group, send email to