-
Notifications
You must be signed in to change notification settings - Fork 480
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
RPM incompatibility - EL8 (CentOS/RedHat) [Now with EL7] #1677
Comments
Side note: Python3's development package is still |
Feel free to add builders for EL8 over at https://github.com/overviewer/Overviewer-Web/ which would be the ideal way to fix this. |
Looks like our EL7 builders are also currently broken on account of shadow-utils failing to install. Not sure what's going on and really not an EL7 person. Can someone look into this? |
EL7 builders are working again, still need someone to make EL8 builders |
I opened a PR with an initial pass at adding a centos8 builder here: overviewer/Overviewer-Web#42 |
What should I be doing to get Overviewer installed on my CentOS 8 server in the meantime? Build from source using http://docs.overviewer.org/en/latest/building/#linux ? TIA |
@BenKennish If you still have this issue, I fixed it using a solution suggested for a different problem here
and run
After that you can install the generated rpm and then install the normal minecraft-overviewer rpm. |
Oh that's a neat trick, @fhuemer - thank you! |
sorry for the bump but it only generates a src.rpm file for me |
Issue: The RPM requests an older naming scheme for Python packages that broke with the release of RedHat Enterprise Linux 8 and affects all down-stream distributions.
How to fix: Python 2 libraries should be depended upon as 'python2-lib', Python 3 libraries should be depended upon as 'python3-lib'.
As an example, yum and dnf will throw the following error.
This should be fixable by changing the dependency for numpy to
python3-numpy
Otherwise, documentation at download should say "EL7 Only" rather than "CentOS 7+ / other rpm"
The text was updated successfully, but these errors were encountered: