# File lib/chef/provider/package/macports.rb, line 54 def purge_package(name, version) command = "port uninstall #{name}" command << " @#{version}" if version and !version.empty? run_command_with_systems_locale( :command => command ) end