tags 646644 patch
user [email protected]
usertags ubuntu-patch precise
thanks
On Wed, Oct 26, 2011 at 01:57:59AM +0200, Mònica Ramírez Arceda wrote:
> During a rebuild of all packages in sid, your package failed to build on
> amd64.
>
> Relevant part:
> > debian/rules build
> > dh build
> > dh_testdir
> > dh_auto_configure
> > debian/rules override_dh_auto_build
> > make[1]: Entering directory `/build/flickrbackup-_mMSql/flickrbackup-0.2'
> > dh_auto_build
> > help2man --name='backup your flickr photos' --section=1 --no-info
> > ./flickrbackup > flickrbackup.1
> > help2man: can't get `--help' info from ./flickrbackup
> > Try `--no-discard-stderr' if option outputs to stderr
> > make[1]: *** [override_dh_auto_build] Error 127
This is because:
$ ./flickrbackup --help
Traceback (most recent call last):
File "./flickrbackup", line 18, in <module>
import xml.dom.minidom
ImportError: No module named xml.dom.minidom
If you install python to fix that you then get:
$ ./flickrbackup --help
Traceback (most recent call last):
File "./flickrbackup", line 28, in <module>
import pyexiv2
ImportError: No module named pyexiv2
The fix is trivial, of course:
* Build-depend on python and python-pyexiv2 (closes: #646644).
diff -Nru flickrbackup-0.2/debian/control flickrbackup-0.2/debian/control
--- flickrbackup-0.2/debian/control 2011-10-01 17:15:56.000000000 +0100
+++ flickrbackup-0.2/debian/control 2011-10-27 12:01:24.000000000 +0100
@@ -2,7 +2,7 @@
Section: utils
Priority: optional
Maintainer: Tiago Bortoletto Vaz <[email protected]>
-Build-Depends-Indep: debhelper (>= 7.0.50~), help2man
+Build-Depends-Indep: debhelper (>= 7.0.50~), help2man, python, python-pyexiv2
Standards-Version: 3.9.2
Vcs-Browser: https://github.com/tiagovaz/flickrbackup
Vcs-Git: git://github.com/tiagovaz/flickrbackup.git
Thanks,
--
Colin Watson [[email protected]]
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]