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-jmhodges-levigo/f21] Initial commit - resolves: #1148705
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 5670aeae96fd53b76a56fbf4d0cd1123b750c25c Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 14:24:26 2014 +0200 Initial commit - resolves: #1148705 .gitignore | 1 + golang-github-jmhodges-levigo.spec | 62 ++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 64 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..6dfabe0 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/levigo-253793d.tar.gz diff --git a/golang-github-jmhodges-levigo.spec b/golang-github-jmhodges-levigo.spec new file mode 100644 index 0000000..8e0f2c5 --- /dev/null +++ b/golang-github-jmhodges-levigo.spec @@ -0,0 +1,62 @@ +%global provider github +%global provider_tld com +%global project jmhodges +%global repo levigo +%global commit 253793d7b92ea4d3a5e2e4368691c52e70f2c6fc + +%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: Go wrapper for LevelDB +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +%{summary}. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires: leveldb-devel >= 1.7 +Requires: golang >= 1.2.1-3 +Requires: leveldb-devel >= 1.7 +Summary: Go wrapper for LevelDB +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}/ +cp -pav examples %{buildroot}/%{gopath}/src/%{import_path}/ + +%check +# check fails (cannot create db in koji), on local machine test passes + +%files devel +%doc LICENSE README.md +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/examples +%{gopath}/src/%{import_path}/examples/*.go +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.git253793d +- First package for Fedora + + diff --git a/sources b/sources index e69de29..a490d55 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +aed406ab5a8c5bbbb9b2835cd06ab8e0 levigo-253793d.tar.gz
1
0
0
0
[golang-github-jmhodges-levigo] Initial commit - resolves: #1148705
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 1c894b1c550ce24ae13eae042ac9546b6482336b Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 14:24:26 2014 +0200 Initial commit - resolves: #1148705 .gitignore | 1 + golang-github-jmhodges-levigo.spec | 62 ++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 64 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..6dfabe0 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/levigo-253793d.tar.gz diff --git a/golang-github-jmhodges-levigo.spec b/golang-github-jmhodges-levigo.spec new file mode 100644 index 0000000..8e0f2c5 --- /dev/null +++ b/golang-github-jmhodges-levigo.spec @@ -0,0 +1,62 @@ +%global provider github +%global provider_tld com +%global project jmhodges +%global repo levigo +%global commit 253793d7b92ea4d3a5e2e4368691c52e70f2c6fc + +%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: Go wrapper for LevelDB +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +%{summary}. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires: leveldb-devel >= 1.7 +Requires: golang >= 1.2.1-3 +Requires: leveldb-devel >= 1.7 +Summary: Go wrapper for LevelDB +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}/ +cp -pav examples %{buildroot}/%{gopath}/src/%{import_path}/ + +%check +# check fails (cannot create db in koji), on local machine test passes + +%files devel +%doc LICENSE README.md +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/examples +%{gopath}/src/%{import_path}/examples/*.go +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.git253793d +- First package for Fedora + + diff --git a/sources b/sources index e69de29..a490d55 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +aed406ab5a8c5bbbb9b2835cd06ab8e0 levigo-253793d.tar.gz
1
0
0
0
File c3294304d93f48a37d3bed1d382882a9c2989f99.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-googlecode-log4go: f7643da7d8857b5ab7f43cbbe0fb9804 c3294304d93f48a37d3bed1d382882a9c2989f99.tar.gz
1
0
0
0
File levigo-253793d.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-jmhodges-levigo: aed406ab5a8c5bbbb9b2835cd06ab8e0 levigo-253793d.tar.gz
1
0
0
0
File pat-b8a3500.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-pat: dbc143cc86ce9d2e52d10622f1a10263 pat-b8a3500.tar.gz
1
0
0
0
[golang-github-bmizerany-assert/f20] Initial commit - resolves: #1148700
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 578c79af94ecec64a197287b158197fb99287d98 Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 11:05:45 2014 +0200 Initial commit - resolves: #1148700 .gitignore | 1 + golang-github-bmizerany-assert.spec | 63 +++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 65 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..062e69b 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/assert-e17e998.tar.gz diff --git a/golang-github-bmizerany-assert.spec b/golang-github-bmizerany-assert.spec new file mode 100644 index 0000000..0d4b390 --- /dev/null +++ b/golang-github-bmizerany-assert.spec @@ -0,0 +1,63 @@ +%global provider github +%global provider_tld com +%global project bmizerany +%global repo assert +%global commit e17e99893cb6509f428e1728281c2ad60a6b31e3 + +%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: Assertions for Go tests +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +%{summary}. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires:
golang(github.com/kr/pretty)
+Requires: golang >= 1.2.1-3 +Requires:
golang(github.com/kr/pretty)
+Summary: Assertions for Go tests +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}/ +cp -pav example %{buildroot}/%{gopath}/src/%{import_path}/ + +%check +GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path} + +%files devel +%doc README.md +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/example +%{gopath}/src/%{import_path}/example/*.go +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.gite17e998 +- First package for Fedora + + + diff --git a/sources b/sources index e69de29..bab916d 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +2d2f547eb79ccf92ef62c0e712740c71 assert-e17e998.tar.gz
1
0
0
0
[golang-github-bmizerany-assert/el6] Initial commit - resolves: #1148700
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit ca6ed6a34a4b5b8abfe13d4d42c2323507411cdf Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 11:05:45 2014 +0200 Initial commit - resolves: #1148700 .gitignore | 1 + golang-github-bmizerany-assert.spec | 63 +++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 65 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..062e69b 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/assert-e17e998.tar.gz diff --git a/golang-github-bmizerany-assert.spec b/golang-github-bmizerany-assert.spec new file mode 100644 index 0000000..0d4b390 --- /dev/null +++ b/golang-github-bmizerany-assert.spec @@ -0,0 +1,63 @@ +%global provider github +%global provider_tld com +%global project bmizerany +%global repo assert +%global commit e17e99893cb6509f428e1728281c2ad60a6b31e3 + +%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: Assertions for Go tests +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +%{summary}. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires:
golang(github.com/kr/pretty)
+Requires: golang >= 1.2.1-3 +Requires:
golang(github.com/kr/pretty)
+Summary: Assertions for Go tests +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}/ +cp -pav example %{buildroot}/%{gopath}/src/%{import_path}/ + +%check +GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path} + +%files devel +%doc README.md +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/example +%{gopath}/src/%{import_path}/example/*.go +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.gite17e998 +- First package for Fedora + + + diff --git a/sources b/sources index e69de29..bab916d 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +2d2f547eb79ccf92ef62c0e712740c71 assert-e17e998.tar.gz
1
0
0
0
[golang-github-bmizerany-assert/f21] Initial commit - resolves: #1148700
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit bb80bb6ee7f1011aece693aad2253e70404c9ac3 Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 11:05:45 2014 +0200 Initial commit - resolves: #1148700 .gitignore | 1 + golang-github-bmizerany-assert.spec | 63 +++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 65 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..062e69b 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/assert-e17e998.tar.gz diff --git a/golang-github-bmizerany-assert.spec b/golang-github-bmizerany-assert.spec new file mode 100644 index 0000000..0d4b390 --- /dev/null +++ b/golang-github-bmizerany-assert.spec @@ -0,0 +1,63 @@ +%global provider github +%global provider_tld com +%global project bmizerany +%global repo assert +%global commit e17e99893cb6509f428e1728281c2ad60a6b31e3 + +%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: Assertions for Go tests +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +%{summary}. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires:
golang(github.com/kr/pretty)
+Requires: golang >= 1.2.1-3 +Requires:
golang(github.com/kr/pretty)
+Summary: Assertions for Go tests +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}/ +cp -pav example %{buildroot}/%{gopath}/src/%{import_path}/ + +%check +GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path} + +%files devel +%doc README.md +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/example +%{gopath}/src/%{import_path}/example/*.go +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.gite17e998 +- First package for Fedora + + + diff --git a/sources b/sources index e69de29..bab916d 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +2d2f547eb79ccf92ef62c0e712740c71 assert-e17e998.tar.gz
1
0
0
0
[golang-github-bmizerany-assert] Initial commit - resolves: #1148700
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 2cb729b826c14b50a578517a98859d02fc641e3a Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Thu Oct 9 11:05:45 2014 +0200 Initial commit - resolves: #1148700 .gitignore | 1 + golang-github-bmizerany-assert.spec | 63 +++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 65 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..062e69b 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/assert-e17e998.tar.gz diff --git a/golang-github-bmizerany-assert.spec b/golang-github-bmizerany-assert.spec new file mode 100644 index 0000000..0d4b390 --- /dev/null +++ b/golang-github-bmizerany-assert.spec @@ -0,0 +1,63 @@ +%global provider github +%global provider_tld com +%global project bmizerany +%global repo assert +%global commit e17e99893cb6509f428e1728281c2ad60a6b31e3 + +%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: Assertions for Go tests +License: MIT +URL: http://%{import_path} +Source0:
https://github.com/%{project}/%{repo}/archive/%{commit}/%{repo}-%{shortcomm…
+BuildArch: noarch + +%description +%{summary}. + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires:
golang(github.com/kr/pretty)
+Requires: golang >= 1.2.1-3 +Requires:
golang(github.com/kr/pretty)
+Summary: Assertions for Go tests +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}/ +cp -pav example %{buildroot}/%{gopath}/src/%{import_path}/ + +%check +GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path} + +%files devel +%doc README.md +%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project} +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/example +%{gopath}/src/%{import_path}/example/*.go +%{gopath}/src/%{import_path}/*.go + +%changelog +* Thu Sep 25 2014 Jan Chaloupka <jchaloup(a)redhat.com> - 0-0.1.gite17e998 +- First package for Fedora + + + diff --git a/sources b/sources index e69de29..bab916d 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +2d2f547eb79ccf92ef62c0e712740c71 assert-e17e998.tar.gz
1
0
0
0
[golang-github-kr-text/el6] Initial commit
by Jan Chaloupka
09 Oct '14
09 Oct '14
commit 0c4e4cfc838135e92fed1adfd68fc313acae1ed6 Author: Jan Chaloupka <jchaloup(a)redhat.com> Date: Wed Sep 24 10:55:56 2014 +0200 Initial commit .gitignore | 1 + golang-github-kr-text.spec | 81 ++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 83 insertions(+), 0 deletions(-) --- diff --git a/.gitignore b/.gitignore index e69de29..4bf09de 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/text-6807e77.tar.gz diff --git a/golang-github-kr-text.spec b/golang-github-kr-text.spec new file mode 100644 index 0000000..d8a0895 --- /dev/null +++ b/golang-github-kr-text.spec @@ -0,0 +1,81 @@ +%global debug_package %{nil} +%global import_path
github.com/kr/text
+%global commit 6807e777504f54ad073ecef66747de158294b639 +%global shortcommit %(c=%{commit}; echo ${c:0:7}) + +Name: golang-github-kr-text +Version: 0 +Release: 0.3.git%{shortcommit}%{?dist} +Summary: Go package for manipulating paragraphs of text +License: MIT +URL:
http://godoc.org/%{import_path}
+Source0: https://%{import_path}/archive/%{commit}/text-%{shortcommit}.tar.gz +BuildArch: noarch + +%description +%{summary} + +%package devel +BuildRequires: golang >= 1.2.1-3 +BuildRequires:
golang(github.com/kr/pty)
+Requires: golang >= 1.2.1-3 +Summary: Go package for manipulating paragraphs of text +Provides: golang(%{import_path}) = %{version}-%{release} +Provides: golang(%{import_path}/colwriter) = %{version}-%{release} +Provides: golang(%{import_path}/mc) = %{version}-%{release} + +%description devel +%{summary} + +This package contains the library source intended for building other packages +which use kr/text. + +%prep +%setup -q -n text-%{commit} + +%build + +%install +chmod 664 wrap.go +install -d %{buildroot}/%{gopath}/src/%{import_path} +cp -pav *.go %{buildroot}/%{gopath}/src/%{import_path} + +for d in colwriter mc +do + mv $d/Readme Readme-$d + cp -pav $d %{buildroot}/%{gopath}/src/%{import_path}/ +done + +%check +GOPATH=%{gopath}:%{buildroot}%{gopath} go test %{import_path} +GOPATH=%{gopath}:%{buildroot}%{gopath} go test %{import_path}/colwriter +GOPATH=%{gopath}:%{buildroot}%{gopath} go test %{import_path}/mc + +%files devel +%doc License Readme Readme-colwriter Readme-mc +%dir %{gopath}/src/github.com/kr +%dir %{gopath}/src/%{import_path} +%dir %{gopath}/src/%{import_path}/colwriter +%dir %{gopath}/src/%{import_path}/mc +%{gopath}/src/%{import_path}/*.go +%{gopath}/src/%{import_path}/colwriter/*.go +%{gopath}/src/%{import_path}/mc/*.go + +%changelog +* Fri Sep 19 2014 Jan Chaloupka <jchaloup(a)fedoraproject.org> - 0-0.3.git6807e77 +- add golang version with necessary golang macros +- quiet setup + +* Thu Sep 11 2014 Lokesh Mandvekar <lsm5(a)fedoraproject.org> - 0-0.2.git6807e77 +- gopath defined in golang package +- preserve timestamps while copying source files +- attrs not needed +- devel description update +- include check section +- get rid of files listed twice warning for doc files +- noarch +- needs kr/pty as BR +- chmod wrap.go to 644 (needs to be upstreamed) + +* Wed Aug 06 2014 Adam Miller <maxamillion(a)fedoraproject.org> - 0.1.git6807e77 +- First package for Fedora. diff --git a/sources b/sources index e69de29..72cc0c5 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +635c99182e7f0ea2fe6e682da181056f text-6807e77.tar.gz
1
0
0
0
← Newer
1
...
55
56
57
58
59
60
61
...
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