| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|
|
|
| |
calculates. Spotted by Cort Danger Stratton.
|
|
|
|
|
| |
can contain more than just .py files. Make sure we only report
bytecode files for the .py files.
|
| |
|
|
|
|
|
|
| |
with umlauts in the author argument and others.
Fixes sf # 993943.
|
|
|
|
|
| |
change as well.
Recompiled binaries after this change.
|
|
|
|
| |
change as well. Add a comment explaining this.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Patch from Mark Hammond:
bdist_wininst attempts to use the correct MSVC runtime for the current
version of Python. This doesn't work correctly when --target-version
is set. In that case, bdist_wininst still uses the *current*
sys.version (ie, 2.4) rather than the version specified as
--target-version. Thus, the msvc7 runtime based executable stub is
*always* used.
This patch "hard-codes" knowledge of earlier Python versions,
providing the correct result when Python 2.4 is used to build Python
2.3 and earlier distributions.
Remove the short variant (-v) of the --target-version command line
options, it conflicts with the --verbose/-v standard distutils switch.
|
|
|
|
|
|
|
| |
Patch from Mark Hammond.
Recompiled binary.
Already packported to the 2.3 branch.
|
| |
|
|
|
|
| |
immediately (since None is not a sequence you can iterate over).
|
| |
|
| |
|
|
|
|
|
|
|
| |
This is basically the support for package data from Phillip Eby's
setuptools package. I've changed it only to fit it into the core
implementation rather than to live in subclasses, and added
documentation.
|
|
|
|
|
|
|
|
|
|
| |
releases.
Ignore it, rather than breaking.
Will backport.
(and r1.1000 for Misc/NEWS!)
|
|
|
|
| |
The disutils sdist command now ignores .svn directories.
|
| |
|
|
|
|
| |
copyright years.
|
|
|
|
|
| |
scripts
closes SF bug 796042
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
requires and provides. requires is a sequence of strings, of the
form 'packagename-version'. The dependency checking so far merely
does an '__import__(packagename)' and checks for packagename.__version__
You can also leave off the version, and any version of the package
will be installed.
There's a special case for the package 'python' - sys.version_info
is used, so
requires= ( 'python-2.3', )
just works.
Provides is of the same format as requires - but if it's not supplied,
a provides is generated by adding the version to each entry in packages,
or modules if packages isn't there.
Provides is currently only used in the PKG-INFO file. Shortly, PyPI
will grow the ability to accept these lines, and register will be
updated to send them.
There's a new command 'checkdep' command that runs these checks.
For this version, only greater-than-or-equal checking is done. We'll
add the ability to specify an optional operator later.
|
|
|
|
|
|
|
| |
msvccompiler.get_build_version().
Distributions without a pre-install-script didn't work any longer, we
must at least provide the terminating NUL character.
|
|
|
|
|
|
| |
included in Python distributions for systems other than Windows.
Windows installers can be build on non-Windows systems as long as they
only include pure python module distributions.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Patch #892660 from Mark Hammond, for distutils bdist_wininst command.
install.c: support for a 'pre-install-script', run before anything has
been installed. Provides a 'message_box' module function for use by
either the pre-install or post-install scripts.
bdist_wininst.py: support for pre-install script. Typo (build->built),
fixes so that --target-version can still work, even when the
distribution has extension modules - in this case, we insist on
--skip-build, as we still can't actually build other versions.
|
|
|
|
|
|
|
|
|
|
|
| |
install.c: support for a 'pre-install-script', run before anything has
been installed. Provides a 'message_box' module function for use by
either the pre-install or post-install scripts.
bdist_wininst.py: support for pre-install script. Typo (build->built),
fixes so that --target-version can still work, even when the
distribution has extension modules - in this case, we insist on
--skip-build, as we still can't actually build other versions.
|
|
|
|
| |
patch.
|
| |
|
| |
|
|
|
|
|
|
| |
The problem was that subcommands were not reinitialized.
Bugfix candidate, will backport myself.
|
| |
|
|
|
|
| |
will now list it
|
| |
|
|
|
|
| |
packages
|
| |
|
|
|
|
| |
conditionalize the get_classifiers() call
|
| |
|
| |
|
| |
|
|
|
|
| |
want it to be. Log both the old and new mode.
|
|
|
|
| |
executable.
|
|
|
|
| |
Add the 'register' distutils command
|
| |
|
| |
|
|
|
|
|
|
| |
This adds a --relative option to the bdist_dumb command that defaults
to false; if true, the .tar.gz or .zip will be assembled using relative
paths.
|
|
|
|
|
|
|
|
|
|
| |
bdist_wininst.py we will see.)
Removed the base64 encoded binary contents, wininst.exe must be in the
same directory as this file now.
wininst.exe must be recompiled and commited each time the sources in
PC/bdist_wininst are changed.
|
| |
|