This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ustinov
Recipients ronaldoussoren, ustinov
Date 2014-05-30.14:56:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401461821.06.0.907126667727.issue21613@psf.upfronthosting.co.za>
In-reply-to
Content
I'm trying to automate the Python uninstallation on mac but I've found that the actual installation location is not stored for Python packages.
That location is required since the pkgutil keeps track of installed files (if you run $ pkgutil --files org.python.Python.PythonFramework-3.4) but doesn't store the absolute paths for that files.


1. Run $ pkgutil --pkgs=.*Python.*3\.4
Here's the expected output
org.python.Python.PythonApplications-3.4
org.python.Python.PythonDocumentation-3.4
org.python.Python.PythonFramework-3.4
org.python.Python.PythonInstallPip-3.4
org.python.Python.PythonProfileChanges-3.4
org.python.Python.PythonUnixTools-3.4

2. Run $ pkgutil --pkg-info org.python.Python.PythonFramework-3.4
Here's the output
package-id: org.python.Python.PythonFramework-3.4
version: 3.4.1
volume: /
location: (null)
install-time: 1401373546

Actual Result: The location property is (null)
Expected Result: The location property should be '/Library/Frameworks/Python.framework'
History
Date User Action Args
2014-05-30 14:57:01ustinovsetrecipients: + ustinov, ronaldoussoren
2014-05-30 14:57:01ustinovsetmessageid: <1401461821.06.0.907126667727.issue21613@psf.upfronthosting.co.za>
2014-05-30 14:57:00ustinovlinkissue21613 messages
2014-05-30 14:56:59ustinovcreate