mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Temporary workaround for maven packaging bug
See https://bugs.launchpad.net/bugs/1171056
This commit is contained in:
parent
03dcc07edb
commit
f7d99ed521
1 changed files with 14 additions and 1 deletions
|
|
@ -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
|
package pkg do
|
||||||
action :install
|
action :install
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue