* [oe] [meta-oe] [PATCH] lastlog2: add new recipe
@ 2023-07-14 1:00 wangmy
2023-07-14 1:00 ` [oe] [meta-oe] [PATCH] libyang: Fix install conflict when enable multilib wangmy
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: wangmy @ 2023-07-14 1:00 UTC (permalink / raw)
To: openembedded-devel; +Cc: Wang Mingyu
From: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../lastlog2/lastlog2_1.1.0.bb | 30 +++++++++++++++++++
1 file changed, 30 insertions(+)
create mode 100644 meta-oe/recipes-extended/lastlog2/lastlog2_1.1.0.bb
diff --git a/meta-oe/recipes-extended/lastlog2/lastlog2_1.1.0.bb b/meta-oe/recipes-extended/lastlog2/lastlog2_1.1.0.bb
new file mode 100644
index 0000000000..cc60a46899
--- /dev/null
+++ b/meta-oe/recipes-extended/lastlog2/lastlog2_1.1.0.bb
@@ -0,0 +1,30 @@
+SUMMARY = "Y2038 safe version of lastlog"
+HOMEPAGE = "https://github.com/thkukuk/lastlog2"
+DESCRIPTION = "lastlog reports the last login of a given user or of all users who did ever login on a system."
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=020090a00b69dd2af9ab82eb0003ea2c"
+SECTION = "libs"
+
+SRCREV = "585153a577788c590370d20e40263b61238dfab3"
+
+SRC_URI = "git://github.com/thkukuk/lastlog2.git;branch=main;protocol=https"
+
+S = "${WORKDIR}/git"
+
+inherit meson pkgconfig systemd
+
+DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} sqlite3 "
+
+SYSTEMD_SERVICE:${PN} = "lastlog2-import.service"
+
+EXTRA_OEMESON = " -Dpamlibdir=${libdir}"
+
+do_install:append () {
+ # Fix makefile hardcoded path assumptions for systemd (assumes $prefix)
+ # without usrmerge distro feature enabled
+ install -d `dirname ${D}${systemd_unitdir}`
+ mv ${D}${prefix}/lib/systemd `dirname ${D}${systemd_unitdir}`
+}
+
+FILES:${PN} += " ${systemd_system_unitdir} "
+FILES:${PN} += " ${libdir} "
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [oe] [meta-oe] [PATCH] libyang: Fix install conflict when enable multilib. 2023-07-14 1:00 [oe] [meta-oe] [PATCH] lastlog2: add new recipe wangmy @ 2023-07-14 1:00 ` wangmy 2023-07-14 1:00 ` [oe] [meta-oe] [PATCH] wtmpdb: add new recipe wangmy 2023-07-14 22:02 ` [oe] [meta-oe] [PATCH] lastlog2: " Khem Raj 2 siblings, 0 replies; 7+ messages in thread From: wangmy @ 2023-07-14 1:00 UTC (permalink / raw) To: openembedded-devel; +Cc: Wang Mingyu From: Wang Mingyu <wangmy@fujitsu.com> Error: Transaction test error: file /usr/include/libyang/config.h conflicts between attempted installs of libyang-dev-2.1.55-r0.core2_64 and lib32-libyang-dev-2.1.55-r0.i686 The differences of config.h are as follows: @@ -27,8 +27,8 @@ /** plugins */ #define LYPLG_SUFFIX ".so" #define LYPLG_SUFFIX_LEN (sizeof LYPLG_SUFFIX - 1) -#define LYPLG_TYPE_DIR "/usr/lib/libyang/types" -#define LYPLG_EXT_DIR "/usr/lib/libyang/extensions" +#define LYPLG_TYPE_DIR "/usr/lib64/libyang/types" +#define LYPLG_EXT_DIR "/usr/lib64/libyang/extensions" Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> --- meta-oe/recipes-extended/libyang/libyang_2.1.55.bb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/meta-oe/recipes-extended/libyang/libyang_2.1.55.bb b/meta-oe/recipes-extended/libyang/libyang_2.1.55.bb index b1438c3b2b..bddf30bf6a 100644 --- a/meta-oe/recipes-extended/libyang/libyang_2.1.55.bb +++ b/meta-oe/recipes-extended/libyang/libyang_2.1.55.bb @@ -16,7 +16,7 @@ SRC_URI = "git://github.com/CESNET/libyang.git;branch=master;protocol=https \ S = "${WORKDIR}/git" # Main dependencies -inherit cmake pkgconfig lib_package ptest +inherit cmake pkgconfig lib_package ptest multilib_header DEPENDS = "libpcre2" DEPENDS += "${@bb.utils.contains('PTEST_ENABLED', '1', 'cmocka', '', d)}" @@ -30,6 +30,10 @@ do_compile:prepend () { fi } +do_install:append () { + oe_multilib_header libyang/config.h +} + do_install_ptest () { install -d ${D}${PTEST_PATH}/tests cp -f ${B}/tests/utest_* ${D}${PTEST_PATH}/tests/ -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [oe] [meta-oe] [PATCH] wtmpdb: add new recipe 2023-07-14 1:00 [oe] [meta-oe] [PATCH] lastlog2: add new recipe wangmy 2023-07-14 1:00 ` [oe] [meta-oe] [PATCH] libyang: Fix install conflict when enable multilib wangmy @ 2023-07-14 1:00 ` wangmy 2023-07-14 22:04 ` Khem Raj 2023-07-14 22:02 ` [oe] [meta-oe] [PATCH] lastlog2: " Khem Raj 2 siblings, 1 reply; 7+ messages in thread From: wangmy @ 2023-07-14 1:00 UTC (permalink / raw) To: openembedded-devel; +Cc: Wang Mingyu From: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> --- .../recipes-extended/wtmpdb/wtmpdb_0.7.1.bb | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb diff --git a/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb b/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb new file mode 100644 index 0000000000..c3b97b0630 --- /dev/null +++ b/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb @@ -0,0 +1,30 @@ +SUMMARY = "Y2038 safe version of wtmp" +HOMEPAGE = "https://github.com/thkukuk/wtmpdb" +DESCRIPTION = "last reports the login and logout times of users and when the machine got rebooted." +LICENSE = "BSD-2-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=020090a00b69dd2af9ab82eb0003ea2c" +SECTION = "libs" + +SRCREV = "502b19a41c7a3b1b5e70969b18088683825f71f8" + +SRC_URI = "git://github.com/thkukuk/wtmpdb.git;branch=main;protocol=https" + +S = "${WORKDIR}/git" + +inherit meson pkgconfig systemd + +DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} sqlite3 " + +SYSTEMD_SERVICE:${PN} = "wtmpdb-update-boot.service wtmpdb-rotate.service" + +EXTRA_OEMESON = " -Dpamlibdir=${libdir}" + +do_install:append () { + # Fix makefile hardcoded path assumptions for systemd (assumes $prefix) + # without usrmerge distro feature enabled + install -d `dirname ${D}${systemd_unitdir}` + mv ${D}${prefix}/lib/systemd `dirname ${D}${systemd_unitdir}` +} + +FILES:${PN} += " ${systemd_system_unitdir} " +FILES:${PN} += " ${libdir} " -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [oe] [meta-oe] [PATCH] wtmpdb: add new recipe 2023-07-14 1:00 ` [oe] [meta-oe] [PATCH] wtmpdb: add new recipe wangmy @ 2023-07-14 22:04 ` Khem Raj 2023-07-18 8:37 ` Mingyu Wang (Fujitsu) 0 siblings, 1 reply; 7+ messages in thread From: Khem Raj @ 2023-07-14 22:04 UTC (permalink / raw) To: wangmy; +Cc: openembedded-devel fails to build with ptests tests/tst-dlopen.p/tst-dlopen.c.o: file not recognized: file format not recognized see - https://errors.yoctoproject.org/Errors/Details/716656/ On Thu, Jul 13, 2023 at 6:01 PM wangmy <wangmy@fujitsu.com> wrote: > > From: Wang Mingyu <wangmy@fujitsu.com> > > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> > --- > .../recipes-extended/wtmpdb/wtmpdb_0.7.1.bb | 30 +++++++++++++++++++ > 1 file changed, 30 insertions(+) > create mode 100644 meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > > diff --git a/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb b/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > new file mode 100644 > index 0000000000..c3b97b0630 > --- /dev/null > +++ b/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > @@ -0,0 +1,30 @@ > +SUMMARY = "Y2038 safe version of wtmp" > +HOMEPAGE = "https://github.com/thkukuk/wtmpdb" > +DESCRIPTION = "last reports the login and logout times of users and when the machine got rebooted." > +LICENSE = "BSD-2-Clause" > +LIC_FILES_CHKSUM = "file://LICENSE;md5=020090a00b69dd2af9ab82eb0003ea2c" > +SECTION = "libs" > + > +SRCREV = "502b19a41c7a3b1b5e70969b18088683825f71f8" > + > +SRC_URI = "git://github.com/thkukuk/wtmpdb.git;branch=main;protocol=https" > + > +S = "${WORKDIR}/git" > + > +inherit meson pkgconfig systemd > + > +DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} sqlite3 " > + > +SYSTEMD_SERVICE:${PN} = "wtmpdb-update-boot.service wtmpdb-rotate.service" > + > +EXTRA_OEMESON = " -Dpamlibdir=${libdir}" > + > +do_install:append () { > + # Fix makefile hardcoded path assumptions for systemd (assumes $prefix) > + # without usrmerge distro feature enabled > + install -d `dirname ${D}${systemd_unitdir}` > + mv ${D}${prefix}/lib/systemd `dirname ${D}${systemd_unitdir}` > +} > + > +FILES:${PN} += " ${systemd_system_unitdir} " > +FILES:${PN} += " ${libdir} " > -- > 2.34.1 > > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#103860): https://lists.openembedded.org/g/openembedded-devel/message/103860 > Mute This Topic: https://lists.openembedded.org/mt/100132965/1997914 > Group Owner: openembedded-devel+owner@lists.openembedded.org > Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com] > -=-=-=-=-=-=-=-=-=-=-=- > ^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [oe] [meta-oe] [PATCH] wtmpdb: add new recipe 2023-07-14 22:04 ` Khem Raj @ 2023-07-18 8:37 ` Mingyu Wang (Fujitsu) 2023-07-18 15:29 ` Khem Raj 0 siblings, 1 reply; 7+ messages in thread From: Mingyu Wang (Fujitsu) @ 2023-07-18 8:37 UTC (permalink / raw) To: Khem Raj; +Cc: openembedded-devel@lists.openembedded.org Do I need to create a run-ptest to confirm the ptest? Or is there any other way to reproduce this problem? -- Best Regards --------------------------------------------------- Wang Mingyu Development Dept.I Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST) No. 6 Wenzhu Road, Nanjing, 210012, China TEL: +86+25-86630566-8568 COINS: 79988548 FAX: +86+25-83317685 MAIL: wangmy@fujitsu.com http://www.fujitsu.com/cn/fnst/ > -----Original Message----- > From: Khem Raj <raj.khem@gmail.com> > Sent: Saturday, July 15, 2023 6:04 AM > To: Wang, Mingyu/王 鸣瑜 <wangmy@fujitsu.com> > Cc: openembedded-devel@lists.openembedded.org > Subject: Re: [oe] [meta-oe] [PATCH] wtmpdb: add new recipe > > fails to build with ptests > > tests/tst-dlopen.p/tst-dlopen.c.o: file not recognized: file format not recognized > > see - https://errors.yoctoproject.org/Errors/Details/716656/ > > On Thu, Jul 13, 2023 at 6:01 PM wangmy <wangmy@fujitsu.com> wrote: > > > > From: Wang Mingyu <wangmy@fujitsu.com> > > > > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> > > --- > > .../recipes-extended/wtmpdb/wtmpdb_0.7.1.bb | 30 > +++++++++++++++++++ > > 1 file changed, 30 insertions(+) > > create mode 100644 meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > > > > diff --git a/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > > b/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > > new file mode 100644 > > index 0000000000..c3b97b0630 > > --- /dev/null > > +++ b/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > > @@ -0,0 +1,30 @@ > > +SUMMARY = "Y2038 safe version of wtmp" > > +HOMEPAGE = "https://github.com/thkukuk/wtmpdb" > > +DESCRIPTION = "last reports the login and logout times of users and when > the machine got rebooted." > > +LICENSE = "BSD-2-Clause" > > +LIC_FILES_CHKSUM = > "file://LICENSE;md5=020090a00b69dd2af9ab82eb0003ea2c" > > +SECTION = "libs" > > + > > +SRCREV = "502b19a41c7a3b1b5e70969b18088683825f71f8" > > + > > +SRC_URI = > "git://github.com/thkukuk/wtmpdb.git;branch=main;protocol=https" > > + > > +S = "${WORKDIR}/git" > > + > > +inherit meson pkgconfig systemd > > + > > +DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} > sqlite3 " > > + > > +SYSTEMD_SERVICE:${PN} = "wtmpdb-update-boot.service > wtmpdb-rotate.service" > > + > > +EXTRA_OEMESON = " -Dpamlibdir=${libdir}" > > + > > +do_install:append () { > > + # Fix makefile hardcoded path assumptions for systemd (assumes > $prefix) > > + # without usrmerge distro feature enabled > > + install -d `dirname ${D}${systemd_unitdir}` > > + mv ${D}${prefix}/lib/systemd `dirname ${D}${systemd_unitdir}` } > > + > > +FILES:${PN} += " ${systemd_system_unitdir} " > > +FILES:${PN} += " ${libdir} " > > -- > > 2.34.1 > > > > > > -=-=-=-=-=-=-=-=-=-=-=- > > Links: You receive all messages sent to this group. > > View/Reply Online (#103860): > > https://lists.openembedded.org/g/openembedded-devel/message/103860 > > Mute This Topic: https://lists.openembedded.org/mt/100132965/1997914 > > Group Owner: openembedded-devel+owner@lists.openembedded.org > > Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub > > [raj.khem@gmail.com] > > -=-=-=-=-=-=-=-=-=-=-=- > > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [oe] [meta-oe] [PATCH] wtmpdb: add new recipe 2023-07-18 8:37 ` Mingyu Wang (Fujitsu) @ 2023-07-18 15:29 ` Khem Raj 0 siblings, 0 replies; 7+ messages in thread From: Khem Raj @ 2023-07-18 15:29 UTC (permalink / raw) To: Mingyu Wang (Fujitsu); +Cc: openembedded-devel@lists.openembedded.org [-- Attachment #1: Type: text/plain, Size: 3810 bytes --] On Tue, Jul 18, 2023 at 1:38 AM Mingyu Wang (Fujitsu) <wangmy@fujitsu.com> wrote: > Do I need to create a run-ptest to confirm the ptest? > Or is there any other way to reproduce this problem? I am not sure since it failed to build so run-ptest was not used yet but it Might be good to have ptests supported > > > -- > Best Regards > --------------------------------------------------- > Wang Mingyu > Development Dept.I > Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST) No. 6 Wenzhu Road, > Nanjing, 210012, China > <https://www.google.com/maps/search/Wenzhu+Road,+Nanjing,+210012,+China?entry=gmail&source=g> > TEL: +86+25-86630566-8568 > COINS: 79988548 > FAX: +86+25-83317685 > MAIL: wangmy@fujitsu.com > http://www.fujitsu.com/cn/fnst/ > > > -----Original Message----- > > From: Khem Raj <raj.khem@gmail.com> > > Sent: Saturday, July 15, 2023 6:04 AM > > To: Wang, Mingyu/王 鸣瑜 <wangmy@fujitsu.com> > > Cc: openembedded-devel@lists.openembedded.org > > Subject: Re: [oe] [meta-oe] [PATCH] wtmpdb: add new recipe > > > > fails to build with ptests > > > > tests/tst-dlopen.p/tst-dlopen.c.o: file not recognized: file format not > recognized > > > > see - https://errors.yoctoproject.org/Errors/Details/716656/ > > > > On Thu, Jul 13, 2023 at 6:01 PM wangmy <wangmy@fujitsu.com> wrote: > > > > > > From: Wang Mingyu <wangmy@fujitsu.com> > > > > > > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> > > > --- > > > .../recipes-extended/wtmpdb/wtmpdb_0.7.1.bb | 30 > > +++++++++++++++++++ > > > 1 file changed, 30 insertions(+) > > > create mode 100644 meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > > > > > > diff --git a/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > > > b/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > > > new file mode 100644 > > > index 0000000000..c3b97b0630 > > > --- /dev/null > > > +++ b/meta-oe/recipes-extended/wtmpdb/wtmpdb_0.7.1.bb > > > @@ -0,0 +1,30 @@ > > > +SUMMARY = "Y2038 safe version of wtmp" > > > +HOMEPAGE = "https://github.com/thkukuk/wtmpdb" > > > +DESCRIPTION = "last reports the login and logout times of users and > when > > the machine got rebooted." > > > +LICENSE = "BSD-2-Clause" > > > +LIC_FILES_CHKSUM = > > "file://LICENSE;md5=020090a00b69dd2af9ab82eb0003ea2c" > > > +SECTION = "libs" > > > + > > > +SRCREV = "502b19a41c7a3b1b5e70969b18088683825f71f8" > > > + > > > +SRC_URI = > > "git://github.com/thkukuk/wtmpdb.git;branch=main;protocol=https" > > > + > > > +S = "${WORKDIR}/git" > > > + > > > +inherit meson pkgconfig systemd > > > + > > > +DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', > '', d)} > > sqlite3 " > > > + > > > +SYSTEMD_SERVICE:${PN} = "wtmpdb-update-boot.service > > wtmpdb-rotate.service" > > > + > > > +EXTRA_OEMESON = " -Dpamlibdir=${libdir}" > > > + > > > +do_install:append () { > > > + # Fix makefile hardcoded path assumptions for systemd (assumes > > $prefix) > > > + # without usrmerge distro feature enabled > > > + install -d `dirname ${D}${systemd_unitdir}` > > > + mv ${D}${prefix}/lib/systemd `dirname ${D}${systemd_unitdir}` } > > > + > > > +FILES:${PN} += " ${systemd_system_unitdir} " > > > +FILES:${PN} += " ${libdir} " > > > -- > > > 2.34.1 > > > > > > > > > -=-=-=-=-=-=-=-=-=-=-=- > > > Links: You receive all messages sent to this group. > > > View/Reply Online (#103860): > > > https://lists.openembedded.org/g/openembedded-devel/message/103860 > > > Mute This Topic: https://lists.openembedded.org/mt/100132965/1997914 > > > Group Owner: openembedded-devel+owner@lists.openembedded.org > > > Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub > > > [raj.khem@gmail.com] > > > -=-=-=-=-=-=-=-=-=-=-=- > > > > [-- Attachment #2: Type: text/html, Size: 6689 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [oe] [meta-oe] [PATCH] lastlog2: add new recipe 2023-07-14 1:00 [oe] [meta-oe] [PATCH] lastlog2: add new recipe wangmy 2023-07-14 1:00 ` [oe] [meta-oe] [PATCH] libyang: Fix install conflict when enable multilib wangmy 2023-07-14 1:00 ` [oe] [meta-oe] [PATCH] wtmpdb: add new recipe wangmy @ 2023-07-14 22:02 ` Khem Raj 2 siblings, 0 replies; 7+ messages in thread From: Khem Raj @ 2023-07-14 22:02 UTC (permalink / raw) To: wangmy; +Cc: openembedded-devel fails to build with ptests on tests/tst-y2038-64bit-time_t.p/tst-y2038-64bit-time_t.c.o: file not recognized: file format not recognized see - https://errors.yoctoproject.org/Errors/Details/716657/ On Thu, Jul 13, 2023 at 6:01 PM wangmy <wangmy@fujitsu.com> wrote: > > From: Wang Mingyu <wangmy@fujitsu.com> > > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> > --- > .../lastlog2/lastlog2_1.1.0.bb | 30 +++++++++++++++++++ > 1 file changed, 30 insertions(+) > create mode 100644 meta-oe/recipes-extended/lastlog2/lastlog2_1.1.0.bb > > diff --git a/meta-oe/recipes-extended/lastlog2/lastlog2_1.1.0.bb b/meta-oe/recipes-extended/lastlog2/lastlog2_1.1.0.bb > new file mode 100644 > index 0000000000..cc60a46899 > --- /dev/null > +++ b/meta-oe/recipes-extended/lastlog2/lastlog2_1.1.0.bb > @@ -0,0 +1,30 @@ > +SUMMARY = "Y2038 safe version of lastlog" > +HOMEPAGE = "https://github.com/thkukuk/lastlog2" > +DESCRIPTION = "lastlog reports the last login of a given user or of all users who did ever login on a system." > +LICENSE = "BSD-2-Clause" > +LIC_FILES_CHKSUM = "file://LICENSE;md5=020090a00b69dd2af9ab82eb0003ea2c" > +SECTION = "libs" > + > +SRCREV = "585153a577788c590370d20e40263b61238dfab3" > + > +SRC_URI = "git://github.com/thkukuk/lastlog2.git;branch=main;protocol=https" > + > +S = "${WORKDIR}/git" > + > +inherit meson pkgconfig systemd > + > +DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} sqlite3 " > + > +SYSTEMD_SERVICE:${PN} = "lastlog2-import.service" > + > +EXTRA_OEMESON = " -Dpamlibdir=${libdir}" > + > +do_install:append () { > + # Fix makefile hardcoded path assumptions for systemd (assumes $prefix) > + # without usrmerge distro feature enabled > + install -d `dirname ${D}${systemd_unitdir}` > + mv ${D}${prefix}/lib/systemd `dirname ${D}${systemd_unitdir}` > +} > + > +FILES:${PN} += " ${systemd_system_unitdir} " > +FILES:${PN} += " ${libdir} " > -- > 2.34.1 > > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#103858): https://lists.openembedded.org/g/openembedded-devel/message/103858 > Mute This Topic: https://lists.openembedded.org/mt/100132957/1997914 > Group Owner: openembedded-devel+owner@lists.openembedded.org > Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com] > -=-=-=-=-=-=-=-=-=-=-=- > ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-07-18 15:30 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-14 1:00 [oe] [meta-oe] [PATCH] lastlog2: add new recipe wangmy 2023-07-14 1:00 ` [oe] [meta-oe] [PATCH] libyang: Fix install conflict when enable multilib wangmy 2023-07-14 1:00 ` [oe] [meta-oe] [PATCH] wtmpdb: add new recipe wangmy 2023-07-14 22:04 ` Khem Raj 2023-07-18 8:37 ` Mingyu Wang (Fujitsu) 2023-07-18 15:29 ` Khem Raj 2023-07-14 22:02 ` [oe] [meta-oe] [PATCH] lastlog2: " Khem Raj
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox