[docker-io] NVR: docker-io-1.5.0-14.gitb52a2cf

2015-02-27 Thread Lokesh Mandvekar
commit 449b3b4937c22209b9ac5568cb78fa9cf8e2df40
Author: Lokesh Mandvekar 
Date:   Sat Feb 28 01:23:29 2015 -0600

NVR: docker-io-1.5.0-14.gitb52a2cf

Signed-off-by: Lokesh Mandvekar 

 docker-io.spec | 7 +--
 sources| 2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/docker-io.spec b/docker-io.spec
index 11816e0..d6e6dd1 100644
--- a/docker-io.spec
+++ b/docker-io.spec
@@ -11,14 +11,14 @@
 
 %global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
 
-%global commit f5850e8e30b9420d26bd12136d8bbb6669d1e2bb
+%global commit b52a2cfdf1aabf15a4a1a630b3899ae373516517
 %global shortcommit %(c=%{commit}; echo ${c:0:7})
 
 %global tar_import_path code.google.com/p/go/src/pkg/archive/tar
 
 Name:   %{repo}-io
 Version:   1.5.0
-Release:   13.git%{shortcommit}%{?dist}
+Release:   14.git%{shortcommit}%{?dist}
 Summary:Automates deployment of containerized applications
 License:ASL 2.0
 URL:http://www.docker.com
@@ -362,6 +362,9 @@ exit 0
 %{_datadir}/zsh/site-functions/_docker
 
 %changelog
+* Sat Feb 28 2015 Lokesh Mandvekar  - 
1.5.0-14.gitb52a2cf
+- built commit#b52a2cf
+
 * Fri Feb 27 2015 Lokesh Mandvekar  - 
1.5.0-13.gitf5850e8
 - built commit#f5850e8
 
diff --git a/sources b/sources
index 8572ef6..92cf0b9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ff23fde787a232911f6b09f88e59b19b  docker-f5850e8.tar.gz
+aa2d163cca73b7396238d33ccc572372  docker-b52a2cf.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


File docker-b52a2cf.tar.gz uploaded to lookaside cache by lsm5

2015-02-27 Thread Lokesh Mandvekar
A file has been added to the lookaside cache for docker-io:

aa2d163cca73b7396238d33ccc572372  docker-b52a2cf.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-evanphx-json-patch/el6] First package for Fedora - resolves: #1196992

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  4250568... First package for Fedora - resolves: #1196992 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-evanphx-json-patch] First package for Fedora - resolves: #1196992

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  4250568... First package for Fedora - resolves: #1196992 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-evanphx-json-patch/f20] First package for Fedora - resolves: #1196992

2015-02-27 Thread Jan Chaloupka
commit 4250568170de7c92eea3ed5a148d50572de1af2b
Author: Jan Chaloupka 
Date:   Sat Feb 28 00:45:01 2015 +0100

First package for Fedora
- resolves: #1196992

 .gitignore|  1 +
 golang-github-evanphx-json-patch.spec | 58 +++
 sources   |  1 +
 3 files changed, 60 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..8b82b9c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/json-patch-a1ba76c.tar.gz
diff --git a/golang-github-evanphx-json-patch.spec 
b/golang-github-evanphx-json-patch.spec
new file mode 100644
index 000..96ef574
--- /dev/null
+++ b/golang-github-evanphx-json-patch.spec
@@ -0,0 +1,58 @@
+%global debug_package   %{nil}
+%global providergithub
+%global provider_tldcom
+%global project evanphx
+%global repojson-patch
+%global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
+%global commit  a1ba76c74289b81e1c19281fc0ff0d2b2dd11482
+%global shortcommit %(c=%{commit}; echo ${c:0:7})
+
+Name:   golang-%{provider}-%{project}-%{repo}
+Version:0
+Release:0.1.git%{shortcommit}%{?dist}
+Summary:A Go library to apply RFC6902 patches to JSON documents
+License:BSD
+URL:https://%{import_path}
+Source0:
https://%{import_path}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
+%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7
+BuildArch:  noarch
+%else
+ExclusiveArch:  %{ix86} x86_64 %{arm}
+%endif
+
+%description
+%{summary}
+
+%package devel
+BuildRequires:  golang >= 1.2.1-3
+Requires:   golang >= 1.2.1-3
+Summary:%{summary}
+Provides:   golang(%{import_path}) = %{version}-%{release}
+
+%description devel
+%{summary}
+
+This package contains library source intended for 
+building other packages which use %{project}/%{repo}.
+
+%prep
+%setup -q -n %{repo}-%{commit}
+
+%build
+
+%install
+install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
+cp -pav *.go %{buildroot}/%{gopath}/src/%{import_path}/
+
+%check
+GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}
+
+%files devel
+%doc README.md LICENSE
+%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
+%{gopath}/src/%{import_path}
+
+%changelog
+* Fri Feb 27 2015 jchaloup  - 0-0.1.gita1ba76c
+- First package for Fedora
+  resolves: #1196992
diff --git a/sources b/sources
index e69de29..d4ab49e 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+00f4b6d9f29eb61ef02a90e763d1d779  json-patch-a1ba76c.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-evanphx-json-patch/f21] First package for Fedora - resolves: #1196992

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  4250568... First package for Fedora - resolves: #1196992 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-evanphx-json-patch/f22] First package for Fedora - resolves: #1196992

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  4250568... First package for Fedora - resolves: #1196992 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


