summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2024-03-06 07:42:18 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-03-07 17:25:02 +0000
commitd339047b836d9d54df1006814f47f72d9d40db38 (patch)
treefef1da1682c4efc809d51c4829f760cc2f93e7dd /meta/recipes-extended
parent9c0294320887002d26c9108a90e0e8397874d382 (diff)
downloadpoky-d339047b836d9d54df1006814f47f72d9d40db38.tar.gz
minicom: upgrade 2.8 -> 2.9
Adjust selftest to git-add the directory with newly added patches, as the new minicom recipe has no default patches, and thus no directory with them (and the selftest assumed it does). (From OE-Core rev: 1fb2aa3f242ef20f8edfb518164b629258a04dd4) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch33
-rw-r--r--meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch30
-rw-r--r--meta/recipes-extended/minicom/minicom_2.9.bb (renamed from meta/recipes-extended/minicom/minicom_2.8.bb)7
3 files changed, 2 insertions, 68 deletions
diff --git a/meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch b/meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch
deleted file mode 100644
index 9e67126f3e..0000000000
--- a/meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1Exit normally for help/verison options
2
3If -v or -h is used for the help/version information, it is a normal exit situation,
4not an error condition. Sometimes these are used as a simple operation test of the
5resulting binary so the exit code does matter.
6
7Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
8Upstream-Status: Submitted [https://salsa.debian.org/minicom-team/minicom/-/merge_requests/14]
9---
10 src/minicom.c | 6 ++----
11 1 file changed, 2 insertions(+), 4 deletions(-)
12
13Index: minicom-2.8/src/minicom.c
14===================================================================
15--- minicom-2.8.orig/src/minicom.c
16+++ minicom-2.8/src/minicom.c
17@@ -1257,14 +1257,14 @@ int main(int argc, char **argv)
18 "modify it under the terms of the GNU General Public License\n"
19 "as published by the Free Software Foundation; either version\n"
20 "2 of the License, or (at your option) any later version.\n\n"));
21- exit(1);
22+ exit(0);
23 break;
24 case 's': /* setup mode */
25 dosetup = 1;
26 break;
27 case 'h':
28 helpthem();
29- exit(1);
30+ exit(0);
31 break;
32 case 'p': /* Pseudo terminal to use. */
33 if (strncmp(optarg, "/dev/", 5) == 0)
diff --git a/meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch b/meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch
deleted file mode 100644
index 39dc5c0492..0000000000
--- a/meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1configure: Allow lockdev to be disabled
2
3When the pkgconfig dependencies may be present, it is useful to be
4able to explictly disable the lockdev dependency. This adds such an
5option.
6
7Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
8Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9
10Upstream-Status: Submitted [https://salsa.debian.org/minicom-team/minicom/-/merge_requests/14]
11
12Index: minicom-2.8/configure.ac
13===================================================================
14--- minicom-2.8.orig/configure.ac
15+++ minicom-2.8/configure.ac
16@@ -43,7 +43,13 @@ if test "x$enable_socket" = xyes; then
17 fi
18
19 PKG_PROG_PKG_CONFIG
20-if test -n "$PKG_CONFIG"; then
21+
22+AC_ARG_ENABLE([lockdev],
23+ AS_HELP_STRING([--enable-lockdev],
24+ [Enable lockdev support (def: enabled)]),
25+ [], [enable_lockdev="yes"])
26+
27+if test -n "$PKG_CONFIG" && test "x$enable_lockdev" = xyes; then
28 PKG_CHECK_MODULES([LOCKDEV], [lockdev], AC_DEFINE([HAVE_LOCKDEV],[1],[Define if you have lockdev]),[:])
29 fi
30
diff --git a/meta/recipes-extended/minicom/minicom_2.8.bb b/meta/recipes-extended/minicom/minicom_2.9.bb
index 2640c6b057..907d5c79c9 100644
--- a/meta/recipes-extended/minicom/minicom_2.8.bb
+++ b/meta/recipes-extended/minicom/minicom_2.9.bb
@@ -7,12 +7,9 @@ LICENSE = "GPL-2.0-or-later"
7LIC_FILES_CHKSUM = "file://COPYING;md5=420477abc567404debca0a2a1cb6b645 \ 7LIC_FILES_CHKSUM = "file://COPYING;md5=420477abc567404debca0a2a1cb6b645 \
8 file://src/minicom.h;beginline=1;endline=12;md5=a58838cb709f0db517f4e42730c49e81" 8 file://src/minicom.h;beginline=1;endline=12;md5=a58838cb709f0db517f4e42730c49e81"
9 9
10SRC_URI = "${DEBIAN_MIRROR}/main/m/${BPN}/${BPN}_${PV}.orig.tar.bz2 \ 10SRC_URI = "${DEBIAN_MIRROR}/main/m/${BPN}/${BPN}_${PV}.orig.tar.bz2"
11 file://allow.to.disable.lockdev.patch \
12 file://0001-fix-minicom-h-v-return-value-is-not-0.patch \
13"
14 11
15SRC_URI[sha256sum] = "38cea30913a20349326ff3f1763ee1512b7b41601c24f065f365e18e9db0beba" 12SRC_URI[sha256sum] = "9efbb6458140e5a0de445613f0e76bcf12cbf7a9892b2f53e075c2e7beaba86c"
16 13
17PACKAGECONFIG ??= "" 14PACKAGECONFIG ??= ""
18PACKAGECONFIG[lockdev] = "--enable-lockdev,--disable-lockdev,lockdev" 15PACKAGECONFIG[lockdev] = "--enable-lockdev,--disable-lockdev,lockdev"