Differences between revisions 11 and 22 (spanning 11 versions)
Revision 11 as of 2008-07-19 16:49:43
Size: 567
Editor: OndrejCertik
Comment:
Revision 22 as of 2009-06-25 19:08:14
Size: 1737
Editor: OndrejCertik
Comment:
Deletions are marked like this. Additions are marked like this.
Line 13: Line 13:
  * [:DebianSAGE: Debian Sage Packaging Team]
  * [http://cython.org/ Cython]
  * [:Sage in systemwide python:]
  * [[DebianSAGE| Debian Sage Packaging Team]]
  * [[http://cython.org/|Cython]]
  * [[Sage_in_systemwide_python]]
  * [[OndrejCertik/SPD| Source Python Distribution]]
Line 21: Line 22:
=== Tips ===

How to test in parallel:
{{{
$ ./sage -tp 6 devel/sage/sage/calculus/
}}}
Execute tests:
{{{
SAGE_CHECK=yes sage -f sympy-0.6.3.spkg
}}}
How to build in parallel:
{{{
export MAKE="make -j8"
}}}

How to install Sage using virtualbox: SageVirtualBox

=== Links ===

* [[OndrejCertik/SD16| Sage Days 16 videos]]

http://wiki.sagemath.org/Sage_Spkg_Tracking

http://sage.math.washington.edu/home/ondrej/

http://wiki.sagemath.org/SPKG_Audit

Here is a sample `spkg-install` script for a typical `configure && make && make install` package. Change the `PACKAGE_NAME=` line to the name of the package.

{{{
if [ "$SAGE_LOCAL" = "" ]; then
   echo "SAGE_LOCAL undefined ... exiting";
   echo "Maybe run 'sage -sh'?"
   exit 1
fi

PACKAGE_NAME=Judy

cd src

./configure --prefix="$SAGE_LOCAL"
if [ $? -ne 0 ]; then
   echo "Error configuring $PACKAGE_NAME."
   exit 1
fi

make
if [ $? -ne 0 ]; then
   echo "Error building $PACKAGE_NAME."
   exit 1
fi

make install
if [ $? -ne 0 ]; then
   echo "Error installing $PACKAGE_NAME."
   exit 1
fi
}}}

Ondřej Čertík

Me and Sage

What I do or I am interested in:

Generally:

  • I want to use Sage in physics. I am not so much interested in pure math things, but I really want basic calculus to work and to work well.

Tips

How to test in parallel:

$ ./sage -tp 6 devel/sage/sage/calculus/

Execute tests:

SAGE_CHECK=yes sage -f sympy-0.6.3.spkg

How to build in parallel:

export MAKE="make -j8"

How to install Sage using virtualbox: SageVirtualBox

* Sage Days 16 videos

http://wiki.sagemath.org/Sage_Spkg_Tracking

http://sage.math.washington.edu/home/ondrej/

http://wiki.sagemath.org/SPKG_Audit

Here is a sample spkg-install script for a typical configure && make && make install package. Change the PACKAGE_NAME= line to the name of the package.

if [ "$SAGE_LOCAL" = "" ]; then
   echo "SAGE_LOCAL undefined ... exiting";
   echo "Maybe run 'sage -sh'?"
   exit 1
fi

PACKAGE_NAME=Judy

cd src

./configure --prefix="$SAGE_LOCAL"
if [ $? -ne 0 ]; then
   echo "Error configuring $PACKAGE_NAME."
   exit 1
fi

make
if [ $? -ne 0 ]; then
   echo "Error building $PACKAGE_NAME."
   exit 1
fi

make install
if [ $? -ne 0 ]; then
   echo "Error installing $PACKAGE_NAME."
   exit 1
fi


CategoryHomepage

OndrejCertik (last edited 2009-06-25 19:08:14 by OndrejCertik)