2013-05-24 01:22:57 +00:00
|
|
|
# build ids are not currently generated:
|
|
|
|
# https://code.google.com/p/go/issues/detail?id=5238
|
|
|
|
#
|
|
|
|
# also, debuginfo extraction currently fails with
|
|
|
|
# "Failed to write file: invalid section alignment"
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
2013-06-14 02:37:33 +00:00
|
|
|
# we are shipping the full contents of src in the data subpackage, which
|
|
|
|
# contains binary-like things (ELF data for tests, etc)
|
|
|
|
%global _binaries_in_noarch_packages_terminate_build 0
|
|
|
|
|
|
|
|
# Do not check any files in doc or src for requires
|
2013-07-05 03:47:27 +00:00
|
|
|
%global __requires_exclude_from ^(%{_datadir}|%{_libdir})/%{name}/(doc|src)/.*$
|
2013-06-14 02:37:33 +00:00
|
|
|
|
2013-07-10 05:54:42 +00:00
|
|
|
# Don't alter timestamps of especially the .a files (or else go will rebuild later)
|
|
|
|
# Actually, don't strip at all since we are not even building debug packages and this corrupts the dwarf testdata
|
|
|
|
%global __strip /bin/true
|
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
Name: golang
|
2013-08-20 14:32:32 +00:00
|
|
|
Version: 1.1.2
|
2013-09-19 15:53:46 +00:00
|
|
|
Release: 2%{?dist}
|
2013-05-24 01:22:57 +00:00
|
|
|
Summary: The Go Programming Language
|
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: http://golang.org/
|
|
|
|
Source0: https://go.googlecode.com/files/go%{version}.src.tar.gz
|
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
BuildRequires: /bin/hostname
|
2013-09-19 15:53:46 +00:00
|
|
|
BuildRequires: emacs
|
2013-05-24 01:22:57 +00:00
|
|
|
|
|
|
|
Patch0: golang-1.1-verbose-build.patch
|
|
|
|
|
2013-06-14 02:37:33 +00:00
|
|
|
# Having godoc and the documentation separate was broken
|
|
|
|
Obsoletes: %{name}-godoc < 1.1-4
|
2013-07-05 03:47:27 +00:00
|
|
|
Obsoletes: %{name}-docs < 1.1-4
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-06-29 02:09:26 +00:00
|
|
|
# RPM can't handle symlink -> dir with subpackages, so merge back
|
|
|
|
Obsoletes: %{name}-data < 1.1.1-4
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-06-14 02:37:33 +00:00
|
|
|
ExclusiveArch: %{ix86} x86_64 %{arm}
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
Source100: golang-gdbinit
|
2013-07-10 05:54:42 +00:00
|
|
|
Source101: golang-prelink.conf
|
2013-07-05 03:47:27 +00:00
|
|
|
|
2013-06-14 02:37:33 +00:00
|
|
|
%description
|
2013-05-24 01:22:57 +00:00
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
|
2013-06-29 02:09:26 +00:00
|
|
|
# Restore this package if RPM gets fixed (bug #975909)
|
|
|
|
#%package data
|
|
|
|
#Summary: Required architecture-independent files for Go
|
|
|
|
#Requires: %{name} = %{version}-%{release}
|
|
|
|
#BuildArch: noarch
|
|
|
|
#Obsoletes: %{name}-docs < 1.1-4
|
|
|
|
#
|
|
|
|
#%description data
|
|
|
|
#%{summary}.
|
2013-05-24 01:22:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
%package vim
|
|
|
|
Summary: Vim plugins for Go
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description vim
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n emacs-%{name}
|
|
|
|
Summary: Emacs add-on package for Go
|
|
|
|
Requires: emacs(bin) >= %{_emacs_version}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description -n emacs-%{name}
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
|
2013-06-17 04:29:13 +00:00
|
|
|
# Workaround old RPM bug of symlink-replaced-with-dir failure
|
2013-06-19 14:45:00 +00:00
|
|
|
%pretrans -p <lua>
|
2013-07-05 03:47:27 +00:00
|
|
|
for _,d in pairs({"api", "doc", "include", "lib", "src"}) do
|
|
|
|
path = "%{_libdir}/%{name}/" .. d
|
|
|
|
if posix.stat(path, "type") == "link" then
|
|
|
|
os.remove(path)
|
|
|
|
posix.mkdir(path)
|
|
|
|
end
|
2013-06-19 14:45:00 +00:00
|
|
|
end
|
2013-06-17 04:29:13 +00:00
|
|
|
|
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n go
|
|
|
|
|
|
|
|
# increase verbosity of build
|
|
|
|
%patch0 -p1
|
|
|
|
|
|
|
|
%build
|
|
|
|
# create a gcc wrapper to allow us to build with our own flags
|
2013-09-19 15:53:46 +00:00
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
mkdir zz
|
|
|
|
cd zz
|
|
|
|
echo -e "#!/bin/sh\n/usr/bin/gcc $RPM_OPT_FLAGS $RPM_LD_FLAGS \"\$@\"" > mygcc
|
|
|
|
chmod +x mygcc
|
|
|
|
export CC="$(pwd -P)/mygcc"
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# set up final install location
|
|
|
|
export GOROOT_FINAL=%{_libdir}/%{name}
|
|
|
|
|
|
|
|
# TODO use the system linker to get the system link flags and build-id
|
|
|
|
# when https://code.google.com/p/go/issues/detail?id=5221 is solved
|
|
|
|
#export GO_LDFLAGS="-linkmode external -extldflags $RPM_LD_FLAGS"
|
|
|
|
|
|
|
|
# build
|
|
|
|
cd src
|
2013-09-19 15:53:46 +00:00
|
|
|
rm *.rc
|
2013-05-24 01:22:57 +00:00
|
|
|
./make.bash
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# build static version of documentation
|
|
|
|
export GOROOT=$(pwd -P)
|
|
|
|
export PATH="$PATH":"$GOROOT"/bin
|
|
|
|
cd doc
|
|
|
|
make
|
|
|
|
cd ..
|
|
|
|
|
2013-09-19 15:53:46 +00:00
|
|
|
# compile for emacs
|
2013-05-24 01:22:57 +00:00
|
|
|
cd misc
|
|
|
|
mv emacs/go-mode-load.el emacs/%{name}-init.el
|
|
|
|
%{_emacs_bytecompile} emacs/go-mode.el
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
%check
|
|
|
|
export GOROOT=$(pwd -P)
|
|
|
|
export PATH="$PATH":"$GOROOT"/bin
|
|
|
|
cd src
|
|
|
|
./run.bash --no-rebuild
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
# create the top level directories
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/%{name}
|
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
# install everything into libdir (until symlink problems are fixed)
|
|
|
|
# https://code.google.com/p/go/issues/detail?id=5830
|
|
|
|
cp -av api bin doc favicon.ico include lib pkg robots.txt src \
|
|
|
|
$RPM_BUILD_ROOT%{_libdir}/%{name}
|
2013-05-24 01:22:57 +00:00
|
|
|
|
|
|
|
# remove the unnecessary zoneinfo file (Go will always use the system one first)
|
2013-07-05 03:47:27 +00:00
|
|
|
rm -rfv $RPM_BUILD_ROOT%{_libdir}/%{name}/lib/time
|
2013-05-24 01:22:57 +00:00
|
|
|
|
|
|
|
# remove the doc Makefile
|
2013-07-05 03:47:27 +00:00
|
|
|
rm -rfv $RPM_BUILD_ROOT%{_libdir}/%{name}/doc/Makefile
|
2013-05-24 01:22:57 +00:00
|
|
|
|
|
|
|
# add symlinks for binaries
|
|
|
|
pushd $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
for z in $RPM_BUILD_ROOT%{_libdir}/%{name}/bin/*
|
|
|
|
do ln -s %{_libdir}/%{name}/bin/$(basename $z)
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
|
|
|
# misc/bash
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions
|
|
|
|
cp -av misc/bash/go $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions
|
|
|
|
for z in 8l 6l 5l 8g 6g 5g gofmt gccgo
|
|
|
|
do ln -s go $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions/$z
|
|
|
|
done
|
|
|
|
|
|
|
|
# misc/emacs
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_emacs_sitelispdir}/%{name}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_emacs_sitestartdir}
|
|
|
|
cp -av misc/emacs/go-mode.* $RPM_BUILD_ROOT%{_emacs_sitelispdir}/%{name}
|
|
|
|
cp -av misc/emacs/%{name}-init.el $RPM_BUILD_ROOT%{_emacs_sitestartdir}
|
|
|
|
|
|
|
|
# misc/vim
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles
|
|
|
|
cp -av misc/vim/* $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles
|
|
|
|
rm $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles/readme.txt
|
|
|
|
|
|
|
|
# misc/zsh
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/zsh/site-functions
|
|
|
|
cp -av misc/zsh/go $RPM_BUILD_ROOT%{_datadir}/zsh/site-functions
|
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
# gdbinit
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gdbinit.d
|
|
|
|
cp -av %{SOURCE100} $RPM_BUILD_ROOT%{_sysconfdir}/gdbinit.d/golang
|
2013-06-17 04:29:13 +00:00
|
|
|
|
2013-07-10 05:54:42 +00:00
|
|
|
# prelink blacklist
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/prelink.conf.d
|
|
|
|
cp -av %{SOURCE101} $RPM_BUILD_ROOT%{_sysconfdir}/prelink.conf.d/golang.conf
|
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%doc AUTHORS CONTRIBUTORS LICENSE PATENTS VERSION
|
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
# go files
|
|
|
|
%{_libdir}/%{name}
|
|
|
|
|
|
|
|
# bin symlinks
|
2013-05-24 01:22:57 +00:00
|
|
|
%{_bindir}/go
|
2013-06-14 02:37:33 +00:00
|
|
|
%{_bindir}/godoc
|
2013-05-24 01:22:57 +00:00
|
|
|
%{_bindir}/gofmt
|
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
# autocomplete
|
2013-06-14 02:37:33 +00:00
|
|
|
%{_datadir}/bash-completion
|
|
|
|
%{_datadir}/zsh
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
# gdbinit (for gdb debugging)
|
|
|
|
%{_sysconfdir}/gdbinit.d
|
2013-05-24 01:22:57 +00:00
|
|
|
|
2013-07-10 05:54:42 +00:00
|
|
|
# prelink blacklist
|
|
|
|
%{_sysconfdir}/prelink.conf.d
|
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
|
|
|
|
%files vim
|
|
|
|
%doc AUTHORS CONTRIBUTORS LICENSE PATENTS
|
|
|
|
%{_datadir}/vim/vimfiles/*
|
|
|
|
|
|
|
|
|
|
|
|
%files -n emacs-%{name}
|
|
|
|
%doc AUTHORS CONTRIBUTORS LICENSE PATENTS
|
|
|
|
%{_emacs_sitelispdir}/%{name}
|
|
|
|
%{_emacs_sitestartdir}/*.el
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2013-09-19 15:53:46 +00:00
|
|
|
* Fri Aug 16 2013 Adam Miller <admiller@redhat.com> - 1.1.2-2
|
|
|
|
- vim-filesystem only required for Fedora , vim-common owns those files in RHEL
|
2013-08-27 20:32:12 +00:00
|
|
|
|
2013-09-19 15:53:46 +00:00
|
|
|
* Fri Aug 16 2013 Adam Miller <admiller@redhat.com> - 1.1.2-1
|
2013-08-20 14:32:32 +00:00
|
|
|
- Update to latest upstream
|
|
|
|
|
2013-09-19 15:53:46 +00:00
|
|
|
* Fri Aug 16 2013 Adam Miller <admiller@redhat.com> - 1.1.1-6
|
|
|
|
- Remove xemacs bits for RHEL build
|
2013-08-27 20:29:41 +00:00
|
|
|
|
2013-07-10 05:54:42 +00:00
|
|
|
* Wed Jul 10 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-5
|
|
|
|
- Blacklist testdata files from prelink
|
|
|
|
- Again try to fix #973842
|
|
|
|
|
2013-07-05 03:47:27 +00:00
|
|
|
* Fri Jul 5 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-4
|
|
|
|
- Move src to libdir for now (#973842) (upstream issue https://code.google.com/p/go/issues/detail?id=5830)
|
|
|
|
- Eliminate noarch data package to work around RPM bug (#975909)
|
|
|
|
- Try to add runtime-gdb.py to the gdb safe-path (#981356)
|
2013-06-29 02:09:26 +00:00
|
|
|
|
2013-06-19 14:45:00 +00:00
|
|
|
* Wed Jun 19 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-3
|
|
|
|
- Use lua for pretrans (http://fedoraproject.org/wiki/Packaging:Guidelines#The_.25pretrans_scriptlet)
|
|
|
|
|
2013-06-17 04:29:13 +00:00
|
|
|
* Mon Jun 17 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-2
|
|
|
|
- Hopefully really fix #973842
|
|
|
|
- Fix update from pre-1.1.1 (#974840)
|
|
|
|
|
2013-06-14 02:37:33 +00:00
|
|
|
* Thu Jun 13 2013 Adam Goode <adam@spicenitz.org> - 1.1.1-1
|
|
|
|
- Update to 1.1.1
|
|
|
|
- Fix basically useless package (#973842)
|
|
|
|
|
2013-05-25 14:44:10 +00:00
|
|
|
* Sat May 25 2013 Dan Horák <dan[at]danny.cz> - 1.1-3
|
|
|
|
- set ExclusiveArch
|
|
|
|
|
2013-05-24 01:57:44 +00:00
|
|
|
* Fri May 24 2013 Adam Goode <adam@spicenitz.org> - 1.1-2
|
|
|
|
- Fix noarch package discrepancies
|
|
|
|
|
2013-05-24 01:22:57 +00:00
|
|
|
* Fri May 24 2013 Adam Goode <adam@spicenitz.org> - 1.1-1
|
|
|
|
- Initial Fedora release.
|
|
|
|
- Update to 1.1
|
|
|
|
|
|
|
|
* Thu May 9 2013 Adam Goode <adam@spicenitz.org> - 1.1-0.3.rc3
|
|
|
|
- Update to rc3
|
|
|
|
|
|
|
|
* Thu Apr 11 2013 Adam Goode <adam@spicenitz.org> - 1.1-0.2.beta2
|
|
|
|
- Update to beta2
|
|
|
|
|
|
|
|
* Tue Apr 9 2013 Adam Goode <adam@spicenitz.org> - 1.1-0.1.beta1
|
|
|
|
- Initial packaging.
|