All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [oe] [meta-oe][PATCH v2 1/2] proj: Upgrade to 8.2.1
       [not found] <20220519051622.1050304-1-zboszor@pr.hu>
@ 2022-05-19 16:14 ` Khem Raj
       [not found] ` <20220519051622.1050304-2-zboszor@pr.hu>
  1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2022-05-19 16:14 UTC (permalink / raw)
  To: Böszörményi Zoltán
  Cc: openembeded-devel, Zoltán Böszörményi

I think there is a side effect

https://errors.yoctoproject.org/Errors/Details/656870/

On Wed, May 18, 2022 at 10:16 PM Zoltan Boszormenyi via
lists.openembedded.org <zboszor=pr.hu@lists.openembedded.org> wrote:
>
> From: Zoltán Böszörményi <zboszor@gmail.com>
>
> Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com>
> ---
>  .../proj/{proj_7.0.1.bb => proj_8.2.1.bb}                  | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
>  rename meta-oe/recipes-navigation/proj/{proj_7.0.1.bb => proj_8.2.1.bb} (63%)
>
> diff --git a/meta-oe/recipes-navigation/proj/proj_7.0.1.bb b/meta-oe/recipes-navigation/proj/proj_8.2.1.bb
> similarity index 63%
> rename from meta-oe/recipes-navigation/proj/proj_7.0.1.bb
> rename to meta-oe/recipes-navigation/proj/proj_8.2.1.bb
> index 98e57f21e..0c1104926 100644
> --- a/meta-oe/recipes-navigation/proj/proj_7.0.1.bb
> +++ b/meta-oe/recipes-navigation/proj/proj_8.2.1.bb
> @@ -3,12 +3,11 @@ HOMEPAGE = "http://trac.osgeo.org/proj/"
>  SECTION = "libs"
>
>  LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://COPYING;md5=74d9aaec5fa0cd734341e8c4dc91b608"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=f27445198ba1500f508fce2b183ce0ff"
>
>  SRC_URI = "http://download.osgeo.org/${BPN}/${BP}.tar.gz"
>
> -SRC_URI[md5sum] = "5ba7536b579a6c9e0ad822dbdd455985"
> -SRC_URI[sha256sum] = "a7026d39c9c80d51565cfc4b33d22631c11e491004e19020b3ff5a0791e1779f"
> +SRC_URI[sha256sum] = "76ed3d0c3a348a6693dfae535e5658bbfd47f71cb7ff7eb96d9f12f7e068b1cf"
>
>  DEPENDS = "sqlite3 sqlite3-native tiff"
>
> @@ -19,3 +18,5 @@ PACKAGECONFIG ?= "curl"
>  PACKAGECONFIG[curl] = ",--without-curl,curl"
>
>  FILES:${PN} += "${datadir}/proj"
> +
> +BBCLASSEXTEND = "native"
> --
> 2.36.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#97170): https://lists.openembedded.org/g/openembedded-devel/message/97170
> Mute This Topic: https://lists.openembedded.org/mt/91202580/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] 3+ messages in thread

* Re: [oe] [meta-oe][PATCH v2 2/2] python3-pyproj: New recipe for pyproj version 3.3.1
       [not found] ` <20220519051622.1050304-2-zboszor@pr.hu>
@ 2022-05-19 17:50   ` Khem Raj
  2022-05-19 17:50     ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2022-05-19 17:50 UTC (permalink / raw)
  To: Böszörményi Zoltán
  Cc: openembeded-devel, Zoltán Böszörményi

fails to build. Seems to access proj-native libs instead of target proj

