Revision fbb08c29

b/debian/changelog
1
kamaki (0.6.2.1-1) stable; urgency=low
2

  
3
  * New upstream version, replace dependency snf-common with python-objpool
4

  
5
 -- Stavros Sachtouris <saxtouri@admin.grnet.gr>  Fri, 11 Jan 201r 18:29:33 +0200
6

  
1 7
kamaki (0.6.1.1-1) stable; urgency=low
2 8

  
3 9
  * Documentation updates, bug fixes
b/debian/control
2 2
Section: python
3 3
Priority: optional
4 4
Maintainer: Stavros Sachtouris <saxtouri@admin.grnet.gr>
5
Build-Depends: debhelper (>= 8), python-all (>= 2.5)
5
XSBC-Original-Maintainer: Stavros Sachtouris <saxtouri@admin.grnet.gr>
6
Build-Depends: debhelper (>= 8), python-all (>= 2.5), python-objpool
6 7
Standards-Version: 3.9.2
7 8
XS-Python-Version: >= 2.6
8 9
Homepage: https://code.grnet.gr/projects/kamaki
9 10

  
10 11
Package: kamaki
11 12
Architecture: all
12
Depends: ${misc:Depends}, ${python:Depends}, python-setuptools,
13
 snf-common (>= 0.11), python-ordereddict, python-argparse
14
Suggests: python-progress, python-ansicolors
13
Depends: ${misc:Depends}, ${python:Depends}, python-setuptools, python-objpool
15 14
XB-Python-Version: ${python:Versions}
16
Description: Simple, yet intuitive, command-line tool for managing clouds.
17
             It is an initial implementation of the OpenStack Compute API, 
18
             v1.1, with custom extensions specific to the Synnefo IaaS cloud 
19
             management software.
20

  
15
Description: command-line tool for managing clouds
16
 Simple, yet intuitive, command-line tool for managing clouds.
17
 It is an initial implementation of the OpenStack Compute API,
18
 v1.1, with custom extensions specific to the Synnefo IaaS cloud
19
 management software.
21 20

  
b/debian/copyright
4 4
Source: https://code.grnet.gr/projects/astakos
5 5

  
6 6
Files: *
7
Copyright: Copyright (C) 2011, 2012 GRNET S.A.
7
Copyright: Copyright (C) 2011, 2012, 2013 GRNET S.A.
8 8
Licence: BSD-2-clause
9 9

  
10 10
Licence: BSD-2-clause
b/debian/pydist-overrides
1
snf-common snf-common
1
argparse python-argparse
b/setup.py
35 35

  
36 36
from setuptools import setup
37 37
from sys import version_info
38
import collections
38 39

  
39 40
import kamaki
40 41

  
41 42

  
42
optional = ['ansicolors', 'progress>=1.0.2']
43
required = ['snf-common>=0.10']
43
optional = ['ansicolors',
44
            'progress>=1.0.2']
45
requires = ['objpool',
46
            'argparse']
47

  
48
if not hasattr(collections, "OrderedDict"): # Python 2.6
49
    requires.append("ordereddict")
44 50

  
45 51
setup(
46 52
    name='kamaki',
......
54 60
    entry_points={
55 61
        'console_scripts': ['kamaki = kamaki.cli:main']
56 62
    },
57
    install_requires=required
63
    install_requires=requires
58 64
)

Also available in: Unified diff