-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from regro-cf-autotick-bot/4.13.1_h9af473
gap v4.13.1
- Loading branch information
Showing
14 changed files
with
69 additions
and
81 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -48,4 +48,4 @@ zip_keys: | |
- - c_stdlib_version | ||
- cdt_name | ||
zlib: | ||
- '1.2' | ||
- '1' |
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 |
---|---|---|
|
@@ -52,4 +52,4 @@ zip_keys: | |
- - c_stdlib_version | ||
- cdt_name | ||
zlib: | ||
- '1.2' | ||
- '1' |
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 |
---|---|---|
|
@@ -48,4 +48,4 @@ zip_keys: | |
- - c_stdlib_version | ||
- cdt_name | ||
zlib: | ||
- '1.2' | ||
- '1' |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,32 +1,14 @@ | ||
#!/bin/bash | ||
set -exo pipefail | ||
|
||
INSTALL_DIR="$PREFIX/share/gap" | ||
|
||
mkdir -p "$INSTALL_DIR" | ||
source $RECIPE_DIR/install-shared.sh | ||
|
||
make install | ||
|
||
set +e | ||
pushd pkg | ||
# Remove all object files and temporary files. | ||
find . \( \ | ||
-name "*.o" \ | ||
-o -name "*.lo" \ | ||
-o -name "*.la" \ | ||
-o -name "*.lai" \ | ||
-o -name ".libs" \ | ||
-o -name "config.log" \ | ||
-o -name "config.status" \ | ||
-o -name "libtool" \ | ||
\) -exec rm -rf {} \; | ||
popd | ||
echo "done" | ||
set -e | ||
|
||
mkdir -p "$INSTALL_DIR/pkg" | ||
cd pkg | ||
for GAP_PKG_NAME in smallgrp transgrp primgrp gapdoc utils; | ||
do | ||
echo "GAP_PKG_NAME: $GAP_PKG_NAME" | ||
mv $GAP_PKG_NAME $INSTALL_DIR/pkg/$GAP_PKG_NAME | ||
for pkg in smallgrp \ | ||
transgrp \ | ||
primgrp \ | ||
gapdoc \ | ||
utils; do | ||
mv pkg/$pkg $INSTALL_DIR/pkg/$pkg | ||
done |
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,33 +1,20 @@ | ||
INSTALL_DIR="$PREFIX/share/gap" | ||
#!/bin/bash | ||
set -exo pipefail | ||
|
||
rm -rf "$INSTALL_DIR/pkg" | ||
source $RECIPE_DIR/install-shared.sh | ||
|
||
set +e | ||
pushd pkg | ||
# Remove all object files and temporary files. | ||
find . \( \ | ||
-name "*.o" \ | ||
-o -name "*.lo" \ | ||
-o -name "*.la" \ | ||
-o -name "*.lai" \ | ||
-o -name ".libs" \ | ||
-o -name "config.log" \ | ||
-o -name "config.status" \ | ||
-o -name "libtool" \ | ||
\) -exec rm -rf {} \; | ||
|
||
echo "done" | ||
popd | ||
set -e | ||
|
||
mv pkg $INSTALL_DIR/pkg | ||
for pkg in `ls pkg/`; do | ||
mv pkg/$pkg $INSTALL_DIR/pkg/$pkg | ||
done | ||
|
||
pushd $INSTALL_DIR/pkg/jupyterkernel/ | ||
|
||
sed -i.bak "s@ GAP=gap@ GAP=$PREFIX/bin/gap@g" bin/jupyter-kernel-gap | ||
rm bin/jupyter-kernel-gap.bak | ||
rm setup.py | ||
cp $RECIPE_DIR/setup.py setup.py | ||
cp $RECIPE_DIR/gap-mode.json etc/ | ||
python -m pip install . --no-deps | ||
rm -rf $SP_DIR/gap_jupyter-* | ||
|
||
popd |
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,17 @@ | ||
#!/bin/bash | ||
|
||
INSTALL_DIR="$PREFIX/share/gap" | ||
|
||
mkdir -p "$INSTALL_DIR/pkg" | ||
|
||
# Remove all object files and temporary files. | ||
find pkg \( \ | ||
-name "*.o" \ | ||
-o -name "*.lo" \ | ||
-o -name "*.la" \ | ||
-o -name "*.lai" \ | ||
-o -name ".libs" \ | ||
-o -name "config.log" \ | ||
-o -name "config.status" \ | ||
-o -name "libtool" \ | ||
\) -exec rm -rf {} \; || true |
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