Hello,

I have problem to install Sage packages (that is tarball with the spkg format). That used to work on older Sage versions where I had to do

   $ sage -p explicit_path_to_my_package.spkg

(the command using -i does not work with an explicit path to a package)

The problem comes from the file $SAGE_ROOT/build/bin/sage-spkg where we have

line 531: the package is uncompressed into a directory named "src" with the command {{{sage-uncompress-spkg -d src "$PKG_SRC"}}}

line 542: we try to go inside a directory named $PKG_NAME with the command {{{cd "$PKG_NAME"}}}

And "PKG_NAME" is *never* src so the above should always fail.

Note that the line 531 has recently been modified by Erik as
{{{
-sage-uncompress-spkg "$PKG_SRC"
+sage-uncompress-spkg -d src "$PKG_SRC"
}}}
And this precisely what is causing me trouble...

Should I use another command?

Best,
Vincent

--
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to