|
[yoda-svn] yoda: merged cython fixYODA Mercurial yoda at projects.hepforge.orgTue Oct 25 12:45:02 BST 2016
details: https://yoda.hepforge.org/hg/yoda/rev/343b1420fb80 branches: multiweight changeset: 1311:343b1420fb80 user: David Grellscheid <david.grellscheid at durham.ac.uk> date: Mon Oct 10 17:44:26 2016 +0100 description: merged cython fix diffs (truncated from 177 to 50 lines): --- a/.hgtags Fri Sep 30 13:10:59 2016 +0100 +++ b/.hgtags Mon Oct 10 17:44:26 2016 +0100 @@ -46,3 +46,4 @@ 2a32b9e0b9a9f962bd9ebb2ac7e611981da14ce4 yoda-1.6.2 6e222b9c2422baef39a531e2461213a51c898661 yoda-1.6.3 1edc280f270b7cf812bf7bc6d56abbf93eb15987 yoda-1.6.4 +6001b6383d178b5db17b767a79d960b0474192d5 yoda-1.6.5 --- a/ChangeLog Fri Sep 30 13:10:59 2016 +0100 +++ b/ChangeLog Mon Oct 10 17:44:26 2016 +0100 @@ -1,3 +1,13 @@ +2016-09-28 Andy Buckley <andy.buckley at cern.ch> + + * Version 1.6.5 release, for the benefit of ROOT fans. + + * Fix handling of --enable/disable-root configure options. + +2016-09-26 David Grellscheid <david.grellscheid at durham.ac.uk> + + * Improvements to Cython version testing. + 2016-09-25 Andy Buckley <andy.buckley at cern.ch> * Version 1.6.4 release. --- a/configure.ac Fri Sep 30 13:10:59 2016 +0100 +++ b/configure.ac Mon Oct 10 17:44:26 2016 +0100 @@ -1,7 +1,7 @@ ## Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([YODA],[1.6.4],[yoda at projects.hepforge.org],[YODA]) +AC_INIT([YODA],[1.6.5],[yoda at projects.hepforge.org],[YODA]) ## Check and block installation into the src/build dir if test "$prefix" = "$PWD"; then @@ -61,7 +61,7 @@ ## Optional ROOT compatibility AC_ARG_ENABLE([root], [AC_HELP_STRING(--disable-root, - [try to build YODA interface to PyROOT (needs root-config) @<:@default=yes@:>@])], [enable_root=no], []) + [don't try to build YODA interface to PyROOT (needs root-config) @<:@default=yes@:>@])], [], [enable_root=yes]) if test "x$enable_root" = "xyes"; then AC_PATH_PROG(ROOTCONFIG, [root-config]) if test "x$ROOTCONFIG" = "x"; then @@ -130,30 +130,15 @@ if test x$enable_pyext == xyes; then AM_CHECK_CYTHON([0.23.5], [:], [:]) if test x$CYTHON_FOUND = xyes; then - AS_VERSION_COMPARE([$CYTHON_VERSION], [0.24], - [AC_MSG_NOTICE([Cython >= 0.23.5 found: Python extension source can be rebuilt (for developers)])], - [AC_MSG_NOTICE([
More information about the yoda-svn mailing list |