-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
71 additions
and
97 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 was deleted.
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,24 +1,8 @@ | ||
#!/bin/sh | ||
|
||
mkdir -p $PREFIX/lib/python$PY_VER/site-packages/tests/testdata | ||
cp -r tests/testdata/* $PREFIX/lib/python$PY_VER/site-packages/tests/testdata/ | ||
|
||
# Read the "versions" file located one directory up | ||
VERSION_FILE="../versions" | ||
|
||
# Extract the version for "wipertools" | ||
if [ -f "$VERSION_FILE" ]; then | ||
WIPERTOOLS_VERSION=$(grep "^wipertools:" "$VERSION_FILE" | cut -d':' -f2 | tr -d '[:space:]') | ||
export WIPERTOOLS_VERSION | ||
else | ||
echo "Error: versions file not found!" | ||
exit 1 | ||
fi | ||
|
||
WIPERTOOLS_VERSION=1.1.1 | ||
export WIPERTOOLS_VERSION | ||
|
||
# # Print the version (optional, for debugging) | ||
# echo "WIPERTOOLS_VERSION is set to $WIPERTOOLS_VERSION" | ||
# mkdir -p $PREFIX/lib/python$PY_VER/site-packages/tests/testdata | ||
# cp -r tests/testdata/* $PREFIX/lib/python$PY_VER/site-packages/tests/testdata/ | ||
mkdir -p $PREFIX/lib/python$PY_VER/site-packages/ | ||
cp versions.json $PREFIX/lib/python$PY_VER/site-packages/ | ||
|
||
$PYTHON setup.py install --single-version-externally-managed --record=$RECIPE_DIR/record.txt |
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 was deleted.
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
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
Empty file.
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,7 @@ | ||
{ | ||
"wipertools": "1.1.0", | ||
"fastqwiper": "1.0.1", | ||
"fastqscatter": "1.0.0", | ||
"fastqgather": "1.0.0", | ||
"summarygather": "1.0.0" | ||
} |