Update package version to 2.03.41

This commit is contained in:
2026-06-01 14:42:36 +03:00
parent ec9fd55fff
commit 8538f10267
4 changed files with 31 additions and 4 deletions
+6 -3
View File
@@ -1,6 +1,6 @@
name: lvm2 name: lvm2
description: Logical Volume Manager 2 description: Logical Volume Manager 2
version: 2.03.40 version: 2.03.41
revision: 1 revision: 1
url: https://sourceware.org/lvm2/ url: https://sourceware.org/lvm2/
license: GPL2,LGPL2.1 license: GPL2,LGPL2.1
@@ -18,19 +18,22 @@ downloads:
- url: https://gitlab.com/lvmteam/lvm2/-/archive/v${BPM_PKG_VERSION//./_}/lvm2-v${BPM_PKG_VERSION//./_}.tar.gz - url: https://gitlab.com/lvmteam/lvm2/-/archive/v${BPM_PKG_VERSION//./_}/lvm2-v${BPM_PKG_VERSION//./_}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: d36e058866df93de77df199d275f9fd2ca24317c8967f4a925bf8d3b83567140 checksum: e80564b8df674f8fe8db6c6fc6977f245eed46a1e21d74af0545bfbdeb92f59b
split_packages: split_packages:
- name: lvm2 - name: lvm2
keep: keep:
- etc/lvm/lvm.conf - etc/lvm/lvm.conf
- etc/lvm/lvmlocal.conf - etc/lvm/lvmlocal.conf
depends: depends:
- bash
- device-mapper - device-mapper
- libaio - libaio
- readline - readline
- thin-provisioning-tools
- util-linux - util-linux
- name: device-mapper - name: device-mapper
description: Device mapper userspace library and tools description: Device mapper userspace library and tools
depends: depends:
- gcc-libs
- glibc - glibc
- udev - libudev
@@ -0,0 +1,23 @@
From 905ed1e4104b8719e03a44a99c514c4744939f8a Mon Sep 17 00:00:00 2001
From: Christian Hesse <[email protected]>
Date: Mon, 18 May 2026 10:02:25 +0200
Subject: [PATCH 1/1] libdm/Makefile: add an empty target install_lvm2
This is required to make a top-level `make install_lvm2` succeed.
---
libdm/Makefile.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/libdm/Makefile.in b/libdm/Makefile.in
index 34e17a3f7..866c3e230 100644
--- a/libdm/Makefile.in
+++ b/libdm/Makefile.in
@@ -102,6 +102,8 @@ endif
install: $(INSTALL_TYPE) install_include
install_device-mapper: install
+
+install_lvm2:
install_include: $(srcdir)/libdevmapper.h
$(SHOW) " [INSTALL] $<"
+2 -1
View File
@@ -4,7 +4,8 @@
prepare() { prepare() {
cd "$BPM_SOURCE" cd "$BPM_SOURCE"
patch -Np1 -i "$BPM_WORKDIR"/udev-activation-without-systemd.patch patch -Np1 -i "$BPM_WORKDIR"/0001-udev-activation-without-systemd.patch
patch -Np1 -i "$BPM_WORKDIR"/0002-libdm-makefile-add-an-empty-target-install_lvm2.patch
} }
# The build function is executed in the source directory # The build function is executed in the source directory