diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8c583f5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+SOURCES/thermald-2.4.6.tar.gz
diff --git a/.thermald.metadata b/.thermald.metadata
new file mode 100644
index 0000000..ea72509
--- /dev/null
+++ b/.thermald.metadata
@@ -0,0 +1 @@
+1b5f2aab3b231ebcae292813424f4a54561caa12 SOURCES/thermald-2.4.6.tar.gz
diff --git a/SPECS/thermald.spec b/SPECS/thermald.spec
new file mode 100644
index 0000000..fef2853
--- /dev/null
+++ b/SPECS/thermald.spec
@@ -0,0 +1,358 @@
+# Explicitly turn on hardening, if required.
+%if 0%{?rhel} && 0%{?rhel} <= 7
+%global _hardened_build 1
+%endif
+
+%global pkgname thermal_daemon
+
+
+Name: thermald
+Version: 2.4.6
+Release: 2%{?dist}
+Summary: Thermal Management daemon
+
+# thd_cdev_modem.{cpp,h} is currently GPLv2 only
+# https://github.com/intel/thermal_daemon/issues/306
+License: GPLv2
+URL: https://github.com/intel/%{pkgname}
+Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
+
+# No cpuid.h on other arches.
+ExclusiveArch: %{ix86} x86_64
+
+BuildRequires: make
+BuildRequires: autoconf autoconf-archive
+BuildRequires: automake
+BuildRequires: dbus-glib-devel
+BuildRequires: desktop-file-utils
+BuildRequires: gcc-c++
+BuildRequires: libxml2-devel
+BuildRequires: systemd-devel
+BuildRequires: upower-devel
+BuildRequires: libevdev-devel
+BuildRequires: gtk-doc
+
+Requires: dbus%{?_isa}
+
+Requires(pre): glibc-common
+Requires(pre): shadow-utils
+
+%{?systemd_requires}
+
+%description
+%{name} monitors and controls platform temperature.
+
+Thermal issues are important to handle proactively to reduce performance
+impact. %{name} uses the existing Linux kernel infrastructure and can
+be easily enhanced.
+
+
+%package monitor
+Summary: Application for monitoring %{name}
+License: GPLv3+
+
+BuildRequires: qt5-qtbase-devel
+
+Requires: hicolor-icon-theme
+Requires: %{name}%{?_isa} == %{version}-%{release}
+
+Provides: bundled(qcustomplot) = 2.0.0-beta
+
+%description monitor
+This package contains an Application to monitor %{name} for system
+developers who want to enable application developers and their
+customers with the responsive and flexible thermal management,
+supporting optimal performance in desktop, clam-shell, mobile and
+embedded devices.
+
+
+%prep
+%autosetup -n %{pkgname}-%{version} -p 1
+
+# Create tmpfiles.d config.
+%{__mkdir} -p fedora_addons
+%{__cat} << EOF > fedora_addons/%{name}.conf
+d %{_rundir}/%{name} 0755 root root -
+EOF
+
+# Create desktop-file for the monitor-app.
+%{__cat} << EOF > fedora_addons/%{name}-monitor.desktop
+[Desktop Entry]
+Name=%{name} Monitor
+Comment=Application for monitoring %{name}
+Icon=%{name}-monitor
+Categories=System;Settings;
+Exec=%{_bindir}/ThermalMonitor
+Type=Application
+StartupNotify=true
+Terminal=false
+EOF
+
+# Create icon for the monitor-app.
+%{__cat} << EOF > fedora_addons/%{name}-monitor.svg
+
+
+EOF
+
+# Create ReadMe.txt for the monitor-app.
+%{__cat} << EOF > fedora_addons/%{name}-monitor.ReadMe.txt
+Running the thermald-monitor-app
+--------------------------------
+
+To communicate with thermald via dbus, the user has to be member
+of the "power" group. So make sure to add your user id to this
+group before using the thermald-monitor-app.
+EOF
+
+NO_CONFIGURE=1 ./autogen.sh
+
+
+%build
+%configure \
+ --disable-option-checking \
+ --disable-silent-rules
+
+%make_build
+
+# Build the monitor-app.
+pushd tools/thermal_monitor
+%{__mkdir} -p %{_target_platform}
+pushd %{_target_platform}
+%{qmake_qt5} ..
+%make_build
+popd
+popd
+
+
+%install
+%make_install
+
+# Install management-script.
+%{__install} -Dpm 0755 tools/thermald_set_pref.sh \
+ %{buildroot}%{_bindir}/%{name}-set-pref
+
+# DBus config belongs into %%{_datadir}.
+%{__mkdir} -p %{buildroot}%{_datadir}
+%{__mv} -f %{buildroot}%{_sysconfdir}/dbus-1/* %{buildroot}%{_datadir}/dbus-1/
+
+# No Upstart.
+%{__rm} -fr %{buildroot}%{_sysconfdir}/init
+
+# Setup tmpfiles.d
+%{__install} -Dpm 0644 fedora_addons/%{name}.conf \
+ %{buildroot}%{_tmpfilesdir}/%{name}.conf
+%{__install} -dm 0755 %{buildroot}%{_rundir}/%{name}
+/bin/echo "%{name}_pid" > %{buildroot}%{_rundir}/%{name}/%{name}.pid
+%{__chmod} -c 0644 %{buildroot}%{_rundir}/%{name}/%{name}.pid
+
+# Install the monitor-app.
+%{__install} -Dpm 0755 tools/thermal_monitor/%{_target_platform}/ThermalMonitor \
+ %{buildroot}%{_bindir}/ThermalMonitor
+%{__install} -Dpm 0644 fedora_addons/%{name}-monitor.desktop \
+ %{buildroot}%{_datadir}/applications/%{name}-monitor.desktop
+%{__install} -Dpm 0644 fedora_addons/%{name}-monitor.svg \
+ %{buildroot}%{_datadir}/icons/hicolor/scalable/apps/%{name}-monitor.svg
+
+
+%check
+%{_bindir}/desktop-file-validate \
+ %{buildroot}%{_datadir}/applications/*.desktop
+
+
+%pre
+/bin/getent group power >/dev/null || /sbin/groupadd -r power
+exit 0
+
+
+%post
+%systemd_post thermald.service
+
+
+%preun
+%systemd_preun thermald.service
+
+
+%postun
+%systemd_postun_with_restart thermald.service
+
+%files
+%config(noreplace) %{_sysconfdir}/%{name}
+%doc README.txt thermal_daemon_usage.txt
+%ghost %dir %{_rundir}/%{name}
+%ghost %{_rundir}/%{name}/%{name}.pid
+%license COPYING
+%{_bindir}/%{name}-set-pref
+%{_datadir}/dbus-1/system-services/org.freedesktop.%{name}.service
+%{_datadir}/dbus-1/system.d/org.freedesktop.%{name}.conf
+%{_mandir}/man5/thermal-conf.xml.5*
+%{_mandir}/man8/%{name}.8*
+%{_sbindir}/%{name}
+%{_tmpfilesdir}/%{name}.conf
+%{_unitdir}/%{name}.service
+
+
+%files monitor
+%doc fedora_addons/%{name}-monitor.ReadMe.txt
+%license tools/thermal_monitor/qcustomplot/GPL.txt
+%{_bindir}/ThermalMonitor
+%{_datadir}/applications/%{name}-monitor.desktop
+%{_datadir}/icons/hicolor/scalable/apps/%{name}-monitor.svg
+
+
+%changelog
+* Tue Aug 10 2021 Mohan Boddu - 2.4.6-2
+- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
+ Related: rhbz#1991688
+
+* Thu Jun 10 2021 Benjamin Berg - 2.4.6-1
+- Update to 2.4.6 (#1965783)
+- Update main license to GPLv2 only for now
+- Add bundled(qcustomplot) for monitor subpackage
+- Resolves: #1961047
+
+* Fri Apr 16 2021 Mohan Boddu - 2.4.1-4
+- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
+
+* Tue Feb 02 2021 Benjamin Berg - 2.4.1-3
+- Add upstream patch fixing parsing of passive targets
+
+* Wed Jan 27 2021 Fedora Release Engineering - 2.4.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Tue Dec 01 2020 Benjamin Berg - 2.4.1-1
+- New upstream release (#1903094)
+
+* Thu Nov 26 2020 Benjamin Berg - 2.4-1
+- New upstream release (#1901810)
+ Resolves: #1894178
+ Resolves: #1892534
+
+* Tue Sep 01 2020 Benjamin Berg - 2.3-2
+- Fix Lenovo kill switch (#1874462)
+
+* Tue Aug 25 2020 Benjamin Berg - 2.3-1
+- New upstream release 2.3 (rhbz#1866784)
+- Add patch to fix printf on non-64 bit
+
+* Wed Jul 29 2020 Fedora Release Engineering - 2.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Mon Jun 08 2020 Benjamin Berg - 2.2-1
+- New upstream release 2.2 (rhbz#1827883)
+
+* Fri Jan 31 2020 Fedora Release Engineering - 1.9.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
+
+* Wed Dec 18 2019 Benjamin Berg - 1.9.1-1
+- New upstream release 1.9 (rhbz#1782249)
+- Drop Patch0, it has been merged upstream
+
+* Fri Sep 20 2019 Christian Kellner - 1.9-1
+- New upstream release 1.9 (rhbz#1742290)
+- Update patch0 (taken from upstream, commit dcdaf52...)
+
+* Sat Jul 27 2019 Fedora Release Engineering - 1.8-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Fri May 17 2019 Benjamin Berg - 1.8-2
+- Fix build on i686
+
+* Fri May 17 2019 Benjamin Berg - 1.8-1
+- New upstream release (#1582506)
+
+* Sun Feb 03 2019 Fedora Release Engineering - 1.7.1-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Sat Jul 14 2018 Fedora Release Engineering - 1.7.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Fri Feb 09 2018 Fedora Release Engineering - 1.7.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Thu Dec 28 2017 Björn Esser - 1.7.1-1
+- New upstream release (#1505144)
+
+* Thu Aug 03 2017 Fedora Release Engineering - 1.6-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
+
+* Thu Jul 27 2017 Fedora Release Engineering - 1.6-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
+* Sat Jul 01 2017 Björn Esser - 1.6-6
+- Add upstreamed patch to silence compiler warnings
+
+* Sat Jul 01 2017 Björn Esser - 1.6-5
+- Replace fix for rhbz#1464548 from upstream commit
+- Add upstream patch to fix README
+
+* Fri Jun 30 2017 Björn Esser - 1.6-4
+- Add upstream patch to fix ThermalMonitor (rhbz#1464548)
+- Add several fixes from upstream
+
+* Tue Apr 11 2017 Björn Esser - 1.6-3
+- Explicitly turn on hardening, if required
+
+* Tue Apr 11 2017 Björn Esser - 1.6-2
+- Fix missing trailing semicolon in desktop-file
+
+* Tue Apr 11 2017 Björn Esser - 1.6-1
+- Initial import (rhbz#1440406)
+
+* Mon Apr 10 2017 Björn Esser - 1.6-0.4
+- Use qmake_qt5-macro and build out of tree
+
+* Sat Apr 08 2017 Björn Esser - 1.6-0.3
+- Small packaging improvements
+
+* Sat Apr 08 2017 Björn Esser - 1.6-0.2
+- Add management-script
+
+* Sat Apr 08 2017 Björn Esser - 1.6-0.1
+- Initial rpm-release (rhbz#1440406)