All of lore.kernel.org
 help / color / mirror / Atom feed
* [dunfell][PATCH] guider: Upgrade to 3.9.7
@ 2021-03-24 10:46 Martin Jansa
  2021-03-24 15:54 ` Khem Raj
  2021-03-24 16:09 ` [oe] " akuster
  0 siblings, 2 replies; 5+ messages in thread
From: Martin Jansa @ 2021-03-24 10:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Peace Lee, Khem Raj

From: Peace Lee <iipeace5@gmail.com>

Signed-off-by: Peace Lee <iipeace5@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../recipes-devtools/guider/guider_3.9.6.bb   | 39 -------------------
 .../recipes-devtools/guider/guider_3.9.7.bb   | 19 +++++++++
 2 files changed, 19 insertions(+), 39 deletions(-)
 delete mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.6.bb
 create mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.7.bb

diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb b/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
deleted file mode 100644
index f059002161..0000000000
--- a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
+++ /dev/null
@@ -1,39 +0,0 @@
-SUMMARY = "runtime performance analyzer"
-HOMEPAGE = "https://github.com/iipeace/guider"
-BUGTRACKER = "https://github.com/iipeace/guider/issues"
-AUTHOR = "Peace Lee <ipeace5@gmail.com>"
-
-LICENSE = "GPLv2+"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
-
-PV = "3.9.6+git${SRCPV}"
-PR = "r0"
-
-SRC_URI = "git://github.com/iipeace/${BPN}"
-#SRCREV = "${AUTOREV}"
-SRCREV = "fef25c41efb9bde0614ea477d0b90bd9565ae0b4"
-
-S = "${WORKDIR}/git"
-R = "${RECIPE_SYSROOT}"
-
-inherit ${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "distutils", "", d)}
-
-GUIDER_OBJ = "guider.pyc"
-GUIDER_SCRIPT = "guider"
-
-do_install() {
-    python ${S}/setup.py install
-
-    install -d ${D}${bindir}
-    install -v -m 0755 ${STAGING_BINDIR_NATIVE}/${GUIDER_SCRIPT} ${D}${bindir}/${GUIDER_SCRIPT}
-
-    install -d ${D}${datadir}/${BPN}
-    install -v -m 0755 ${STAGING_LIBDIR_NATIVE}/python${PYTHON_BASEVERSION}/site-packages/${BPN}/${GUIDER_OBJ} ${D}${datadir}/${BPN}/${GUIDER_OBJ}
-}
-
-RDEPENDS_${PN} = "python-ctypes python-shell \
-                  python-json python-subprocess"
-python() {
-    if 'meta-python2' not in d.getVar('BBFILE_COLLECTIONS').split():
-        raise bb.parse.SkipRecipe('Requires meta-python2 to be present.')
-}
diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.7.bb b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
new file mode 100644
index 0000000000..2b799fd5e4
--- /dev/null
+++ b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
@@ -0,0 +1,19 @@
+SUMMARY = "runtime performance analyzer"
+HOMEPAGE = "https://github.com/iipeace/guider"
+BUGTRACKER = "https://github.com/iipeace/guider/issues"
+AUTHOR = "Peace Lee <ipeace5@gmail.com>"
+
+LICENSE = "GPLv2+"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
+
+PV = "3.9.7+git${SRCPV}"
+
+SRC_URI = "git://github.com/iipeace/${BPN}"
+SRCREV = "c87269d6d4669d12c99a2a7b9b07c39a5dd24ac6"
+
+S = "${WORKDIR}/git"
+
+inherit setuptools3
+
+RDEPENDS_${PN} = "python3 python3-core \
+        python3-ctypes python3-shell python3-json"
-- 
2.30.2


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

* Re: [dunfell][PATCH] guider: Upgrade to 3.9.7
  2021-03-24 10:46 [dunfell][PATCH] guider: Upgrade to 3.9.7 Martin Jansa
