blob: 94725723d2a5d71fa3e5c6444c3d9d7743897714 (
plain) (
tree)
|
|
#!/bin/bash
shopt -s extglob
mkdir -p build
contents="$(cat slack/python_compatibility.py slack/util.py slack/shared.py slack/task.py slack/slack_message.py slack/!(python_compatibility|util|shared|task|slack_message).py main.py | \
perl -0777 -pe 's/^( *from [^(\n]+\([^)]+\))/$1=~s|\n+||gr/mge' | \
grep -Ev '^from slack[. ]')"
(
echo "# This is a compiled file."
echo "# For the original source, see https://github.com/wee-slack/wee-slack"
echo
echo "$contents" | grep '^from __future__' | sort -u
echo "$contents" | grep -v '^from __future__' | grep -E '^(import|from) ' | sort -u
echo "$contents" | grep -Ev '^(import|from) ' | sed 's/^\( \+\)\(import\|from\) .*/\1pass/'
) > build/slack.py
|