All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH v2] libfaketime: add recipe
@ 2023-08-18 10:52 Tymoteusz Burak
  2023-08-19  6:38 ` [oe] " Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: Tymoteusz Burak @ 2023-08-18 10:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: piotr.krol, tomasz.zyjewski

This commit adds the libfaketime library recipe, which provides time
manipulation capabilities for testing and debugging purposes. libfaketime allows
developers to modify the system time reported to applications, aiding in scenarios
where accurate time emulation is required.

GitHub Repository: https://github.com/wolfcw/libfaketime

Signed-off-by: Tymoteusz Burak <tymoteusz.burak@3mdeb.com>
---
 .../libfaketime/libfaketime_0.9.10.bb         | 34 +++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb

diff --git a/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
new file mode 100644
index 000000000000..f26e5b0db872
--- /dev/null
+++ b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
@@ -0,0 +1,34 @@
+DESCRIPTION = "A library for faking the system time in user-space programs"
+SECTION = "libs"
+LICENSE = "GPL-2.0-only"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+
+SRCREV = "d475b925943ad404c6c728ac868dc73949e7281c"
+SRC_URI = "\
+    git://git@github.com/wolfcw/libfaketime.git;branch=master;protocol=https \
+    "
+
+S = "${WORKDIR}/git"
+
+EXTRA_OEMAKE += "\
+    EXTRA_FLAGS='-Wno-error=nonnull-compare' \
+    "
+
+do_configure[noexec] = "1"
+do_compile () {
+    oe_runmake
+}
+do_install () {
+    install -d ${D}${libdir}/faketime
+    oe_libinstall -C src libfaketime ${D}${libdir}/faketime
+    install -d ${D}${bindir}
+    install -m 0755 src/faketime ${D}${bindir}
+}
+
+PACKAGES =+ "lib${PN}"
+
+FILES:${PN} = "${bindir}/faketime"
+FILES:lib${PN} = "${libdir}/faketime/*"
+
+INSANE_SKIP:${PN} += "dev-so"
+INSANE_SKIP:lib${PN} += "dev-so"
-- 
2.41.0



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [oe] [meta-oe][PATCH v2] libfaketime: add recipe
  2023-08-18 10:52 [meta-oe][PATCH v2] libfaketime: add recipe Tymoteusz Burak
@ 2023-08-19  6:38 ` Khem Raj
  2023-08-30  7:33   ` Martin Jansa
  0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2023-08-19  6:38 UTC (permalink / raw)
  To: Tymoteusz Burak; +Cc: openembedded-devel, piotr.krol, tomasz.zyjewski

fails to build with clang
https://errors.yoctoproject.org/Errors/Details/732361/

On Fri, Aug 18, 2023 at 3:52 AM Tymoteusz Burak
<tymoteusz.burak@3mdeb.com> wrote:
>
> This commit adds the libfaketime library recipe, which provides time
> manipulation capabilities for testing and debugging purposes. libfaketime allows
> developers to modify the system time reported to applications, aiding in scenarios
> where accurate time emulation is required.
>
> GitHub Repository: https://github.com/wolfcw/libfaketime
>
> Signed-off-by: Tymoteusz Burak <tymoteusz.burak@3mdeb.com>
> ---
>  .../libfaketime/libfaketime_0.9.10.bb         | 34 +++++++++++++++++++
>  1 file changed, 34 insertions(+)
>  create mode 100644 meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
>
> diff --git a/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
> new file mode 100644
> index 000000000000..f26e5b0db872
> --- /dev/null
> +++ b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
> @@ -0,0 +1,34 @@
> +DESCRIPTION = "A library for faking the system time in user-space programs"
> +SECTION = "libs"
> +LICENSE = "GPL-2.0-only"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> +
> +SRCREV = "d475b925943ad404c6c728ac868dc73949e7281c"
> +SRC_URI = "\
> +    git://git@github.com/wolfcw/libfaketime.git;branch=master;protocol=https \
> +    "
> +
> +S = "${WORKDIR}/git"
> +
> +EXTRA_OEMAKE += "\
> +    EXTRA_FLAGS='-Wno-error=nonnull-compare' \
> +    "
> +
> +do_configure[noexec] = "1"
> +do_compile () {
> +    oe_runmake
> +}
> +do_install () {
> +    install -d ${D}${libdir}/faketime
> +    oe_libinstall -C src libfaketime ${D}${libdir}/faketime
> +    install -d ${D}${bindir}
> +    install -m 0755 src/faketime ${D}${bindir}
> +}
> +
> +PACKAGES =+ "lib${PN}"
> +
> +FILES:${PN} = "${bindir}/faketime"
> +FILES:lib${PN} = "${libdir}/faketime/*"
> +
> +INSANE_SKIP:${PN} += "dev-so"
> +INSANE_SKIP:lib${PN} += "dev-so"
> --
> 2.41.0
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#104485): https://lists.openembedded.org/g/openembedded-devel/message/104485
> Mute This Topic: https://lists.openembedded.org/mt/100817966/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] 6+ messages in thread

* Re: [oe] [meta-oe][PATCH v2] libfaketime: add recipe
  2023-08-19  6:38 ` [oe] " Khem Raj
