[med-svn] r15212 - in trunk/packages/transtermhp/trunk/debian: . patches

Andreas Tille tille at moszumanska.debian.org
Wed Nov 20 22:03:54 UTC 2013


Author: tille
Date: 2013-11-20 22:03:54 +0000 (Wed, 20 Nov 2013)
New Revision: 15212

Added:
   trunk/packages/transtermhp/trunk/debian/patches/
   trunk/packages/transtermhp/trunk/debian/patches/hardening.patch
   trunk/packages/transtermhp/trunk/debian/patches/series
Modified:
   trunk/packages/transtermhp/trunk/debian/changelog
   trunk/packages/transtermhp/trunk/debian/compat
   trunk/packages/transtermhp/trunk/debian/control
   trunk/packages/transtermhp/trunk/debian/rules
Log:
Mass changes for 2.09-2


Modified: trunk/packages/transtermhp/trunk/debian/changelog
===================================================================
--- trunk/packages/transtermhp/trunk/debian/changelog	2013-11-20 22:03:28 UTC (rev 15211)
+++ trunk/packages/transtermhp/trunk/debian/changelog	2013-11-20 22:03:54 UTC (rev 15212)
@@ -1,4 +1,4 @@
-transtermhp (2.09-2) UNRELEASED; urgency=low
+transtermhp (2.09-2) unstable; urgency=low
 
   [ Charles Plessy ]
   * debian/upstream (renamed from upstream-metadata.yaml
@@ -13,8 +13,13 @@
      - DEP5
      - Add Files-Excluded to document what was removed from original source
   * debian/watch: handle +dfsg suffix
+  * debian/control:
+     - cme fix dpkg-control
+     - debhelper 9
+     - canonical Vcs fields
+  * debian/patches/hardening.patch: Propagate hardening flags
 
- -- Andreas Tille <tille at debian.org>  Tue, 04 Sep 2012 12:09:55 +0200
+ -- Andreas Tille <tille at debian.org>  Mon, 18 Nov 2013 15:29:48 +0100
 
 transtermhp (2.09-1) unstable; urgency=low
 

Modified: trunk/packages/transtermhp/trunk/debian/compat
===================================================================
--- trunk/packages/transtermhp/trunk/debian/compat	2013-11-20 22:03:28 UTC (rev 15211)
+++ trunk/packages/transtermhp/trunk/debian/compat	2013-11-20 22:03:54 UTC (rev 15212)
@@ -1 +1 @@
-8
+9

Modified: trunk/packages/transtermhp/trunk/debian/control
===================================================================
--- trunk/packages/transtermhp/trunk/debian/control	2013-11-20 22:03:28 UTC (rev 15211)
+++ trunk/packages/transtermhp/trunk/debian/control	2013-11-20 22:03:54 UTC (rev 15212)
@@ -1,19 +1,19 @@
 Source: transtermhp
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Alex Mestiashvili <alex at biotec.tu-dresden.de>,
+           Andreas Tille <tille at debian.org>
 Section: science
 Priority: optional
-Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
-DM-Upload-Allowed: yes
-Uploaders: Alex Mestiashvili <alex at biotec.tu-dresden.de>,
- Andreas Tille <tille at debian.org>
-Build-Depends: debhelper (>= 8), quilt (>= 0.47)
-Standards-Version: 3.9.2
+Build-Depends: debhelper (>= 9)
+Standards-Version: 3.9.4
+Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/transtermhp/trunk/
+Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/transtermhp/trunk/
 Homepage: http://transterm.cbcb.umd.edu/
-Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/transtermhp/trunk/
-Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/transtermhp/trunk/
 
 Package: transtermhp
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: ${shlibs:Depends},
+         ${misc:Depends}
 Description: find rho-independent transcription terminators in bacterial genomes
  TransTermHP finds rho-independent transcription terminators in
  bacterial genomes. Each terminator found by the program is assigned a

Added: trunk/packages/transtermhp/trunk/debian/patches/hardening.patch
===================================================================
--- trunk/packages/transtermhp/trunk/debian/patches/hardening.patch	                        (rev 0)
+++ trunk/packages/transtermhp/trunk/debian/patches/hardening.patch	2013-11-20 22:03:54 UTC (rev 15212)
@@ -0,0 +1,19 @@
+Author: Andreas Tille <tille at debian.org>
+LastChanged: Mon, 18 Nov 2013 15:29:48 +0100
+Description: Propagate hardening flags
+
+--- a/Makefile
++++ b/Makefile
+@@ -45,10 +45,10 @@ CXXFLAGS = -g -O3 -Wall -pedantic
+ all: transterm 2ndscore
+ 
+ transterm: $(OBJ) 
+-	$(CXX) $(CXXFLAGS) -o $@ $^
++	$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
+ 
+ 2ndscore: $(SECONDARY_OBJ)
+-	$(CXX) $(CXXFLAGS) -o $@ $^
++	$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
+ 
+ clean: no_obj
+ 	rm -f transterm 2ndscore core.*

Added: trunk/packages/transtermhp/trunk/debian/patches/series
===================================================================
--- trunk/packages/transtermhp/trunk/debian/patches/series	                        (rev 0)
+++ trunk/packages/transtermhp/trunk/debian/patches/series	2013-11-20 22:03:54 UTC (rev 15212)
@@ -0,0 +1 @@
+hardening.patch

Modified: trunk/packages/transtermhp/trunk/debian/rules
===================================================================
--- trunk/packages/transtermhp/trunk/debian/rules	2013-11-20 22:03:28 UTC (rev 15211)
+++ trunk/packages/transtermhp/trunk/debian/rules	2013-11-20 22:03:54 UTC (rev 15212)
@@ -15,6 +15,7 @@
 # test: target in Makefile is broken.
 # don't forget to notify upstream.
 override_dh_auto_test:
+	echo "Testing is not possible since upstream source is lacking needed input files."
 
 override_dh_installchangelogs:
 	dh_installchangelogs RELEASE-NOTES.txt




More information about the debian-med-commit mailing list