Bug#983046: kjs: please make the opcodes.h file reproducible

2021-02-22 Thread Chris Lamb
Hi Norbert,

> Do you want that this is also included into unstable and uploaded now
> during the freeze, or is post-release fine?

Post-release would be totally fine… but I suppose if you do end up
uploading kjs for some other issue, it would be nice to include it.

(Not sure what the current Release Manager policy is regarding
including these kinds of fixes in unblock requests, mind you.)


Regards,

--
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org 🍥 chris-lamb.co.uk
   `-



Bug#983046: kjs: please make the opcodes.h file reproducible

2021-02-18 Thread Chris Lamb
Source: kjs
Version: 5.78.0-2
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: buildpath
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0] we noticed that
kjs could not be built reproducibly.

This is, in part, because it generates an opcodes.h file that embeds the
full path to its original filename which naturally varies on the original
build directory.

Patch attached that applies the equivalent of basename(3) to these values;
kjs doesn't use boost so I cannot use boost::filesystem, nor does it use
c++17 (?) so I cannot use std::filesystem::path either, alas.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/reproducible_build 1970-01-01 01:00:00.0 +0100
--- b/debian/patches/reproducible_build 2021-02-18 14:52:49.165246604 +
@@ -0,0 +1,49 @@
+Description: Make the build reproducible
+Author: Chris Lamb 
+Last-Update: 2021-02-18
+
+--- kjs-5.78.0.orig/src/kjs/bytecode/generator/filetemplate.h
 kjs-5.78.0/src/kjs/bytecode/generator/filetemplate.h
+@@ -46,6 +46,7 @@ struct FileTemplate {
+ {
+ isOK  = true;
+ lines = 0;
++  inFileBaseName = inFileName.substr(inFileName.find_last_of("/") + 1);
+ 
+ in.open(inFileName.c_str());
+ if (in.fail()) {
+@@ -60,7 +61,7 @@ struct FileTemplate {
+ }
+ 
+ if (isOK) {
+-out << "// WARNING: Portions of this file are autogenerated from 
codes.def and " << inFileName << ".\n";
++out << "// WARNING: Portions of this file are autogenerated from 
codes.def and " << inFileBaseName << ".\n";
+ out << "// (which is what the licensing terms apply to)\n";
+ out << "// Any changes you make here may be lost!\n";
+ handleUntilGenerate();
+@@ -77,7 +78,7 @@ struct FileTemplate {
+ // Goes until @generate..
+ void handleUntilGenerate()
+ {
+-out << "#line " << (lines + 1) << " \"" << inFileName << "\"\n";
++out << "#line " << (lines + 1) << " \"" << inFileBaseName << "\"\n";
+ while (!in.eof()) {
+ string line;
+ getline(in, line);
+@@ -92,7 +93,7 @@ struct FileTemplate {
+ 
+ void handleSuffix()
+ {
+-out << "#line " << (lines + 1) << " \"" << inFileName << "\"\n";
++out << "#line " << (lines + 1) << " \"" << inFileBaseName << "\"\n";
+ while (!in.eof()) {
+ string line;
+ getline(in, line);
+@@ -101,6 +102,7 @@ struct FileTemplate {
+ }
+ 
+ string   inFileName;
++string   inFileBaseName;
+ string   outFileName;
+ ifstream in;
+ ofstream out;
--- a/debian/patches/series 2021-02-18 12:56:03.551163060 +
--- b/debian/patches/series 2021-02-18 13:00:06.669560158 +
@@ -1 +1,2 @@
 install_missing_headers
+reproducible_build


Re: qtdatavis3d-everywhere-src_5.10.1-1_amd64.changes is NEW

2018-11-04 Thread Chris Lamb
Dear Pino et al.

> OK for the "please be patient" bit, but 6 months with no feedback
> whatsoever seem excessive to me.

It's nothing to do with how many source files it is, it's just a
big queue and not even enough time to onboard new people... Sorry
it took so long to process but I've processed it now.

Needless to say, the "please be patient" bit is some machine-
generated boilerplate and not to be taken personally or even
literally.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



latte-dock_0.7.4-1_amd64.changes REJECTED

2018-09-25 Thread Chris Lamb


(forwarding reject notes)

REJECT

* applets/* is GPL3+
* po/ca/* and others are LGPL 2.1 or 3, without generic or later clause
* some attributions missing

* software looks interesting 



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.



Bug#894476: rcc: please honour SOURCE_DATE_EPOCH

2018-07-09 Thread Chris Lamb
Thorsten,

> > far easier and clearer IMHO to statelessly state that clamping is not
> > required when using SOURCE_DATE_EPOCH. :)
> 
> OK, now I do not understand _that_…

(It's clearer to say "X is the situation" vs "when you said Y before
that was correct/incorrect")


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#894476: rcc: please honour SOURCE_DATE_EPOCH

2018-07-09 Thread Chris Lamb
Hi Thorsten,

> > It is not required.
> 
> I’m parsing this as “you were not incorrect”, right?

It doesn't really matter whether you were correct or incorrect in the
past and seems a little silly to debate that; far easier and clearer
IMHO to statelessly state that clamping is not required when using
SOURCE_DATE_EPOCH. :)

> > I've found that having a shared vocabulary is very useful so just in
> > case it helps we tend to use the term "clamping" when referring to
> 
> True… it’s just that I didn’t recall the word, as “clamping”
> is not something normally part of my English vocabulary […]

I might agree it's esoteric word/usage, but not only is it already "out
there", we have more problems with "reproducible" to worry about this
one too much alas.

> I’ll try to remember next time.

Again, no question of blame or apologies here… :)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#894476: rcc: please honour SOURCE_DATE_EPOCH (was Re: RCC: provide option to encode EPOCH timestamp)

2018-07-07 Thread Chris Lamb
Hi Thorsten,

> AIUI, S_D_E is used as a *delimiter*, not as a timestamp *all* files
> are to be set to.

I've found that having a shared vocabulary is very useful so just in
case it helps we tend to use the term "clamping" when referring to
this MIN(a,b) concept rather than "delimiter" or similar.  eg. "foo
clamps the mtimes to SOURCE_DATE_EPOCH".

> Chris/H01ger, please correct me if I’m wrong, but this is
> how I understood S_D_E to work.

It is not required. Does the canonical specification not explain?

  https://reproducible-builds.org/specs/source-date-epoch/
  
I pedantically refer you to that /only/ because if it is not clear
enough then there is a need to revise it. :)


Best wishes,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Re: kbackup_18.04.0-1_amd64.changes REJECTED

2018-05-04 Thread Chris Lamb
Hi Pino,

> It'd be *so* much more useful if, instead of rejecting a package just
> because of this, it'd be accepted with a RC bug for the issue.

Not quite sure why I've been added to the CC here. :)

I don't have anything deep — or even useful! -- to add here except
that when I am processing NEW I tend to weigh the decision to
outright REJECT versus ACCEPT-with-RC-bug a little differently
depending on whether the source package is entirely new.

Whether that justifies this particular case is a different question
that I will leave to Thorsten. :)


Best wishes,

-- 
      ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#894476: RCC: provide option to encode EPOCH timestamp

2018-04-03 Thread Chris Lamb
Hi Thomas,

> Maybe the solution is then not in rcc but in whatever generate the files 
> that the qrc that rcc processes refer to. For instance in the case of 
> ultracopier lrelease could have a mean if generating .qm files with the 
> same modified timestamp as the .ts file it processes

That sounds workable..


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#894476: RCC: provide option to encode EPOCH timestamp

2018-04-03 Thread Chris Lamb
Hi Sune,

> "normal circumstances" is rcc on a source file, as opposed
> to an autogenerated file

I'm not /entirely/ sure what the difference is as I'm not in the
Qt/RCC world too often these days (alas !), but why just not use
SOURCE_DATE_EPOCH *iff* it is exported?

Normal systems simply do not have this envvar set, so there is really
no danger of it leaking elsewhere or causing unintended side-effects.

It would also have the benefit of not having to differentiate between
the two... :)


Best wishes,

-- 
      ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#894476: RCC: provide option to encode EPOCH timestamp

2018-04-03 Thread Chris Lamb
Hi Sune!

> I don't think honouring SOURCE_DATE_EPOCH is the right idea under normal 
> circumstances

Can you elaborate on what you mean by "normal circumstances"? :)

How about e use S_D_E if it is setup/exported, otherwise use the mtime
of the file as before?

(This is the pattern/logic used extensively elsewhere in toolchains for
this very exact purpose; it would not be unique to rcc)


Best wishes,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#894476: RCC: provide option to encode EPOCH timestamp

2018-03-31 Thread Chris Lamb
Hi,

> While investigating ultracopier's lack of build reproducibility, I found
> out that rcc encodes the timestamp of the files the QRC file being
> compiled references

Indeed, we've been tracking this for a while in the Reproducible Builds
project [0] but, without a patch, we did not wish to bother you with a
bug. :)

It is affecting at least 4 or 5 other packages. I had previously tracked
it down to [1].

Regarding the solution, I think I would actually prefer to see something
consuming SOURCE_DATE_EPOCH[1] rather than adding an option to set a
specific timestamp.

  [0] https://reproducible-builds.org/
  [1] 
https://sources.debian.org/src/qtbase-opensource-src/5.9.2+dfsg-12/src/tools/rcc/rcc.cpp/#L207-L212
  [2] https://reproducible-builds.org/specs/source-date-epoch/


Best wishes,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#892203: kwayland: Implement zwp_linux_dmabuf_v1

2018-03-06 Thread Chris Lamb
severity 892203 wishlist
severity 892204 wishlist
thanks

Downgrading these to wishlist; "important" is generally reserved for really
major bugs.  :)


Best wishes,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#889808: plasma-discover: Incomplete debian/copyright?

2018-02-07 Thread Chris Lamb
Source: plasma-discover
Version: 5.12.0-1
Severity: serious
Justication: Policy 12.5
X-Debbugs-CC: Matthias Klumpp 

Hi,

I just ACCEPTed plasma-discover from NEW but noticed it was missing 
attribution in debian/copyright for at least Jan Grulich, Kai Uwe
Broulik, etc

(This is not exhaustive so please check over the entire package 
carefully and address these on your next upload.)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#875847: qttools5-dev-tools: .qhc files not reproducible

2017-09-15 Thread Chris Lamb
Hi Laurent,

> It seems that qcollectiongenerator is generating files that are
> containing the creation time of the qhc file (LastRegisterTime and
> CreationTime), making them non-reproducible.

Curiously, I don't see that when I build locally. But I *do* see:

  - The buildpath being leaked into ".index" files. This is fixed with
the attached patch.

  - Some variation in the binary, not looked into.

Hope that helps a little.


Best wishes,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/reproducible_build.patch   1970-01-01 01:00:00.0 
+0100
--- b/debian/patches/reproducible_build.patch   2017-09-15 15:52:48.740202062 
+0100
@@ -0,0 +1,17 @@
+Description: Make the build reproducible
+Author: Chris Lamb 
+Last-Update: 2017-09-15
+
+--- qttools-opensource-src-5.9.1.orig/src/qdoc/qdocindexfiles.cpp
 qttools-opensource-src-5.9.1/src/qdoc/qdocindexfiles.cpp
+@@ -995,10 +995,6 @@ bool QDocIndexFiles::generateIndexSectio
+ const Location& declLocation = node->declLocation();
+ if (!declLocation.fileName().isEmpty())
+ writer.writeAttribute("location", declLocation.fileName());
+-if (!declLocation.filePath().isEmpty()) {
+-writer.writeAttribute("filepath", declLocation.filePath());
+-writer.writeAttribute("lineno", 
QString("%1").arg(declLocation.lineNo()));
+-}
+ 
+ if (!node->since().isEmpty()) {
+ writer.writeAttribute("since", node->since());
--- a/debian/patches/series 1970-01-01 01:00:00.0 +0100
--- b/debian/patches/series 2017-09-15 15:29:30.377680344 +0100
@@ -0,0 +1 @@
+reproducible_build.patch


Bug#873918: charmtimetracker: Missing binary dependency on libqt5sql5-sqlite

2017-09-01 Thread Chris Lamb
Package: charmtimetracker
Version: 1.11.4-1
Severity: grave
Tags: patch
Justification: Renders package unusable

Hi,

charmtimetracker appears to be missing a binary dependency on
libqt5sql5-sqlite. Installing libqt5sql5-sqlite manually moves
past this.

  $ charmtimetracker
  QSqlDatabase: QSQLITE driver not loaded
  QSqlDatabase: available drivers: 

Screenshot of UI error:

  https://i.imgur.com/1RLOZ4L.jpg


Patch attached.



-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.12.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages charmtimetracker depends on:
ii  libc62.24-17
ii  libgcc1  1:7.2.0-1
ii  libqt5core5a 5.9.1+dfsg-9
ii  libqt5dbus5  5.9.1+dfsg-9
ii  libqt5gui5   5.9.1+dfsg-9
ii  libqt5keychain1  0.7.0-3
ii  libqt5network5   5.9.1+dfsg-9
ii  libqt5printsupport5  5.9.1+dfsg-9
ii  libqt5script55.9.1+dfsg-2
ii  libqt5sql5   5.9.1+dfsg-9
ii  libqt5widgets5   5.9.1+dfsg-9
ii  libqt5xml5   5.9.1+dfsg-9
ii  libstdc++6   7.2.0-1
ii  libxcb-screensaver0  1.12-1
ii  libxcb1  1.12-1

charmtimetracker recommends no packages.

charmtimetracker suggests no packages.

-- no debconf information


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/debian/control b/debian/control
index 32ff76f..ebdba87 100644
--- a/debian/control
+++ b/debian/control
@@ -20,7 +20,7 @@ Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-kde/kde-extras/charmtimetracker
 
 Package: charmtimetracker
 Architecture: any
-Depends: ${misc:Depends}, ${shlibs:Depends}
+Depends: ${misc:Depends}, ${shlibs:Depends}, libqt5sql5-sqlite
 Description: Cross-Platform Time Tracker
  It is built around two major ideas - tasks and events.
  Tasks are the things time is spend on, repeatedly. Tasks


Bug#873917: charmtimetracker: Please drop "Cross-Platform" from package description

2017-09-01 Thread Chris Lamb
Package: charmtimetracker
Version: 1.11.4-1
Severity: wishlist

Hi,

The package description says "Cross-Platform" which means Windows,
Mac & Linux according to the homepage.

Given the context, it seems sensible to drop the "cross-platform"
bit given that, well, we are producing a GNU/Linux distribution. :)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Wheezy update of kdepim?

2017-06-17 Thread Chris Lamb
Dear maintainer(s),

The Debian LTS team would like to fix the security issues which are
currently open in the Wheezy version of kdepim:
https://security-tracker.debian.org/tracker/source-package/kdepim

Would you like to take care of this yourself?

If yes, please follow the workflow we have defined here:
https://wiki.debian.org/LTS/Development

If that workflow is a burden to you, feel free to just prepare an
updated source package and send it to debian-...@lists.debian.org
(via a debdiff, or with an URL pointing to the source package,
or even with a pointer to your packaging repository), and the members
of the LTS team will take care of the rest. Indicate clearly whether you
have tested the updated package or not.

If you don't want to take care of this update, it's not a problem, we
will do our best with your package. Just let us know whether you would
like to review and/or test the updated package before it gets released.

You can also opt-out from receiving future similar emails in your
answer and then the LTS Team will take care of kdepim updates
for the LTS releases.

Thank you very much.

Chris Lamb,
  on behalf of the Debian LTS team.

PS: A member of the LTS team might start working on this update at
any point in time. You can verify whether someone is registered
on this update in this file:
https://anonscm.debian.org/viewvc/secure-testing/data/dla-needed.txt?view=markup


Regards,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#846252: kf5-kdepim-apps-libs: FTBFS: recipe for target 'kaddressbookgrantlee/src/CMakeFiles/KF5KaddressbookGrantlee.dir/all' failed

2016-12-12 Thread Chris Lamb
Maximiliano Curia wrote:

> This should have been fixed with the upload of gpgmepp 16.04.3-2, but since 
> we 
> are planning to remove gpgmepp in favor of the c++ interfaces provided in 
> gpgme1.0 for stretch, we still need to work on this package.

Makes sense…

> Control: severity -1 important

…but I don't understand this? :)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#846252: kf5-kdepim-apps-libs: FTBFS: recipe for target 'kaddressbookgrantlee/src/CMakeFiles/KF5KaddressbookGrantlee.dir/all' failed

2016-11-29 Thread Chris Lamb
G.so.5.2.2 
CMakeFiles/KF5ComposerEditorNG.dir/composereditor.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/composerview.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/link/composerlinkdialog.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/link/composeranchordialog.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/private/composerview_p.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/pagecolor/pagecolorbackgrounddialog.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/pagecolor/pagecolorbackgroundwidget.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/extendattributes/extendattributesdialog.cpp.o
 
CMakeFiles/KF5ComposerEditorNG.dir/extendattributes/extendattributesbutton.cpp.o
 
CMakeFiles/KF5ComposerEditorNG.dir/extendattributes/extendattributeswidget.cpp.o
 
CMakeFiles/KF5ComposerEditorNG.dir/extendattributes/extendattributesutils.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/utils/composereditorutils.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/image/composerimagedialog.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/image/composerimageresizewidget.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/table/composertabledialog.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/table/composertableresizewidget.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/table/composertableformatdialog.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/table/composertablecellformatdialog.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/table/composertableactionmenu.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/table/composercellsizewidget.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/image/composerimageresizetooltip.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/list/composerlistdialog.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/helper/tablehelper.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/helper/listhelper.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/widgets/domtreewidget.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/widgets/findreplacebar.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/globalsetting_composereditorng.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/composereditorng_debug.cpp.o 
CMakeFiles/KF5ComposerEditorNG.dir/KF5ComposerEditorNG_automoc.cpp.o 
/usr/lib/x86_64-linux-gnu/libKF5WebKit.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5PimCommon.so.5.2.2 
/usr/lib/x86_64-linux-gnu/libKF5PimTextEdit.so.5.2.2 
/usr/lib/x86_64-linux-gnu/libKF5AkonadiContact.so.5.2.2 
/usr/lib/x86_64-linux-gnu/libQt5WebKitWidgets.so.5.7.1 
/usr/lib/x86_64-linux-gnu/libQt5WebKit.so.5.7.1 
/usr/lib/x86_64-linux-gnu/libKF5AkonadiWidgets.so.5.2.2 
/usr/lib/x86_64-linux-gnu/libKF5AkonadiCore.so.5.2.2 
/usr/lib/x86_64-linux-gnu/libKF5ItemModels.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5Contacts.so.5.2.2 
/usr/lib/x86_64-linux-gnu/libKF5KIOWidgets.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5KIOCore.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5JobWidgets.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5XmlGui.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libQt5PrintSupport.so.5.7.1 
/usr/lib/x86_64-linux-gnu/libKF5TextWidgets.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5Completion.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5Service.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5SonnetUi.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5SonnetCore.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5ConfigWidgets.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5ConfigGui.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5Auth.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libQt5DBus.so.5.7.1 
/usr/lib/x86_64-linux-gnu/libKF5ConfigCore.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5CoreAddons.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libKF5Codecs.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.7.1 
/usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.7.1 
/usr/lib/x86_64-linux-gnu/libQt5Network.so.5.7.1 
/usr/lib/x86_64-linux-gnu/libQt5Xml.so.5.7.1 
/usr/lib/x86_64-linux-gnu/libKF5I18n.so.5.28.0 
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5.7.1 
  cd «BUILDDIR»/obj-x86_64-linux-gnu/composereditor-ng/src && /usr/bin/cmake -E 
cmake_symlink_library libKF5ComposerEditorNG.so.5.2.2 
libKF5ComposerEditorNG.so.5 libKF5ComposerEditorNG.so
  make[4]: Leaving directory '«BUILDDIR»/obj-x86_64-linux-gnu'
  [ 95%] Built target KF5ComposerEditorNG
  make[3]: Leaving directory '«BUILDDIR»/obj-x86_64-linux-gnu'
  Makefile:141: recipe for target 'all' failed
  make[2]: *** [all] Error 2
  make[2]: Leaving directory '«BUILDDIR»/obj-x86_64-linux-gnu'
  dh_auto_build: make -j9 returned exit code 2
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:97: recipe for target 
'pre_build_dh_auto_build' failed
  make[1]: *** [pre_build_dh_auto_build] Error 2
  make[1]: Leaving directory '«BUILDDIR»'
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:112: recipe for target 
'debian/dhmk_build' failed
  make: *** [debian/dhmk_build] Error 2
  dpkg-buildpackage: error: debian/rules build gave error exit status 2

  […]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kf5-kdepim-apps-libs.4:16.04.2-2.unstable.amd64.log.txt.gz
Description: Binary data


Bug#840067: kscreen: FTBFS: debug.h:24:25: fatal error: kscreen/log.h: No such file or directory

2016-10-07 Thread Chris Lamb
Source: kscreen
Version: 4:5.8.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kscreen fails to build from source in unstable/amd64:

  [..]

  cd /home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 && 
/usr/bin/msgfmt -o 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu/nl-kscreen.gmo
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/po/nl/kscreen.po
  [ 51%] Built target pofiles_5
  make -f CMakeFiles/pofiles_36.dir/build.make CMakeFiles/pofiles_36.dir/depend
  [ 52%] Generating ro-kcm_displayconfiguration.gmo
  make[4]: Entering directory 
'/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu'
  cd 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu
 && /usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu/CMakeFiles/pofiles_36.dir/DependInfo.cmake
 --color=
  [ 51%] Built target pofiles_21
  [ 52%] Generating ru-plasma_applet_org.kde.plasma.kscreen.gmo
  cd /home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 && 
/usr/bin/msgfmt -o 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu/ru-plasma_applet_org.kde.plasma.kscreen.gmo
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/po/ru/plasma_applet_org.kde.plasma.kscreen.po
  cd /home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 && 
/usr/bin/msgfmt -o 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu/ro-kcm_displayconfiguration.gmo
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/po/ro/kcm_displayconfiguration.po
  make -f CMakeFiles/pofiles_37.dir/build.make CMakeFiles/pofiles_37.dir/depend
  [ 53%] Generating pl-kscreen.gmo
  make[4]: Entering directory 
'/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu'
  cd 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu
 && /usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu/CMakeFiles/pofiles_37.dir/DependInfo.cmake
 --color=
  cd /home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 && 
/usr/bin/msgfmt -o 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu/pl-kscreen.gmo
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/po/pl/kscreen.po
  make[4]: Leaving directory 
'/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu'
  [ 54%] Generating nb-plasma_applet_org.kde.plasma.kscreen.gmo
  [ 54%] Generating nn-plasma_applet_org.kde.plasma.kscreen.gmo
  cd /home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 && 
/usr/bin/msgfmt -o 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu/nb-plasma_applet_org.kde.plasma.kscreen.gmo
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/po/nb/plasma_applet_org.kde.plasma.kscreen.po
  cd /home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0 && 
/usr/bin/msgfmt -o 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu/nn-plasma_applet_org.kde.plasma.kscreen.gmo
 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/po/nn/plasma_applet_org.kde.plasma.kscreen.po
  [ 54%] Built target pofiles_30
  make -f CMakeFiles/pofiles_40.dir/build.make CMakeFiles/pofiles_40.dir/depend
  Scanning dependencies of target pofiles_36
  make[4]: Leaving directory 
'/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu'
  make -f CMakeFiles/pofiles_36.dir/build.make CMakeFiles/pofiles_36.dir/build
  make[4]: Entering directory 
'/home/lamby/temp/cdt.20161007225500.e6BH3mcF47.db.kscreen/kscreen-5.8.0/obj-x86_64-linux-gnu'
  cd 
/home/lamby/temp/cdt.20161007225500.e6BH3mcF4

Bug#838734: [plasma-discover] plasma-discover uninstalls packages during upgrades without asking for confirmation

2016-09-24 Thread Chris Lamb
Ximo BaldĂł i Soriano wrote:

> So... The ongoing Perl migration causes plasma-discover (or its backend) to 
> bypass user's decision to deinstall 347 packages from his system?

There is no bypassing -- your package manager would have declared its
intention to remove all those packages.


Regards,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#838738: print-manager: FTBFS: KCupsRequest.cpp:284:75: error: 'cupsGetPPD2' was not declared in this scope

2016-09-24 Thread Chris Lamb
Source: print-manager
Version: 4:16.04.1-2
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

print-manager fails to build from source in unstable/amd64:

  [..]

  DISPLAY=:0
  DOCKER_IMAGE=lamby-debian-sid
  DEB_BUILD_OPTIONS=parallel=9
  PIP_DOWNLOAD_CACHE=/home/lamby/.cache/pip
  HOME=/home/lamby
  LOGNAME=lamby
  SHLVL=1
  
PWD=/home/lamby/temp/cdt.20160924085609.eUOd4xr1Wj.db.print-manager/print-manager-16.04.1
  OLDPWD=/home/lamby/temp/cdt.20160924085609.eUOd4xr1Wj.db.print-manager
  GPG_TTY=/dev/console
  QUILT_PATCHES=debian/patches
  QUILT_NO_DIFF_INDEX=1
  QUILT_REFRESH_ARGS=-p ab --no-timestamps --no-index
  DEBEMAIL=la...@debian.org
  DEBFULLNAME=Chris Lamb
  EDITOR=vim
  LESS=-cgiFx4M
  GPG_KEY=1E953E27D4311E58
  BLASTER=A220 I5 D1 H5 P330 T6
  _=/usr/bin/env
  
  
**
  ** Building print-manager 16.04.1-2 on amd64  
  **
  
**
  
   dpkg-buildpackage -rfakeroot -D -us -uc -b
  dpkg-buildpackage: info: source package print-manager
  dpkg-buildpackage: info: source version 4:16.04.1-2
  dpkg-buildpackage: info: source distribution unstable
  dpkg-buildpackage: info: source changed by Maximiliano Curia 
   dpkg-source --before-build print-manager-16.04.1
  dpkg-buildpackage: info: host architecture amd64
   fakeroot debian/rules clean
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.pl 
--with=kf5,pkgkde-symbolshelper 
  dpkg-buildflags --export=make > debian/dhmk_env.mk
  /usr/bin/make -f debian/rules dhmk_run_clean_commands DHMK_TARGET="clean"
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160924085609.eUOd4xr1Wj.db.print-manager/print-manager-16.04.1'
  dh_testdir  
  dh_auto_clean '--buildsystem=kf5' --parallel  
  dh_clean  
  rm -rf debian/man/out
  rmdir debian/man
  rmdir: failed to remove 'debian/man': No such file or directory
  /usr/share/pkg-kde-tools/qt-kde-team/3/debian-qt-kde.mk:73: recipe for target 
'cleanup_manpages' failed
  make[1]: [cleanup_manpages] Error 1 (ignored)
  rm -f debian/stamp-man-pages
  rm -f debian/dhmk-install-list debian/dhmk-package-list
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160924085609.eUOd4xr1Wj.db.print-manager/print-manager-16.04.1'
  rm -f debian/dhmk_rules.mk debian/dhmk_env.mk debian/dhmk_configure 
debian/dhmk_build-indep debian/dhmk_build-arch debian/dhmk_build
  # "clean" target is done
  -- SUCCESS making standard target 'clean'.
   debian/rules build
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.pl 
--with=kf5,pkgkde-symbolshelper 
  dpkg-buildflags --export=make > debian/dhmk_env.mk
  /usr/bin/make -f debian/rules dhmk_run_configure_commands 
DHMK_TARGET="configure"
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160924085609.eUOd4xr1Wj.db.print-manager/print-manager-16.04.1'
  dh_testdir  
  dh_auto_configure '--buildsystem=kf5' --parallel  
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON 
-DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc 
-DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_BUILD_TYPE=Debian 
-DCMAKE_INSTALL_SYSCONFDIR=/etc -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
  -- The C compiler identification is GNU 6.2.0
  -- The CXX compiler identification is GNU 6.2.0
  -- Check for working C compiler: /usr/bin/cc
  -- Check for working C compiler: /usr/bin/cc -- works
  -- Detecting C compiler ABI info
  -- Detecting C compiler ABI info - done
  -- Detecting C compile features
  -- Detecting C compile features - done
  -- Check for working CXX compiler: /usr/bin/c++
  -- Check for working CXX compiler: /usr/bin/c++ -- works
  -- Detecting CXX compiler ABI info
  -- Detecting CXX compiler ABI info - done
  -- Detecting CXX compile features
  -- Detecting CXX compile features - done
  -- Looking for __GLIBC__
  -- Looking for __GLIBC__ - found
  -- Performing Test _OFFT_IS_64BIT
  -- Performing Test _OFFT_IS_64BIT - Success
  -- Found CUPS: /usr/lib/x86_64-linux-gnu/libcups.so
  -- Found KF5Config: 
/usr/lib/x86_64-linux-gnu/cmake/KF5Config/KF5ConfigConfig.cmake (found version 
"5.25.0") 
  -- Found KF5ConfigWidgets: 
/usr/lib/x86_64-linux-gnu/cmake/KF5ConfigWidgets/KF5ConfigWidgetsConfig.cmake 
(found version "5.25.0") 
  -- Found KF5CoreAddons: 
/usr/lib/x86_64-linux-gnu/cmake/KF5CoreAddons/KF5CoreAddonsConfig.cmake (found 
version "5.25.0") 
  -- Found KF5DBusAddons: 
/usr/lib/x86_64-linux-gnu/cmake/KF5DBusAddons/KF5DBusAddonsConfig.cmake (found 
version "5.25.0") 
  -- Found KF5IconThemes: 
/usr/lib/x86_64-linux-gnu/cmake/KF5IconThemes/KF5IconThemesConfig.cmake (found 
version "

Bug#835399: kiriki: FTBFS: dh_install: Cannot find (any matches for) "usr/share/appdata/org.kde.kiriki.appdata.xml" (tried in "." and "debian/tmp")

2016-08-25 Thread Chris Lamb
Source: kiriki
Version: 4:16.04.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kiriki fails to build from source in unstable/amd64:

  [..]

  dpkg-buildpackage: info: host architecture amd64
   fakeroot debian/rules clean
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.pl 
--with=kf5,pkgkde-symbolshelper 
  dpkg-buildflags --export=make > debian/dhmk_env.mk
  /usr/bin/make -f debian/rules dhmk_run_clean_commands DHMK_TARGET="clean"
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160825112032.UrxwW8cDvF.db.kiriki/kiriki-16.04.0'
  dh_testdir  
  dh_auto_clean '--buildsystem=kf5' --parallel  
  dh_clean  
  rm -rf debian/man/out
  rmdir debian/man
  rmdir: failed to remove 'debian/man': Directory not empty
  /usr/share/pkg-kde-tools/qt-kde-team/3/debian-qt-kde.mk:73: recipe for target 
'cleanup_manpages' failed
  make[1]: [cleanup_manpages] Error 1 (ignored)
  rm -f debian/stamp-man-pages
  rm -f debian/dhmk-install-list debian/dhmk-package-list
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160825112032.UrxwW8cDvF.db.kiriki/kiriki-16.04.0'
  rm -f debian/dhmk_rules.mk debian/dhmk_env.mk debian/dhmk_configure 
debian/dhmk_build-indep debian/dhmk_build-arch debian/dhmk_build
  # "clean" target is done
  -- SUCCESS making standard target 'clean'.
   debian/rules build
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.pl 
--with=kf5,pkgkde-symbolshelper 
  dpkg-buildflags --export=make > debian/dhmk_env.mk
  /usr/bin/make -f debian/rules dhmk_run_configure_commands 
DHMK_TARGET="configure"
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160825112032.UrxwW8cDvF.db.kiriki/kiriki-16.04.0'
  dh_testdir  
  # Running override target (override_dh_auto_configure)
  test -z "`ls debian/*.debhelper.log 2>/dev/null`" || sed -i 
'/^override_dh_auto_configure[[:space:]]/d' debian/*.debhelper.log
  /usr/bin/make -f debian/rules override_dh_auto_configure 
DH_INTERNAL_OVERRIDE="dh_auto_configure"  
  make[2]: Entering directory 
'/home/lamby/temp/cdt.20160825112032.UrxwW8cDvF.db.kiriki/kiriki-16.04.0'
  dh_auto_configure '--buildsystem=kf5' --parallel  -- 
-DBIN_INSTALL_DIR=/usr/games
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON 
-DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc 
-DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_BUILD_TYPE=Debian 
-DCMAKE_INSTALL_SYSCONFDIR=/etc -DKDE_INSTALL_USE_QT_SYS_PATHS=ON 
-DBIN_INSTALL_DIR=/usr/games
  -- The C compiler identification is GNU 6.2.0
  -- The CXX compiler identification is GNU 6.2.0
  -- Check for working C compiler: /usr/bin/cc
  -- Check for working C compiler: /usr/bin/cc -- works
  -- Detecting C compiler ABI info
  -- Detecting C compiler ABI info - done
  -- Detecting C compile features
  -- Detecting C compile features - done
  -- Check for working CXX compiler: /usr/bin/c++
  -- Check for working CXX compiler: /usr/bin/c++ -- works
  -- Detecting CXX compiler ABI info
  -- Detecting CXX compiler ABI info - done
  -- Detecting CXX compile features
  -- Detecting CXX compile features - done
  -- Found KF5CoreAddons: 
/usr/lib/x86_64-linux-gnu/cmake/KF5CoreAddons/KF5CoreAddonsConfig.cmake (found 
version "5.25.0") 
  -- Found KF5Config: 
/usr/lib/x86_64-linux-gnu/cmake/KF5Config/KF5ConfigConfig.cmake (found version 
"5.25.0") 
  -- Found KF5Crash: 
/usr/lib/x86_64-linux-gnu/cmake/KF5Crash/KF5CrashConfig.cmake (found version 
"5.25.0") 
  -- Found KF5DBusAddons: 
/usr/lib/x86_64-linux-gnu/cmake/KF5DBusAddons/KF5DBusAddonsConfig.cmake (found 
version "5.25.0") 
  -- Found KF5DocTools: 
/usr/lib/x86_64-linux-gnu/cmake/KF5DocTools/KF5DocToolsConfig.cmake (found 
version "5.25.0") 
  -- Found Gettext: /usr/bin/msgmerge (found version "0.19.8.1") 
  -- Found PythonInterp: /usr/bin/python (found version "2.7.12") 
  -- Found KF5I18n: /usr/lib/x86_64-linux-gnu/cmake/KF5I18n/KF5I18nConfig.cmake 
(found version "5.25.0") 
  -- Found KF5ConfigWidgets: 
/usr/lib/x86_64-linux-gnu/cmake/KF5ConfigWidgets/KF5ConfigWidgetsConfig.cmake 
(found version "5.25.0") 
  -- Found KF5IconThemes: 
/usr/lib/x86_64-linux-gnu/cmake/KF5IconThemes/KF5IconThemesConfig.cmake (found 
version "5.25.0") 
  -- Found KF5XmlGui: 
/usr/lib/x86_64-linux-gnu/cmake/KF5XmlGui/KF5XmlGuiConfig.cmake (found version 
"5.25.0") 
  -- Found KF5: success (found version "5.25.0") found components:  CoreAddons 
Config Crash DBusAddons DocTools I18n ConfigWidgets IconThemes XmlGui DocTools 
  CMake Deprecation Warning at 
/usr/share/ECM/kde-modules/KDEInstallDirs.cmake:311 (message):
BIN_INSTALL_DIR is deprecated, use KDE_INSTALL_BINDIR instead.
  Call Stack (most recent call first):
/usr/share/ECM/kde-modules/KDEInstallDirs.cmake:399 (_define_relative)
CMakeLists.txt:29 (include)
  
  
  -- Looking for __GLIBC__
  -- Looking for __GLIBC__ - found
  -- Performing Test _OFFT_IS_64BIT
  -- Performing Test _OFF

Bug#835282: rocs: FTBFS: dh_install: Cannot find (any matches for) "usr/share/appdata/org.kde.rocs.appdata.xml" (tried in "." and "debian/tmp")

2016-08-24 Thread Chris Lamb
-actions-rocsdelete.png
  -- Installing: 
/home/lamby/temp/cdt.20160824083942.KtQYasuoCx.db.rocs/rocs-16.04.1/debian/tmp/usr/share/doc/HTML/en/rocs/hi22-actions-rocsedge.png
  -- Installing: 
/home/lamby/temp/cdt.20160824083942.KtQYasuoCx.db.rocs/rocs-16.04.1/debian/tmp/usr/share/doc/HTML/en/rocs/hi22-actions-rocsnode.png
  -- Installing: 
/home/lamby/temp/cdt.20160824083942.KtQYasuoCx.db.rocs/rocs-16.04.1/debian/tmp/usr/share/doc/HTML/en/rocs/hi22-ac

Bug#835053: kxmlgui: please make the build reproducible

2016-08-21 Thread Chris Lamb
> The value is (at least was until some time ago) added in bug reports in
> bugzilla, and that helps to know more about the environment in which
> a bug happens.

Mm, except that in the majority of cases it's going to tell you the uname
of the Debian buildd that made the package, not really the environment
in which the bug actually occurred.


Regards,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#835053: kxmlgui: please make the build reproducible

2016-08-21 Thread Chris Lamb
Source: kxmlgui
Version: 5.25.0-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: uname
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], I noticed
that kxmlgui could not be built reproducibly.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/patches/reproducible-build.patch   1970-01-01 01:00:00.0 
+0100
--- b/debian/patches/reproducible-build.patch   2016-08-21 18:19:22.645111083 
+0100
@@ -0,0 +1,13 @@
+Description: Make the build reproducible
+Author: Chris Lamb 
+Last-Update: 2016-08-21
+
+--- kxmlgui-5.25.0.orig/src/config-xmlgui.h.cmake
 kxmlgui-5.25.0/src/config-xmlgui.h.cmake
+@@ -1,5 +1,5 @@
+ #define XMLGUI_DISTRIBUTION_TEXT "${XMLGUI_DISTRIBUTION_TEXT}"
+-#define XMLGUI_COMPILING_OS "${CMAKE_SYSTEM}"
++#define XMLGUI_COMPILING_OS "Generic"
+ #define XMLGUI_COMPILER_VERSION "${XMLGUI_COMPILER_VERSION}"
+ 
+ #define CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}"
--- a/debian/patches/series 1970-01-01 01:00:00.0 +0100
--- b/debian/patches/series 2016-08-21 18:19:19.885060733 +0100
@@ -0,0 +1 @@
+reproducible-build.patch


Wheezy update of kde4libs?

2016-07-18 Thread Chris Lamb
Hello dear maintainer(s),

the Debian LTS team would like to fix the security issues which are
currently open in the Wheezy version of kde4libs:
https://security-tracker.debian.org/tracker/CVE-2016-6232

Would you like to take care of this yourself?

If yes, please follow the workflow we have defined here:
https://wiki.debian.org/LTS/Development

If that workflow is a burden to you, feel free to just prepare an
updated source package and send it to debian-...@lists.debian.org
(via a debdiff, or with an URL pointing to the source package,
or even with a pointer to your packaging repository), and the members
of the LTS team will take care of the rest. Indicate clearly whether you
have tested the updated package or not.

If you don't want to take care of this update, it's not a problem, we
will do our best with your package. Just let us know whether you would
like to review and/or test the updated package before it gets released.

Thank you very much.

Chris Lamb,
  on behalf of the Debian LTS team.

PS: A member of the LTS team might start working on this update at
any point in time. You can verify whether someone is registered
on this update in this file:
https://anonscm.debian.org/viewvc/secure-testing/data/dla-needed.txt?view=markup


Regards,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#828881: grantlee5: FTBFS: "Error: i18np_var tag takes at least four arguments, line 0, "

2016-06-28 Thread Chris Lamb
5.0.0/obj-x86_64-linux-gnu'
  dh_auto_test: make -j9 test ARGS+=-j9 returned exit code 2
  debian/rules:18: recipe for target 'override_dh_auto_test' failed
  make[1]: *** [override_dh_auto_test] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160628205618.8aYpoeLb3r.grantlee5/grantlee5-5.0.0'
  debian/rules:12: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


grantlee5.5.0.0-3.unstable.amd64.log.txt.gz
Description: Binary data


Bug#828878: charmtimetracker: FTBFS: qglobal.h:1087:4: error: #error "You must build your code with position independent code if Qt was built with -reduce-relocations. "

2016-06-28 Thread Chris Lamb
Source: charmtimetracker
Version: 1.10.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

charmtimetracker fails to build from source in unstable/amd64:

  [..]

  [ 21%] Built target CharmApplication_automoc
  make -f Charm/CMakeFiles/CharmApplication.dir/build.make 
Charm/CMakeFiles/CharmApplication.dir/depend
  make[3]: Entering directory 
'/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu'
  [ 21%] Generating ui_TaskEditor.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm
 && /usr/lib/x86_64-linux-gnu/qt5/bin/uic -o 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm/ui_TaskEditor.h
 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/Charm/Widgets/TaskEditor.ui
  [ 21%] Generating ui_CharmPreferences.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm
 && /usr/lib/x86_64-linux-gnu/qt5/bin/uic -o 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm/ui_CharmPreferences.h
 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/Charm/Widgets/CharmPreferences.ui
  [ 22%] Generating ui_TaskIdDialog.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm
 && /usr/lib/x86_64-linux-gnu/qt5/bin/uic -o 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm/ui_TaskIdDialog.h
 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/Charm/Widgets/TaskIdDialog.ui
  [ 22%] Generating ui_FindAndReplaceEventsDialog.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm
 && /usr/lib/x86_64-linux-gnu/qt5/bin/uic -o 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm/ui_FindAndReplaceEventsDialog.h
 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/Charm/Widgets/FindAndReplaceEventsDialog.ui
  [ 23%] Generating ui_ConfigurationDialog.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm
 && /usr/lib/x86_64-linux-gnu/qt5/bin/uic -o 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm/ui_ConfigurationDialog.h
 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/Charm/Widgets/ConfigurationDialog.ui
  [ 24%] Generating ui_CommentEditorPopup.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm
 && /usr/lib/x86_64-linux-gnu/qt5/bin/uic -o 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm/ui_CommentEditorPopup.h
 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/Charm/Widgets/CommentEditorPopup.ui
  [ 25%] Generating ui_CharmAboutDialog.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm
 && /usr/lib/x86_64-linux-gnu/qt5/bin/uic -o 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm/ui_CharmAboutDialog.h
 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/Charm/Widgets/CharmAboutDialog.ui
  [ 26%] Generating ui_EnterVacationDialog.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm
 && /usr/lib/x86_64-linux-gnu/qt5/bin/uic -o 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm/ui_EnterVacationDialog.h
 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/Charm/Widgets/EnterVacationDialog.ui
  [ 26%] Generating ui_CharmNewReleaseDialog.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm
 && /usr/lib/x86_64-linux-gnu/qt5/bin/uic -o 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/obj-x86_64-linux-gnu/Charm/ui_CharmNewReleaseDialog.h
 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/charmtimetracker-1.10.0/Charm/Widgets/CharmNewReleaseDialog.ui
  [ 27%] Generating ui_IdleCorrectionDialog.h
  cd 
/home/lamby/temp/cdt.20160628205159.GmNhAZlqZC.charmtimetracker/ch

Bug#828114: kdewebdev: FTBFS: src/tidy/tidyx.h:52:20: fatal error: buffio.h: No such file or directory

2016-06-25 Thread Chris Lamb
Source: kdewebdev
Version: 4:15.08.3-2
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kdewebdev fails to build from source in unstable/amd64:

  [..]

   KNEWSTUFF_EXPORT_DEPRECATED KAction * standardAction(const QString &what,
 ^
  
/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/klinkstatus/src/actionmanager.cpp:
 At global scope:
  
/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/klinkstatus/src/actionmanager.cpp:309:54:
 warning: unused parameter 'sessionWidget' [-Wunused-parameter]
   void ActionManager::initSessionWidget(SessionWidget* sessionWidget)
^
  [ 56%] Building CXX object 
kfilereplace/CMakeFiles/kfilereplacepart.dir/commandengine.o
  cd 
/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/obj-x86_64-linux-gnu/kfilereplace
 && /usr/bin/c++   -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=56 
-DKDE_DEPRECATED_WARNINGS -DMAKE_KFILEREPLACEPART_LIB -DQT3_SUPPORT 
-DQT3_SUPPORT_WARNINGS -DQT_NO_CAST_TO_ASCII -DQT_NO_STL -D_BSD_SOURCE 
-D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/obj-x86_64-linux-gnu/kfilereplace
 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/kfilereplace
 -I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/obj-x86_64-linux-gnu
 -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns 
-I/usr/include/qt4/QtXml -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest 
-I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql 
-I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript 
-I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp 
-I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative 
-I/usr/include/qt4/QtDBus -I/usr/include/qt4/Qt3Support 
-I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt 
-I/usr/share/qt4/mkspecs/default -I/usr/include/qt4  -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2  -Wnon-virtual-dtor 
-Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith 
-Wformat-security -fno-exceptions -DQT_NO_EXCEPTIONS -fno-check-new -fno-common 
-Woverloaded-virtual -fno-threadsafe-statics -fvisibility=hidden 
-Werror=return-type -fvisibility-inlines-hidden -DNDEBUG -DQT_NO_DEBUG -fPIC   
-D_GNU_SOURCE -D_LARGEFILE64_SOURCE -o 
CMakeFiles/kfilereplacepart.dir/commandengine.o -c 
/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/kfilereplace/commandengine.cpp
  [ 57%] Building CXX object 
klinkstatus/src/CMakeFiles/klinkstatuscommon.dir/automationconfig.o
  cd 
/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/obj-x86_64-linux-gnu/klinkstatus/src
 && /usr/bin/c++   -DKDE4_CMAKE_TOPLEVEL_DIR_LENGTH=56 
-DKDE_DEPRECATED_WARNINGS -DMAKE_KLINKSTATUSCOMMON_LIB -DQT_NO_CAST_TO_ASCII 
-DQT_NO_STL -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_REENTRANT -D_XOPEN_SOURCE=500 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/obj-x86_64-linux-gnu/klinkstatus/src
 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/klinkstatus/src
 -I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/obj-x86_64-linux-gnu
 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/klinkstatus/src/ui
 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/klinkstatus/src/interfaces
 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/klinkstatus/src/interfaces/engine
 
-I/home/lamby/temp/cdt.20160625082419.oAVucN6rm3.kdewebdev/kdewebdev-15.08.3/klinkstatus/src/interfaces/ui
 -I/usr/include/KDE -I/usr/include/qt4/phonon -I/usr/include/qt4/QtXmlPatterns 
-I/usr/include/qt4/QtXml -I/usr/include/qt4/QtUiTools -I/usr/include/qt4/QtTest 
-I/usr/include/qt4/QtSvg -I/usr/include/qt4/QtSql 
-I/usr/include/qt4/QtScriptTools -I/usr/include/qt4/QtScript 
-I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtHelp 
-I/usr/include/qt4/QtDesigner -I/usr/include/qt4/QtDeclarative 
-I/usr/include/qt4/QtDBus -I/usr/include/qt4/Qt3Support 
-I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore -I/usr/include/qt4/Qt 
-I/usr/share/qt4/mkspecs/default -I/usr/include/qt4 -I/usr/include/threadweaver 
-I/usr/include/tidy  -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wdate-time 
-D_FORTIFY_SOURCE=2  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align 
-Wc

Bug#827811: signond: FTBFS: dh_makeshlibs: failing due to earlier errors

2016-06-21 Thread Chris Lamb
nHelperIN6SignOn13UiSessionDataELb1EE8DestructEPv@Base
 8.57+20150423

(optional=templinst)_ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperIN6SignOn13UiSessionDataELb1EE9ConstructEPvPKv@Base
 8.57+20150423
  - 
(optional=templinst)_ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperIN6SignOn5ErrorELb1EE6CreateEPKv@Base
 8.57+20150423
  - 
(optional=templinst)_ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperIN6SignOn5ErrorELb1EE6DeleteEPv@Base
 8.57+20150423
  +#MISSING: 8.57+20150423-3# 
(optional=templinst)_ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperIN6SignOn5ErrorELb1EE6CreateEPKv@Base
 8.57+20150423
  +#MISSING: 8.57+20150423-3# 
(optional=templinst)_ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperIN6SignOn5ErrorELb1EE6DeleteEPv@Base
 8.57+20150423

(optional=templinst)_ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperIN6SignOn5ErrorELb1EE8DestructEPv@Base
 8.57+20150423

(optional=templinst)_ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperIN6SignOn5ErrorELb1EE9ConstructEPvPKv@Base
 8.57+20150423
_ZN19AuthPluginInterface11qt_metacallEN11QMetaObject4CallEiPPv@Base 
8.57+20150423
  @@ -60,6 +62,9 @@
_ZN19AuthPluginInterface6resultERKN6SignOn11SessionDataE@Base 8.57+20150423
_ZN19AuthPluginInterface7refreshERKN6SignOn13UiSessionDataE@Base 
8.57+20150423
_ZN19AuthPluginInterface9refreshedERKN6SignOn13UiSessionDataE@Base 
8.57+20150423
  + _ZN4QMapI7QString8QVariantED1Ev@Base 8.57+20150423-3
  + _ZN4QMapI7QString8QVariantED2Ev@Base 8.57+20150423-3
  + _ZN4QMapI7QString8QVariantEaSERKS2_@Base 8.57+20150423-3
_ZN6SignOn5ErrorD0Ev@Base 8.57+20150423
_ZN6SignOn5ErrorD1Ev@Base 8.57+20150423
_ZN6SignOn5ErrorD2Ev@Base 8.57+20150423
  dh_makeshlibs: failing due to earlier errors
  /usr/share/pkg-kde-tools/qt-kde-team/2/dhmk.mk:97: recipe for target 
'pre_binary_dh_makeshlibs' failed
  make[1]: *** [pre_binary_dh_makeshlibs] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160621105021.n38x92gR2k.signond/signond-8.57+20150423'
  /usr/share/pkg-kde-tools/qt-kde-team/2/dhmk.mk:110: recipe for target 
'debian/dhmk_binary' failed
  make: *** [debian/dhmk_binary] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


signond.8.57+20150423-3.unstable.amd64.log.txt.gz
Description: Binary data


Bug#826023: kdeedu-data: FTBFS: Failed call: qmake-qt5 -query "QT_INSTALL_PREFIX"

2016-06-01 Thread Chris Lamb
ators
  CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
  //ADVANCED property for variable: CMAKE_OBJCOPY
  CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_OBJDUMP
  CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_RANLIB
  CMAKE_RANLIB-ADVANCED:INTERNAL=1
  //Path to CMake installation.
  CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.5
  //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
  CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
  CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
  CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
  CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
  CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
  CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_SKIP_RPATH
  CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
  CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
  CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
  CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
  CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
  CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: CMAKE_STRIP
  CMAKE_STRIP-ADVANCED:INTERNAL=1
  //uname command
  CMAKE_UNAME:INTERNAL=/bin/uname
  //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
  CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: KDE_INSTALL_BINDIR
  KDE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: KDE_INSTALL_CMAKEPACKAGEDIR
  KDE_INSTALL_CMAKEPACKAGEDIR-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: KDE_INSTALL_EXECROOTDIR
  KDE_INSTALL_EXECROOTDIR-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: KDE_INSTALL_LIBDIR
  KDE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: KDE_INSTALL_LIBEXECDIR
  KDE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: KDE_INSTALL_SBINDIR
  KDE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
  
  dh_auto_configure: cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None 
-DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var 
-DCMAKE_BUILD_TYPE=Debian -DCMAKE_USE_RELATIVE_PATHS=ON returned exit code 1
  /usr/share/pkg-kde-tools/qt-kde-team/2/dhmk.mk:97: recipe for target 
'pre_configure_dh_auto_configure' failed
  make[1]: *** [pre_configure_dh_auto_configure] Error 255
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160601163626.8UPWJgzloW.kdeedu-data/kdeedu-data-15.12.0'
  /usr/share/pkg-kde-tools/qt-kde-team/2/dhmk.mk:110: recipe for target 
'debian/dhmk_configure' failed
  make: *** [debian/dhmk_configure] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kdeedu-data.4:15.12.0-3.unstable.amd64.log.txt.gz
Description: Binary data


Bug#824586: networkmanager-qt: FTBFS: dh_makeshlibs: failing due to earlier errors

2016-05-17 Thread Chris Lamb
  - _ZTIN14NetworkManager11WimaxDeviceE@Base 5.1.1+git20141203.0020+15.04
  +#MISSING: 5.16.0-1# _ZTIN14NetworkManager11WimaxDeviceE@Base 
5.1.1+git20141203.0020+15.04
_ZTIN14NetworkManager11WiredDeviceE@Base 5.1.1+git20141203.0020+15.04
_ZTIN14NetworkManager12BridgeDeviceE@Base 5.1.1+git20141203.0020+15.04
_ZTIN14NetworkManager12PppoeSettingE@Base 5.1.1+git20141203.0020+15.04
  @@ -1488,7 +1491,7 @@
_ZTIN14NetworkManager6DeviceE@Base 5.1.1+git20141203.0020+15.04
_ZTIN14NetworkManager7SettingE@Base 5.1.1+git20141203.0020+15.04
_ZTIN14NetworkManager8NotifierE@Base 5.1.1+git20141203.0020+15.04
  - _ZTIN14NetworkManager8WimaxNspE@Base 5.1.1+git20141203.0020+15.04
  +#MISSING: 5.16.0-1# _ZTIN14NetworkManager8WimaxNspE@Base 
5.1.1+git20141203.0020+15.04
_ZTIN14NetworkManager9GreDeviceE@Base 5.6.0
_ZTIN14NetworkManager9TunDeviceE@Base 5.6.0
_ZTIN14NetworkManager9VpnPluginE@Base 5.1.1+git20141203.0020+15.04
  @@ -1514,7 +1517,7 @@
_ZTSN14NetworkManager11SecretAgentE@Base 5.1.1+git20141203.0020+15.04
_ZTSN14NetworkManager11TeamSettingE@Base 5.6.0
_ZTSN14NetworkManager11VlanSettingE@Base 5.1.1+git20141203.0020+15.04
  - _ZTSN14NetworkManager11WimaxDeviceE@Base 5.1.1+git20141203.0020+15.04
  +#MISSING: 5.16.0-1# _ZTSN14NetworkManager11WimaxDeviceE@Base 
5.1.1+git20141203.0020+15.04
_ZTSN14NetworkManager11WiredDeviceE@Base 5.1.1+git20141203.0020+15.04
_ZTSN14NetworkManager12BridgeDeviceE@Base 5.1.1+git20141203.0020+15.04
_ZTSN14NetworkManager12PppoeSettingE@Base 5.1.1+git20141203.0020+15.04
  @@ -1544,7 +1547,7 @@
_ZTSN14NetworkManager6DeviceE@Base 5.1.1+git20141203.0020+15.04
_ZTSN14NetworkManager7SettingE@Base 5.1.1+git20141203.0020+15.04
_ZTSN14NetworkManager8NotifierE@Base 5.1.1+git20141203.0020+15.04
  - _ZTSN14NetworkManager8WimaxNspE@Base 5.1.1+git20141203.0020+15.04
  +#MISSING: 5.16.0-1# _ZTSN14NetworkManager8WimaxNspE@Base 
5.1.1+git20141203.0020+15.04
_ZTSN14NetworkManager9GreDeviceE@Base 5.6.0
_ZTSN14NetworkManager9TunDeviceE@Base 5.6.0
_ZTSN14NetworkManager9VpnPluginE@Base 5.1.1+git20141203.0020+15.04
  @@ -1569,7 +1572,7 @@
_ZTVN14NetworkManager11SecretAgentE@Base 5.1.1+git20141203.0020+15.04
_ZTVN14NetworkManager11TeamSettingE@Base 5.6.0
_ZTVN14NetworkManager11VlanSettingE@Base 5.1.1+git20141203.0020+15.04
  - _ZTVN14NetworkManager11WimaxDeviceE@Base 5.1.1+git20141203.0020+15.04
  +#MISSING: 5.16.0-1# _ZTVN14NetworkManager11WimaxDeviceE@Base 
5.1.1+git20141203.0020+15.04
_ZTVN14NetworkManager11WiredDeviceE@Base 5.1.1+git20141203.0020+15.04
_ZTVN14NetworkManager12BridgeDeviceE@Base 5.1.1+git20141203.0020+15.04
_ZTVN14NetworkManager12PppoeSettingE@Base 5.1.1+git20141203.0020+15.04
  @@ -1599,7 +1602,7 @@
_ZTVN14NetworkManager6DeviceE@Base 5.1.1+git20141203.0020+15.04
_ZTVN14NetworkManager7SettingE@Base 5.1.1+git20141203.0020+15.04
_ZTVN14NetworkManager8NotifierE@Base 5.1.1+git20141203.0020+15.04
  - _ZTVN14NetworkManager8WimaxNspE@Base 5.1.1+git20141203.0020+15.04
  +#MISSING: 5.16.0-1# _ZTVN14NetworkManager8WimaxNspE@Base 
5.1.1+git20141203.0020+15.04
_ZTVN14NetworkManager9GreDeviceE@Base 5.6.0
_ZTVN14NetworkManager9TunDeviceE@Base 5.6.0
_ZTVN14NetworkManager9VpnPluginE@Base 5.1.1+git20141203.0020+15.04
  dh_makeshlibs: failing due to earlier errors
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:97: recipe for target 
'pre_binary_dh_makeshlibs' failed
  make[1]: *** [pre_binary_dh_makeshlibs] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160517195048.VlRK3bUjME.networkmanager-qt/networkmanager-qt-5.16.0'
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:112: recipe for target 
'debian/dhmk_binary' failed
  make: *** [debian/dhmk_binary] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


networkmanager-qt.5.16.0-1.unstable.amd64.log.txt.gz
Description: Binary data


Bug#821324: kamera: FTBFS: The following REQUIRED packages could NOT be located on your system [..] gphoto2

2016-04-17 Thread Chris Lamb
  __KDE_HAVE_GCC_VISIBILITY:INTERNAL=1
  //Test __KDE_HAVE_W_OVERLOADED_VIRTUAL
  __KDE_HAVE_W_OVERLOADED_VIRTUAL:INTERNAL=1
  //Result of TRY_COMPILE
  _basic_compile_result:INTERNAL=TRUE
  //Result of TRY_COMPILE
  _compile_result:INTERNAL=TRUE
  
  dh_auto_configure: cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None 
-DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var 
-DCMAKE_BUILD_TYPE=Debian -DCMAKE_USE_RELATIVE_PATHS=ON returned exit code 1
  /usr/share/pkg-kde-tools/qt-kde-team/2/dhmk.mk:97: recipe for target 
'pre_configure_dh_auto_configure' failed
  make[1]: *** [pre_configure_dh_auto_configure] Error 255
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160417184505.5Sge1Gl3ai.kamera/kamera-4.14.2'
  /usr/share/pkg-kde-tools/qt-kde-team/2/dhmk.mk:110: recipe for target 
'debian/dhmk_configure' failed
  make: *** [debian/dhmk_configure] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kamera.4:4.14.2-1.unstable.amd64.log.txt.gz
Description: Binary data


Bug#814766: signon-ui: FTBFS: xvfb-run -a ./tst_inactivity_timer \n Floating point exception (core dumped)

2016-04-07 Thread Chris Lamb
> I didn't get any segfaults, though I did get this warning.
> 
> signon-ui_0.17+15.10.20150810-2_amd64.build-libEGL warning: DRI2: failed to 
> open swrast (search paths /usr/lib/x86_64-linux-gnu/dri:
> ${ORIGIN}/dri:/usr/lib/dri)

Curiously, I get a *different* FTBFS now:

  Project ERROR: libnotify development package not found.

Full build-log (with packages) attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


signon-ui.0.17+15.10.20150810-2.unstable.amd64.log.txt.gz
Description: application/gzip


Bug#815738: libspectre: FTBFS: spectre-gs.c:46:9: error: 'e_Fatal' undeclared (first use in this function)

2016-02-24 Thread Chris Lamb
Source: libspectre
Version: 0.2.7-3
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

libspectre fails to build from source in unstable/amd64:

  [..]

  libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
-D_FORTIFY_SOURCE=2 -I.. -I. -I.. -Wall -Wextra -Wsign-compare 
-Werror-implicit-function-declaration -Wpointer-arith -Wstrict-prototypes 
-Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wpacked 
-Wswitch-enum -Wstrict-aliasing=2 -Winit-self -Wunsafe-loop-optimizations 
-Wdeclaration-after-statement -Wno-missing-field-initializers 
-Wno-unused-parameter -Wno-attributes -Wno-long-long -Winline -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -c spectre-device.c  
-fPIC -DPIC -o .libs/libspectre_la-spectre-device.o
  spectre-gs.c: In function 'critic_error_code':
  spectre-gs.c:46:9: error: 'e_Fatal' undeclared (first use in this function)
  case e_Fatal:
   ^
  spectre-gs.c:46:9: note: each undeclared identifier is reported only once for 
each function it appears in
  spectre-gs.c:51:9: error: 'e_ExecStackUnderflow' undeclared (first use in 
this function)
  case e_ExecStackUnderflow:
   ^
  spectre-gs.c: In function 'spectre_gs_process':
  spectre-gs.c:112:20: error: 'e_NeedInput' undeclared (first use in this 
function)
 error = error == e_NeedInput ? 0 : error;
  ^
  libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
-D_FORTIFY_SOURCE=2 -I.. -I. -I.. -Wall -Wextra -Wsign-compare 
-Werror-implicit-function-declaration -Wpointer-arith -Wstrict-prototypes 
-Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wpacked 
-Wswitch-enum -Wstrict-aliasing=2 -Winit-self -Wunsafe-loop-optimizations 
-Wdeclaration-after-statement -Wno-missing-field-initializers 
-Wno-unused-parameter -Wno-attributes -Wno-long-long -Winline -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -c spectre-page.c -o 
libspectre_la-spectre-page.o >/dev/null 2>&1
  libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
-D_FORTIFY_SOURCE=2 -I.. -I. -I.. -Wall -Wextra -Wsign-compare 
-Werror-implicit-function-declaration -Wpointer-arith -Wstrict-prototypes 
-Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wpacked 
-Wswitch-enum -Wstrict-aliasing=2 -Winit-self -Wunsafe-loop-optimizations 
-Wdeclaration-after-statement -Wno-missing-field-initializers 
-Wno-unused-parameter -Wno-attributes -Wno-long-long -Winline -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -c 
spectre-exporter-ps.c  -fPIC -DPIC -o .libs/libspectre_la-spectre-exporter-ps.o
  Makefile:530: recipe for target 'libspectre_la-spectre-gs.lo' failed
  make[3]: *** [libspectre_la-spectre-gs.lo] Error 1
  make[3]: *** Waiting for unfinished jobs


  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


libspectre.0.2.7-3.unstable.amd64.log.txt.gz
Description: Binary data


Bug#814766: signon-ui: FTBFS: xvfb-run -a ./tst_inactivity_timer \n Floating point exception (core dumped)

2016-02-15 Thread Chris Lamb
Source: signon-ui
Version: 0.17+15.10.20150810-2
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

signon-ui fails to build from source in unstable/amd64:

  [..]

  make[3]: Entering directory 
'/home/lamby/temp/cdt.20160215091107.y868q8N71x/signon-ui-0.17+15.10.20150810/tests/unit'
  ( test -e Makefile.tst_inactivity_timer || 
/usr/lib/x86_64-linux-gnu/qt5/bin/qmake 
/home/lamby/temp/cdt.20160215091107.y868q8N71x/signon-ui-0.17+15.10.20150810/tests/unit/tst_inactivity_timer.pro
 -nocache 'QMAKE_CFLAGS_RELEASE=-g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' 'QMAKE_CFLAGS_DEBUG=-g 
-O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
-D_FORTIFY_SOURCE=2' 'QMAKE_CXXFLAGS_RELEASE=-g -O2 -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' 
'QMAKE_CXXFLAGS_DEBUG=-g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' 
QMAKE_LFLAGS_RELEASE=-Wl,-z,relro QMAKE_LFLAGS_DEBUG=-Wl,-z,relro QMAKE_STRIP=: 
PREFIX=/usr CONFIG+=force-foreign-qwindow CONFIG+=use-ubuntu-web-view 
HTTP_WARNING_HELP=help:web-credentials/http-warning 
LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu -o 
Makefile.tst_inactivity_timer ) && make -f Makefile.tst_inactivity_timer check
  make[4]: Entering directory 
'/home/lamby/temp/cdt.20160215091107.y868q8N71x/signon-ui-0.17+15.10.20150810/tests/unit'
  xvfb-run -a ./tst_inactivity_timer
  Floating point exception (core dumped)
  Makefile.tst_inactivity_timer:333: recipe for target 'check' failed
  make[4]: *** [check] Error 136
  make[4]: Leaving directory 
'/home/lamby/temp/cdt.20160215091107.y868q8N71x/signon-ui-0.17+15.10.20150810/tests/unit'
  Makefile:201: recipe for target 'sub-tst_inactivity_timer-pro-check' failed
  make[3]: *** [sub-tst_inactivity_timer-pro-check] Error 2
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160215091107.y868q8N71x/signon-ui-0.17+15.10.20150810/tests/unit'
  Makefile:209: recipe for target 'sub-unit-check_ordered' failed
  make[2]: *** [sub-unit-check_ordered] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160215091107.y868q8N71x/signon-ui-0.17+15.10.20150810/tests'
  Makefile:316: recipe for target 'sub-tests-check_ordered' failed
  make[1]: *** [sub-tests-check_ordered] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160215091107.y868q8N71x/signon-ui-0.17+15.10.20150810'
  dh_auto_test: make -j1 check returned exit code 2
  debian/rules:23: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


signon-ui.0.17+15.10.20150810-2.unstable.amd64.log.txt.gz
Description: Binary data


Bug#814699: kcompletion: FTBFS: 25% tests passed, 3 tests failed out of 4

2016-02-14 Thread Chris Lamb
Source: kcompletion
Version: 5.16.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kcompletion fails to build from source in unstable/amd64:

  [..]

  /usr/bin/cmake -E cmake_progress_start 
/home/lamby/temp/cdt.20160214110029.3oA8xYQ1bO/kcompletion-5.16.0/obj-x86_64-linux-gnu/CMakeFiles
 0
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160214110029.3oA8xYQ1bO/kcompletion-5.16.0/obj-x86_64-linux-gnu'
  if ! test -d debian/man/out; then mkdir -p debian/man/out; fi
  for f in $(find debian/man -name '*.sgml'); do \
docbook-to-man $f > debian/man/out/`basename $f .sgml`.1; \
  done
  for f in $(find debian/man -name '*.man'); do \
soelim -I debian/man $f \
> debian/man/out/`basename $f .man`.`head -n1 $f | awk '{print $NF}'`; \
  done
  touch debian/stamp-man-pages
  # Running override target (override_dh_auto_test)
  test -z "`ls debian/*.debhelper.log 2>/dev/null`" || sed -i 
'/^override_dh_auto_test[[:space:]]/d' debian/*.debhelper.log
  /usr/bin/make -f debian/rules override_dh_auto_test 
DH_INTERNAL_OVERRIDE="dh_auto_test"  
  make[2]: Entering directory 
'/home/lamby/temp/cdt.20160214110029.3oA8xYQ1bO/kcompletion-5.16.0'
  xvfb-run -a dh_auto_test '--buildsystem=kf5' --parallel 
make -j9 test ARGS\+=-j9
  make[3]: Entering directory 
'/home/lamby/temp/cdt.20160214110029.3oA8xYQ1bO/kcompletion-5.16.0/obj-x86_64-linux-gnu'
  Running tests...
  /usr/bin/ctest --force-new-ctest-process -j9
  Test project 
/home/lamby/temp/cdt.20160214110029.3oA8xYQ1bO/kcompletion-5.16.0/obj-x86_64-linux-gnu
  Start 1: kcompletioncoretest
  Start 2: klineedit_unittest
  Start 3: kcombobox_unittest
  Start 4: ksortablelisttest
  1/4 Test #2: klineedit_unittest ...***Exception: Numerical  0.02 
sec
  
  2/4 Test #3: kcombobox_unittest ...***Exception: Numerical  0.02 
sec
  
  3/4 Test #4: ksortablelisttest    Passed0.02 sec
  4/4 Test #1: kcompletioncoretest ..***Exception: Numerical  0.05 
sec
  
  
  25% tests passed, 3 tests failed out of 4
  
  Total Test time (real) =   0.05 sec
  
  The following tests FAILED:
  1 - kcompletioncoretest (NUMERICAL)
  2 - klineedit_unittest (NUMERICAL)
  3 - kcombobox_unittest (NUMERICAL)
  Errors while running CTest
  Makefile:96: recipe for target 'test' failed
  make[3]: *** [test] Error 8
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20160214110029.3oA8xYQ1bO/kcompletion-5.16.0/obj-x86_64-linux-gnu'
  dh_auto_test: make -j9 test ARGS+=-j9 returned exit code 2
  debian/rules:12: recipe for target 'override_dh_auto_test' failed
  make[2]: *** [override_dh_auto_test] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160214110029.3oA8xYQ1bO/kcompletion-5.16.0'
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:97: recipe for target 
'pre_build_dh_auto_test' failed
  make[1]: *** [pre_build_dh_auto_test] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160214110029.3oA8xYQ1bO/kcompletion-5.16.0'
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:112: recipe for target 
'debian/dhmk_build' failed
  make: *** [debian/dhmk_build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kcompletion.5.16.0-1.unstable.amd64.log.txt.gz
Description: Binary data


Bug#809282: ktp-accounts-kcm: FTBFS: plugins/kaccounts/kaccounts-ui-provider.cpp:109:34: error: 'configUiReady' was not declared in this scope

2015-12-28 Thread Chris Lamb
o 
CMakeFiles/ktpaccountskcm_plugin_haze.dir/haze-msn-account.cpp.o 
CMakeFiles/ktpaccountskcm_plugin_haze.dir/haze-groupwise-account.cpp.o 
CMakeFiles/ktpaccountskcm_plugin_haze.dir/groupwise-main-options-widget.cpp.o 
CMakeFiles/ktpaccountskcm_plugin_haze.dir/groupwise-advanced-settings-widget.cpp.o
 CMakeFiles/ktpaccountskcm_plugin_haze.dir/haze-steam-account.cpp.o 
CMakeFiles/ktpaccountskcm_plugin_haze.dir/steam-main-options-widget.cpp.o 
CMakeFiles/ktpaccountskcm_plugin_haze.dir/haze-sipe-account.cpp.o 
CMakeFiles/ktpaccountskcm_plugin_haze.dir/sipe-main-options-widget.cpp.o 
CMakeFiles/ktpaccountskcm_plugin_haze.dir/sipe-advanced-settings-widget.cpp.o 
CMakeFiles/ktpaccountskcm_plugin_haze.dir/ktpaccountskcm_plugin_haze_automoc.cpp.o
 ../../src/KCMTelepathyAccounts/libktpaccountskcminternal.so.15.08.3 
/usr/lib/x86_64-linux-gnu/libtelepathy-qt5.so.0.0.9.6.1 
/usr/lib/x86_64-linux-gnu/libQt5Network.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libKF5IconThemes.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5ConfigWidgets.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5Codecs.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5ConfigGui.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5Auth.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5ItemViews.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libQt5DBus.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libKF5Service.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5I18n.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5Xml.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libKF5ConfigCore.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5CoreAddons.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5.5.1 
-Wl,-rpath,/home/lamby/temp/cdt.20151228235755.r1AIyaFk9e/ktp-accounts-kcm-15.08.3/obj-x86_64-linux-gnu/src/KCMTelepathyAccounts:
 
  make[4]: Leaving directory 
'/home/lamby/temp/cdt.20151228235755.r1AIyaFk9e/ktp-accounts-kcm-15.08.3/obj-x86_64-linux-gnu'
  [ 98%] Built target ktpaccountskcm_plugin_haze
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20151228235755.r1AIyaFk9e/ktp-accounts-kcm-15.08.3/obj-x86_64-linux-gnu'
  Makefile:141: recipe for target 'all' failed
  make[2]: *** [all] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20151228235755.r1AIyaFk9e/ktp-accounts-kcm-15.08.3/obj-x86_64-linux-gnu'
  dh_auto_build: make -j8 returned exit code 2
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:97: recipe for target 
'pre_build_dh_auto_build' failed
  make[1]: *** [pre_build_dh_auto_build] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20151228235755.r1AIyaFk9e/ktp-accounts-kcm-15.08.3'
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:112: recipe for target 
'debian/dhmk_build' failed
  make: *** [debian/dhmk_build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#808740: kuser: FTBFS: dhmk.mk:110: recipe for target 'debian/dhmk_configure' failed

2015-12-22 Thread Chris Lamb
Source: kuser
Version: 4:4.12.2-2
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kuser fails to build from source in unstable/amd64:

  [..]

  //ADVANCED property for variable: X11_Xrandr_LIB
  X11_Xrandr_LIB-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xrender_INCLUDE_PATH
  X11_Xrender_INCLUDE_PATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xrender_LIB
  X11_Xrender_LIB-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xscreensaver_INCLUDE_PATH
  X11_Xscreensaver_INCLUDE_PATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xscreensaver_LIB
  X11_Xscreensaver_LIB-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xshape_INCLUDE_PATH
  X11_Xshape_INCLUDE_PATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xt_INCLUDE_PATH
  X11_Xt_INCLUDE_PATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xt_LIB
  X11_Xt_LIB-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xutil_INCLUDE_PATH
  X11_Xutil_INCLUDE_PATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xv_INCLUDE_PATH
  X11_Xv_INCLUDE_PATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xv_LIB
  X11_Xv_LIB-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_Xxf86misc_LIB
  X11_Xxf86misc_LIB-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_dpms_INCLUDE_PATH
  X11_dpms_INCLUDE_PATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_xf86misc_INCLUDE_PATH
  X11_xf86misc_INCLUDE_PATH-ADVANCED:INTERNAL=1
  //ADVANCED property for variable: X11_xf86vmode_INCLUDE_PATH
  X11_xf86vmode_INCLUDE_PATH-ADVANCED:INTERNAL=1
  //Test _OFFT_IS_64BIT
  _OFFT_IS_64BIT:INTERNAL=1
  //Test __KDE_HAVE_GCC_VISIBILITY
  __KDE_HAVE_GCC_VISIBILITY:INTERNAL=1
  //Test __KDE_HAVE_W_OVERLOADED_VIRTUAL
  __KDE_HAVE_W_OVERLOADED_VIRTUAL:INTERNAL=1
  //Result of TRY_COMPILE
  _basic_compile_result:INTERNAL=TRUE
  //Result of TRY_COMPILE
  _compile_result:INTERNAL=TRUE
  
  dh_auto_configure: cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None 
-DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var 
-DCMAKE_BUILD_TYPE=Debian -DCMAKE_USE_RELATIVE_PATHS=ON returned exit code 1
  /usr/share/pkg-kde-tools/qt-kde-team/2/dhmk.mk:97: recipe for target 
'pre_configure_dh_auto_configure' failed
  make[1]: *** [pre_configure_dh_auto_configure] Error 255
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20151222120720.xSmIzdRgvf/kuser-4.12.2'
  /usr/share/pkg-kde-tools/qt-kde-team/2/dhmk.mk:110: recipe for target 
'debian/dhmk_configure' failed
  make: *** [debian/dhmk_configure] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


kuser.4:4.12.2-2.unstable.amd64.log.txt.gz
Description: Binary data


Bug#808621: umbrello: FTBFS: qtestcase.h:293:30: error: cannot convert 'QString' to 'char*' for argument '3' to 'bool QTest::compare_helper(bool, const char*, char*, char*, const char*, const char*, c

2015-12-21 Thread Chris Lamb
5GuiAddons.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5Codecs.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5ConfigGui.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5Xml.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libKF5ConfigCore.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5SonnetUi.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5Network.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5.5.1 
  make[4]: Leaving directory 
'/home/lamby/temp/cdt.20151221145637.utNwdYl7Jw/umbrello-15.08.2/obj-x86_64-linux-gnu'
  [ 99%] Built target TEST_basictypes
  make[4]: Leaving directory 
'/home/lamby/temp/cdt.20151221145637.utNwdYl7Jw/umbrello-15.08.2/obj-x86_64-linux-gnu'
  CMakeFiles/Makefile2:782: recipe for target 
'unittests/CMakeFiles/TEST_pythonwriter.dir/all' failed
  make[3]: *** [unittests/CMakeFiles/TEST_pythonwriter.dir/all] Error 2
  [ 99%] Linking CXX executable TEST_optionstate
  cd 
/home/lamby/temp/cdt.20151221145637.utNwdYl7Jw/umbrello-15.08.2/obj-x86_64-linux-gnu/unittests
 && /usr/bin/cmake -E cmake_link_script 
CMakeFiles/TEST_optionstate.dir/link.txt --verbose=1
  /usr/bin/c++   -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -D_FORTIFY_SOURCE=2 -D_FORTIFY_SOURCE=2  -std=c++0x 
-fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security 
-Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual 
-Werror=return-type  -Wl,--enable-new-dtags  -Wl,-z,relro -Wl,--as-needed 
-Wl,--no-undefined CMakeFiles/TEST_optionstate.dir/TEST_optionstate.cpp.o 
CMakeFiles/TEST_optionstate.dir/testbase.cpp.o 
CMakeFiles/TEST_optionstate.dir/TEST_optionstate_automoc.cpp.o  -o 
TEST_optionstate -rdynamic /usr/lib/x86_64-linux-gnu/libQt5Test.so.5.5.1 -lxml2 
-lxslt ../umbrello/libumbrello.a -lxml2 -lxslt 
/usr/lib/x86_64-linux-gnu/libKF5TextEditor.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5Archive.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5Parts.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5KIOWidgets.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5KIOCore.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5JobWidgets.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5XmlGui.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5PrintSupport.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libKF5TextWidgets.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5Completion.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5IconThemes.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5Svg.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libKF5WindowSystem.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5Service.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5ConfigWidgets.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5I18n.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5Auth.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5DBus.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libKF5CoreAddons.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5GuiAddons.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5Codecs.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5ConfigGui.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5Xml.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libKF5ConfigCore.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libKF5SonnetUi.so.5.16.0 
/usr/lib/x86_64-linux-gnu/libQt5Network.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.5.1 
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5.5.1 
  make[4]: Leaving directory 
'/home/lamby/temp/cdt.20151221145637.utNwdYl7Jw/umbrello-15.08.2/obj-x86_64-linux-gnu'
  [ 99%] Built target TEST_umlroledialog
  make[4]: Leaving directory 
'/home/lamby/temp/cdt.20151221145637.utNwdYl7Jw/umbrello-15.08.2/obj-x86_64-linux-gnu'
  [ 99%] Built target umbrello
  make[4]: Leaving directory 
'/home/lamby/temp/cdt.20151221145637.utNwdYl7Jw/umbrello-15.08.2/obj-x86_64-linux-gnu'
  [ 99%] Built target TEST_optionstate
  make[3]: Leaving directory 
'/home/lamby/temp/cdt.20151221145637.utNwdYl7Jw/umbrello-15.08.2/obj-x86_64-linux-gnu'
  Makefile:141: recipe for target 'all' failed
  make[2]: *** [all] Error 2
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20151221145637.utNwdYl7Jw/umbrello-15.08.2/obj-x86_64-linux-gnu'
  dh_auto_build: make -j8 returned exit code 2
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:97: recipe for target 
'pre_build_dh_auto_build' failed
  make[1]: *** [pre_build_dh_auto_build] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20151221145637.utNwdYl7Jw/umbrello-15.08.2'
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:112: recipe for target 
'debian/dhmk_build' failed
  make: *** [debian/dhmk_build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


umbrello.4:15.08.2-1.unstable.amd64.log.txt.gz
Description: Binary data


Bug#803381: step: FTBFS: error: #error Eigen2-support is only available up to version 3.2.

2015-10-29 Thread Chris Lamb
Source: step
Version: 4:15.08.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

step fails to build from source in unstable/amd64:

  [..]

  [ 17%] Building CXX object
  stepcore/CMakeFiles/stepcore.dir/itemgroup.cc.o
  cd stepcore && /usr/bin/c++  
  -DEIGEN2_SUPPORT_STAGE40_FULL_EIGEN3_STRICTNESS -DQT_CORE_LIB
  -DQT_DISABLE_DEPRECATED_BEFORE=0 -DQT_NO_DEBUG -DQT_XML_LIB
  -DSTEPCORE_WITH_GSL -DSTEPCORE_WITH_QT -D_GNU_SOURCE
  -D_LARGEFILE64_SOURCE -g -O2 -fstack-protector-strong -Wformat
  -Werror=format-security -D_FORTIFY_SOURCE=2 -D_FORTIFY_SOURCE=2 
  -std=c++0x -fno-exceptions -Wall -Wextra -Wcast-align
  -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith
  -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type
  -Wno-unused-local-typedefs -Wno-unused-parameter -I. -I../../stepcore
  -I../../ -I/usr/include/eigen3 -isystem
  /usr/include/x86_64-linux-gnu/qt5 -isystem
  /usr/include/x86_64-linux-gnu/qt5/QtCore -isystem
  /usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -isystem
  /usr/include/x86_64-linux-gnu/qt5/QtXml-Wall -fPIC -o
  CMakeFiles/stepcore.dir/itemgroup.cc.o -c ../../stepcore/itemgroup.cc
  In file included from ../../stepcore/object.h:29:0,
   from ../../stepcore/types.h:26,
   from ../../stepcore/itemgroup.h:30,
   from ../../stepcore/itemgroup.cc:20:
  /usr/include/eigen3/Eigen/Core:275:2: error: #error Eigen2-support is
  only available up to version 3.2. Please go to
  "http://eigen.tuxfamily.org/index.php?title=Eigen2"; for further
  information
   #error Eigen2-support is only available up to version 3.2. Please go
   to "http://eigen.tuxfamily.org/index.php?title=Eigen2"; for further
   information
^
  stepcore/CMakeFiles/stepcore.dir/build.make:161: recipe for target
  'stepcore/CMakeFiles/stepcore.dir/body.cc.o' failed
  make[4]: *** [stepcore/CMakeFiles/stepcore.dir/body.cc.o] Error 1
  make[4]: *** Waiting for unfinished jobs
  stepcore/CMakeFiles/stepcore.dir/build.make:113: recipe for target
  'stepcore/CMakeFiles/stepcore.dir/object.cc.o' failed
  make[4]: *** [stepcore/CMakeFiles/stepcore.dir/object.cc.o] Error 1
  stepcore/CMakeFiles/stepcore.dir/build.make:185: recipe for target
  'stepcore/CMakeFiles/stepcore.dir/objecterrors.cc.o' failed
  make[4]: *** [stepcore/CMakeFiles/stepcore.dir/objecterrors.cc.o]
  Error 1
  stepcore/CMakeFiles/stepcore.dir/build.make:89: recipe for target
  'stepcore/CMakeFiles/stepcore.dir/material.cc.o' failed
  make[4]: *** [stepcore/CMakeFiles/stepcore.dir/material.cc.o] Error 1
  stepcore/CMakeFiles/stepcore.dir/build.make:137: recipe for target
  'stepcore/CMakeFiles/stepcore.dir/item.cc.o' failed
  make[4]: *** [stepcore/CMakeFiles/stepcore.dir/item.cc.o] Error 1
  stepcore/CMakeFiles/stepcore.dir/build.make:209: recipe for target
  'stepcore/CMakeFiles/stepcore.dir/force.cc.o' failed
  make[4]: *** [stepcore/CMakeFiles/stepcore.dir/force.cc.o] Error 1
  stepcore/CMakeFiles/stepcore.dir/build.make:233: recipe for target
  'stepcore/CMakeFiles/stepcore.dir/joint.cc.o' failed
  make[4]: *** [stepcore/CMakeFiles/stepcore.dir/joint.cc.o] Error 1
  stepcore/CMakeFiles/stepcore.dir/build.make:257: recipe for target
  'stepcore/CMakeFiles/stepcore.dir/itemgroup.cc.o' failed
  make[4]: *** [stepcore/CMakeFiles/stepcore.dir/itemgroup.cc.o] Error 1
  make[4]: Leaving directory
  
'/home/lamby/temp/cdt.20151029132431.ygtbS1EbWf/step-15.08.0/obj-x86_64-linux-gnu'
  CMakeFiles/Makefile2:208: recipe for target
  'stepcore/CMakeFiles/stepcore.dir/all' failed
  make[3]: *** [stepcore/CMakeFiles/stepcore.dir/all] Error 2
  make[3]: Leaving directory
  
'/home/lamby/temp/cdt.20151029132431.ygtbS1EbWf/step-15.08.0/obj-x86_64-linux-gnu'
  Makefile:141: recipe for target 'all' failed
  make[2]: *** [all] Error 2
  make[2]: Leaving directory
  
'/home/lamby/temp/cdt.20151029132431.ygtbS1EbWf/step-15.08.0/obj-x86_64-linux-gnu'
  dh_auto_build: make -j8 returned exit code 2
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:97: recipe for target
  'pre_build_dh_auto_build' failed
  make[1]: *** [pre_build_dh_auto_build] Error 2
  make[1]: Leaving directory
  '/home/lamby/temp/cdt.20151029132431.ygtbS1EbWf/step-15.08.0'
  /usr/share/pkg-kde-tools/qt-kde-team/3/dhmk.mk:112: recipe for target
  'debian/dhmk_build' failed
  make: *** [debian/dhmk_build] Error 2

  [..]

The full build log is attached or (an alternate build) can be viewed
here:


https://reproducible.debian.net/logs/unstable/amd64/step_15.08.0-1.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


step.4:15.08.0-1.unstable.amd64.log.txt.gz
Description: application/gzip


Bug#799992: kmix: FTBFS: The dependency target "kmixctrl_automoc" of target "kmixctrl" does not exist

2015-09-25 Thread Chris Lamb
Source: kmix
Version: 15.08.1-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kmix fails to build from source in unstable/amd64:

  [..]
  
  -- Configuring done
  CMake Error at /usr/lib/automoc4/Automoc4Config.cmake:248
  (add_dependencies):
The dependency target "kmixctrl_automoc" of target "kmixctrl" does
not
exist.
  Call Stack (most recent call first):
/usr/share/kde4/apps/cmake/modules/KDE4Macros.cmake:1036
(_automoc4_kde4_post_target_handling)
/usr/share/kde4/apps/cmake/modules/KDE4Macros.cmake:843
(kde4_add_executable)
CMakeLists.txt:352 (kde4_add_kdeinit_executable)
  
  
  CMake Error at /usr/lib/automoc4/Automoc4Config.cmake:248
  (add_dependencies):
The dependency target "kmix_automoc" of target "kmix" does not
exist.
  Call Stack (most recent call first):
/usr/share/kde4/apps/cmake/modules/KDE4Macros.cmake:1036
(_automoc4_kde4_post_target_handling)
/usr/share/kde4/apps/cmake/modules/KDE4Macros.cmake:843
(kde4_add_executable)
CMakeLists.txt:230 (kde4_add_kdeinit_executable)
  
  
  -- Generating done
  CMake Warning:
Manually-specified variables were not used by the project:
  
  CMAKE_INSTALL_SYSCONFDIR
  KDE_INSTALL_USE_QT_SYS_PATHS
  
  
  -- Build files have been written to:
  /tmp/buildd/kmix-15.08.1/obj-x86_64-linux-gnu
  dh_auto_configure: cmake .. -DCMAKE_INSTALL_PREFIX=/usr
  -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None
  -DCMAKE_BUILD_TYPE=Debian -DCMAKE_USE_RELATIVE_PATHS=ON
  -DCMAKE_INSTALL_SYSCONFDIR=/etc -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
  -DKMIX_KF5_BUILD=0 returned exit code 1
  debian/rules:6: recipe for target 'override_dh_auto_configure' failed

  [..]

The full build log is attached or can be viewed here:


https://reproducible.debian.net/logs/unstable/amd64/kmix_15.08.1-1.build1.log.gz


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
I: using fakeroot in build.
I: pbuilder: network access will be disabled during build
I: Current time: Sat Sep 19 14:51:58 GMT+12 2015
I: pbuilder-time-stamp: 1442717518
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/unstable-reproducible-base.tgz]
I: creating local configuration
I: copying local configuration
I: mounting /proc filesystem
I: mounting /run/shm filesystem
I: mounting /dev/pts filesystem
I: Mounting /dev/shm
I: Mounting /sys
I: policy-rc.d already exists
I: Installing the build-deps
 -> Attempting to satisfy build-dependencies
 -> Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team 
Description: Dummy package to satisfy dependencies with aptitude - created by 
pbuilder
 This package was created automatically by pbuilder to satisfy the
 build-dependencies of the package being currently built.
Depends: cmake (>= 2.8.12~), debhelper (>= 9), kde-sc-dev-latest (>= 4:4.12), 
kdelibs5-dev (>= 4:4.14), libasound2-dev, libcanberra-dev, libglib2.0-dev, 
libpulse-dev (>= 0.9.16), pkg-kde-tools (>= 0.12)
dpkg-deb: building package 'pbuilder-satisfydepends-dummy' in 
'/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package pbuilder-satisfydepends-dummy.
(Reading database ... 20256 files and directories currently installed.)
Preparing to unpack .../pbuilder-satisfydepends-dummy.deb ...
Unpacking pbuilder-satisfydepends-dummy (0.invalid.0) ...
dpkg: pbuilder-satisfydepends-dummy: dependency problems, but configuring 
anyway as you requested:
 pbuilder-satisfydepends-dummy depends on cmake (>= 2.8.12~); however:
  Package cmake is not installed.
 pbuilder-satisfydepends-dummy depends on kde-sc-dev-latest (>= 4:4.12); 
however:
  Package kde-sc-dev-latest is not installed.
 pbuilder-satisfydepends-dummy depends on kdelibs5-dev (>= 4:4.14); however:
  Package kdelibs5-dev is not installed.
 pbuilder-satisfydepends-dummy depends on libasound2-dev; however:
  Package libasound2-dev is not installed.
 pbuilder-satisfydepends-dummy depends on libcanberra-dev; however:
  Package libcanberra-dev is not installed.
 pbuilder-satisfydepends-dummy depends on libglib2.0-dev; however:
  Package libglib2.0-dev is not installed.
 pbuilder-satisfydepends-dummy depends on libpulse-dev (>= 0.9.16); however:
  Package libpulse-dev is not installed.
 pbuilder-satisfydepends-dummy depends on pkg-kde-tools (>= 0.12); however:
  Package pkg-kde-tools is not installed.

Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ...
Reading package lists...
Building dependency tree...
Reading state information...
Initializing package states...
Writing e

Bug#799519: svgpart: FTBFS: Missing Build-Depends on libsoprano-dev

2015-09-19 Thread Chris Lamb
Source: svgpart
Version: 4:4.11.3-2
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

svgpart fails to build from source due to missing Build-Depends on
libsoprano-dev. This was previously pulled-in via a transitive
relationship.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799521: umbrello: FTBFS: Missing Build-Depends on libsoprano-dev

2015-09-19 Thread Chris Lamb
Source: umbrello
Version: 4:4.14.2-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

umbrello fails to build from source due to missing Build-Depends on
libsoprano-dev. This was previously pulled-in via a transitive
relationship.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799506: konsole4: FTBFS: Missing Build-Depends on libsoprano-dev

2015-09-19 Thread Chris Lamb
Source: konsole4
Version: 4:4.14.2-3
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

konsole4 fails to build from source due to missing Build-Depends on
libsoprano-dev. This was previously pulled-in via a transitive
relationship.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799499: kdevelop-php-docs: FTBFS: Missing Build-Depends on libsoprano-dev

2015-09-19 Thread Chris Lamb
Source: kdevelop-php-docs
Version: 1.7.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kdevelop-php-docs fails to build from source due to missing
Build-Depends on libsoprano-dev. This was previously pulled-in via a
transitive relationship.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799500: kdewebdev: FTBFS: Missing Build-Depends on libsoprano-dev

2015-09-19 Thread Chris Lamb
Source: kdewebdev
Version: 4:4.14.1-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kdewebdev fails to build from source due to missing Build-Depends on
libsoprano-dev. This was previously pulled-in via a transitive
relationship.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799497: kde-dev-utils: FTBFS: Missing Build-Depends on libsoprano-dev

2015-09-19 Thread Chris Lamb
Source: kde-dev-utils
Version: 4:4.12.2-2
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kde-dev-utils fails to build from source due to missing Build-Depends on
libsoprano-dev. This was previously pulled-in via a transitive
relationship.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799496: kde-baseapps: FTBFS: Missing Build-Depends on libsoprano-dev

2015-09-19 Thread Chris Lamb
Source: kde-baseapps
Version: 4:15.04.3-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kde-baseapps fails to build from source due to missing Build-Depends on
libsoprano-dev. This was previously pulled-in via a transitive
relationship.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799494: kalgebra: FTBFS: Missing Build-Depends on libsoprano-dev

2015-09-19 Thread Chris Lamb
Source: kalgebra
Version: 4:4.14.2-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

kalgebra fails to build from source due to missing Build-Depends on
libsoprano-dev. This was previously pulled-in via a transitive
relationship.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799490: cervisia: FTBFS: Missing Build-Depends on libsoprano-dev

2015-09-19 Thread Chris Lamb
Source: cervisia
Version: 4:4.14.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

cervisia fails to build from source due to missing Build-Depends on
libsoprano-dev. This was previously pulled-in via a transitive
relationship.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799450: soprano: Causing FTBFS in reverse Build-Depends? ("No rule to make target '/usr/lib/libsoprano.so')

2015-09-19 Thread Chris Lamb
Hi Scott,
 
> Please unmerge the bugs and close this one.  The solution is for the
> other packages to add the build-dep.

How come the transitive Build-Depends was dropped? So, there's at least
33 packages FTBFS due to this issue so I just want to double-check this
it's the right thing to do before mass bug filing.

.. as well as to subtly point out that pre-filing bugs against these
packages would have been the better plan in hindsight ;)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799450: soprano: Causing FTBFS in reverse Build-Depends? ("No rule to make target '/usr/lib/libsoprano.so')

2015-09-19 Thread Chris Lamb
merge 799450 799362 799360
thanks

(Merging these other bugs so there's some link on their page)


Regards,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#799450: soprano: Causing FTBFS in reverse Build-Depends? ("No rule to make target '/usr/lib/libsoprano.so')

2015-09-19 Thread Chris Lamb
Source: soprano
Version: 2.9.4+dfsg-3+b1
Severity: serious
Justification: breaks other packages

Hi,

I'm not sure of the underlying cause and it maybe elsewhere in the
toolchain but soprano appears to be causing a FTBFS in most (?) of its
Build-Depends with messages such as:

 No rule to make target '/usr/lib/libsoprano.so'

For example:
 
  * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799362
  * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799360

Filing this here so others (and myself!) can find it centrally.


Regards,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



kde-l10n_4.3.1-3_i386.changes REJECTED

2009-09-02 Thread Chris Lamb
By request



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#535324: kaddressbook: I want an addressbook client, not a mysql server

2009-07-01 Thread Chris Lamb
Simone Piccardi wrote:

> Don't know why but installing kaddressbook install also mysql-server. 

 $ aptitude why kaddressbook mysql-server-5.0
 p   kaddressbook   Depends akonadi-server (>= 1.1.1)
 p   akonadi-server Depends mysql-server
 p   mysql-server   Depends mysql-server-5.0


Regards,

-- 
  ,''`.
     : :'  : Chris Lamb
 `. `'`  la...@debian.org
   `-


signature.asc
Description: PGP signature


Bug#480604: ksmserver: bashism in /bin/sh script

2008-06-08 Thread Chris Lamb
tags 480604 + patch
thanks

Patch attached.


Regards,

-- 
Chris Lamb, UK   [EMAIL PROTECTED]
GPG: 0x634F9A20
diff -urNad kdebase-3.5.9.dfsg.1.orig/startkde kdebase-3.5.9.dfsg.1/startkde
--- kdebase-3.5.9.dfsg.1.orig/startkde  2008-06-08 18:47:48.0 +0100
+++ kdebase-3.5.9.dfsg.1/startkde   2008-06-08 18:48:43.0 +0100
@@ -337,7 +337,7 @@
 KDE_FULL_SESSION=true
 export KDE_FULL_SESSION
 xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true
-KDE_SESSION_UID=$UID
+KDE_SESSION_UID=$(id -ru)
 export KDE_SESSION_UID
 
 # We set LD_BIND_NOW to increase the efficiency of kdeinit.


signature.asc
Description: PGP signature


Bug#479823: Use "su-to-root -X" as su wrapper in menu/desktop files

2008-05-06 Thread Chris Lamb
Package: lilo-config
Severity: important
Version: 4:3.5.9-1
User: [EMAIL PROTECTED]
Usertags: su-to-root
Tags: patch

Hi,

The menu item or .desktop file:

  /usr/share/menu/lilo-config
 
uses an su wrapper other than su-to-root such as "gksu" or "kdesu". On
Debian systems, please use "su-to-root -X", which will pick the correct
wrapper based on what's installed on the system and the current desktop
environment.

Using su-to-root is also important for Live CD systems which need to use
sudo rather than su (su-to-root permits global configuration to use sudo).
This change still important even if the package is targetted at (or uses a
widget toolkit closely related to) a particular desktop environment.

The solution is trivial:

 - Exec=gksu /usr/sbin/my-binary
 + Exec=su-to-root -X /usr/sbin/my-binary

Lintian reports this error as "su-wrapper-not-su-to-root".


Regards,

-- 
Chris Lamb, UK   [EMAIL PROTECTED]
GPG: 0x634F9A20


signature.asc
Description: PGP signature


Bug#473459: juic: bashism in /bin/sh script

2008-04-08 Thread Chris Lamb
Raphael Geissert wrote:

> While performing an archive wide checkbashisms (from the 'devscripts'
> package) check I've found your package containing a /bin/sh script
> making use of a bashism.
> 
> checkbashisms' output:
> > possible bashism in ./usr/bin/juic line 19 (pushd):
> > pushd `dirname ${ls##* }` >/dev/null
> > possible bashism in ./usr/bin/juic line 21 (popd):
> > popd >/dev/null

Although this a bashism, the code is never run as 018-juic-uixsldir.diff
hardcodes the dir:

  --- kdebindings/qtjava/designer/juic/bin/juic
  +++ kdebindings/qtjava/designer/juic/bin/juic
  @@ -43,8 +43,7 @@
   #  common/
   #  java
   
  -a=$(getAbsolutePath $0)
  -UIXSLDIR=$(dirname "$a")
  +UIXSLDIR=/usr/share/juic
   UIXSL=${UIXSLDIR}/juic.xsl
 
   ABSTRACT="true"


Regards,

-- 
Chris Lamb, UK   [EMAIL PROTECTED]
GPG: 0x634F9A20


signature.asc
Description: PGP signature