Package: release.debian.org User: release.debian....@packages.debian.org UserTags: unblock
This has just been uploaded to unstable The main reason for this unblock request: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772481 The upstream 1.3.6 just changes one line, using b_avail instead of b_free This returns the free space in a way that people are more likely to expect. The debdiff excludes autotools stuff, exact command used: debdiff ganglia-modules-linux_1.3.5-1.dsc ganglia-modules-linux_1.3.6-1.dsc | filterdiff -x '*/aclocal.m4' -x '*/config.*' -x '*/configure' -x '*/depcomp' -x '*/*.in' -x '*/install-sh' -x '*/ltmain.sh' -x '*/m4/*' -x '*/missing' > /tmp/ganglia-modules-linux-1.3.6-1.debdiff
diff -Nru ganglia-modules-linux-1.3.5/configure ganglia-modules-linux-1.3.6/configure diff -Nru ganglia-modules-linux-1.3.5/configure.ac ganglia-modules-linux-1.3.6/configure.ac --- ganglia-modules-linux-1.3.5/configure.ac 2014-11-30 13:59:08.000000000 +0100 +++ ganglia-modules-linux-1.3.6/configure.ac 2014-12-07 18:09:32.000000000 +0100 @@ -14,7 +14,7 @@ dnl You should have received a copy of the GNU General Public License dnl along with this program. If not, see <http://www.gnu.org/licenses/>. -AC_INIT(ganglia-modules-linux,1.3.5) +AC_INIT(ganglia-modules-linux,1.3.6) AC_CONFIG_SRCDIR(example/mod_example.c) AM_INIT_AUTOMAKE diff -Nru ganglia-modules-linux-1.3.5/debian/changelog ganglia-modules-linux-1.3.6/debian/changelog --- ganglia-modules-linux-1.3.5/debian/changelog 2014-11-30 14:13:26.000000000 +0100 +++ ganglia-modules-linux-1.3.6/debian/changelog 2014-12-07 18:15:02.000000000 +0100 @@ -1,3 +1,10 @@ +ganglia-modules-linux (1.3.6-1) unstable; urgency=low + + * New upstream release. + * Use b_avail instead of b_free for free space. (Closes: #772481) + + -- Daniel Pocock <dan...@pocock.pro> Sun, 07 Dec 2014 18:14:22 +0100 + ganglia-modules-linux (1.3.5-1) unstable; urgency=low * New upstream release. diff -Nru ganglia-modules-linux-1.3.5/fs/mod_fs.c ganglia-modules-linux-1.3.6/fs/mod_fs.c --- ganglia-modules-linux-1.3.5/fs/mod_fs.c 2014-11-30 13:57:39.000000000 +0100 +++ ganglia-modules-linux-1.3.6/fs/mod_fs.c 2014-11-30 16:12:19.000000000 +0100 @@ -146,7 +146,7 @@ } total_blocks = svfs.f_blocks; - blocks_free = svfs.f_bfree; + blocks_free = svfs.f_bavail; val.f = (float)100.0 * blocks_free / total_blocks; return val;