@ 2021-03-24 15:54 ` Khem Raj
  2021-03-24 16:43   ` Martin Jansa
  2021-03-24 16:09 ` [oe] " akuster
  1 sibling, 1 reply; 5+ messages in thread
From: Khem Raj @ 2021-03-24 15:54 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembeded-devel, Peace Lee

there is v2 in master-next which I will send once builds are done.

On Wed, Mar 24, 2021 at 3:46 AM Martin Jansa <martin.jansa@gmail.com> wrote:
>
> From: Peace Lee <iipeace5@gmail.com>
>
> Signed-off-by: Peace Lee <iipeace5@gmail.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  .../recipes-devtools/guider/guider_3.9.6.bb   | 39 -------------------
>  .../recipes-devtools/guider/guider_3.9.7.bb   | 19 +++++++++
>  2 files changed, 19 insertions(+), 39 deletions(-)
>  delete mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.6.bb
>  create mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.7.bb
>
> diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb b/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> deleted file mode 100644
> index f059002161..0000000000
> --- a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> +++ /dev/null
> @@ -1,39 +0,0 @@
> -SUMMARY = "runtime performance analyzer"
> -HOMEPAGE = "https://github.com/iipeace/guider"
> -BUGTRACKER = "https://github.com/iipeace/guider/issues"
> -AUTHOR = "Peace Lee <ipeace5@gmail.com>"
> -
> -LICENSE = "GPLv2+"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
> -
> -PV = "3.9.6+git${SRCPV}"
> -PR = "r0"
> -
> -SRC_URI = "git://github.com/iipeace/${BPN}"
> -#SRCREV = "${AUTOREV}"
> -SRCREV = "fef25c41efb9bde0614ea477d0b90bd9565ae0b4"
> -
> -S = "${WORKDIR}/git"
> -R = "${RECIPE_SYSROOT}"
> -
> -inherit ${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "distutils", "", d)}
> -
> -GUIDER_OBJ = "guider.pyc"
> -GUIDER_SCRIPT = "guider"
> -
> -do_install() {
> -    python ${S}/setup.py install
> -
> -    install -d ${D}${bindir}
> -    install -v -m 0755 ${STAGING_BINDIR_NATIVE}/${GUIDER_SCRIPT} ${D}${bindir}/${GUIDER_SCRIPT}
> -
> -    install -d ${D}${datadir}/${BPN}
> -    install -v -m 0755 ${STAGING_LIBDIR_NATIVE}/python${PYTHON_BASEVERSION}/site-packages/${BPN}/${GUIDER_OBJ} ${D}${datadir}/${BPN}/${GUIDER_OBJ}
> -}
> -
> -RDEPENDS_${PN} = "python-ctypes python-shell \
> -                  python-json python-subprocess"
> -python() {
> -    if 'meta-python2' not in d.getVar('BBFILE_COLLECTIONS').split():
> -        raise bb.parse.SkipRecipe('Requires meta-python2 to be present.')
> -}
> diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.7.bb b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> new file mode 100644
> index 0000000000..2b799fd5e4
> --- /dev/null
> +++ b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> @@ -0,0 +1,19 @@
> +SUMMARY = "runtime performance analyzer"
> +HOMEPAGE = "https://github.com/iipeace/guider"
> +BUGTRACKER = "https://github.com/iipeace/guider/issues"
> +AUTHOR = "Peace Lee <ipeace5@gmail.com>"
> +
> +LICENSE = "GPLv2+"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
> +
> +PV = "3.9.7+git${SRCPV}"
> +
> +SRC_URI = "git://github.com/iipeace/${BPN}"
> +SRCREV = "c87269d6d4669d12c99a2a7b9b07c39a5dd24ac6"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit setuptools3
> +
> +RDEPENDS_${PN} = "python3 python3-core \
> +        python3-ctypes python3-shell python3-json"
> --
> 2.30.2
>

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

* Re: [oe] [dunfell][PATCH] guider: Upgrade to 3.9.7
  2021-03-24 10:46 [dunfell][PATCH] guider: Upgrade to 3.9.7 Martin Jansa
  2021-03-24 15:54 ` Khem Raj
@ 2021-03-24 16:09 ` akuster
  2021-03-24 16:45   ` Martin Jansa
  1 sibling, 1 reply; 5+ messages in thread
From: akuster @ 2021-03-24 16:09 UTC (permalink / raw)
  To: Martin Jansa, openembedded-devel; +Cc: Peace Lee, Khem Raj



