Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Aug 2013 02:37:31 +0000 (UTC)
From:      Stephen Montgomery-Smith <stephen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r324750 - in head/math/sage: . files
Message-ID:  <201308150237.r7F2bVDx091588@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: stephen
Date: Thu Aug 15 02:37:30 2013
New Revision: 324750
URL: http://svnweb.freebsd.org/changeset/ports/324750

Log:
  - Update to 5.11.

Added:
  head/math/sage/files/spkg-patch-ppl_-_src_demos_ppl_lpsol_ppl_lpsol.c   (contents, props changed)
Modified:
  head/math/sage/Makefile
  head/math/sage/distinfo
  head/math/sage/files/spkg-patch-python_-_src_Doc_library_fcntl.rst
  head/math/sage/files/spkg-patch-python_-_src_Modules__ctypes_libffi_configure
  head/math/sage/files/spkg-patch-python_-_src_Modules_fcntlmodule.c
  head/math/sage/files/spkg-patch-python_-_src_Python_thread_pthread.h
  head/math/sage/files/spkg-patch-python_-_src_setup.py
  head/math/sage/files/spkg-patch-sage_-_doc_common_builder.py

Modified: head/math/sage/Makefile
==============================================================================
--- head/math/sage/Makefile	Thu Aug 15 01:59:51 2013	(r324749)
+++ head/math/sage/Makefile	Thu Aug 15 02:37:30 2013	(r324750)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	sage
-PORTVERSION=	5.10
-PORTREVISION=	1
+PORTVERSION=	5.11
 CATEGORIES=	math
 MASTER_SITES=	http://boxen.math.washington.edu/home/sagemath/sage-mirror/src/ \
 		http://mirrors.xmission.com/sage/src/ \

Modified: head/math/sage/distinfo
==============================================================================
--- head/math/sage/distinfo	Thu Aug 15 01:59:51 2013	(r324749)
+++ head/math/sage/distinfo	Thu Aug 15 02:37:30 2013	(r324750)
@@ -1,2 +1,2 @@
-SHA256 (sage-5.10.tar) = 6675f3a0bd04d54cf7699354814e3d9fc184397d4c18b331487c1ffbd16901ed
-SIZE (sage-5.10.tar) = 335462400
+SHA256 (sage-5.11.tar) = 2d03eb98075709b647ac9cc72bf5c7b52e4585e381b4015a3d21216c36814a12
+SIZE (sage-5.11.tar) = 339742720

