tags 504980 + patch pending tags 560513 + patch pending thanks Dear maintainer,
I've prepared an NMU for cryptonit (versioned as 0.9.7-2.3) and uploaded it to DELAYED/2, according to devref §5.11.1. The patch is by tbm and has been posted to this bug log already. Additionally, and given that the package has been recently maintained via NMUs, I've also performed some very minimal QA improvements, like moving away from the deprecated debhelper level 4. Do you want perhaps to orphan this package? Regards. -- Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7 z...@{upsilon.cc,pps.jussieu.fr,debian.org} -<>- http://upsilon.cc/zack/ Dietro un grande uomo c'è ..| . |. Et ne m'en veux pas si je te tutoie sempre uno zaino ...........| ..: |.... Je dis tu à tous ceux que j'aime
diff -u cryptonit-0.9.7/debian/changelog cryptonit-0.9.7/debian/changelog --- cryptonit-0.9.7/debian/changelog +++ cryptonit-0.9.7/debian/changelog @@ -1,3 +1,13 @@ +cryptonit (0.9.7-2.3) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with gcc 4.4 and up, patch by Martin Michlmayr. + (Closes: #504980, #560513) + * Bump debhelper compatibility from 4 (deprecated) to 5 + * Add missing ${misc:Depends} + + -- Stefano Zacchiroli <z...@debian.org> Mon, 18 Jan 2010 12:57:32 +0100 + cryptonit (0.9.7-2.2) unstable; urgency=medium * Non-maintainer upload. diff -u cryptonit-0.9.7/debian/compat cryptonit-0.9.7/debian/compat --- cryptonit-0.9.7/debian/compat +++ cryptonit-0.9.7/debian/compat @@ -1 +1 @@ -4 +5 diff -u cryptonit-0.9.7/debian/control cryptonit-0.9.7/debian/control --- cryptonit-0.9.7/debian/control +++ cryptonit-0.9.7/debian/control @@ -2,13 +2,13 @@ Section: x11 Priority: optional Maintainer: Pierre Machard <pmach...@debian.org> -Build-Depends: debhelper (>= 4.0.0), libldap2-dev (>= 2.1.22-1), libssl-dev (>= 0.9.7c-5), wx2.6-headers, libwxgtk2.6-dev, automake1.9, autoconf, libtool +Build-Depends: debhelper (>= 5.0.0), libldap2-dev (>= 2.1.22-1), libssl-dev (>= 0.9.7c-5), wx2.6-headers, libwxgtk2.6-dev, automake1.9, autoconf, libtool Standards-Version: 3.8.0 Homepage: http://www.cryptonit.org Package: cryptonit Architecture: any -Depends: ${shlibs:Depends} +Depends: ${shlibs:Depends}, ${misc:Depends} Description: A client side PKI (X.509) cryptographic tool Cryptonit is a client side cryptographic tool which allows you to encrypt/decrypt and sign/verify files with PKI (Public Key only in patch2: unchanged: --- cryptonit-0.9.7.orig/src/CertificateStore.cpp +++ cryptonit-0.9.7/src/CertificateStore.cpp @@ -43,7 +43,7 @@ #include "Utils.hh" -#include <stdio.h> +#include <cstdio> #include <sys/types.h> #include <dirent.h> only in patch2: unchanged: --- cryptonit-0.9.7.orig/src/Attribute.cpp +++ cryptonit-0.9.7/src/Attribute.cpp @@ -41,6 +41,7 @@ #include "Attribute.hh" +#include <ostream> #include <string> namespace Cryptonit { only in patch2: unchanged: --- cryptonit-0.9.7.orig/src/User.cpp +++ cryptonit-0.9.7/src/User.cpp @@ -39,8 +39,8 @@ * Token Interface (Cryptoki)" as described in each individual source file. */ #include <iostream> +#include <cstdio> -#include <stdio.h> //access #include <unistd.h> //access #include <sys/stat.h> //stat #include <sys/types.h> // *dir only in patch2: unchanged: --- cryptonit-0.9.7.orig/src/gui/LoginFrame.cpp +++ cryptonit-0.9.7/src/gui/LoginFrame.cpp @@ -47,6 +47,8 @@ #include <wx/textdlg.h> #include <wx/dcclient.h> +#include <cstdio> + #include "LoginFrame.hh" #include "MainWindow.hh" #include "PasswordDlg.hh"