diff --git a/config/software/guidata.rb b/config/software/guidata.rb index e54159285..b78cc94d9 100644 --- a/config/software/guidata.rb +++ b/config/software/guidata.rb @@ -17,5 +17,6 @@ build do patch :source => 'fix_blocking_import.patch' patch :source => 'remove_default_image_path.patch' if ohai['platform_family'] == 'mac_os_x' - command "#{install_dir}/embedded/bin/python setup.py install", :env => env + command "#{install_dir}/embedded/bin/python setup.py install "\ + "--record #{install_dir}/embedded/guidata-files.txt", :env => env end diff --git a/config/software/pyside.rb b/config/software/pyside.rb index 830cfa992..98e0b05ee 100644 --- a/config/software/pyside.rb +++ b/config/software/pyside.rb @@ -16,5 +16,6 @@ } build do - command "#{install_dir}/embedded/bin/python setup.py install", :env => env + command "#{install_dir}/embedded/bin/python setup.py install "\ + "--record #{install_dir}/embedded/pyside-files.txt", :env => env end diff --git a/config/software/spyderlib.rb b/config/software/spyderlib.rb index e1fd349ef..ceb3e5b0f 100644 --- a/config/software/spyderlib.rb +++ b/config/software/spyderlib.rb @@ -14,5 +14,6 @@ } build do - command "#{install_dir}/embedded/bin/python setup.py install", :env => env + command "#{install_dir}/embedded/bin/python setup.py install "\ + "--record #{install_dir}/embedded/spyderlib-files.txt", :env => env end diff --git a/config/software/supervisor.rb b/config/software/supervisor.rb index e16e230b0..25c512927 100644 --- a/config/software/supervisor.rb +++ b/config/software/supervisor.rb @@ -4,21 +4,7 @@ dependency "python" dependency "pip" -if ohai['platform_family'] == 'mac_os_x' - source :url => "https://github.com/Supervisor/supervisor/archive/#{version}.tar.gz", - :md5 => '073f1912e8bfe5bf89e84b96495df62e' - - relative_path "supervisor-#{version}" - - dependency "meld3" - - build do - ship_license "https://raw.githubusercontent.com/Supervisor/supervisor/master/LICENSES.txt" - command "#{install_dir}/embedded/bin/python setup.py install" - end -else - build do - ship_license "https://raw.githubusercontent.com/Supervisor/supervisor/master/LICENSES.txt" - command "#{install_dir}/embedded/bin/pip install -I --install-option=\"--install-scripts=#{install_dir}/bin\" #{name}==#{version}" - end +build do + ship_license "https://raw.githubusercontent.com/Supervisor/supervisor/master/LICENSES.txt" + command "#{install_dir}/embedded/bin/pip install -I --install-option=\"--install-scripts=#{install_dir}/bin\" #{name}==#{version}" end