On Wed, May 18, 2022 at 10:16 PM Zoltan Boszormenyi via
lists.openembedded.org <zboszor=pr.hu@lists.openembedded.org> wrote:
>
> From: Zoltán Böszörményi <zboszor@gmail.com>
>
> It needs PROJ.4 >= 8.x and the fix for setuptools in oe-core.
>
> Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com>
> ---
>  .../recipes-devtools/python/python3-pyproj_3.3.1.bb | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb b/meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb
> new file mode 100644
> index 000000000..ebef1e74c
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb
> @@ -0,0 +1,13 @@
> +SUMMARY = "Python interface to PROJ (cartographic projections and coordinate transformations library)"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=dc4bb2668871655e24030dfe8d2a7ce7"
> +DEPENDS = "python3-cython proj"
> +DEPENDS:append:class-target = " proj-native python3-cython-native"
> +
> +PYPI_PACKAGE = "pyproj"
> +
> +inherit pypi setuptools3
> +
> +SRC_URI[sha256sum] = "b3d8e14d91cc95fb3dbc03a9d0588ac58326803eefa5bbb0978d109de3304fbe"
> +
> +RDEPENDS:${PN} = "${PYTHON_PN}-cython proj"
> --
> 2.36.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#97169): https://lists.openembedded.org/g/openembedded-devel/message/97169
> Mute This Topic: https://lists.openembedded.org/mt/91202579/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] 3+ messages in thread

* Re: [oe] [meta-oe][PATCH v2 2/2] python3-pyproj: New recipe for pyproj version 3.3.1
  2022-05-19 17:50   ` [oe] [meta-oe][PATCH v2 2/2] python3-pyproj: New recipe for pyproj version 3.3.1 Khem Raj
@ 2022-05-19 17:50     ` Khem Raj
  0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2022-05-19 17:50 UTC (permalink / raw)
  To: Böszörményi Zoltán
  Cc: openembeded-devel, Zoltán Böszörményi

forgot the error link
https://errors.yoctoproject.org/Errors/Details/657040/

On Thu, May 19, 2022 at 10:50 AM Khem Raj <raj.khem@gmail.com> wrote:
>
> fails to build. Seems to access proj-native libs instead of target proj
>
> On Wed, May 18, 2022 at 10:16 PM Zoltan Boszormenyi via
> lists.openembedded.org <zboszor=pr.hu@lists.openembedded.org> wrote:
> >
> > From: Zoltán Böszörményi <zboszor@gmail.com>
> >
> > It needs PROJ.4 >= 8.x and the fix for setuptools in oe-core.
> >
> > Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com>
> > ---
> >  .../recipes-devtools/python/python3-pyproj_3.3.1.bb | 13 +++++++++++++
> >  1 file changed, 13 insertions(+)
> >  create mode 100644 meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb
> >
> > diff --git a/meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb b/meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb
> > new file mode 100644
> > index 000000000..ebef1e74c
> > --- /dev/null
> > +++ b/meta-python/recipes-devtools/python/python3-pyproj_3.3.1.bb
> > @@ -0,0 +1,13 @@
> > +SUMMARY = "Python interface to PROJ (cartographic projections and coordinate transformations library)"
> > +LICENSE = "MIT"
> > +LIC_FILES_CHKSUM = "file://LICENSE;md5=dc4bb2668871655e24030dfe8d2a7ce7"
> > +DEPENDS = "python3-cython proj"
> > +DEPENDS:append:class-target = " proj-native python3-cython-native"
> > +
> > +PYPI_PACKAGE = "pyproj"
> > +
> > +inherit pypi setuptools3
> > +
> > +SRC_URI[sha256sum] = "b3d8e14d91cc95fb3dbc03a9d0588ac58326803eefa5bbb0978d109de3304fbe"
> > +
> > +RDEPENDS:${PN} = "${PYTHON_PN}-cython proj"
> > --
> > 2.36.1
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#97169): https://lists.openembedded.org/g/openembedded-devel/message/97169
> > Mute This Topic: https://lists.openembedded.org/mt/91202579/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] 3+ messages in thread

end of thread, other threads:[~2022-05-19 17:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20220519051622.1050304-1-zboszor@pr.hu>
2022-05-19 16:14 ` [oe] [meta-oe][PATCH v2 1/2] proj: Upgrade to 8.2.1 Khem Raj
     [not found] ` <20220519051622.1050304-2-zboszor@pr.hu>
2022-05-19 17:50   ` [oe] [meta-oe][PATCH v2 2/2] python3-pyproj: New recipe for pyproj version 3.3.1 Khem Raj
2022-05-19 17:50     ` Khem Raj

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.