public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] lvm2: Update to 2.02.166
Date: Fri, 21 Oct 2016 11:12:58 +0200	[thread overview]
Message-ID: <1477041178-23422-1-git-send-email-stefan.schantl@ipfire.org> (raw)

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

This is a minor update to the latest available version of lvm2.

* Splitt package into more sub-packages.
* Enable systemd support and add scriptlets.
* Drop SELinux support.

Fixes #11215.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 lvm2/lvm2.nm | 177 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 173 insertions(+), 4 deletions(-)

diff --git a/lvm2/lvm2.nm b/lvm2/lvm2.nm
index 02e4f84..de4bcec 100644
--- a/lvm2/lvm2.nm
+++ b/lvm2/lvm2.nm
@@ -4,7 +4,7 @@
 ###############################################################################
 
 name       = lvm2
-version    = 2.02.147
+version    = 2.02.166
 release    = 1
 thisapp    = LVM2.%{version}
 
@@ -27,26 +27,195 @@ sources    = %{thisapp}.tgz
 
 build
 	requires
-		libselinux-devel
 		pkg-config
+		libblkid-devel
+		libudev-devel
 		ncurses-devel
 		readline-devel
+		systemd-devel
 	end
 
 	configure_options += \
+		--with-default-dm-run-dir=/run \
+		--with-default-run-dir=/run/lvm \
+		--with-default-pid-dir=/run/lvm \
+		--with-default-locking-dir=/run/lock/lvm \
 		--with-usrlibdir=%{libdir} \
-		--enable-pkgconfig
+		--disable-lvm1_fallback \
+		--disable-selinux \
+		--enable-fsadm \
+		--with-pool=internal \
+		--enable-write_install \
+		--with-user= \
+		--with-group= \
+		--with-device-uid=0 \
+		--with-device-gid=6 \
+		--with-device-mode=0660 \
+		--enable-dmeventd \
+		--enable-blkid_wiping \
+		--enable-pkgconfig \
+		--enable-applib \
+		--enable-cmdlib \
+		--with-udevdir=%{prefix}/lib/udev/rules.d \
+		--enable-udev_sync
+
+	test
+		# Skip the testsuite, because it requires a mounted
+		# /tmp with support for block devices (without "nodev")
+		# and at least one available loopback device, which is not
+		# available in or chroot build environment.
+	end
+
+	install_cmds
+		make install_system_dirs DESTDIR=%{BUILDROOT}
+		make install_systemd_units DESTDIR=%{BUILDROOT}
+		make install_systemd_generators DESTDIR=%{BUILDROOT}
+		make install_tmpfiles_configuration DESTDIR=%{BUILDROOT}
+	end
 end
 
 packages
 	package %{name}
+		prerequires += \
+			systemd-units
+
+		requires
+			%{name}-libs = %{thisver}
+		end
+
+		script postin
+			systemctl daemon-reload >/dev/null 2>&1 || :
+
+			# Enable lvm2-monitor.service on completely new installations.
+			systemctl --no-reload enable lvm2-monitor.service >/dev/null 2>&1 || :
+		end
+
+		script preun
+			systemctl --no-reload disable lvm2-monitor.service >/dev/null 2>&1 || :
+			systemctl stop lvm2-monitor.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 lvm2-monitor.service >/dev/null 2>&1 || :
+		end
+	end
+
+	package %{name}-libs
+		template LIBS
+
+		requires
+			libdevmapper = %{thisver}
+		end
+
+		files += \
+			%{libdir}/libdevmapper-event-lvm2.so.* \
+			%{libdir}/device-mapper
+	end
+
+	package %{name}-devel
+		template DEVEL
+	end
+
+	package device-mapper
+		summary = Device mapper utility.
+		description
+			This package contains the supporting userspace utility, dmsetup,
+			for the kernel device-mapper and the dmeventd daemon for monitoring
+			the state of device-mapper devices.
+		end
+
+		prerequires += \
+			systemd-units
+
+		requires
+			libdevmapper = %{thisver}
+			util-linux >= 2.24
+		end
+
+		conflicts
+			dracut < 002
+		end
+
+		files
+			%{sbindir}/blkdeactivate
+			%{sbindir}/dmeventd
+			%{sbindir}/dmsetup
+			%{sbindir}/dmstats
+			%{mandir}/man8/blkdeactivate.8.gz
+			%{mandir}/man8/dmeventd.8.gz
+			%{mandir}/man8/dmsetup.8.gz
+			%{mandir}/man8/dmstats.8.gz
+			%{udevdir}/10-dm.rules
+			%{udevdir}/13-dm-disk.rules
+			%{udevdir}/95-dm-notify.rules
+			%{unitdir}/dm-event.socket
+			%{unitdir}/dm-event.service
+		end
+
+		script postin
+			systemctl daemon-reload >/dev/null 2>&1 || :
+
+			# dm-event.socket is always enabled and started and ready to
+			# serve if dmeventd is used.
+			systemctl --no-reload enable dm-event.socket >/dev/null 2>&1 || :
+		end
+
+		script preun
+			systemctl --no-reload disable dm-event.service >/dev/null 2>&1 || :
+			systemctl --no-reload disable dm-event.socket >/dev/null 2>&1 || :
+			systemctl stop dm-event.socket >/dev/null 2>&1 || :
+			systemctl stop dm-event.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 dm-event.service >/dev/null 2>&1 || :
+		end
+	end
 
 	package libdevmapper
 		template LIBS
+
+		summary = Device-mapper shared libraries.
+		description
+			This package contains the device-mapper shared libraries,
+			libdevmapper and libdevmapper-event.
+		end
+
+		files
+			%{libdir}/libdevmapper.so.*
+			%{libdir}/libdevmapper-event.so.*
+		end
 	end
 
 	package libdevmapper-devel
-		template DEVEL
+		summary = Development libraries and headers for the device-mapper.
+		description
+			This package contains files needed to develop applications that use
+			the device-mapper libraries.
+		end
+
+		requires
+			libdevmapper = %{thisver}
+		end
+
+		files
+			%{libdir}/libdevmapper.so
+			%{libdir}/libdevmapper-event.so
+			%{includedir}/libdevmapper.h
+			%{includedir}/libdevmapper-event.h
+			%{libdir}/pkgconfig/devmapper.pc
+			%{libdir}/pkgconfig/devmapper-event.pc
+		end
 	end
 
 	package %{name}-debuginfo
-- 
2.7.4


                 reply	other threads:[~2016-10-21  9:12 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1477041178-23422-1-git-send-email-stefan.schantl@ipfire.org \
    --to=stefan.schantl@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox