jchaloup pushed to golang-github-prometheus-prometheus (master). "Update to 0.13.3 (..more)"

notifications at fedoraproject.org notifications at fedoraproject.org
Tue May 12 07:07:52 UTC 2015


From 66045bf9e9397956be6f7d75349b4eadbbc5e37d Mon Sep 17 00:00:00 2001
From: Jan Chaloupka <jchaloup at redhat.com>
Date: Tue, 12 May 2015 08:31:14 +0200
Subject: Update to 0.13.3 - related: #1190426


diff --git a/.gitignore b/.gitignore
index 257ccba..0e259ce 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/prometheus-f4d90a1.tar.gz
+/prometheus-43b41c5.tar.gz
diff --git a/golang-github-prometheus-prometheus.spec b/golang-github-prometheus-prometheus.spec
index 1860c42..d425c58 100644
--- a/golang-github-prometheus-prometheus.spec
+++ b/golang-github-prometheus-prometheus.spec
@@ -4,11 +4,11 @@
 %global project         prometheus
 %global repo            prometheus
 %global import_path     %{provider}.%{provider_tld}/%{project}/%{repo}
-%global commit          f4d90a105ecefce579c9c598fc50301c9a084803
+%global commit          43b41c56ce469cdaa94447541693578c5ec16a91
 %global shortcommit     %(c=%{commit}; echo ${c:0:7})
 
 Name:           golang-%{provider}-%{project}-%{repo}
-Version:        0.13.2
+Version:        0.13.3
 Release:        1%{?dist}
 Summary:        The Prometheus monitoring system and time series database
 License:        ASL 2.0
@@ -35,6 +35,7 @@ BuildRequires: golang(github.com/syndtr/goleveldb/leveldb/filter)
 BuildRequires: golang(github.com/syndtr/goleveldb/leveldb/iterator)
 BuildRequires: golang(github.com/syndtr/goleveldb/leveldb/opt)
 BuildRequires: golang(github.com/syndtr/goleveldb/leveldb/util)
+BuildRequires: golang(golang.org/x/net/context)
 
 Provides: prometheus = %{version}-%{release}
 
@@ -57,6 +58,7 @@ BuildRequires: golang(github.com/syndtr/goleveldb/leveldb/filter)
 BuildRequires: golang(github.com/syndtr/goleveldb/leveldb/iterator)
 BuildRequires: golang(github.com/syndtr/goleveldb/leveldb/opt)
 BuildRequires: golang(github.com/syndtr/goleveldb/leveldb/util)
+BuildRequires: golang(golang.org/x/net/context)
 
 Requires: golang >= 1.2.1-3
 Requires: golang(github.com/golang/glog)
@@ -70,14 +72,14 @@ Requires: golang(github.com/syndtr/goleveldb/leveldb/filter)
 Requires: golang(github.com/syndtr/goleveldb/leveldb/iterator)
 Requires: golang(github.com/syndtr/goleveldb/leveldb/opt)
 Requires: golang(github.com/syndtr/goleveldb/leveldb/util)
+Requires: golang(golang.org/x/net/context)
 
 Provides: golang(%{import_path}/config) = %{version}-%{release}
 Provides: golang(%{import_path}/config/generated) = %{version}-%{release}
 Provides: golang(%{import_path}/notification) = %{version}-%{release}
+Provides: golang(%{import_path}/promql) = %{version}-%{release}
 Provides: golang(%{import_path}/retrieval) = %{version}-%{release}
 Provides: golang(%{import_path}/rules) = %{version}-%{release}
-Provides: golang(%{import_path}/rules/ast) = %{version}-%{release}
-Provides: golang(%{import_path}/rules/manager) = %{version}-%{release}
 Provides: golang(%{import_path}/stats) = %{version}-%{release}
 Provides: golang(%{import_path}/storage) = %{version}-%{release}
 Provides: golang(%{import_path}/storage/local) = %{version}-%{release}
@@ -146,6 +148,7 @@ cp -rpav storage %{buildroot}/%{gopath}/src/%{import_path}/
 cp -rpav stats %{buildroot}/%{gopath}/src/%{import_path}/
 cp -rpav rules %{buildroot}/%{gopath}/src/%{import_path}/
 cp -rpav retrieval %{buildroot}/%{gopath}/src/%{import_path}/
+cp -rpav promql %{buildroot}/%{gopath}/src/%{import_path}/
 cp -rpav notification %{buildroot}/%{gopath}/src/%{import_path}/
 cp -rpav config %{buildroot}/%{gopath}/src/%{import_path}/
 
@@ -156,6 +159,7 @@ popd
 rm -rf utility/embed-static.sh
 
 %check
+GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/web/api
 GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/utility
 GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/templates
 GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/storage/remote
@@ -166,7 +170,7 @@ GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/storage/metric
 #GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/storage/local/flock
 #GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/storage/local/codable
 #GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/rules
-#GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/rules/ast
+#GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/promql
 GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/retrieval
 GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/notification
 GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/config
@@ -185,6 +189,10 @@ GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/config
 %{_bindir}/%{repo}
 
 %changelog
+* Tue May 12 2015 jchaloup <jchaloup at redhat.com> - 0.13.3-1
+- Update to 0.13.3
+  related: #1190426
+
 * Sat May 09 2015 jchaloup <jchaloup at redhat.com> - 0.13.2-1
 - Update to 0.13.2
   related: #1190426
diff --git a/sources b/sources
index f3b671c..0a7754a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-4c02b63e279050ae9ef7a24193c3c415  prometheus-f4d90a1.tar.gz
+9d84e2fe39a0c221b43a5a777bcc0531  prometheus-43b41c5.tar.gz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/golang-github-prometheus-prometheus.git/commit/?h=master&id=66045bf9e9397956be6f7d75349b4eadbbc5e37d


More information about the scm-commits mailing list