Bas Couwenberg pushed to branch master at Debian GIS Project / routino
Commits: 4e4df876 by Bas Couwenberg at 2023-02-21T06:56:55+01:00 Add patch to not use deprecated distutils module. - - - - - 3 changed files: - debian/changelog - + debian/patches/no-distutils.patch - debian/patches/series Changes: ===================================== debian/changelog ===================================== @@ -1,6 +1,7 @@ routino (3.3.3-3) UNRELEASED; urgency=medium * Bump Standards-Version to 4.6.2, no changes. + * Add patch to not use deprecated distutils module. -- Bas Couwenberg <[email protected]> Wed, 18 Jan 2023 17:18:45 +0100 ===================================== debian/patches/no-distutils.patch ===================================== @@ -0,0 +1,22 @@ +Description: Don't use deprecated distutils module. +Author: Bas Couwenberg <[email protected]> +Forwarded: mailto:[email protected] + +--- /dev/null ++++ b/python/pyproject.toml +@@ -0,0 +1,3 @@ ++[build-system] ++requires = ["setuptools"] ++build-backend = "setuptools.build_meta" +--- a/python/setup.py ++++ b/python/setup.py +@@ -20,7 +20,8 @@ + + import os + import re +-from distutils.core import setup, Extension ++ ++from setuptools import setup, Extension + + routino_router = Extension('routino._router', + sources = ['src/_router.c'], ===================================== debian/patches/series ===================================== @@ -6,3 +6,4 @@ mapprops hardening #map_bounds #use_openlayers +no-distutils.patch View it on GitLab: https://salsa.debian.org/debian-gis-team/routino/-/commit/4e4df876b945f509b069fe8c7ec0917c4f85dc8e -- View it on GitLab: https://salsa.debian.org/debian-gis-team/routino/-/commit/4e4df876b945f509b069fe8c7ec0917c4f85dc8e You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