File json-patch-a1ba76c.tar.gz uploaded to lookaside cache by jchaloup

2015-02-27 Thread Jan Chaloupka
A file has been added to the lookaside cache for 
golang-github-evanphx-json-patch:

00f4b6d9f29eb61ef02a90e763d1d779  json-patch-a1ba76c.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-prometheus-client_golang/el6] Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b - related: #1190442

2015-02-27 Thread Jan Chaloupka
commit 77d027c59a8c4cc6d944b7893cf33d37052f5deb
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:46:10 2015 +0100

Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
- related: #1190442

 .gitignore  |  2 +-
 golang-github-prometheus-client_golang.spec | 10 --
 sources |  2 +-
 3 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 82c89a1..019c6d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/client_golang-52186fc.tar.gz
+/client_golang-39e4bc8.tar.gz
diff --git a/golang-github-prometheus-client_golang.spec 
b/golang-github-prometheus-client_golang.spec
index 4004485..779f4b8 100644
--- a/golang-github-prometheus-client_golang.spec
+++ b/golang-github-prometheus-client_golang.spec
@@ -4,12 +4,12 @@
 %global project prometheus
 %global repoclient_golang
 %global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
-%global commit  52186fc518809dc9a56502348751e353866b2059
+%global commit  39e4bc83f974fb141a9e67c042b26322bacc917b
 %global shortcommit %(c=%{commit}; echo ${c:0:7})
 
 Name:   golang-%{provider}-%{project}-%{repo}
 Version:0
-Release:0.1.git%{shortcommit}%{?dist}
+Release:0.2.git%{shortcommit}%{?dist}
 Summary:Prometheus instrumentation library for Go applications
 License:ASL 2.0
 URL:https://%{import_path}
@@ -29,6 +29,7 @@ BuildRequires:  
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 BuildRequires:  golang(github.com/prometheus/client_model/go)
 BuildRequires:  golang(code.google.com/p/goprotobuf/proto)
 BuildRequires:  golang(github.com/bmizerany/perks/quantile)
+BuildRequires:  golang(github.com/beorn7/perks/quantile)
 #BuildRequires:  golang(github.com/prometheus/prometheus/utility/test)
 BuildRequires:  golang(github.com/prometheus/procfs)
 Requires:   golang >= 1.2.1-3
@@ -36,6 +37,7 @@ Requires:   
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 Requires:   golang(github.com/prometheus/client_model/go)
 Requires:   golang(code.google.com/p/goprotobuf/proto)
 Requires:   golang(github.com/bmizerany/perks/quantile)
+Requires:   golang(github.com/beorn7/perks/quantile)
 #Requires:   golang(github.com/prometheus/prometheus/utility/test)
 Requires:   golang(github.com/prometheus/procfs)
 Summary:%{summary}
@@ -90,6 +92,10 @@ popd
 %{gopath}/src/%{import_path}
 
 %changelog
+* Thu Feb 26 2015 jchaloup  - 0-0.2.git39e4bc8
+- Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
+  related: #1190442
+
 * Sat Feb 07 2015 jchaloup  - 0-0.1.git52186fc
 - First package for Fedora
   resolves: #1190442
diff --git a/sources b/sources
index 5b23dbc..b04d717 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0f05c1d918d9d5a2d5c8711cb7aa6509  client_golang-52186fc.tar.gz
+41470e38ba154804d8a10dd8267799fd  client_golang-39e4bc8.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-prometheus-client_golang/f22] Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b - related: #1190442

2015-02-27 Thread Jan Chaloupka
commit 0101dd2144de78b9fd34d3574313f2b009aff832
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:46:10 2015 +0100

Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
- related: #1190442

 .gitignore  |  2 +-
 golang-github-prometheus-client_golang.spec | 10 --
 sources |  2 +-
 3 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 82c89a1..019c6d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/client_golang-52186fc.tar.gz
+/client_golang-39e4bc8.tar.gz
diff --git a/golang-github-prometheus-client_golang.spec 
b/golang-github-prometheus-client_golang.spec
index 4004485..779f4b8 100644
--- a/golang-github-prometheus-client_golang.spec
+++ b/golang-github-prometheus-client_golang.spec
@@ -4,12 +4,12 @@
 %global project prometheus
 %global repoclient_golang
 %global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
-%global commit  52186fc518809dc9a56502348751e353866b2059
+%global commit  39e4bc83f974fb141a9e67c042b26322bacc917b
 %global shortcommit %(c=%{commit}; echo ${c:0:7})
 
 Name:   golang-%{provider}-%{project}-%{repo}
 Version:0
-Release:0.1.git%{shortcommit}%{?dist}
+Release:0.2.git%{shortcommit}%{?dist}
 Summary:Prometheus instrumentation library for Go applications
 License:ASL 2.0
 URL:https://%{import_path}
@@ -29,6 +29,7 @@ BuildRequires:  
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 BuildRequires:  golang(github.com/prometheus/client_model/go)
 BuildRequires:  golang(code.google.com/p/goprotobuf/proto)
 BuildRequires:  golang(github.com/bmizerany/perks/quantile)
+BuildRequires:  golang(github.com/beorn7/perks/quantile)
 #BuildRequires:  golang(github.com/prometheus/prometheus/utility/test)
 BuildRequires:  golang(github.com/prometheus/procfs)
 Requires:   golang >= 1.2.1-3
