unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob f2ef8fc1b223a50c9f9cef6af7692525cfa0d55e 938 bytes (raw)
name: packages/patches/python-sip-include-dirs.patch 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
 
Add an environment variable to python-sip that extends its search
directories for .sip files.

It seems that we cannot easily change the destination folder of these
files though, so this variable must be set on a per-package basis (and
non through search-path).

--- sip/sipbuild/builder.py	2023-03-22 09:06:37.588792878 +0100
+++ sip/sipbuild/builder.py	2023-03-22 09:10:35.830181134 +0100
@@ -254,6 +254,10 @@
                     os.path.join(project.target_dir,
                             project.get_bindings_dir()))
 
+            # Add extra bindings from environment for GNU Guix.
+            if 'SIP_INCLUDE_DIRS' in os.environ:
+                sip_include_dirs.extend(os.environ['SIP_INCLUDE_DIRS'].split(os.pathsep))
+
             # Generate the sip.h file for the shared sip module.
             copy_sip_h(abi_major_version, project.build_dir,
                     project.sip_module, version_info=project.version_info)

debug log:

solving f2ef8fc1b223a50c9f9cef6af7692525cfa0d55e ...
found f2ef8fc1b223a50c9f9cef6af7692525cfa0d55e in https://git.savannah.gnu.org/cgit/guix.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).