This is an automated email from the git hooks/post-receive script. pini pushed a commit to branch master in repository hdf5.
commit 7b24e141789d86d00f4d64ebbadc20574374dd91 Author: Gilles Filippini <[email protected]> Date: Tue Jul 14 18:33:52 2015 +0200 Fix d/process-symbols-files to deal ith patch releases. Because '-' is not allowed in version names. --- debian/process-symbols-files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/process-symbols-files b/debian/process-symbols-files index 26152a1..57c8494 100755 --- a/debian/process-symbols-files +++ b/debian/process-symbols-files @@ -7,7 +7,7 @@ debian_dir="$(dirname "$(readlink -f "$0")")" cd "$debian_dir" # 2- Get version an soname -version="$(grep 'HDF5 config.lt' ../configure | awk '{print $3}')" +version="$(grep 'HDF5 config.lt' ../configure | awk '{print $3}' | sed 's/-patch/./')" soname=$(./rules soname) # 3- Unmangle c++ symbols in symbols file -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/hdf5.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

