Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
OSGeo4W64
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xuebingbing
OSGeo4W64
Commits
ccd32925
Commit
ccd32925
authored
Jun 09, 2021
by
xuebingbing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 动态更新sip config
parent
3a1c39c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
11 deletions
+54
-11
sipconfig.py
apps/Python37/lib/site-packages/sipconfig.py
+54
-11
No files found.
apps/Python37/lib/site-packages/sipconfig.py
View file @
ccd32925
...
@@ -27,21 +27,21 @@ import re
...
@@ -27,21 +27,21 @@ import re
# These are installation specific values created when SIP was configured.
# These are installation specific values created when SIP was configured.
_pkg_config
=
{
_pkg_config
=
{
'arch'
:
''
,
'arch'
:
''
,
'default_bin_dir'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37'
,
'default_bin_dir'
:
'E:
\\
Geo4W64
\\
apps
\\
Python37'
,
'default_mod_dir'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
Lib
\\
site-packages'
,
'default_mod_dir'
:
'E:
\\
Geo4W64
\\
apps
\\
Python37
\\
Lib
\\
site-packages'
,
'default_sip_dir'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
sip'
,
'default_sip_dir'
:
'E:
\\
Geo4W64
\\
apps
\\
Python37
\\
sip'
,
'deployment_target'
:
''
,
'deployment_target'
:
''
,
'platform'
:
'win32-msvc2015'
,
'platform'
:
'win32-msvc2015'
,
'py_conf_inc_dir'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
include'
,
'py_conf_inc_dir'
:
'E:
\\
Geo4W64
\\
apps
\\
Python37
\\
include'
,
'py_inc_dir'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
include'
,
'py_inc_dir'
:
'E:
\\
Geo4W64
\\
apps
\\
Python37
\\
include'
,
'py_lib_dir'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
libs'
,
'py_lib_dir'
:
'E:
\\
Geo4W64
\\
apps
\\
Python37
\\
libs'
,
'py_version'
:
0x030700
,
'py_version'
:
0x030700
,
'qt_framework'
:
0
,
'qt_framework'
:
0
,
'sip_bin'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
Scripts
\\
sip'
,
'sip_bin'
:
'E:
\\
Geo4W64
\\
apps
\\
Python37
\\
Scripts
\\
sip'
,
'sip_config_args'
:
'--destdir E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
lib
\\
site-packages --bindir E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
Scripts --incdir E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
include'
,
'sip_config_args'
:
'--destdir E:
\\
OSGeo4W64
\\
apps
\\
Python37
\\
lib
\\
site-packages --bindir E:
\\
OSGeo4W64
\\
apps
\\
Python37
\\
Scripts --incdir E:
\\
OSGeo4W64
\\
apps
\\
Python37
\\
include'
,
'sip_inc_dir'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
include'
,
'sip_inc_dir'
:
'E:
\\
Geo4W64
\\
apps
\\
Python37
\\
include'
,
'sip_module_dir'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
lib
\\
site-packages'
,
'sip_module_dir'
:
'E:
\\
eo4W64
\\
apps
\\
Python37
\\
lib
\\
site-packages'
,
'sip_root_dir'
:
'E:
\\
QGIS 3.18
\\
apps
\\
Python37
\\
lib
\\
site-packages'
,
'sip_root_dir'
:
'E:
\\
eo4W64
\\
apps
\\
Python37
\\
lib
\\
site-packages'
,
'sip_version'
:
0x04130e
,
'sip_version'
:
0x04130e
,
'sip_version_str'
:
'4.19.14'
,
'sip_version_str'
:
'4.19.14'
,
'universal'
:
''
'universal'
:
''
...
@@ -172,6 +172,7 @@ class Configuration(object):
...
@@ -172,6 +172,7 @@ class Configuration(object):
else
:
else
:
cfg
=
[]
cfg
=
[]
self
.
__update_pkg_config
()
cfg
.
append
(
_pkg_config
)
cfg
.
append
(
_pkg_config
)
global
_config_stack
global
_config_stack
...
@@ -203,7 +204,48 @@ class Configuration(object):
...
@@ -203,7 +204,48 @@ class Configuration(object):
macros is the dictionary of platform specific build macros.
macros is the dictionary of platform specific build macros.
"""
"""
self
.
_macros
=
macros
self
.
_macros
=
macros
def
__update_pkg_config
(
self
):
"""
add by xuebb
dynamic update sip config
"""
py3_sitepackages_real_path
=
os
.
path
.
realpath
(
os
.
path
.
dirname
(
(
os
.
path
.
realpath
(
__file__
)))
)
py3_lib_real_path
=
os
.
path
.
realpath
(
os
.
path
.
dirname
(
py3_sitepackages_real_path
))
py3_real_root_path
=
os
.
path
.
realpath
(
os
.
path
.
dirname
(
py3_lib_real_path
))
py3_real_sip_path
=
os
.
path
.
join
(
py3_real_root_path
,
'sip'
)
py3_real_inc_path
=
os
.
path
.
join
(
py3_real_root_path
,
'include'
)
py3_real_libs_path
=
os
.
path
.
join
(
py3_real_root_path
,
'libs'
)
py3_real_scripts_path
=
os
.
path
.
join
(
py3_real_root_path
,
'Scripts'
)
py3_real_sipbin_path
=
os
.
path
.
join
(
py3_real_scripts_path
,
'sip'
)
sip_config_args
=
r'--destdir {} --bindir {} --incdir {}'
.
format
(
py3_sitepackages_real_path
,
py3_real_scripts_path
,
py3_real_inc_path
)
if
'default_bin_dir'
in
_pkg_config
:
_pkg_config
[
'default_bin_dir'
]
=
py3_real_root_path
if
'default_mod_dir'
in
_pkg_config
:
_pkg_config
[
'default_mod_dir'
]
=
py3_sitepackages_real_path
if
'default_sip_dir'
in
_pkg_config
:
_pkg_config
[
'default_sip_dir'
]
=
py3_real_sip_path
if
'py_conf_inc_dir'
in
_pkg_config
:
_pkg_config
[
'py_conf_inc_dir'
]
=
py3_real_inc_path
if
'py_lib_dir'
in
_pkg_config
:
_pkg_config
[
'py_lib_dir'
]
=
py3_real_libs_path
if
'sip_bin'
in
_pkg_config
:
_pkg_config
[
'sip_bin'
]
=
py3_real_sipbin_path
if
'sip_inc_dir'
in
_pkg_config
:
_pkg_config
[
'sip_inc_dir'
]
=
py3_real_inc_path
if
'sip_module_dir'
in
_pkg_config
:
_pkg_config
[
'sip_module_dir'
]
=
py3_sitepackages_real_path
if
'sip_root_dir'
in
_pkg_config
:
_pkg_config
[
'sip_root_dir'
]
=
py3_sitepackages_real_path
if
'sip_config_args'
in
_pkg_config
:
_pkg_config
[
'sip_config_args'
]
=
sip_config_args
print
(
_pkg_config
)
class
_UniqueList
:
class
_UniqueList
:
"""A limited list that ensures all its elements are unique.
"""A limited list that ensures all its elements are unique.
...
@@ -2846,3 +2888,4 @@ def create_wrapper(script, wrapper, gui=0, use_arch=''):
...
@@ -2846,3 +2888,4 @@ def create_wrapper(script, wrapper, gui=0, use_arch=''):
os
.
chmod
(
wrapper
,
mode
)
os
.
chmod
(
wrapper
,
mode
)
return
wrapper
return
wrapper
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment