Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
July
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
2021
December
November
October
September
August
July
June
May
April
March
February
January
2020
December
November
October
September
August
July
June
May
April
March
February
January
2019
December
November
October
September
August
July
June
May
April
March
February
January
2018
December
November
October
September
August
July
June
May
April
March
February
January
2017
December
November
October
September
August
July
June
May
April
March
February
January
2016
December
November
October
September
August
July
June
May
April
March
February
January
2015
December
November
October
September
August
July
June
May
April
March
February
January
2014
December
November
October
September
August
July
June
May
April
March
February
January
2013
December
November
October
List overview
Download
golang
October 2014
----- 2025 -----
July 2025
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
----- 2021 -----
December 2021
November 2021
October 2021
September 2021
August 2021
July 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
----- 2020 -----
December 2020
November 2020
October 2020
September 2020
August 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
----- 2019 -----
December 2019
November 2019
October 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
----- 2018 -----
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
----- 2017 -----
December 2017
November 2017
October 2017
September 2017
August 2017
July 2017
June 2017
May 2017
April 2017
March 2017
February 2017
January 2017
----- 2016 -----
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
April 2016
March 2016
February 2016
January 2016
----- 2015 -----
December 2015
November 2015
October 2015
September 2015
August 2015
July 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
----- 2014 -----
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
----- 2013 -----
December 2013
November 2013
October 2013
golang@lists.fedoraproject.org
10 participants
650 discussions
Start a n
N
ew thread
[golang-github-kr-pretty/el6] Initial commit
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 6825fbe0a6cbe0a1eae96dc16b7af6dcd35715a3 Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Wed Sep 24 11:57:24 2014 +0200 Initial commit .gitignore | 1 + golang-github-kr-pretty.spec | 55 ++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 57 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..d99450a 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/pretty-5feda8d.tar.gz diff --git a/golang-github-kr-pretty.spec b/golang-github-kr-pretty.spec new file mode 100644 index 0000000..94cb64e --- /dev/null +++ b/golang-github-kr-pretty.spec @@ -0,0 +1,55 @@ +%global debug_package %{nil} +%global import_path
github.com/kr/pretty
+%global commit 5feda8d406801dae804b9773a257cc5592ef88ab +%global shortcommit %(c=%{commit}; echo ${c:0:7}) + +Name: golang-github-kr-pretty +Version: 0 +Release: 0.2.git%{shortcommit}%{?dist} +Summary: Provides pretty-printing for go values +License: MIT +URL:
http://godoc.org/%{import_path}
+Source0: https://%{import_path}/archive/%{commit}/pretty-%{shortcommit}.tar.gz +BuildArch: noarch + +%description +Package pretty provides pretty-printing for go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires:
golang(github.com/kr/text)
+Requires: golang >= 1.2.1-3 +Requires:
golang(github.com/kr/text)
+Summary: Provides pretty-printing for go values +Provides: golang(%{import_path}) = %{version}-%{release} + +%description devel +Package pretty provides pretty-printing for go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal. + +%prep +%setup -q -n pretty-%{commit} + +%build + +%install +install -d %{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 License Readme +%dir %attr(755,root,root) %{gopath}/src/github.com/kr +%dir %attr(755,root,root) %{gopath}/src/%{import_path} +%{gopath}/src/%{import_path}/*.go + +%changelog +* Mon Sep 15 2014 Lokesh Mandvekar <lsm5(a)fedoraproject.org> - 0-0.2.git +- don't redefine gopath +- preserve timestamps + +* Wed Aug 06 2014 Adam Miller <maxamillion(a)fedoraproject.org> - 0.1.git5feda8d +- First package for Fedora. diff --git a/sources b/sources index e69de29..970ee00 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +c74b0a781f880619d7998bf57f12d52a pretty-5feda8d.tar.gz
1
0
0
0
File assert-e17e998.tar.gz uploaded to lookaside cache by jchaloup
by Jan Chaloupka
09 Oct '14
09 Oct '14
A file has been added to the lookaside cache for golang-github-bmizerany-assert: 2d2f547eb79ccf92ef62c0e712740c71 assert-e17e998.tar.gz
1
0
0
0
[golang-github-influxdb-go-cache/f20] Initial commit - resolves: #1148692
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit a26151600fe4ac0adb65204db3341ebadccb3ffd Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 10:56:08 2014 +0200 Initial commit - resolves: #1148692 .gitignore | 1 + golang-github-influxdb-go-cache.spec | 61 ++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 63 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..a9513e5 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/go-cache-7d1d6d6.tar.gz diff --git a/golang-github-influxdb-go-cache.spec b/golang-github-influxdb-go-cache.spec new file mode 100644 index 0000000..04ac0fc --- /dev/null +++ b/golang-github-influxdb-go-cache.spec @@ -0,0 +1,61 @@ +%global provider github +%global provider_tld com +%global project influxdb +%global repo go-cache +%global commit 7d1d6d6ae935664bc8b80ab2b1fc7ab77a7e46da + +%global import_path %{provider}.%{provider_tld}/%{project}/%{repo} +%global shortcommit %(c=%{commit}; echo ${c:0:7}) +%global debug_package %{nil} + +Name: golang-%{provider}-%{project}-%{repo} +Version: 0 +Release: 0.1.git%{shortcommit}%{?dist} +Summary: An in-memory key:value store/cache library for Go +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +An in-memory key:value store/cache (similar to Memcached) library for Go, +suitable for single-machine applications + + +%package devel +BuildRequires: golang >= 1.2.1-3 +Requires: golang >= 1.2.1-3 +Summary: An in-memory key:value store/cache library for Go +Provides: golang(%{import_path}) = %{version}-%{release} + +%description devel +An in-memory key:value store/cache (similar to Memcached) library for Go, +suitable for single-machine applications + +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 LICENSE README CONTRIBUTORS +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.git7d1d6d6 +- First package for Fedora + + + diff --git a/sources b/sources index e69de29..bb41156 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +60d06866df4ed61334cefa71e9e77aaa go-cache-7d1d6d6.tar.gz
1
0
0
0
[golang-github-influxdb-go-cache/f21] Initial commit - resolves: #1148692
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 820b798e57e89bf5048a6996a98b3a77fa4b5a9d Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 10:56:08 2014 +0200 Initial commit - resolves: #1148692 .gitignore | 1 + golang-github-influxdb-go-cache.spec | 61 ++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 63 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..a9513e5 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/go-cache-7d1d6d6.tar.gz diff --git a/golang-github-influxdb-go-cache.spec b/golang-github-influxdb-go-cache.spec new file mode 100644 index 0000000..04ac0fc --- /dev/null +++ b/golang-github-influxdb-go-cache.spec @@ -0,0 +1,61 @@ +%global provider github +%global provider_tld com +%global project influxdb +%global repo go-cache +%global commit 7d1d6d6ae935664bc8b80ab2b1fc7ab77a7e46da + +%global import_path %{provider}.%{provider_tld}/%{project}/%{repo} +%global shortcommit %(c=%{commit}; echo ${c:0:7}) +%global debug_package %{nil} + +Name: golang-%{provider}-%{project}-%{repo} +Version: 0 +Release: 0.1.git%{shortcommit}%{?dist} +Summary: An in-memory key:value store/cache library for Go +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +An in-memory key:value store/cache (similar to Memcached) library for Go, +suitable for single-machine applications + + +%package devel +BuildRequires: golang >= 1.2.1-3 +Requires: golang >= 1.2.1-3 +Summary: An in-memory key:value store/cache library for Go +Provides: golang(%{import_path}) = %{version}-%{release} + +%description devel +An in-memory key:value store/cache (similar to Memcached) library for Go, +suitable for single-machine applications + +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 LICENSE README CONTRIBUTORS +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.git7d1d6d6 +- First package for Fedora + + + diff --git a/sources b/sources index e69de29..bb41156 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +60d06866df4ed61334cefa71e9e77aaa go-cache-7d1d6d6.tar.gz
1
0
0
0
[golang-github-influxdb-go-cache/el6] Initial commit - resolves: #1148692
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit eb643ae2560dfadccc054220ee4be084d6474f34 Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 10:56:08 2014 +0200 Initial commit - resolves: #1148692 .gitignore | 1 + golang-github-influxdb-go-cache.spec | 61 ++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 63 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..a9513e5 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/go-cache-7d1d6d6.tar.gz diff --git a/golang-github-influxdb-go-cache.spec b/golang-github-influxdb-go-cache.spec new file mode 100644 index 0000000..04ac0fc --- /dev/null +++ b/golang-github-influxdb-go-cache.spec @@ -0,0 +1,61 @@ +%global provider github +%global provider_tld com +%global project influxdb +%global repo go-cache +%global commit 7d1d6d6ae935664bc8b80ab2b1fc7ab77a7e46da + +%global import_path %{provider}.%{provider_tld}/%{project}/%{repo} +%global shortcommit %(c=%{commit}; echo ${c:0:7}) +%global debug_package %{nil} + +Name: golang-%{provider}-%{project}-%{repo} +Version: 0 +Release: 0.1.git%{shortcommit}%{?dist} +Summary: An in-memory key:value store/cache library for Go +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +An in-memory key:value store/cache (similar to Memcached) library for Go, +suitable for single-machine applications + + +%package devel +BuildRequires: golang >= 1.2.1-3 +Requires: golang >= 1.2.1-3 +Summary: An in-memory key:value store/cache library for Go +Provides: golang(%{import_path}) = %{version}-%{release} + +%description devel +An in-memory key:value store/cache (similar to Memcached) library for Go, +suitable for single-machine applications + +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 LICENSE README CONTRIBUTORS +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.git7d1d6d6 +- First package for Fedora + + + diff --git a/sources b/sources index e69de29..bb41156 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +60d06866df4ed61334cefa71e9e77aaa go-cache-7d1d6d6.tar.gz
1
0
0
0
[golang-github-influxdb-go-cache] Initial commit - resolves: #1148692
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 98e11d6dab3df2fc8f1b35a1c7827ad86f5a42d5 Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 10:56:08 2014 +0200 Initial commit - resolves: #1148692 .gitignore | 1 + golang-github-influxdb-go-cache.spec | 61 ++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 63 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..a9513e5 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/go-cache-7d1d6d6.tar.gz diff --git a/golang-github-influxdb-go-cache.spec b/golang-github-influxdb-go-cache.spec new file mode 100644 index 0000000..04ac0fc --- /dev/null +++ b/golang-github-influxdb-go-cache.spec @@ -0,0 +1,61 @@ +%global provider github +%global provider_tld com +%global project influxdb +%global repo go-cache +%global commit 7d1d6d6ae935664bc8b80ab2b1fc7ab77a7e46da + +%global import_path %{provider}.%{provider_tld}/%{project}/%{repo} +%global shortcommit %(c=%{commit}; echo ${c:0:7}) +%global debug_package %{nil} + +Name: golang-%{provider}-%{project}-%{repo} +Version: 0 +Release: 0.1.git%{shortcommit}%{?dist} +Summary: An in-memory key:value store/cache library for Go +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +An in-memory key:value store/cache (similar to Memcached) library for Go, +suitable for single-machine applications + + +%package devel +BuildRequires: golang >= 1.2.1-3 +Requires: golang >= 1.2.1-3 +Summary: An in-memory key:value store/cache library for Go +Provides: golang(%{import_path}) = %{version}-%{release} + +%description devel +An in-memory key:value store/cache (similar to Memcached) library for Go, +suitable for single-machine applications + +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 LICENSE README CONTRIBUTORS +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.git7d1d6d6 +- First package for Fedora + + + diff --git a/sources b/sources index e69de29..bb41156 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +60d06866df4ed61334cefa71e9e77aaa go-cache-7d1d6d6.tar.gz
1
0
0
0
File go-cache-7d1d6d6.tar.gz uploaded to lookaside cache by jchaloup
by Jan Chaloupka
09 Oct '14
09 Oct '14
A file has been added to the lookaside cache for golang-github-influxdb-go-cache: 60d06866df4ed61334cefa71e9e77aaa go-cache-7d1d6d6.tar.gz
1
0
0
0
[golang-googlecode-go-exp/el6] Initial commit - resolves: #1148481
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 892b73d0159e0d9d9803c96bc48baf4645d5e16b Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 10:35:10 2014 +0200 Initial commit - resolves: #1148481 .gitignore | 1 + golang-googlecode-go-exp.spec | 83 +++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 85 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..9684153 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/bd8df7009305d6ada223ea3c95b94c0f38bfa119.tar.gz diff --git a/golang-googlecode-go-exp.spec b/golang-googlecode-go-exp.spec new file mode 100644 index 0000000..5b69de6 --- /dev/null +++ b/golang-googlecode-go-exp.spec @@ -0,0 +1,83 @@ +%global provider_prefix code +%global provider google +%global provider_tld com +%global project p +%global repo go.exp +%global commit bd8df7009305d6ada223ea3c95b94c0f38bfa119 + +%global import_path %{provider_prefix}.%{provider}.%{provider_tld}/%{project}/%{repo} +%global shortcommit %(c=%{commit}; echo ${c:0:12}) +%global debug_package %{nil} + +Name: golang-googlecode-go-exp +Version: 0 +Release: 0.1.hg%{shortcommit}%{?dist} +Summary: Experimental tools and packages for Go +License: BSD +URL: http://%{import_path} +Source0:
https://exp.go.googlecode.com/archive/%{commit}.tar.gz
+BuildArch: noarch + +%description +%{summary}. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires:
golang(code.google.com/p/go.text/language)
+BuildRequires:
golang(code.google.com/p/go.text/collate/colltab)
+Requires: golang >= 1.2.1-3 +BuildRequires:
golang(code.google.com/p/go.text/language)
+BuildRequires:
golang(code.google.com/p/go.text/collate/colltab)
+Summary: %{summary} +Provides: golang(%{import_path}) = %{version}-%{release} +Provides: golang(%{import_path}/ebnf) = %{version}-%{release} +Provides: golang(%{import_path}/ebnflint) = %{version}-%{release} +Provides: golang(%{import_path}/fsnotify) = %{version}-%{release} +Provides: golang(%{import_path}/inotify) = %{version}-%{release} +Provides: golang(%{import_path}/locale) = %{version}-%{release} +Provides: golang(%{import_path}/locale/search) = %{version}-%{release} +Provides: golang(%{import_path}/old) = %{version}-%{release} +Provides: golang(%{import_path}/old/netchan) = %{version}-%{release} +Provides: golang(%{import_path}/utf8string) = %{version}-%{release} + +# winfsnotify is for Windows only + +%description devel +%{summary}. + +This package contains library source intended for +building other packages which use %{project}/%{repo}. + +%prep +%setup -q -n %{repo}-%{shortcommit} + +%build + +%install +install -d -p %{buildroot}/%{gopath}/src/%{import_path}/ +for d in ebnf ebnflint fsnotify inotify locale old utf8string; do + cp -pav $d %{buildroot}/%{gopath}/src/%{import_path}/ +done + +%check +GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/{ebnf,ebnflint,fsnotify,inotify,locale/search,old/netchan,utf8string} + +%files devel +%doc LICENSE PATENTS README +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/ebnf +%dir %{gopath}/src/%{import_path}/ebnflint +%dir %{gopath}/src/%{import_path}/fsnotify +%dir %{gopath}/src/%{import_path}/inotify +%dir %{gopath}/src/%{import_path}/locale +%dir %{gopath}/src/%{import_path}/locale/search +%dir %{gopath}/src/%{import_path}/old +%dir %{gopath}/src/%{import_path}/old/netchan +%dir %{gopath}/src/%{import_path}/utf8string +%{gopath}/src/%{import_path}/*/*.go +%{gopath}/src/%{import_path}/*/*/*.go + +%changelog +* Mon Sep 15 2014 Eric Paris <eparis(a)redhat.com - 0-0.1.hgbd8df7009305 +- Bump to upstream bd8df7009305d6ada223ea3c95b94c0f38bfa119 + diff --git a/sources b/sources index e69de29..4ecb54c 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +670ce5a4010290aa198cc1b19bbfbfeb bd8df7009305d6ada223ea3c95b94c0f38bfa119.tar.gz
1
0
0
0
[golang-googlecode-go-exp/f20] Initial commit - resolves: #1148481
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 8532318673db238bb25594c9e4bc5da913d437ca Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 10:35:10 2014 +0200 Initial commit - resolves: #1148481 .gitignore | 1 + golang-googlecode-go-exp.spec | 83 +++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 85 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..9684153 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/bd8df7009305d6ada223ea3c95b94c0f38bfa119.tar.gz diff --git a/golang-googlecode-go-exp.spec b/golang-googlecode-go-exp.spec new file mode 100644 index 0000000..5b69de6 --- /dev/null +++ b/golang-googlecode-go-exp.spec @@ -0,0 +1,83 @@ +%global provider_prefix code +%global provider google +%global provider_tld com +%global project p +%global repo go.exp +%global commit bd8df7009305d6ada223ea3c95b94c0f38bfa119 + +%global import_path %{provider_prefix}.%{provider}.%{provider_tld}/%{project}/%{repo} +%global shortcommit %(c=%{commit}; echo ${c:0:12}) +%global debug_package %{nil} + +Name: golang-googlecode-go-exp +Version: 0 +Release: 0.1.hg%{shortcommit}%{?dist} +Summary: Experimental tools and packages for Go +License: BSD +URL: http://%{import_path} +Source0:
https://exp.go.googlecode.com/archive/%{commit}.tar.gz
+BuildArch: noarch + +%description +%{summary}. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires:
golang(code.google.com/p/go.text/language)
+BuildRequires:
golang(code.google.com/p/go.text/collate/colltab)
+Requires: golang >= 1.2.1-3 +BuildRequires:
golang(code.google.com/p/go.text/language)
+BuildRequires:
golang(code.google.com/p/go.text/collate/colltab)
+Summary: %{summary} +Provides: golang(%{import_path}) = %{version}-%{release} +Provides: golang(%{import_path}/ebnf) = %{version}-%{release} +Provides: golang(%{import_path}/ebnflint) = %{version}-%{release} +Provides: golang(%{import_path}/fsnotify) = %{version}-%{release} +Provides: golang(%{import_path}/inotify) = %{version}-%{release} +Provides: golang(%{import_path}/locale) = %{version}-%{release} +Provides: golang(%{import_path}/locale/search) = %{version}-%{release} +Provides: golang(%{import_path}/old) = %{version}-%{release} +Provides: golang(%{import_path}/old/netchan) = %{version}-%{release} +Provides: golang(%{import_path}/utf8string) = %{version}-%{release} + +# winfsnotify is for Windows only + +%description devel +%{summary}. + +This package contains library source intended for +building other packages which use %{project}/%{repo}. + +%prep +%setup -q -n %{repo}-%{shortcommit} + +%build + +%install +install -d -p %{buildroot}/%{gopath}/src/%{import_path}/ +for d in ebnf ebnflint fsnotify inotify locale old utf8string; do + cp -pav $d %{buildroot}/%{gopath}/src/%{import_path}/ +done + +%check +GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/{ebnf,ebnflint,fsnotify,inotify,locale/search,old/netchan,utf8string} + +%files devel +%doc LICENSE PATENTS README +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/ebnf +%dir %{gopath}/src/%{import_path}/ebnflint +%dir %{gopath}/src/%{import_path}/fsnotify +%dir %{gopath}/src/%{import_path}/inotify +%dir %{gopath}/src/%{import_path}/locale +%dir %{gopath}/src/%{import_path}/locale/search +%dir %{gopath}/src/%{import_path}/old +%dir %{gopath}/src/%{import_path}/old/netchan +%dir %{gopath}/src/%{import_path}/utf8string +%{gopath}/src/%{import_path}/*/*.go +%{gopath}/src/%{import_path}/*/*/*.go + +%changelog +* Mon Sep 15 2014 Eric Paris <eparis(a)redhat.com - 0-0.1.hgbd8df7009305 +- Bump to upstream bd8df7009305d6ada223ea3c95b94c0f38bfa119 + diff --git a/sources b/sources index e69de29..4ecb54c 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +670ce5a4010290aa198cc1b19bbfbfeb bd8df7009305d6ada223ea3c95b94c0f38bfa119.tar.gz
1
0
0
0
[golang-googlecode-go-exp/f21] Initial commit - resolves: #1148481
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit ba5f0005195cb657eb66f1fb70e9b54846b2de68 Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 10:35:10 2014 +0200 Initial commit - resolves: #1148481 .gitignore | 1 + golang-googlecode-go-exp.spec | 83 +++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 85 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..9684153 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/bd8df7009305d6ada223ea3c95b94c0f38bfa119.tar.gz diff --git a/golang-googlecode-go-exp.spec b/golang-googlecode-go-exp.spec new file mode 100644 index 0000000..5b69de6 --- /dev/null +++ b/golang-googlecode-go-exp.spec @@ -0,0 +1,83 @@ +%global provider_prefix code +%global provider google +%global provider_tld com +%global project p +%global repo go.exp +%global commit bd8df7009305d6ada223ea3c95b94c0f38bfa119 + +%global import_path %{provider_prefix}.%{provider}.%{provider_tld}/%{project}/%{repo} +%global shortcommit %(c=%{commit}; echo ${c:0:12}) +%global debug_package %{nil} + +Name: golang-googlecode-go-exp +Version: 0 +Release: 0.1.hg%{shortcommit}%{?dist} +Summary: Experimental tools and packages for Go +License: BSD +URL: http://%{import_path} +Source0:
https://exp.go.googlecode.com/archive/%{commit}.tar.gz
+BuildArch: noarch + +%description +%{summary}. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires:
golang(code.google.com/p/go.text/language)
+BuildRequires:
golang(code.google.com/p/go.text/collate/colltab)
+Requires: golang >= 1.2.1-3 +BuildRequires:
golang(code.google.com/p/go.text/language)
+BuildRequires:
golang(code.google.com/p/go.text/collate/colltab)
+Summary: %{summary} +Provides: golang(%{import_path}) = %{version}-%{release} +Provides: golang(%{import_path}/ebnf) = %{version}-%{release} +Provides: golang(%{import_path}/ebnflint) = %{version}-%{release} +Provides: golang(%{import_path}/fsnotify) = %{version}-%{release} +Provides: golang(%{import_path}/inotify) = %{version}-%{release} +Provides: golang(%{import_path}/locale) = %{version}-%{release} +Provides: golang(%{import_path}/locale/search) = %{version}-%{release} +Provides: golang(%{import_path}/old) = %{version}-%{release} +Provides: golang(%{import_path}/old/netchan) = %{version}-%{release} +Provides: golang(%{import_path}/utf8string) = %{version}-%{release} + +# winfsnotify is for Windows only + +%description devel +%{summary}. + +This package contains library source intended for +building other packages which use %{project}/%{repo}. + +%prep +%setup -q -n %{repo}-%{shortcommit} + +%build + +%install +install -d -p %{buildroot}/%{gopath}/src/%{import_path}/ +for d in ebnf ebnflint fsnotify inotify locale old utf8string; do + cp -pav $d %{buildroot}/%{gopath}/src/%{import_path}/ +done + +%check +GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/{ebnf,ebnflint,fsnotify,inotify,locale/search,old/netchan,utf8string} + +%files devel +%doc LICENSE PATENTS README +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/ebnf +%dir %{gopath}/src/%{import_path}/ebnflint +%dir %{gopath}/src/%{import_path}/fsnotify +%dir %{gopath}/src/%{import_path}/inotify +%dir %{gopath}/src/%{import_path}/locale +%dir %{gopath}/src/%{import_path}/locale/search +%dir %{gopath}/src/%{import_path}/old +%dir %{gopath}/src/%{import_path}/old/netchan +%dir %{gopath}/src/%{import_path}/utf8string +%{gopath}/src/%{import_path}/*/*.go +%{gopath}/src/%{import_path}/*/*/*.go + +%changelog +* Mon Sep 15 2014 Eric Paris <eparis(a)redhat.com - 0-0.1.hgbd8df7009305 +- Bump to upstream bd8df7009305d6ada223ea3c95b94c0f38bfa119 + diff --git a/sources b/sources index e69de29..4ecb54c 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +670ce5a4010290aa198cc1b19bbfbfeb bd8df7009305d6ada223ea3c95b94c0f38bfa119.tar.gz
1
0
0
0
← Newer
1
...
56
57
58
59
60
61
62
...
65
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Results per page:
10
25
50
100
200