diff options
| author | Harald Sitter <sitter@kde.org> | 2015-08-07 11:57:00 (GMT) |
|---|---|---|
| committer | Harald Sitter <sitter@kde.org> | 2015-08-07 11:57:00 (GMT) |
| commit | 86e9ba69eb46fd57f00510adf8a05cab93689f26 (patch) | |
| tree | a1827a7586b8a62ff37f60383720e5b5a7620a0c | |
| parent | 3c1e30f6bd89c209094bad33dd03013aa461f348 (diff) | |
disable all symbol tracking and updating to not get in the way of gcc5
symbols are being updated in wily as gcc5 is stuck in proposed. until it
lands properly we'll not track symbols
| -rwxr-xr-x | kci/builder.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kci/builder.rb b/kci/builder.rb index c7bfad9..8f19fc0 100755 --- a/kci/builder.rb +++ b/kci/builder.rb @@ -415,10 +415,10 @@ end archindep = File.read('archindep').strip rescue 'amd64' # Get archindep from ppa script. log_data = File.open("logs/#{archindep}.log").read -updated_symbols = false +updated_symbols = true # FIXME: stability wtf gensymbols_regex = %r{dpkg-gensymbols: warning: (.*)/symbols doesn't match completely debian/(.*).symbols} -if project.series == KCI.latest_series && log_data.match(gensymbols_regex) +if !updated_symbols && project.series == KCI.latest_series && log_data.match(gensymbols_regex) puts 'KCI::SYMBOLS' if log_data.include?('dpkg-gensymbols: warning: some new symbols appeared') match = log_data.match(/--- debian\/(.*).symbols/) |
