Re: [sage-release] Sage 6.2.beta6 released

2014-04-05 Thread Francois Bissey
Same error that Karl-Dieter on OS X 10.4 see 
http://trac.sagemath.org/ticket/16047
for a very minimal patch for this.

François
On 5/04/2014, at 22:08, Sébastien Labbé sla...@gmail.com wrote:

 Bonjour sage-release,
 
 On Wednesday, April 2, 2014 2:09:20 AM UTC+2, Volker Braun wrote:
 Get it from the develop git branch or the source tarball at 
 http://boxen.math.washington.edu/home/release/sage-6.2.beta6/sage-6.2.beta6.tar.gz
 
 I get an error while building matplotlib1-3.1. It seems freetype is 
 missing. I copy pasted the relevant log below.
 
 My computer is kind of old (mac osx 10.5.8) :
 
 $ uname -a
 Darwin pol 9.8.0 Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; 
 root:xnu-1228.15.4~1/RELEASE_I386 i386
 
 $ cat /Users/slabbe/Applications/sage-6.2.beta6/logs/pkgs/matplotlib-1.3.1.log
 Found local metadata for matplotlib-1.3.1
 Found local sources at 
 /Users/slabbe/Applications/sage-6.2.beta6/upstream/matplotlib-1.3.1.tar.gz
 Checksum: 0673384bdd92d3c6d135d7b9729a221b vs 0673384bdd92d3c6d135d7b9729a221b
 matplotlib-1.3.1
 
 Setting up build directory for matplotlib-1.3.1
 Finished set up
 
 Host system:
 Darwin pol 9.8.0 Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; 
 root:xnu-1228.15.4~1/RELEASE_I386 i386
 
 C compiler: gcc
 C compiler version:
 Using built-in specs.
 COLLECT_GCC=gcc
 COLLECT_LTO_WRAPPER=/Users/slabbe/Applications/sage-6.2.beta6/local/libexec/gcc/i386-apple-darwin9.8.0/4.7.3/lto-wrapper
 Target: i386-apple-darwin9.8.0
 Configured with: ../src/configure 
 --prefix=/Users/slabbe/Applications/sage-6.2.beta6/local 
 --with-local-prefix=/Users/slabbe/Applications/sage-6.2.beta6/local 
 --with-gmp=/Users/slabbe/Applications/sage-6.2.beta6/local 
 --with-mpfr=/Users/slabbe/Applications/sage-6.2.beta6/local 
 --with-mpc=/Users/slabbe/Applications/sage-6.2.beta6/local --with-system-zlib 
 --disable-multilib --disable-nls  
 Thread model: posix
 gcc version 4.7.3 (GCC) 
 
 NOTE: Set SAGE_MATPLOTLIB_GUI to anything but 'no' to try to build the 
 Matplotlib GUI.
 Not building any matplotlib graphical backends.
 patching file lib/matplotlib/tri/_tri.cpp
 patching file lib/matplotlib/tri/_tri.h
 patching file setup.py
 
 Edit setup.cfg to change the build options
 
 BUILDING MATPLOTLIB
 matplotlib: yes [1.3.1]
 python: yes [2.7.5 (default, Apr  5 2014, 03:09:15)  [GCC
 4.7.3]]
   platform: yes [darwin]
 
 REQUIRED DEPENDENCIES AND EXTENSIONS
  numpy: yes [version 1.7.0]
   dateutil: yes [using dateutil version 2.2]
tornado: yes [tornado was not found. It is required for the
 WebAgg backend. pip/easy_install may attempt to
 install it after matplotlib.]
  pyparsing: yes [using pyparsing version 2.0.1]
  pycxx: yes [Couldn't import.  Using local copy.]
 libagg: yes [pkg-config information for 'libagg' could not
 be found. Using local copy.]
   freetype: no  [The C/C++ header for freetype2 (ft2build.h)
 could not be found.  You may need to install the
 development package.]
png: yes [pkg-config information for 'libpng' could not
 be found. Using unknown version.]
 
 OPTIONAL SUBPACKAGES
sample_data: yes [installing]
   toolkits: yes [installing]
 
 OPTIONAL BACKEND EXTENSIONS
 macosx: no  [skipping due to configuration]
 qt4agg: no  [PyQt4 not found]
gtk3agg: no  [Requires pygobject to be installed.]
  gtk3cairo: no  [Requires cairo to be installed.]
 gtkagg: no  [skipping due to configuration]
  tkagg: no  [skipping due to configuration]
  wxagg: no  [skipping due to configuration]
gtk: no  [skipping due to configuration]
agg: yes [installing]
  cairo: no  [cairo not found]
  windowing: no  [skipping due to configuration]
 
 OPTIONAL LATEX DEPENDENCIES
 dvipng: yes [version 1.12]
ghostscript: yes [version 8.70]
  latex: yes [version 3.1415926]
pdftops: no
 
 
 * The following required packages can not be built:
 * freetype
 Error building matplotlib package.
 
 real0m3.183s
 user0m0.512s
 sys0m0.573s
 
 Error 

Re: [sage-release] Sage 6.2.beta6 released

2014-04-02 Thread Volker Braun
On Wednesday, April 2, 2014 2:25:58 AM UTC+1, François wrote:

 I cannot see the pynac upgrade ticket in there, yet pynac has been updated 
 to 0.3.2, is it in that list under a non-obvious name? 


 
 $ git log -1 build/pkgs/pynac
commit c1cf3fc54366d600d84d6a9648eced5034ea10bc
Author: Volker Braun vbraun.n...@gmail.com
Date:   Thu Mar 20 10:03:28 2014 -0400

updated to pynac 0.3.2


$ git trac find c1cf3fc54366d600d84d6a9648eced5034ea10bc
Commit has been merged by the release manager into your current branch.
commit 3b73d1644f1b0cd0ad441c20b999d3e0b9c425d2
Merge: 1b6930b aa7287f
Author: Release Manager rele...@sagemath.org
Date:   Mon Mar 31 13:26:44 2014 +0100

Trac #14780: allow embedding python tuples in SR

Attached patch allows embedding Python tuples in symbolic expressions:
{{{
sage: t = SR._force_tuple((1, 2, x, x+1, x+2))
sage: t
(1, 2, x, x + 1, x + 2)
sage: t.subs(x = 2*x^2)
(1, 2, 2*x^2, 2*x^2 + 1, 2*x^2 + 2)
sage: t.op[0]
1
sage: t.op[2]
x
}}}

Includes pynac 0.3.2 update for explicit template instantiatitons

http://boxen.math.washington.edu/home/vbraun/upstream/pynac-0.3.2.tar.bz
2

URL: http://trac.sagemath.org/14780
Reported by: burcin
Ticket author(s): Burcin Erocal, Volker Braun
Reviewer(s): Volker Braun, Jean-Pierre Flori


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


[sage-release] Sage 6.2.beta6 released

2014-04-01 Thread Volker Braun
Get it from the develop git branch or the source tarball 
at 
http://boxen.math.washington.edu/home/release/sage-6.2.beta6/sage-6.2.beta6.tar.gz

Mini-changelog:

12bbca0 Updated Sage version to 6.2.beta6
a473d6f Trac #14800: Implement Pynac-Python callback for function::subs()
cdfaa4a Trac #15723: move CryptoMiniSat SPKG to build/pkgs
1039e08 Trac #11840: 
sage.symbolic.expression.Expression.collect_common_factors has no 
documentation
5864971 Trac #15138: BuiltinFunction._is_registered is giving false 
negatives
696140c Trac #14816: Implement absolute order for coxeter groups
d40939f Trac #15870: (LaTeX)-typesetting of multi-character variables wrong
a113723 Trac #15998: Restore some documentation and doctests and a function 
removed with #15466
76998bf Trac #15928: Typesetting errors in docstring of 
FiniteStateMachine._latex_transition_label_
f4ce665 Trac #13917: IndependentSets class
b5cca4c Trac #15288: Balanced Incomplete Block Designs with k=4
1d28062 Trac #16024: incorrect deleting of states in finite state machine
b2d98f2 Trac #16021: remove deprecated code in rings/
fe97289 Trac #16019: Connected components for immutable digraphs does not 
work
7ea77e7 Trac #15992: Python 3 preparation: Change backticks into repr()
cb8562e Trac #15991: Python 3 preparation: Rename sys.maxint to sys.maxsize
317e5ff Trac #12892: Toric fibration morphisms
416f22b Trac #10745: bug in elliptic curve gens()
b78a148 Trac #16016: FiniteStateMachine.__and__ calls intersection and 
FiniteStateMachine.__or__ calls union.
0fb48b1 Trac #15969: New class method: Kazhdan-Lusztig R_tilde polynomial
e231e52 Trac #14050: Cleaning up docs in Finite Coxeter Groups
10facf2 Trac #16028: bad formatting in the doc of the genus method for 
graphs
16f8906 Trac #15997: a typo in stirling1 numbers
d4d9b99 Trac #16032: Bug in IncidenceStructure.dual_design
b019163 Trac #10735: Simon 2-descent only returns an upper bound on the 
2-Selmer rank
527c91b Trac #15988: Python 3 preparation: Add missing parentheses in list 
comprension
9d3d9a4 Trac #15982: Python 3 preparation: Change the syntax of the except 
clause
367ab0c Trac #15949: Involutions on NSym and QSym part II
f0c8b3f Trac #15705: functions PowerSeries.ogf() and egf() named wrong
f4ae33f Trac #15287: Orthogonal Arrays
f663334 Trac #9322: long time in simon_two_descent for elliptic curves
27de53f Trac #16009: Compute rank of elliptic curve defined over relative 
number field
16069ee Trac #11907: Modify tutorials: no more 'examples' directory
c738289 Trac #16011: Fix _torsion_bound() for elliptic curves over relative 
number fields
c31b2bb Trac #15351: import_statements sometimes fails
e41c9db Trac #16027: Implement q-dimension for classical and KR crystals
3b73d16 Trac #14780: allow embedding python tuples in SR
1b6930b Trac #16022: simon_two_descent sometimes gives wrong answers
72e748f Trac #16015: dateutils requires setuptools
e439592 Trac #16002: matplotlib-1.3.1 does not install
47619bc Trac #15972: IPython ProfileDirError if IPython was never run
e046d7a Trac #15942: fix md5 in sage-spkg
9db8c5c Updated Sage version to 6.2.beta5

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