Added: head/math/sage/files/spkg-patch-ppl_-_src_demos_ppl_lpsol_ppl_lpsol.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/sage/files/spkg-patch-ppl_-_src_demos_ppl_lpsol_ppl_lpsol.c	Thu Aug 15 02:37:30 2013	(r324750)
@@ -0,0 +1,11 @@
+--- ppl-1.0.p0/src/demos/ppl_lpsol/ppl_lpsol.c.orig	2013-06-20 17:21:39.000000000 +0000
++++ ppl-1.1pre9.p0/src/demos/ppl_lpsol/ppl_lpsol.c	2013-06-20 17:39:44.000000000 +0000
+@@ -534,7 +534,7 @@
+   if (getrlimit(RLIMIT_AS, &t) != 0)
+     fatal("getrlimit failed: %s", strerror(errno));
+ 
+-  if (bytes < t.rlim_cur) {
++  if (bytes < (unsigned long)(t.rlim_cur)) {
+     t.rlim_cur = bytes;
+     if (setrlimit(RLIMIT_AS, &t) != 0)
+       fatal("setrlimit failed: %s", strerror(errno));

Modified: head/math/sage/files/spkg-patch-python_-_src_Doc_library_fcntl.rst
==============================================================================
--- head/math/sage/files/spkg-patch-python_-_src_Doc_library_fcntl.rst	Thu Aug 15 01:59:51 2013	(r324749)
+++ head/math/sage/files/spkg-patch-python_-_src_Doc_library_fcntl.rst	Thu Aug 15 02:37:30 2013	(r324750)
@@ -1,5 +1,5 @@
 --- python-2.7.3.p0/src/Doc/library/fcntl.rst.orig	2011-06-11 15:46:23.000000000 +0000
-+++ python-2.7.4.p0/src/Doc/library/fcntl.rst	2012-04-22 00:31:48.000000000 +0000
++++ python-2.7.5.p1/src/Doc/library/fcntl.rst	2012-04-22 00:31:48.000000000 +0000
 @@ -50,8 +50,6 @@
     operations are typically defined in the library module :mod:`termios` and the
     argument handling is even more complicated.

Modified: head/math/sage/files/spkg-patch-python_-_src_Modules__ctypes_libffi_configure
==============================================================================
--- head/math/sage/files/spkg-patch-python_-_src_Modules__ctypes_libffi_configure	Thu Aug 15 01:59:51 2013	(r324749)
+++ head/math/sage/files/spkg-patch-python_-_src_Modules__ctypes_libffi_configure	Thu Aug 15 02:37:30 2013	(r324750)
@@ -1,5 +1,5 @@
 --- python-2.7.3.p0/src/Modules/_ctypes/libffi/configure.orig	2011-06-11 15:46:26.000000000 +0000
-+++ python-2.7.4.p0/src/Modules/_ctypes/libffi/configure	2012-04-22 00:23:14.000000000 +0000
++++ python-2.7.5.p1/src/Modules/_ctypes/libffi/configure	2012-04-22 00:23:14.000000000 +0000
 @@ -6289,7 +6289,7 @@
    rm -rf conftest*
    ;;

Modified: head/math/sage/files/spkg-patch-python_-_src_Modules_fcntlmodule.c
==============================================================================
--- head/math/sage/files/spkg-patch-python_-_src_Modules_fcntlmodule.c	Thu Aug 15 01:59:51 2013	(r324749)
+++ head/math/sage/files/spkg-patch-python_-_src_Modules_fcntlmodule.c	Thu Aug 15 02:37:30 2013	(r324750)
@@ -1,5 +1,5 @@
 --- python-2.7.3.p0/src/Modules/fcntlmodule.c.orig	2011-06-11 15:46:27.000000000 +0000
-+++ python-2.7.4.p0/src/Modules/fcntlmodule.c	2012-04-22 00:23:34.000000000 +0000
++++ python-2.7.5.p1/src/Modules/fcntlmodule.c	2012-04-22 00:23:34.000000000 +0000
 @@ -97,20 +97,15 @@
  {
  #define IOCTL_BUFSZ 1024

Modified: head/math/sage/files/spkg-patch-python_-_src_Python_thread_pthread.h
==============================================================================
--- head/math/sage/files/spkg-patch-python_-_src_Python_thread_pthread.h	Thu Aug 15 01:59:51 2013	(r324749)
+++ head/math/sage/files/spkg-patch-python_-_src_Python_thread_pthread.h	Thu Aug 15 02:37:30 2013	(r324750)
@@ -1,5 +1,5 @@
 --- python-2.7.3.p0/src/Python/thread_pthread.h.orig	2011-06-11 15:46:28.000000000 +0000
-+++ python-2.7.4.p0/src/Python/thread_pthread.h	2012-04-22 00:23:46.000000000 +0000
++++ python-2.7.5.p1/src/Python/thread_pthread.h	2012-04-22 00:23:46.000000000 +0000
 @@ -38,13 +38,18 @@
  #endif
  #endif

Modified: head/math/sage/files/spkg-patch-python_-_src_setup.py
==============================================================================
--- head/math/sage/files/spkg-patch-python_-_src_setup.py	Thu Aug 15 01:59:51 2013	(r324749)
+++ head/math/sage/files/spkg-patch-python_-_src_setup.py	Thu Aug 15 02:37:30 2013	(r324750)
@@ -1,5 +1,5 @@
---- python-2.7.4.p0/src/setup.py-orig	2013-03-17 03:13:46.000000000 +0000
-+++ python-2.7.4.p0/src/setup.py	2013-03-17 03:15:11.000000000 +0000
+--- python-2.7.5.p1/src/setup.py-orig	2013-03-17 03:13:46.000000000 +0000
++++ python-2.7.5.p1/src/setup.py	2013-03-17 03:15:11.000000000 +0000
 @@ -642,7 +642,7 @@
          # use the same library for the readline and curses modules.
          if 'curses' in readline_termcap_library:
@@ -18,15 +18,6 @@
                                     extra_link_args=readline_extra_link_args,
                                     libraries=readline_libs) )
          else:
-@@ -783,6 +783,8 @@
-             # OpenSSL doesn't do these until 0.9.8 so we'll bring our own hash
-             exts.append( Extension('_sha256', ['sha256module.c']) )
-             exts.append( Extension('_sha512', ['sha512module.c']) )
-+        else:
-+            open('.without_own_sha', 'w')
- 
-         # Modules that provide persistent dictionary-like semantics.  You will
-         # probably want to arrange for at least one of them to be available on
 @@ -1120,7 +1122,7 @@
                  sysroot = macosx_sdk_root()
                  f = os.path.join(sysroot, f[1:])

Modified: head/math/sage/files/spkg-patch-sage_-_doc_common_builder.py
==============================================================================
--- head/math/sage/files/spkg-patch-sage_-_doc_common_builder.py	Thu Aug 15 01:59:51 2013	(r324749)
+++ head/math/sage/files/spkg-patch-sage_-_doc_common_builder.py	Thu Aug 15 02:37:30 2013	(r324750)
@@ -1,5 +1,5 @@
 --- sage-5.8.rc0/doc/common/builder.py-orig	2013-03-17 20:50:38.000000000 +0000
-+++ sage-5.10/doc/common/builder.py	2013-03-17 20:56:42.000000000 +0000
++++ sage-5.11/doc/common/builder.py	2013-03-17 20:56:42.000000000 +0000
 @@ -272,13 +272,16 @@
  
          # build the other documents in parallel



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308150237.r7F2bVDx091588>