Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
fd7b91ef
Kaydet (Commit)
fd7b91ef
authored
Eyl 26, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Standardize whitespace in function calls and docstrings.
üst
39d59b47
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
55 deletions
+55
-55
dist.py
Lib/distutils/dist.py
+55
-55
No files found.
Lib/distutils/dist.py
Dosyayı görüntüle @
fd7b91ef
...
@@ -118,7 +118,7 @@ class Distribution:
...
@@ -118,7 +118,7 @@ class Distribution:
# information here (and enough command-line options) that it's
# information here (and enough command-line options) that it's
# worth it. Also delegate 'get_XXX()' methods to the 'metadata'
# worth it. Also delegate 'get_XXX()' methods to the 'metadata'
# object in a sneaky and underhanded (but efficient!) way.
# object in a sneaky and underhanded (but efficient!) way.
self
.
metadata
=
DistributionMetadata
()
self
.
metadata
=
DistributionMetadata
()
method_basenames
=
dir
(
self
.
metadata
)
+
\
method_basenames
=
dir
(
self
.
metadata
)
+
\
[
'fullname'
,
'contact'
,
'contact_email'
]
[
'fullname'
,
'contact'
,
'contact_email'
]
for
basename
in
method_basenames
:
for
basename
in
method_basenames
:
...
@@ -187,7 +187,7 @@ class Distribution:
...
@@ -187,7 +187,7 @@ class Distribution:
# specifically. Note that this order guarantees that aliased
# specifically. Note that this order guarantees that aliased
# command options will override any supplied redundantly
# command options will override any supplied redundantly
# through the general options dictionary.
# through the general options dictionary.
options
=
attrs
.
get
(
'options'
)
options
=
attrs
.
get
(
'options'
)
if
options
:
if
options
:
del
attrs
[
'options'
]
del
attrs
[
'options'
]
for
(
command
,
cmd_options
)
in
options
.
items
():
for
(
command
,
cmd_options
)
in
options
.
items
():
...
@@ -198,10 +198,10 @@ class Distribution:
...
@@ -198,10 +198,10 @@ class Distribution:
# Now work on the rest of the attributes. Any attribute that's
# Now work on the rest of the attributes. Any attribute that's
# not already defined is invalid!
# not already defined is invalid!
for
(
key
,
val
)
in
attrs
.
items
():
for
(
key
,
val
)
in
attrs
.
items
():
if
hasattr
(
self
.
metadata
,
key
):
if
hasattr
(
self
.
metadata
,
key
):
setattr
(
self
.
metadata
,
key
,
val
)
setattr
(
self
.
metadata
,
key
,
val
)
elif
hasattr
(
self
,
key
):
elif
hasattr
(
self
,
key
):
setattr
(
self
,
key
,
val
)
setattr
(
self
,
key
,
val
)
else
:
else
:
raise
DistutilsSetupError
,
\
raise
DistutilsSetupError
,
\
"invalid distribution option '
%
s'"
%
key
"invalid distribution option '
%
s'"
%
key
...
@@ -377,10 +377,10 @@ class Distribution:
...
@@ -377,10 +377,10 @@ class Distribution:
# until we know what the command is.
# until we know what the command is.
self
.
commands
=
[]
self
.
commands
=
[]
parser
=
FancyGetopt
(
self
.
global_options
+
self
.
display_options
)
parser
=
FancyGetopt
(
self
.
global_options
+
self
.
display_options
)
parser
.
set_negative_aliases
(
self
.
negative_opt
)
parser
.
set_negative_aliases
(
self
.
negative_opt
)
parser
.
set_aliases
({
'license'
:
'licence'
})
parser
.
set_aliases
({
'license'
:
'licence'
})
args
=
parser
.
getopt
(
args
=
self
.
script_args
,
object
=
self
)
args
=
parser
.
getopt
(
args
=
self
.
script_args
,
object
=
self
)
option_order
=
parser
.
get_option_order
()
option_order
=
parser
.
get_option_order
()
# for display options we return immediately
# for display options we return immediately
...
@@ -427,28 +427,28 @@ class Distribution:
...
@@ -427,28 +427,28 @@ class Distribution:
# Pull the current command from the head of the command line
# Pull the current command from the head of the command line
command
=
args
[
0
]
command
=
args
[
0
]
if
not
command_re
.
match
(
command
):
if
not
command_re
.
match
(
command
):
raise
SystemExit
,
"invalid command name '
%
s'"
%
command
raise
SystemExit
,
"invalid command name '
%
s'"
%
command
self
.
commands
.
append
(
command
)
self
.
commands
.
append
(
command
)
# Dig up the command class that implements this command, so we
# Dig up the command class that implements this command, so we
# 1) know that it's a valid command, and 2) know which options
# 1) know that it's a valid command, and 2) know which options
# it takes.
# it takes.
try
:
try
:
cmd_class
=
self
.
get_command_class
(
command
)
cmd_class
=
self
.
get_command_class
(
command
)
except
DistutilsModuleError
,
msg
:
except
DistutilsModuleError
,
msg
:
raise
DistutilsArgError
,
msg
raise
DistutilsArgError
,
msg
# Require that the command class be derived from Command -- want
# Require that the command class be derived from Command -- want
# to be sure that the basic "command" interface is implemented.
# to be sure that the basic "command" interface is implemented.
if
not
issubclass
(
cmd_class
,
Command
):
if
not
issubclass
(
cmd_class
,
Command
):
raise
DistutilsClassError
,
\
raise
DistutilsClassError
,
\
"command class
%
s must subclass Command"
%
cmd_class
"command class
%
s must subclass Command"
%
cmd_class
# Also make sure that the command object provides a list of its
# Also make sure that the command object provides a list of its
# known options.
# known options.
if
not
(
hasattr
(
cmd_class
,
'user_options'
)
and
if
not
(
hasattr
(
cmd_class
,
'user_options'
)
and
type
(
cmd_class
.
user_options
)
is
ListType
):
type
(
cmd_class
.
user_options
)
is
ListType
):
raise
DistutilsClassError
,
\
raise
DistutilsClassError
,
\
(
"command class
%
s must provide "
+
(
"command class
%
s must provide "
+
"'user_options' attribute (a list of tuples)"
)
%
\
"'user_options' attribute (a list of tuples)"
)
%
\
...
@@ -457,14 +457,14 @@ class Distribution:
...
@@ -457,14 +457,14 @@ class Distribution:
# If the command class has a list of negative alias options,
# If the command class has a list of negative alias options,
# merge it in with the global negative aliases.
# merge it in with the global negative aliases.
negative_opt
=
self
.
negative_opt
negative_opt
=
self
.
negative_opt
if
hasattr
(
cmd_class
,
'negative_opt'
):
if
hasattr
(
cmd_class
,
'negative_opt'
):
negative_opt
=
copy
(
negative_opt
)
negative_opt
=
copy
(
negative_opt
)
negative_opt
.
update
(
cmd_class
.
negative_opt
)
negative_opt
.
update
(
cmd_class
.
negative_opt
)
# Check for help_options in command class. They have a different
# Check for help_options in command class. They have a different
# format (tuple of four) so we need to preprocess them here.
# format (tuple of four) so we need to preprocess them here.
if
(
hasattr
(
cmd_class
,
'help_options'
)
and
if
(
hasattr
(
cmd_class
,
'help_options'
)
and
type
(
cmd_class
.
help_options
)
is
ListType
):
type
(
cmd_class
.
help_options
)
is
ListType
):
help_options
=
fix_help_options
(
cmd_class
.
help_options
)
help_options
=
fix_help_options
(
cmd_class
.
help_options
)
else
:
else
:
help_options
=
[]
help_options
=
[]
...
@@ -472,17 +472,17 @@ class Distribution:
...
@@ -472,17 +472,17 @@ class Distribution:
# All commands support the global options too, just by adding
# All commands support the global options too, just by adding
# in 'global_options'.
# in 'global_options'.
parser
.
set_option_table
(
self
.
global_options
+
parser
.
set_option_table
(
self
.
global_options
+
cmd_class
.
user_options
+
cmd_class
.
user_options
+
help_options
)
help_options
)
parser
.
set_negative_aliases
(
negative_opt
)
parser
.
set_negative_aliases
(
negative_opt
)
(
args
,
opts
)
=
parser
.
getopt
(
args
[
1
:])
(
args
,
opts
)
=
parser
.
getopt
(
args
[
1
:])
if
hasattr
(
opts
,
'help'
)
and
opts
.
help
:
if
hasattr
(
opts
,
'help'
)
and
opts
.
help
:
self
.
_show_help
(
parser
,
display_options
=
0
,
commands
=
[
cmd_class
])
self
.
_show_help
(
parser
,
display_options
=
0
,
commands
=
[
cmd_class
])
return
return
if
(
hasattr
(
cmd_class
,
'help_options'
)
and
if
(
hasattr
(
cmd_class
,
'help_options'
)
and
type
(
cmd_class
.
help_options
)
is
ListType
):
type
(
cmd_class
.
help_options
)
is
ListType
):
help_option_found
=
0
help_option_found
=
0
for
(
help_option
,
short
,
desc
,
func
)
in
cmd_class
.
help_options
:
for
(
help_option
,
short
,
desc
,
func
)
in
cmd_class
.
help_options
:
if
hasattr
(
opts
,
parser
.
get_attr_name
(
help_option
)):
if
hasattr
(
opts
,
parser
.
get_attr_name
(
help_option
)):
...
@@ -534,13 +534,13 @@ class Distribution:
...
@@ -534,13 +534,13 @@ class Distribution:
from
distutils.cmd
import
Command
from
distutils.cmd
import
Command
if
global_options
:
if
global_options
:
parser
.
set_option_table
(
self
.
global_options
)
parser
.
set_option_table
(
self
.
global_options
)
parser
.
print_help
(
"Global options:"
)
parser
.
print_help
(
"Global options:"
)
print
print
if
display_options
:
if
display_options
:
parser
.
set_option_table
(
self
.
display_options
)
parser
.
set_option_table
(
self
.
display_options
)
parser
.
print_help
(
parser
.
print_help
(
"Information display options (just display "
+
"Information display options (just display "
+
"information, ignore any commands)"
)
"information, ignore any commands)"
)
print
print
...
@@ -549,14 +549,14 @@ class Distribution:
...
@@ -549,14 +549,14 @@ class Distribution:
if
type
(
command
)
is
ClassType
and
issubclass
(
klass
,
Command
):
if
type
(
command
)
is
ClassType
and
issubclass
(
klass
,
Command
):
klass
=
command
klass
=
command
else
:
else
:
klass
=
self
.
get_command_class
(
command
)
klass
=
self
.
get_command_class
(
command
)
if
(
hasattr
(
klass
,
'help_options'
)
and
if
(
hasattr
(
klass
,
'help_options'
)
and
type
(
klass
.
help_options
)
is
ListType
):
type
(
klass
.
help_options
)
is
ListType
):
parser
.
set_option_table
(
klass
.
user_options
+
parser
.
set_option_table
(
klass
.
user_options
+
fix_help_options
(
klass
.
help_options
))
fix_help_options
(
klass
.
help_options
))
else
:
else
:
parser
.
set_option_table
(
klass
.
user_options
)
parser
.
set_option_table
(
klass
.
user_options
)
parser
.
print_help
(
"Options for '
%
s' command:"
%
klass
.
__name__
)
parser
.
print_help
(
"Options for '
%
s' command:"
%
klass
.
__name__
)
print
print
print
gen_usage
(
self
.
script_name
)
print
gen_usage
(
self
.
script_name
)
...
@@ -577,7 +577,7 @@ class Distribution:
...
@@ -577,7 +577,7 @@ class Distribution:
# processing now (ie. if they ran "setup --help-commands foo bar",
# processing now (ie. if they ran "setup --help-commands foo bar",
# we ignore "foo bar").
# we ignore "foo bar").
if
self
.
help_commands
:
if
self
.
help_commands
:
self
.
print_commands
()
self
.
print_commands
()
print
print
print
gen_usage
(
self
.
script_name
)
print
gen_usage
(
self
.
script_name
)
return
1
return
1
...
@@ -608,9 +608,9 @@ class Distribution:
...
@@ -608,9 +608,9 @@ class Distribution:
print
header
+
":"
print
header
+
":"
for
cmd
in
commands
:
for
cmd
in
commands
:
klass
=
self
.
cmdclass
.
get
(
cmd
)
klass
=
self
.
cmdclass
.
get
(
cmd
)
if
not
klass
:
if
not
klass
:
klass
=
self
.
get_command_class
(
cmd
)
klass
=
self
.
get_command_class
(
cmd
)
try
:
try
:
description
=
klass
.
description
description
=
klass
.
description
except
AttributeError
:
except
AttributeError
:
...
@@ -639,19 +639,19 @@ class Distribution:
...
@@ -639,19 +639,19 @@ class Distribution:
extra_commands
=
[]
extra_commands
=
[]
for
cmd
in
self
.
cmdclass
.
keys
():
for
cmd
in
self
.
cmdclass
.
keys
():
if
not
is_std
.
get
(
cmd
):
if
not
is_std
.
get
(
cmd
):
extra_commands
.
append
(
cmd
)
extra_commands
.
append
(
cmd
)
max_length
=
0
max_length
=
0
for
cmd
in
(
std_commands
+
extra_commands
):
for
cmd
in
(
std_commands
+
extra_commands
):
if
len
(
cmd
)
>
max_length
:
if
len
(
cmd
)
>
max_length
:
max_length
=
len
(
cmd
)
max_length
=
len
(
cmd
)
self
.
print_command_list
(
std_commands
,
self
.
print_command_list
(
std_commands
,
"Standard commands"
,
"Standard commands"
,
max_length
)
max_length
)
if
extra_commands
:
if
extra_commands
:
print
print
self
.
print_command_list
(
extra_commands
,
self
.
print_command_list
(
extra_commands
,
"Extra commands"
,
"Extra commands"
,
max_length
)
max_length
)
...
@@ -822,10 +822,10 @@ class Distribution:
...
@@ -822,10 +822,10 @@ class Distribution:
def
run_commands
(
self
):
def
run_commands
(
self
):
"""Run each command that was seen on the setup script command line.
"""Run each command that was seen on the setup script command line.
Uses the list of commands found and cache of command objects
Uses the list of commands found and cache of command objects
created by 'get_command_obj()'.
"""
created by 'get_command_obj()'.
"""
for
cmd
in
self
.
commands
:
for
cmd
in
self
.
commands
:
self
.
run_command
(
cmd
)
self
.
run_command
(
cmd
)
# -- Methods that operate on its Commands --------------------------
# -- Methods that operate on its Commands --------------------------
...
@@ -838,28 +838,27 @@ class Distribution:
...
@@ -838,28 +838,27 @@ class Distribution:
doesn't even have a command object yet, create one. Then invoke
doesn't even have a command object yet, create one. Then invoke
'run()' on that command object (or an existing one).
'run()' on that command object (or an existing one).
"""
"""
# Already been here, done that? then return silently.
# Already been here, done that? then return silently.
if
self
.
have_run
.
get
(
command
):
if
self
.
have_run
.
get
(
command
):
return
return
self
.
announce
(
"running "
+
command
)
self
.
announce
(
"running "
+
command
)
cmd_obj
=
self
.
get_command_obj
(
command
)
cmd_obj
=
self
.
get_command_obj
(
command
)
cmd_obj
.
ensure_finalized
()
cmd_obj
.
ensure_finalized
()
cmd_obj
.
run
()
cmd_obj
.
run
()
self
.
have_run
[
command
]
=
1
self
.
have_run
[
command
]
=
1
# -- Distribution query methods ------------------------------------
# -- Distribution query methods ------------------------------------
def
has_pure_modules
(
self
):
def
has_pure_modules
(
self
):
return
len
(
self
.
packages
or
self
.
py_modules
or
[])
>
0
return
len
(
self
.
packages
or
self
.
py_modules
or
[])
>
0
def
has_ext_modules
(
self
):
def
has_ext_modules
(
self
):
return
self
.
ext_modules
and
len
(
self
.
ext_modules
)
>
0
return
self
.
ext_modules
and
len
(
self
.
ext_modules
)
>
0
def
has_c_libraries
(
self
):
def
has_c_libraries
(
self
):
return
self
.
libraries
and
len
(
self
.
libraries
)
>
0
return
self
.
libraries
and
len
(
self
.
libraries
)
>
0
def
has_modules
(
self
):
def
has_modules
(
self
):
return
self
.
has_pure_modules
()
or
self
.
has_ext_modules
()
return
self
.
has_pure_modules
()
or
self
.
has_ext_modules
()
...
@@ -890,7 +889,8 @@ class Distribution:
...
@@ -890,7 +889,8 @@ class Distribution:
class
DistributionMetadata
:
class
DistributionMetadata
:
"""Dummy class to hold the distribution meta-data: name, version,
"""Dummy class to hold the distribution meta-data: name, version,
author, and so forth."""
author, and so forth.
"""
def
__init__
(
self
):
def
__init__
(
self
):
self
.
name
=
None
self
.
name
=
None
...
@@ -963,5 +963,5 @@ def fix_help_options (options):
...
@@ -963,5 +963,5 @@ def fix_help_options (options):
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
dist
=
Distribution
()
dist
=
Distribution
()
print
"ok"
print
"ok"
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