@@ -36,6 +37,7 @@ Requires:   
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 Requires:   golang(github.com/prometheus/client_model/go)
 Requires:   golang(code.google.com/p/goprotobuf/proto)
 Requires:   golang(github.com/bmizerany/perks/quantile)
+Requires:   golang(github.com/beorn7/perks/quantile)
 #Requires:   golang(github.com/prometheus/prometheus/utility/test)
 Requires:   golang(github.com/prometheus/procfs)
 Summary:%{summary}
@@ -90,6 +92,10 @@ popd
 %{gopath}/src/%{import_path}
 
 %changelog
+* Thu Feb 26 2015 jchaloup  - 0-0.2.git39e4bc8
+- Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
+  related: #1190442
+
 * Sat Feb 07 2015 jchaloup  - 0-0.1.git52186fc
 - First package for Fedora
   resolves: #1190442
diff --git a/sources b/sources
index 5b23dbc..b04d717 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0f05c1d918d9d5a2d5c8711cb7aa6509  client_golang-52186fc.tar.gz
+41470e38ba154804d8a10dd8267799fd  client_golang-39e4bc8.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-prometheus-client_golang] Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b - related: #1190442

2015-02-27 Thread Jan Chaloupka
commit 354ed484c0f0bd98743b35f4d2b06589608e7906
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:46:10 2015 +0100

Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
- related: #1190442

 .gitignore  |  2 +-
 golang-github-prometheus-client_golang.spec | 10 --
 sources |  2 +-
 3 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 82c89a1..019c6d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/client_golang-52186fc.tar.gz
+/client_golang-39e4bc8.tar.gz
diff --git a/golang-github-prometheus-client_golang.spec 
b/golang-github-prometheus-client_golang.spec
index 4004485..779f4b8 100644
--- a/golang-github-prometheus-client_golang.spec
+++ b/golang-github-prometheus-client_golang.spec
@@ -4,12 +4,12 @@
 %global project prometheus
 %global repoclient_golang
 %global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
-%global commit  52186fc518809dc9a56502348751e353866b2059
+%global commit  39e4bc83f974fb141a9e67c042b26322bacc917b
 %global shortcommit %(c=%{commit}; echo ${c:0:7})
 
 Name:   golang-%{provider}-%{project}-%{repo}
 Version:0
-Release:0.1.git%{shortcommit}%{?dist}
+Release:0.2.git%{shortcommit}%{?dist}
 Summary:Prometheus instrumentation library for Go applications
 License:ASL 2.0
 URL:https://%{import_path}
@@ -29,6 +29,7 @@ BuildRequires:  
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 BuildRequires:  golang(github.com/prometheus/client_model/go)
 BuildRequires:  golang(code.google.com/p/goprotobuf/proto)
 BuildRequires:  golang(github.com/bmizerany/perks/quantile)
+BuildRequires:  golang(github.com/beorn7/perks/quantile)
 #BuildRequires:  golang(github.com/prometheus/prometheus/utility/test)
 BuildRequires:  golang(github.com/prometheus/procfs)
 Requires:   golang >= 1.2.1-3
@@ -36,6 +37,7 @@ Requires:   
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 Requires:   golang(github.com/prometheus/client_model/go)
 Requires:   golang(code.google.com/p/goprotobuf/proto)
 Requires:   golang(github.com/bmizerany/perks/quantile)
+Requires:   golang(github.com/beorn7/perks/quantile)
 #Requires:   golang(github.com/prometheus/prometheus/utility/test)
 Requires:   golang(github.com/prometheus/procfs)
 Summary:%{summary}
@@ -90,6 +92,10 @@ popd
 %{gopath}/src/%{import_path}
 
 %changelog
+* Thu Feb 26 2015 jchaloup  - 0-0.2.git39e4bc8
+- Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
+  related: #1190442
+
 * Sat Feb 07 2015 jchaloup  - 0-0.1.git52186fc
 - First package for Fedora
   resolves: #1190442
diff --git a/sources b/sources
index 5b23dbc..b04d717 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0f05c1d918d9d5a2d5c8711cb7aa6509  client_golang-52186fc.tar.gz
+41470e38ba154804d8a10dd8267799fd  client_golang-39e4bc8.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-prometheus-client_golang/f21] Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b - related: #1190442

2015-02-27 Thread Jan Chaloupka
commit 7c0edcde83a20daf57ebd1140d25a85d5b31fd2a
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:46:10 2015 +0100

Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
- related: #1190442

 .gitignore  |  2 +-
 golang-github-prometheus-client_golang.spec | 10 --
 sources |  2 +-
 3 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 82c89a1..019c6d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/client_golang-52186fc.tar.gz
+/client_golang-39e4bc8.tar.gz
diff --git a/golang-github-prometheus-client_golang.spec 
b/golang-github-prometheus-client_golang.spec
index 4004485..779f4b8 100644
--- a/golang-github-prometheus-client_golang.spec
+++ b/golang-github-prometheus-client_golang.spec
@@ -4,12 +4,12 @@
 %global project prometheus
 %global repoclient_golang
 %global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
-%global commit  52186fc518809dc9a56502348751e353866b2059
+%global commit  39e4bc83f974fb141a9e67c042b26322bacc917b
 %global shortcommit %(c=%{commit}; echo ${c:0:7})
 
 Name:   golang-%{provider}-%{project}-%{repo}
 Version:0