On 3/24/21 3:46 AM, Martin Jansa wrote:
> From: Peace Lee <iipeace5@gmail.com>
>
> Signed-off-by: Peace Lee <iipeace5@gmail.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
What is in this update? What about Gategarth?

-armin
> ---
>  .../recipes-devtools/guider/guider_3.9.6.bb   | 39 -------------------
>  .../recipes-devtools/guider/guider_3.9.7.bb   | 19 +++++++++
>  2 files changed, 19 insertions(+), 39 deletions(-)
>  delete mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.6.bb
>  create mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.7.bb
>
> diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb b/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> deleted file mode 100644
> index f059002161..0000000000
> --- a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> +++ /dev/null
> @@ -1,39 +0,0 @@
> -SUMMARY = "runtime performance analyzer"
> -HOMEPAGE = "https://github.com/iipeace/guider"
> -BUGTRACKER = "https://github.com/iipeace/guider/issues"
> -AUTHOR = "Peace Lee <ipeace5@gmail.com>"
> -
> -LICENSE = "GPLv2+"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
> -
> -PV = "3.9.6+git${SRCPV}"
> -PR = "r0"
> -
> -SRC_URI = "git://github.com/iipeace/${BPN}"
> -#SRCREV = "${AUTOREV}"
> -SRCREV = "fef25c41efb9bde0614ea477d0b90bd9565ae0b4"
> -
> -S = "${WORKDIR}/git"
> -R = "${RECIPE_SYSROOT}"
> -
> -inherit ${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "distutils", "", d)}
> -
> -GUIDER_OBJ = "guider.pyc"
> -GUIDER_SCRIPT = "guider"
> -
> -do_install() {
> -    python ${S}/setup.py install
> -
> -    install -d ${D}${bindir}
> -    install -v -m 0755 ${STAGING_BINDIR_NATIVE}/${GUIDER_SCRIPT} ${D}${bindir}/${GUIDER_SCRIPT}
> -
> -    install -d ${D}${datadir}/${BPN}
> -    install -v -m 0755 ${STAGING_LIBDIR_NATIVE}/python${PYTHON_BASEVERSION}/site-packages/${BPN}/${GUIDER_OBJ} ${D}${datadir}/${BPN}/${GUIDER_OBJ}
> -}
> -
> -RDEPENDS_${PN} = "python-ctypes python-shell \
> -                  python-json python-subprocess"
> -python() {
> -    if 'meta-python2' not in d.getVar('BBFILE_COLLECTIONS').split():
> -        raise bb.parse.SkipRecipe('Requires meta-python2 to be present.')
> -}
> diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.7.bb b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> new file mode 100644
> index 0000000000..2b799fd5e4
> --- /dev/null
> +++ b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> @@ -0,0 +1,19 @@
> +SUMMARY = "runtime performance analyzer"
> +HOMEPAGE = "https://github.com/iipeace/guider"
> +BUGTRACKER = "https://github.com/iipeace/guider/issues"
> +AUTHOR = "Peace Lee <ipeace5@gmail.com>"
> +
> +LICENSE = "GPLv2+"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
> +
> +PV = "3.9.7+git${SRCPV}"
> +
> +SRC_URI = "git://github.com/iipeace/${BPN}"
> +SRCREV = "c87269d6d4669d12c99a2a7b9b07c39a5dd24ac6"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit setuptools3
> +
> +RDEPENDS_${PN} = "python3 python3-core \
> +        python3-ctypes python3-shell python3-json"
>
> 
>


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

* Re: [dunfell][PATCH] guider: Upgrade to 3.9.7
  2021-03-24 15:54 ` Khem Raj
@ 2021-03-24 16:43   ` Martin Jansa
  0 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2021-03-24 16:43 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel, Peace Lee

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

On Wed, Mar 24, 2021 at 08:54:47AM -0700, Khem Raj wrote:
> there is v2 in master-next which I will send once builds are done.

This is for 3.9.7 (because that's where it switched from python2 to
python3) not 3.9.8 targetting master now.

> On Wed, Mar 24, 2021 at 3:46 AM Martin Jansa <martin.jansa@gmail.com> wrote:
> >
> > From: Peace Lee <iipeace5@gmail.com>
> >
> > Signed-off-by: Peace Lee <iipeace5@gmail.com>
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> >  .../recipes-devtools/guider/guider_3.9.6.bb   | 39 -------------------
> >  .../recipes-devtools/guider/guider_3.9.7.bb   | 19 +++++++++
> >  2 files changed, 19 insertions(+), 39 deletions(-)
> >  delete mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> >  create mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> >
> > diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb b/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> > deleted file mode 100644
> > index f059002161..0000000000
> > --- a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> > +++ /dev/null
> > @@ -1,39 +0,0 @@
> > -SUMMARY = "runtime performance analyzer"
> > -HOMEPAGE = "https://github.com/iipeace/guider"
> > -BUGTRACKER = "https://github.com/iipeace/guider/issues"
> > -AUTHOR = "Peace Lee <ipeace5@gmail.com>"
> > -
> > -LICENSE = "GPLv2+"
> > -LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
> > -
> > -PV = "3.9.6+git${SRCPV}"
> > -PR = "r0"
> > -
> > -SRC_URI = "git://github.com/iipeace/${BPN}"
> > -#SRCREV = "${AUTOREV}"
> > -SRCREV = "fef25c41efb9bde0614ea477d0b90bd9565ae0b4"
> > -
> > -S = "${WORKDIR}/git"
> > -R = "${RECIPE_SYSROOT}"
> > -
> > -inherit ${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "distutils", "", d)}
> > -
> > -GUIDER_OBJ = "guider.pyc"
> > -GUIDER_SCRIPT = "guider"
> > -
> > -do_install() {
> > -    python ${S}/setup.py install
> > -
> > -    install -d ${D}${bindir}
> > -    install -v -m 0755 ${STAGING_BINDIR_NATIVE}/${GUIDER_SCRIPT} ${D}${bindir}/${GUIDER_SCRIPT}
> > -
> > -    install -d ${D}${datadir}/${BPN}
> > -    install -v -m 0755 ${STAGING_LIBDIR_NATIVE}/python${PYTHON_BASEVERSION}/site-packages/${BPN}/${GUIDER_OBJ} ${D}${datadir}/${BPN}/${GUIDER_OBJ}
> > -}
> > -
> > -RDEPENDS_${PN} = "python-ctypes python-shell \
> > -                  python-json python-subprocess"
> > -python() {
> > -    if 'meta-python2' not in d.getVar('BBFILE_COLLECTIONS').split():
> > -        raise bb.parse.SkipRecipe('Requires meta-python2 to be present.')
> > -}
> > diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.7.bb b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> > new file mode 100644
> > index 0000000000..2b799fd5e4
> > --- /dev/null
> > +++ b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> > @@ -0,0 +1,19 @@
> > +SUMMARY = "runtime performance analyzer"
> > +HOMEPAGE = "https://github.com/iipeace/guider"
> > +BUGTRACKER = "https://github.com/iipeace/guider/issues"
> > +AUTHOR = "Peace Lee <ipeace5@gmail.com>"
> > +
> > +LICENSE = "GPLv2+"
> > +LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
> > +
> > +PV = "3.9.7+git${SRCPV}"
> > +
> > +SRC_URI = "git://github.com/iipeace/${BPN}"
> > +SRCREV = "c87269d6d4669d12c99a2a7b9b07c39a5dd24ac6"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +inherit setuptools3
> > +
> > +RDEPENDS_${PN} = "python3 python3-core \
> > +        python3-ctypes python3-shell python3-json"
> > --
> > 2.30.2
> >

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 201 bytes --]

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

* Re: [oe] [dunfell][PATCH] guider: Upgrade to 3.9.7
  2021-03-24 16:09 ` [oe] " akuster
@ 2021-03-24 16:45   ` Martin Jansa
  0 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2021-03-24 16:45 UTC (permalink / raw)
  To: akuster808; +Cc: openembedded-devel, Peace Lee, Khem Raj

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

On Wed, Mar 24, 2021 at 09:09:50AM -0700, akuster808 wrote:
> 
> 
> On 3/24/21 3:46 AM, Martin Jansa wrote:
> > From: Peace Lee <iipeace5@gmail.com>
> >
> > Signed-off-by: Peace Lee <iipeace5@gmail.com>
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> What is in this update? What about Gategarth?

