This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into ticket/15692
Conflicts: src/sage/misc/cachefunc.pyx
- Loading branch information
Showing
970 changed files
with
86,094 additions
and
19,729 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,9 @@ | |
.idea | ||
.iml | ||
|
||
# XCode | ||
xcuserdata/ | ||
|
||
# Eclipse | ||
*.pydevproject | ||
.project | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Sage version 6.2, released 2014-05-06 | ||
Sage version 6.3.beta6, released 2014-07-19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=61c073042a1329f34af67ae4b420c791f12aa199 | ||
md5=41bc80778003eb287b724138bdc75fe8 | ||
cksum=2346983684 | ||
sha1=3265062e02ba06ebe5897596eea08fb04cb3c554 | ||
md5=f3a75a886044f86dab6565b399141bde | ||
cksum=666076577 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
26 | ||
36 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
= d3js = | ||
|
||
== Description == | ||
|
||
D3.js is a JavaScript library for manipulating documents based on data. | ||
The file d3.min.js will be placed into the ${SAGE_SHARE}/d3js/ directory. | ||
|
||
== License == | ||
|
||
BSD 3-Clause License | ||
|
||
== SPKG Maintainers == | ||
|
||
* Thierry Monteil | ||
|
||
== Upstream Contact == | ||
|
||
Author: Mike Bostock (http://bost.ocks.org/mike/) | ||
Home page: http://d3js.org/ | ||
|
||
== Dependencies == | ||
|
||
None. | ||
|
||
== Special Update/Build Instructions == | ||
|
||
Two kind of archives can be downloaded from d3.js website: one with all source | ||
code and tests that weights 2,9M (both in zip and tar.gz formats) and one with | ||
the final javascript scripts which weights 121K (zip format only). Since | ||
testing requires node.js that is not shipped with Sage, we currenlty ship the | ||
final js only. Hence we have to transform it from zip to tar.gz format. | ||
Running sage-src should do all the repackaging job. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
tarball=d3js-VERSION.tar.gz | ||
sha1=2fd4da34ca9e645cf81bf914d289c21c7bb8c166 | ||
md5=d859a120f1eaebb8b563f4598868c564 | ||
cksum=527881311 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.4.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
|
||
if [ -z "$SAGE_SHARE" ]; then | ||
echo >&2 "SAGE_SHARE undefined ... exiting" | ||
echo >&2 "Maybe run 'sage --sh'?" | ||
exit 1 | ||
fi | ||
|
||
TARGET="${SAGE_SHARE}/d3js" | ||
if [ ! -d "${TARGET}" ]; then | ||
mkdir "${TARGET}" | ||
fi | ||
|
||
cp 'src/d3.min.js' "${TARGET}/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
[ -n "${SAGE_ROOT}" ] || SAGE_ROOT="$(pwd)/../../../" | ||
|
||
|
||
# prepare a clean directory. | ||
[ -d "work" ] && rm -rf "work" | ||
mkdir "work" | ||
cd "work" | ||
|
||
|
||
# determine latest version. | ||
wget 'https://raw.githubusercontent.com/mbostock/d3/master/package.json' | ||
GIT_VERSION="$(grep '"version":' 'package.json' | sed 's/.*: "\(.*\)",/\1/g')" | ||
|
||
|
||
# fetch source and check version. | ||
wget "https://github.com/mbostock/d3/releases/download/v${GIT_VERSION}/d3.zip" | ||
unzip 'd3.zip' | ||
ZIP_VERSION="$(grep 'version:' 'd3.js' | sed 's/.*: "\(.*\)"/\1/g')" | ||
if [ ! "${GIT_VERSION}" = "${ZIP_VERSION}" ] ; then | ||
echo "Version mismatch: ${GIT_VERSION} vs ${ZIP_VERSION}." | ||
exit 1 | ||
fi | ||
|
||
|
||
# build and move tarball | ||
mkdir "d3js-${ZIP_VERSION}" | ||
mv 'd3.min.js' 'LICENSE' "d3js-${ZIP_VERSION}" | ||
tar czvf "d3js-${ZIP_VERSION}.tar.gz" "d3js-${ZIP_VERSION}" | ||
mv "d3js-${ZIP_VERSION}.tar.gz" "${SAGE_ROOT}/upstream/" | ||
|
||
|
||
# update package info | ||
cd .. | ||
echo "${ZIP_VERSION}" > 'package-version.txt' | ||
sage -sh 'sage-fix-pkg-checksums' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=database_cremona_ellcurve-VERSION.tar.bz2 | ||
sha1=25f256d78bf5c4454d85bb9a22df2d396e4962ba | ||
md5=14de1b11227fdd66e1a87e8101940988 | ||
cksum=2753267872 | ||
sha1=ab96f509574419c03d9f1c8820c4d96042a17a04 | ||
md5=56956829063534142f9f12bc1274c01c | ||
cksum=2400753722 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
20140325 | ||
20140512 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=database_gap-VERSION.tar.bz2 | ||
sha1=6e5f63df55881a509076c4ecbd02c7afc8f81ef9 | ||
md5=6f9d4632f6d2f4a7000c22cff5d15406 | ||
cksum=1275532986 | ||
sha1=0e81cd017dc0542fc5faf923324eb1fffb61cdeb | ||
md5=879fc85f53fa9ff9f12dc7ebd621a528 | ||
cksum=3437971482 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.7.4 | ||
4.7.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=ecl-VERSION.tar.bz2 | ||
sha1=0f5a540bd6d089d206cce674e0c73f4036191547 | ||
md5=204bb44496fdda0e552a987f003fed69 | ||
cksum=1587965735 | ||
sha1=c79fa3573afad1834cf6057c15f303505fc0011d | ||
md5=52ca39a0abd4d0822abdd9e909cc5ffd | ||
cksum=2846116483 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
12.12.1.p4 | ||
12.12.1.20140409 |
Oops, something went wrong.