Blame SPECS/lm_sensors.spec

Packit Service a64451
%global commit 70f7e0848410b9ca4dde7abff669bbbecbf137e0
Packit Service a64451
%global shortcommit %(c=%{commit}; echo ${c:0:7})
Packit Service a64451
%global year 2018
Packit Service a64451
%global month 05
Packit Service a64451
%global day 22
Packit Service a64451
%global date %{year}%{month}%{day}
Packit Service a64451
Packit Service a64451
Name: lm_sensors
Packit Service a64451
Version: 3.4.0
Packit Service a64451
Release: 21.%{date}git%{shortcommit}%{?dist}
Packit Service a64451
Summary: Hardware monitoring tools
Packit Service a64451
Group: Applications/System
Packit Service a64451
Packit Service a64451
# Some man pages are licensed Verbatim (lib/sensors.conf.5,
Packit Service a64451
# prog/sensors/sensors.1). Files from dist-git are licensed
Packit Service a64451
# MIT (according to the Fedora Project Contributor Agreement
Packit Service a64451
# https://fedoraproject.org/wiki/Licensing:Main#License_of_Fedora_SPEC_Files).
Packit Service a64451
# The rest is GPLv2+.
Packit Service a64451
License: GPLv2+ and Verbatim and MIT
Packit Service a64451
Packit Service a64451
URL: http://github.com/lm-sensors/lm-sensors/
Packit Service a64451
Packit Service a64451
Source0: http://github.com/lm-sensors/lm-sensors/archive/%{commit}/lm-sensors-%{commit}.tar.gz
Packit Service a64451
Source1: lm_sensors.sysconfig
Packit Service a64451
# This one was taken from PLD-linux, Thanks!
Packit Service a64451
Source2: sensord.sysconfig
Packit Service a64451
Source3: lm_sensors-modprobe-wrapper
Packit Service a64451
Source4: lm_sensors-modprobe-r-wrapper
Packit Service a64451
Source5: sensord.service
Packit Service a64451
Source6: sensord-service-wrapper
Packit Service a64451
Source7: lm_sensors.service
Packit Service a64451
Packit Service a64451
# Upstream patch:
Packit Service a64451
Patch1: 0001-sensors-detect-Add-detection-of-AMD-Family-17h-model.patch
Packit Service a64451
# Patch that combines several upstream patches:
Packit Service a64451
Patch2: 0001-Fix-stale-links-and-outdated-info.patch
Packit Service a64451
# Upstream commit c28d20d19d620f42d:
Packit Service a64451
Patch3: 0001-sensors-detect-Fix-printing-CPU-info-on-ppc-and-arm.patch
Packit Service a64451
# Patch that combines upstream commits 5c900c7e851cc and f1e1a7607caa96b,
Packit Service a64451
# with the version string modified from 3.5.0+git to 3.4.0+git. Drop/modify
Packit Service a64451
# this patch on rebase.
Packit Service a64451
Patch4: fix-unexpanded-revision-strings.patch
Packit Service a64451
Packit Service a64451
Requires: /usr/sbin/modprobe
Packit Service a64451
%ifarch %{ix86} x86_64
Packit Service a64451
Requires: /usr/sbin/dmidecode
Packit Service a64451
%endif
Packit Service a64451
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
Packit Service a64451
Requires(post): systemd-units
Packit Service a64451
BuildRequires: kernel-headers >= 2.2.16, bison, libsysfs-devel, flex, gawk
Packit Service a64451
BuildRequires: perl-generators
Packit Service a64451
BuildRequires: rrdtool-devel
Packit Service a64451
BuildRequires: gcc
Packit Service a64451
Packit Service a64451
Packit Service a64451
%description
Packit Service a64451
The lm_sensors package includes a collection of modules for general SMBus
Packit Service a64451
access and hardware monitoring.
Packit Service a64451
Packit Service a64451
Packit Service a64451
%package libs
Packit Service a64451
Summary: Lm_sensors core libraries
Packit Service a64451
Group: System Environment/Libraries
Packit Service a64451
License: LGPLv2+
Packit Service a64451
Packit Service a64451
%description libs
Packit Service a64451
Core libraries for lm_sensors applications
Packit Service a64451
Packit Service a64451
Packit Service a64451
%package devel
Packit Service a64451
Summary: Development files for programs which will use lm_sensors
Packit Service a64451
Group: Development/System
Packit Service a64451
Requires: %{name}-libs = %{version}-%{release}
Packit Service a64451
# One manual page is licensed Verbatim (lib/libsensors.3). The rest is LGPLv2+.
Packit Service a64451
License: LGPLv2+ and Verbatim
Packit Service a64451
Packit Service a64451
%description devel
Packit Service a64451
The lm_sensors-devel package includes a header files and libraries for use
Packit Service a64451
when building applications that make use of sensor data.
Packit Service a64451
Packit Service a64451
Packit Service a64451
%package sensord
Packit Service a64451
Summary: Daemon that periodically logs sensor readings
Packit Service a64451
Group: System Environment/Daemons
Packit Service a64451
Requires: %{name} = %{version}-%{release}
Packit Service a64451
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
Packit Service a64451
# One man page is licensed Verbatim (prog/sensord/sensord.8). Files from
Packit Service a64451
# dist-git are licensed MIT according to the FPCA. The rest is GPLv2+.
Packit Service a64451
License: GPLv2+ and Verbatim and MIT
Packit Service a64451
Packit Service a64451
%description sensord
Packit Service a64451
Daemon that periodically logs sensor readings to syslog or a round-robin
Packit Service a64451
database, and warns of sensor alarms.
Packit Service a64451
Packit Service a64451
Packit Service a64451
%prep
Packit Service a64451
%setup -q -n lm-sensors-%{commit}
Packit Service a64451
%patch1 -p1
Packit Service a64451
%patch2 -p1
Packit Service a64451
%patch3 -p1
Packit Service a64451
%patch4 -p1
Packit Service a64451
Packit Service a64451
# Remove currently unused files to make sure we've got the license right
Packit Service a64451
rm -f prog/init/sysconfig-lm_sensors-convert prog/hotplug/unhide_ICH_SMBus
Packit Service a64451
Packit Service a64451
mv prog/init/README prog/init/README.initscripts
Packit Service a64451
chmod -x prog/init/fancontrol.init
Packit Service a64451
Packit Service a64451
# fixing the sensord-service-wrapper path
Packit Service a64451
cp -p %{SOURCE5} sensord.service
Packit Service a64451
cp -p %{SOURCE7} lm_sensors.service
Packit Service a64451
sed -i "s|\@WRAPPER_DIR\@|%{_libexecdir}/%{name}|" sensord.service
Packit Service a64451
sed -i "s|\@WRAPPER_DIR\@|%{_libexecdir}/%{name}|" lm_sensors.service
Packit Service a64451
Packit Service a64451
Packit Service a64451
%build
Packit Service a64451
%set_build_flags
Packit Service a64451
make PREFIX=%{_prefix} LIBDIR=%{_libdir} MANDIR=%{_mandir} \
Packit Service a64451
  EXLDFLAGS="$LDFLAGS" PROG_EXTRA=sensord BUILD_STATIC_LIB=0 user
