Possible Duplicate:
Why does 'quickly package' fail with “An error has occurred when creating debian packaging”?
I am developing an app using Quickly and it has a few dependencies like 'python-xdg' for example.
When I do quickly share
on a computer that has Ubuntu 12.04 without Pre-released updates (precise-proposed), those dependencies are well reflected in ./debian/control
. But when I launch this command from an Ubuntu 12.04 with Pre-released updates (precise-proposed), not only do I get a lot of warnings (such as WARNING: syntax errors in myapp_lib/__init.py__.py: encoding declaration in Unicode string
), but also ./debian/control
looses all sorts of special dependencies.
What should I do to solve this problem (preferably before the end of the Ubuntu App Showdown)?
The same happens for quickly package
.
proposed
is not included in PPA dependencies by default, FYI. – ish Jul 09 '12 at 01:29proposed
in the dependencies, but 'python-xdg'. I activated proposed because of http://askubuntu.com/questions/156339/launchpad-failed-to-build-after-quickly-submitubuntu/157432#157432. – Agmenor Jul 09 '12 at 01:47submitubuntu
part, and after making final modifications to the control file, package it manually withdebuild -s
anddput
it manually to a PPA. Sorry :/ – ish Jul 09 '12 at 01:50