File go-ipfs.spec of Package go-ipfs-beta
#
# spec file for package go-ipfs
#
# Copyright (c) 2020 SUSE LLC
#
# 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.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define debug_package %{nil}
%define repo github.com/ipfs/go-ipfs
%define goversion v0.8.0-rc1
Name: go-ipfs
Version: 0.8.0~rc1
Release: 0
Summary: IPFS implementation in Go
License: MIT
Group: Productivity/Networking/Other
URL: https://%{repo}
#Source0: https://%{repo}/archive/v%{version}.tar.gz
# bundle with all deps from ./fetch.sh and ./findfiles.sh :
Source0: go-ipfs-min.tar
BuildRequires: git
# >= 1.14.4 is ambiguous
BuildRequires: go >= 1.15
BuildRequires: systemd-rpm-macros
Requires: fuse
Requires: nss-myhostname
%systemd_requires
%description
IPFS is a global, versioned, peer-to-peer filesystem. It combines good ideas from Git, BitTorrent, Kademlia, SFS, and the Web. It is like a single bittorrent swarm, exchanging git objects. IPFS provides an interface as simple as the HTTP web, but with permanence built in. You can also mount the world at /ipfs.
%prep
%setup -q -n mod
%autopatch -p1
mkdir -p ../pkg/mod/ ; cp -al * ../pkg/mod/
%build
export GO111MODULE=on
export GOPATH="$(cd ../ ; pwd)"
env
cd %{repo}@%{goversion}
find -name check_go_version -o -name preload.sh | xargs chmod 755
#go build -buildmode=pie -o ./cmd/ipfs/ipfs ./cmd/ipfs
make build
%install
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_userunitdir}
mkdir -p %{buildroot}%{_unitdir}
mkdir -p %{buildroot}%{_datadir}/bash-completion/completions/ipfs
cp %{repo}@%{goversion}/cmd/ipfs/ipfs %{buildroot}%{_bindir}
cat << EOF >> %{buildroot}%{_userunitdir}/ipfs.service
[Unit]
Description=InterPlanetary File System (IPFS) daemon
[Service]
ExecStart=/usr/bin/ipfs daemon
Restart=on-failure
[Install]
WantedBy=default.target
EOF
cat << EOF >> %{buildroot}%{_unitdir}/ipfs@.service
[Unit]
Description=InterPlanetary File System (IPFS) daemon
[Service]
User=%i
ExecStart=/usr/bin/ipfs daemon
Restart=on-failure
[Install]
WantedBy=default.target
EOF
cp %{repo}@%{goversion}/misc/completion/ipfs-completion.bash %{buildroot}%{_datadir}/bash-completion/completions/ipfs
%pre
%service_add_pre ipfs@.service
%post
%service_add_post ipfs@.service
%preun
%service_del_preun ipfs@.service
%postun
%service_del_postun ipfs@.service
%files
%{_bindir}/ipfs
%{_userunitdir}/ipfs.service
%{_unitdir}/ipfs@.service
%{_datadir}/bash-completion/completions/ipfs
%license %{repo}@%{goversion}/LICENSE*
%doc %{repo}@%{goversion}/docs/*
%changelog