libdevmapper: update to 1.02.104

This commit is contained in:
Juergen Daubert 2015-08-12 15:16:15 +02:00
parent a59bced983
commit 9433a01e96
3 changed files with 10 additions and 5 deletions

View File

@ -13,6 +13,7 @@ drwxr-xr-x root/root sbin/
-r-xr-xr-x root/root sbin/blkdeactivate
-r-xr-xr-x root/root sbin/dmsetup
-r-xr-xr-x root/root sbin/dmsetup.static
lrwxrwxrwx root/root sbin/dmstats -> dmsetup
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-r--r--r-- root/root usr/include/libdevmapper.h
@ -25,3 +26,4 @@ drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-r--r--r-- root/root usr/man/man8/blkdeactivate.8.gz
-r--r--r-- root/root usr/man/man8/dmsetup.8.gz
-r--r--r-- root/root usr/man/man8/dmstats.8.gz

View File

@ -1 +1 @@
38cd1953b62bd256c9e924adee01e995 LVM2.2.02.126.tgz
f262c825a4a16498482759a194cc02f5 LVM2.2.02.127.tgz

View File

@ -4,12 +4,12 @@
# Depends on: eudev
name=libdevmapper
version=1.02.103
version=1.02.104
release=1
source=(http://mirrors.kernel.org/sources.redhat.com/lvm2/LVM2.2.02.126.tgz)
source=(http://mirrors.kernel.org/sources.redhat.com/lvm2/LVM2.2.02.127.tgz)
build() {
cd LVM2.2.02.126
cd LVM2.2.02.127
# needed for static linking with eudev
export UDEV_LIBS="$(pkg-config --libs --static libudev)"
@ -31,7 +31,10 @@ build() {
make device-mapper
make DESTDIR=$PKG install_device-mapper
install -m0644 -D udev/12-dm-permissions.rules $PKG/etc/udev/rules.d/12-dm-permissions.rules.example
# symlink dmsetup to dmstats and not dmsetup.static
ln -sf dmsetup $PKG/sbin/dmstats
# pkgconfig insists on /lib one or the other way...
sed -i '/^libdir=/s|${exec_prefix}|/usr|' $PKG/usr/lib/pkgconfig/devmapper.pc
}