[sage-devel] Broken git trac checkout?

2016-07-04 Thread Jori Mäntysalo
Is it just me, or is trac broken? $ git trac checkout 20918 Loading ticket #20918... Traceback (most recent call last): File "/home/jm58660/bin/git-trac", line 18, in cmdline.launch() File "/home/jm58660/git-trac-command/git_trac/cmdline.py", line 209, in launch app.checkout(args.t

Re: [sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Thierry
Hi, On Mon, Jul 04, 2016 at 02:14:20PM +1200, François Bissey wrote: > So I have been inspecting giac, as any discussion of making something > a standard package as an impact for sage-on-gentoo. > We have an old version in the science overlay so I am working on > upgrading it. > > 1) current 1.2.

Re: [sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Francois Bissey
> On 4/07/2016, at 20:45, Thierry wrote: > > Hi, > > On Mon, Jul 04, 2016 at 02:14:20PM +1200, François Bissey wrote: >> So I have been inspecting giac, as any discussion of making something >> a standard package as an impact for sage-on-gentoo. >> We have an old version in the science overlay

[sage-devel] Re: Broken git trac checkout?

2016-07-04 Thread Volker Braun
You need the latest version of git-trac-command, e.g. by checking out https://github.com/sagemath/git-trac-command On Monday, July 4, 2016 at 10:36:16 AM UTC+2, Jori Mäntysalo wrote: > > Is it just me, or is trac broken? > > $ git trac checkout 20918 > Loading ticket #20918... > Traceback (m

Re: [sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Han Frederic
Le lundi 4 juillet 2016 04:14:26 UTC+2, François a écrit : > > So I have been inspecting giac, as any discussion of making something > a standard package as an impact for sage-on-gentoo. > We have an old version in the science overlay so I am working on > upgrading it. > > 1) current 1.2.2-63

[sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread parisse
I'm fixing the build for --disable-gui and I will also add a --disable-ao flag in configure.in (ao is used for the playsnd command). You can --disable-lapack if you think it will cause problems, LAPACK is interesting inside giac only for large matrices (more than 1000x1000, otherwise giac buil

Re: [sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Francois Bissey
> On 4/07/2016, at 22:41, parisse wrote: > > > I'm fixing the build for --disable-gui and I will also add a --disable-ao > flag in configure.in (ao is used for the playsnd command). You can > --disable-lapack if you think it will cause problems, LAPACK is interesting > inside giac only for l

[sage-devel] Re: Can't figure out how polynomial conversion works in the M2/Sage interface

2016-07-04 Thread Dima Pasechnik
On Monday, July 4, 2016 at 6:09:59 AM UTC+1, saad khalid wrote: > > So, after fixing a small typo, here is the output from an example: > > sage: macaulay2.eval(""" > : K = toField(QQ[zet]/(zet^8 - zet^7 +zet^5 - zet^4 +zet^3 -zet + 1)) > : A=matrix{{zet^1,0},{0,zet^14}} > : needsPacka

[sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread parisse
You are welcome if you know how to fix configure.in for lapack support (as long as it does not break my current compilations configurations). -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving email

[sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Dima Pasechnik
On Monday, July 4, 2016 at 12:07:40 PM UTC+1, parisse wrote: > > You are welcome if you know how to fix configure.in for lapack support > (as long as it does not break my current compilations configurations). > > do you have an online repo available? Currently http://www-fourier.ujf-grenoble.fr/

[sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread parisse
It's back online. -- 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@googlegr

[sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Dima Pasechnik
On Monday, July 4, 2016 at 1:06:06 PM UTC+1, parisse wrote: > > It's back online. > OK, I just wanted to look at congure.in we are talking about. There are AX_BLAS and AX_LAPACK macros which are (semi)standard: http://www.gnu.org/software/autoconf-archive/ax_blas.html and http://www.gnu.org/

Re: [sage-devel] Re: {trac,git}.sagemath.org downtime Wednesday 6/22

2016-07-04 Thread Erik Bray
On Sun, Jul 3, 2016 at 7:35 PM, leif wrote: > Erik Bray wrote: >> git and trac should both be back up again. >> >> [...] >> >> Please let me know via e-mail, and also CC >> sagemath-adm...@googlegroups.com if you notice something amiss. > > Not that important, so I'm posting here: > > What happene

[sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread parisse
How is it supposed to work? I have copied the m4 files into m4/, then if I put AX_BLAS([],AX_LAPACK()) instead of AC_CHECK_LIB(gfortran, main) AC_CHECK_LIB(blas, main) AC_CHECK_LIB(lapack, main, [], [CONFIG_LAPACK="no"]) configure fails ./configure: line 15831: syntax error near unex

[sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Dima Pasechnik
something like : AX_BLAS([have_blas=yes], [have_blas=no]) if test "x${have_blas}" = xno; then ... stuff.. ... this is how I used them here: https://github.com/dimpase/csdp/blob/master/configure.ac On Monday, July 4, 2016 at 2:11:54 PM UTC+1, parisse wrote: > > How is it supposed to work? I h

[sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Dima Pasechnik
also note that lapack needs blas, and in fact AX_LAPACK calls AX_BLAS itself. Perhaps your line has lead to unwanted recursion... On Monday, July 4, 2016 at 2:11:54 PM UTC+1, parisse wrote: > > How is it supposed to work? I have copied the m4 files into m4/, then if I > put > AX_BLAS([],AX_LAP

Re: [sage-devel] Re: Trac workflow and needs_review

2016-07-04 Thread Erik Bray
On Fri, Jul 1, 2016 at 8:11 PM, leif wrote: > Jori Mäntysalo wrote: >> On Fri, 1 Jul 2016, Erik Bray wrote: >> >>> One thing that will help, which has already been discussed up-thread, >>> is having Trac help take care of the little nitty-gritty checks on >>> tickets. >> >> True. It feels extremel

[sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread parisse
Tried AX_BLAS([have_blas=yes],[have_blas=no]) AX_LAPACK([have_lapack=yes],[have_lapack=no]) without success as I feared (my autoconf is 2.69). I will stick to the current checks. -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To

[sage-devel] Re: Can't figure out how polynomial conversion works in the M2/Sage interface

2016-07-04 Thread saad khalid
Thanks! That makes much more sense and seems simpler, I'm glad I know that now! Side note: Never use += on a string in a loop. Here it's even worse, > since you are concatenating strings on the right hand side as well. > > Is it because it's slow? Also, do you think I should have the to_sag

Re: [sage-devel] Can't figure out how polynomial conversion works in the M2/Sage interface

2016-07-04 Thread Vincent Delecroix
Could this kind of discussion can be done on sage-support? As it name suggests sage-devel is dedicated to development discussions. If we want to keep developers reading it, it is better to not flood it with users usage questions. On 02/07/16 14:13, saad khalid wrote: Hey everyone: I was hopi

[sage-devel] Re: Can't figure out how polynomial conversion works in the M2/Sage interface

2016-07-04 Thread saad khalid
Sorry about that, I thought sage-devel was for talking/asking questions related to doing development on Sage. Since I was editting the source, I assumed it would be okay to post it here, but if it's not, I'll definitely remember that in the future. I created a trac for review: https://trac.sage

[sage-devel] Re: Trac workflow and needs_review

2016-07-04 Thread leif
Erik Bray wrote: > On Fri, Jul 1, 2016 at 8:11 PM, leif wrote: >> Jori Mäntysalo wrote: >>> On Fri, 1 Jul 2016, Erik Bray wrote: >>> One thing that will help, which has already been discussed up-thread, is having Trac help take care of the little nitty-gritty checks on tickets. >>>

Re: [sage-devel] Can't figure out how polynomial conversion works in the M2/Sage interface

2016-07-04 Thread Dima Pasechnik
IMHO this is borderline between devel and support - it is about extending Sage interface to Macaulay2 with a new type. On Monday, July 4, 2016 at 6:08:48 PM UTC+1, vdelecroix wrote: > > Could this kind of discussion can be done on sage-support? As it name > suggests sage-devel is dedicated to de

Re: [sage-devel] make giac/giacpy a standard package

2016-07-04 Thread Francois Bissey
I wouldn’t try to use one of these. Detecting blas/lapack automatically is a fool’s errand. There are no standard naming scheme for the libraries and distress can mess things up on top of it. The only safe way is to get the stuff needed to link on the command line. You may want to add detection of

[sage-devel] Re: Can't figure out how polynomial conversion works in the M2/Sage interface

2016-07-04 Thread leif
saad khalid wrote: > Sorry about that, I thought sage-devel was for talking/asking questions > related to doing development on Sage. Since I was editting the source, I > assumed it would be okay to post it here, but if it's not, I'll > definitely remember that in the future. Well it is, but neithe

Re: [sage-devel] make giac/giacpy a standard package

2016-07-04 Thread Francois Bissey
> On 5/07/2016, at 09:10, Francois Bissey > wrote: > > I wouldn’t try to use one of these. Detecting blas/lapack automatically is > a fool’s errand. There are no standard naming scheme for the libraries > and distress can mess things up on top of it. distress -> distros [thank you automatic sp

Re: [sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread François Bissey
On 04/07/16 22:41, parisse wrote: I will also add a --disable-ao flag in configure.in (ao is used for the playsnd command) Do you have an ETA for that? I noticed it has not landed in 1.2.2-65. Francois -- You received this message because you are subscribed to the Google Groups "sage-devel"

Re: [sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread François Bissey
On 04/07/16 22:41, parisse wrote: I'm fixing the build for --disable-gui And I am guessing you didn't mean that it would be in 1.2.2-65 either. I am still getting /bin/sh ../libtool --tag=CXX --mode=compile x86_64-pc-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I.. -DIN_GIAC -I. -I.. -I. -I..

Re: [sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread parisse
disable-gui should be working. If not, then I probably made a mistake while copying the archive, you can try http://www-fourier.ujf-grenoble.fr/~parisse/giac/giac-1.2.2.tar.gz I don't know what you mean by ETA, but disable-ao should also be working. For lapack, it was a little nightmare before I

Re: [sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Dima Pasechnik
On Tuesday, July 5, 2016 at 6:13:53 AM UTC+1, parisse wrote: > > disable-gui should be working. If not, then I probably made a mistake > while copying the archive, you can try > http://www-fourier.ujf-grenoble.fr/~parisse/giac/giac-1.2.2.tar.gz > I don't know what you mean by ETA, but disable-a

Re: [sage-devel] Re: make giac/giacpy a standard package

2016-07-04 Thread Francois Bissey
> On 5/07/2016, at 17:13, parisse wrote: > > disable-gui should be working. If not, then I probably made a mistake while > copying the archive, you can try > http://www-fourier.ujf-grenoble.fr/~parisse/giac/giac-1.2.2.tar.gz Yes that tarball has the goods. I’ll wait for a new 1.2.2-xx tarball