diff options
author | Andrew Kuchling <amk@amk.ca> | 2013-11-15 18:01:52 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2013-11-15 18:01:52 (GMT) |
commit | 5e2d45672c8f84f6b1877e68ab92b4b50e2d124d (patch) | |
tree | acccecbfdceb5560510b1b989b44a34c65822f7d /Doc/distutils | |
parent | c31ebb60f975b231e8f2fff7af72204bf3309ed0 (diff) | |
download | cpython-5e2d45672c8f84f6b1877e68ab92b4b50e2d124d.zip cpython-5e2d45672c8f84f6b1877e68ab92b4b50e2d124d.tar.gz cpython-5e2d45672c8f84f6b1877e68ab92b4b50e2d124d.tar.bz2 |
Issue #19544 and Issue #6516: Restore support for --user and --group parameters to sdist command as found in Python 2.7 and originally slated for Python 3.2 but accidentally rolled back as part of the distutils2 rollback. Closes Issue #6516.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/sourcedist.rst | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/Doc/distutils/sourcedist.rst b/Doc/distutils/sourcedist.rst index 1666436..9f7a38e 100644 --- a/Doc/distutils/sourcedist.rst +++ b/Doc/distutils/sourcedist.rst @@ -26,16 +26,16 @@ to create a gzipped tarball and a zip file. The available formats are: +===========+=========================+=========+ | ``zip`` | zip file (:file:`.zip`) | (1),(3) | +-----------+-------------------------+---------+ -| ``gztar`` | gzip'ed tar file | (2),(4) | +| ``gztar`` | gzip'ed tar file | \(2) | | | (:file:`.tar.gz`) | | +-----------+-------------------------+---------+ -| ``bztar`` | bzip2'ed tar file | \(4) | +| ``bztar`` | bzip2'ed tar file | | | | (:file:`.tar.bz2`) | | +-----------+-------------------------+---------+ | ``ztar`` | compressed tar file | \(4) | | | (:file:`.tar.Z`) | | +-----------+-------------------------+---------+ -| ``tar`` | tar file (:file:`.tar`) | \(4) | +| ``tar`` | tar file (:file:`.tar`) | | +-----------+-------------------------+---------+ Notes: @@ -51,8 +51,16 @@ Notes: of the standard Python library since Python 1.6) (4) - requires external utilities: :program:`tar` and possibly one of :program:`gzip`, - :program:`bzip2`, or :program:`compress` + requires the :program:`compress` program. Notice that this format is now + pending for deprecation and will be removed in the future versions of Python. + +When using any ``tar`` format (``gztar``, ``bztar``, ``ztar`` or +``tar``), under Unix you can specify the ``owner`` and ``group`` names +that will be set for each member of the archive. + +For example, if you want all files of the archive to be owned by root:: + + python setup.py sdist --owner=root --group=root .. _manifest: |