rmohr / chroot-plugin

A Jenkins plugin which adds support for disposable chroot environments, which can be very usefull for C and C++ projects.
GNU General Public License v3.0
6 stars 15 forks source link

Fix dependency for Ubuntu > 12.04 #2

Closed t4k1t closed 9 years ago

t4k1t commented 10 years ago

Appearently python-software-properties has been renamed to software-properties-common in Ubuntu. So unless support for Ubuntu 10.04 is a requirement for you I'd recommend switching to software-properties-common. See http://packages.ubuntu.com/search?keywords=python-software-properties and http://packages.ubuntu.com/search?keywords=software-properties-common for comparison.

Cheers, tablet-mode

rmohr commented 9 years ago

Thanks for the hint! I will try to find a backward compatible solution.

Roman

t4k1t commented 9 years ago

That would of course be the best solution, thanks for looking into this.

rmohr commented 9 years ago

I have added a fallback solution. The plugin first tries to install software-properties-common. If this fails it falls back to python-software-properties. This change will be released in 0.1.4

t4k1t commented 9 years ago

Cool, thanks.