~ubuntu-branches/ubuntu/raring/nova/raring-proposed

« back to all changes in this revision

Viewing changes to tools/install_venv_common.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, James Page
  • Date: 2013-03-20 12:59:22 UTC
  • mfrom: (1.1.69)
  • Revision ID: package-import@ubuntu.com-20130320125922-ohvfav96lemn9wlz
Tags: 1:2013.1~rc1-0ubuntu1
[ Chuck Short ]
* New upstream release.
* debian/patches/avoid_setuptools_git_dependency.patch: Refreshed.
* debian/control: Clean up dependencies:
  - Dropped python-gflags no longer needed.
  - Dropped python-daemon no longer needed.
  - Dropped python-glance no longer needed.
  - Dropped python-lockfile no longer needed.
  - Dropped python-simplejson no longer needed.
  - Dropped python-tempita no longer needed.
  - Dropped python-xattr no longer needed.
  - Add sqlite3 required for the testsuite.

[ James Page ]
* d/watch: Update uversionmangle to deal with upstream versioning
  changes, remove tarballs.openstack.org. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# vim: tabstop=4 shiftwidth=4 softtabstop=4
2
2
 
3
 
# Copyright 2013 OpenStack, LLC
 
3
# Copyright 2013 OpenStack Foundation
4
4
# Copyright 2013 IBM Corp.
5
5
#
6
6
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
185
185
        self.run_command(['sudo', 'yum', 'install', '-y', pkg], **kwargs)
186
186
 
187
187
    def apply_patch(self, originalfile, patchfile):
188
 
        self.run_command(['patch', originalfile, patchfile])
 
188
        self.run_command(['patch', '-N', originalfile, patchfile],
 
189
                         check_exit_code=False)
189
190
 
190
191
    def install_virtualenv(self):
191
192
        if self.check_cmd('virtualenv'):