This update is because this version from gatesgarth is where it switched from python2 to 
python3, so that we don't need to skip it without meta-python2.

> > ---
> >  .../recipes-devtools/guider/guider_3.9.6.bb   | 39 -------------------
> >  .../recipes-devtools/guider/guider_3.9.7.bb   | 19 +++++++++
> >  2 files changed, 19 insertions(+), 39 deletions(-)
> >  delete mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> >  create mode 100644 meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> >
> > diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb b/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> > deleted file mode 100644
> > index f059002161..0000000000
> > --- a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
> > +++ /dev/null
> > @@ -1,39 +0,0 @@
> > -SUMMARY = "runtime performance analyzer"
> > -HOMEPAGE = "https://github.com/iipeace/guider"
> > -BUGTRACKER = "https://github.com/iipeace/guider/issues"
> > -AUTHOR = "Peace Lee <ipeace5@gmail.com>"
> > -
> > -LICENSE = "GPLv2+"
> > -LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
> > -
> > -PV = "3.9.6+git${SRCPV}"
> > -PR = "r0"
> > -
> > -SRC_URI = "git://github.com/iipeace/${BPN}"
> > -#SRCREV = "${AUTOREV}"
> > -SRCREV = "fef25c41efb9bde0614ea477d0b90bd9565ae0b4"
> > -
> > -S = "${WORKDIR}/git"
> > -R = "${RECIPE_SYSROOT}"
> > -
> > -inherit ${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "distutils", "", d)}
> > -
> > -GUIDER_OBJ = "guider.pyc"
> > -GUIDER_SCRIPT = "guider"
> > -
> > -do_install() {
> > -    python ${S}/setup.py install
> > -
> > -    install -d ${D}${bindir}
> > -    install -v -m 0755 ${STAGING_BINDIR_NATIVE}/${GUIDER_SCRIPT} ${D}${bindir}/${GUIDER_SCRIPT}
> > -
> > -    install -d ${D}${datadir}/${BPN}
> > -    install -v -m 0755 ${STAGING_LIBDIR_NATIVE}/python${PYTHON_BASEVERSION}/site-packages/${BPN}/${GUIDER_OBJ} ${D}${datadir}/${BPN}/${GUIDER_OBJ}
> > -}
> > -
> > -RDEPENDS_${PN} = "python-ctypes python-shell \
> > -                  python-json python-subprocess"
> > -python() {
> > -    if 'meta-python2' not in d.getVar('BBFILE_COLLECTIONS').split():
> > -        raise bb.parse.SkipRecipe('Requires meta-python2 to be present.')
> > -}
> > diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.7.bb b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> > new file mode 100644
> > index 0000000000..2b799fd5e4
> > --- /dev/null
> > +++ b/meta-oe/recipes-devtools/guider/guider_3.9.7.bb
> > @@ -0,0 +1,19 @@
> > +SUMMARY = "runtime performance analyzer"
> > +HOMEPAGE = "https://github.com/iipeace/guider"
> > +BUGTRACKER = "https://github.com/iipeace/guider/issues"
> > +AUTHOR = "Peace Lee <ipeace5@gmail.com>"
> > +
> > +LICENSE = "GPLv2+"
> > +LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"
> > +
> > +PV = "3.9.7+git${SRCPV}"
> > +
> > +SRC_URI = "git://github.com/iipeace/${BPN}"
> > +SRCREV = "c87269d6d4669d12c99a2a7b9b07c39a5dd24ac6"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +inherit setuptools3
> > +
> > +RDEPENDS_${PN} = "python3 python3-core \
> > +        python3-ctypes python3-shell python3-json"
> >
> > 
> >
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 201 bytes --]

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

end of thread, other threads:[~2021-03-24 16:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-24 10:46 [dunfell][PATCH] guider: Upgrade to 3.9.7 Martin Jansa
2021-03-24 15:54 ` Khem Raj
2021-03-24 16:43   ` Martin Jansa
2021-03-24 16:09 ` [oe] " akuster
2021-03-24 16:45   ` Martin Jansa

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.