Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
optpackages: add script for generating the content
Since we now delete some files from the pip downloaded source
this makes it easier to reproduce the result with newer versions.
  • Loading branch information
lazka committed Mar 14, 2017
1 parent d866132 commit 0c026ea
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions quodlibet/quodlibet/optpackages/update.sh
@@ -0,0 +1,16 @@
#!/bin/bash

DIR="$( cd "$( dirname "$0" )" && pwd )"

rm -f "contextlib2.py"
pip install --system --no-compile --no-deps --target="$DIR/tmp" "contextlib2==0.5.4"
mv "$DIR/tmp/contextlib2.py" "$DIR"
rm -R "$DIR/tmp"

rm -Rf "raven"
pip install --system --no-compile --no-deps --target="$DIR/tmp" "raven==6.0.0"
mv "$DIR/tmp/raven" "$DIR"
rm -R "$DIR/tmp"

rm -R "$DIR/raven/contrib/"
rm -R "$DIR/raven/data/"

0 comments on commit 0c026ea

Please sign in to comment.