Merge pull request #390 from aclist/fix/ctypes-libgi
Some checks failed
Mirror to Codeberg / mirror-to-codeberg (push) Has been cancelled

fix: platform-agnostic shared library check
This commit is contained in:
aclist 2026-06-25 21:19:09 +09:00 committed by GitHub
commit cd1fd1b179
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 6 deletions

View File

@ -26,7 +26,7 @@ You can install it via the following set of commands:
.. code:: console
sudo apt update
sudo apt install libgirepository-2.0
sudo apt install libgirepository-2.0-0
Next steps
---------------

View File

@ -1,11 +1,12 @@
import platform
import sys
from pathlib import Path
from ctypes.util import find_library
from warnings import deprecated
LIB = "libgirepository-2.0"
@deprecated("currently unused")
def is_debian() -> bool:
"""
@ -39,9 +40,7 @@ def is_debian() -> bool:
def has_libgi() -> bool:
parent_dir = Path("/usr/lib64")
exists = any(LIB in subdir.name for subdir in parent_dir.iterdir())
return exists
return bool(find_library("girepository-2.0"))
def test_libgi_missing() -> None:

View File

@ -4,7 +4,7 @@ description = "DayZ server browser and mod manager for Linux"
authors = [
{name = "aclist"}
]
version = "7.0.0b14"
version = "7.0.0b15"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
readme = "README.md"