[pkg-boost-commits] r14576 - boost/trunk/debian

Steven Michael Robbins smr at alioth.debian.org
Tue Mar 2 02:37:07 UTC 2010


Author: smr
Date: 2010-03-02 02:37:06 +0000 (Tue, 02 Mar 2010)
New Revision: 14576

Modified:
   boost/trunk/debian/changelog
   boost/trunk/debian/rules
Log:
Add test_exec_monitor; revision 1.42.0-2 was broken.

Modified: boost/trunk/debian/changelog
===================================================================
--- boost/trunk/debian/changelog	2010-03-02 02:35:52 UTC (rev 14575)
+++ boost/trunk/debian/changelog	2010-03-02 02:37:06 UTC (rev 14576)
@@ -1,3 +1,10 @@
+boost1.42 (1.42.0-3) unstable; urgency=low
+
+  * rules: Add test_exec_monitor.  Closes: #539350.  (Previous upload was
+    broken.)
+
+ -- Steve M. Robbins <smr at debian.org>  Mon, 01 Mar 2010 20:33:39 -0600
+
 boost1.42 (1.42.0-2) unstable; urgency=low
 
   * rules: Add test_exec_monitor.  Closes: #539350.

Modified: boost/trunk/debian/rules
===================================================================
--- boost/trunk/debian/rules	2010-03-02 02:35:52 UTC (rev 14575)
+++ boost/trunk/debian/rules	2010-03-02 02:37:06 UTC (rev 14576)
@@ -19,7 +19,7 @@
 	program-options python regex serialization signals system test \
 	thread wave
 
-# these are special cases, where shared library has not the same name of the Boost library
+# these are special cases, where /usr/lib name differs from Boost library name
 boost_lib_math := math_c99 math_c99f math_tr1 math_tr1f
 boost_lib_math_long_double := math_c99l math_tr1l
 boost_lib_serialization := serialization wserialization
@@ -72,10 +72,15 @@
 mk_mtso_files = $(shell echo $(call mk_base_name,$(2),$(3),$(4)).so.$(SOVERSION) $(call mk_base_name,$(2),$(3)-mt,$(4)).so >> $(call mk_deb_dev,$(1),$(3)).links)
 mk_mta_files = $(shell echo $(call mk_base_name,$(2),$(3),$(4)).a $(call mk_base_name,$(2),$(3)-mt,$(4)).a >> $(call mk_deb_dev,$(1),$(3)).links)
 
+# Specify the type of files/links to install.
+# Special cases first, then general rule
+boost_filetypes_test_exec_monitor := "a mta"
+boost_filetypes = $(if $(boost_filetypes_$(1)), $(boost_filetypes_$(1)),a so ln mtso mta)
+
 # Function that updates debhelper files for a given library variant
 # Input: component, library, variant, suffix
 # Output: none
-mk_files = $(foreach fn,a so ln mtso mta,$(call mk_$(fn)_files,$(1),$(2),$(3),$(4)))
+mk_files = $(foreach fn,$(call boost_filetypes,$(2)),$(call mk_$(fn)_files,$(1),$(2),$(3),$(4)))
 
 # helpers to make and install lintian override files
 




More information about the pkg-boost-commits mailing list