-Release:0.1.git%{shortcommit}%{?dist}
+Release:0.2.git%{shortcommit}%{?dist}
 Summary:Prometheus instrumentation library for Go applications
 License:ASL 2.0
 URL:https://%{import_path}
@@ -29,6 +29,7 @@ BuildRequires:  
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 BuildRequires:  golang(github.com/prometheus/client_model/go)
 BuildRequires:  golang(code.google.com/p/goprotobuf/proto)
 BuildRequires:  golang(github.com/bmizerany/perks/quantile)
+BuildRequires:  golang(github.com/beorn7/perks/quantile)
 #BuildRequires:  golang(github.com/prometheus/prometheus/utility/test)
 BuildRequires:  golang(github.com/prometheus/procfs)
 Requires:   golang >= 1.2.1-3
@@ -36,6 +37,7 @@ Requires:   
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 Requires:   golang(github.com/prometheus/client_model/go)
 Requires:   golang(code.google.com/p/goprotobuf/proto)
 Requires:   golang(github.com/bmizerany/perks/quantile)
+Requires:   golang(github.com/beorn7/perks/quantile)
 #Requires:   golang(github.com/prometheus/prometheus/utility/test)
 Requires:   golang(github.com/prometheus/procfs)
 Summary:%{summary}
@@ -90,6 +92,10 @@ popd
 %{gopath}/src/%{import_path}
 
 %changelog
+* Thu Feb 26 2015 jchaloup  - 0-0.2.git39e4bc8
+- Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
+  related: #1190442
+
 * Sat Feb 07 2015 jchaloup  - 0-0.1.git52186fc
 - First package for Fedora
   resolves: #1190442
diff --git a/sources b/sources
index 5b23dbc..b04d717 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0f05c1d918d9d5a2d5c8711cb7aa6509  client_golang-52186fc.tar.gz
+41470e38ba154804d8a10dd8267799fd  client_golang-39e4bc8.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-prometheus-client_golang/f20] Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b - related: #1190442

2015-02-27 Thread Jan Chaloupka
commit 6031231ff1eb72ff246d6c8270039af0088b0108
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:46:10 2015 +0100

Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
- related: #1190442

 .gitignore  |  2 +-
 golang-github-prometheus-client_golang.spec | 10 --
 sources |  2 +-
 3 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 82c89a1..019c6d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/client_golang-52186fc.tar.gz
+/client_golang-39e4bc8.tar.gz
diff --git a/golang-github-prometheus-client_golang.spec 
b/golang-github-prometheus-client_golang.spec
index 4004485..779f4b8 100644
--- a/golang-github-prometheus-client_golang.spec
+++ b/golang-github-prometheus-client_golang.spec
@@ -4,12 +4,12 @@
 %global project prometheus
 %global repoclient_golang
 %global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
-%global commit  52186fc518809dc9a56502348751e353866b2059
+%global commit  39e4bc83f974fb141a9e67c042b26322bacc917b
 %global shortcommit %(c=%{commit}; echo ${c:0:7})
 
 Name:   golang-%{provider}-%{project}-%{repo}
 Version:0
-Release:0.1.git%{shortcommit}%{?dist}
+Release:0.2.git%{shortcommit}%{?dist}
 Summary:Prometheus instrumentation library for Go applications
 License:ASL 2.0
 URL:https://%{import_path}
@@ -29,6 +29,7 @@ BuildRequires:  
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 BuildRequires:  golang(github.com/prometheus/client_model/go)
 BuildRequires:  golang(code.google.com/p/goprotobuf/proto)
 BuildRequires:  golang(github.com/bmizerany/perks/quantile)
+BuildRequires:  golang(github.com/beorn7/perks/quantile)
 #BuildRequires:  golang(github.com/prometheus/prometheus/utility/test)
 BuildRequires:  golang(github.com/prometheus/procfs)
 Requires:   golang >= 1.2.1-3
@@ -36,6 +37,7 @@ Requires:   
golang(github.com/matttproud/golang_protobuf_extensions/ext)
 Requires:   golang(github.com/prometheus/client_model/go)
 Requires:   golang(code.google.com/p/goprotobuf/proto)
 Requires:   golang(github.com/bmizerany/perks/quantile)
+Requires:   golang(github.com/beorn7/perks/quantile)
 #Requires:   golang(github.com/prometheus/prometheus/utility/test)
 Requires:   golang(github.com/prometheus/procfs)
 Summary:%{summary}
@@ -90,6 +92,10 @@ popd
 %{gopath}/src/%{import_path}
 
 %changelog
+* Thu Feb 26 2015 jchaloup  - 0-0.2.git39e4bc8
+- Bump to upstream 39e4bc83f974fb141a9e67c042b26322bacc917b
+  related: #1190442
+
 * Sat Feb 07 2015 jchaloup  - 0-0.1.git52186fc
 - First package for Fedora
   resolves: #1190442
diff --git a/sources b/sources
index 5b23dbc..b04d717 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0f05c1d918d9d5a2d5c8711cb7aa6509  client_golang-52186fc.tar.gz
+41470e38ba154804d8a10dd8267799fd  client_golang-39e4bc8.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


File client_golang-39e4bc8.tar.gz uploaded to lookaside cache by jchaloup