Packit Service a64451
Packit Service a64451
Packit Service a64451
%install
Packit Service a64451
make PREFIX=%{_prefix} LIBDIR=%{_libdir} MANDIR=%{_mandir} PROG_EXTRA=sensord \
Packit Service a64451
  DESTDIR=$RPM_BUILD_ROOT BUILD_STATIC_LIB=0 user_install
Packit Service a64451
Packit Service a64451
ln -s sensors.conf.5.gz $RPM_BUILD_ROOT%{_mandir}/man5/sensors3.conf.5.gz
Packit Service a64451
Packit Service a64451
mkdir -p $RPM_BUILD_ROOT%{_initrddir}
Packit Service a64451
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sensors.d
Packit Service a64451
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
Packit Service a64451
install -pm 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/lm_sensors
Packit Service a64451
install -pm 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/sensord
Packit Service a64451
Packit Service a64451
# service files
Packit Service a64451
mkdir -p $RPM_BUILD_ROOT%{_unitdir}
Packit Service a64451
install -pm 644 prog/init/fancontrol.service $RPM_BUILD_ROOT%{_unitdir}
Packit Service a64451
install -pm 644 lm_sensors.service           $RPM_BUILD_ROOT%{_unitdir}
Packit Service a64451
install -pm 644 sensord.service              $RPM_BUILD_ROOT%{_unitdir}
Packit Service a64451
Packit Service a64451
# customized modprobe calls
Packit Service a64451
mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/%{name}
Packit Service a64451
install -pm 755 %{SOURCE3} $RPM_BUILD_ROOT%{_libexecdir}/%{name}/lm_sensors-modprobe-wrapper
Packit Service a64451
install -pm 755 %{SOURCE4} $RPM_BUILD_ROOT%{_libexecdir}/%{name}/lm_sensors-modprobe-r-wrapper
Packit Service a64451
Packit Service a64451
# sensord service wrapper
Packit Service a64451
install -pm 755 %{SOURCE6} $RPM_BUILD_ROOT%{_libexecdir}/%{name}/sensord-service-wrapper
Packit Service a64451
Packit Service a64451
Packit Service a64451
# Note non standard systemd scriptlets, since reload / stop makes no sense
Packit Service a64451
# for lm_sensors
Packit Service a64451
%triggerun -- lm_sensors < 3.3.0-2
Packit Service a64451
if [ -L /etc/rc3.d/S26lm_sensors ]; then
Packit Service a64451
    /bin/systemctl enable lm_sensors.service >/dev/null 2>&1 || :
