I've got two very simple trac tickets needing review. 1) One, allows the optional database_cremona_ellcurve to be installed on Solaris.
Only a *single byte* has changed in spkg-install (removed the '-v' option to the 'cp' command). The -v option can also be written as '--verbose', and does nothing useful. http://trac.sagemath.org/sage_trac/ticket/7464 2) The second ticket adds two lines to the spkg-install script of readline. There are a whole bunch of lines in the spkg-install like this: if [ $UNAME = "Darwin" ]; then DYLIB_NAME=$SAGE_LOCAL/lib/libreadline.dylib elif [ $UNAME = "CYGWIN" ]; then DYLIB_NAME=$SAGE_LOCAL/lib/libreadline.dll.a elif [ "$UNAME" = "OpenBSD" ]; then DYLIB_NAME=$SAGE_LOCAL/lib/libreadline.so.6.0 elif [ "$UNAME" = "FreeBSD" ]; then DYLIB_NAME=$SAGE_LOCAL/lib/libreadline.so.6 My change adds the two lines necessary to allow readline to install on HP-UX. i.e, I just added: elif [ "$UNAME" = "HP-UX" ]; then DYLIB_NAME=$SAGE_LOCAL/lib/libreadline.sl.6 That's ticket: http://trac.sagemath.org/sage_trac/ticket/7164 It should be fairly obvious that is safe and can not do any harm on any platform. Dave -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org