[pkg-boost-commits] r13878 - in boost/trunk/debian: . patches

Domenico Andreoli cavok at costa.debian.org
Thu Oct 27 12:30:24 UTC 2005


Author: cavok
Date: 2005-10-27 12:30:23 +0000 (Thu, 27 Oct 2005)
New Revision: 13878

Added:
   boost/trunk/debian/patches/
   boost/trunk/debian/patches/01-ublas1331.patch
   boost/trunk/debian/patches/02-is_incrementable1331.patch
   boost/trunk/debian/patches/03-st_mt.patch
Removed:
   boost/trunk/debian/01-ublas1331.patch
   boost/trunk/debian/02-is_incrementable1331.patch
   boost/trunk/debian/03-st_mt.patch
Log:
moved patch files to debian/patches

Deleted: boost/trunk/debian/01-ublas1331.patch
===================================================================
--- boost/trunk/debian/01-ublas1331.patch	2005-10-26 21:13:38 UTC (rev 13877)
+++ boost/trunk/debian/01-ublas1331.patch	2005-10-27 12:30:23 UTC (rev 13878)
@@ -1,329 +0,0 @@
-Index: boost/numeric/ublas/exception.hpp
-===================================================================
---- boost/numeric/ublas/exception.hpp	(revision 13869)
-+++ boost/numeric/ublas/exception.hpp	(working copy)
-@@ -254,10 +254,8 @@
- //    template<class E>
- //    BOOST_UBLAS_INLINE
- //    void check_ex (bool expression, const char *file, int line, const E &e) {}
--#define BOOST_UBLAS_CHECK(expression, e) \
--    if (! (expression) );
--#define BOOST_UBLAS_CHECK_EX(expression, file, line, e) \
--    if (! (expression) );
-+#define BOOST_UBLAS_CHECK(expression, e)
-+#define BOOST_UBLAS_CHECK_EX(expression, file, line, e)
- #endif
- 
- 
-Index: boost/numeric/ublas/vector.hpp
-===================================================================
---- boost/numeric/ublas/vector.hpp	(revision 13869)
-+++ boost/numeric/ublas/vector.hpp	(working copy)
-@@ -153,7 +153,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         vector &operator = (const vector_container<C> &v) {
--            resize (v.size (), false);
-+            resize (v ().size (), false);
-             assign (v);
-             return *this;
-         }
-@@ -592,7 +592,7 @@
- 
-         // Resizing
-         BOOST_UBLAS_INLINE
--        void resize (size_type size, bool preserve = true) {
-+        void resize (size_type size, bool /*preserve*/ = true) {
-             size_ = size;
-         }
- 
-@@ -785,7 +785,7 @@
- 
-         // Resizing
-         BOOST_UBLAS_INLINE
--        void resize (size_type size, bool preserve = true) {
-+        void resize (size_type size, bool /*preserve*/ = true) {
-             size_ = size;
-         }
- 
-@@ -1304,7 +1304,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         c_vector &operator = (const vector_container<C> &v) {
--            resize (v.size (), false);
-+            resize (v ().size (), false);
-             assign (v);
-             return *this;
-         }
-Index: boost/numeric/ublas/vector_proxy.hpp
-===================================================================
---- boost/numeric/ublas/vector_proxy.hpp	(revision 13869)
-+++ boost/numeric/ublas/vector_proxy.hpp	(working copy)
-@@ -973,13 +973,13 @@
-     // Simple Projections
-     template<class V>
-     BOOST_UBLAS_INLINE
--    vector_slice<V> subslice (V &data, typename V::size_type_t start, typename V::differenece_type stride, typename V::size_type size) {
-+    vector_slice<V> subslice (V &data, typename V::size_type start, typename V::difference_type stride, typename V::size_type size) {
-         typedef basic_slice<typename V::size_type, typename V::difference_type> slice_type;
-         return vector_slice<V> (data, slice_type (start, stride, size));
-     }
-     template<class V>
-     BOOST_UBLAS_INLINE
--    vector_slice<const V> subslice (const V &data, typename V::size_type start, typename V::differenece_type stride, typename V::size_type size)  {
-+    vector_slice<const V> subslice (const V &data, typename V::size_type start, typename V::difference_type stride, typename V::size_type size)  {
-         typedef basic_slice<typename V::size_type, typename V::difference_type> slice_type;
-         return vector_slice<const V> (data, slice_type (start, stride, size));
-     }
-Index: boost/numeric/ublas/matrix.hpp
-===================================================================
---- boost/numeric/ublas/matrix.hpp	(revision 13869)
-+++ boost/numeric/ublas/matrix.hpp	(working copy)
-@@ -185,7 +185,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         matrix &operator = (const matrix_container<C> &m) {
--            resize (m.size1 (), m.size2 ());
-+            resize (m ().size1 (), m ().size2 (), false);
-             assign (m);
-             return *this;
-         }
-@@ -1132,7 +1132,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         vector_of_vector &operator = (const matrix_container<C> &m) {
--            resize (m.size1 (), m.size2 ());
-+            resize (m ().size1 (), m ().size2 (), false);
-             assign (m);
-             return *this;
-         }
-@@ -1989,7 +1989,7 @@
-             size2_ = size;
-         }
-         BOOST_UBLAS_INLINE
--        void resize (size_type size1, size_type size2, bool preserve = true) {
-+        void resize (size_type size1, size_type size2, bool /*preserve*/ = true) {
-             size1_ = size1;
-             size2_ = size2;
-         }
-@@ -2347,7 +2347,7 @@
-             size2_ = size;
-         }
-         BOOST_UBLAS_INLINE
--        void resize (size_type size1, size_type size2, bool preserve = true) {
-+        void resize (size_type size1, size_type size2, bool /*preserve*/ = true) {
-             size1_ = size1;
-             size2_ = size2;
-         }
-@@ -2721,14 +2721,14 @@
- 
-         // Resizing
-         BOOST_UBLAS_INLINE
--        void resize (size_type size1, size_type size2, bool preserve = true) {
-+        void resize (size_type size1, size_type size2, bool /*preserve*/ = true) {
-             size1_ = size1;
-             size2_ = size2;
-         }
- 
-         // Element access
-         BOOST_UBLAS_INLINE
--        const_reference operator () (size_type i, size_type j) const {
-+        const_reference operator () (size_type /*i*/, size_type /*j*/) const {
-             return value_; 
-         }
- 
-@@ -3236,7 +3236,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         c_matrix &operator = (const matrix_container<C> &m) {
--            resize (m.size1 (), m.size2 ());
-+            resize (m ().size1 (), m ().size2 (), false);
-             assign (m);
-             return *this;
-         }
-Index: boost/numeric/ublas/storage.hpp
-===================================================================
---- boost/numeric/ublas/storage.hpp	(revision 13869)
-+++ boost/numeric/ublas/storage.hpp	(working copy)
-@@ -292,15 +292,13 @@
-         explicit BOOST_UBLAS_INLINE
-         bounded_array (size_type size):
-             size_ (size) /*, data_ ()*/ {
--            if (size_ > N)
--                bad_size ().raise ();
-+            BOOST_UBLAS_CHECK (size_ <= N, bad_size ());
-             // data_ (an array) elements are already default constructed
-         }
-         BOOST_UBLAS_INLINE
-         bounded_array (size_type size, const value_type &init):
-             size_ (size) /*, data_ ()*/ {
--            if (size_ > N)
--                bad_size ().raise ();
-+            BOOST_UBLAS_CHECK (size_ <= N, bad_size ());
-             // ISSUE elements should be value constructed here, but we must fill instead as already default constructed
-             std::fill (begin(), end(), init) ;
-         }
-@@ -315,14 +313,12 @@
-         // Resizing
-         BOOST_UBLAS_INLINE
-         void resize (size_type size) {
--            if (size > N)
--                bad_size ().raise ();
-+            BOOST_UBLAS_CHECK (size_ <= N, bad_size ());
-             size_ = size;
-         }
-         BOOST_UBLAS_INLINE
-         void resize (size_type size, value_type init) {
--            if (size > N)
--                bad_size ().raise ();
-+            BOOST_UBLAS_CHECK (size_ <= N, bad_size ());
-             if (size > size_)
-                 std::fill (data_ + size_, data_ + size, init);
-             size_ = size;
-@@ -625,10 +621,10 @@
- 
-         typedef shallow_array_adaptor<T> self_type;
- 
--        template<class T>
-+        template<class TT>
-         struct leaker {
-             typedef void result_type;
--            typedef T *argument_type;
-+            typedef TT *argument_type;
- 
-             BOOST_UBLAS_INLINE
-             result_type operator () (argument_type x) {}
-Index: boost/numeric/ublas/matrix_proxy.hpp
-===================================================================
---- boost/numeric/ublas/matrix_proxy.hpp	(revision 13869)
-+++ boost/numeric/ublas/matrix_proxy.hpp	(working copy)
-@@ -4010,13 +4010,13 @@
-     // Simple Projections
-     template<class M>
-     BOOST_UBLAS_INLINE
--    matrix_slice<M> subslice (M &data, typename M::size_type start1, typename M::differenece_type stride1, typename M::size_type size1, typename M::size_type start2, typename M::differenece_type stride2, typename M::size_type size2) {
-+    matrix_slice<M> subslice (M &data, typename M::size_type start1, typename M::difference_type stride1, typename M::size_type size1, typename M::size_type start2, typename M::difference_type stride2, typename M::size_type size2) {
-         typedef basic_slice<typename M::size_type, typename M::difference_type> slice_type;
-         return matrix_slice<M> (data, slice_type (start1, stride1, size1), slice_type (start2, stride2, size2));
-     }
-     template<class M>
-     BOOST_UBLAS_INLINE
--    matrix_slice<const M> subslice (const M &data, typename M::size_type start1, typename M::differenece_type stride1, typename M::size_type size1, typename M::size_type start2, typename M::differenece_type stride2, typename M::size_type size2) {
-+    matrix_slice<const M> subslice (const M &data, typename M::size_type start1, typename M::difference_type stride1, typename M::size_type size1, typename M::size_type start2, typename M::difference_type stride2, typename M::size_type size2) {
-         typedef basic_slice<typename M::size_type, typename M::difference_type> slice_type;
-         return matrix_slice<const M> (data (), slice_type (start1, stride1, size1), slice_type (start2, stride2, size2));
-     }
-Index: boost/numeric/ublas/vector_sparse.hpp
-===================================================================
---- boost/numeric/ublas/vector_sparse.hpp	(revision 13869)
-+++ boost/numeric/ublas/vector_sparse.hpp	(working copy)
-@@ -62,7 +62,7 @@
-         }
-         BOOST_UBLAS_INLINE
-         sparse_vector_element (const sparse_vector_element &p):
--            container_reference<vector_type> (p), i_ (p.i_), d_ (p.d_) {}
-+            container_reference<vector_type> (p), i_ (p.i_) {}
-         BOOST_UBLAS_INLINE
-         ~sparse_vector_element () {
-         }
-@@ -447,7 +447,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         mapped_vector &operator = (const vector_container<C> &v) {
--            resize (v.size (), false);
-+            resize (v ().size (), false);
-             assign (v);
-             return *this;
-         }
-@@ -997,7 +997,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         compressed_vector &operator = (const vector_container<C> &v) {
--            resize (v.size (), false);
-+            resize (v ().size (), false);
-             assign (v);
-             return *this;
-         }
-@@ -1615,7 +1615,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         coordinate_vector &operator = (const vector_container<C> &v) {
--            resize (v.size (), false);
-+            resize (v ().size (), false);
-             assign (v);
-             return *this;
-         }
-Index: boost/numeric/ublas/matrix_sparse.hpp
-===================================================================
---- boost/numeric/ublas/matrix_sparse.hpp	(revision 13869)
-+++ boost/numeric/ublas/matrix_sparse.hpp	(working copy)
-@@ -64,7 +64,7 @@
-         }
-         BOOST_UBLAS_INLINE
-         sparse_matrix_element (const sparse_matrix_element &p):
--            container_reference<matrix_type> (p), i_ (p.i_), d_ (p.d_) {}
-+            container_reference<matrix_type> (p), i_ (p.i_), j_ (p.j_) {}
-         BOOST_UBLAS_INLINE
-         ~sparse_matrix_element () {
-         }
-@@ -431,7 +431,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         mapped_matrix &operator = (const matrix_container<C> &m) {
--            resize (m.size1 (), m.size2 ());
-+            resize (m ().size1 (), m ().size2 (), false);
-             assign (m);
-             return *this;
-         }
-@@ -1500,7 +1500,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         mapped_vector_of_mapped_vector &operator = (const matrix_container<C> &m) {
--            resize (m.size1 (), m.size2 ());
-+            resize (m ().size1 (), m ().size2 ());
-             assign (m);
-             return *this;
-         }
-@@ -2843,7 +2843,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         compressed_matrix &operator = (const matrix_container<C> &m) {
--            resize (m.size1 (), m.size2 ());
-+            resize (m ().size1 (), m ().size2 (), false);
-             assign (m);
-             return *this;
-         }
-@@ -4008,6 +4008,7 @@
-             value_data_.resize (capacity_);
-             filled_ = 0;
-             sorted_filled_ = filled_;
-+            sorted_ = true;
-             storage_invariants ();
-         }
- 
-@@ -4137,6 +4138,7 @@
-                 size2_ = m.size2_;
-                 capacity_ = m.capacity_;
-                 filled_ = m.filled_;
-+                sorted_filled_ = m.sorted_filled_;
-                 sorted_ = m.sorted_;
-                 index1_data_ = m.index1_data_;
-                 index2_data_ = m.index2_data_;
-@@ -4151,7 +4153,7 @@
-         template<class C>          // Container assignment without temporary
-         BOOST_UBLAS_INLINE
-         coordinate_matrix &operator = (const matrix_container<C> &m) {
--            resize (m.size1 (), m.size2 ());
-+            resize (m ().size1 (), m ().size2 (), false);
-             assign (m);
-             return *this;
-         }
-@@ -4302,7 +4304,7 @@
-             BOOST_UBLAS_CHECK (filled_ > 0, external_logic ());
-             -- filled_;
-             sorted_filled_ = (std::min) (sorted_filled_, filled_);
--            sorted_ = sorted_filled_ = filled;
-+            sorted_ = sorted_filled_ = filled_;
-             storage_invariants ();
-         }
- 

Deleted: boost/trunk/debian/02-is_incrementable1331.patch
===================================================================
--- boost/trunk/debian/02-is_incrementable1331.patch	2005-10-26 21:13:38 UTC (rev 13877)
+++ boost/trunk/debian/02-is_incrementable1331.patch	2005-10-27 12:30:23 UTC (rev 13878)
@@ -1,47 +0,0 @@
---- boost/detail/is_incrementable.hpp	2005-10-25 20:21:17.838129392 +0200
-+++ /home/prudhomm/Devel/C++/Boost/boost-1.33/boost/detail/is_incrementable.hpp	2005-10-17 09:48:11.000000000 +0200
-@@ -32,8 +32,26 @@
-   struct any { template <class T> any(T const&); };
- 
-   // This is a last-resort operator++ for when none other is found
-+# if BOOST_WORKAROUND(__GNUC__, == 4) && __GNUC_MINOR__ == 0 && __GNUC_PATCHLEVEL__ == 2
-+  
-+}
-+
-+namespace is_incrementable_2
-+{
-+  is_incrementable_::tag operator++(is_incrementable_::any const&);
-+  is_incrementable_::tag operator++(is_incrementable_::any const&,int);
-+}
-+using namespace is_incrementable_2;
-+
-+namespace is_incrementable_
-+{
-+  
-+# else
-+  
-   tag operator++(any const&);
-   tag operator++(any const&,int);
-+  
-+# endif 
- 
- # if BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3202)) \
-     || BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
-@@ -78,7 +96,7 @@
- 
- template<typename T> 
- struct is_incrementable 
--   BOOST_TT_AUX_BOOL_C_BASE(::boost::detail::is_incrementable_::impl<T>::value)
-+BOOST_TT_AUX_BOOL_C_BASE(::boost::detail::is_incrementable_::impl<T>::value)
- { 
-     BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(::boost::detail::is_incrementable_::impl<T>::value)
-     BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_incrementable,(T))
-@@ -86,7 +104,7 @@
- 
- template<typename T> 
- struct is_postfix_incrementable 
--    BOOST_TT_AUX_BOOL_C_BASE(::boost::detail::is_incrementable_::impl<T>::value)
-+BOOST_TT_AUX_BOOL_C_BASE(::boost::detail::is_incrementable_::impl<T>::value)
- { 
-     BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(::boost::detail::is_incrementable_::postfix_impl<T>::value)
-     BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_postfix_incrementable,(T))

Deleted: boost/trunk/debian/03-st_mt.patch
===================================================================
--- boost/trunk/debian/03-st_mt.patch	2005-10-26 21:13:38 UTC (rev 13877)
+++ boost/trunk/debian/03-st_mt.patch	2005-10-27 12:30:23 UTC (rev 13878)
@@ -1,188 +0,0 @@
-diff -ur boost-1.33.0/debian/rules boost-1.33.0.st_mt/debian/rules
---- boost-1.33.0/debian/rules	2005-10-24 21:06:17.000000000 +0200
-+++ boost-1.33.0.st_mt/debian/rules	2005-10-24 21:03:38.000000000 +0200
-@@ -17,6 +17,8 @@
- # Boost libraries encode build information in the resulting library
- # filename: toolset, threading, runtime, and version.
- #
-+release_suffix_st = -gcc-$(boost_version)
-+debug_suffix_st = -gcc-d-$(boost_version)
- release_suffix = -gcc-mt-$(boost_version)
- debug_suffix = -gcc-mt-d-$(boost_version)
- 
-@@ -33,7 +35,7 @@
- 	-sTOOLS=gcc \
- 	-sGCC=gcc \
- 	-sGXX=g++ \
--	-sBUILD="debug release <define>_REENTRANT <threading>multi" \
-+	-sBUILD="debug release <define>_REENTRANT <threading>single/multi" \
- 	-sPYTHON_VERSION=2.3 \
- 	-sPYTHON_ROOT=/usr
- 
-@@ -135,6 +137,10 @@
- 	   debian/tmp/usr/lib/libboost_date_time$(release_suffix).so.$(SOVERSION)
- 	dh_install -plibboost-dbg --autodest \
- 	   debian/tmp/usr/lib/libboost_date_time$(debug_suffix).so.$(SOVERSION)
-+	dh_install -plibboost-date-time$(SOVERSION) --autodest \
-+	   debian/tmp/usr/lib/libboost_date_time$(release_suffix_st).so.$(SOVERSION)
-+	dh_install -plibboost-dbg --autodest \
-+	   debian/tmp/usr/lib/libboost_date_time$(debug_suffix_st).so.$(SOVERSION)
- 	dh_link -plibboost-dbg \
- 	   usr/lib/libboost_date_time$(debug_suffix).so.$(SOVERSION) \
- 	   usr/lib/debug/usr/lib/libboost_date_time$(release_suffix).so.$(SOVERSION)
-@@ -145,7 +151,9 @@
- 	   debian/libboost-date-time-dev/usr/include/boost
- 	dh_install -plibboost-date-time-dev --autodest \
- 	   debian/tmp/usr/lib/libboost_date_time$(release_suffix).a \
--	   debian/tmp/usr/lib/libboost_date_time$(release_suffix).so
-+	   debian/tmp/usr/lib/libboost_date_time$(release_suffix).so \
-+	   debian/tmp/usr/lib/libboost_date_time$(release_suffix_st).a \
-+	   debian/tmp/usr/lib/libboost_date_time$(release_suffix_st).so
- 	dh_link -plibboost-date-time-dev \
- 	   usr/lib/libboost_date_time$(release_suffix).a \
- 	   usr/lib/libboost_date_time.a \
-@@ -158,6 +166,10 @@
- 	   debian/tmp/usr/lib/libboost_filesystem$(release_suffix).so.$(SOVERSION)
- 	dh_install -plibboost-dbg --autodest \
- 	   debian/tmp/usr/lib/libboost_filesystem$(debug_suffix).so.$(SOVERSION)
-+	dh_install -plibboost-filesystem$(SOVERSION) --autodest \
-+	   debian/tmp/usr/lib/libboost_filesystem$(release_suffix_st).so.$(SOVERSION)
-+	dh_install -plibboost-dbg --autodest \
-+	   debian/tmp/usr/lib/libboost_filesystem$(debug_suffix_st).so.$(SOVERSION)
- 	dh_link -plibboost-dbg \
- 	   usr/lib/libboost_filesystem$(debug_suffix).so.$(SOVERSION) \
- 	   usr/lib/debug/usr/lib/libboost_filesystem$(release_suffix).so.$(SOVERSION)
-@@ -167,6 +179,8 @@
- 	mv debian/libboost-dev/usr/include/boost/filesystem \
- 	   debian/libboost-filesystem-dev/usr/include/boost
- 	dh_install -plibboost-filesystem-dev --autodest \
-+	   debian/tmp/usr/lib/libboost_filesystem$(release_suffix_st).a \
-+	   debian/tmp/usr/lib/libboost_filesystem$(release_suffix_st).so \
- 	   debian/tmp/usr/lib/libboost_filesystem$(release_suffix).a \
- 	   debian/tmp/usr/lib/libboost_filesystem$(release_suffix).so
- 	dh_link -plibboost-filesystem-dev \
-@@ -199,6 +213,10 @@
- 	   debian/tmp/usr/lib/libboost_program_options$(release_suffix).so.$(SOVERSION)
- 	dh_install -plibboost-dbg --autodest \
- 	   debian/tmp/usr/lib/libboost_program_options$(debug_suffix).so.$(SOVERSION)
-+	dh_install -plibboost-program-options$(SOVERSION) --autodest \
-+	   debian/tmp/usr/lib/libboost_program_options$(release_suffix_st).so.$(SOVERSION)
-+	dh_install -plibboost-dbg --autodest \
-+	   debian/tmp/usr/lib/libboost_program_options$(debug_suffix_st).so.$(SOVERSION)
- 	dh_link -plibboost-dbg \
- 	   usr/lib/libboost_program_options$(debug_suffix).so.$(SOVERSION) \
- 	   usr/lib/debug/usr/lib/libboost_program_options$(release_suffix).so.$(SOVERSION)
-@@ -208,6 +226,8 @@
- 	mv debian/libboost-dev/usr/include/boost/program_options* \
- 	   debian/libboost-program-options-dev/usr/include/boost
- 	dh_install -plibboost-program-options-dev --autodest \
-+	   debian/tmp/usr/lib/libboost_program_options$(release_suffix_st).a \
-+	   debian/tmp/usr/lib/libboost_program_options$(release_suffix_st).so \
- 	   debian/tmp/usr/lib/libboost_program_options$(release_suffix).a \
- 	   debian/tmp/usr/lib/libboost_program_options$(release_suffix).so
- 	dh_link -plibboost-program-options-dev \
-@@ -219,12 +239,16 @@
- 
- 	# package libboost-python$(SOVERSION)
- 	dh_install -plibboost-python$(SOVERSION) --autodest \
-+	   debian/tmp/usr/lib/libboost_python$(release_suffix_st).so.$(SOVERSION)
-+	dh_install -plibboost-python$(SOVERSION) --autodest \
- 	   debian/tmp/usr/lib/libboost_python$(release_suffix).so.$(SOVERSION)
- 	mkdir -p debian/libboost-python$(SOVERSION)/usr/share/lintian/overrides
- 	install -m644 \
- 	   debian/libboost-python$(SOVERSION).lintian-overrides \
- 	   debian/libboost-python$(SOVERSION)/usr/share/lintian/overrides/libboost-python$(SOVERSION)
- 	dh_install -plibboost-dbg --autodest \
-+	   debian/tmp/usr/lib/libboost_python$(debug_suffix_st).so.$(SOVERSION)
-+	dh_install -plibboost-dbg --autodest \
- 	   debian/tmp/usr/lib/libboost_python$(debug_suffix).so.$(SOVERSION)
- 	dh_link -plibboost-dbg \
- 	   usr/lib/libboost_python$(debug_suffix).so.$(SOVERSION) \
-@@ -235,6 +259,8 @@
- 	mv debian/libboost-dev/usr/include/boost/python* \
- 	   debian/libboost-python-dev/usr/include/boost
- 	dh_install -plibboost-python-dev --autodest \
-+	   debian/tmp/usr/lib/libboost_python$(release_suffix_st).so
-+	dh_install -plibboost-python-dev --autodest \
- 	   debian/tmp/usr/lib/libboost_python$(release_suffix).so
- 	dh_link -plibboost-python-dev \
- 	   usr/lib/libboost_python$(release_suffix).so \
-@@ -250,6 +276,10 @@
- 	   debian/tmp/usr/lib/libboost_regex$(release_suffix).so.$(SOVERSION)
- 	dh_install -plibboost-dbg --autodest \
- 	   debian/tmp/usr/lib/libboost_regex$(debug_suffix).so.$(SOVERSION)
-+	dh_install -plibboost-regex$(SOVERSION) --autodest \
-+	   debian/tmp/usr/lib/libboost_regex$(release_suffix_st).so.$(SOVERSION)
-+	dh_install -plibboost-dbg --autodest \
-+	   debian/tmp/usr/lib/libboost_regex$(debug_suffix_st).so.$(SOVERSION)
- 	dh_link -plibboost-dbg \
- 	   usr/lib/libboost_regex$(debug_suffix).so.$(SOVERSION) \
- 	   usr/lib/debug/usr/lib/libboost_regex$(release_suffix).so.$(SOVERSION)
-@@ -259,6 +289,8 @@
- 	mv debian/libboost-dev/usr/include/boost/*regex* \
- 	   debian/libboost-regex-dev/usr/include/boost
- 	dh_install -plibboost-regex-dev --autodest \
-+	   debian/tmp/usr/lib/libboost_regex$(release_suffix_st).a \
-+	   debian/tmp/usr/lib/libboost_regex$(release_suffix_st).so \
- 	   debian/tmp/usr/lib/libboost_regex$(release_suffix).a \
- 	   debian/tmp/usr/lib/libboost_regex$(release_suffix).so
- 	dh_link -plibboost-regex-dev \
-@@ -272,6 +304,8 @@
- 	mv debian/libboost-dev/usr/include/boost/*serialization* \
- 	   debian/libboost-serialization-dev/usr/include/boost
- 	dh_install -plibboost-serialization-dev --autodest \
-+	   debian/tmp/usr/lib/libboost_serialization$(release_suffix_st).a \
-+	   debian/tmp/usr/lib/libboost_wserialization$(release_suffix_st).a \
- 	   debian/tmp/usr/lib/libboost_serialization$(release_suffix).a \
- 	   debian/tmp/usr/lib/libboost_wserialization$(release_suffix).a
- 	dh_link -plibboost-serialization-dev \
-@@ -286,6 +320,10 @@
- 	   debian/tmp/usr/lib/libboost_signals$(release_suffix).so.$(SOVERSION)
- 	dh_install -plibboost-dbg --autodest \
- 	   debian/tmp/usr/lib/libboost_signals$(debug_suffix).so.$(SOVERSION)
-+	dh_install -plibboost-signals$(SOVERSION) --autodest \
-+	   debian/tmp/usr/lib/libboost_signals$(release_suffix_st).so.$(SOVERSION)
-+	dh_install -plibboost-dbg --autodest \
-+	   debian/tmp/usr/lib/libboost_signals$(debug_suffix_st).so.$(SOVERSION)
- 	dh_link -plibboost-dbg \
- 	   usr/lib/libboost_signals$(debug_suffix).so.$(SOVERSION) \
- 	   usr/lib/debug/usr/lib/libboost_signals$(release_suffix).so.$(SOVERSION)
-@@ -295,6 +333,8 @@
- 	mv debian/libboost-dev/usr/include/boost/*signal* \
- 	   debian/libboost-signals-dev/usr/include/boost
- 	dh_install -plibboost-signals-dev --autodest \
-+	   debian/tmp/usr/lib/libboost_signals$(release_suffix_st).a \
-+	   debian/tmp/usr/lib/libboost_signals$(release_suffix_st).so \
- 	   debian/tmp/usr/lib/libboost_signals$(release_suffix).a \
- 	   debian/tmp/usr/lib/libboost_signals$(release_suffix).so
- 	dh_link -plibboost-signals-dev \
-@@ -306,10 +346,16 @@
- 
- 	# package libboost-test$(SOVERSION)
- 	dh_install -plibboost-test$(SOVERSION) --autodest \
-+	   debian/tmp/usr/lib/libboost_prg_exec_monitor$(release_suffix_st).so.$(SOVERSION) \
-+	   debian/tmp/usr/lib/libboost_test_exec_monitor$(release_suffix_st).so.$(SOVERSION) \
-+	   debian/tmp/usr/lib/libboost_unit_test_framework$(release_suffix_st).so.$(SOVERSION) \
- 	   debian/tmp/usr/lib/libboost_prg_exec_monitor$(release_suffix).so.$(SOVERSION) \
- 	   debian/tmp/usr/lib/libboost_test_exec_monitor$(release_suffix).so.$(SOVERSION) \
- 	   debian/tmp/usr/lib/libboost_unit_test_framework$(release_suffix).so.$(SOVERSION)
- 	dh_install -plibboost-dbg --autodest \
-+	   debian/tmp/usr/lib/libboost_prg_exec_monitor$(debug_suffix_st).so.$(SOVERSION) \
-+	   debian/tmp/usr/lib/libboost_test_exec_monitor$(debug_suffix_st).so.$(SOVERSION) \
-+	   debian/tmp/usr/lib/libboost_unit_test_framework$(debug_suffix_st).so.$(SOVERSION) \
- 	   debian/tmp/usr/lib/libboost_prg_exec_monitor$(debug_suffix).so.$(SOVERSION) \
- 	   debian/tmp/usr/lib/libboost_test_exec_monitor$(debug_suffix).so.$(SOVERSION) \
- 	   debian/tmp/usr/lib/libboost_unit_test_framework$(debug_suffix).so.$(SOVERSION)
-@@ -326,6 +372,12 @@
- 	mv debian/libboost-dev/usr/include/boost/test \
- 	   debian/libboost-test-dev/usr/include/boost
- 	dh_install -plibboost-test-dev --autodest \
-+	   debian/tmp/usr/lib/libboost_prg_exec_monitor$(release_suffix_st).a \
-+	   debian/tmp/usr/lib/libboost_prg_exec_monitor$(release_suffix_st).so \
-+	   debian/tmp/usr/lib/libboost_test_exec_monitor$(release_suffix_st).a \
-+	   debian/tmp/usr/lib/libboost_test_exec_monitor$(release_suffix_st).so \
-+	   debian/tmp/usr/lib/libboost_unit_test_framework$(release_suffix_st).a \
-+	   debian/tmp/usr/lib/libboost_unit_test_framework$(release_suffix_st).so \
- 	   debian/tmp/usr/lib/libboost_prg_exec_monitor$(release_suffix).a \
- 	   debian/tmp/usr/lib/libboost_prg_exec_monitor$(release_suffix).so \
- 	   debian/tmp/usr/lib/libboost_test_exec_monitor$(release_suffix).a \

Copied: boost/trunk/debian/patches/01-ublas1331.patch (from rev 13877, boost/trunk/debian/01-ublas1331.patch)

Copied: boost/trunk/debian/patches/02-is_incrementable1331.patch (from rev 13877, boost/trunk/debian/02-is_incrementable1331.patch)

Copied: boost/trunk/debian/patches/03-st_mt.patch (from rev 13877, boost/trunk/debian/03-st_mt.patch)




More information about the pkg-boost-commits mailing list