Skip to content

Commit

Permalink
Update to 0.6.29:
Browse files Browse the repository at this point in the history
------
0.6.29
------

* Pull Request #14: Honor file permissions in zip files.
* Issue #327: Merged pull request #24 to fix a dependency problem with pip.
* Merged pull request #23 to fix pypa/virtualenv#301.
* If Sphinx is installed, the `upload_docs` command now runs `build_sphinx`
  to produce uploadable documentation.
* Issue #326: `upload_docs` provided mangled auth credentials under Python 3.
* Issue #320: Fix check for "createable" in distribute_setup.py.
* Issue #305: Remove a warning that was triggered during normal operations.
* Issue #311: Print metadata in UTF-8 independent of platform.
* Issue #303: Read manifest file with UTF-8 encoding under Python 3.
* Issue #301: Allow to run tests of namespace packages when using 2to3.
* Issue #304: Prevent import loop in site.py under Python 3.3.
* Issue #283: Reenable scanning of *.pyc / *.pyo files on Python 3.3.
* Issue #299: The develop command didn't work on Python 3, when using 2to3,
  as the egg link would go to the Python 2 source. Linking to the 2to3'd code
  in build/lib makes it work, although you will have to rebuild the module
  before testing it.
* Issue #306: Even if 2to3 is used, we build in-place under Python 2.
* Issue #307: Prints the full path when .svn/entries is broken.
* Issue #313: Support for sdist subcommands (Python 2.7)
* Issue #314: test_local_index() would fail an OS X.
* Issue #310: Non-ascii characters in a namespace __init__.py causes errors.
* Issue #218: Improved documentation on behavior of `package_data` and
  `include_package_data`. Files indicated by `package_data` are now included
  in the manifest.
* `distribute_setup.py` now allows a `--download-base` argument for retrieving
  distribute from a specified location.
  • Loading branch information
wiz committed Oct 20, 2012
1 parent af2a07f commit 7423e04
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
6 changes: 3 additions & 3 deletions devel/py-distribute/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.1 2012/07/25 19:05:51 drochner Exp $
# $NetBSD: Makefile,v 1.2 2012/10/20 16:11:00 wiz Exp $
#

DISTNAME= distribute-0.6.28
PKGNAME= ${PYPKGPREFIX}-distribute-0.6.28
DISTNAME= distribute-0.6.29
PKGNAME= ${PYPKGPREFIX}-distribute-0.6.29
CATEGORIES= devel
MASTER_SITES= http://pypi.python.org/packages/source/d/distribute/

Expand Down
17 changes: 16 additions & 1 deletion devel/py-distribute/PLIST
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
@comment $NetBSD: PLIST,v 1.1 2012/07/25 19:05:51 drochner Exp $
@comment $NetBSD: PLIST,v 1.2 2012/10/20 16:11:00 wiz Exp $
bin/easy_install-${PYVERSSUFFIX}
${PYSITELIB}/_markerlib/__init__.py
${PYSITELIB}/_markerlib/__init__.pyc
${PYSITELIB}/_markerlib/__init__.pyo
${PYSITELIB}/_markerlib/markers.py
${PYSITELIB}/_markerlib/markers.pyc
${PYSITELIB}/_markerlib/markers.pyo
${PYSITELIB}/${EGG_FILE}/PKG-INFO
${PYSITELIB}/${EGG_FILE}/SOURCES.txt
${PYSITELIB}/${EGG_FILE}/dependency_links.txt
Expand Down Expand Up @@ -140,6 +146,9 @@ ${PYSITELIB}/setuptools/tests/test_dist_info.pyo
${PYSITELIB}/setuptools/tests/test_easy_install.py
${PYSITELIB}/setuptools/tests/test_easy_install.pyc
${PYSITELIB}/setuptools/tests/test_easy_install.pyo
${PYSITELIB}/setuptools/tests/test_markerlib.py
${PYSITELIB}/setuptools/tests/test_markerlib.pyc
${PYSITELIB}/setuptools/tests/test_markerlib.pyo
${PYSITELIB}/setuptools/tests/test_packageindex.py
${PYSITELIB}/setuptools/tests/test_packageindex.pyc
${PYSITELIB}/setuptools/tests/test_packageindex.pyo
Expand All @@ -149,6 +158,12 @@ ${PYSITELIB}/setuptools/tests/test_resources.pyo
${PYSITELIB}/setuptools/tests/test_sandbox.py
${PYSITELIB}/setuptools/tests/test_sandbox.pyc
${PYSITELIB}/setuptools/tests/test_sandbox.pyo
${PYSITELIB}/setuptools/tests/test_sdist.py
${PYSITELIB}/setuptools/tests/test_sdist.pyc
${PYSITELIB}/setuptools/tests/test_sdist.pyo
${PYSITELIB}/setuptools/tests/test_test.py
${PYSITELIB}/setuptools/tests/test_test.pyc
${PYSITELIB}/setuptools/tests/test_test.pyo
${PYSITELIB}/setuptools/tests/test_upload_docs.py
${PYSITELIB}/setuptools/tests/test_upload_docs.pyc
${PYSITELIB}/setuptools/tests/test_upload_docs.pyo
Expand Down
8 changes: 4 additions & 4 deletions devel/py-distribute/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.1 2012/07/25 19:05:52 drochner Exp $
$NetBSD: distinfo,v 1.2 2012/10/20 16:11:00 wiz Exp $

SHA1 (distribute-0.6.28.tar.gz) = 709bd97d46050d69865d4b588c7707768dfe6711
RMD160 (distribute-0.6.28.tar.gz) = 6f484adca518fc59ef736bccf63d24ca3e94ecfc
Size (distribute-0.6.28.tar.gz) = 627530 bytes
SHA1 (distribute-0.6.29.tar.gz) = c713633a38d23bbed16c0947666165688a18915b
RMD160 (distribute-0.6.29.tar.gz) = 9e800bd2a2c8c48d742a1c50be6bec276cc82219
Size (distribute-0.6.29.tar.gz) = 638051 bytes
SHA1 (patch-aa) = f71c01fc59d71e731c4e239790acb7968e29e7d9

0 comments on commit 7423e04

Please sign in to comment.