Packit Service a64451
fi
Packit Service a64451
/sbin/chkconfig --del lm_sensors
Packit Service a64451
Packit Service a64451
# ===== main =====
Packit Service a64451
Packit Service a64451
%post
Packit Service a64451
%systemd_post lm_sensors.service
Packit Service a64451
Packit Service a64451
%preun
Packit Service a64451
%systemd_preun lm_sensors.service
Packit Service a64451
Packit Service a64451
%postun
Packit Service a64451
%systemd_postun_with_restart lm_sensors.service
Packit Service a64451
Packit Service a64451
# ==== sensord ===
Packit Service a64451
Packit Service a64451
%post sensord
Packit Service a64451
%systemd_post sensord.service
Packit Service a64451
Packit Service a64451
%preun sensord
Packit Service a64451
%systemd_preun sensord.service
Packit Service a64451
Packit Service a64451
%postun sensord
Packit Service a64451
%systemd_postun_with_restart sensord.service
Packit Service a64451
Packit Service a64451
# ===== libs =====
Packit Service a64451
Packit Service a64451
%post libs -p /sbin/ldconfig
Packit Service a64451
%postun libs -p /sbin/ldconfig
Packit Service a64451
Packit Service a64451
Packit Service a64451
%files
Packit Service a64451
%license COPYING
Packit Service a64451
%doc CHANGES CONTRIBUTORS doc README*
Packit Service a64451
%doc prog/init/fancontrol.init prog/init/README.initscripts
Packit Service a64451
%config %{_sysconfdir}/sensors3.conf
Packit Service a64451
%config(noreplace) %{_sysconfdir}/sysconfig/lm_sensors
Packit Service a64451
%dir %{_sysconfdir}/sensors.d
Packit Service a64451
%{_bindir}/*
Packit Service a64451
%{_mandir}/man1/*
Packit Service a64451
%{_mandir}/man5/*
Packit Service a64451
%{_mandir}/man8/*
Packit Service a64451
%{_sbindir}/*
Packit Service a64451
%{_unitdir}/lm_sensors.service
Packit Service a64451
%{_unitdir}/fancontrol.service
Packit Service a64451
%dir %{_libexecdir}/%{name}
Packit Service a64451
%{_libexecdir}/%{name}/lm_sensors-modprobe*wrapper
Packit Service a64451
%exclude %{_sbindir}/sensord
Packit Service a64451
%exclude %{_mandir}/man8/sensord.8.gz
Packit Service a64451
Packit Service a64451
%files libs
Packit Service a64451
%{_libdir}/*.so.*
Packit Service a64451
%license COPYING.LGPL
Packit Service a64451
Packit Service a64451
%files devel
Packit Service a64451
%{_includedir}/sensors
Packit Service a64451
%{_libdir}/lib*.so
Packit Service a64451
%{_mandir}/man3/*
Packit Service a64451
Packit Service a64451
%files sensord
Packit Service a64451
%doc prog/sensord/README
Packit Service a64451
%{_sbindir}/sensord
Packit Service a64451
%{_mandir}/man8/sensord.8.gz
Packit Service a64451
%config(noreplace) %{_sysconfdir}/sysconfig/sensord
Packit Service a64451
%{_unitdir}/sensord.service
Packit Service a64451
%{_libexecdir}/%{name}/sensord-service-wrapper
Packit Service a64451
Packit Service a64451
Packit Service a64451
%changelog
Packit Service a64451
* Fri Oct 18 2019 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-21.20180522git70f7e08
Packit Service a64451
- Fix printing CPU info on non-x86 architectures in sensors-detect
Packit Service a64451
- Resolves: rhbz#1752854
Packit Service a64451
- Fix printing lm_sensors version in sensors-detect and pwmconfig
Packit Service a64451
- Resolves: rhbz#1677414
Packit Service a64451
Packit Service a64451
* Mon May 06 2019 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-20.20180522git70f7e08
Packit Service a64451
- Added explicit Requires on lm_sensors-libs
Packit Service a64451
- Resolves: rhbz#1706145
Packit Service a64451
Packit Service a64451
* Fri May 03 2019 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-19.20180522git70f7e08
Packit Service a64451
- Fixed stale links and outdated info
Packit Service a64451
- Resolves: rhbz#1693347
Packit Service a64451
Packit Service a64451
* Wed Apr 24 2019 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-18.20180522git70f7e08
Packit Service a64451
- Detect AMD Rome - Family 17h model 30h
Packit Service a64451
- Resolves: rhbz#1650191
Packit Service a64451
Packit Service a64451
* Tue Jul 17 2018 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-17.20180522git70f7e08
Packit Service a64451
- Corrected the License tag
Packit Service a64451
Packit Service a64451
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-16.20180522git70f7e08
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Mon Jun 25 2018 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-15.20180522git70f7e08
Packit Service a64451
- New version
Packit Service a64451
Packit Service a64451
* Fri May 04 2018 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-14
Packit Service a64451
- Add detection of AMD Ryzen w/ Vega graphics
Packit Service a64451
- Resolves: rhbz#1573399
Packit Service a64451
- Covscan fixes
Packit Service a64451
Packit Service a64451
* Fri Apr 20 2018 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-13
Packit Service a64451
- Detect AMD Family 17h thermal sensors
Packit Service a64451
- Resolves: rhbz#1569542
Packit Service a64451
Packit Service a64451
* Thu Apr 12 2018 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-12
Packit Service a64451
- Use LDFLAGS when linking executables
Packit Service a64451
- Resolves: rhbz#1548691
Packit Service a64451
Packit Service a64451
* Mon Apr 09 2018 Rafael Santos <rdossant@redhat.com> - 3.4.0-11
Packit Service a64451
- Use standard Fedora build and linker flags (bug #1548691)
Packit Service a64451
Packit Service a64451
* Mon Feb 19 2018 Ondřej Lysoněk <olysonek@redhat.com> - 3.4.0-10
Packit Service a64451
- Add gcc to BuildRequires
Packit Service a64451
Packit Service a64451
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-9
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-8
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-7
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-6
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Sun May 15 2016 Hans de Goede <hdegoede@redhat.com> - 3.4.0-5
Packit Service a64451
- Rebuilt for new librrd
Packit Service a64451
Packit Service a64451
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-4
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Thu Aug 20 2015 Jaromir Capik <jcapik@redhat.com> - 3.4.0-3
Packit Service a64451
- Removing 'noreplace' for sensors3.conf (#1239216)
Packit Service a64451
Packit Service a64451
* Tue Aug 04 2015 Jaromir Capik <jcapik@redhat.com> - 3.4.0-2
Packit Service a64451
- Adding /etc/sensors.d in the %%files (#1236309)
Packit Service a64451
Packit Service a64451
* Thu Jun 25 2015 Jaromir Capik <jcapik@redhat.com> - 3.4.0-1
Packit Service a64451
- Updating to 3.4.0 (#1235660)
Packit Service a64451
Packit Service a64451
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.5-6
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.5-5
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.5-4
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Sat Jan 25 2014 Ville Skyttä <ville.skytta@iki.fi> - 3.3.5-3
Packit Service a64451
- Own the %%{_libexecdir}/lm_sensors dir.
Packit Service a64451
- Fix case of Public Domain in license tag.
Packit Service a64451
Packit Service a64451
* Fri Jan 24 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.5-2
Packit Service a64451
- systemd units rework
Packit Service a64451
Packit Service a64451
* Thu Jan 23 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.5-1
Packit Service a64451
- Update to 3.3.5 (#1056448)
Packit Service a64451
Packit Service a64451
* Sun Jan 19 2014 Ville Skyttä <ville.skytta@iki.fi> - 3.3.4-11
Packit Service a64451
- Do not order services after syslog.target.
Packit Service a64451
Packit Service a64451
* Fri Jan 10 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.4-10
Packit Service a64451
- Enhancing the sensord service wrapper (#863986)
Packit Service a64451
- UsrMove and libexec path tunings
Packit Service a64451
Packit Service a64451
* Thu Jan 09 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.4-9
Packit Service a64451
- Introducing sensord service wrapper (#949521)
Packit Service a64451
Packit Service a64451
* Mon Sep 09 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.4-8
Packit Service a64451
- Fixing use of uninitialized 'vendor_id' value on ppc (#996590)
Packit Service a64451
- Fixing bogus date in the changelog
Packit Service a64451
Packit Service a64451
* Wed Aug 07 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.4-7
Packit Service a64451
- Fixing the license tag
Packit Service a64451
Packit Service a64451
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 3.3.4-6
Packit Service a64451
- Perl 5.18 rebuild
Packit Service a64451
Packit Service a64451
* Thu Aug 01 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.4-5
Packit Service a64451
- RH man page scan (#948520)
Packit Service a64451
Packit Service a64451
* Tue Jul 30 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.4-4
Packit Service a64451
- Avoiding modprobe errors when no sensors configured (#834215)
Packit Service a64451
- Introducing fancontrol service file (#988922)
Packit Service a64451
- Replacing hardcoded systemd unit path with _unitdir macro
Packit Service a64451
Packit Service a64451
* Thu Jul 25 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.4-3
Packit Service a64451
- Avoiding warnings when piping /dev/null to sensors-detect (#843507)
Packit Service a64451
Packit Service a64451
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 3.3.4-2
Packit Service a64451
- Perl 5.18 rebuild
Packit Service a64451
Packit Service a64451
* Wed May 29 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.4-1
Packit Service a64451
- Update to 3.3.4
Packit Service a64451
Packit Service a64451
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.3-3
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Thu Jan 17 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.3-2
Packit Service a64451
- Fixing sensors-detect to avoid failures when the /dev/port is missing (#843521)
Packit Service a64451
Packit Service a64451
* Thu Dec 06 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.3-1
Packit Service a64451
- Update to 3.3.3
Packit Service a64451
Packit Service a64451
* Wed Sep 26 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.2-5
Packit Service a64451
- #856120 - sensors - Inconsistency between man page and help
Packit Service a64451
Packit Service a64451
* Mon Aug 27 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.2-4
Packit Service a64451
- Migration to new systemd scriptlet macros
Packit Service a64451
Packit Service a64451
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-3
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Mon Apr 02 2012 Nikola Pajkovsky <npajkovs@redhat.com> - 3.3.2-2
Packit Service a64451
- rhbz#806364 - sensors-detect fails with "/sys/bus/pci/devices: No such file or directory at /usr/sbin/sensors-detect line 2895"
Packit Service a64451
  PCI bus is always required even if it might be missing on
Packit Service a64451
  some platforms. So don't choke is it is missing. Patch from
Packit Service a64451
  Jaromir Capik
Packit Service a64451
Packit Service a64451
* Thu Mar 15 2012 Nikola Pajkovsky <npajkovs@redhat.com> - 3.3.2-1
Packit Service a64451
- upstream lm-sensors-3.3.2
Packit Service a64451
Packit Service a64451
* Mon Feb 13 2012 Nikola Pajkovsky <npajkovs@redhat.com> - 3.3.1-3
Packit Service a64451
- 789761 - Provide native systemd service
Packit Service a64451
Packit Service a64451
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.1-2
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Fri Jul 22 2011 Nikola Pajkovsky <npajkovs@redhat.com> - 3.3.1-1
Packit Service a64451
- new upstream release 3.3.1
Packit Service a64451
Packit Service a64451
* Sun Apr 24 2011 Hans de Goede <hdegoede@redhat.com> - 3.3.0-2
Packit Service a64451
- Fix sensors-detect with the udevdb now living under /run (#697565)
Packit Service a64451
- Provide a native systemd service file (#692159)
Packit Service a64451
- Drop systemv initscript
Packit Service a64451
- Drop configuration conversion scripts, the last Fedora with lm_sensors-2.x
Packit Service a64451
  was Fedora 8 ! 
Packit Service a64451
Packit Service a64451
* Tue Mar 29 2011 Nikola Pajkovsky <npajkovs@redhat.com> - 3.3.0
Packit Service a64451
- new upstream release 3.3.0
Packit Service a64451
- Resolved: 691548 - include empty /etc/sensors.d into the package
Packit Service a64451
Packit Service a64451
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.0-2
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Mon Oct 11 2010 Nikola Pajkovsky <npajkovs@redhat.com> - 3.2.0
Packit Service a64451
- new upstream release 3.2.0
Packit Service a64451
- change lincese to LGPLv2.1
Packit Service a64451
Packit Service a64451
* Fri Sep 03 2010 Nikola Pajkovsky <npajkovs@redhat.com> - 3.1.2.svn5857
Packit Service a64451
- update lm_sensors from svn
Packit Service a64451
- drop patch lm_sensors-3.1.2-lm85.patch(already in svn)
Packit Service a64451
Packit Service a64451
* Wed Mar 31 2010 Nikola Pajkovsky <npajkovs@redhat.com> - 3.1.2-2
Packit Service a64451
- patch lm_sensors-3.1.2-lm85.patch add into sensors-detect driver lm85
Packit Service a64451
- Resolved: 578527 - sensors-detect fails to detect
Packit Service a64451
Packit Service a64451
* Wed Feb 3 2010 Nikola Pajkovsky <npajkovs@redhat.com> - 3.1.2-1
Packit Service a64451
- new upstream release
Packit Service a64451
- drop sensors-detect, beacuse it was taken form svn(531126)
Packit Service a64451
Packit Service a64451
* Thu Dec 17 2009 Nikola Pajkovsky <npajkovs@redhat.com> - 3.1.1-7
Packit Service a64451
- Resovles: #226101 - Merge Review: lm_sensors
Packit Service a64451
Packit Service a64451
* Tue Nov 10 2009 Dennis Gilmore <dennis@ausil.us> - 3.1.1-6
Packit Service a64451
- remove Excludearch s390 s390x
Packit Service a64451
Packit Service a64451
* Tue Nov 10 2009 Nikola Pajkovsky <n.pajkovsky@gmail.com> - 3.1.1-5
Packit Service a64451
- Resolved: 531126 - sensors-detect gives perl uninitialized var warnings
Packit Service a64451
Packit Service a64451
* Wed Sep 30 2009 Hans de Goede <hdegoede@redhat.com> 3.1.1-4
Packit Service a64451
- Create a sensor3.conf.5 symlink to the sensors.conf.5 manpage (#526178)
Packit Service a64451
Packit Service a64451
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-3
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Fri Jul 10 2009 Adam Jackson <ajax@redhat.com> 3.1.1-2
Packit Service a64451
- Add -libs subpackage so perl doesn't get dragged in just for linking
Packit Service a64451
  against libsensors.
Packit Service a64451
Packit Service a64451
* Tue Jul  7 2009 Nikola Pajokvsky <npajovs@redhat.com> 3.1.1-1
Packit Service a64451
- New release 3.1.1
Packit Service a64451
Packit Service a64451
* Sun Mar  8 2009 Hans de Goede <hdegoede@redhat.com> 3.1.0-1
Packit Service a64451
- New upstream release 3.1.0
Packit Service a64451
Packit Service a64451
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.3-2
Packit Service a64451
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
Packit Service a64451
Packit Service a64451
* Thu Jan  1 2009 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.3-1
Packit Service a64451
- New upstream release 3.0.3
Packit Service a64451
- Add a patch to support drivers with an ACPI "bus" (new Asus atk0110 drv)
Packit Service a64451
Packit Service a64451
* Tue Jul  1 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.2-1
Packit Service a64451
- New upstream release 3.0.2
Packit Service a64451
- This release contains various important fixes to sensors-detect, which made
Packit Service a64451
  it unsafe to run sensors-detect on certain systems
Packit Service a64451
- Drop all patches (all upstreamed)
Packit Service a64451
Packit Service a64451
* Sat Jun 14 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.1-6
Packit Service a64451
- Rebuild for new rrdtool
Packit Service a64451
Packit Service a64451
* Sun Mar 16 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.1-5
Packit Service a64451
- Make libsensors work with hwmon class entries without a device link
Packit Service a64451
  such as the acpi thermal_zone driver (bz 437637)
Packit Service a64451
Packit Service a64451
* Wed Mar 12 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.1-4
Packit Service a64451
- One (last) minor cosmetical fix to the initscript
Packit Service a64451
Packit Service a64451
* Tue Feb 26 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.1-3
Packit Service a64451
- Some improvements to the lsb-retcodes and service-default-off patches
Packit Service a64451
  from a review by upstream
Packit Service a64451
Packit Service a64451
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.0.1-2
Packit Service a64451
- Autorebuild for GCC 4.3
Packit Service a64451
Packit Service a64451
* Mon Feb 11 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.1-1
Packit Service a64451
- New upstream release 3.0.1
Packit Service a64451
- Drop several patches which are included in the new upstream release
Packit Service a64451
- Add a patch to make the initscript returncodes LSB compliant (bug 431884)
Packit Service a64451
Packit Service a64451
* Tue Dec 18 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.0-3
Packit Service a64451
- Fix sensors.conf errors with certain chips (patch send in by upstream)
Packit Service a64451
Packit Service a64451
* Thu Dec 13 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.0-2
Packit Service a64451
- Fix sensord rdd mode (patch send in by upstream)
Packit Service a64451
Packit Service a64451
* Sat Nov 24 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 3.0.0-1
Packit Service a64451
- New upstream release 3.0.0 (final)
Packit Service a64451
Packit Service a64451
* Sat Nov 10 2007 Hans de Goede <j.w.r.degoede@hhs.nl> - 3.0.0-0.1.rc3
Packit Service a64451
- New upstream release 3.0.0-rc3
Packit Service a64451
- Remove eeprommer sub-package as eeprommer (and the other i2c-tools)
Packit Service a64451
  have moved to the new i2c-tools package
Packit Service a64451
Packit Service a64451
* Wed Aug 22 2007 Hans de Goede <j.w.r.degoede@hhs.nl> - 2.10.4-2
Packit Service a64451
- Update License tag for new Licensing Guidelines compliance
Packit Service a64451
- Disable service by default (no use without any sensors being configured),
Packit Service a64451
  enable it automatically on a successfull sensors-detect run (bz 253750)
Packit Service a64451
Packit Service a64451
* Thu Jul 19 2007 Hans de Goede <j.w.r.degoede@hhs.nl> - 2.10.4-1
Packit Service a64451
- New upstream release 2.10.4
Packit Service a64451
- Drop upstreamed patches 4, 5, 7 and 8
Packit Service a64451
- Drop no longer need patch 3
Packit Service a64451
- Move libsensors.3 manpage to -devel sub-package
Packit Service a64451
- Move sensord.8 manpage to -sensord sub-package
Packit Service a64451
- Switch from ExclusiveArch: alph ix86 x86_64, to ExcludeArch: s390 s390x,
Packit Service a64451
  so that we get build on ppc, arm, etc. too. (bz 181037 amongst others)
Packit Service a64451
Packit Service a64451
* Mon Jul  9 2007 Hans de Goede <j.w.r.degoede@hhs.nl> - 2.10.3-3
Packit Service a64451
- Remove no longer needed patches 1, 2 & 6
Packit Service a64451
- Various specfile cleanups to match the Fedora packaging guidelines
Packit Service a64451
  this fixes bz 238787 amongst other things
Packit Service a64451
- Use lm_sensors provided initscript instead of our own private one, this
Packit Service a64451
  stops the sometimes unnecessary loading of i2c-dev
Packit Service a64451
- No longer ship a static version of the library in -devel
Packit Service a64451
- Compile sensord and eepromer extra programs and put each in its own
Packit Service a64451
  subpackage (bz 236904)
Packit Service a64451
Packit Service a64451
* Tue Apr 17 2007 Phil Knirsch <pknirsch@redhat.com> - 2.10.3-2
Packit Service a64451
- Fixed one more problem with sensors-detect (#215984)
Packit Service a64451
Packit Service a64451
* Tue Apr 17 2007 Phil Knirsch <pknirsch@redhat.com> - 2.10.3-1
Packit Service a64451
- Update to lm_sensors-2.10.3
Packit Service a64451
Packit Service a64451
* Thu Mar 15 2007 Phil Knirsch <pknirsch@redhat.com> - 2.10.2-2
Packit Service a64451
- Only require dmidecode on supported archs (#232264)
Packit Service a64451
Packit Service a64451
* Tue Feb 06 2007 Florian La Roche <laroche@redhat.com> - 2.10.2-1
Packit Service a64451
- Update to lm_sensors-2.10.2
Packit Service a64451
Packit Service a64451
* Thu Nov 23 2006 Phil Knirsch <pknirsch@redhat.com> - 2.10.1-1.fc7
Packit Service a64451
- Update to lm_sensors-2.10.1
Packit Service a64451
- Tiny specfile updates
Packit Service a64451
Packit Service a64451
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.10.0-3.1
Packit Service a64451
- rebuild
Packit Service a64451
Packit Service a64451
* Sun Jul 09 2006 Warren Togami <wtogami@redhat.com> 2.10.0-3
Packit Service a64451
- change buildreq from sysfsutils-devel to libsysfs-devel (#198055)
Packit Service a64451
Packit Service a64451
* Mon Jun 05 2006 Jesse Keating <jkeating@redhat.com> 2.10.0-2
Packit Service a64451
- Fix BuildRequires, added flex. (#193511)  Changed to Requires(post) and 
Packit Service a64451
  (postun)
Packit Service a64451
Packit Service a64451
* Fri May 12 2006 Phil Knirsch <pknirsch@redhat.com> 2.10.0-1
Packit Service a64451
- Update to lm_sensors-2.10.0
Packit Service a64451
- Added missing buildprereq on sysfsutils-devel (#189196)
Packit Service a64451
- Added missing prereq on chkconfig (#182838)
Packit Service a64451
- Some fiddling to make it build on latest kernels
Packit Service a64451
Packit Service a64451
* Wed Feb 15 2006 Phil Knirsch <pknirsch@redhat.com> 2.9.2-2
Packit Service a64451
- Added missing dependency to chkconfig
Packit Service a64451
Packit Service a64451
* Fri Feb 10 2006 Phil Knirsch <pknirsch@redhat.com> 2.9.2-1
Packit Service a64451
- Update to lm_sensors-2.9.2
Packit Service a64451
- Fixed wrong subsys locking (#176965)
Packit Service a64451
- Removed lm_sensors pwmconfig, has been fixed upstream now
Packit Service a64451
Packit Service a64451
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.9.1-6.1
Packit Service a64451
- rebuilt for new gcc4.1 snapshot and glibc changes
Packit Service a64451
Packit Service a64451
* Mon Jan 16 2006 Peter Jones <pjones@redhat.com> 2.9.1-6
Packit Service a64451
- fix initscript subsys locking
Packit Service a64451
Packit Service a64451
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com> 2.9.1-5.1
Packit Service a64451
- rebuilt for new gcj
Packit Service a64451
Packit Service a64451
* Tue Nov 08 2005 Phil Knirsch <pknirsch@redhat.com> 2.9.1-5
Packit Service a64451
- Fixed lm_sensors pwmconfig patch.
Packit Service a64451
Packit Service a64451
* Thu Sep 01 2005 Phil Knirsch <pknirsch@redhat.com> 2.9.1-4
Packit Service a64451
- Fixed CAN-2005-2672 lm_sensors pwmconfig insecure temporary file usage
Packit Service a64451
  (#166673)
Packit Service a64451
- Fixed missing optflags during build (#166910)
Packit Service a64451
Packit Service a64451
* Mon May 23 2005 Phil Knirsch <pknirsch@redhat.com> 2.9.1-3
Packit Service a64451
- Update to lm_sensors-2.9.1
Packit Service a64451
- Fixed wrong/missing location variables for make user
Packit Service a64451
- Fixed missing check for /etc/modprobe.conf in sensors-detect (#139245)
Packit Service a64451
Packit Service a64451
* Wed Mar 02 2005 Phil Knirsch <pknirsch@redhat.com> 2.8.8-5
Packit Service a64451
- bump release and rebuild with gcc 4
Packit Service a64451
Packit Service a64451
* Tue Jan 11 2005 Dave Jones <davej@redhat.com> 2.8.8-4
Packit Service a64451
- Add dependancy on dmidecode rather than the obsolete kernel-utils.
Packit Service a64451
- Don't delete dmidecode from the buildroot.
Packit Service a64451
Packit Service a64451
* Thu Dec 23 2004 Phil Knirsch <pknirsch@redhat.com> 2.8.8-2
Packit Service a64451
- Fixed typo in initscript (#139030)
Packit Service a64451
Packit Service a64451
* Tue Dec 21 2004 Phil Knirsch <pknirsch@redhat.com> 2.8.8-1
Packit Service a64451
- Added Buildprereq for bison (#138888)
Packit Service a64451
- Update to lm_sensors-2.8.8
Packit Service a64451
Packit Service a64451
* Thu Oct 14 2004 Harald Hoyer <harald@redhat.com> 2.8.7-2
Packit Service a64451
- added initial /etc/sysconfig/lm_sensors
Packit Service a64451
- added initscript
Packit Service a64451
- MAKEDEV the initial i2c devices in initscript and sensors-detect
Packit Service a64451
Packit Service a64451
* Tue Jul 06 2004 Phil Knirsch <pknirsch@redhat.com> 2.8.7-1
Packit Service a64451
- Update to latest upstream version.
Packit Service a64451
Packit Service a64451
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
Packit Service a64451
- rebuilt
Packit Service a64451
Packit Service a64451
* Tue Apr 13 2004 Phil Knirsch <pknirsch@redhat.com> 2.8.6-1
Packit Service a64451
- Update to latest upstream version.
Packit Service a64451
- Enabled build for x86_64.
Packit Service a64451
Packit Service a64451
* Mon Mar 08 2004 Phil Knirsch <pknirsch@redhat.com> 2.8.3-5
Packit Service a64451
- Fixed initscript to work with 2.6 kernel and made it more quiet (#112286).
Packit Service a64451
- Changed proposed location of sensors (#116496).
Packit Service a64451
- Fixed rpath issue.
Packit Service a64451
Packit Service a64451
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
Packit Service a64451
- rebuilt
Packit Service a64451
Packit Service a64451
* Thu Feb 05 2004 Phil Knirsch <pknirsch@redhat.com> 2.8.3-3
Packit Service a64451
- Modified sensors.conf to a noreplace config file.
Packit Service a64451
Packit Service a64451
* Wed Feb 04 2004 Phil Knirsch <pknirsch@redhat.com> 2.8.3-2
Packit Service a64451
- Fixed newly included initscript (#114608).
Packit Service a64451
Packit Service a64451
* Thu Jan 29 2004 Phil Knirsch <pknirsch@redhat.com> 2.8.3-1
Packit Service a64451
- Updated to latest upstream version 2.8.3
Packit Service a64451
Packit Service a64451
* Thu Jan 08 2004 Phil Knirsch <pknirsch@redhat.com> 2.8.2-1
Packit Service a64451
- Update to latest upstream version 2.8.2
Packit Service a64451
- Fixed wrong & usage in if expression.
Packit Service a64451
- Included several new perl tools.
Packit Service a64451
Packit Service a64451
* Fri Oct 24 2003 Phil Knirsch <pknirsch@redhat.com> 2.8.1-1
Packit Service a64451
- Update to latest upstream version 2.8.1
Packit Service a64451
Packit Service a64451
* Wed Jul 23 2003 Phil Knirsch <pknirsch@redhat.com> 2.8.0-1
Packit Service a64451
- Update to latest upstream version 2.8.0
Packit Service a64451
Packit Service a64451
* Fri Jun 27 2003 Phil Knirsch <pknirsch@redhat.com> 2.6.5-6.1
Packit Service a64451
- rebuilt
Packit Service a64451
Packit Service a64451
* Fri Jun 27 2003 Phil Knirsch <pknirsch@redhat.com> 2.6.5-6
Packit Service a64451
- Included prog/init scripts and README (#90606).
Packit Service a64451
- Require kernel-utils for dmidecode (#88367, #65057).
Packit Service a64451
Packit Service a64451
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 2.6.5-5
Packit Service a64451
- rebuilt
Packit Service a64451
Packit Service a64451
* Wed Dec 04 2002 Phil Knirsch <pknirsch@redhat.com> 2.6.5-4
Packit Service a64451
- Bump release and try to rebuild.
Packit Service a64451
Packit Service a64451
* Tue Dec  3 2002 Tim Powers <timp@redhat.com> 2.6.5-3
Packit Service a64451
- don't include dmidecode, conflicts with kernel-utils
Packit Service a64451
Packit Service a64451
* Fri Nov 29 2002 Phil Knirsch <pknirsch@redhat.com> 2.6.5-2
Packit Service a64451
- Added patch to fix utf8 problem with sensors-detect.
Packit Service a64451
- Fixed Copyright: to License: in specfile
Packit Service a64451
Packit Service a64451
* Fri Nov 29 2002 Phil Knirsch <pknirsch@redhat.com> 2.6.5-1
Packit Service a64451
- Updated userlevel to 2.6.5.
Packit Service a64451
- Include all the /usr/sbin/ apps (like dmidecode).
Packit Service a64451
Packit Service a64451
* Fri Oct 04 2002 Phil Knirsch <pknirsch@redhat.com> 2.6.3-3
Packit Service a64451
- Removed Serverworks patch as it is already in sensors-detect.
Packit Service a64451
Packit Service a64451
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.6.3-2
Packit Service a64451
- automated rebuild
Packit Service a64451
Packit Service a64451
* Tue Jun 18 2002 Phil Knirsch <pknirsch@redhat.com> 2.6.3-1
Packit Service a64451
- Updated of userland package to 2.6.3
Packit Service a64451
- Fixed file packaging bug (#66126).
Packit Service a64451
Packit Service a64451
* Thu May 23 2002 Tim Powers <timp@redhat.com> 2.6.2-2
Packit Service a64451
- automated rebuild
Packit Service a64451
Packit Service a64451
* Mon Jan 28 2002 Phil Knirsch <pknirsch@redhat.com> 2.6.2-1
Packit Service a64451
- Update to version 2.6.2
Packit Service a64451
Packit Service a64451
* Wed Aug 22 2001 Philipp Knirsch <pknirsch@redhat.de> 2.5.5-6
Packit Service a64451
- Added the SMBus CSB5 detection (#50468)
Packit Service a64451
Packit Service a64451
* Mon Jul  9 2001 Philipp Knirsch <pknirsch@redhat.de>
Packit Service a64451
- Fixed duplicate Summary: entry for devel package (#47714)
Packit Service a64451
Packit Service a64451
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
Packit Service a64451
- Bump release + rebuild.
Packit Service a64451
Packit Service a64451
* Thu Feb 15 2001 Philipp Knirsch <pknirsch@redhat.de>
Packit Service a64451
- Removed the i2c block patch as our newest kernel doesn't need it anymore.
Packit Service a64451
Packit Service a64451
* Mon Feb  5 2001 Matt Wilson <msw@redhat.com>
Packit Service a64451
- added patch to not include sys/perm.h, as it's gone now.
Packit Service a64451
- added alpha to ExclusiveArch
Packit Service a64451
- use make "LINUX_HEADERS=/usr/include" to get kernel headers
Packit Service a64451
Packit Service a64451
* Tue Jan 16 2001 Philipp Knirsch <pknirsch@redhat.de>
Packit Service a64451
- Updated to 2.5.5 which includes the Serverworks drivers. Kernel modules are
Packit Service a64451
  not included though es they have to go into the kernel package
Packit Service a64451
- Had to remove all references to I2C_SMBUS_I2C_BLOCK_DATA from
Packit Service a64451
  kernel/busses/i2c-i801.c and prog/dump/i2cdump.c as this is not defined in
Packit Service a64451
  our current kernel package
Packit Service a64451
Packit Service a64451
* Tue Dec 19 2000 Philipp Knirsch <pknirsch@redhat.de>
Packit Service a64451
- update to 2.5.4
Packit Service a64451
- updated URL and Source entries to point to new home of lm-sensors
Packit Service a64451
- rebuild
Packit Service a64451
Packit Service a64451
* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
Packit Service a64451
- fix summary
Packit Service a64451
Packit Service a64451
* Fri Jul 28 2000 Harald Hoyer <harald@redhat.de>
Packit Service a64451
- added static library to devel package
Packit Service a64451
Packit Service a64451
* Thu Jul 20 2000 Nalin Dahyabhai <nalin@redhat.com>
Packit Service a64451
- update to 2.5.2
Packit Service a64451
- build against a kernel that actually has new i2c code in it
Packit Service a64451
Packit Service a64451
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
Packit Service a64451
- automatic rebuild
Packit Service a64451
Packit Service a64451
* Mon Jun 12 2000 Nalin Dahyabhai <nalin@redhat.com>
Packit Service a64451
- initial package without kernel support