blob: 7bdd949d3a015dda80cc596484a75e0b174f099c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
# Maintainer: Eric Bélanger <eric@archlinux.org>
# Maintainer: Thomas Bächler <thomas@archlinux.org>
pkgbase=lvm2
pkgname=('lvm2' 'device-mapper')
pkgver=2.02.187
pkgrel=3
arch=('x86_64')
url='https://sourceware.org/lvm2/'
license=('GPL2' 'LGPL2.1')
makedepends=('git' 'systemd' 'thin-provisioning-tools')
validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17' # Alasdair G Kergon <agk@redhat.com>
'D501A478440AE2FD130A1BE8B9112431E509039F') # Marian Csontos <marian.csontos@gmail.com>
source=("git+https://sourceware.org/git/lvm2.git#tag=v${pkgver//./_}?signed"
'0001-fix-ordering-in-initramfs.patch'
'lvm2_install'
'lvm2_hook'
'sd-lvm2_install'
'11-dm-initramfs.rules')
sha256sums=('SKIP'
'7a34b263e51d5a71e0595bba163de478f4f14a26015b11e682406e4adf7ba656'
'cc51940a8437f3c8339bb9cec7e929b2cc0852ffc8a0b2463e6f67ca2b9950f6'
'97d7c92e4954bc0108e7cd183b2eb5fe7ecc97e6f56369669e6537cb6ed45d80'
'b749c2da0e9307b0c2c3858d024a19c268e01e393e876a284fe1a302427f72f1'
'e10f24b57582d6e2da71f7c80732a62e0ee2e3b867fe84591ccdb53e80fa92e0')
_backports=(
# udev: remove unsupported OPTIONS+="event_timeout" rule
'125f27ac37bc9b93cc96f64052b9681b3d479ee1'
)
prepare() {
cd lvm2/
local _c
for _c in "${_backports[@]}"; do
git log --oneline -1 "${_c}"
git show "${_c}" -- ':(exclude)WHATS_NEW' | git apply
done
patch -Np1 < ../0001-fix-ordering-in-initramfs.patch
# remove install section from systemd units that are enabled by default
sed -i -e '/^\[Install\]$/,$d' \
scripts/dm_event_systemd_red_hat.socket.in \
scripts/lvm2_lvmetad_systemd_red_hat.socket.in \
scripts/lvm2_lvmpolld_systemd_red_hat.socket.in \
scripts/lvm2_monitoring_systemd_red_hat.service.in
}
build() {
local _CONFIGUREOPTS=(
CONFIG_SHELL=/bin/bash
--prefix=/usr
--sbindir=/usr/bin
--sysconfdir=/etc
--localstatedir=/var
--enable-applib
--enable-cmdlib
--enable-dmeventd
--enable-lvmetad
--enable-lvmpolld
--enable-pkgconfig
--enable-readline
--enable-udev_rules
--enable-udev_sync
--enable-use-lvmetad
--with-cache=internal
--with-default-dm-run-dir=/run
--with-default-locking-dir=/run/lock/lvm
--with-default-pid-dir=/run
--with-default-run-dir=/run/lvm
--with-systemdsystemunitdir=/usr/lib/systemd/system
--with-thin=internal
--with-udev-prefix=/usr
)
# build system requires bash:
# https://www.redhat.com/archives/linux-lvm/2020-January/msg00004.html
# https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Defining-Variables.html
export CONFIG_SHELL=/bin/bash
cp -a lvm2/ lvm2-initramfs/
cd lvm2/
./configure \
"${_CONFIGUREOPTS[@]}" \
--enable-udev-systemd-background-jobs
make
# Build legacy udev rule for initramfs
cd ../lvm2-initramfs
./configure \
"${_CONFIGUREOPTS[@]}" \
--enable-udev-systemd-background-jobs=no
cd udev
make 69-dm-lvm-metad.rules
}
package_device-mapper() {
pkgdesc="Device mapper userspace library and tools"
url="http://sourceware.org/dm/"
depends=('glibc' 'systemd-libs' 'libudev.so')
provides=('libdevmapper.so'
'libdevmapper-event.so')
cd lvm2/
make DESTDIR="${pkgdir}" install_device-mapper
# extra udev rule for device-mapper in initramfs
install -D -m0644 "${srcdir}/11-dm-initramfs.rules" "${pkgdir}/usr/lib/initcpio/udev/11-dm-initramfs.rules"
# Install dmeventd socket and service
make DESTDIR="${pkgdir}" install_systemd_units
rm -f "${pkgdir}/usr/lib/systemd/system/"{blk-availability.service,lvm2-*}
install -d -m0755 "${pkgdir}/usr/lib/systemd/system/sockets.target.wants"
ln -sf ../dm-event.socket "${pkgdir}/usr/lib/systemd/system/sockets.target.wants/dm-event.socket"
}
package_lvm2() {
pkgdesc="Logical Volume Manager 2 utilities"
depends=('bash' "device-mapper>=${pkgver}" 'libdevmapper.so' 'systemd-libs'
'libudev.so' 'util-linux-libs' 'libblkid.so' 'readline' 'libreadline.so'
'thin-provisioning-tools')
conflicts=('lvm' 'mkinitcpio<0.7')
backup=('etc/lvm/lvm.conf'
'etc/lvm/lvmlocal.conf')
options=('!makeflags')
cd lvm2/
make DESTDIR="${pkgdir}" install_lvm2
# install applib
make -C liblvm DESTDIR="${pkgdir}" install
# /etc directories
install -d "${pkgdir}"/etc/lvm/{archive,backup}
# mkinitcpio hook
install -D -m0644 "${srcdir}/lvm2_hook" "${pkgdir}/usr/lib/initcpio/hooks/lvm2"
install -D -m0644 "${srcdir}/lvm2_install" "${pkgdir}/usr/lib/initcpio/install/lvm2"
install -D -m0644 "${srcdir}/sd-lvm2_install" "${pkgdir}/usr/lib/initcpio/install/sd-lvm2"
# extra udev rule for lvmetad in non-systemd initramfs
install -D -m0644 "${srcdir}/lvm2-initramfs/udev/69-dm-lvm-metad.rules" "${pkgdir}/usr/lib/initcpio/udev/69-dm-lvm-metad.rules"
# systemd support
make DESTDIR="${pkgdir}" install_systemd_units
rm -f "${pkgdir}/usr/lib/systemd/system/"dm-*
install -d -m0755 "${pkgdir}/usr/lib/systemd/system/sysinit.target.wants"
ln -sf ../lvm2-lvmetad.socket "${pkgdir}/usr/lib/systemd/system/sysinit.target.wants/lvm2-lvmetad.socket"
ln -sf ../lvm2-lvmpolld.socket "${pkgdir}/usr/lib/systemd/system/sysinit.target.wants/lvm2-lvmpolld.socket"
ln -sf ../lvm2-monitor.service "${pkgdir}/usr/lib/systemd/system/sysinit.target.wants/lvm2-monitor.service"
make DESTDIR="${pkgdir}" install_systemd_generators
}
|