2015-02-27 Thread Jan Chaloupka
A file has been added to the lookaside cache for 
golang-github-prometheus-client_golang:

41470e38ba154804d8a10dd8267799fd  client_golang-39e4bc8.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks/el6] Add missing patch - related: #1196432

2015-02-27 Thread Jan Chaloupka
commit fc14b9c6338923e818107f3e865abc9ca373bf1a
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:19:38 2015 +0100

Add missing patch
- related: #1196432

 0001-move-license-to-LICENSE.patch | 42 ++
 1 file changed, 42 insertions(+)
---
diff --git a/0001-move-license-to-LICENSE.patch 
b/0001-move-license-to-LICENSE.patch
new file mode 100644
index 000..633684c
--- /dev/null
+++ b/0001-move-license-to-LICENSE.patch
@@ -0,0 +1,42 @@
+From 8a7e1e7e648b312ad1a9579548f421d642a8699b Mon Sep 17 00:00:00 2001
+From: Jan Chaloupka 
+Date: Fri, 27 Feb 2015 09:58:37 +0100
+Subject: [PATCH] move license to LICENSE
+
+---
+ LICENSE   | 7 +++
+ README.md | 6 --
+ 2 files changed, 7 insertions(+), 6 deletions(-)
+ create mode 100644 LICENSE
+
+diff --git a/LICENSE b/LICENSE
+new file mode 100644
+index 000..3830b68
+--- /dev/null
 b/LICENSE
+@@ -0,0 +1,7 @@
++Copyright (C) 2013 Blake Mizerany
++
++Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
++
++The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
++
++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+diff --git a/README.md b/README.md
+index fc05777..9cca46a 100644
+--- a/README.md
 b/README.md
+@@ -22,10 +22,4 @@ FAQ:
+ Q: Why not move the quantile package into the project root?
+ A: I want to add more packages to perks later.
+ 
+-Copyright (C) 2013 Blake Mizerany
+ 
+-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+-
+-The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
+-
+-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+-- 
+1.9.3
+
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks/f20] Add missing patch - related: #1196432

2015-02-27 Thread Jan Chaloupka
commit 0fc596c72a98aa379de739336146199aefea6dd4
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:19:38 2015 +0100

Add missing patch
- related: #1196432

 0001-move-license-to-LICENSE.patch | 42 ++
 1 file changed, 42 insertions(+)
---
diff --git a/0001-move-license-to-LICENSE.patch 
b/0001-move-license-to-LICENSE.patch
new file mode 100644
index 000..633684c
--- /dev/null
+++ b/0001-move-license-to-LICENSE.patch
@@ -0,0 +1,42 @@
+From 8a7e1e7e648b312ad1a9579548f421d642a8699b Mon Sep 17 00:00:00 2001
+From: Jan Chaloupka 
+Date: Fri, 27 Feb 2015 09:58:37 +0100
+Subject: [PATCH] move license to LICENSE
+
+---
+ LICENSE   | 7 +++
+ README.md | 6 --
+ 2 files changed, 7 insertions(+), 6 deletions(-)
+ create mode 100644 LICENSE
+
+diff --git a/LICENSE b/LICENSE
+new file mode 100644
+index 000..3830b68
+--- /dev/null
 b/LICENSE
+@@ -0,0 +1,7 @@
++Copyright (C) 2013 Blake Mizerany
++
++Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
++
++The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
++
++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+diff --git a/README.md b/README.md
+index fc05777..9cca46a 100644
+--- a/README.md
 b/README.md
+@@ -22,10 +22,4 @@ FAQ:
+ Q: Why not move the quantile package into the project root?
+ A: I want to add more packages to perks later.
+ 
+-Copyright (C) 2013 Blake Mizerany
+ 
+-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+-
+-The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
+-
+-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+-- 
+1.9.3
+
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks] Add missing patch - related: #1196432

2015-02-27 Thread Jan Chaloupka
commit 783d241865ffd01171da50bb3c8121758066e47a
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:19:38 2015 +0100

Add missing patch
- related: #1196432

 0001-move-license-to-LICENSE.patch | 42 ++
 1 file changed, 42 insertions(+)
---
diff --git a/0001-move-license-to-LICENSE.patch 
b/0001-move-license-to-LICENSE.patch
new file mode 100644
index 000..633684c
--- /dev/null
+++ b/0001-move-license-to-LICENSE.patch
@@ -0,0 +1,42 @@
+From 8a7e1e7e648b312ad1a9579548f421d642a8699b Mon Sep 17 00:00:00 2001
+From: Jan Chaloupka 
+Date: Fri, 27 Feb 2015 09:58:37 +0100
+Subject: [PATCH] move license to LICENSE
+
+---
+ LICENSE   | 7 +++
+ README.md | 6 --
+ 2 files changed, 7 insertions(+), 6 deletions(-)
+ create mode 100644 LICENSE
+
+diff --git a/LICENSE b/LICENSE
+new file mode 100644
+index 000..3830b68
+--- /dev/null
 b/LICENSE
+@@ -0,0 +1,7 @@
++Copyright (C) 2013 Blake Mizerany
++
++Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
++
++The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
++
++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+diff --git a/README.md b/README.md
+index fc05777..9cca46a 100644
+--- a/README.md
 b/README.md
