Yuchen Lin 2017-04-12 15:37:26 +00:00 committed by Git OBS Bridge
commit 24130aad74
5 changed files with 42 additions and 16 deletions

View File

@ -1,3 +1,15 @@
<services>
<service name="download_files" mode="disabled"/>
<service mode="disabled" name="tar_scm">
<param name="url">git://git.infradead.org/users/mchehab/rasdaemon.git</param>
<param name="scm">git</param>
<param name="changesgenerate">enable</param>
<param name="filename">rasdaemon</param>
<param name="revision">refs/tags/v0.5.8</param>
<param name="version">0.5.8</param>
</service>
<service mode="disabled" name="recompress">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service mode="disabled" name="set_version"/>
</services>

4
_servicedata Normal file
View File

@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">git://git.infradead.org/users/mchehab/rasdaemon.git</param>
<param name="changesrevision">113198d8918272e41a58aa09a7ac7dd1e0435417</param></service></servicedata>

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8ce935ed22d3772796d817a1c9e336629fee613169cbef9955870bf0da7c7d45
size 95092
oid sha256:457ab3da26047816af9fb3fda1876337fd16a137704594b26faf17ef7634d1b9
size 95032

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Mon Apr 10 11:07:39 UTC 2017 - mpluskal@suse.com
- Switch to _service as fedorahosted is retired
- Update project url
- Use macro for systemd dependencies
- Make building more verbose
- Install provided labels for dell
-------------------------------------------------------------------
Tue May 31 14:02:13 UTC 2016 - fvogt@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package rasdaemon
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# 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
@ -22,22 +22,17 @@ Release: 0
Summary: Utility to receive RAS error tracings
License: GPL-2.0
Group: Hardware/Other
Url: https://git.fedorahosted.org/cgit/rasdaemon.git
Source: https://git.fedorahosted.org/cgit/rasdaemon.git/snapshot/%{name}-%{version}.tar.xz
Url: http://git.infradead.org/users/mchehab/rasdaemon.git
Source: %{name}-%{version}.tar.xz
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gcc
BuildRequires: gettext-devel
BuildRequires: libtool
BuildRequires: make
BuildRequires: sqlite3-devel
BuildRequires: systemd-rpm-macros
Requires: dmidecode
Requires: perl-DBD-SQLite
Requires(post): systemd
Requires(postun): systemd
Requires(preun): systemd
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{?systemd_requires}
%description
rasdaemon is a RAS (Reliability, Availability and Serviceability) logging tool.
@ -54,15 +49,21 @@ an utility for reporting current error counts from the EDAC sysfs files.
%build
autoreconf -fvi
%configure --enable-mce --enable-aer --enable-sqlite3 --enable-extlog --enable-abrt-report
make %{?_smp_mflags}
%configure \
--enable-mce \
--enable-aer \
--enable-sqlite3 \
--enable-extlog \
--enable-abrt-report
make %{?_smp_mflags} V=1
%install
make %{?_smp_mflags} DESTDIR=%{buildroot} install
%make_install
install -D -p -m 0644 misc/rasdaemon.service %{buildroot}%{_unitdir}/rasdaemon.service
ln -s %{_sbindir}/service %{buildroot}/%{_sbindir}/rcrasdaemon
install -D -p -m 0644 misc/ras-mc-ctl.service %{buildroot}%{_unitdir}/ras-mc-ctl.service
ln -s %{_sbindir}/service %{buildroot}/%{_sbindir}/rcras-mc-ctl
install -D -p -m 0644 labels/dell %{buildroot}%{_sysconfdir}/ras/dimm_labels.d/dell
rm %{buildroot}%{_includedir}/*.h
mkdir -p %{buildroot}%{_localstatedir}/lib/rasdaemon
@ -90,6 +91,6 @@ mkdir -p %{buildroot}%{_localstatedir}/lib/rasdaemon
%dir %{_sysconfdir}/ras
%dir %{_localstatedir}/lib/rasdaemon
%ghost %{_localstatedir}/lib/rasdaemon/ras-mc_event.db
%{_sysconfdir}/ras/dimm_labels.d
%config %{_sysconfdir}/ras/dimm_labels.d
%changelog