Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
dd6ee7af
"tools/run_tests/build_artifact_python.sh" did not exist on "d7e1a10628b87d9437f15ffb44d74499345ba757"
Commit
dd6ee7af
authored
9 years ago
by
Masood Malekghassemi
Browse files
Options
Downloads
Patches
Plain Diff
Truncate Python target triple
parent
edf12a7b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/python/grpcio/commands.py
+14
-15
14 additions, 15 deletions
src/python/grpcio/commands.py
with
14 additions
and
15 deletions
src/python/grpcio/commands.py
+
14
−
15
View file @
dd6ee7af
...
@@ -114,19 +114,17 @@ def _get_grpc_custom_bdist(decorated_basename, target_bdist_basename):
...
@@ -114,19 +114,17 @@ def _get_grpc_custom_bdist(decorated_basename, target_bdist_basename):
class
WheelNameMixin
(
object
):
class
WheelNameMixin
(
object
):
"""
Mixin for setuptools.Command classes to enable acquiring the bdist name.
"""
"""
Mixin for setuptools.Command classes to enable acquiring the bdist name.
"""
def
wheel_name
(
self
,
with_custom
):
def
wheel_custom_name
(
self
):
"""
base
=
self
.
wheel_name
()
Args:
# Drop troublesome parts of the target tuple
with_custom: Boolean describing whether or not to decorate the bdist name
base_split
=
base
.
split
(
'
-
'
)
with custom gRPC-specific target information.
base
=
'
-
'
.
join
(
base_split
[
0
:
3
]
+
base_split
[
4
:])
"""
flavor
=
'
ucs2
'
if
sys
.
maxunicode
==
65535
else
'
ucs4
'
return
'
{base}-{flavor}
'
.
format
(
base
=
base
,
flavor
=
flavor
)
def
wheel_name
(
self
):
wheel_command
=
self
.
get_finalized_command
(
'
bdist_wheel
'
)
wheel_command
=
self
.
get_finalized_command
(
'
bdist_wheel
'
)
base
=
wheel_command
.
get_archive_basename
()
return
wheel_command
.
get_archive_basename
()
if
with_custom
:
flavor
=
'
ucs2
'
if
sys
.
maxunicode
==
65535
else
'
ucs4
'
return
'
{base}-{flavor}
'
.
format
(
base
=
base
,
flavor
=
flavor
)
else
:
return
base
class
Install
(
install
.
install
,
WheelNameMixin
):
class
Install
(
install
.
install
,
WheelNameMixin
):
...
@@ -155,8 +153,8 @@ class Install(install.install, WheelNameMixin):
...
@@ -155,8 +153,8 @@ class Install(install.install, WheelNameMixin):
if
self
.
use_grpc_custom_bdist
:
if
self
.
use_grpc_custom_bdist
:
try
:
try
:
try
:
try
:
bdist_path
=
_get_grpc_custom_bdist
(
self
.
wheel_name
(
True
),
bdist_path
=
_get_grpc_custom_bdist
(
self
.
wheel_
custom_
name
(),
self
.
wheel_name
(
False
))
self
.
wheel_name
())
except
CommandError
as
error
:
except
CommandError
as
error
:
sys
.
stderr
.
write
(
sys
.
stderr
.
write
(
'
\n
WARNING: Failed to acquire grpcio prebuilt binary:
\n
'
'
\n
WARNING: Failed to acquire grpcio prebuilt binary:
\n
'
...
@@ -200,7 +198,8 @@ class BdistWheelCustomName(bdist_wheel.bdist_wheel, WheelNameMixin):
...
@@ -200,7 +198,8 @@ class BdistWheelCustomName(bdist_wheel.bdist_wheel, WheelNameMixin):
# undocumented, private) ordering of the distribution files.
# undocumented, private) ordering of the distribution files.
bdist_wheel
.
bdist_wheel
.
run
(
self
)
bdist_wheel
.
bdist_wheel
.
run
(
self
)
output
=
self
.
distribution
.
dist_files
[
-
1
][
2
]
output
=
self
.
distribution
.
dist_files
[
-
1
][
2
]
target
=
os
.
path
.
join
(
self
.
dist_dir
,
'
{}.whl
'
.
format
(
self
.
wheel_name
(
True
)))
target
=
os
.
path
.
join
(
self
.
dist_dir
,
'
{}.whl
'
.
format
(
self
.
wheel_custom_name
()))
shutil
.
move
(
output
,
target
)
shutil
.
move
(
output
,
target
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment