forked from pex-tool/pex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See pex-toolGH-99
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Copyright 2014 Pants project contributors (see CONTRIBUTORS.md). | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
from __future__ import absolute_import, print_function | ||
|
||
import os | ||
from distutils.core import Command | ||
from distutils import log as logger | ||
|
||
import pkg_resources | ||
|
||
safe_name = pkg_resources.safe_name | ||
safe_version = pkg_resources.safe_version | ||
|
||
from .pex_builder import PEXBuilder | ||
|
||
def safer_name(name): | ||
return safe_name(name).replace('-', '_') | ||
|
||
def safer_version(version): | ||
return safe_version(version).replace('-', '_') | ||
|
||
|
||
class bdist_pex(Command): | ||
description = 'create a pex distribution' | ||
user_options = [ | ||
('dist-dir=', 'd', | ||
"directory to put final built distributions in"), | ||
] | ||
|
||
def initialize_options(self): | ||
self.dist_dir = None | ||
|
||
def finalize_options(self): | ||
need_options = ('dist_dir',) | ||
|
||
self.set_undefined_options('bdist', | ||
*zip(need_options, need_options)) | ||
|
||
def run(self): | ||
pex_builder = PEXBuilder() | ||
pexfile_path = self._get_pexfile_path() | ||
logger.info('creating %s', pexfile_path) | ||
pex_builder.build(pexfile_path) | ||
|
||
def _get_pexfile_path(self): | ||
return os.path.join(self.dist_dir, '%s.pex' % self.pex_dist_name) | ||
|
||
@property | ||
def pex_dist_name(self): | ||
"""Return distribution full name with - replaced with _""" | ||
return '-'.join((safer_name(self.distribution.get_name()), | ||
safer_version(self.distribution.get_version()))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters