mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
Temporary workaround for maven packaging bug
See https://bugs.launchpad.net/bugs/1171056
This commit is contained in:
parent
03dcc07edb
commit
f7d99ed521
@ -1,5 +1,18 @@
|
||||
|
||||
%w{ant ant-contrib autoconf autopoint bison cmake libtool libssl1.0.0 libssl-dev maven javacc python git-core mercurial subversion bzr git-svn make perlmagick pkg-config zip ruby rubygems librmagick-ruby}.each do |pkg|
|
||||
script "temp-proposed" do
|
||||
interpreter "bash"
|
||||
user node[:settings][:user]
|
||||
cwd "/tmp"
|
||||
code "
|
||||
sudo su -c 'echo deb http://archive.ubuntu.com/ubuntu/ raring-proposed restricted main multiverse universe >/etc/apt/sources.list.d/tmp.list'
|
||||
sudo apt-get update
|
||||
"
|
||||
not_if do
|
||||
File.exists?("/etc/apt/sources.list.d/tmp.list")
|
||||
end
|
||||
end
|
||||
|
||||
%w{ant ant-contrib autoconf autopoint bison cmake expect libtool libssl1.0.0 libssl-dev maven javacc python git-core mercurial subversion bzr git-svn make perlmagick pkg-config zip ruby rubygems librmagick-ruby}.each do |pkg|
|
||||
package pkg do
|
||||
action :install
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user