public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] smartmontools: Rework package.
@ 2016-10-12 12:40 Stefan Schantl
  0 siblings, 0 replies; only message in thread
From: Stefan Schantl @ 2016-10-12 12:40 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2928 bytes --]

* Enable useage of libcap-ng.
* Drop support for SELinux.
* Replace hardcoded path values.
* Enable testsuite.
* Add scriptlet for systemd.

Fixes #11229.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 smartmontools/smartmontools.nm | 55 ++++++++++++++++++++++++++++++++++--------
 1 file changed, 45 insertions(+), 10 deletions(-)

diff --git a/smartmontools/smartmontools.nm b/smartmontools/smartmontools.nm
index 222d5d9..9e85375 100644
--- a/smartmontools/smartmontools.nm
+++ b/smartmontools/smartmontools.nm
@@ -5,7 +5,7 @@
 
 name       = smartmontools
 version    = 6.5
-release    = 1
+release    = 2
 
 groups     = System/Statistics
 url        = http://smartmontools.sourceforge.net/
@@ -13,11 +13,11 @@ license    = GPLv2
 summary    = A set of tools that watches HDD S.M.A.R.T status.
 
 description
-	The smartmontools package contains two utility programs (smartctl \
-	and smartd) to control and monitor storage systems using the \
-	Self-Monitoring, Analysis and Reporting Technology System (SMART) \
-	built into most modern ATA and SCSI harddisks. In many cases, \
-	these utilities will provide advanced warning of disk degradation \
+	The smartmontools package contains two utility programs (smartctl
+	and smartd) to control and monitor storage systems using the
+	Self-Monitoring, Analysis and Reporting Technology System (SMART)
+	built into most modern ATA and SCSI harddisks. In many cases,
+	these utilities will provide advanced warning of disk degradation
 	and failure.
 end
 
@@ -26,21 +26,56 @@ source_dl  = http://sourceforge.net/projects/smartmontools/files/smartmontools/%
 build
 	requires
 		gcc-c++
-		libselinux-devel
+		libcap-ng-devel
 	end
 
 	configure_options += \
-		--mandir=/usr/share/man \
-		--sysconfdir=/etc \
-		--with-selinux
+		--mandir=%{mandir} \
+		--sysconfdir=%{sysconfdir}/%{name} \
+		--with-libcap-ng=yes \
+		--with-systemdsystemunitdir=%{unitdir}
+
+	test
+		make check
+	end
 
 	install_cmds
+		# Drop old sysvinit script.
 		rm -rvf %{BUILDROOT}/etc/rc.d
+
+		# Fix sysconfig path in systemd file.
+		sed -i 's|/etc/smartmontools/sysconfig|/etc/sysconfig|g' \
+			%{BUILDROOT}%{unitdir}/smartd.service
 	end
 end
 
 packages
 	package %{name}
+		configfiles
+			%{sysconfdir}/smartmontools/smartd.conf
+		end
+
+		prerequires
+			systemd-units
+		end
+
+		script postin
+			systemctl daemon-reload >/dev/null 2>&1 || :
+		end
+
+		script preun
+			systemctl --no-reload disable smartd.service >/dev/null 2>&1 || :
+			systemctl stop smartd.service >/dev/null 2>&1 || :
+		end
+
+		script postun
+			systemctl daemon-reload >/dev/null 2>&1 || :
+		end
+
+		script postup
+			systemctl daemon-reload >/dev/null 2>&1 || :
+			systemctl try-restart smartd.service >/dev/null 2>&1 || :
+		end
 	end
 
 	package %{name}-debuginfo
-- 
2.7.4


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-10-12 12:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-12 12:40 [PATCH] smartmontools: Rework package Stefan Schantl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox