Your message dated Wed, 07 Sep 2011 09:34:06 +0000
with message-id <[email protected]>
and subject line Bug#639030: fixed in nautilus-dropbox 0.6.9-1
has caused the Debian Bug report #639030,
regarding nautilus-dropbox: FTBFS with python-docutils 0.8: TypeError:
get_language() takes exactly 2 arguments (1 given)
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
639030: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=639030
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: nautilus-dropbox
Version: 0.6.8-1
Severity: important
Tags: patch
User: [email protected]
Usertags: docutils0.8
When rebuilt against python-docutils 0.8 (currently in experimental),
nautilus-dropbox failed to build from source:
| python docgen.py 0.6.8 < dropbox.txt.in > dropbox.txt
| python rst2man.py dropbox.txt > dropbox.1
| TypeError: get_language() takes exactly 2 arguments (1 given)
| Exiting due to error. Use "--traceback" to diagnose.
| Please report errors to <[email protected]>.
| Include "--traceback" output, Docutils version (0.8 [release]),
| Python version (2.6.7), your OS type & version, and the
| command line used.
| make[3]: *** [dropbox.1] Error 1
| make[3]: Leaving directory
`/build/nautilus-dropbox-PsRv_5/nautilus-dropbox-0.6.8'
The full traceback was:
| Traceback (most recent call last):
| File "rst2man.py", line 1091, in <module>
| publish_cmdline(writer=Writer(), description=description)
| File "/usr/lib/pymodules/python2.6/docutils/core.py", line 339, in
publish_cmdline
| config_section=config_section, enable_exit_status=enable_exit_status)
| File "/usr/lib/pymodules/python2.6/docutils/core.py", line 213, in publish
| output = self.writer.write(self.document, self.destination)
| File "/usr/lib/pymodules/python2.6/docutils/writers/__init__.py", line 77,
in write
| self.translate()
| File "rst2man.py", line 129, in translate
| visitor = self.translator_class(self.document)
| File "rst2man.py", line 180, in __init__
| self.language = languages.get_language(lcode)
| TypeError: get_language() takes exactly 2 arguments (1 given)
The attached patch makes the package use rst2man from python-docutils
(>= 0.6) rather than the embedded (and outdated) copy.
--
Jakub Wilk
--- a/Makefile.am
+++ b/Makefile.am
@@ -11,6 +11,6 @@
dropbox.1: dropbox.txt.in dropbox docgen.py
python docgen.py $(PACKAGE_VERSION) < dropbox.txt.in > dropbox.txt
- python rst2man.py dropbox.txt > dropbox.1
+ rst2man dropbox.txt > dropbox.1
SUBDIRS = data src
\ No newline at end of file
--- a/Makefile.in
+++ b/Makefile.in
@@ -846,7 +846,7 @@
dropbox.1: dropbox.txt.in dropbox docgen.py
python docgen.py $(PACKAGE_VERSION) < dropbox.txt.in > dropbox.txt
- python rst2man.py dropbox.txt > dropbox.1
+ rst2man dropbox.txt > dropbox.1
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
--- nautilus-dropbox-0.6.8/debian/control 2011-07-15 10:56:48.000000000 +0200
+++ nautilus-dropbox-0.6.8/debian/control 2011-08-23 18:36:39.000000000 +0200
@@ -2,7 +2,7 @@
Section: non-free/gnome
Priority: optional
Maintainer: RaphaĂŤl Hertzog <[email protected]>
-Build-Depends: debhelper (>= 8), libnautilus-extension-dev (>= 2.16.0), libglib2.0-dev (>= 2.14.0), python-gtk2 (>= 2.12), python-docutils
+Build-Depends: debhelper (>= 8), libnautilus-extension-dev (>= 2.16.0), libglib2.0-dev (>= 2.14.0), python-gtk2 (>= 2.12), python-docutils (>= 0.6)
Standards-Version: 3.9.2
XS-Autobuild: yes
Homepage: http://www.dropbox.com/
--- End Message ---
--- Begin Message ---
Source: nautilus-dropbox
Source-Version: 0.6.9-1
We believe that the bug you reported is fixed in the latest version of
nautilus-dropbox, which is due to be installed in the Debian FTP archive:
nautilus-dropbox_0.6.9-1.debian.tar.bz2
to non-free/n/nautilus-dropbox/nautilus-dropbox_0.6.9-1.debian.tar.bz2
nautilus-dropbox_0.6.9-1.dsc
to non-free/n/nautilus-dropbox/nautilus-dropbox_0.6.9-1.dsc
nautilus-dropbox_0.6.9-1_i386.deb
to non-free/n/nautilus-dropbox/nautilus-dropbox_0.6.9-1_i386.deb
nautilus-dropbox_0.6.9.orig.tar.bz2
to non-free/n/nautilus-dropbox/nautilus-dropbox_0.6.9.orig.tar.bz2
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Raphaël Hertzog <[email protected]> (supplier of updated nautilus-dropbox
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Wed, 07 Sep 2011 10:17:02 +0200
Source: nautilus-dropbox
Binary: nautilus-dropbox
Architecture: source i386
Version: 0.6.9-1
Distribution: unstable
Urgency: low
Maintainer: Raphaël Hertzog <[email protected]>
Changed-By: Raphaël Hertzog <[email protected]>
Description:
nautilus-dropbox - Dropbox integration for Nautilus
Closes: 639030
Changes:
nautilus-dropbox (0.6.9-1) unstable; urgency=low
.
* New upstream version.
* Uses system's rst2man instead of the embedded one. Avoids a build
failure once python-docutils 0.8 is uploaded. Thanks to Jakub Wilk.
Closes: #639030
Checksums-Sha1:
452fed56df15932a0225d128444e318a6936b17a 2047 nautilus-dropbox_0.6.9-1.dsc
bad6402183b2ed1190ecb8faec2eccaf9ae3e821 351131
nautilus-dropbox_0.6.9.orig.tar.bz2
758abd7863b7bd6daf8b4d3e581d8162a4bcfc24 11112
nautilus-dropbox_0.6.9-1.debian.tar.bz2
2004cc950988fc5a1e8056094c9270f2f3847b5d 99684
nautilus-dropbox_0.6.9-1_i386.deb
Checksums-Sha256:
7e062b7066b35079e42864e3222bda9ec25c6c055131f5f75c2c052f021633b7 2047
nautilus-dropbox_0.6.9-1.dsc
f1c16c0a485884a5600121a168d4617dc4b47842b22524007f5e2b116b1701f6 351131
nautilus-dropbox_0.6.9.orig.tar.bz2
3df69769992a7088aef9254b105ce440ee842eab96bd218b6a4c4b5583f79e3f 11112
nautilus-dropbox_0.6.9-1.debian.tar.bz2
80fe2bfaf1934a62de662e274a230a00012a8211dd9ec5bd0a0d872b85ff1a33 99684
nautilus-dropbox_0.6.9-1_i386.deb
Files:
1256bd80629d93d161960cb487c0c98e 2047 non-free/gnome optional
nautilus-dropbox_0.6.9-1.dsc
b79f8796aeea92979956f20973294321 351131 non-free/gnome optional
nautilus-dropbox_0.6.9.orig.tar.bz2
7b69765a85bf33488732e40f2ff3c542 11112 non-free/gnome optional
nautilus-dropbox_0.6.9-1.debian.tar.bz2
5860224fa949a59b07ae7a272a087449 99684 non-free/gnome optional
nautilus-dropbox_0.6.9-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Signed by Raphael Hertzog
iQIcBAEBCAAGBQJOZzbPAAoJEOYZBF3yrHKaBAIQAJMvbk8ZUrSg/9+m1sYCqisl
tF1g26Mee0tTEpUFC6yZvDliqbZ8iPgyi0e/iu2qj0aSFg6RfPQzaRuyVQQDvtjh
TNc2vyWnfrbZhBfPqRDJlzjfWv7ux8t37Oq/b8UJVQ+IlSCPQ03YO52DEnrRmNMH
ePXNNhnU1wsvf0h+PvVTpye3nuJzg3nT+dqdXzihmL/kU/WppltsEwGtJNtw7+am
PmCQkePbX1QxZnVroJMBvMJbr/76wdTGvHf7a5gfvKT7UXYb+v5gfD6e0+Pffmvs
xZjCON12VXsuiVcVwiQW3XoreO6sZj2aDGRzAfih5hNfHOAeEVbb48qYym0gSmhg
O54RFTVug2WdynY4mPdhmf78AkYcKq6xYGW2g4LZJE1S60kXSkiG1Ye3vdEeAVC7
j6HGKjgiqocXIbN+hK+RdTw/y5c8ToP9W7r2sOZ5Mn2EIyrmXZvPFbApenQRdpAw
8PoiTmabtACR6MnuGal8u37yHKlmlP1uHEWXZsLkoC6TQMFDGNyv54Y0zZjdrNKJ
CfRCYiCedVkLLDpVZppI/r2AVZ7vhSOOkpvqozYPUA68tA6GHy4SyAancoyiRDpk
IZF4CEaOFvfu2Dk01reVNr5Q6pY+oiymA6mTf52vGfquX24dTVZp9taa+bHQ5amo
FvHHhW3v+yqnwX73WDyZ
=pI7N
-----END PGP SIGNATURE-----
--- End Message ---