+@@ -22,10 +22,4 @@ FAQ:
+ Q: Why not move the quantile package into the project root?
+ A: I want to add more packages to perks later.
+ 
+-Copyright (C) 2013 Blake Mizerany
+ 
+-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+-
+-The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
+-
+-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+-- 
+1.9.3
+
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks/f22] Add missing patch - related: #1196432

2015-02-27 Thread Jan Chaloupka
commit 5de67f6bcdff708df9457a5863acd18f787d131b
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:19:38 2015 +0100

Add missing patch
- related: #1196432

 0001-move-license-to-LICENSE.patch | 42 ++
 1 file changed, 42 insertions(+)
---
diff --git a/0001-move-license-to-LICENSE.patch 
b/0001-move-license-to-LICENSE.patch
new file mode 100644
index 000..633684c
--- /dev/null
+++ b/0001-move-license-to-LICENSE.patch
@@ -0,0 +1,42 @@
+From 8a7e1e7e648b312ad1a9579548f421d642a8699b Mon Sep 17 00:00:00 2001
+From: Jan Chaloupka 
+Date: Fri, 27 Feb 2015 09:58:37 +0100
+Subject: [PATCH] move license to LICENSE
+
+---
+ LICENSE   | 7 +++
+ README.md | 6 --
+ 2 files changed, 7 insertions(+), 6 deletions(-)
+ create mode 100644 LICENSE
+
+diff --git a/LICENSE b/LICENSE
+new file mode 100644
+index 000..3830b68
+--- /dev/null
 b/LICENSE
+@@ -0,0 +1,7 @@
++Copyright (C) 2013 Blake Mizerany
++
++Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
++
++The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
++
++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+diff --git a/README.md b/README.md
+index fc05777..9cca46a 100644
+--- a/README.md
 b/README.md
+@@ -22,10 +22,4 @@ FAQ:
+ Q: Why not move the quantile package into the project root?
+ A: I want to add more packages to perks later.
+ 
+-Copyright (C) 2013 Blake Mizerany
+ 
+-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+-
+-The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
+-
+-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+-- 
+1.9.3
+
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks/f21] Add missing patch - related: #1196432

2015-02-27 Thread Jan Chaloupka
commit c27d346221196fb7affcae49dcbcc29732ef8b63
Author: Jan Chaloupka 
Date:   Fri Feb 27 10:19:38 2015 +0100

Add missing patch
- related: #1196432

 0001-move-license-to-LICENSE.patch | 42 ++
 1 file changed, 42 insertions(+)
---
diff --git a/0001-move-license-to-LICENSE.patch 
b/0001-move-license-to-LICENSE.patch
new file mode 100644
index 000..633684c
--- /dev/null
+++ b/0001-move-license-to-LICENSE.patch
@@ -0,0 +1,42 @@
+From 8a7e1e7e648b312ad1a9579548f421d642a8699b Mon Sep 17 00:00:00 2001
+From: Jan Chaloupka 
+Date: Fri, 27 Feb 2015 09:58:37 +0100
+Subject: [PATCH] move license to LICENSE
+
+---
+ LICENSE   | 7 +++
+ README.md | 6 --
+ 2 files changed, 7 insertions(+), 6 deletions(-)
+ create mode 100644 LICENSE
+
+diff --git a/LICENSE b/LICENSE
+new file mode 100644
+index 000..3830b68
+--- /dev/null
 b/LICENSE
+@@ -0,0 +1,7 @@
++Copyright (C) 2013 Blake Mizerany
++
++Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
++
++The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
++
++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+diff --git a/README.md b/README.md
+index fc05777..9cca46a 100644
+--- a/README.md
 b/README.md
+@@ -22,10 +22,4 @@ FAQ:
+ Q: Why not move the quantile package into the project root?
+ A: I want to add more packages to perks later.
+ 
+-Copyright (C) 2013 Blake Mizerany
+ 
+-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+-
+-The above copyright notice and this permission notice shall be included in 
all copies or substantial portions of the Software.
+-
+-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+-- 
+1.9.3
+
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-shurcooL-sanitized_anchor_name/el6] First package for Fedora - resolves: #1196551

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  dd60acb... First package for Fedora - resolves: #1196551 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-shurcooL-sanitized_anchor_name/f22] First package for Fedora - resolves: #1196551

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  dd60acb... First package for Fedora - resolves: #1196551 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-shurcooL-sanitized_anchor_name] First package for Fedora - resolves: #1196551

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  dd60acb... First package for Fedora - resolves: #1196551 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-shurcooL-sanitized_anchor_name/f20] First package for Fedora - resolves: #1196551

2015-02-27 Thread Jan Chaloupka
commit dd60acb3f89c65b2764a865c2168d4c38a8f6f27
Author: Jan Chaloupka 
Date:   Fri Feb 27 09:50:04 2015 +0100

First package for Fedora
- resolves: #1196551

 .gitignore|  1 +
 0001-move-license-to-LICENSE.patch| 54 
 golang-github-shurcooL-sanitized_anchor_name.spec | 60 +++
 sources   |  1 +
 4 files changed, 116 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..5052d0f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/sanitized_anchor_name-8e87604.tar.gz
