diff --git a/edgedbpkg/libabseil/__init__.py b/edgedbpkg/libabseil/__init__.py index e326a96..093858b 100644 --- a/edgedbpkg/libabseil/__init__.py +++ b/edgedbpkg/libabseil/__init__.py @@ -17,8 +17,7 @@ class LibAbseil(packages.BundledCMakePackage): }, ] - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "ABSL" diff --git a/edgedbpkg/libexpat/__init__.py b/edgedbpkg/libexpat/__init__.py index 1972240..a88cb02 100644 --- a/edgedbpkg/libexpat/__init__.py +++ b/edgedbpkg/libexpat/__init__.py @@ -17,8 +17,7 @@ class LibExpat(packages.BundledCAutoconfPackage): } ] - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "EXPAT" diff --git a/edgedbpkg/libgdal/__init__.py b/edgedbpkg/libgdal/__init__.py index 0c26cd6..d2a4031 100644 --- a/edgedbpkg/libgdal/__init__.py +++ b/edgedbpkg/libgdal/__init__.py @@ -73,8 +73,7 @@ class LibGDAL(packages.BundledCMakePackage): zlib.Zlib("1.3.1"), ] - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "GDAL" diff --git a/edgedbpkg/libgeos/__init__.py b/edgedbpkg/libgeos/__init__.py index deb62aa..70a0e97 100644 --- a/edgedbpkg/libgeos/__init__.py +++ b/edgedbpkg/libgeos/__init__.py @@ -17,8 +17,7 @@ class LibGEOS(packages.BundledCMakePackage): }, ] - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "GEOS" diff --git a/edgedbpkg/libgeotiff/__init__.py b/edgedbpkg/libgeotiff/__init__.py index 86c1aa4..48e3ec4 100644 --- a/edgedbpkg/libgeotiff/__init__.py +++ b/edgedbpkg/libgeotiff/__init__.py @@ -37,8 +37,7 @@ class LibGeoTIFF(packages.BundledCAutoconfPackage): zlib.Zlib("1.3.1"), ] - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "GEOTIFF" diff --git a/edgedbpkg/libjson_c/__init__.py b/edgedbpkg/libjson_c/__init__.py index 42b4d58..21959fc 100644 --- a/edgedbpkg/libjson_c/__init__.py +++ b/edgedbpkg/libjson_c/__init__.py @@ -17,8 +17,7 @@ class LibJsonC(packages.BundledCMakePackage): }, ] - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "JSONC" diff --git a/edgedbpkg/libpcre2/__init__.py b/edgedbpkg/libpcre2/__init__.py index f2bafa5..b142723 100644 --- a/edgedbpkg/libpcre2/__init__.py +++ b/edgedbpkg/libpcre2/__init__.py @@ -17,8 +17,7 @@ class LibPCRE2(packages.BundledCAutoconfPackage): } ] - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "PCRE2" diff --git a/edgedbpkg/libproj/__init__.py b/edgedbpkg/libproj/__init__.py index a2c79a6..d6dc057 100644 --- a/edgedbpkg/libproj/__init__.py +++ b/edgedbpkg/libproj/__init__.py @@ -42,8 +42,7 @@ class LibProj(packages.BundledCMakePackage): libtiff.LibTIFF("4.7.0"), ] - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "PROJ" diff --git a/edgedbpkg/libsqlite3/__init__.py b/edgedbpkg/libsqlite3/__init__.py index 4f91ceb..06073dc 100644 --- a/edgedbpkg/libsqlite3/__init__.py +++ b/edgedbpkg/libsqlite3/__init__.py @@ -45,8 +45,7 @@ def get_source_url_variables(cls, version: str) -> Dict[str, str]: "sqlitever": "{p[0]:d}{p[1]:02d}{p[2]:02d}{p[3]:02d}".format(p=p) } - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "SQLite3" diff --git a/edgedbpkg/libtiff/__init__.py b/edgedbpkg/libtiff/__init__.py index 5f873bd..b25b0ca 100644 --- a/edgedbpkg/libtiff/__init__.py +++ b/edgedbpkg/libtiff/__init__.py @@ -31,8 +31,7 @@ class LibTIFF(packages.BundledCAutoconfPackage): zlib.Zlib("1.3.1"), ] - @classmethod - def get_dep_pkg_name(cls) -> str: + def get_dep_pkg_name(self) -> str: """Name used by pkg-config or CMake to refer to this package.""" return "TIFF"