[issue16314] Support xz compression in distutils

2015-05-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue16314] Support xz compression in distutils

2015-05-17 Thread Jakub Wilk
Changes by Jakub Wilk : -- nosy: +jwilk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue16314] Support xz compression in distutils

2015-05-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 25cb42a4bce9 by Serhiy Storchaka in branch 'default': Fixed issue #16314 test for the case when lzma is not available. https://hg.python.org/cpython/rev/25cb42a4bce9 -- ___ Python tracker

[issue16314] Support xz compression in distutils

2015-05-16 Thread Ned Deily
Ned Deily added the comment: The test for lzma being importable is not sufficient. == ERROR: test_make_archive_xztar (distutils.tests.test_archive_util.ArchiveUtilTestCase) --

[issue16314] Support xz compression in distutils

2015-05-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 09bd552999bf by Serhiy Storchaka in branch 'default': Issue #16314: Added support for the LZMA compression in distutils. https://hg.python.org/cpython/rev/09bd552999bf -- nosy: +python-dev ___ Python trac

[issue16314] Support xz compression in distutils

2015-04-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- assignee: -> eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue16314] Support xz compression in distutils

2015-03-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Addressed Berker's comments. Added versionchanged directives and a whatsnews entry. -- Added file: http://bugs.python.org/file38648/distutils-lzma_3.patch ___ Python tracker ___

[issue16314] Support xz compression in distutils

2015-03-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Added tests for gztar, bztar and xztar. Added more asserts in other tests. -- Added file: http://bugs.python.org/file38564/distutils-lzma_2.patch ___ Python tracker _

[issue16314] Support xz compression in distutils

2015-03-19 Thread Éric Araujo
Éric Araujo added the comment: Code and doc changes look good. Will you add tests? -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue16314] Support xz compression in distutils

2014-10-04 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: eric.araujo -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue16314] Support xz compression in distutils

2014-08-06 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- keywords: +needs review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue16314] Support xz compression in distutils

2014-08-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What about the patch? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue16314] Support xz compression in distutils

2014-02-09 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: AFAIK distutils is no longer frozen. -- nosy: +Arfrever resolution: wont fix -> stage: committed/rejected -> patch review status: closed -> open versions: +Python 3.5 -Python 3.4 ___ Python track

[issue16314] Support xz compression in distutils

2012-10-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> wont fix stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue16314] Support xz compression in distutils

2012-10-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: OK, I didn't know that distutils are frozen. -- Added file: http://bugs.python.org/file27704/distutils-lzma.patch ___ Python tracker ___ _

[issue16314] Support xz compression in distutils

2012-10-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Removed file: http://bugs.python.org/file27700/distutils-lzma.patch ___ Python tracker ___ ___ Python-bugs-list

[issue16314] Support xz compression in distutils

2012-10-24 Thread Éric Araujo
Éric Araujo added the comment: I think there’s already a report for distutils2. For distutils, if we take the feature freeze seriously, this would have to be rejected. I know it looks innocuous, but distutils is brittle code widely monkey-patched, so I prefer to take no chances. --

[issue16314] Support xz compression in distutils

2012-10-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: The proposed patch adds xz compression support in additional to gzip, compress and bzip2 in distutils. -- assignee: eric.araujo components: Distutils files: distutils-lzma.patch keywords: patch messages: 173708 nosy: eric.araujo, nadeem.vawda, serhi