summaryrefslogtreecommitdiff
path: root/packages/bddeb
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2012-11-13 12:30:42 -0500
committerScott Moser <smoser@ubuntu.com>2012-11-13 12:30:42 -0500
commit8cd2b2a5019f1e2a3041392956001ca2495d57fd (patch)
tree1eb9fc0876e697c274a7d656c1141316f8bd5c1a /packages/bddeb
parentc26b0674aa2ef31c7c3f7a0392044382cf6a452f (diff)
parent517f52af3c7fa39b0303f337681f77e2d2a4ff6f (diff)
downloadvyos-cloud-init-8cd2b2a5019f1e2a3041392956001ca2495d57fd.tar.gz
vyos-cloud-init-8cd2b2a5019f1e2a3041392956001ca2495d57fd.zip
fix bad dependency added during the boto fix
Diffstat (limited to 'packages/bddeb')
-rwxr-xr-xpackages/bddeb7
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/bddeb b/packages/bddeb
index 2cfddb99..a92dad70 100755
--- a/packages/bddeb
+++ b/packages/bddeb
@@ -28,13 +28,14 @@ import argparse
# use in our debian 'control' file, this is a translation of the 'requires'
# file pypi package name to a debian/ubuntu package name.
PKG_MP = {
+ 'argparse': 'python-argparse',
'boto': 'python-boto',
+ 'cheetah': 'python-cheetah',
'configobj': 'python-configobj',
'oauth': 'python-oauth',
- 'pyyaml': 'python-yaml',
+ 'pkg_resources': 'python-pkg-resources',
'prettytable': 'python-prettytable',
- 'argparse': 'python-argparse',
- 'cheetah': 'python-cheetah',
+ 'pyyaml': 'python-yaml',
}
DEBUILD_ARGS = ["-us", "-S", "-uc"]