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

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

1e6da188a914d9bd6d2f4a10be6a2e42  docker-9273040.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-appc-spec/el6] Resolves: rhbz#1174030 - initial package upload

2015-02-01 Thread Lokesh Mandvekar
Summary of changes:

  71d0a92... Resolves: rhbz#1174030 - initial package upload (*)

(*) 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-appc-spec/f21] Resolves: rhbz#1174030 - initial package upload

2015-02-01 Thread Lokesh Mandvekar
Summary of changes:

  71d0a92... Resolves: rhbz#1174030 - initial package upload (*)

(*) 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 spec-202fd7b.tar.gz uploaded to lookaside cache by lsm5

2015-02-01 Thread Lokesh Mandvekar
A file has been added to the lookaside cache for golang-github-appc-spec:

baf8838313bc203fefe509c0a89ded3a  spec-202fd7b.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


File spec-96c52ea.tar.gz uploaded to lookaside cache by lsm5

2015-02-01 Thread Lokesh Mandvekar
A file has been added to the lookaside cache for golang-github-appc-spec:

6c8ab108492aabc9fa04ee701aea17dd  spec-96c52ea.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-appc-spec] Resolves: rhbz#1174030 - initial package upload

2015-02-01 Thread Lokesh Mandvekar
commit 71d0a9252f0906a61aa6244e99765229444ba90d
Author: Lokesh Mandvekar l...@fedoraproject.org
Date:   Mon Feb 2 02:39:59 2015 +

Resolves: rhbz#1174030 - initial package upload

- update to master commit#202fd7b

Signed-off-by: Lokesh Mandvekar l...@fedoraproject.org

 .gitignore   |1 +
 golang-github-appc-spec.spec |   86 ++
 sources  |1 +
 3 files changed, 88 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..c5edd2a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/spec-202fd7b.tar.gz
diff --git a/golang-github-appc-spec.spec b/golang-github-appc-spec.spec
new file mode 100644
index 000..5992610
--- /dev/null
+++ b/golang-github-appc-spec.spec
@@ -0,0 +1,86 @@
+%global debug_package   %{nil}
+%global providergithub
+%global provider_tldcom
+%global project appc
+%global repospec
+%global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
+%global commit  202fd7b99d16c596b89cc14d42758bdcce35fea1
+%global shortcommit %(c=%{commit}; echo ${c:0:7})
+
+Name:   golang-%{provider}-%{project}-%{repo}
+Version:0.2.0
+Release:1.git%{shortcommit}%{?dist}
+Summary:Schema defs and tools for app container specification
+License:ASL 2.0
+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
+BuildRequires:  golang(github.com/coreos/go-semver/semver)
+BuildRequires:  golang(golang.org/x/crypto/openpgp) = 0-0.2
+BuildRequires:  golang(golang.org/x/net/html)
+BuildRequires:  golang(golang.org/x/net/html/atom)
+Requires:   golang = 1.2.1-3
+Requires:   golang(github.com/coreos/go-semver/semver)
+Summary:%{summary}
+Provides:   golang(%{import_path}/ace) = %{version}-%{release}
+Provides:   golang(%{import_path}/aci) = %{version}-%{release}
+Provides:   golang(%{import_path}/actool) = %{version}-%{release}
+Provides:   golang(%{import_path}/discovery) = %{version}-%{release}
+Provides:   golang(%{import_path}/pkg/tarheader) = %{version}-%{release}
+Provides:   golang(%{import_path}/schema) = %{version}-%{release}
+Provides:   golang(%{import_path}/schema/types) = %{version}-%{release}
+
+%description devel
+%{summary}
+
+This package contains library source intended for
+building other packages which use %{project}/%{repo}.
+
+%prep
+%setup -qn %{repo}-%{commit}
+rm -rf Godeps examples
+find . -name *.go \
+ -print |\
+ xargs sed -i 's/github.com\/appc\/spec\/Godeps\/_workspace\/src\///g'
+
+%build
+
+%install
+install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
+for dir in */ ; do
+cp -pav $dir %{buildroot}/%{gopath}/src/%{import_path}/
+done
+
+%check
+for dir in $(find . -mindepth 1 -maxdepth 3 -type d); do
+if [ $(find $dir -maxdepth 1 -name *_test.go | wc -l) != '0' ]; then
+GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/$dir
+fi
+done
+
+%files devel
+%doc CONTRIBUTING.md LICENSE README.md SPEC.md
+%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
+%{gopath}/src/%{import_path}
+
+%changelog
+* Sat Jan 31 2015 Lokesh Mandvekar l...@fedoraproject.org - 
0.2.0-1.git202fd7b
+- Resolves: rhbz#1174030 - first package upload
+- update to master commit#202fd7b
+
+* Mon Dec 15 2014 Lokesh Mandvekar l...@fedoraproject.org - 0.1.1-2
+- update metaprovides
+- update docs packaged
+
+* Tue Dec 09 2014 Lokesh Mandvekar l...@fedoraproject.org - 0.1.1-1
+- First package for Fedora
diff --git a/sources b/sources
index e69de29..a1b076f 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+baf8838313bc203fefe509c0a89ded3a  spec-202fd7b.tar.gz
___
golang mailing list
golang@lists.fedoraproject.org
https://lists.fedoraproject.org/mailman/listinfo/golang


[golang-github-appc-spec/epel7] Resolves: rhbz#1174030 - initial package upload

2015-02-01 Thread Lokesh Mandvekar
Summary of changes:

  71d0a92... Resolves: rhbz#1174030 - initial package upload (*)

(*) 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-appc-spec/f20] Resolves: rhbz#1174030 - initial package upload

2015-02-01 Thread Lokesh Mandvekar
Summary of changes:

  71d0a92... Resolves: rhbz#1174030 - initial package upload (*)

(*) 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