# HG changeset patch # User Ian Baum <ibaum@gitlab.com> # Date 1536186171 18000 # Wed Sep 05 17:22:51 2018 -0500 # Node ID e9076d8e0e0be810a6c2983c7733172d91157cfd # Parent 89d74b425006c712c77349f5087159857e1236ad Skip license check on Go software with no dependencies diff --git a/config/software/alertmanager.rb b/config/software/alertmanager.rb --- a/config/software/alertmanager.rb +++ b/config/software/alertmanager.rb @@ -26,6 +26,8 @@ license 'APACHE-2.0' license_file 'LICENSE' +skip_transitive_dependency_licensing true + source git: version.remote go_source = 'github.com/prometheus/alertmanager' diff --git a/config/software/gitaly.rb b/config/software/gitaly.rb --- a/config/software/gitaly.rb +++ b/config/software/gitaly.rb @@ -23,6 +23,8 @@ license 'MIT' license_file 'LICENSE' +skip_transitive_dependency_licensing true + dependency 'ruby' dependency 'bundler' dependency 'libicu' diff --git a/config/software/gitlab-workhorse.rb b/config/software/gitlab-workhorse.rb --- a/config/software/gitlab-workhorse.rb +++ b/config/software/gitlab-workhorse.rb @@ -23,6 +23,8 @@ license 'MIT' license_file 'LICENSE' +skip_transitive_dependency_licensing true + source git: version.remote build do diff --git a/config/software/node-exporter.rb b/config/software/node-exporter.rb --- a/config/software/node-exporter.rb +++ b/config/software/node-exporter.rb @@ -24,6 +24,8 @@ license 'APACHE-2.0' license_file 'LICENSE' +skip_transitive_dependency_licensing true + source git: version.remote go_source = 'github.com/prometheus/node_exporter' diff --git a/config/software/pgbouncer-exporter.rb b/config/software/pgbouncer-exporter.rb --- a/config/software/pgbouncer-exporter.rb +++ b/config/software/pgbouncer-exporter.rb @@ -26,6 +26,8 @@ license 'MIT' license_file 'LICENSE' +skip_transitive_dependency_licensing true + source git: version.remote go_source = 'github.com/stanhu/pgbouncer_exporter' diff --git a/config/software/postgres-exporter.rb b/config/software/postgres-exporter.rb --- a/config/software/postgres-exporter.rb +++ b/config/software/postgres-exporter.rb @@ -25,6 +25,8 @@ license 'Apache-2.0' license_file 'LICENSE' +skip_transitive_dependency_licensing true + source git: version.remote relative_path 'src/github.com/wrouesnel/postgres_exporter' diff --git a/config/software/prometheus.rb b/config/software/prometheus.rb --- a/config/software/prometheus.rb +++ b/config/software/prometheus.rb @@ -26,6 +26,8 @@ license 'APACHE-2.0' license_file 'LICENSE' +skip_transitive_dependency_licensing true + source git: version.remote go_source = 'github.com/prometheus/prometheus'