-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debian/ParrotOS .deb package for Humble #20
base: master
Are you sure you want to change the base?
Conversation
Hello, Thank you for your PR and your time. As we have spoken privately, I leave this PR on hold: I have to calmly review its content and possible impact on other distributions. We will keep in touch!. Best regards. |
Hello @danterolle, I haven't forgotten about this :)!. Please check the commit 88a4e5e ... I have mentioned you in https://github.com/rfc-st/humble/?tab=readme-ov-file#acknowledgements. I hope that with this change I cover your suggestion about absolute paths; about the rest of the changes you propose, I am still reviewing them. Thank you!. Best regards. |
Hello @rfc-st! Thanks a lot, if you think there are more changes needed (especially in the debian folder), let me know. I'll be happy to contribute! |
Description
I added a configuration to create a .deb package that is easily deployable on Debian-based distributions (e.g., ParrotOS). Once the user is interested in installing Humble, and the package is uploaded to the repositories of the desired distribution, simply type
sudo apt install humble
(or similar).I had to modify Humble's source code slightly, due to a path problem, as previously relative paths were used for templates and static files, and after the package build, since these files are placed in
/usr/share/humble
, they were not found, and this was clearly an error that prevented the program from running.However, I solved it by adding a few lines of code to find and read the absolute path of these files, and in this way the program works as before, only now it does not show any errors when installed via
apt
package manager.If this PR is accepted, I will request on behalf of the ParrotOS team to upload the package to our repositories. Also, Humble works on ARM platforms.
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
Download this repository, install in your Debian distribution the essential tools to build a Debian package (build-essential, devscripts, etc...). It is important to consider the project's python dependencies (and possibly install them, see the
debian/control
file).Then, create an
.orig.tar.xz
file using the appropriate tar command (withczf
switches) from the Humble folder:tar czf humble_0.1.orig.tar.gz humble/
After that, to start the build, just type in a terminal window
debuild -us -uc
and a new .deb file will be created in a few seconds.Checklist: