chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:36:30 +08:00
commit 55ab4e4a73
473 changed files with 72932 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/bin/bash
# Install docker:
# https://yeasy.gitbook.io/docker_practice/install/ubuntu#shi-yong-jiao-ben-zi-dong-an-zhuang
# compiles mac packages for python 3.6、3.7、3.8、3.9
# requirements:
# docker
# quay.io/pypa/manylinux1_x86_64 (docker container)
export WORKDIR=$HOME/build
if [ ! -d "$WORKDIR" ]; then
mkdir -p "$WORKDIR"
cd "$WORKDIR" || exit
git clone https://github.com/easy-graph/Easy-Graph.git
fi
chmod -R 777 "$WORKDIR"/Easy-Graph/
cd "$WORKDIR"/Easy-Graph || exit
docker run -it -v "$WORKDIR":/src --user "$(id -u):$(id -g)" quay.io/pypa/manylinux1_x86_64 /src/Easy-Graph/scripts/build_packages_linux.sh