-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
Milestone
Description
hi!
I'm trying to package the new 4.9.0 version and noticed this diff by our packaging tools:
usr/lib/python3.10/site-packages/pwntools-doc/ | usr/pwntools-doc/
usr/lib/python3.10/site-packages/pwntools-doc/CHANGELOG.md | usr/pwntools-doc/CHANGELOG.md
usr/lib/python3.10/site-packages/pwntools-doc/CONTRIBUTING.md | usr/pwntools-doc/CONTRIBUTING.md
usr/lib/python3.10/site-packages/pwntools-doc/DOCKER.md | usr/pwntools-doc/DOCKER.md
usr/lib/python3.10/site-packages/pwntools-doc/LICENSE-pwntool | usr/pwntools-doc/LICENSE-pwntools.txt
usr/lib/python3.10/site-packages/pwntools-doc/README.md | usr/pwntools-doc/README.md
usr/lib/python3.10/site-packages/pwntools-doc/TESTING.md | usr/pwntools-doc/TESTING.md
usr/lib/python3.10/site-packages/pwntools-doc/requirements.tx | usr/pwntools-doc/requirements.txt
I ultimately don't care that much about the documentation location, but /usr/pwntools-doc is not a standard location according to the Filesystem Hierarchy Standard. Is there a way I can change this to /usr/share/doc/pwntools when building the package?
I'm using this command to prepare the package contents (${pkgdir} is the directory that gets put into the package):
python setup.py install -O1 --root="${pkgdir}" --skip-build --only-use-pwn-command
Thanks!