diff --git a/0001-move-license-to-LICENSE.patch 
b/0001-move-license-to-LICENSE.patch
new file mode 100644
index 000..9d80904
--- /dev/null
+++ b/0001-move-license-to-LICENSE.patch
@@ -0,0 +1,54 @@
+From 085ffc278dc34c797f88635ca3de7fca3ec03416 Mon Sep 17 00:00:00 2001
+From: Jan Chaloupka 
+Date: Fri, 27 Feb 2015 09:51:18 +0100
+Subject: [PATCH] move license to LICENSE
+
+---
+ LICENSE   | 22 ++
+ README.md |  4 
+ 2 files changed, 22 insertions(+), 4 deletions(-)
+ create mode 100644 LICENSE
+
+diff --git a/LICENSE b/LICENSE
+new file mode 100644
+index 000..35e1135
+--- /dev/null
 b/LICENSE
+@@ -0,0 +1,22 @@
++The MIT License (MIT)
++
++Copyright (c)  
++
++Permission is hereby granted, free of charge, to any person obtaining a copy
++of this software and associated documentation files (the "Software"), to deal
++in the Software without restriction, including without limitation the rights
++to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
++copies of the Software, and to permit persons to whom the Software is
++furnished to do so, subject to the following conditions:
++
++The above copyright notice and this permission notice shall be included in
++all copies or substantial portions of the Software.
++
++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
++IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
++AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
++LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
++OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
++THE SOFTWARE.
++
+diff --git a/README.md b/README.md
+index 089c440..15ef6e4 100644
+--- a/README.md
 b/README.md
