[med-svn] r20726 - in trunk/packages/ncbi-blast+/trunk/debian: . patches

Olivier Sallou osallou at moszumanska.debian.org
Fri Dec 11 08:50:24 UTC 2015


Author: osallou
Date: 2015-12-11 08:50:24 +0000 (Fri, 11 Dec 2015)
New Revision: 20726

Added:
   trunk/packages/ncbi-blast+/trunk/debian/patches/fix_kfreebsd_ftbs.patch
Modified:
   trunk/packages/ncbi-blast+/trunk/debian/changelog
   trunk/packages/ncbi-blast+/trunk/debian/patches/series
Log:
fix missing colon causing FTBS on some archs

Modified: trunk/packages/ncbi-blast+/trunk/debian/changelog
===================================================================
--- trunk/packages/ncbi-blast+/trunk/debian/changelog	2015-12-10 20:04:19 UTC (rev 20725)
+++ trunk/packages/ncbi-blast+/trunk/debian/changelog	2015-12-11 08:50:24 UTC (rev 20726)
@@ -1,3 +1,9 @@
+ncbi-blast+ (2.2.31-2) unstable; urgency=medium
+
+  * Fix a long-standing typo for GNU/kFreeBSD FTBS (Aaron M. Ucko) 
+
+ -- Olivier Sallou <osallou at debian.org>  Fri, 11 Dec 2015 09:44:43 +0100
+
 ncbi-blast+ (2.2.31-1) unstable; urgency=medium
 
   * New upstream release 

Added: trunk/packages/ncbi-blast+/trunk/debian/patches/fix_kfreebsd_ftbs.patch
===================================================================
--- trunk/packages/ncbi-blast+/trunk/debian/patches/fix_kfreebsd_ftbs.patch	                        (rev 0)
+++ trunk/packages/ncbi-blast+/trunk/debian/patches/fix_kfreebsd_ftbs.patch	2015-12-11 08:50:24 UTC (rev 20726)
@@ -0,0 +1,34 @@
+Subject: Fix missing colon
+Description: colon missing causing FTBS on some archs
+Author: Olivier Sallou <olivier.sallou at irisa.fr>
+Forwarded: yes
+Comment: updated upstream at revision 70194
+--- a/c++/src/corelib/ncbifile.cpp
++++ b/c++/src/corelib/ncbifile.cpp
+@@ -4423,7 +4423,7 @@
+     if (statvfs(path.c_str(), &st) != 0) {                     \
+         NCBI_THROW(CFileErrnoException, eFileSystemInfo, msg); \
+     }                                                          \
+-    info->total_space  = (Uint8)st.f_bsize * st.f_blocks       \
++    info->total_space  = (Uint8)st.f_bsize * st.f_blocks;      \
+     if (st.f_frsize) {                                         \
+         info->free_space = (Uint8)st.f_frsize * st.f_bavail;   \
+         info->block_size = (unsigned long)st.f_frsize;         \
+@@ -4431,7 +4431,7 @@
+         info->free_space = (Uint8)st.f_bsize * st.f_bavail;    \
+         info->block_size = (unsigned long)st.f_bsize;          \
+     }                                                          \
+-    info->used_space   = info->total_space - info->free_space
++    info->used_space   = info->total_space - info->free_space;
+ 
+ 
+ #define GET_STATFS_INFO                                        \
+@@ -4443,7 +4443,7 @@
+     info->total_space  = (Uint8)st.f_bsize * st.f_blocks;      \
+     info->free_space   = (Uint8)st.f_bsize * st.f_bavail;      \
+     info->used_space   = info->total_space - info->free_space; \
+-    info->block_size   = (unsigned long)st.f_bsize
++    info->block_size   = (unsigned long)st.f_bsize;
+ 
+ 
+ 

Modified: trunk/packages/ncbi-blast+/trunk/debian/patches/series
===================================================================
--- trunk/packages/ncbi-blast+/trunk/debian/patches/series	2015-12-10 20:04:19 UTC (rev 20725)
+++ trunk/packages/ncbi-blast+/trunk/debian/patches/series	2015-12-11 08:50:24 UTC (rev 20726)
@@ -8,3 +8,4 @@
 fix_configure
 fix_compilation
 allow_gcc5
+fix_kfreebsd_ftbs.patch




More information about the debian-med-commit mailing list