e607ed683e
1 OBS-URL: https://build.opensuse.org/request/show/516098 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/etcd?expand=0&rev=4
126 lines
3.7 KiB
RPMSpec
126 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package etcd
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: etcd
|
|
Version: 3.2.4
|
|
Release: 0
|
|
Summary: Highly-available key value store for configuration and service discovery
|
|
License: Apache-2.0
|
|
Group: System/Management
|
|
Url: https://github.com/coreos/etcd
|
|
Source: %{name}-%{version}.tar.xz
|
|
Source1: %{name}.conf
|
|
Source2: %{name}.service
|
|
Source3: etcd_client_firewall
|
|
Source4: etcd_server_firewall
|
|
BuildRequires: golang-packaging
|
|
BuildRequires: shadow
|
|
BuildRequires: systemd-rpm-macros
|
|
BuildRequires: xz
|
|
BuildRequires: golang(API) = 1.8
|
|
ExcludeArch: %ix86
|
|
Requires(post): %fillup_prereq
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%{?systemd_requires}
|
|
%{go_provides}
|
|
# Make sure that the binary is not getting stripped.
|
|
%{go_nostrip}
|
|
|
|
%description
|
|
etcd is a distributed, consistent key-value store for shared configuration and
|
|
service discovery, with a focus on being:
|
|
|
|
- Simple: well-defined, user-facing API (gRPC)
|
|
- Secure: automatic TLS with optional client cert authentication
|
|
- Fast: benchmarked 10,000 writes/sec
|
|
- Reliable: properly distributed using Raft
|
|
|
|
%package -n etcdctl
|
|
Summary: A simple command line client for etcd
|
|
Group: System/Management
|
|
|
|
%description -n etcdctl
|
|
A command line client for etcd. It can be used in scripts or for administrators
|
|
to explore an etcd cluster.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%{goprep} github.com/coreos/etcd
|
|
%{gobuild} cmd/etcd
|
|
%{gobuild} cmd/etcdctl
|
|
|
|
%install
|
|
%{goinstall}
|
|
rm -rf %{buildroot}/%{_libdir}/go/contrib
|
|
|
|
# Service
|
|
install -D -p -m 0644 %{SOURCE2} %{buildroot}%{_unitdir}/%{name}.service
|
|
install -d %{buildroot}/%{_sbindir}
|
|
ln -sf %{_sbindir}/service %{buildroot}%{_sbindir}/rc%{name}
|
|
|
|
# Sysconfig
|
|
install -D -p -m 0644 %{SOURCE1} %{buildroot}%{_localstatedir}/adm/fillup-templates/sysconfig.%{name}
|
|
|
|
# Additional
|
|
install -d -m 750 %{buildroot}%{_localstatedir}/lib/%{name}
|
|
install -D -m 644 %{SOURCE3} %{buildroot}/%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/etcd_client
|
|
install -D -m 644 %{SOURCE4} %{buildroot}/%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/etcd_server
|
|
|
|
# Move
|
|
mv %{buildroot}%{_bindir}/etcd %{buildroot}%{_sbindir}/%{name}
|
|
|
|
%pre
|
|
getent group %{name} >/dev/null || %{_sbindir}/groupadd -r %{name}
|
|
getent passwd %{name} >/dev/null || %{_sbindir}/useradd -r -g %{name} -d %{_localstatedir}/lib/%{name} -s /bin/false -c "etcd daemon" %{name}
|
|
%service_add_pre %{name}.service
|
|
|
|
%post
|
|
%service_add_post %{name}.service
|
|
%{fillup_only -n %{name}}
|
|
|
|
%preun
|
|
%service_del_preun %{name}.service
|
|
|
|
%postun
|
|
%service_del_postun %{name}.service
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc CONTRIBUTING.md README.md LICENSE DCO NOTICE
|
|
%{_sbindir}/%{name}
|
|
|
|
# Service
|
|
%{_unitdir}/%{name}.service
|
|
%{_sbindir}/rc%{name}
|
|
|
|
# Sysconfig
|
|
%{_localstatedir}/adm/fillup-templates/sysconfig.%{name}
|
|
|
|
# Additional
|
|
%dir %attr(0750,%{name},%{name}) %{_localstatedir}/lib/%{name}
|
|
%config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/etcd_server
|
|
%config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/etcd_client
|
|
|
|
%files -n etcdctl
|
|
%defattr(-,root,root)
|
|
%{_bindir}/etcdctl
|
|
|
|
%changelog
|