liblockfile: upgrade 1.14 -> 1.17

Updated patches:
configure.patch
0001-Makefile.in-redefine-LOCKPROG.patch

Rename and update patch:
0001-Makefile.in-Don-t-try-to-run-ldconfig.patch

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Changqing Li
2023-03-10 09:14:59 +08:00
committed by Khem Raj
parent df126dfaf1
commit 0c9700a01f
7 changed files with 88 additions and 51 deletions
@@ -1,4 +1,4 @@
From 67843dabe1177840697839b916fd899218893ec7 Mon Sep 17 00:00:00 2001 From 8e370a2f35d0c3472ddc9068fab19d0077434c61 Mon Sep 17 00:00:00 2001
From: Mingli Yu <mingli.yu@windriver.com> From: Mingli Yu <mingli.yu@windriver.com>
Date: Thu, 19 Jul 2018 00:25:23 -0700 Date: Thu, 19 Jul 2018 00:25:23 -0700
Subject: [PATCH] Makefile.in: add DESTDIR Subject: [PATCH] Makefile.in: add DESTDIR
@@ -29,7 +29,7 @@ Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
1 file changed, 5 insertions(+), 5 deletions(-) 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/Makefile.in b/Makefile.in diff --git a/Makefile.in b/Makefile.in
index 36a6d23..1e4130e 100644 index 9c74b35..8cbda1d 100644
--- a/Makefile.in --- a/Makefile.in
+++ b/Makefile.in +++ b/Makefile.in
@@ -12,11 +12,11 @@ CC = @CC@ @@ -12,11 +12,11 @@ CC = @CC@
@@ -50,5 +50,5 @@ index 36a6d23..1e4130e 100644
MAILGROUP = @MAILGROUP@ MAILGROUP = @MAILGROUP@
-- --
2.17.1 2.25.1
@@ -1,10 +1,12 @@
From 5876bd17caac96df70ef400bfeebb155c0bd7359 Mon Sep 17 00:00:00 2001 From 8b3a5916fff4004b5b2f1e8a1d3a051346ba3901 Mon Sep 17 00:00:00 2001
From: Changqing Li <changqing.li@windriver.com> From: Changqing Li <changqing.li@windriver.com>
Date: Wed, 8 Feb 2023 10:34:45 +0800 Date: Fri, 10 Mar 2023 08:59:39 +0800
Subject: [PATCH] Makefile.in: Don't try to run ldconfig Subject: [PATCH] Makefile.in: fix install failure on host without ldconfig
when ldconfig is not installed on the build host, do_install fix syntax error when ldconfig is not installed on host
will failed with error:
when ldconfig is not installed on the build host, install will failed with
error:
ln -sf nfslock.so.0.1 /mnt/tmp-glibc/work/core2-64-wrs-linux/liblockfile/1.14-r0/image/usr/lib64/nfslock.so.0 ln -sf nfslock.so.0.1 /mnt/tmp-glibc/work/core2-64-wrs-linux/liblockfile/1.14-r0/image/usr/lib64/nfslock.so.0
install -m 644 lockfile.h maillock.h /mnt/tmp-glibc/work/core2-64-wrs-linux/liblockfile/1.14-r0/image/usr/include install -m 644 lockfile.h maillock.h /mnt/tmp-glibc/work/core2-64-wrs-linux/liblockfile/1.14-r0/image/usr/include
if test "/mnt/tmp-glibc/work/core2-64-wrs-linux/liblockfile/1.14-r0/image" = ""; then ; fi if test "/mnt/tmp-glibc/work/core2-64-wrs-linux/liblockfile/1.14-r0/image" = ""; then ; fi
@@ -16,36 +18,46 @@ if [ "mail" != "" ]; then\
/bin/sh: -c: line 1: syntax error near unexpected token `;' /bin/sh: -c: line 1: syntax error near unexpected token `;'
/bin/sh: -c: line 1: `if test "/mnt/tmp-glibc/work/core2-64-wrs-linux/liblockfile/1.14-r0/image" = ""; then ; fi' /bin/sh: -c: line 1: `if test "/mnt/tmp-glibc/work/core2-64-wrs-linux/liblockfile/1.14-r0/image" = ""; then ; fi'
Deleted line is not needed for OE, as it is cross-compile. And Upstream-Status: Submitted [https://github.com/miquels/liblockfile/pull/20]
it can also fix above error
Upstream-Status: Inappropriate [oe specific]
Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Changqing Li <changqing.li@windriver.com>
--- ---
Makefile.in | 2 -- Makefile.in | 8 ++++++--
1 file changed, 2 deletions(-) 1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/Makefile.in b/Makefile.in diff --git a/Makefile.in b/Makefile.in
index bfa0acb..ae5be56 100644 index e02d75e..5fc5b5a 100644
--- a/Makefile.in --- a/Makefile.in
+++ b/Makefile.in +++ b/Makefile.in
@@ -58,7 +58,6 @@ install_shared: shared install_static install_common @@ -9,6 +9,10 @@ NFSVER = 0.1
CFLAGS = @CFLAGS@ -I.
LDFLAGS = @LDFLAGS@
CC = @CC@
+LDCONFIG = @LDCONFIG@
+ifeq ($(LDCONFIG),)
+ LDCONFIG = ":"
+endif
prefix = $(DESTDIR)@prefix@
exec_prefix = @exec_prefix@
@@ -69,7 +73,7 @@ install_shared: shared install_static install_common
$(libdir)/liblockfile.so.$(SOVER) $(libdir)/liblockfile.so.$(SOVER)
ln -s liblockfile.so.$(SOVER) $(libdir)/liblockfile.so.$(MAJOR) ln -s liblockfile.so.$(SOVER) $(libdir)/liblockfile.so.$(MAJOR)
ln -s liblockfile.so.$(SOVER) $(libdir)/liblockfile.so ln -s liblockfile.so.$(SOVER) $(libdir)/liblockfile.so
- if test "$(DESTDIR)" = ""; then @LDCONFIG@; fi - if test "$(DESTDIR)" = ""; then @LDCONFIG@; fi
+ if test "$(DESTDIR)" = ""; then $(LDCONFIG); fi
install_common: install_common:
install -d -m 755 -g root -p $(includedir) install -d -m 755 -g root -p $(includedir)
@@ -79,7 +78,6 @@ install_nfslib: nfslib @@ -90,7 +94,7 @@ install_nfslib: nfslib
install -m 755 nfslock.so.$(NFSVER) $(nfslockdir) install -m 755 nfslock.so.$(NFSVER) $(nfslockdir)
ln -sf nfslock.so.$(NFSVER) $(libdir)/nfslock.so ln -sf nfslock.so.$(NFSVER) $(libdir)/nfslock.so
ln -sf nfslock.so.$(NFSVER) $(libdir)/nfslock.so.0 ln -sf nfslock.so.$(NFSVER) $(libdir)/nfslock.so.0
- if test "$(DESTDIR)" = ""; then @LDCONFIG@; fi - if test "$(DESTDIR)" = ""; then @LDCONFIG@; fi
+ if test "$(DESTDIR)" = ""; then $(LDCONFIG); fi
clean: test: test-stamp
rm -f *.a *.o *.so *.so.* dotlockfile @:
-- --
2.25.1 2.25.1
@@ -1,4 +1,4 @@
From 631d46efff2a6d8970e202ba5422ebedd17a8d2f Mon Sep 17 00:00:00 2001 From 0f34d1d91d641c3d5c5bb2eb11bd6eec7cfaf738 Mon Sep 17 00:00:00 2001
From: Mingli Yu <mingli.yu@windriver.com> From: Mingli Yu <mingli.yu@windriver.com>
Date: Thu, 19 Jul 2018 01:00:10 -0700 Date: Thu, 19 Jul 2018 01:00:10 -0700
Subject: [PATCH] Makefile.in: install nfslock.so and nfslock.so.0 Subject: [PATCH] Makefile.in: install nfslock.so and nfslock.so.0
@@ -14,10 +14,10 @@ Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
1 file changed, 2 insertions(+) 1 file changed, 2 insertions(+)
diff --git a/Makefile.in b/Makefile.in diff --git a/Makefile.in b/Makefile.in
index 1e4130e..0f1b506 100644 index 8cbda1d..3a74811 100644
--- a/Makefile.in --- a/Makefile.in
+++ b/Makefile.in +++ b/Makefile.in
@@ -77,6 +77,8 @@ install_common: @@ -88,6 +88,8 @@ install_common:
install_nfslib: nfslib install_nfslib: nfslib
install -d -m 755 -g root -p $(nfslockdir) install -d -m 755 -g root -p $(nfslockdir)
install -m 755 nfslock.so.$(NFSVER) $(nfslockdir) install -m 755 nfslock.so.$(NFSVER) $(nfslockdir)
@@ -25,7 +25,7 @@ index 1e4130e..0f1b506 100644
+ ln -sf nfslock.so.$(NFSVER) $(libdir)/nfslock.so.0 + ln -sf nfslock.so.$(NFSVER) $(libdir)/nfslock.so.0
if test "$(DESTDIR)" = ""; then @LDCONFIG@; fi if test "$(DESTDIR)" = ""; then @LDCONFIG@; fi
clean: test: test-stamp
-- --
2.17.1 2.25.1
@@ -1,4 +1,4 @@
From 9beb650712d448ad9c0899de9d98e9b623f9c249 Mon Sep 17 00:00:00 2001 From 05227e74b732f13ed5a2a98232676f98bba028e6 Mon Sep 17 00:00:00 2001
From: Mingli Yu <mingli.yu@windriver.com> From: Mingli Yu <mingli.yu@windriver.com>
Date: Fri, 12 Aug 2022 11:18:15 +0800 Date: Fri, 12 Aug 2022 11:18:15 +0800
Subject: [PATCH] Makefile.in: redefine LOCKPROG Subject: [PATCH] Makefile.in: redefine LOCKPROG
@@ -11,23 +11,41 @@ And it should be "/usr/bin/dotlockfile" on the target.
Upstream-Status: Inappropriate [oe specific] Upstream-Status: Inappropriate [oe specific]
Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Update patch for 1.17, also redefine LOCKPROG in other lines
Signed-off-by: Changqing Li <changqing.li@windriver.com>
--- ---
Makefile.in | 2 +- Makefile.in | 8 ++++----
1 file changed, 1 insertion(+), 1 deletion(-) 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Makefile.in b/Makefile.in diff --git a/Makefile.in b/Makefile.in
index 6e53179..bfa0acb 100644 index e447cb2..e02d75e 100644
--- a/Makefile.in --- a/Makefile.in
+++ b/Makefile.in +++ b/Makefile.in
@@ -42,7 +42,7 @@ dotlockfile: dotlockfile.o xlockfile.o @@ -44,19 +44,19 @@ dotlockfile: dotlockfile.o dlockfile.o
$(CC) $(LDFLAGS) -o dotlockfile dotlockfile.o xlockfile.o $(CC) $(LDFLAGS) -o dotlockfile dotlockfile.o dlockfile.o
dotlockfile.o: dotlockfile.c
- $(CC) $(CFLAGS) -DLOCKPROG=\"$(bindir)/dotlockfile\" \
+ $(CC) $(CFLAGS) -DLOCKPROG=\"/usr/bin/dotlockfile\" \
-c dotlockfile.c
lockfile.o: lockfile.c lockfile.o: lockfile.c
- $(CC) $(CFLAGS) -DLIB -DLOCKPROG=\"$(bindir)/dotlockfile\" \ - $(CC) $(CFLAGS) -DLIB -DLOCKPROG=\"$(bindir)/dotlockfile\" \
+ $(CC) $(CFLAGS) -DLIB -DLOCKPROG=\"/usr/bin/dotlockfile\" \ + $(CC) $(CFLAGS) -DLIB -DLOCKPROG=\"/usr/bin/dotlockfile\" \
-c lockfile.c -DSTATIC -c lockfile.c
xlockfile.o: lockfile.c solockfile.o: lockfile.c
- $(CC) $(CFLAGS) -DLIB -DLOCKPROG=\"$(bindir)/dotlockfile\" \
+ $(CC) $(CFLAGS) -DLIB -DLOCKPROG=\"/usr/bin/dotlockfile\" \
-c lockfile.c -o solockfile.o
dlockfile.o: lockfile.c
- $(CC) $(CFLAGS) -DLOCKPROG=\"$(bindir)/dotlockfile\" \
+ $(CC) $(CFLAGS) -DLOCKPROG=\"/usr/bin/dotlockfile\" \
-c lockfile.c -o dlockfile.o
install_static: static install_common
-- --
2.25.1 2.25.1
@@ -1,10 +1,17 @@
From fd3fce8c1a3d0c70a0ffd461fbbe7e2ef71dd3a7 Mon Sep 17 00:00:00 2001
From: Changqing Li <changqing.li@windriver.com>
Date: Tue, 7 Mar 2023 11:05:45 +0800
Subject: [PATCH] Update patch for 1.17
# Signed-off-by: Changqing Li <changqing.li@windriver.com>
# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher ---
# configure.ac | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
--- liblockfile-1.05/./configure.in~configure diff --git a/configure.ac b/configure.ac
+++ liblockfile-1.05/./configure.in index df26cee..76e9165 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,5 @@ @@ -1,4 +1,5 @@
-AC_INIT(lockfile.c) -AC_INIT(lockfile.c)
+AC_INIT +AC_INIT
@@ -12,7 +19,7 @@
AC_CONFIG_HEADER(autoconf.h) AC_CONFIG_HEADER(autoconf.h)
AC_REVISION($Revision: 1.0 $)dnl AC_REVISION($Revision: 1.0 $)dnl
@@ -111,7 +112,8 @@ @@ -111,7 +112,8 @@ AC_SUBST(TARGETS)
AC_SUBST(INSTALL_TARGETS) AC_SUBST(INSTALL_TARGETS)
AC_SUBST(nfslockdir) AC_SUBST(nfslockdir)
@@ -23,3 +30,6 @@
-) -)
+]) +])
+AC_OUTPUT +AC_OUTPUT
--
2.25.1
@@ -1,4 +1,4 @@
From 363eb1aaeca914c7d36a2cdaf1417e4f87af4c22 Mon Sep 17 00:00:00 2001 From 079d04c187800e22f18723c74e41c4e46eef67f8 Mon Sep 17 00:00:00 2001
From: Mingli Yu <mingli.yu@windriver.com> From: Mingli Yu <mingli.yu@windriver.com>
Date: Thu, 19 Jul 2018 01:12:47 -0700 Date: Thu, 19 Jul 2018 01:12:47 -0700
Subject: [PATCH] Makefile.in: define dotlockfile.1 installed to man Subject: [PATCH] Makefile.in: define dotlockfile.1 installed to man
@@ -16,10 +16,10 @@ Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
1 file changed, 1 insertion(+), 1 deletion(-) 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.in b/Makefile.in diff --git a/Makefile.in b/Makefile.in
index 0f1b506..6e53179 100644 index 3a74811..e447cb2 100644
--- a/Makefile.in --- a/Makefile.in
+++ b/Makefile.in +++ b/Makefile.in
@@ -71,7 +71,7 @@ install_common: @@ -82,7 +82,7 @@ install_common:
else \ else \
install -g root -m 755 dotlockfile $(bindir); \ install -g root -m 755 dotlockfile $(bindir); \
fi fi
@@ -29,5 +29,5 @@ index 0f1b506..6e53179 100644
install_nfslib: nfslib install_nfslib: nfslib
-- --
2.17.1 2.25.1
@@ -4,23 +4,20 @@ SECTION = "libs"
LICENSE = "LGPL-2.0-or-later & GPL-2.0-or-later" LICENSE = "LGPL-2.0-or-later & GPL-2.0-or-later"
LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=f4ba6ad04fcb05cc30a4cfa5062c55a3" LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=f4ba6ad04fcb05cc30a4cfa5062c55a3"
SRC_URI = "${DEBIAN_MIRROR}/main/libl/liblockfile/liblockfile_1.14.orig.tar.gz \ SRC_URI = "${DEBIAN_MIRROR}/main/libl/liblockfile/liblockfile_1.17.orig.tar.gz \
${DEBIAN_MIRROR}/main/libl/liblockfile/liblockfile_1.14-1.debian.tar.bz2;name=1.14-1 \ ${DEBIAN_MIRROR}/main/libl/liblockfile/liblockfile_1.17-1.debian.tar.bz2;name=1.17-1 \
file://configure.patch \ file://configure.patch \
file://0001-Makefile.in-add-DESTDIR.patch \ file://0001-Makefile.in-add-DESTDIR.patch \
file://0001-Makefile.in-install-nfslock-libs.patch \ file://0001-Makefile.in-install-nfslock-libs.patch \
file://liblockfile-fix-install-so-to-man-dir.patch \ file://liblockfile-fix-install-so-to-man-dir.patch \
file://0001-Makefile.in-redefine-LOCKPROG.patch \ file://0001-Makefile.in-redefine-LOCKPROG.patch \
file://0001-Makefile.in-Don-t-try-to-run-ldconfig.patch \ file://0001-Makefile.in-fix-install-failure-on-host-without-ldco.patch \
" "
SRC_URI[md5sum] = "420c056ba0cc4d1477e402f70ba2f5eb" SRC_URI[sha256sum] = "6e937f3650afab4aac198f348b89b1ca42edceb17fb6bb0918f642143ccfd15e"
SRC_URI[sha256sum] = "ab40d4a3e8cbc204f7e87fea637a4e4ddf9a1149aaa0a723a4267febd0b1d060" SRC_URI[1.17-1.sha256sum] = "e3657c0e3facfeccb58900c0b48d56cd68ad5f9f24d1b4c6eaa69c26490fb673"
SRC_URI[1.14-1.md5sum] = "f9a44928c3477d218c56252712ebc479" S = "${WORKDIR}/${BP}"
SRC_URI[1.14-1.sha256sum] = "73f9be769e602149391588c28f0f4f5cda131e30fb94c0777dbb23d811ac21ff"
S = "${WORKDIR}/${BPN}"
inherit autotools-brokensep inherit autotools-brokensep