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 remote-tracking branch 'trac/u/ohanar/build_system' into sage-bin
Conflicts: src/bin/sage -> sage.in src/bin/sage-env -> env.sh.in src/bin/sage-spkg -> sage-spkg.in
- Loading branch information
Showing
139 changed files
with
10,597 additions
and
14,462 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
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 5.12.beta3, released 2013-08-21 | ||
Sage version 5.12.beta4, released 2013-08-30 |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
src |
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,53 @@ | ||
= git - the stupid content tracker = | ||
|
||
== Description == | ||
|
||
Git is a fast, scalable, distributed revision control system with an | ||
unusually rich command set that provides both high-operations and | ||
full access to internals. | ||
|
||
-- `man git` | ||
|
||
== SPKG Maintainers == | ||
|
||
* Keshav Kini | ||
|
||
== Upstream Contact == | ||
|
||
* Maintainer: Junio C. Hamano | ||
* Website: http://git-scm.com/ | ||
|
||
== Dependencies == | ||
|
||
* zlib | ||
|
||
Note: excluding libcurl and expat because they are large and only | ||
required if you're communicating with repositories over HTTP. If you | ||
need to do so, please use an external version of git. | ||
|
||
== Changelog == | ||
|
||
=== git-1.7.12.2.p0 (Jeroen Demeyer, 2012-10-02) === | ||
|
||
* #12707: Upgrade to git-1.7.12.2 | ||
* Disable Tcl/Tk GUI (otherwise Tcl/Tk is a dependency) | ||
* Various fixes to spkg-install | ||
* Keep SANE_TOOL_PATH empty to ensure the PATH isn't changed | ||
* Figure out *correct* path to "install" | ||
* Add patch no-autoconf.patch to prevent running autoconf | ||
|
||
=== git-1.7.10 (Keshav Kini, 2012-04-20) === | ||
|
||
* #12707: Upgrade to latest stable | ||
* Fix building on OS X by making the installer ignore Fink and Darwin | ||
Ports | ||
* Make sure not to use the system Python for anything | ||
|
||
=== git-1.7.9.4 (Keshav Kini, 2012-03-19) === | ||
|
||
* Upgrade to latest stable | ||
* Track dependencies | ||
|
||
=== git-1.7.2.4 (William Stein, 2012-03-19) === | ||
|
||
* Initial version |
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 @@ | ||
sha1=8cce24a390595d6e62c3aa66bef332ab95900173 | ||
md5=9b178a549f64e6f896b634e76ce4c1a6 | ||
cksum=3835145085 |
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 @@ | ||
1.7.12.2.p0 |
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 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "spkg-check: Tests for git have already been performed by spkg-install. Good day!" |
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,64 @@ | ||
#!/usr/bin/env bash | ||
|
||
die () { | ||
echo "$@" >&2 | ||
exit 1 | ||
} | ||
|
||
[ -n "$SAGE_LOCAL" ] || die 'Error: $SAGE_LOCAL not set. Source sage-env or run this script from `sage -sh`.' | ||
|
||
if [ "$SAGE64" = yes ]; then | ||
echo "Building with extra 64-bit flags" | ||
if [ -z "$CFLAG64" ]; then | ||
CFLAG64=-m64 | ||
fi | ||
export CFLAGS="$CFLAGS $CFLAG64" | ||
export CPPFLAGS="$CPPFLAGS $CFLAG64" | ||
export LDFLAGS="$LDFLAGS $CFLAG64" | ||
fi | ||
|
||
# Path to "install" command | ||
for cmd in /usr/ucb/install ginstall install; do | ||
[ -z "$INSTALL" ] || break | ||
INSTALL=`command -v $cmd 2>/dev/null` | ||
done | ||
[ -n "$INSTALL" ] || die 'No install program found' | ||
echo "Using install program $INSTALL" | ||
|
||
|
||
cd src | ||
# Apply patches. | ||
for patch in ../patches/*.patch; do | ||
[ -r "$patch" ] || continue # Skip non-existing or non-readable patches | ||
patch -p1 <"$patch" | ||
if [ $? -ne 0 ]; then | ||
echo >&2 "Error applying '$patch'" | ||
exit 1 | ||
fi | ||
done | ||
|
||
|
||
export NO_FINK=1 | ||
export NO_DARWIN_PORTS=1 | ||
|
||
# First make GIT-VERSION-FILE (we patched Makefile such that configure | ||
# no longer depends on this, so it's safer to explicitly build this). | ||
$MAKE GIT-VERSION-FILE | ||
|
||
# Configure without Tcl/Tk (otherwise git *requires* Tcl/Tk). | ||
# We keep SANE_TOOL_PATH empty, otherwise git messes with the PATH on | ||
# some systems, leading for example to a different "make" being used. | ||
./configure --prefix="$SAGE_LOCAL" \ | ||
--with-python="$SAGE_LOCAL"/bin/python \ | ||
--without-tcltk \ | ||
--with-sane-tool-path= \ | ||
|| die 'Error configuring git.' | ||
|
||
if [ "$SAGE_CHECK" = yes ]; then | ||
$MAKE test || die "Error running git's combined build/test suite." | ||
else | ||
$MAKE || die 'Error building git.' | ||
fi | ||
|
||
# Force path to "install" program | ||
$MAKE INSTALL="$INSTALL" install || die 'Error installing git.' |
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,3 +1,3 @@ | ||
sha1=1076f8ddcaa3f51e5febac9d8fdb39e789c22a1d | ||
md5=3108fd91d47e2a87e17b92834f5e79d8 | ||
cksum=2751286105 | ||
sha1=b533236e5c5d4f85bbc654c2bfe890dbb9e68b8e | ||
md5=29585ef7a2e4396527fa64de11c36e59 | ||
cksum=4222531866 |
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 @@ | ||
0.13.1 | ||
0.13.2 |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
clean: | ||
@echo "Deleting Sage library build artifacts..." | ||
rm -f c_lib/.sconsign.dblite | ||
find c_lib -name '*.os' | xargs rm -f | ||
find c_lib -name '*.so' | xargs rm -f | ||
rm -rf build | ||
find -name '*.pyc' | xargs rm -f | ||
find -name '*.pyx' | sed 's/pyx$$/c/' | xargs rm -f | ||
find -name '*.pyx' | sed 's/pyx$$/cpp/' | xargs rm -f | ||
rm -rf sage/modular/arithgroup/farey_symbol.h | ||
rm -rf sage/rings/real_mpfi.h | ||
rm -rf sage/symbolic/pynac.h |
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
Oops, something went wrong.