it still needs work. Please test this with poky master-next to see
these errors during parse
ERROR: ExpansionError during parsing
/mnt/b/yoe/master/sources/meta-openembedded/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb######################
| ETA: 0:00:00
Traceback (most recent call last):
File "Var <fetcher_hashes_dummyfunc[vardepvalue]>", line 1, in <module>
File "/mnt/b/yoe/master/sources/poky/bitbake/lib/bb/fetch2/__init__.py",
line 834, in get_hashvalue(d=<bb.data_smart.DataSmart object at
0x7f25005627d0>, method_name='sortable_revision')
:
def get_hashvalue(d, method_name='sortable_revision'):
> pkgv, revs = _get_srcrev(d, method_name=method_name)
return " ".join(revs)
File "/mnt/b/yoe/master/sources/poky/bitbake/lib/bb/fetch2/__init__.py",
line 804, in _get_srcrev(d=<bb.data_smart.DataSmart object at
0x7f25005627d0>, method_name='sortable_revision'):
if not format:
> raise FetchError("The SRCREV_FORMAT variable must be set
when multiple SCMs are used.\n"\
"The SCMs are:\n%s" % '\n'.join(scms))
bb.data_smart.ExpansionError: Failure expanding variable
fetcher_hashes_dummyfunc[vardepvalue], expression was
${@bb.fetch.get_hashvalue(d)} which triggered exception FetchError:
Fetcher f
ailure: The SRCREV_FORMAT variable must be set when multiple SCMs are used.
The SCMs are:
git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firamono;name=firamono
git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firacode;name=firacode
git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasans;name=firasans
git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasanscondensed;name=firasanscondensed
git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasansextracondensed;name=firasansextracondensed
The variable dependency chain for the failure is:
fetcher_hashes_dummyfunc[vardepvalue]
ERROR: Parsing halted due to errors, see error messages above
On Thu, Aug 17, 2023 at 2:06 AM Tymoteusz Burak
<[email protected]> wrote:
>
> Added recipe for Google Fira Fonts collection (Fira Mono, Fira Code, Fira
> Sans, Fira Sans Condensed, Fira Sans Extra Condensed) to meta-oe. This commit
> introduces support for integrating the highly legible and versatile Fira
> Fonts into the project, enhancing typographic options for user interfaces and
> code display.
>
> Signed-off-by: Tymoteusz Burak <[email protected]>
> ---
> .../ttf-fonts/ttf-google-fira.bb | 58 +++++++++++++++++++
> 1 file changed, 58 insertions(+)
> create mode 100644 meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb
>
> diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb
> b/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb
> new file mode 100644
> index 000000000000..10047c6f7da6
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb
> @@ -0,0 +1,58 @@
> +SUMMARY = "Google Fira Fonts- TTF Edition"
> +HOMEPAGE = "https://fonts.google.com/?query=fira"
> +LICENSE = "OFL-1.1"
> +LIC_FILES_CHKSUM = " \
> + file://${S}/firamono/OFL.txt;md5=0373cf792d4b95c61399b94c02702892 \
> + file://${S}/firacode/OFL.txt;md5=c75ca55aa0a5809a854d87db2a8ebf23 \
> + file://${S}/firasans/OFL.txt;md5=de28deb2f8c1f23fd4d6918113ac3ddd \
> +
> file://${S}/firasanscondensed/OFL.txt;md5=de28deb2f8c1f23fd4d6918113ac3ddd \
> +
> file://${S}/firasansextracondensed/OFL.txt;md5=de28deb2f8c1f23fd4d6918113ac3ddd
> \
> +"
> +SRCREV_firamono = "701bd391b1a4b3238de193a8523009ecef1be42c"
> +SRCREV_firacode = "701bd391b1a4b3238de193a8523009ecef1be42c"
> +SRCREV_firasans = "701bd391b1a4b3238de193a8523009ecef1be42c"
> +SRCREV_firasanscondensed = "701bd391b1a4b3238de193a8523009ecef1be42c"
> +SRCREV_firasansextracondensed = "701bd391b1a4b3238de193a8523009ecef1be42c"
> +
> +SRC_URI =
> "git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firamono;name=firamono
> \
> +
> git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firacode;name=firacode
> \
> +
> git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasans;name=firasans
> \
> +
> git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasanscondensed;name=firasanscondensed
> \
> +
> git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasansextracondensed;name=firasansextracondensed"
> +
> +S = "${WORKDIR}"
> +
> +do_install:append() {
> + install -d ${D}${datadir}/fonts/truetype/
> + find ${S} -path 'fira*/*.tt[cf]' -exec install -m 0644 {}
> ${D}${datadir}/fonts/truetype/{} \;
> + install -D -m 0644 ${S}/firamono/OFL.txt
> ${D}${datadir}/licenses/${PN}mono/OFL.txt
> + install -D -m 0644 ${S}/firacode/OFL.txt
> ${D}${datadir}/licenses/${PN}code/OFL.txt
> + install -D -m 0644 ${S}/firasans/OFL.txt
> ${D}${datadir}/licenses/${PN}sans/OFL.txt
> + install -D -m 0644 ${S}/firasanscondensed/OFL.txt
> ${D}${datadir}/licenses/${PN}sanscondensed/OFL.txt
> + install -D -m 0644 ${S}/firasansextracondensed/OFL.txt
> ${D}${datadir}/licenses/${PN}sansextracondensed/OFL.txt
> +}
> +
> +PACKAGES =+ "${PN}-mono ${PN}-code ${PN}-sans ${PN}-sanscondensed
> ${PN}-sansextracondensed"
> +
> +FILES:${PN}-mono += " \
> + ${datadir}/fonts/truetype/FiraMono* \
> + ${datadir}/licenses/${PN}mono/OFL.txt \
> + "
> +FILES:${PN}-code += " \
> + ${datadir}/fonts/truetype/FiraCode* \
> + ${datadir}/licenses/${PN}code/OFL.txt \
> + "
> +FILES:${PN}-sans += " \
> + ${datadir}/fonts/truetype/FiraSans-* \
> + ${datadir}/licenses/${PN}sans/OFL.txt \
> + "
> +FILES:${PN}-sanscondensed += " \
> + ${datadir}/fonts/truetype/FiraSansCondensed-* \
> + ${datadir}/licenses/${PN}sanscondensed/OFL.txt \
> + "
> +FILES:${PN}-sansextracondensed += " \
> +
> ${datadir}/fonts/truetype/FiraSansExtraCondensed-* \
> +
> ${datadir}/licenses/${PN}sansextracondensed/OFL.txt \
> + "
> +
> +require ttf.inc
> --
> 2.41.0
>
>
>
>
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#104467):
https://lists.openembedded.org/g/openembedded-devel/message/104467
Mute This Topic: https://lists.openembedded.org/mt/100796947/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-