mirror of
https://github.com/netdata/netdata.git
synced 2025-04-07 06:45:39 +00:00

* Add repo config for Amazon Linux 2023. dnf and yum resolve $releasever to a verbose release version (e.g. 2023.4.20240401). However, there is no need to create repositories for every version Amazon comes up with. Resolves https://github.com/netdata/netdata/issues/17324 * Have a more specific conditional file install (amzn2) * Bump repo spec release for Amazon Linux changes.
126 lines
3.3 KiB
RPMSpec
126 lines
3.3 KiB
RPMSpec
%{?rhel:%global centos_ver %rhel}
|
|
|
|
Name: netdata-repo
|
|
Version: 2
|
|
Release: 3
|
|
Summary: Netdata stable repositories configuration.
|
|
|
|
Group: System Environment/Base
|
|
License: GPLv2
|
|
|
|
Source0: netdata.repo.fedora
|
|
Source1: netdata-edge.repo.fedora
|
|
Source2: netdata.repo.suse
|
|
Source3: netdata-edge.repo.suse
|
|
Source4: netdata.repo.centos
|
|
Source5: netdata-edge.repo.centos
|
|
Source6: netdata.repo.ol
|
|
Source7: netdata-edge.repo.ol
|
|
Source8: netdata.repo.al
|
|
Source9: netdata-edge.repo.al
|
|
Source10: netdata.repo.al2023
|
|
Source11: netdata-edge.repo.al2023
|
|
|
|
BuildArch: noarch
|
|
|
|
%if 0%{?centos_ver} && 0%{?centos_ver} < 8
|
|
Requires: yum-plugin-priorities
|
|
%endif
|
|
|
|
%if 0%{?centos_ver} && 0%{!?amazon_linux:1} && 0%{!?oraclelinux:1}
|
|
Requires: epel-release
|
|
%endif
|
|
|
|
# Overlapping file installs
|
|
Conflicts: netdata-repo-edge
|
|
|
|
%description
|
|
This package contains the official Netdata package repository configuration for stable versions of Netdata.
|
|
|
|
%prep
|
|
%setup -q -c -T
|
|
|
|
%if 0%{?fedora}
|
|
install -pm 644 %{SOURCE0} ./netdata.repo
|
|
install -pm 644 %{SOURCE1} ./netdata-edge.repo
|
|
%endif
|
|
|
|
%if 0%{?suse_version}
|
|
install -pm 644 %{SOURCE2} ./netdata.repo
|
|
install -pm 644 %{SOURCE3} ./netdata-edge.repo
|
|
%endif
|
|
|
|
%if 0%{?centos_ver}
|
|
install -pm 644 %{SOURCE4} ./netdata.repo
|
|
install -pm 644 %{SOURCE5} ./netdata-edge.repo
|
|
%endif
|
|
|
|
%if 0%{?oraclelinux}
|
|
install -pm 644 %{SOURCE6} ./netdata.repo
|
|
install -pm 644 %{SOURCE7} ./netdata-edge.repo
|
|
%endif
|
|
|
|
%if 0%{?amzn2}
|
|
install -pm 644 %{SOURCE8} ./netdata.repo
|
|
install -pm 644 %{SOURCE9} ./netdata-edge.repo
|
|
%endif
|
|
|
|
%if 0%{?amzn2023}
|
|
install -pm 644 %{SOURCE10} ./netdata.repo
|
|
install -pm 644 %{SOURCE11} ./netdata-edge.repo
|
|
%endif
|
|
|
|
%build
|
|
true
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%if 0%{?suse_version}
|
|
install -dm 755 $RPM_BUILD_ROOT%{_sysconfdir}/zypp/repos.d
|
|
install -pm 644 netdata.repo $RPM_BUILD_ROOT%{_sysconfdir}/zypp/repos.d
|
|
install -pm 644 netdata-edge.repo $RPM_BUILD_ROOT%{_sysconfdir}/zypp/repos.d
|
|
%else
|
|
install -dm 755 $RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
|
|
install -pm 644 netdata.repo $RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
|
|
install -pm 644 netdata-edge.repo $RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d
|
|
%endif
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%if 0%{?suse_version}
|
|
%attr(644,root,root) /etc/zypp/repos.d/netdata.repo
|
|
%else
|
|
%attr(644,root,root) /etc/yum.repos.d/netdata.repo
|
|
%endif
|
|
|
|
%package edge
|
|
Summary: Netdata nightly repositories configuration.
|
|
Group: System Environment/Base
|
|
|
|
# Overlapping file installs
|
|
Conflicts: netdata-repo
|
|
|
|
%description edge
|
|
This package contains the official Netdata package repository configuration for nightly versions of Netdata.
|
|
|
|
%files edge
|
|
%if 0%{?suse_version}
|
|
%attr(644,root,root) /etc/zypp/repos.d/netdata-edge.repo
|
|
%else
|
|
%attr(644,root,root) /etc/yum.repos.d/netdata-edge.repo
|
|
%endif
|
|
|
|
%changelog
|
|
* Wed Apr 10 2024 Paul Szymanski <mail@pszy.de> 2-3
|
|
- Fix repo specification for Amazon Linux 2023.
|
|
* Mon Nov 13 2023 Austin Hemmelgarn <austin@netdata.cloud> 2-2
|
|
- Add EPEL requirement for RHEL packages.
|
|
* Wed Dec 7 2022 Austin Hemmelgarn <austin@netdata.cloud> 2-1
|
|
- Switch to new hosting at repo.netdata.cloud.
|
|
* Mon Jun 6 2022 Austin Hemmelgarn <austin@netdata.cloud> 1-2
|
|
- Bump release to keep in sync with DEB package.
|
|
* Mon Jun 14 2021 Austin Hemmelgarn <austin@netdata.cloud> 1-1
|
|
- Initial revision
|