[med-svn] r17032 - in trunk/packages/rostlab/proftmb/trunk/debian: . patches

Andreas Tille tille at moszumanska.debian.org
Tue Jun 3 18:46:32 UTC 2014


Author: tille
Date: 2014-06-03 18:46:32 +0000 (Tue, 03 Jun 2014)
New Revision: 17032

Added:
   trunk/packages/rostlab/proftmb/trunk/debian/patches/
   trunk/packages/rostlab/proftmb/trunk/debian/patches/avoid-dnl-in-makefiles.diff
   trunk/packages/rostlab/proftmb/trunk/debian/patches/series
Modified:
   trunk/packages/rostlab/proftmb/trunk/debian/changelog
Log:
Replace 'dnl' with '#' in src/Makefile.{am,in} (Closes: #750165).


Modified: trunk/packages/rostlab/proftmb/trunk/debian/changelog
===================================================================
--- trunk/packages/rostlab/proftmb/trunk/debian/changelog	2014-06-03 18:43:16 UTC (rev 17031)
+++ trunk/packages/rostlab/proftmb/trunk/debian/changelog	2014-06-03 18:46:32 UTC (rev 17032)
@@ -1,7 +1,11 @@
 proftmb (1.1.12-2) UNRELEASED; urgency=medium
 
+  [ Andreas Tille ]
   * moved debian/upstream to debian/upstream/metadata
 
+  [ Cyril Brulebois ]
+  * Replace 'dnl' with '#' in src/Makefile.{am,in} (Closes: #750165).
+
  -- Andreas Tille <tille at debian.org>  Tue, 03 Jun 2014 20:42:10 +0200
 
 proftmb (1.1.12-1) unstable; urgency=low

Added: trunk/packages/rostlab/proftmb/trunk/debian/patches/avoid-dnl-in-makefiles.diff
===================================================================
--- trunk/packages/rostlab/proftmb/trunk/debian/patches/avoid-dnl-in-makefiles.diff	                        (rev 0)
+++ trunk/packages/rostlab/proftmb/trunk/debian/patches/avoid-dnl-in-makefiles.diff	2014-06-03 18:46:32 UTC (rev 17032)
@@ -0,0 +1,87 @@
+Description: Avoid 'dnl' in Makefiles.
+Author: Cyril Brulebois <kibi at debian.org>
+Bug-Debian: http://bugs.debian.org/750165
+
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -46,26 +46,26 @@ TrainSeq.cpp \
+ Viterbi.cpp \
+ Zscore.cpp
+ 
+-dnl bin_PROGRAMS = proftmb composition accvcov hmmdisc hmm hmmstats
+-dnl bin_PROGRAMS = proftmb hmm hmmtrain
+-dnl bin_PROGRAMS = hmm hmmtrain
++# bin_PROGRAMS = proftmb composition accvcov hmmdisc hmm hmmstats
++# bin_PROGRAMS = proftmb hmm hmmtrain
++# bin_PROGRAMS = hmm hmmtrain
+ bin_PROGRAMS = proftmb
+ 
+ proftmb_SOURCES = proftmb.cpp
+-dnl hmmdisc_SOURCES =  hmmdisc.cpp 
+-dnl composition_SOURCES = composition.cpp
+-dnl accvcov_SOURCES = AccvCov.cpp
+-dnl hmm_SOURCES = hmm.cpp
+-dnl hmmtrain_SOURCES = hmmtrain.cpp
+-dnl hmmstats_SOURCES = hmmstats.cpp
++# hmmdisc_SOURCES =  hmmdisc.cpp 
++# composition_SOURCES = composition.cpp
++# accvcov_SOURCES = AccvCov.cpp
++# hmm_SOURCES = hmm.cpp
++# hmmtrain_SOURCES = hmmtrain.cpp
++# hmmstats_SOURCES = hmmstats.cpp
+ 
+ proftmb_DEPENDENCIES = libhmm.a
+-dnl hmmdisc_DEPENDENCIES = libhmm.a
+-dnl composition_DEPENDENCIES = libhmm.a
+-dnl accvcov_DEPENDENCIES = libhmm.a
+-dnl hmm_DEPENDENCIES = libhmm.a
+-dnl hmmtrain_DEPENDENCIES = libhmm.a
+-dnl hmmstats_DEPENDENCIES = libhmm.a
++# hmmdisc_DEPENDENCIES = libhmm.a
++# composition_DEPENDENCIES = libhmm.a
++# accvcov_DEPENDENCIES = libhmm.a
++# hmm_DEPENDENCIES = libhmm.a
++# hmmtrain_DEPENDENCIES = libhmm.a
++# hmmstats_DEPENDENCIES = libhmm.a
+ 
+ proftmb_LDADD = libhmm.a
+ 
+--- a/src/Makefile.in
++++ b/src/Makefile.in
+@@ -652,21 +652,21 @@ uninstall-man: uninstall-man1
+ 	uninstall-man1
+ 
+ 
+-dnl bin_PROGRAMS = proftmb composition accvcov hmmdisc hmm hmmstats
+-dnl bin_PROGRAMS = proftmb hmm hmmtrain
+-dnl bin_PROGRAMS = hmm hmmtrain
+-dnl hmmdisc_SOURCES =  hmmdisc.cpp 
+-dnl composition_SOURCES = composition.cpp
+-dnl accvcov_SOURCES = AccvCov.cpp
+-dnl hmm_SOURCES = hmm.cpp
+-dnl hmmtrain_SOURCES = hmmtrain.cpp
+-dnl hmmstats_SOURCES = hmmstats.cpp
+-dnl hmmdisc_DEPENDENCIES = libhmm.a
+-dnl composition_DEPENDENCIES = libhmm.a
+-dnl accvcov_DEPENDENCIES = libhmm.a
+-dnl hmm_DEPENDENCIES = libhmm.a
+-dnl hmmtrain_DEPENDENCIES = libhmm.a
+-dnl hmmstats_DEPENDENCIES = libhmm.a
++# bin_PROGRAMS = proftmb composition accvcov hmmdisc hmm hmmstats
++# bin_PROGRAMS = proftmb hmm hmmtrain
++# bin_PROGRAMS = hmm hmmtrain
++# hmmdisc_SOURCES =  hmmdisc.cpp 
++# composition_SOURCES = composition.cpp
++# accvcov_SOURCES = AccvCov.cpp
++# hmm_SOURCES = hmm.cpp
++# hmmtrain_SOURCES = hmmtrain.cpp
++# hmmstats_SOURCES = hmmstats.cpp
++# hmmdisc_DEPENDENCIES = libhmm.a
++# composition_DEPENDENCIES = libhmm.a
++# accvcov_DEPENDENCIES = libhmm.a
++# hmm_DEPENDENCIES = libhmm.a
++# hmmtrain_DEPENDENCIES = libhmm.a
++# hmmstats_DEPENDENCIES = libhmm.a
+ 
+ proftmb_example.txt: proftmb_example.txt.raw
+ 	sed -e 's|__pkgdatadir__|$(pkgdatadir)|g;s|__datadir__|$(datadir)|g;s|__PACKAGE__|$(PACKAGE)|g;' < $< > $@

Added: trunk/packages/rostlab/proftmb/trunk/debian/patches/series
===================================================================
--- trunk/packages/rostlab/proftmb/trunk/debian/patches/series	                        (rev 0)
+++ trunk/packages/rostlab/proftmb/trunk/debian/patches/series	2014-06-03 18:46:32 UTC (rev 17032)
@@ -0,0 +1 @@
+avoid-dnl-in-makefiles.diff




More information about the debian-med-commit mailing list