Actions
Issue #2411
closedMissing support for ZIP files
Status:
CLOSED - DUPLICATE
Priority:
Normal
Assignee:
-
Sprint/Milestone:
-
Start date:
Due date:
Estimated time:
Severity:
2. Medium
Version - Python:
1.1.1
Platform Release:
Target Release - Python:
OS:
Triaged:
No
Groomed:
No
Sprint Candidate:
No
Tags:
Pulp 2
Sprint:
Quarter:
Description
I'm currently using the latest pulp-python-plugins-1.1.3 and I'm not able to sync PYPI packages in ZIP format:
# Create repo with two packages
pulp-admin python repo create --repo-id my_pypi --feed https://pypi.python.org/ --package-names importlib,wsgiref
pulp-admin python repo sync run --repo-id my_pypi
# This finds importlib package in the version 1.4.0 but it's a ZIP file!
curl -s https://pypi.python.org/simple/importlib/ | grep 1.0.4
# This finds no importlib package - only tar.gz files are available
curl -s https://localhost/pulp/python/simple/importlib/ | grep 1.0.4
# This finds the wsgiref package
curl -s https://pypi.python.org/simple/ | grep wsgiref
# This finds no wsgiref package because the remote package contains only ZIP files
curl -s https://localhost/pulp/python/simple | grep wsgiref
Related issues
Actions