Your message dated Mon, 21 Dec 2015 17:10:01 +0000
with message-id <e1ab3yd-0005li...@franck.debian.org>
and subject line Bug#795497: fixed in camp 0.7.1.1-2
has caused the Debian Bug report #795497,
regarding camp FTBFS due to qt4 moc failing to parse boost includes
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
795497: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=795497
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: camp
Version: 0.7.1.1-1
Severity: important
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu wily ubuntu-patch

Dear Maintainer,

The attached patch fixes FTBFS due to qt4 moc & boost issues.

Thanks for considering the patch.


-- System Information:
Debian Release: jessie/sid
  APT prefers vivid-updates
  APT policy: (500, 'vivid-updates'), (500, 'vivid-security'), (500, 'vivid'), 
(100, 'vivid-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.19.0-25-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru camp-0.7.1.1/debian/changelog camp-0.7.1.1/debian/changelog
diff -Nru camp-0.7.1.1/debian/control camp-0.7.1.1/debian/control
--- camp-0.7.1.1/debian/control	2015-08-03 00:51:14.000000000 -0700
+++ camp-0.7.1.1/debian/control	2015-08-14 11:07:19.000000000 -0700
@@ -1,6 +1,5 @@
 Source: camp
-Maintainer: Ubuntu Developers <ubuntu-devel-disc...@lists.ubuntu.com>
-XSBC-Original-Maintainer: Corentin Desfarges <corentin.desfarges....@gmail.com>
+Maintainer: Corentin Desfarges <corentin.desfarges....@gmail.com>
 Section: science
 Priority: optional
 Build-Depends: cmake,
diff -Nru camp-0.7.1.1/debian/patches/hide_boost_from_qt4moc.patch camp-0.7.1.1/debian/patches/hide_boost_from_qt4moc.patch
--- camp-0.7.1.1/debian/patches/hide_boost_from_qt4moc.patch	1969-12-31 16:00:00.000000000 -0800
+++ camp-0.7.1.1/debian/patches/hide_boost_from_qt4moc.patch	2015-08-14 10:48:56.000000000 -0700
@@ -0,0 +1,636 @@
+Description: Hide boost includes from qt4 moc.
+ This prevents FTBFS with 'Parse error at "BOOST_JOIN"'
+Author: Robert Bruce Park <robert.p...@canonical.com>
+
+--- a/include/camp/arraymapper.hpp
++++ b/include/camp/arraymapper.hpp
+@@ -27,7 +27,9 @@
+ 
+ #include <camp/config.hpp>
+ #include <camp/detail/yesnotype.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/array.hpp>
++#endif
+ #include <list>
+ #include <vector>
+ 
+--- a/include/camp/class.hpp
++++ b/include/camp/class.hpp
+@@ -36,12 +36,14 @@
+ #include <camp/userobject.hpp>
+ #include <camp/detail/classmanager.hpp>
+ #include <camp/detail/typeid.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/noncopyable.hpp>
+ #include <boost/shared_ptr.hpp>
+ #include <boost/multi_index_container.hpp>
+ #include <boost/multi_index/mem_fun.hpp>
+ #include <boost/multi_index/ordered_index.hpp>
+ #include <boost/multi_index/random_access_index.hpp>
++#endif
+ #include <string>
+ 
+ 
+--- a/include/camp/classbuilder.hpp
++++ b/include/camp/classbuilder.hpp
+@@ -31,9 +31,11 @@
+ #include <camp/detail/functiontraits.hpp>
+ #include <camp/detail/constructorimpl.hpp>
+ #include <camp/detail/propertyfactory.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/noncopyable.hpp>
+ #include <boost/mpl/if.hpp>
+ #include <boost/function_types/function_type.hpp>
++#endif
+ #include <cassert>
+ #include <string>
+ 
+--- a/include/camp/detail/arraypropertyimpl.hpp
++++ b/include/camp/detail/arraypropertyimpl.hpp
+@@ -28,7 +28,9 @@
+ #include <camp/arrayproperty.hpp>
+ #include <camp/arraymapper.hpp>
+ #include <camp/detail/valueprovider.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/type_traits/remove_reference.hpp>
++#endif
+ 
+ 
+ namespace camp
+--- a/include/camp/detail/classmanager.hpp
++++ b/include/camp/detail/classmanager.hpp
+@@ -27,12 +27,14 @@
+ 
+ #include <camp/config.hpp>
+ #include <camp/detail/observernotifier.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/noncopyable.hpp>
+ #include <boost/shared_ptr.hpp>
+ #include <boost/shared_ptr.hpp>
+ #include <boost/multi_index_container.hpp>
+ #include <boost/multi_index/member.hpp>
+ #include <boost/multi_index/ordered_index.hpp>
++#endif
+ #include <string>
+ 
+ 
+--- a/include/camp/detail/enummanager.hpp
++++ b/include/camp/detail/enummanager.hpp
+@@ -27,11 +27,13 @@
+ 
+ #include <camp/config.hpp>
+ #include <camp/detail/observernotifier.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/noncopyable.hpp>
+ #include <boost/shared_ptr.hpp>
+ #include <boost/multi_index_container.hpp>
+ #include <boost/multi_index/member.hpp>
+ #include <boost/multi_index/ordered_index.hpp>
++#endif
+ #include <string>
+ 
+ 
+--- a/include/camp/detail/functionimpl.hpp
++++ b/include/camp/detail/functionimpl.hpp
+@@ -29,9 +29,11 @@
+ #include <camp/value.hpp>
+ #include <camp/errors.hpp>
+ #include <camp/detail/callhelper.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/bind.hpp>
+ #include <boost/function.hpp>
+ #include <boost/assign/list_of.hpp>
++#endif
+ #include <string>
+ 
+ 
+--- a/include/camp/detail/functiontraits.hpp
++++ b/include/camp/detail/functiontraits.hpp
+@@ -26,9 +26,11 @@
+ 
+ 
+ #include <camp/detail/yesnotype.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/utility/enable_if.hpp>
+ #include <boost/function_types/is_callable_builtin.hpp>
+ #include <boost/function_types/result_type.hpp>
++#endif
+ 
+ 
+ namespace camp
+--- a/include/camp/detail/getter.hpp
++++ b/include/camp/detail/getter.hpp
+@@ -26,8 +26,10 @@
+ 
+ 
+ #include <camp/userobject.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/function.hpp>
+ #include <boost/shared_ptr.hpp>
++#endif
+ 
+ 
+ namespace camp
+--- a/include/camp/detail/issmartpointer.hpp
++++ b/include/camp/detail/issmartpointer.hpp
+@@ -26,7 +26,9 @@
+ 
+ 
+ #include <camp/detail/yesnotype.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/utility/enable_if.hpp>
++#endif
+ 
+ 
+ namespace camp
+--- a/include/camp/detail/objecttraits.hpp
++++ b/include/camp/detail/objecttraits.hpp
+@@ -27,9 +27,11 @@
+ 
+ #include <camp/detail/rawtype.hpp>
+ #include <camp/detail/issmartpointer.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/type_traits/is_const.hpp>
+ #include <boost/type_traits/is_pointer.hpp>
+ #include <boost/utility/enable_if.hpp>
++#endif
+ 
+ 
+ namespace camp
+--- a/include/camp/detail/propertyfactory.hpp
++++ b/include/camp/detail/propertyfactory.hpp
+@@ -31,10 +31,12 @@
+ #include <camp/detail/enumpropertyimpl.hpp>
+ #include <camp/detail/userpropertyimpl.hpp>
+ #include <camp/detail/functiontraits.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/function.hpp>
+ #include <boost/utility/enable_if.hpp>
+ #include <boost/type_traits/remove_reference.hpp>
+ #include <boost/type_traits/is_void.hpp>
++#endif
+ 
+ 
+ namespace camp
+--- a/include/camp/detail/typeid.hpp
++++ b/include/camp/detail/typeid.hpp
+@@ -27,7 +27,9 @@
+ 
+ #include <camp/detail/objecttraits.hpp>
+ #include <camp/detail/yesnotype.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/utility/enable_if.hpp>
++#endif
+ 
+ 
+ namespace camp
+--- a/include/camp/detail/valueimpl.hpp
++++ b/include/camp/detail/valueimpl.hpp
+@@ -27,7 +27,9 @@
+ #include <camp/type.hpp>
+ #include <camp/valuemapper.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/variant/static_visitor.hpp>
++#endif
+ 
+ 
+ namespace camp
+--- a/include/camp/enum.hpp
++++ b/include/camp/enum.hpp
+@@ -30,11 +30,13 @@
+ #include <camp/enumget.hpp>
+ #include <camp/detail/enummanager.hpp>
+ #include <camp/detail/typeid.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/noncopyable.hpp>
+ #include <boost/multi_index_container.hpp>
+ #include <boost/multi_index/member.hpp>
+ #include <boost/multi_index/ordered_index.hpp>
+ #include <boost/multi_index/random_access_index.hpp>
++#endif
+ #include <string>
+ 
+ 
+--- a/include/camp/enumbuilder.hpp
++++ b/include/camp/enumbuilder.hpp
+@@ -26,7 +26,9 @@
+ 
+ 
+ #include <camp/config.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/noncopyable.hpp>
++#endif
+ #include <string>
+ 
+ 
+--- a/include/camp/enumobject.hpp
++++ b/include/camp/enumobject.hpp
+@@ -27,9 +27,11 @@
+ 
+ #include <camp/config.hpp>
+ #include <camp/enumget.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/type_traits.hpp>
+ #include <boost/operators.hpp>
+ #include <boost/utility/enable_if.hpp>
++#endif
+ #include <string>
+ 
+ 
+--- a/include/camp/error.hpp
++++ b/include/camp/error.hpp
+@@ -26,8 +26,10 @@
+ 
+ 
+ #include <camp/config.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/current_function.hpp>
+ #include <boost/lexical_cast.hpp>
++#endif
+ #include <exception>
+ #include <string>
+ 
+--- a/include/camp/tagholder.hpp
++++ b/include/camp/tagholder.hpp
+@@ -28,7 +28,9 @@
+ #include <camp/config.hpp>
+ #include <camp/detail/getter.hpp>
+ #include <camp/value.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/shared_ptr.hpp>
++#endif
+ #include <map>
+ 
+ 
+--- a/include/camp/userobject.hpp
++++ b/include/camp/userobject.hpp
+@@ -30,10 +30,12 @@
+ #include <camp/errors.hpp>
+ #include <camp/detail/objecttraits.hpp>
+ #include <camp/detail/objectholder.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/operators.hpp>
+ #include <boost/shared_ptr.hpp>
+ #include <boost/scoped_ptr.hpp>
+ #include <boost/utility/enable_if.hpp>
++#endif
+ #include <string>
+ 
+ 
+--- a/include/camp/value.hpp
++++ b/include/camp/value.hpp
+@@ -31,7 +31,9 @@
+ #include <camp/userobject.hpp>
+ #include <camp/valuemapper.hpp>
+ #include <camp/detail/valueimpl.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/operators.hpp>
++#endif
+ #include <iosfwd>
+ #include <string>
+ 
+--- a/include/camp/valuemapper.hpp
++++ b/include/camp/valuemapper.hpp
+@@ -30,9 +30,11 @@
+ #include <camp/userobject.hpp>
+ #include <camp/arraymapper.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/lexical_cast.hpp>
+ #include <boost/type_traits.hpp>
+ #include <boost/utility/enable_if.hpp>
++#endif
+ 
+ 
+ namespace camp_ext
+--- a/include/camp/valuevisitor.hpp
++++ b/include/camp/valuevisitor.hpp
+@@ -25,7 +25,9 @@
+ #define CAMP_VALUEVISITOR_HPP
+ 
+ 
++#ifndef Q_MOC_RUN
+ #include <boost/variant/static_visitor.hpp>
++#endif
+ 
+ 
+ namespace camp
+--- a/test/arrayproperty.cpp
++++ b/test/arrayproperty.cpp
+@@ -24,7 +24,9 @@
+ #include <camp/classget.hpp>
+ #include <camp/errors.hpp>
+ #include <camp/arrayproperty.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace ArrayPropertyTest;
+ 
+--- a/test/arrayproperty.hpp
++++ b/test/arrayproperty.hpp
+@@ -25,7 +25,9 @@
+ 
+ #include <camp/camptype.hpp>
+ #include <camp/class.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/array.hpp>
++#endif
+ #include <list>
+ #include <vector>
+ 
+--- a/test/class.cpp
++++ b/test/class.cpp
+@@ -23,7 +23,9 @@
+ #include "class.hpp"
+ #include <camp/classget.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace ClassTest;
+ 
+--- a/test/classvisitor.cpp
++++ b/test/classvisitor.cpp
+@@ -22,7 +22,9 @@
+ 
+ #include "classvisitor.hpp"
+ #include <camp/classget.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace ClassVisitorTest;
+ 
+--- a/test/constructor.cpp
++++ b/test/constructor.cpp
+@@ -23,7 +23,9 @@
+ #include "constructor.hpp"
+ #include <camp/classget.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace ConstructorTest;
+ 
+--- a/test/enum.cpp
++++ b/test/enum.cpp
+@@ -23,7 +23,9 @@
+ #include "enum.hpp"
+ #include <camp/enumget.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace EnumTest;
+ 
+--- a/test/enumobject.cpp
++++ b/test/enumobject.cpp
+@@ -24,7 +24,9 @@
+ #include <camp/enumget.hpp>
+ #include <camp/enumobject.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace EnumObjectTest;
+ 
+--- a/test/enumproperty.cpp
++++ b/test/enumproperty.cpp
+@@ -25,7 +25,9 @@
+ #include <camp/enumget.hpp>
+ #include <camp/errors.hpp>
+ #include <camp/enumproperty.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace EnumPropertyTest;
+ 
+--- a/test/enumproperty.hpp
++++ b/test/enumproperty.hpp
+@@ -26,7 +26,9 @@
+ #include <camp/camptype.hpp>
+ #include <camp/enum.hpp>
+ #include <camp/class.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/array.hpp>
++#endif
+ #include <list>
+ #include <vector>
+ 
+--- a/test/function.cpp
++++ b/test/function.cpp
+@@ -25,7 +25,9 @@
+ #include <camp/enumget.hpp>
+ #include <camp/function.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace FunctionTest;
+ 
+--- a/test/function.hpp
++++ b/test/function.hpp
+@@ -27,7 +27,9 @@
+ #include <camp/enum.hpp>
+ #include <camp/class.hpp>
+ #include <camp/value.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/shared_ptr.hpp>
++#endif
+ #include <string>
+ 
+ namespace FunctionTest
+--- a/test/functionaccess.cpp
++++ b/test/functionaccess.cpp
+@@ -24,7 +24,9 @@
+ #include <camp/classget.hpp>
+ #include <camp/function.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace FunctionAccessTest;
+ 
+--- a/test/inheritance.cpp
++++ b/test/inheritance.cpp
+@@ -24,7 +24,9 @@
+ #include <camp/class.hpp>
+ #include <camp/classget.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace InheritanceTest;
+ 
+--- a/test/main.cpp
++++ b/test/main.cpp
+@@ -27,4 +27,6 @@
+ // so that we don't need to link to it as an external library.
+ // Note: to disable that and link to boost.test as a library,
+ // simply remove "/included" from the header path below.
++#ifndef Q_MOC_RUN
+ #include <boost/test/included/unit_test.hpp>
++#endif
+--- a/test/mapper.cpp
++++ b/test/mapper.cpp
+@@ -22,7 +22,9 @@
+ 
+ #include "mapper.hpp"
+ #include <camp/classget.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace MapperTest;
+ 
+--- a/test/property.cpp
++++ b/test/property.cpp
+@@ -25,7 +25,9 @@
+ #include <camp/enumget.hpp>
+ #include <camp/property.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace PropertyTest;
+ 
+--- a/test/property.hpp
++++ b/test/property.hpp
+@@ -26,7 +26,9 @@
+ #include <camp/camptype.hpp>
+ #include <camp/class.hpp>
+ #include <camp/enum.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/shared_ptr.hpp>
++#endif
+ #include <string>
+ 
+ namespace PropertyTest
+--- a/test/propertyaccess.cpp
++++ b/test/propertyaccess.cpp
+@@ -24,7 +24,9 @@
+ #include <camp/classget.hpp>
+ #include <camp/property.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace PropertyAccessTest;
+ 
+--- a/test/qt/functionmapping.cpp
++++ b/test/qt/functionmapping.cpp
+@@ -23,7 +23,9 @@
+ #include "functionmapping.hpp"
+ #include <camp/class.hpp>
+ #include <camp/classget.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace FunctionMappingTest;
+ 
+--- a/test/qt/main.cpp
++++ b/test/qt/main.cpp
+@@ -27,4 +27,6 @@
+ // so that we don't need to link to it as an external library.
+ // Note: to disable that and link to boost.test as a library,
+ // simply remove "/included" from the header path below.
++#ifndef Q_MOC_RUN
+ #include <boost/test/included/unit_test.hpp>
++#endif
+--- a/test/qt/propertymapping.cpp
++++ b/test/qt/propertymapping.cpp
+@@ -23,7 +23,9 @@
+ #include "propertymapping.hpp"
+ #include <camp/class.hpp>
+ #include <camp/classget.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace PropertyMappingTest;
+ 
+--- a/test/qt/qstringmapping.cpp
++++ b/test/qt/qstringmapping.cpp
+@@ -22,7 +22,9 @@
+ 
+ #include <camp/value.hpp>
+ #include <camp/qt/qt.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ #include <QString>
+ 
+ // To make the boost.test logger happy
+--- a/test/tagholder.cpp
++++ b/test/tagholder.cpp
+@@ -23,7 +23,9 @@
+ #include "tagholder.hpp"
+ #include <camp/classget.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace TagHolderTest;
+ 
+--- a/test/userobject.cpp
++++ b/test/userobject.cpp
+@@ -24,7 +24,9 @@
+ #include <camp/classget.hpp>
+ #include <camp/errors.hpp>
+ #include <camp/userobject.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace UserObjectTest;
+ 
+--- a/test/userobject.hpp
++++ b/test/userobject.hpp
+@@ -25,7 +25,9 @@
+ 
+ #include <camp/camptype.hpp>
+ #include <camp/class.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/noncopyable.hpp>
++#endif
+ #include <ostream>
+ 
+ namespace UserObjectTest
+--- a/test/userproperty.cpp
++++ b/test/userproperty.cpp
+@@ -23,7 +23,9 @@
+ #include "userproperty.hpp"
+ #include <camp/classget.hpp>
+ #include <camp/userproperty.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace UserPropertyTest;
+ 
+--- a/test/value.cpp
++++ b/test/value.cpp
+@@ -23,7 +23,9 @@
+ #include "value.hpp"
+ #include <camp/value.hpp>
+ #include <camp/errors.hpp>
++#ifndef Q_MOC_RUN
+ #include <boost/test/unit_test.hpp>
++#endif
+ 
+ using namespace ValueTest;
+ 
diff -Nru camp-0.7.1.1/debian/patches/series camp-0.7.1.1/debian/patches/series
--- camp-0.7.1.1/debian/patches/series	2014-09-11 04:08:09.000000000 -0700
+++ camp-0.7.1.1/debian/patches/series	2015-08-14 10:06:53.000000000 -0700
@@ -2,3 +2,4 @@
 rm_boost_version.patch
 remove_licences_files.patch
 fix_unit_tests_execution.patch
+hide_boost_from_qt4moc.patch

--- End Message ---
--- Begin Message ---
Source: camp
Source-Version: 0.7.1.1-2

We believe that the bug you reported is fixed in the latest version of
camp, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 795...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Corentin Desfarges <corentin.desfarges....@gmail.com> (supplier of updated camp 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 21 Dec 2015 12:59:59 +0200
Source: camp
Binary: libcamp0.7 libcamp0.7-dev
Architecture: source amd64
Version: 0.7.1.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Corentin Desfarges <corentin.desfarges....@gmail.com>
Description:
 libcamp0.7 - C++ multi-purpose reflection library
 libcamp0.7-dev - C++ multi-purpose reflection library (development files)
Closes: 795497
Changes:
 camp (0.7.1.1-2) unstable; urgency=medium
 .
   * Apply patch to prevent parse error at "BOOST_JOIN". Closes: #795497.
   * Team maintenance in Debian Med team
Checksums-Sha1:
 053cca246cc682a2283f0d78ce8ac73d4a990ebe 2021 camp_0.7.1.1-2.dsc
 9d4c7b499c8d1410843840fcfae999961d0c688b 560125 camp_0.7.1.1.orig.tar.gz
 8fcd656718bb37a97102a0a8ab362f8ea8bfda82 17764 camp_0.7.1.1-2.debian.tar.xz
 883bfa62be6ec8210869ee401ec266be0d80c3b8 1560338 
libcamp0.7-dbgsym_0.7.1.1-2_amd64.deb
 15cc07e236d5f25df1cebc6871ee81560250d857 44036 
libcamp0.7-dev_0.7.1.1-2_amd64.deb
 261c8ede431ccec2887547f1b3e8607967e38146 76182 libcamp0.7_0.7.1.1-2_amd64.deb
Checksums-Sha256:
 3def51fd7dff5701b1062c10003e27c6c54c5c8fbc81f6751bc5649fff5b9308 2021 
camp_0.7.1.1-2.dsc
 76938e555bcd6f1642763a0626f38d80b5f61d9d89423c9c88a1c8daef991ead 560125 
camp_0.7.1.1.orig.tar.gz
 e607fe00092acdd43ee35772514856e80ecea7b6492c80d473c82ae30d07acf7 17764 
camp_0.7.1.1-2.debian.tar.xz
 c2a410bf7f5c4ccba229734659dcbcbca8de21f5bd6d7df148775c38671a6831 1560338 
libcamp0.7-dbgsym_0.7.1.1-2_amd64.deb
 0e0f29a6344945431cc1203fd0e5159203ce6773644822cef4748705607edf81 44036 
libcamp0.7-dev_0.7.1.1-2_amd64.deb
 13fb95d476b220c501445f0394139bbb5b3dc7b836a1c457864a8383cb185ea8 76182 
libcamp0.7_0.7.1.1-2_amd64.deb
Files:
 1b96366b81a9a63719455555c4085142 2021 science optional camp_0.7.1.1-2.dsc
 5ed54faca810f47da17cb3eef6fd3346 560125 science optional 
camp_0.7.1.1.orig.tar.gz
 08b3df7b8cb54a577a8e51396778f140 17764 science optional 
camp_0.7.1.1-2.debian.tar.xz
 2d31990e31838c2b621bf1b7ca38537a 1560338 debug extra 
libcamp0.7-dbgsym_0.7.1.1-2_amd64.deb
 b275ecd330d1938ef3043bdf496cc958 44036 libdevel optional 
libcamp0.7-dev_0.7.1.1-2_amd64.deb
 52eb18385f0fa97e8534202f88e72740 76182 libs optional 
libcamp0.7_0.7.1.1-2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCgAGBQJWeCabAAoJEFeKBJTRxkbRZ6kP/3n3rZiDhyO2TsX2Iarx85Tq
ohI2O4gewiBBTmvtnIR56qfFudpr7MQbuHPH7AuMG2ibdZORV051Lzf8ffBOIvoe
1YLAzkmrarqor16CJnKdCM0egAyGd+UnHYNMVyFP87JXEQq0poh1kTQbMEMdaBNU
b937geeekxpchGCnWf83cBAKHHJ3h+m8TA/LLaoQbX/Q19n7voQ8i7tT2SnAqmog
pYXZGLXW0X16UdltTL2otPFIjWuIqk02BvNcFOhzrJ5UdKcQyo4Oq6ZmjH94HLbQ
PRZXsU4TLCAtDuGNlM0DA+vQ+DXL0vLF/eCGeTd4JdOENNIhYqFW9+gehL5gp4aI
suN8cThJMqp1V6NIVDvwBtoC5Y55PJxW/kxyxVSC4Fav7EEUR2YwfmnB1AGWt92G
ymlKDHvllcqQ7eo+3ER9twi2v3TSpFlMSZV0EIUgNMajWHoyPbik61xaEE1UsMru
LRW2wUOLoaV/9cYuinpqQSwjm1FYUc44agOE3vFU15I3eL4aWvY6NxTEwH24ZCea
wpr/1tm7y7N0c83nNs0tC/c8PWz60MYcA1CLRQDaA9mloxi/j6U/ueDRlKOK2iYa
DVqMiWph+PTum2ur/+91JdsDbeCkgys+sJzi/c6cu5Y0/S2xZQYZ9EmQ7aJ8fywV
xxFrsqPrQZPhZ3EoXcSW
=zOEQ
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to