@ 2023-08-30  7:33   ` Martin Jansa
  2023-08-30 14:41     ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: Martin Jansa @ 2023-08-30  7:33 UTC (permalink / raw)
  To: Khem Raj; +Cc: Tymoteusz Burak, openembedded-devel, piotr.krol, tomasz.zyjewski

[-- Attachment #1: Type: text/plain, Size: 3113 bytes --]

Can we name the lib${PN} package differently, e.g. libfaketime? With
multilib the package name is ridiculous lib32-liblib32-libfaketime:

ERROR: lib32-libfaketime-0.9.10-r0 do_package_qa: QA Issue: non
-dev/-dbg/nativesdk- package lib32-liblib32-libfaketime contains symlink
.so '/usr/lib32/faketime/libfaketime.so' [dev-so]

On Sat, Aug 19, 2023 at 8:39 AM Khem Raj <raj.khem@gmail.com> wrote:

> fails to build with clang
> https://errors.yoctoproject.org/Errors/Details/732361/
>
> On Fri, Aug 18, 2023 at 3:52 AM Tymoteusz Burak
> <tymoteusz.burak@3mdeb.com> wrote:
> >
> > This commit adds the libfaketime library recipe, which provides time
> > manipulation capabilities for testing and debugging purposes.
> libfaketime allows
> > developers to modify the system time reported to applications, aiding in
> scenarios
> > where accurate time emulation is required.
> >
> > GitHub Repository: https://github.com/wolfcw/libfaketime
> >
> > Signed-off-by: Tymoteusz Burak <tymoteusz.burak@3mdeb.com>
> > ---
> >  .../libfaketime/libfaketime_0.9.10.bb         | 34 +++++++++++++++++++
> >  1 file changed, 34 insertions(+)
> >  create mode 100644 meta-oe/recipes-test/libfaketime/
> libfaketime_0.9.10.bb
> >
> > diff --git a/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
> b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
> > new file mode 100644
> > index 000000000000..f26e5b0db872
> > --- /dev/null
> > +++ b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
> > @@ -0,0 +1,34 @@
> > +DESCRIPTION = "A library for faking the system time in user-space
> programs"
> > +SECTION = "libs"
> > +LICENSE = "GPL-2.0-only"
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> > +
> > +SRCREV = "d475b925943ad404c6c728ac868dc73949e7281c"
> > +SRC_URI = "\
> > +    git://
> git@github.com/wolfcw/libfaketime.git;branch=master;protocol=https \
> > +    "
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +EXTRA_OEMAKE += "\
> > +    EXTRA_FLAGS='-Wno-error=nonnull-compare' \
> > +    "
> > +
> > +do_configure[noexec] = "1"
> > +do_compile () {
> > +    oe_runmake
> > +}
> > +do_install () {
> > +    install -d ${D}${libdir}/faketime
> > +    oe_libinstall -C src libfaketime ${D}${libdir}/faketime
> > +    install -d ${D}${bindir}
> > +    install -m 0755 src/faketime ${D}${bindir}
> > +}
> > +
> > +PACKAGES =+ "lib${PN}"
> > +
> > +FILES:${PN} = "${bindir}/faketime"
> > +FILES:lib${PN} = "${libdir}/faketime/*"
> > +
> > +INSANE_SKIP:${PN} += "dev-so"
> > +INSANE_SKIP:lib${PN} += "dev-so"
> > --
> > 2.41.0
> >
> >
> >
> >
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#104494):
> https://lists.openembedded.org/g/openembedded-devel/message/104494
> Mute This Topic: https://lists.openembedded.org/mt/100817966/3617156
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [
> Martin.Jansa@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>

[-- Attachment #2: Type: text/html, Size: 5185 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [oe] [meta-oe][PATCH v2] libfaketime: add recipe
  2023-08-30  7:33   ` Martin Jansa
