All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] musl-locales: Switch SRC_URI to new location
@ 2022-05-16 22:49 Khem Raj
  2022-05-20 14:50 ` [OE-core] " Steve Sakoman
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2022-05-16 22:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Khem Raj

Original repository has been less maintained and thusly adelie linux
community has picked up the package and started to maintain it also
applied long standing bug fixes.

Now we use new fork by Adélie Linux, which includes more supported
locales.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta/recipes-core/musl/musl-locales_git.bb | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/meta/recipes-core/musl/musl-locales_git.bb b/meta/recipes-core/musl/musl-locales_git.bb
index 40b20e250d2..92532237e03 100644
--- a/meta/recipes-core/musl/musl-locales_git.bb
+++ b/meta/recipes-core/musl/musl-locales_git.bb
@@ -2,15 +2,15 @@
 # Released under the MIT license (see COPYING.MIT for the terms)
 #
 SUMMARY = "Locales support for musl"
-HOMEPAGE = "https://gitlab.com/rilian-la-te/musl-locales"
+HOMEPAGE = "https://git.adelielinux.org/adelie/musl-locales/-/wikis/home"
 LICENSE = "MIT & LGPL-3.0-or-later"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=cf5713fba707073020b1db2acaa73e78 \
                     file://LICENSE.MIT;md5=a4f1c6864a83ddf4b754cdab7d593523"
 
-SRC_URI = "git://gitlab.com/rilian-la-te/musl-locales;protocol=https;branch=master"
+SRC_URI = "git://git.adelielinux.org/adelie/musl-locales;protocol=https;branch=main"
 
 PV = "1.0+git${SRCPV}"
-SRCREV = "1101fb2bcdd189cd9415b8bd1c775eb43527d25c"
+SRCREV = "cac3dcdccd1d0c08d17f4919d862737d64b76f79"
 
 S = "${WORKDIR}/git"
 
@@ -28,46 +28,55 @@ python () {
 
 # only locale binaries are under GPL-3.0-or-later others are MIT
 LICENSE:${PN} = "LGPL-3.0-or-later"
-LICENSE:locale-base-ch-de = "MIT"
+LICENSE:locale-base-cs-cz = "MIT"
 LICENSE:locale-base-de-ch = "MIT"
 LICENSE:locale-base-de-de = "MIT"
 LICENSE:locale-base-en-gb = "MIT"
 LICENSE:locale-base-en-us = "MIT"
 LICENSE:locale-base-es-es = "MIT"
+LICENSE:locale-base-fi-fi = "MIT"
 LICENSE:locale-base-fr-fr = "MIT"
 LICENSE:locale-base-it-it = "MIT"
 LICENSE:locale-base-nb-no = "MIT"
 LICENSE:locale-base-nl-nl = "MIT"
 LICENSE:locale-base-pt-br = "MIT"
+LICENSE:locale-base-pt-pt = "MIT"
 LICENSE:locale-base-ru-ru = "MIT"
+LICENSE:locale-base-sr-rs = "MIT"
 LICENSE:locale-base-sv-se = "MIT"
 
-PACKAGES =+ "locale-base-ch-de \
+PACKAGES =+ "locale-base-cs-cz \
              locale-base-de-ch \
              locale-base-de-de \
              locale-base-en-gb \
              locale-base-en-us \
              locale-base-es-es \
+             locale-base-fi-fi \
              locale-base-fr-fr \
              locale-base-it-it \
              locale-base-nb-no \
              locale-base-nl-nl \
              locale-base-pt-br \
+             locale-base-pt-pt \
              locale-base-ru-ru \
+             locale-base-sr-rs \
              locale-base-sv-se \
              "
-FILES:locale-base-ch-de += "${datadir}/i18n/locales/musl/ch_DE.UTF-8"
+FILES:locale-base-cs-cz += "${datadir}/i18n/locales/musl/cs_CZ.UTF-8"
 FILES:locale-base-de-ch += "${datadir}/i18n/locales/musl/de_CH.UTF-8"
 FILES:locale-base-de-de += "${datadir}/i18n/locales/musl/de_DE.UTF-8"
 FILES:locale-base-en-gb += "${datadir}/i18n/locales/musl/en_GB.UTF-8"
 FILES:locale-base-en-us += "${datadir}/i18n/locales/musl/en_US.UTF-8"
 FILES:locale-base-es-es += "${datadir}/i18n/locales/musl/es_ES.UTF-8"
+FILES:locale-base-fi-fi += "${datadir}/i18n/locales/musl/fi_FI.UTF-8"
 FILES:locale-base-fr-fr += "${datadir}/i18n/locales/musl/fr_FR.UTF-8"
 FILES:locale-base-it-it += "${datadir}/i18n/locales/musl/it_IT.UTF-8"
 FILES:locale-base-nb-no += "${datadir}/i18n/locales/musl/nb_NO.UTF-8"
 FILES:locale-base-nl-nl += "${datadir}/i18n/locales/musl/nl_NL.UTF-8"
 FILES:locale-base-pt-br += "${datadir}/i18n/locales/musl/pt_BR.UTF-8"
+FILES:locale-base-pt-pt += "${datadir}/i18n/locales/musl/pt_PT.UTF-8"
 FILES:locale-base-ru-ru += "${datadir}/i18n/locales/musl/ru_RU.UTF-8"
+FILES:locale-base-sr-rs += "${datadir}/i18n/locales/musl/sr_RS.UTF-8"
 FILES:locale-base-sv-se += "${datadir}/i18n/locales/musl/sv_SE.UTF-8"
 
 UPSTREAM_CHECK_COMMITS = "1"
-- 
2.36.1


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

* Re: [OE-core] [PATCH] musl-locales: Switch SRC_URI to new location
  2022-05-16 22:49 [PATCH] musl-locales: Switch SRC_URI to new location Khem Raj
@ 2022-05-20 14:50 ` Steve Sakoman
  2022-05-20 15:39   ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Steve Sakoman @ 2022-05-20 14:50 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

On Mon, May 16, 2022 at 12:49 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> Original repository has been less maintained and thusly adelie linux
> community has picked up the package and started to maintain it also
> applied long standing bug fixes.
>
> Now we use new fork by Adélie Linux, which includes more supported
> locales.

Is this suitable/safe for kirkstone?

Steve

> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  meta/recipes-core/musl/musl-locales_git.bb | 21 +++++++++++++++------
>  1 file changed, 15 insertions(+), 6 deletions(-)
>
> diff --git a/meta/recipes-core/musl/musl-locales_git.bb b/meta/recipes-core/musl/musl-locales_git.bb
> index 40b20e250d2..92532237e03 100644
> --- a/meta/recipes-core/musl/musl-locales_git.bb
> +++ b/meta/recipes-core/musl/musl-locales_git.bb
> @@ -2,15 +2,15 @@
>  # Released under the MIT license (see COPYING.MIT for the terms)
>  #
>  SUMMARY = "Locales support for musl"
> -HOMEPAGE = "https://gitlab.com/rilian-la-te/musl-locales"
> +HOMEPAGE = "https://git.adelielinux.org/adelie/musl-locales/-/wikis/home"
>  LICENSE = "MIT & LGPL-3.0-or-later"
>  LIC_FILES_CHKSUM = "file://LICENSE;md5=cf5713fba707073020b1db2acaa73e78 \
>                      file://LICENSE.MIT;md5=a4f1c6864a83ddf4b754cdab7d593523"
>
> -SRC_URI = "git://gitlab.com/rilian-la-te/musl-locales;protocol=https;branch=master"
> +SRC_URI = "git://git.adelielinux.org/adelie/musl-locales;protocol=https;branch=main"
>
>  PV = "1.0+git${SRCPV}"
> -SRCREV = "1101fb2bcdd189cd9415b8bd1c775eb43527d25c"
> +SRCREV = "cac3dcdccd1d0c08d17f4919d862737d64b76f79"
>
>  S = "${WORKDIR}/git"
>
> @@ -28,46 +28,55 @@ python () {
>
>  # only locale binaries are under GPL-3.0-or-later others are MIT
>  LICENSE:${PN} = "LGPL-3.0-or-later"
> -LICENSE:locale-base-ch-de = "MIT"
> +LICENSE:locale-base-cs-cz = "MIT"
>  LICENSE:locale-base-de-ch = "MIT"
>  LICENSE:locale-base-de-de = "MIT"
>  LICENSE:locale-base-en-gb = "MIT"
>  LICENSE:locale-base-en-us = "MIT"
>  LICENSE:locale-base-es-es = "MIT"
> +LICENSE:locale-base-fi-fi = "MIT"
>  LICENSE:locale-base-fr-fr = "MIT"
>  LICENSE:locale-base-it-it = "MIT"
>  LICENSE:locale-base-nb-no = "MIT"
>  LICENSE:locale-base-nl-nl = "MIT"
>  LICENSE:locale-base-pt-br = "MIT"
> +LICENSE:locale-base-pt-pt = "MIT"
>  LICENSE:locale-base-ru-ru = "MIT"
> +LICENSE:locale-base-sr-rs = "MIT"
>  LICENSE:locale-base-sv-se = "MIT"
>
> -PACKAGES =+ "locale-base-ch-de \
> +PACKAGES =+ "locale-base-cs-cz \
>               locale-base-de-ch \
>               locale-base-de-de \
>               locale-base-en-gb \
>               locale-base-en-us \
>               locale-base-es-es \
> +             locale-base-fi-fi \
>               locale-base-fr-fr \
>               locale-base-it-it \
>               locale-base-nb-no \
>               locale-base-nl-nl \
>               locale-base-pt-br \
> +             locale-base-pt-pt \
>               locale-base-ru-ru \
> +             locale-base-sr-rs \
>               locale-base-sv-se \
>               "
> -FILES:locale-base-ch-de += "${datadir}/i18n/locales/musl/ch_DE.UTF-8"
> +FILES:locale-base-cs-cz += "${datadir}/i18n/locales/musl/cs_CZ.UTF-8"
>  FILES:locale-base-de-ch += "${datadir}/i18n/locales/musl/de_CH.UTF-8"
>  FILES:locale-base-de-de += "${datadir}/i18n/locales/musl/de_DE.UTF-8"
>  FILES:locale-base-en-gb += "${datadir}/i18n/locales/musl/en_GB.UTF-8"
>  FILES:locale-base-en-us += "${datadir}/i18n/locales/musl/en_US.UTF-8"
>  FILES:locale-base-es-es += "${datadir}/i18n/locales/musl/es_ES.UTF-8"
> +FILES:locale-base-fi-fi += "${datadir}/i18n/locales/musl/fi_FI.UTF-8"
>  FILES:locale-base-fr-fr += "${datadir}/i18n/locales/musl/fr_FR.UTF-8"
>  FILES:locale-base-it-it += "${datadir}/i18n/locales/musl/it_IT.UTF-8"
>  FILES:locale-base-nb-no += "${datadir}/i18n/locales/musl/nb_NO.UTF-8"
>  FILES:locale-base-nl-nl += "${datadir}/i18n/locales/musl/nl_NL.UTF-8"
>  FILES:locale-base-pt-br += "${datadir}/i18n/locales/musl/pt_BR.UTF-8"
> +FILES:locale-base-pt-pt += "${datadir}/i18n/locales/musl/pt_PT.UTF-8"
>  FILES:locale-base-ru-ru += "${datadir}/i18n/locales/musl/ru_RU.UTF-8"
> +FILES:locale-base-sr-rs += "${datadir}/i18n/locales/musl/sr_RS.UTF-8"
>  FILES:locale-base-sv-se += "${datadir}/i18n/locales/musl/sv_SE.UTF-8"
>
>  UPSTREAM_CHECK_COMMITS = "1"
> --
> 2.36.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#165700): https://lists.openembedded.org/g/openembedded-core/message/165700
> Mute This Topic: https://lists.openembedded.org/mt/91152448/3620601
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [steve@sakoman.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [OE-core] [PATCH] musl-locales: Switch SRC_URI to new location
  2022-05-20 14:50 ` [OE-core] " Steve Sakoman
@ 2022-05-20 15:39   ` Khem Raj
  2022-05-20 16:21     ` Steve Sakoman
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2022-05-20 15:39 UTC (permalink / raw)
  To: Steve Sakoman; +Cc: Patches and discussions about the oe-core layer

On Fri, May 20, 2022 at 7:50 AM Steve Sakoman <steve@sakoman.com> wrote:
>
> On Mon, May 16, 2022 at 12:49 PM Khem Raj <raj.khem@gmail.com> wrote:
> >
> > Original repository has been less maintained and thusly adelie linux
> > community has picked up the package and started to maintain it also
> > applied long standing bug fixes.
> >
> > Now we use new fork by Adélie Linux, which includes more supported
> > locales.
>
> Is this suitable/safe for kirkstone?

yes it is.

>
> Steve
>
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> >  meta/recipes-core/musl/musl-locales_git.bb | 21 +++++++++++++++------
> >  1 file changed, 15 insertions(+), 6 deletions(-)
> >
> > diff --git a/meta/recipes-core/musl/musl-locales_git.bb b/meta/recipes-core/musl/musl-locales_git.bb
> > index 40b20e250d2..92532237e03 100644
> > --- a/meta/recipes-core/musl/musl-locales_git.bb
> > +++ b/meta/recipes-core/musl/musl-locales_git.bb
> > @@ -2,15 +2,15 @@
> >  # Released under the MIT license (see COPYING.MIT for the terms)
> >  #
> >  SUMMARY = "Locales support for musl"
> > -HOMEPAGE = "https://gitlab.com/rilian-la-te/musl-locales"
> > +HOMEPAGE = "https://git.adelielinux.org/adelie/musl-locales/-/wikis/home"
> >  LICENSE = "MIT & LGPL-3.0-or-later"
> >  LIC_FILES_CHKSUM = "file://LICENSE;md5=cf5713fba707073020b1db2acaa73e78 \
> >                      file://LICENSE.MIT;md5=a4f1c6864a83ddf4b754cdab7d593523"
> >
> > -SRC_URI = "git://gitlab.com/rilian-la-te/musl-locales;protocol=https;branch=master"
> > +SRC_URI = "git://git.adelielinux.org/adelie/musl-locales;protocol=https;branch=main"
> >
> >  PV = "1.0+git${SRCPV}"
> > -SRCREV = "1101fb2bcdd189cd9415b8bd1c775eb43527d25c"
> > +SRCREV = "cac3dcdccd1d0c08d17f4919d862737d64b76f79"
> >
> >  S = "${WORKDIR}/git"
> >
> > @@ -28,46 +28,55 @@ python () {
> >
> >  # only locale binaries are under GPL-3.0-or-later others are MIT
> >  LICENSE:${PN} = "LGPL-3.0-or-later"
> > -LICENSE:locale-base-ch-de = "MIT"
> > +LICENSE:locale-base-cs-cz = "MIT"
> >  LICENSE:locale-base-de-ch = "MIT"
> >  LICENSE:locale-base-de-de = "MIT"
> >  LICENSE:locale-base-en-gb = "MIT"
> >  LICENSE:locale-base-en-us = "MIT"
> >  LICENSE:locale-base-es-es = "MIT"
> > +LICENSE:locale-base-fi-fi = "MIT"
> >  LICENSE:locale-base-fr-fr = "MIT"
> >  LICENSE:locale-base-it-it = "MIT"
> >  LICENSE:locale-base-nb-no = "MIT"
> >  LICENSE:locale-base-nl-nl = "MIT"
> >  LICENSE:locale-base-pt-br = "MIT"
> > +LICENSE:locale-base-pt-pt = "MIT"
> >  LICENSE:locale-base-ru-ru = "MIT"
> > +LICENSE:locale-base-sr-rs = "MIT"
> >  LICENSE:locale-base-sv-se = "MIT"
> >
> > -PACKAGES =+ "locale-base-ch-de \
> > +PACKAGES =+ "locale-base-cs-cz \
> >               locale-base-de-ch \
> >               locale-base-de-de \
> >               locale-base-en-gb \
> >               locale-base-en-us \
> >               locale-base-es-es \
> > +             locale-base-fi-fi \
> >               locale-base-fr-fr \
> >               locale-base-it-it \
> >               locale-base-nb-no \
> >               locale-base-nl-nl \
> >               locale-base-pt-br \
> > +             locale-base-pt-pt \
> >               locale-base-ru-ru \
> > +             locale-base-sr-rs \
> >               locale-base-sv-se \
> >               "
> > -FILES:locale-base-ch-de += "${datadir}/i18n/locales/musl/ch_DE.UTF-8"
> > +FILES:locale-base-cs-cz += "${datadir}/i18n/locales/musl/cs_CZ.UTF-8"
> >  FILES:locale-base-de-ch += "${datadir}/i18n/locales/musl/de_CH.UTF-8"
> >  FILES:locale-base-de-de += "${datadir}/i18n/locales/musl/de_DE.UTF-8"
> >  FILES:locale-base-en-gb += "${datadir}/i18n/locales/musl/en_GB.UTF-8"
> >  FILES:locale-base-en-us += "${datadir}/i18n/locales/musl/en_US.UTF-8"
> >  FILES:locale-base-es-es += "${datadir}/i18n/locales/musl/es_ES.UTF-8"
> > +FILES:locale-base-fi-fi += "${datadir}/i18n/locales/musl/fi_FI.UTF-8"
> >  FILES:locale-base-fr-fr += "${datadir}/i18n/locales/musl/fr_FR.UTF-8"
> >  FILES:locale-base-it-it += "${datadir}/i18n/locales/musl/it_IT.UTF-8"
> >  FILES:locale-base-nb-no += "${datadir}/i18n/locales/musl/nb_NO.UTF-8"
> >  FILES:locale-base-nl-nl += "${datadir}/i18n/locales/musl/nl_NL.UTF-8"
> >  FILES:locale-base-pt-br += "${datadir}/i18n/locales/musl/pt_BR.UTF-8"
> > +FILES:locale-base-pt-pt += "${datadir}/i18n/locales/musl/pt_PT.UTF-8"
> >  FILES:locale-base-ru-ru += "${datadir}/i18n/locales/musl/ru_RU.UTF-8"
> > +FILES:locale-base-sr-rs += "${datadir}/i18n/locales/musl/sr_RS.UTF-8"
> >  FILES:locale-base-sv-se += "${datadir}/i18n/locales/musl/sv_SE.UTF-8"
> >
> >  UPSTREAM_CHECK_COMMITS = "1"
> > --
> > 2.36.1
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#165700): https://lists.openembedded.org/g/openembedded-core/message/165700
> > Mute This Topic: https://lists.openembedded.org/mt/91152448/3620601
> > Group Owner: openembedded-core+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [steve@sakoman.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >


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

* Re: [OE-core] [PATCH] musl-locales: Switch SRC_URI to new location
  2022-05-20 15:39   ` Khem Raj
@ 2022-05-20 16:21     ` Steve Sakoman
  2022-05-20 16:34       ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Steve Sakoman @ 2022-05-20 16:21 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

On Fri, May 20, 2022 at 5:39 AM Khem Raj <raj.khem@gmail.com> wrote:
>
> On Fri, May 20, 2022 at 7:50 AM Steve Sakoman <steve@sakoman.com> wrote:
> >
> > On Mon, May 16, 2022 at 12:49 PM Khem Raj <raj.khem@gmail.com> wrote:
> > >
> > > Original repository has been less maintained and thusly adelie linux
> > > community has picked up the package and started to maintain it also
> > > applied long standing bug fixes.
> > >
> > > Now we use new fork by Adélie Linux, which includes more supported
> > > locales.
> >
> > Is this suitable/safe for kirkstone?
>
> yes it is.

Doh!  I should have checked before asking.  This recipe was added post
kirkstone!

Steve

> > > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > > ---
> > >  meta/recipes-core/musl/musl-locales_git.bb | 21 +++++++++++++++------
> > >  1 file changed, 15 insertions(+), 6 deletions(-)
> > >
> > > diff --git a/meta/recipes-core/musl/musl-locales_git.bb b/meta/recipes-core/musl/musl-locales_git.bb
> > > index 40b20e250d2..92532237e03 100644
> > > --- a/meta/recipes-core/musl/musl-locales_git.bb
> > > +++ b/meta/recipes-core/musl/musl-locales_git.bb
> > > @@ -2,15 +2,15 @@
> > >  # Released under the MIT license (see COPYING.MIT for the terms)
> > >  #
> > >  SUMMARY = "Locales support for musl"
> > > -HOMEPAGE = "https://gitlab.com/rilian-la-te/musl-locales"
> > > +HOMEPAGE = "https://git.adelielinux.org/adelie/musl-locales/-/wikis/home"
> > >  LICENSE = "MIT & LGPL-3.0-or-later"
> > >  LIC_FILES_CHKSUM = "file://LICENSE;md5=cf5713fba707073020b1db2acaa73e78 \
> > >                      file://LICENSE.MIT;md5=a4f1c6864a83ddf4b754cdab7d593523"
> > >
> > > -SRC_URI = "git://gitlab.com/rilian-la-te/musl-locales;protocol=https;branch=master"
> > > +SRC_URI = "git://git.adelielinux.org/adelie/musl-locales;protocol=https;branch=main"
> > >
> > >  PV = "1.0+git${SRCPV}"
> > > -SRCREV = "1101fb2bcdd189cd9415b8bd1c775eb43527d25c"
> > > +SRCREV = "cac3dcdccd1d0c08d17f4919d862737d64b76f79"
> > >
> > >  S = "${WORKDIR}/git"
> > >
> > > @@ -28,46 +28,55 @@ python () {
> > >
> > >  # only locale binaries are under GPL-3.0-or-later others are MIT
> > >  LICENSE:${PN} = "LGPL-3.0-or-later"
> > > -LICENSE:locale-base-ch-de = "MIT"
> > > +LICENSE:locale-base-cs-cz = "MIT"
> > >  LICENSE:locale-base-de-ch = "MIT"
> > >  LICENSE:locale-base-de-de = "MIT"
> > >  LICENSE:locale-base-en-gb = "MIT"
> > >  LICENSE:locale-base-en-us = "MIT"
> > >  LICENSE:locale-base-es-es = "MIT"
> > > +LICENSE:locale-base-fi-fi = "MIT"
> > >  LICENSE:locale-base-fr-fr = "MIT"
> > >  LICENSE:locale-base-it-it = "MIT"
> > >  LICENSE:locale-base-nb-no = "MIT"
> > >  LICENSE:locale-base-nl-nl = "MIT"
> > >  LICENSE:locale-base-pt-br = "MIT"
> > > +LICENSE:locale-base-pt-pt = "MIT"
> > >  LICENSE:locale-base-ru-ru = "MIT"
> > > +LICENSE:locale-base-sr-rs = "MIT"
> > >  LICENSE:locale-base-sv-se = "MIT"
> > >
> > > -PACKAGES =+ "locale-base-ch-de \
> > > +PACKAGES =+ "locale-base-cs-cz \
> > >               locale-base-de-ch \
> > >               locale-base-de-de \
> > >               locale-base-en-gb \
> > >               locale-base-en-us \
> > >               locale-base-es-es \
> > > +             locale-base-fi-fi \
> > >               locale-base-fr-fr \
> > >               locale-base-it-it \
> > >               locale-base-nb-no \
> > >               locale-base-nl-nl \
> > >               locale-base-pt-br \
> > > +             locale-base-pt-pt \
> > >               locale-base-ru-ru \
> > > +             locale-base-sr-rs \
> > >               locale-base-sv-se \
> > >               "
> > > -FILES:locale-base-ch-de += "${datadir}/i18n/locales/musl/ch_DE.UTF-8"
> > > +FILES:locale-base-cs-cz += "${datadir}/i18n/locales/musl/cs_CZ.UTF-8"
> > >  FILES:locale-base-de-ch += "${datadir}/i18n/locales/musl/de_CH.UTF-8"
> > >  FILES:locale-base-de-de += "${datadir}/i18n/locales/musl/de_DE.UTF-8"
> > >  FILES:locale-base-en-gb += "${datadir}/i18n/locales/musl/en_GB.UTF-8"
> > >  FILES:locale-base-en-us += "${datadir}/i18n/locales/musl/en_US.UTF-8"
> > >  FILES:locale-base-es-es += "${datadir}/i18n/locales/musl/es_ES.UTF-8"
> > > +FILES:locale-base-fi-fi += "${datadir}/i18n/locales/musl/fi_FI.UTF-8"
> > >  FILES:locale-base-fr-fr += "${datadir}/i18n/locales/musl/fr_FR.UTF-8"
> > >  FILES:locale-base-it-it += "${datadir}/i18n/locales/musl/it_IT.UTF-8"
> > >  FILES:locale-base-nb-no += "${datadir}/i18n/locales/musl/nb_NO.UTF-8"
> > >  FILES:locale-base-nl-nl += "${datadir}/i18n/locales/musl/nl_NL.UTF-8"
> > >  FILES:locale-base-pt-br += "${datadir}/i18n/locales/musl/pt_BR.UTF-8"
> > > +FILES:locale-base-pt-pt += "${datadir}/i18n/locales/musl/pt_PT.UTF-8"
> > >  FILES:locale-base-ru-ru += "${datadir}/i18n/locales/musl/ru_RU.UTF-8"
> > > +FILES:locale-base-sr-rs += "${datadir}/i18n/locales/musl/sr_RS.UTF-8"
> > >  FILES:locale-base-sv-se += "${datadir}/i18n/locales/musl/sv_SE.UTF-8"
> > >
> > >  UPSTREAM_CHECK_COMMITS = "1"
> > > --
> > > 2.36.1
> > >
> > >
> > > -=-=-=-=-=-=-=-=-=-=-=-
> > > Links: You receive all messages sent to this group.
> > > View/Reply Online (#165700): https://lists.openembedded.org/g/openembedded-core/message/165700
> > > Mute This Topic: https://lists.openembedded.org/mt/91152448/3620601
> > > Group Owner: openembedded-core+owner@lists.openembedded.org
> > > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [steve@sakoman.com]
> > > -=-=-=-=-=-=-=-=-=-=-=-
> > >


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

* Re: [OE-core] [PATCH] musl-locales: Switch SRC_URI to new location
  2022-05-20 16:21     ` Steve Sakoman
@ 2022-05-20 16:34       ` Khem Raj
  0 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2022-05-20 16:34 UTC (permalink / raw)
  To: Steve Sakoman; +Cc: Patches and discussions about the oe-core layer

On Fri, May 20, 2022 at 9:21 AM Steve Sakoman <steve@sakoman.com> wrote:
>
> On Fri, May 20, 2022 at 5:39 AM Khem Raj <raj.khem@gmail.com> wrote:
> >
> > On Fri, May 20, 2022 at 7:50 AM Steve Sakoman <steve@sakoman.com> wrote:
> > >
> > > On Mon, May 16, 2022 at 12:49 PM Khem Raj <raj.khem@gmail.com> wrote:
> > > >
> > > > Original repository has been less maintained and thusly adelie linux
> > > > community has picked up the package and started to maintain it also
> > > > applied long standing bug fixes.
> > > >
> > > > Now we use new fork by Adélie Linux, which includes more supported
> > > > locales.
> > >
> > > Is this suitable/safe for kirkstone?
> >
> > yes it is.
>
> Doh!  I should have checked before asking.  This recipe was added post
> kirkstone!
>

Yeah and I have fish like memory too. :)

> Steve
>
> > > > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > > > ---
> > > >  meta/recipes-core/musl/musl-locales_git.bb | 21 +++++++++++++++------
> > > >  1 file changed, 15 insertions(+), 6 deletions(-)
> > > >
> > > > diff --git a/meta/recipes-core/musl/musl-locales_git.bb b/meta/recipes-core/musl/musl-locales_git.bb
> > > > index 40b20e250d2..92532237e03 100644
> > > > --- a/meta/recipes-core/musl/musl-locales_git.bb
> > > > +++ b/meta/recipes-core/musl/musl-locales_git.bb
> > > > @@ -2,15 +2,15 @@
> > > >  # Released under the MIT license (see COPYING.MIT for the terms)
> > > >  #
> > > >  SUMMARY = "Locales support for musl"
> > > > -HOMEPAGE = "https://gitlab.com/rilian-la-te/musl-locales"
> > > > +HOMEPAGE = "https://git.adelielinux.org/adelie/musl-locales/-/wikis/home"
> > > >  LICENSE = "MIT & LGPL-3.0-or-later"
> > > >  LIC_FILES_CHKSUM = "file://LICENSE;md5=cf5713fba707073020b1db2acaa73e78 \
> > > >                      file://LICENSE.MIT;md5=a4f1c6864a83ddf4b754cdab7d593523"
> > > >
> > > > -SRC_URI = "git://gitlab.com/rilian-la-te/musl-locales;protocol=https;branch=master"
> > > > +SRC_URI = "git://git.adelielinux.org/adelie/musl-locales;protocol=https;branch=main"
> > > >
> > > >  PV = "1.0+git${SRCPV}"
> > > > -SRCREV = "1101fb2bcdd189cd9415b8bd1c775eb43527d25c"
> > > > +SRCREV = "cac3dcdccd1d0c08d17f4919d862737d64b76f79"
> > > >
> > > >  S = "${WORKDIR}/git"
> > > >
> > > > @@ -28,46 +28,55 @@ python () {
> > > >
> > > >  # only locale binaries are under GPL-3.0-or-later others are MIT
> > > >  LICENSE:${PN} = "LGPL-3.0-or-later"
> > > > -LICENSE:locale-base-ch-de = "MIT"
> > > > +LICENSE:locale-base-cs-cz = "MIT"
> > > >  LICENSE:locale-base-de-ch = "MIT"
> > > >  LICENSE:locale-base-de-de = "MIT"
> > > >  LICENSE:locale-base-en-gb = "MIT"
> > > >  LICENSE:locale-base-en-us = "MIT"
> > > >  LICENSE:locale-base-es-es = "MIT"
> > > > +LICENSE:locale-base-fi-fi = "MIT"
> > > >  LICENSE:locale-base-fr-fr = "MIT"
> > > >  LICENSE:locale-base-it-it = "MIT"
> > > >  LICENSE:locale-base-nb-no = "MIT"
> > > >  LICENSE:locale-base-nl-nl = "MIT"
> > > >  LICENSE:locale-base-pt-br = "MIT"
> > > > +LICENSE:locale-base-pt-pt = "MIT"
> > > >  LICENSE:locale-base-ru-ru = "MIT"
> > > > +LICENSE:locale-base-sr-rs = "MIT"
> > > >  LICENSE:locale-base-sv-se = "MIT"
> > > >
> > > > -PACKAGES =+ "locale-base-ch-de \
> > > > +PACKAGES =+ "locale-base-cs-cz \
> > > >               locale-base-de-ch \
> > > >               locale-base-de-de \
> > > >               locale-base-en-gb \
> > > >               locale-base-en-us \
> > > >               locale-base-es-es \
> > > > +             locale-base-fi-fi \
> > > >               locale-base-fr-fr \
> > > >               locale-base-it-it \
> > > >               locale-base-nb-no \
> > > >               locale-base-nl-nl \
> > > >               locale-base-pt-br \
> > > > +             locale-base-pt-pt \
> > > >               locale-base-ru-ru \
> > > > +             locale-base-sr-rs \
> > > >               locale-base-sv-se \
> > > >               "
> > > > -FILES:locale-base-ch-de += "${datadir}/i18n/locales/musl/ch_DE.UTF-8"
> > > > +FILES:locale-base-cs-cz += "${datadir}/i18n/locales/musl/cs_CZ.UTF-8"
> > > >  FILES:locale-base-de-ch += "${datadir}/i18n/locales/musl/de_CH.UTF-8"
> > > >  FILES:locale-base-de-de += "${datadir}/i18n/locales/musl/de_DE.UTF-8"
> > > >  FILES:locale-base-en-gb += "${datadir}/i18n/locales/musl/en_GB.UTF-8"
> > > >  FILES:locale-base-en-us += "${datadir}/i18n/locales/musl/en_US.UTF-8"
> > > >  FILES:locale-base-es-es += "${datadir}/i18n/locales/musl/es_ES.UTF-8"
> > > > +FILES:locale-base-fi-fi += "${datadir}/i18n/locales/musl/fi_FI.UTF-8"
> > > >  FILES:locale-base-fr-fr += "${datadir}/i18n/locales/musl/fr_FR.UTF-8"
> > > >  FILES:locale-base-it-it += "${datadir}/i18n/locales/musl/it_IT.UTF-8"
> > > >  FILES:locale-base-nb-no += "${datadir}/i18n/locales/musl/nb_NO.UTF-8"
> > > >  FILES:locale-base-nl-nl += "${datadir}/i18n/locales/musl/nl_NL.UTF-8"
> > > >  FILES:locale-base-pt-br += "${datadir}/i18n/locales/musl/pt_BR.UTF-8"
> > > > +FILES:locale-base-pt-pt += "${datadir}/i18n/locales/musl/pt_PT.UTF-8"
> > > >  FILES:locale-base-ru-ru += "${datadir}/i18n/locales/musl/ru_RU.UTF-8"
> > > > +FILES:locale-base-sr-rs += "${datadir}/i18n/locales/musl/sr_RS.UTF-8"
> > > >  FILES:locale-base-sv-se += "${datadir}/i18n/locales/musl/sv_SE.UTF-8"
> > > >
> > > >  UPSTREAM_CHECK_COMMITS = "1"
> > > > --
> > > > 2.36.1
> > > >
> > > >
> > > > -=-=-=-=-=-=-=-=-=-=-=-
> > > > Links: You receive all messages sent to this group.
> > > > View/Reply Online (#165700): https://lists.openembedded.org/g/openembedded-core/message/165700
> > > > Mute This Topic: https://lists.openembedded.org/mt/91152448/3620601
> > > > Group Owner: openembedded-core+owner@lists.openembedded.org
> > > > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [steve@sakoman.com]
> > > > -=-=-=-=-=-=-=-=-=-=-=-
> > > >


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

end of thread, other threads:[~2022-05-20 16:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-16 22:49 [PATCH] musl-locales: Switch SRC_URI to new location Khem Raj
2022-05-20 14:50 ` [OE-core] " Steve Sakoman
2022-05-20 15:39   ` Khem Raj
2022-05-20 16:21     ` Steve Sakoman
2022-05-20 16:34       ` 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.