diff --git a/MANIFEST.in b/MANIFEST.in index a612d29b69beae7995f91e0372c3ca04ae3157a9..7a547aa847f785c89908dd742a50bc65b6e4958d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ recursive-include etc * +recursive-include doc * diff --git a/ccserver/__init__.py b/ccserver/__init__.py index 8e8fc6ca0f1385d33236e2b508b7d9c3880c5475..b329794ac3148b804cc5490cc972db1c1d013739 100644 --- a/ccserver/__init__.py +++ b/ccserver/__init__.py @@ -5,4 +5,4 @@ CloudControl server libraries. ''' -__version__ = 18 +__version__ = 19 diff --git a/debian/changelog b/debian/changelog index 8932e3f1a4234828aa44752844f281d4c9c58aac..0cfff37b8015268a57ac04b261ed48bb4263808b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cc-server (19) unstable; urgency=low + + * Added missing dependency to python-docutils. + + -- Antoine Millet Mon, 09 May 2011 11:25:51 +0200 + cc-server (18) unstable; urgency=low * Added manpages for all binaries. diff --git a/setup.py b/setup.py index dac44b4ce59dff5c095bb83318bd2b38a9bb1a31..bf22f5c9f8d8a7f2648c4a306c9a73fbf3971468 100644 --- a/setup.py +++ b/setup.py @@ -22,9 +22,11 @@ class BuildMan(build): from docutils.core import publish_file from docutils.writers import manpage + srcdir = os.path.split(os.path.abspath(__file__))[0] + for man in self.MANPAGES: - publish_file(source_path='doc/%s.rst' % man, - destination_path='%s.1' % man, + publish_file(source_path=os.path.join(srcdir, 'doc/%s.rst' % man), + destination_path=os.path.join(srcdir, '%s.1' % man), writer=manpage.Writer()) build.sub_commands.insert(0, ('build_man', None))