Your message dated Tue, 10 Jan 2012 13:47:13 +0000
with message-id <e1rkc2j-0003l2...@franck.debian.org>
and subject line Bug#654590: fixed in adept 3.0~beta7.2+nmu2
has caused the Debian Bug report #654590,
regarding FTBFS: /usr/include/xapian/keymaker.h:66:10: error: a template-id may
not appear in a using-declaration
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 ow...@bugs.debian.org
immediately.)
--
654590: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654590
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: adept
Version: 3.0~beta7.2+nmu1
Severity: serious
Tags: patch
Justification: fails to build from source (but built successfully in the past)
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch
In Ubuntu, the attached patch was applied to achieve the following:
* Fix FTBFS: rearrange #includes in multiple files to ensure that Xapian
headers are always included before Qt ones. See debbugs #651696 for
discussion.
Thanks for considering the patch.
-- System Information:
Debian Release: wheezy/sid
APT prefers precise-updates
APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500,
'precise-proposed'), (500, 'precise'), (100, 'precise-backports')
Architecture: i386 (i686)
Kernel: Linux 3.0.0-15-generic (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) (ignored: LC_ALL
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/adept/commitwidget.h adept-3.0~beta7.2+nmu1ubuntu4/adept/commitwidget.h
--- adept-3.0~beta7.2+nmu1ubuntu3/adept/commitwidget.h 2009-08-03 19:55:52.000000000 +0400
+++ adept-3.0~beta7.2+nmu1ubuntu4/adept/commitwidget.h 2012-01-04 17:22:50.000000000 +0400
@@ -1,14 +1,14 @@
// -*- C++ -*- (c) 2008 Petr Rockai <m...@mornfall.net>
+#include <adept/debconfgui.h>
+#include <adept/guidpkgpm.h>
+
#include <KVBox>
#include <QPushButton>
#include <QStackedWidget>
#include <QProgressBar>
#include <QLabel>
-#include <adept/guidpkgpm.h>
-#include <adept/debconfgui.h>
-
#ifndef ADEPT_COMMITWIDGET_H
#define ADEPT_COMMITWIDGET_H
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/adept/downloadprogress.h adept-3.0~beta7.2+nmu1ubuntu4/adept/downloadprogress.h
--- adept-3.0~beta7.2+nmu1ubuntu3/adept/downloadprogress.h 2010-05-31 15:32:16.000000000 +0400
+++ adept-3.0~beta7.2+nmu1ubuntu4/adept/downloadprogress.h 2012-01-04 17:31:59.000000000 +0400
@@ -1,6 +1,7 @@
// -*- C++ -*- (c) 2007, 2008 Petr Rockai <m...@mornfall.net>
#include <ept/progresscallback.h>
+#include <adept/util.h>
#include <adept/processevents.h>
#include <apt-pkg/acquire-worker.h>
@@ -17,7 +18,6 @@
#include <QLayout>
#include <KLocale>
#include <KIcon>
-#include <adept/util.h>
#include <QPushButton>
#include <QListView>
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/adept/guidpkgpm.cpp adept-3.0~beta7.2+nmu1ubuntu4/adept/guidpkgpm.cpp
--- adept-3.0~beta7.2+nmu1ubuntu3/adept/guidpkgpm.cpp 2009-08-03 19:55:53.000000000 +0400
+++ adept-3.0~beta7.2+nmu1ubuntu4/adept/guidpkgpm.cpp 2012-01-04 17:10:12.000000000 +0400
@@ -1,5 +1,6 @@
// -*- C++ -*- (c) 2005-2008 Petr Rockai <m...@mornfall.net>
+#include <adept/util.h>
#include <adept/guidpkgpm.h>
#ifndef RPM
@@ -11,8 +12,6 @@
#include <ept/core/apt.h>
-#include <adept/util.h>
-
#include <QtCore/QStringList>
#include <QtCore/QCoreApplication>
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/adept/packagedetails.h adept-3.0~beta7.2+nmu1ubuntu4/adept/packagedetails.h
--- adept-3.0~beta7.2+nmu1ubuntu3/adept/packagedetails.h 2009-08-06 21:22:18.000000000 +0400
+++ adept-3.0~beta7.2+nmu1ubuntu4/adept/packagedetails.h 2012-01-04 17:30:16.000000000 +0400
@@ -2,6 +2,12 @@
(c) 2008 Peter Rockai <m...@mornfall.net>
(c) 2008 Yuriy Kozlov <yuriy.koz...@gmail.com> */
+#include <adept/util.h>
+#include <adept/packageinfo.h>
+#include <adept/tokenmodel.h>
+#include <adept/packagelist.h>
+#include <adept/processevents.h>
+
#include <KVBox>
#include <KHBox>
#include <KUrl>
@@ -23,12 +29,6 @@
#include <ept/core/apt.h>
#include <ept/core/apt/action.h>
-#include <adept/util.h>
-#include <adept/packageinfo.h>
-#include <adept/tokenmodel.h>
-#include <adept/packagelist.h>
-#include <adept/processevents.h>
-
#ifndef ADEPT_PACKGEDETAILS_H
#define ADEPT_PACKGEDETAILS_H
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/adept/packageinfo.h adept-3.0~beta7.2+nmu1ubuntu4/adept/packageinfo.h
--- adept-3.0~beta7.2+nmu1ubuntu3/adept/packageinfo.h 2009-08-03 19:55:53.000000000 +0400
+++ adept-3.0~beta7.2+nmu1ubuntu4/adept/packageinfo.h 2012-01-04 17:33:16.000000000 +0400
@@ -2,6 +2,9 @@
(c) 2008 Peter Rockai <m...@mornfall.net>,
(c) 2008 Yuriy Kozlov <yuriy.koz...@gmail.com> */
+#include <adept/packagedata.h>
+#include <adept/util.h>
+
#include <QtGui/QWidget>
#include <QtGui/QCheckBox>
@@ -11,9 +14,6 @@
#include <ept/core/apt.h>
#include <ept/core/apt/action.h>
-#include <adept/packagedata.h>
-#include <adept/util.h>
-
#ifndef ADEPTPACKAGEINFO_H
#define ADEPTPACKAGEINFO_H
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/adept/statefilter.h adept-3.0~beta7.2+nmu1ubuntu4/adept/statefilter.h
--- adept-3.0~beta7.2+nmu1ubuntu3/adept/statefilter.h 2009-08-03 19:55:53.000000000 +0400
+++ adept-3.0~beta7.2+nmu1ubuntu4/adept/statefilter.h 2012-01-04 16:57:43.000000000 +0400
@@ -1,5 +1,8 @@
// -*- C++ -*- (c) 2008 Petr Rockai <m...@mornfall.net>
+#include <adept/packagedata.h>
+#include <adept/util.h>
+
#include <QtGui/QGridLayout>
#include <QtGui/QToolTip>
#include <QtGui/QLabel>
@@ -8,9 +11,6 @@
#include <klocale.h>
-#include <adept/packagedata.h>
-#include <adept/util.h>
-
#ifndef ADEPT_STATEFILTER_H
#define ADEPT_STATEFILTER_H
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/adept/util.h adept-3.0~beta7.2+nmu1ubuntu4/adept/util.h
--- adept-3.0~beta7.2+nmu1ubuntu3/adept/util.h 2009-08-03 19:55:53.000000000 +0400
+++ adept-3.0~beta7.2+nmu1ubuntu4/adept/util.h 2012-01-04 16:51:16.000000000 +0400
@@ -3,6 +3,10 @@
/* TODO this is a "misc" file. Some things here may need to
eventually move to a better location. */
+#include <ept/core/xapian.h>
+#include <ept/core/apt.h>
+#include <ept/core/apt/action.h>
+
#include <QtCore/QString>
#include <QtGui/QPixmap>
#include <QtGui/QFont>
@@ -10,10 +14,6 @@
#include <QtGui/QLabel>
#include <QtGui/QScrollArea>
-#include <ept/core/xapian.h>
-#include <ept/core/apt.h>
-#include <ept/core/apt/action.h>
-
#include <kiconloader.h>
#include <kstandarddirs.h>
#include <klocale.h>
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/debian/changelog adept-3.0~beta7.2+nmu1ubuntu4/debian/changelog
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/tools/debconf.h adept-3.0~beta7.2+nmu1ubuntu4/tools/debconf.h
--- adept-3.0~beta7.2+nmu1ubuntu3/tools/debconf.h 2009-08-03 19:55:53.000000000 +0400
+++ adept-3.0~beta7.2+nmu1ubuntu4/tools/debconf.h 2012-01-04 17:36:11.000000000 +0400
@@ -1,5 +1,5 @@
-#include <KMainWindow>
#include <adept/debconfgui.h>
+#include <KMainWindow>
using namespace adept;
diff -Nru adept-3.0~beta7.2+nmu1ubuntu3/tools/main.cpp adept-3.0~beta7.2+nmu1ubuntu4/tools/main.cpp
--- adept-3.0~beta7.2+nmu1ubuntu3/tools/main.cpp 2009-08-28 11:01:23.000000000 +0400
+++ adept-3.0~beta7.2+nmu1ubuntu4/tools/main.cpp 2012-01-04 17:34:57.000000000 +0400
@@ -2,12 +2,12 @@
#include <stdlib.h>
+#include "manager.h"
+
#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <kapplication.h>
-#include "manager.h"
-
int main(int argc, char *argv[])
{
KLocale::setMainCatalog("adept");
--- End Message ---
--- Begin Message ---
Source: adept
Source-Version: 3.0~beta7.2+nmu2
We believe that the bug you reported is fixed in the latest version of
adept, which is due to be installed in the Debian FTP archive:
adept_3.0~beta7.2+nmu2.dsc
to main/a/adept/adept_3.0~beta7.2+nmu2.dsc
adept_3.0~beta7.2+nmu2.tar.gz
to main/a/adept/adept_3.0~beta7.2+nmu2.tar.gz
adept_3.0~beta7.2+nmu2_amd64.deb
to main/a/adept/adept_3.0~beta7.2+nmu2_amd64.deb
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 654...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Aron Xu <a...@debian.org> (supplier of updated adept 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 ftpmas...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Tue, 10 Jan 2012 20:18:35 +0800
Source: adept
Binary: adept
Architecture: source amd64
Version: 3.0~beta7.2+nmu2
Distribution: unstable
Urgency: low
Maintainer: Petr Rockai <mornf...@debian.org>
Changed-By: Aron Xu <a...@debian.org>
Description:
adept - package management suite for KDE
Closes: 422564 501062 603898 654590
Changes:
adept (3.0~beta7.2+nmu2) unstable; urgency=low
.
* Non-maintainer upload.
* Convert to dh8. compat: 8, std-ver: 3.9.2, format: 3.0 (native)
* Depend on anacron, so it can automatically notify users when
updates are available (Closes: 422564).
* Add man page (Closes: #501062), thanks to Michael Casadevall.
* Take most of Ubuntu works, thanks to Ubuntu developers.
Closes: #654590, #603898.
Checksums-Sha1:
ac4f91bc74af69a7e8096393923283b556abaf11 1273 adept_3.0~beta7.2+nmu2.dsc
cf17808b03cb6caf3ee9c602fb02c1edfb4fa863 1729220 adept_3.0~beta7.2+nmu2.tar.gz
ff0f70103ba7663bcb34c837a2c450923730c975 399994
adept_3.0~beta7.2+nmu2_amd64.deb
Checksums-Sha256:
3e1161ba0f1391195901a4f452166bd31b997fe970c173a4db80ee3d1486af13 1273
adept_3.0~beta7.2+nmu2.dsc
0075fb57eeda51af27e6ea24d6a9f7f8cf75082a0c38239d2efad4c8806f1511 1729220
adept_3.0~beta7.2+nmu2.tar.gz
0c8f935c6ea1e95f49398fbdc18381c20aa1d04dda4366101358d1f739b69798 399994
adept_3.0~beta7.2+nmu2_amd64.deb
Files:
64a02cd7aec9b45c9c19e24c2534c28f 1273 kde optional adept_3.0~beta7.2+nmu2.dsc
291c72b3e1e66079cad14e6f23f09471 1729220 kde optional
adept_3.0~beta7.2+nmu2.tar.gz
dca96b91d14f0a85fec050ff293befc4 399994 kde optional
adept_3.0~beta7.2+nmu2_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iQEcBAEBCgAGBQJPDD2aAAoJEEmrPP2rYrC4HyUIAJAnVHB+aH9sIrBS453JQObf
2VtxIumhivADoQ8ejsGJBtElmiMX8d021FDLaw5CHSMHZXxfqQ3LSYkgCenlJ/r9
ROVnJ0B0+lb/Sej+AactL1zWRSg1wUIjPhK48WBm6M2R7qbGfQoiyZspWyVWEokt
g8H074tz9idqsA1hN6A4JPv8yzNgmzhQAm58JIeiJ4dEpTnB3fjFMG6L+bVI8/BC
advJSdAWYGaLkiRi6Cg2j7Kid3HJuxi/l1KoQ8FzS9AYM6sew91PUshgP4/NtdRF
3a8wvwyVjZ2DcrHiICyLS+W4YtNO0sWAvZ0JnTP3mkeuo2+0mzyZprx+iu8SdME=
=uvIy
-----END PGP SIGNATURE-----
--- End Message ---