@ 2023-08-30 14:41     ` Khem Raj
  2023-08-30 15:13       ` Martin Jansa
  0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2023-08-30 14:41 UTC (permalink / raw)
  To: Martin Jansa
  Cc: Tymoteusz Burak, openembedded-devel, piotr.krol, tomasz.zyjewski

On Wed, Aug 30, 2023 at 12:33 AM Martin Jansa <martin.jansa@gmail.com> wrote:
>
> Can we name the lib${PN} package differently, e.g. libfaketime? With multilib the package name is ridiculous lib32-liblib32-libfaketime:
>
> ERROR: lib32-libfaketime-0.9.10-r0 do_package_qa: QA Issue: non -dev/-dbg/nativesdk- package lib32-liblib32-libfaketime contains symlink .so '/usr/lib32/faketime/libfaketime.so' [dev-so]

yes, I think I had that feedback in mind but I forgot to provide it.
We should be fine to rename lib${PN} -> ${PN}
>
> On Sat, Aug 19, 2023 at 8:39 AM Khem Raj <raj.khem@gmail.com> wrote:
>>
>> fails to build with clang
>> https://errors.yoctoproject.org/Errors/Details/732361/
>>
>> On Fri, Aug 18, 2023 at 3:52 AM Tymoteusz Burak
>> <tymoteusz.burak@3mdeb.com> wrote:
>> >
>> > This commit adds the libfaketime library recipe, which provides time
>> > manipulation capabilities for testing and debugging purposes. libfaketime allows
>> > developers to modify the system time reported to applications, aiding in scenarios
>> > where accurate time emulation is required.
>> >
>> > GitHub Repository: https://github.com/wolfcw/libfaketime
>> >
>> > Signed-off-by: Tymoteusz Burak <tymoteusz.burak@3mdeb.com>
>> > ---
>> >  .../libfaketime/libfaketime_0.9.10.bb         | 34 +++++++++++++++++++
>> >  1 file changed, 34 insertions(+)
>> >  create mode 100644 meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
>> >
>> > diff --git a/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
>> > new file mode 100644
>> > index 000000000000..f26e5b0db872
>> > --- /dev/null
>> > +++ b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
>> > @@ -0,0 +1,34 @@
>> > +DESCRIPTION = "A library for faking the system time in user-space programs"
>> > +SECTION = "libs"
>> > +LICENSE = "GPL-2.0-only"
>> > +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>> > +
>> > +SRCREV = "d475b925943ad404c6c728ac868dc73949e7281c"
>> > +SRC_URI = "\
>> > +    git://git@github.com/wolfcw/libfaketime.git;branch=master;protocol=https \
>> > +    "
>> > +
>> > +S = "${WORKDIR}/git"
>> > +
>> > +EXTRA_OEMAKE += "\
>> > +    EXTRA_FLAGS='-Wno-error=nonnull-compare' \
>> > +    "
>> > +
>> > +do_configure[noexec] = "1"
>> > +do_compile () {
>> > +    oe_runmake
>> > +}
>> > +do_install () {
>> > +    install -d ${D}${libdir}/faketime
>> > +    oe_libinstall -C src libfaketime ${D}${libdir}/faketime
>> > +    install -d ${D}${bindir}
>> > +    install -m 0755 src/faketime ${D}${bindir}
>> > +}
>> > +
>> > +PACKAGES =+ "lib${PN}"
>> > +
>> > +FILES:${PN} = "${bindir}/faketime"
>> > +FILES:lib${PN} = "${libdir}/faketime/*"
>> > +
>> > +INSANE_SKIP:${PN} += "dev-so"
>> > +INSANE_SKIP:lib${PN} += "dev-so"
>> > --
>> > 2.41.0
>> >
>> >
>> >
>> >
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#104494): https://lists.openembedded.org/g/openembedded-devel/message/104494
>> Mute This Topic: https://lists.openembedded.org/mt/100817966/3617156
>> Group Owner: openembedded-devel+owner@lists.openembedded.org
>> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [Martin.Jansa@gmail.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [oe] [meta-oe][PATCH v2] libfaketime: add recipe
  2023-08-30 14:41     ` Khem Raj
@ 2023-08-30 15:13       ` Martin Jansa
  0 siblings, 0 replies; 6+ messages in thread
From: Martin Jansa @ 2023-08-30 15:13 UTC (permalink / raw)
  To: Khem Raj; +Cc: Tymoteusz Burak, openembedded-devel, piotr.krol, tomasz.zyjewski

[-- Attachment #1: Type: text/plain, Size: 4136 bytes --]

And does it really need to be installed in "${libdir}/faketime"
subdirectory?

If yes, can we at least avoid the symlinks, e.g. with:

FILES:${PN} = "${bindir}/faketime ${libdir}/faketime/lib*${SOLIBS}"
FILES:${PN}-dev += "${libdir}/faketime/lib*${SOLIBSDEV}"

I'll send RFC patch which fixes the build with mulilib, but I don't use
libfaketime (and I haven't read the discussion on previous versions of this
patch, so sending only as RFC for Tymotheusz to review),

On Wed, Aug 30, 2023 at 4:41 PM Khem Raj <raj.khem@gmail.com> wrote:

> On Wed, Aug 30, 2023 at 12:33 AM Martin Jansa <martin.jansa@gmail.com>
> wrote:
> >
> > Can we name the lib${PN} package differently, e.g. libfaketime? With
> multilib the package name is ridiculous lib32-liblib32-libfaketime:
> >
> > ERROR: lib32-libfaketime-0.9.10-r0 do_package_qa: QA Issue: non
> -dev/-dbg/nativesdk- package lib32-liblib32-libfaketime contains symlink
> .so '/usr/lib32/faketime/libfaketime.so' [dev-so]
>
> yes, I think I had that feedback in mind but I forgot to provide it.
> We should be fine to rename lib${PN} -> ${PN}
> >
> > On Sat, Aug 19, 2023 at 8:39 AM Khem Raj <raj.khem@gmail.com> wrote:
> >>
> >> fails to build with clang
> >> https://errors.yoctoproject.org/Errors/Details/732361/
> >>
> >> On Fri, Aug 18, 2023 at 3:52 AM Tymoteusz Burak
> >> <tymoteusz.burak@3mdeb.com> wrote:
> >> >
> >> > This commit adds the libfaketime library recipe, which provides time
> >> > manipulation capabilities for testing and debugging purposes.
> libfaketime allows
> >> > developers to modify the system time reported to applications, aiding
> in scenarios
> >> > where accurate time emulation is required.
> >> >
> >> > GitHub Repository: https://github.com/wolfcw/libfaketime
> >> >
> >> > Signed-off-by: Tymoteusz Burak <tymoteusz.burak@3mdeb.com>
> >> > ---
> >> >  .../libfaketime/libfaketime_0.9.10.bb         | 34
> +++++++++++++++++++
> >> >  1 file changed, 34 insertions(+)
> >> >  create mode 100644 meta-oe/recipes-test/libfaketime/
> libfaketime_0.9.10.bb
> >> >
> >> > diff --git a/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
> b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
> >> > new file mode 100644
> >> > index 000000000000..f26e5b0db872
> >> > --- /dev/null
> >> > +++ b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
> >> > @@ -0,0 +1,34 @@
> >> > +DESCRIPTION = "A library for faking the system time in user-space
> programs"
> >> > +SECTION = "libs"
> >> > +LICENSE = "GPL-2.0-only"
> >> > +LIC_FILES_CHKSUM =
> "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> >> > +
> >> > +SRCREV = "d475b925943ad404c6c728ac868dc73949e7281c"
> >> > +SRC_URI = "\
> >> > +    git://
> git@github.com/wolfcw/libfaketime.git;branch=master;protocol=https \
> >> > +    "
> >> > +
> >> > +S = "${WORKDIR}/git"
> >> > +
> >> > +EXTRA_OEMAKE += "\
> >> > +    EXTRA_FLAGS='-Wno-error=nonnull-compare' \
> >> > +    "
> >> > +
> >> > +do_configure[noexec] = "1"
> >> > +do_compile () {
> >> > +    oe_runmake
> >> > +}
> >> > +do_install () {
> >> > +    install -d ${D}${libdir}/faketime
> >> > +    oe_libinstall -C src libfaketime ${D}${libdir}/faketime
> >> > +    install -d ${D}${bindir}
> >> > +    install -m 0755 src/faketime ${D}${bindir}
> >> > +}
> >> > +
> >> > +PACKAGES =+ "lib${PN}"
> >> > +
> >> > +FILES:${PN} = "${bindir}/faketime"
> >> > +FILES:lib${PN} = "${libdir}/faketime/*"
> >> > +
> >> > +INSANE_SKIP:${PN} += "dev-so"
> >> > +INSANE_SKIP:lib${PN} += "dev-so"
> >> > --
> >> > 2.41.0
> >> >
> >> >
> >> >
> >> >
> >>
> >> -=-=-=-=-=-=-=-=-=-=-=-
> >> Links: You receive all messages sent to this group.
> >> View/Reply Online (#104494):
> https://lists.openembedded.org/g/openembedded-devel/message/104494
> >> Mute This Topic: https://lists.openembedded.org/mt/100817966/3617156
> >> Group Owner: openembedded-devel+owner@lists.openembedded.org
> >> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub
> [Martin.Jansa@gmail.com]
> >> -=-=-=-=-=-=-=-=-=-=-=-
> >>
>

[-- Attachment #2: Type: text/html, Size: 6905 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [meta-oe][PATCH v2] libfaketime: add recipe
@ 2023-08-18  9:16 Tymoteusz Burak
  0 siblings, 0 replies; 6+ messages in thread
From: Tymoteusz Burak @ 2023-08-18  9:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: piotr.krol, tomasz.zyjewski

This commit adds the libfaketime library recipe, which provides time
manipulation capabilities for testing and debugging purposes. libfaketime allows
developers to modify the system time reported to applications, aiding in scenarios
where accurate time emulation is required.

GitHub Repository: https://github.com/wolfcw/libfaketime

Signed-off-by: Tymoteusz Burak <tymoteusz.burak@3mdeb.com>
---
 .../libfaketime/libfaketime_0.9.10.bb         | 35 +++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb

diff --git a/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
new file mode 100644
index 000000000000..b49491bccbd8
--- /dev/null
+++ b/meta-oe/recipes-test/libfaketime/libfaketime_0.9.10.bb
@@ -0,0 +1,35 @@
+DESCRIPTION = "A library for faking the system time in user-space programs"
+SECTION = "libs"
+LICENSE = "GPL-2.0-only"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+TAG = "v${PV}"
+
+SRCREV = "d475b925943ad404c6c728ac868dc73949e7281c"
+SRC_URI = "\
+    git://git@github.com/wolfcw/libfaketime.git;branch=master;protocol=https \
+    "
+
+S = "${WORKDIR}/git"
+
+EXTRA_OEMAKE += "\
+    EXTRA_FLAGS='-Wno-error=nonnull-compare' \
+    "
+
+do_configure[noexec] = "1"
+do_compile () {
+    oe_runmake
+}
+do_install () {
+    install -d ${D}${libdir}/faketime
+    oe_libinstall -C src libfaketime ${D}${libdir}/faketime
+    install -d ${D}${bindir}
+    install -m 0755 src/faketime ${D}${bindir}
+}
+
+PACKAGES =+ "lib${PN}"
+
+FILES:${PN} = "${bindir}/faketime"
+FILES:lib${PN} = "${libdir}/faketime/*"
+
+INSANE_SKIP:${PN} += "dev-so"
+INSANE_SKIP:lib${PN} += "dev-so"
-- 
2.41.0



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-08-30 15:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-18 10:52 [meta-oe][PATCH v2] libfaketime: add recipe Tymoteusz Burak
2023-08-19  6:38 ` [oe] " Khem Raj
2023-08-30  7:33   ` Martin Jansa
2023-08-30 14:41     ` Khem Raj
2023-08-30 15:13       ` Martin Jansa
  -- strict thread matches above, loose matches on Subject: below --
2023-08-18  9:16 Tymoteusz Burak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.