2010-10-08 16:25:58 +02:00
|
|
|
#
|
2011-03-21 16:16:38 +01:00
|
|
|
# Copyright (c) 2011, Sascha Peilicke <saschpe@gmx.de>
|
2010-10-08 16:25:58 +02:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2010-11-16 21:48:02 +01:00
|
|
|
%ifarch %ix86
|
2010-11-16 22:06:20 +01:00
|
|
|
%define go_os_arch linux_386
|
2010-11-16 21:48:02 +01:00
|
|
|
%endif
|
|
|
|
%ifarch x86_64
|
|
|
|
%define go_os_arch linux_amd64
|
|
|
|
%endif
|
2010-10-14 09:14:01 +02:00
|
|
|
|
2010-10-08 16:25:58 +02:00
|
|
|
Name: go
|
2011-04-29 20:34:27 +02:00
|
|
|
Version: 20110429
|
2010-10-08 16:25:58 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: A compiled, garbage-collected, concurrent programming language
|
|
|
|
Group: Development/Languages/Other
|
2011-03-21 16:14:21 +01:00
|
|
|
License: BSD3c
|
2010-10-08 16:25:58 +02:00
|
|
|
URL: http://golang.org/
|
2011-03-21 16:14:21 +01:00
|
|
|
Source0: go-%{version}.tar.bz2
|
2010-10-08 16:25:58 +02:00
|
|
|
Source1: go-rpmlintrc
|
2011-02-17 11:34:25 +01:00
|
|
|
Source2: go.sh
|
2011-02-03 18:47:56 +01:00
|
|
|
Patch1: godoc-path-locations.patch
|
2010-10-08 16:25:58 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: ed bison chrpath
|
|
|
|
%if 0%{?suse_version} > 1020
|
2010-11-09 19:54:11 +01:00
|
|
|
Recommends: go-doc
|
2010-10-08 16:25:58 +02:00
|
|
|
%endif
|
|
|
|
|
2010-11-08 22:58:59 +01:00
|
|
|
ExclusiveArch: %ix86 x86_64
|
2011-03-21 16:14:21 +01:00
|
|
|
Provides: libcgo = %{version}-%{release}
|
2010-10-08 16:25:58 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
Go is an expressive, concurrent, garbage collected systems programming language
|
|
|
|
that is type safe and memory safe. It has pointers but no pointer arithmetic.
|
|
|
|
Go has fast builds, clean syntax, garbage collection, methods for any type, and
|
|
|
|
run-time reflection. It feels like a dynamic language but has the speed and
|
|
|
|
safety of a static language.
|
|
|
|
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
Summary: Go documentation
|
|
|
|
Group: Documentation/Other
|
2011-03-21 16:14:21 +01:00
|
|
|
Requires: %{name} = %{version}
|
2011-02-17 11:34:25 +01:00
|
|
|
Requires: go-devel
|
2010-10-08 16:25:58 +02:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
Go examples and documentation.
|
|
|
|
|
2011-02-17 11:34:25 +01:00
|
|
|
%package devel
|
|
|
|
Summary: Toolchain and standard library sources, goinstall utility
|
|
|
|
Group: Development/Languages/Other
|
2011-03-21 16:14:21 +01:00
|
|
|
Requires: %{name} = %{version}
|
2011-02-17 11:34:25 +01:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Contains soruce code files for the Go toolchain compilers, linkers and command
|
|
|
|
utilities. Contains the "goinstall" utility for installing third party packages
|
|
|
|
which requires the go standard library source to be installed
|
|
|
|
|
2010-10-08 16:25:58 +02:00
|
|
|
%package vim
|
|
|
|
Summary: Go syntax files for Vim
|
|
|
|
Group: Productivity/Text/Editors
|
2010-12-08 16:22:15 +01:00
|
|
|
%if 0%{?suse_version}
|
2010-12-08 15:23:46 +01:00
|
|
|
BuildRequires: vim-base
|
2010-10-08 16:25:58 +02:00
|
|
|
Requires: vim-base
|
2010-12-08 16:22:15 +01:00
|
|
|
%else
|
|
|
|
BuildRequires: vim
|
|
|
|
Requires: vim
|
|
|
|
%endif
|
2011-03-21 16:14:21 +01:00
|
|
|
Requires: %{name} = %{version}
|
2010-10-08 16:25:58 +02:00
|
|
|
|
|
|
|
%description vim
|
|
|
|
Vim syntax highlighting scheme for the Go programming language.
|
|
|
|
|
|
|
|
%package emacs
|
|
|
|
Summary: Go language syntax files for Emacs
|
|
|
|
Group: Productivity/Text/Editors
|
|
|
|
Requires: emacs
|
2011-03-21 16:14:21 +01:00
|
|
|
Requires: %{name} = %{version}
|
2010-10-08 16:25:58 +02:00
|
|
|
|
|
|
|
%description emacs
|
|
|
|
Emacs syntax highlighting scheme for the Go programming language.
|
|
|
|
|
|
|
|
%package kate
|
|
|
|
Summary: Go syntax files for Kate and KWrite editors
|
|
|
|
Group: Productivity/Text/Editors
|
2010-12-08 16:22:15 +01:00
|
|
|
%if 0%{?suse_version} >= 1120
|
2010-12-08 15:23:46 +01:00
|
|
|
BuildRequires: kate
|
2010-10-08 16:34:24 +02:00
|
|
|
Requires: kate
|
2010-12-08 17:20:03 +01:00
|
|
|
%else
|
2010-12-08 17:47:25 +01:00
|
|
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
2010-12-08 17:20:03 +01:00
|
|
|
BuildRequires: kdelibs4
|
|
|
|
Requires: kdelibs4
|
|
|
|
%endif
|
2010-12-08 16:22:15 +01:00
|
|
|
%endif
|
2011-03-21 16:14:21 +01:00
|
|
|
Requires: %{name} = %{version}
|
2010-10-08 16:25:58 +02:00
|
|
|
|
|
|
|
%description kate
|
|
|
|
Kate syntax highlighting scheme for the Go programming language.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2010-12-08 17:27:49 +01:00
|
|
|
%setup -q -n %{name}
|
2011-02-03 18:47:56 +01:00
|
|
|
%patch1 -p1
|
2010-10-08 16:25:58 +02:00
|
|
|
|
|
|
|
%build
|
2010-11-08 22:29:08 +01:00
|
|
|
export GOROOT="`pwd`"
|
|
|
|
export GOBIN="$GOROOT/bin"
|
2010-10-08 16:25:58 +02:00
|
|
|
mkdir -p "$GOBIN"
|
|
|
|
cd src
|
2011-02-02 13:51:53 +01:00
|
|
|
|
2011-02-17 11:34:25 +01:00
|
|
|
# remove computer lang benchmark tests, coelab wiki, dashboard... from run.bash
|
|
|
|
sed '94,113d' $GOROOT/src/run.bash > $GOROOT/src/run.tmp
|
|
|
|
mv $GOROOT/src/run.tmp $GOROOT/src/run.bash
|
2011-02-02 13:51:53 +01:00
|
|
|
|
2011-02-01 15:35:58 +01:00
|
|
|
# disable net tests and run full test suite
|
2011-04-29 20:34:27 +02:00
|
|
|
DISABLE_NET_TESTS=1 STRIP=/bin/true CFLAGS=${RPM_OPT_FLAGS} LC_ALL=C PATH="$PATH:$GOBIN" ./all.bash
|
2010-10-08 16:25:58 +02:00
|
|
|
|
|
|
|
%install
|
2011-04-29 20:34:27 +02:00
|
|
|
export GOROOT="%{buildroot}%{_libdir}/%{name}"
|
|
|
|
install -Dm644 misc/bash/go %{buildroot}%{_sysconfdir}/bash_completion.d/go
|
|
|
|
install -Dm644 %{SOURCE2} %{buildroot}%{_sysconfdir}/profile.d/go.sh
|
|
|
|
install -Dm644 misc/emacs/go-mode-load.el %{buildroot}%{_datadir}/emacs/site-lisp/go-mode-load.el
|
|
|
|
install -Dm644 misc/emacs/go-mode.el %{buildroot}%{_datadir}/emacs/site-lisp/go-mode.el
|
|
|
|
install -Dm644 misc/vim/syntax/go.vim %{buildroot}%{_datadir}/vim/site/syntax/go.vim
|
|
|
|
install -Dm644 misc/vim/ftdetect/gofiletype.vim %{buildroot}%{_datadir}/vim/site/ftdetect/gofiletype.vim
|
|
|
|
install -Dm644 misc/kate/go.xml %{buildroot}%{_datadir}/kde4/apps/katepart/syntax/go.xml
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
mkdir -p %{buildroot}%{_sbindir}
|
|
|
|
cp -r bin/* %{buildroot}%{_bindir}
|
|
|
|
mv %{buildroot}%{_bindir}/goinstall %{buildroot}%{_sbindir}/goinstall
|
|
|
|
rm -f %{buildroot}%{_bindir}/{hgpatch,quietgcc}
|
|
|
|
chrpath -d %{buildroot}%{_bindir}/{cgo,gofmt,goyacc,godoc,ebnflint}
|
|
|
|
chrpath -d %{buildroot}%{_sbindir}/goinstall
|
2010-11-16 10:08:21 +01:00
|
|
|
mkdir -p $GOROOT/src
|
2010-11-16 21:48:02 +01:00
|
|
|
install -m644 src/Make.{ccmd,clib,cmd,common,inc,pkg} $GOROOT/src
|
|
|
|
|
2011-02-17 11:34:25 +01:00
|
|
|
# source files for goinstall, godoc etc
|
2011-04-29 20:34:27 +02:00
|
|
|
mkdir %{buildroot}%{_datadir}/go
|
2011-02-17 11:34:25 +01:00
|
|
|
for ext in *.{go,c,h}
|
|
|
|
do
|
2011-04-29 20:34:27 +02:00
|
|
|
find src -name ${ext} -exec install -Dm644 \{\} %{buildroot}%{_datadir}/go/\{\} \;
|
2011-02-17 11:34:25 +01:00
|
|
|
done
|
|
|
|
|
2011-04-29 20:34:27 +02:00
|
|
|
install -Dm644 lib/{lib9.a,libbio.a,libmach.a} %{buildroot}%{_libdir}
|
2010-10-08 16:25:58 +02:00
|
|
|
cp -r lib/godoc $GOROOT/lib
|
2010-11-16 21:48:02 +01:00
|
|
|
cp -r pkg $GOROOT
|
|
|
|
|
|
|
|
# documentation
|
2010-11-16 10:08:21 +01:00
|
|
|
mkdir -p doc/examples
|
|
|
|
mv doc/{prog.sh,makehtml,progs} doc/examples
|
|
|
|
mv misc/cgo doc/examples
|
2010-10-11 10:27:54 +02:00
|
|
|
chmod 644 doc/codelab/wiki/test.sh
|
2010-10-08 16:25:58 +02:00
|
|
|
|
2011-02-02 13:51:53 +01:00
|
|
|
# rpath check on bin/govet somehow breaks the build
|
2011-02-01 15:35:58 +01:00
|
|
|
export NO_BRP_CHECK_RPATH=true
|
2011-02-02 13:51:53 +01:00
|
|
|
|
|
|
|
# issue #1242
|
|
|
|
# Go binaries are supposedly DWARF compliant but brp_strip_debug breaks them
|
|
|
|
export NO_BRP_STRIP_DEBUG=true
|
|
|
|
|
2010-10-08 16:25:58 +02:00
|
|
|
%clean
|
2011-04-29 20:34:27 +02:00
|
|
|
rm -rf %{buildroot}
|
2010-10-08 16:25:58 +02:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2010-11-15 10:18:14 +01:00
|
|
|
%doc AUTHORS CONTRIBUTORS LICENSE README
|
2010-10-08 16:25:58 +02:00
|
|
|
%{_libdir}/go
|
2010-11-16 21:48:02 +01:00
|
|
|
%{_libdir}/lib9.a
|
|
|
|
%{_libdir}/libbio.a
|
|
|
|
%{_libdir}/libmach.a
|
2010-10-08 16:25:58 +02:00
|
|
|
%ifarch %ix86
|
|
|
|
%{_bindir}/8*
|
|
|
|
%endif
|
|
|
|
%{_bindir}/6*
|
|
|
|
%{_bindir}/cgo
|
|
|
|
%{_bindir}/ebnflint
|
|
|
|
%{_bindir}/go*
|
|
|
|
%config %{_sysconfdir}/bash_completion.d/go
|
2011-02-03 18:47:56 +01:00
|
|
|
%config %{_sysconfdir}/profile.d/go.sh
|
2010-10-08 16:25:58 +02:00
|
|
|
|
2011-02-17 11:34:25 +01:00
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_sbindir}/go*
|
|
|
|
%dir %{_datadir}/go
|
|
|
|
%{_datadir}/go/*
|
|
|
|
|
2010-10-08 16:25:58 +02:00
|
|
|
%files doc
|
|
|
|
%defattr(-,root,root,-)
|
2010-11-15 10:18:14 +01:00
|
|
|
%doc doc/*
|
2010-10-08 16:25:58 +02:00
|
|
|
|
|
|
|
%files vim
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_datadir}/vim/site/syntax/go.vim
|
|
|
|
%{_datadir}/vim/site/ftdetect/gofiletype.vim
|
|
|
|
|
|
|
|
%files emacs
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_datadir}/emacs/site-lisp/go-mode*.el
|
|
|
|
|
|
|
|
%files kate
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_datadir}/kde4/apps/katepart/syntax/go.xml
|
|
|
|
|
|
|
|
%changelog
|