chore: Removed listing of all c/c++ and assimp source from MANIFEST.in as it is no more required. Also removed the script that updated this file

This commit is contained in:
Fabien LOISON 2024-01-06 16:39:30 +01:00
parent 2678c3a4ae
commit e0f35a8598
No known key found for this signature in database
GPG Key ID: FF90CA148348048E
2 changed files with 1 additions and 1274 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,35 +0,0 @@
#!/bin/bash
##
## Lists the files to include in sdist distribution. This can be used to
## generate the MANIFEST.in contents:
##
## scripts/generate_manifest_in.sh > MANIFEST.in
##
echo "include README.rst"
echo "include LICENSE"
echo
find yoga/model -name "*.h" -exec echo "include" "{}" ";"
find yoga/model -name "*.c" -exec echo "include" "{}" ";"
find yoga/model -name "*.cpp" -exec echo "include" "{}" ";"
echo
echo "include assimp/CREDITS"
echo "include assimp/LICENSE"
echo "include assimp/README.md"
echo "include assimp/CMakeLists.txt"
find assimp -type f -name "*.in" -exec echo "include" "{}" ";" \
| grep -v "^include assimp/\(include\|cmake-modules\|contrib\|test\|doc\)/"
find assimp/cmake-modules -type f -exec echo "include" "{}" ";"
find assimp/code -type f -exec echo "include" "{}" ";"
find assimp/contrib -type f -exec echo "include" "{}" ";" \
| grep -v "^include assimp/contrib/gtest"
find assimp/include -type f -exec echo "include" "{}" ";"
echo
echo "recursive-exclude test *"