+@@ -19,7 +19,3 @@ fmt.Println(anchorName)
+ // this-is-a-header
+ ```
+ 
+-License
+
+-
+-- [MIT License](http://opensource.org/licenses/mit-license.php)
+-- 
+1.9.3
+
diff --git a/golang-github-shurcooL-sanitized_anchor_name.spec 
b/golang-github-shurcooL-sanitized_anchor_name.spec
new file mode 100644
index 000..70bd4d3
--- /dev/null
+++ b/golang-github-shurcooL-sanitized_anchor_name.spec
@@ -0,0 +1,60 @@
+%global debug_package   %{nil}
+%global providergithub
+%global provider_tldcom
+%global project shurcooL
+%global reposanitized_anchor_name
+%global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
+%global commit  8e87604bec3c645a4eeaee97dfec9f25811ff20d
+%global shortcommit %(c=%{commit}; echo ${c:0:7})
+
+Name:   golang-%{provider}-%{project}-%{repo}
+Version:0
+Release:0.1.git%{shortcommit}%{?dist}
+Summary:Package sanitized_anchor_name provides a func to create 
sanitized anchor names
+License:MIT
+URL:https://%{import_path}
+Source0:
https://%{import_path}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
+Patch0: 0001-move-license-to-LICENSE.patch
+%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7
+BuildArch:  noarch
+%else
+ExclusiveArch:  %{ix86} x86_64 %{arm}
+%endif
+
+%description
+%{summary}
+
+%package devel
+BuildRequires:  golang >= 1.2.1-3
+Requires:   golang >= 1.2.1-3
+Summary:%{summary}
+Provides:   golang(%{import_path}) = %{version}-%{release}
+
+%description devel
+%{summary}
+
+This package contains library source intended for 
+building other packages which use %{project}/%{repo}.
+
+%prep
+%setup -q -n %{repo}-%{commit}
+%patch0 -p1
+
+%build
+
+%install
+install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
+cp -pav *.go %{buildroot}/%{gopath}/src/%{import_path}/
+
+%check
+GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}
+
+%files devel
+%doc README.md LICENSE
+%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
+%{gopath}/src/%{import_path}
+
+%changelog
+* Thu Feb 26 2015 jchaloup  - 0-0.1.git8e87604
+- First package for Fedora
+  resolves: #1196551
diff --git a/sources b/sources
index e69de29..e8555fb 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+4d1eeca721e29a72d92ffa1e5e7835b8  sanitized_anchor_name-8e87604.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman

[golang-github-shurcooL-sanitized_anchor_name/f21] First package for Fedora - resolves: #1196551

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  dd60acb... First package for Fedora - resolves: #1196551 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[kubernetes] Bump to upstream 08402d798c8f207a2e093de5a670c5e8e673e2de

2015-02-27 Thread Jan Chaloupka
commit 2e734391534946e867afd0c3fdcb62fe5ae97150
Author: Jan Chaloupka 
Date:   Fri Feb 27 09:47:01 2015 +0100

Bump to upstream 08402d798c8f207a2e093de5a670c5e8e673e2de

 .gitignore  | 2 +-
 kubernetes.spec | 7 +--
 sources | 2 +-
 3 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 8989e8f..26812b8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/kubernetes-86434b4.tar.gz
+/kubernetes-08402d7.tar.gz
diff --git a/kubernetes.spec b/kubernetes.spec
index 0589715..6078118 100644
--- a/kubernetes.spec
+++ b/kubernetes.spec
@@ -5,7 +5,7 @@
 %global projectGoogleCloudPlatform
 %global repo   kubernetes
 %global import_path%{provider}.%{provider_tld}/%{project}/%{repo}
-%global commit 86434b4038ab87ac40219562ad420c3cc58c7c6b
+%global commit 08402d798c8f207a2e093de5a670c5e8e673e2de
 %global shortcommit%(c=%{commit}; echo ${c:0:7})
 
 #I really need this, otherwise "version_ldflags=$(kube::version_ldflags)"
@@ -15,7 +15,7 @@
 
 Name:  kubernetes
 Version:   0.11.0
-Release:   0.2.git%{shortcommit}%{?dist}
+Release:   0.3.git%{shortcommit}%{?dist}
 Summary:   Container cluster management
 License:   ASL 2.0
 URL:   https://github.com/GoogleCloudPlatform/kubernetes
@@ -425,6 +425,9 @@ getent passwd kube >/dev/null || useradd -r -g kube -d / -s 
/sbin/nologin \
 %systemd_postun
 
 %changelog
+* Fri Feb 27 2015 jchaloup  - 0.11.0-0.3.git08402d7
+- Bump to upstream 08402d798c8f207a2e093de5a670c5e8e673e2de
+
 * Wed Feb 25 2015 jchaloup  - 0.11.0-0.2.git86434b4
 - Bump to upstream 86434b4038ab87ac40219562ad420c3cc58c7c6b
 
diff --git a/sources b/sources
index 0648b81..df98a6e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1b7c96b6dcf6b2b5b374abf928bfb21e  kubernetes-86434b4.tar.gz
+7bc91d35116a869e45a9403ec270eed8  kubernetes-08402d7.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks/el6] First package for Fedora - resolves: #1196432

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  84cda3a... First package for Fedora - resolves: #1196432 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks/f20] First package for Fedora - resolves: #1196432

2015-02-27 Thread Jan Chaloupka
commit 84cda3a74859ca698c156e8183cc23e86e68fecc
Author: Jan Chaloupka 
Date:   Fri Feb 27 09:57:54 2015 +0100

First package for Fedora
- resolves: #1196432

 .gitignore  |  1 +
 golang-github-beorn7-perks.spec | 66 +
 sources |  1 +
 3 files changed, 68 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..b3c4394 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/perks-b965b61.tar.gz
diff --git a/golang-github-beorn7-perks.spec b/golang-github-beorn7-perks.spec
new file mode 100644
index 000..c77e1c1
--- /dev/null
+++ b/golang-github-beorn7-perks.spec
@@ -0,0 +1,66 @@
+%global debug_package   %{nil}
+%global providergithub
+%global provider_tldcom
+%global project beorn7
+%global repoperks
+%global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
+%global commit  b965b613227fddccbfffe13eae360ed3fa822f8d
+%global shortcommit %(c=%{commit}; echo ${c:0:7})
+
+Name:   golang-%{provider}-%{project}-%{repo}
+Version:0
+Release:0.1.git%{shortcommit}%{?dist}
+Summary:Effective Computation of Things
+License:MIT
+URL:https://%{import_path}
+Source0:
https://%{import_path}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
+Patch0: 0001-move-license-to-LICENSE.patch
+%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7
+BuildArch:  noarch
+%else
+ExclusiveArch:  %{ix86} x86_64 %{arm}
+%endif
+
+%description
+%{summary}
+
+%package devel
+BuildRequires:  golang >= 1.2.1-3
+Requires:   golang >= 1.2.1-3
+Summary:%{summary}
+Provides:   golang(%{import_path}/histogram) = %{version}-%{release}
+Provides:   golang(%{import_path}/quantile) = %{version}-%{release}
+Provides:   golang(%{import_path}/topk) = %{version}-%{release}
+
+%description devel
+%{summary}
+
+This package contains library source intended for 
+building other packages which use %{project}/%{repo}.
+
+%prep
+%setup -q -n %{repo}-%{commit}
+%patch0 -p1
+
+%build
+
+%install
+install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
+cp -rpav topk %{buildroot}/%{gopath}/src/%{import_path}/
+cp -rpav quantile %{buildroot}/%{gopath}/src/%{import_path}/
+cp -rpav histogram %{buildroot}/%{gopath}/src/%{import_path}/
+
+%check
+GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/topk
+GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/quantile
+GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/histogram
+
+%files devel
+%doc README.md LICENSE
+%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
+%{gopath}/src/%{import_path}
+
+%changelog
+* Thu Feb 26 2015 jchaloup  - 0-0.1.gitb965b61
+- First package for Fedora
+  resolves: #1196432
diff --git a/sources b/sources
index e69de29..389d5f5 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+02eee771385fad91b4fca36dd8c7bfeb  perks-b965b61.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks] First package for Fedora - resolves: #1196432

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  84cda3a... First package for Fedora - resolves: #1196432 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks/f22] First package for Fedora - resolves: #1196432

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  84cda3a... First package for Fedora - resolves: #1196432 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-beorn7-perks/f21] First package for Fedora - resolves: #1196432

2015-02-27 Thread Jan Chaloupka
Summary of changes:

  84cda3a... First package for Fedora - resolves: #1196432 (*)

(*) This commit already existed in another branch; no separate mail sent
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


File sanitized_anchor_name-8e87604.tar.gz uploaded to lookaside cache by jchaloup

2015-02-27 Thread Jan Chaloupka
A file has been added to the lookaside cache for 
golang-github-shurcooL-sanitized_anchor_name:

4d1eeca721e29a72d92ffa1e5e7835b8  sanitized_anchor_name-8e87604.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


File kubernetes-08402d7.tar.gz uploaded to lookaside cache by jchaloup

2015-02-27 Thread Jan Chaloupka
A file has been added to the lookaside cache for kubernetes:

7bc91d35116a869e45a9403ec270eed8  kubernetes-08402d7.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang