Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
From aa1f37f1e0ff0dc0eeb199b52959e0deb275721e Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Puhlman <jpuhlman@mvista.com>
|
||||
Date: Sat, 7 Mar 2020 00:59:13 +0000
|
||||
Subject: [PATCH] Make manpages mulitlib identical
|
||||
|
||||
Upstream-Status: Submitted [by email to g.branden.robinson@gmail.com]
|
||||
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
|
||||
|
||||
---
|
||||
Makefile.am | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index f7ab410..7e1f3fb 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -891,7 +891,7 @@ SUFFIXES += .man
|
||||
-e "s|[@]PAGE[@]|\\\\%$(PAGE)|g" \
|
||||
-e "s|[@]PDFDOCDIR[@]|`echo $(pdfdocdir) | sed -f $(makevarescape)`|g" \
|
||||
-e "s|[@]PSPRINT[@]|`echo $(PSPRINT) | sed -f $(makevarescape)`|g" \
|
||||
- -e "s|[@]SYSTEMMACRODIR[@]|`echo $(systemtmacdir) | sed -f $(makevarescape)`|g" \
|
||||
+ -e "s|[@]SYSTEMMACRODIR[@]|`echo $(systemtmacdir) | sed -e 's,$(libdir),$(prefix)/lib*,' | sed -f $(makevarescape)`|g" \
|
||||
-e "s|[@]TMAC_AN_PREFIX[@]|\\\\%$(tmac_an_prefix)|g" \
|
||||
-e "s|[@]TMAC_M_PREFIX[@]|\\\\%$(tmac_m_prefix)|g" \
|
||||
-e "s|[@]TMAC_MDIR[@]|`echo $(tmacdir) | sed -f $(makevarescape)`/mm|g" \
|
||||
@@ -0,0 +1,51 @@
|
||||
From c75965053124149381ada3c394da74be078076cf Mon Sep 17 00:00:00 2001
|
||||
From: "G. Branden Robinson" <g.branden.robinson@gmail.com>
|
||||
Date: Sat, 16 Sep 2023 16:28:00 -0500
|
||||
Subject: [PATCH] [build]: Fix Savannah #64681 (webpage.ps deps).
|
||||
|
||||
* doc/doc.am (doc/webpage.ps, doc/webpage.html): Update and parallelize
|
||||
target dependencies. Resolve race by requiring "grn" and "soelim" to
|
||||
be built first. Also add dependency on `$(TMAC_PACKAGE_MS)`.
|
||||
|
||||
Fixes <https://savannah.gnu.org/bugs/?64681>. Thanks to Alexander
|
||||
Kanavin for the report.
|
||||
|
||||
ANNOUNCE: Acknowledge Alexander.
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
||||
---
|
||||
doc/doc.am | 12 ++++++++----
|
||||
1 file changed, 8 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/doc/doc.am b/doc/doc.am
|
||||
index cddc51907..d3c9ab6b7 100644
|
||||
--- a/doc/doc.am
|
||||
+++ b/doc/doc.am
|
||||
@@ -346,6 +346,9 @@ doc/pic.ps: $(doc_srcdir)/pic.ms eqn pic tbl
|
||||
$(GROFF_V)$(MKDIR_P) `dirname $@` \
|
||||
&& $(DOC_GROFF) -pet -Tps -ms $(doc_srcdir)/pic.ms >$@
|
||||
|
||||
+# groff(1)'s `-I` implies `-g` and `-s`, so we must depend on grn and
|
||||
+# soelim even though the document doesn't require them.
|
||||
+doc/webpage.ps: grn soelim
|
||||
doc/webpage.ps: $(DOC_GNU_EPS) tmac/www.tmac tbl
|
||||
doc/webpage.ps: $(doc_srcdir)/webpage.ms
|
||||
$(GROFF_V)$(MKDIR_P) `dirname $@` \
|
||||
@@ -365,11 +368,12 @@ doc/pic.html: $(doc_srcdir)/pic.ms
|
||||
&& $(DOC_GROFF) -pet -P-Ipic -P-Dimg -P-jpic -Thtml -ms \
|
||||
$(doc_srcdir)/pic.ms > pic.html
|
||||
|
||||
-doc/webpage.html: tbl
|
||||
-doc/webpage.html: tmac/www.tmac
|
||||
-doc/webpage.html: $(DOC_GNU_EPS)
|
||||
+# groff(1)'s `-I` implies `-g` and `-s`, so we must depend on grn and
|
||||
+# soelim even though the document doesn't require them.
|
||||
+doc/webpage.html: grn soelim
|
||||
+doc/webpage.html: $(DOC_GNU_EPS) tmac/www.tmac tbl
|
||||
doc/webpage.html: $(doc_srcdir)/groff.css
|
||||
-doc/webpage.html: $(doc_srcdir)/webpage.ms
|
||||
+doc/webpage.html: $(doc_srcdir)/webpage.ms $(TMAC_PACKAGE_MS)
|
||||
$(GROFF_V)$(MKDIR_P) $(doc_builddir) \
|
||||
&& cd $(doc_builddir) \
|
||||
&& $(DOC_GROFF) -t -I $(doc_srcdir) -P-jwebpage -P-nrb \
|
||||
@@ -0,0 +1,31 @@
|
||||
From f21e9f13beb57a1e0666edf9693d7c83f2189897 Mon Sep 17 00:00:00 2001
|
||||
From: "G. Branden Robinson" <g.branden.robinson@gmail.com>
|
||||
Date: Fri, 22 Sep 2023 01:27:57 -0500
|
||||
Subject: [PATCH] [build]: meintro_fr.ps depends on tbl.
|
||||
|
||||
* doc/doc.am (doc/meintro_fr.ps): Depend on tbl, resolving race in
|
||||
sufficiently parallelized builds. Overlooked in commit 92349ae223,
|
||||
2022-05-30.
|
||||
|
||||
Fixes <https://savannah.gnu.org/bugs/?64695>. Thanks to Alexander
|
||||
Kanavin for the report.
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
||||
---
|
||||
doc/doc.am | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/doc/doc.am b/doc/doc.am
|
||||
index d3c9ab6b7..0f95c7774 100644
|
||||
--- a/doc/doc.am
|
||||
+++ b/doc/doc.am
|
||||
@@ -334,7 +334,7 @@ SUFFIXES += .me.in .me
|
||||
|
||||
# Use '-K utf8', not '-k', in case 'configure' didn't find uchardet.
|
||||
# The French translation uses tbl; its English counterpart does not.
|
||||
-doc/meintro_fr.ps: doc/meintro_fr.me preconv
|
||||
+doc/meintro_fr.ps: doc/meintro_fr.me preconv tbl
|
||||
$(GROFF_V)$(MKDIR_P) `dirname $@` \
|
||||
&& $(DOC_GROFF) -K utf8 -t -Tps -me -mfr $< >$@
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
From 771686c042d5f494550d0399f36e00b1ca557b2d Mon Sep 17 00:00:00 2001
|
||||
From: Robert Yang <liezhi.yang@windriver.com>
|
||||
Date: Mon, 11 Nov 2024 14:12:51 +0000
|
||||
Subject: [PATCH] contrib/hdtbl/hdtbl.am: Fix race issues for parallel build
|
||||
|
||||
Fixed race issues for parallel build:
|
||||
groff: error: couldn't exec soelim: Permission
|
||||
|
||||
And:
|
||||
groff: error: couldn't exec grn: Permission denied
|
||||
|
||||
Upstream-Status: Submitted [https://lists.gnu.org/archive/html/groff/2024-11/msg00097.html]
|
||||
|
||||
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
|
||||
---
|
||||
contrib/hdtbl/hdtbl.am | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/contrib/hdtbl/hdtbl.am b/contrib/hdtbl/hdtbl.am
|
||||
index 9384fac..70f7bc9 100644
|
||||
--- a/contrib/hdtbl/hdtbl.am
|
||||
+++ b/contrib/hdtbl/hdtbl.am
|
||||
@@ -119,7 +119,7 @@ SUFFIXES += .roff .in .ps
|
||||
-e "s|[@]EGREP[@]|$(EGREP)|" $< >$@
|
||||
|
||||
$(HDTBLPROCESSEDEXAMPLEFILES): $(DOC_GNU_EPS) groff troff eqn pic tbl \
|
||||
- grops grn font/devps/stamp contrib/hdtbl/examples/common.roff
|
||||
+ grops grn soelim font/devps/stamp contrib/hdtbl/examples/common.roff
|
||||
|
||||
uninstall_groffdirs: uninstall-hdtbl-hook
|
||||
uninstall-hdtbl-hook:
|
||||
@@ -0,0 +1,38 @@
|
||||
From 12169aa269341753d491a69e9adb86c58dca039a Mon Sep 17 00:00:00 2001
|
||||
From: "G. Branden Robinson" <g.branden.robinson@gmail.com>
|
||||
Date: Thu, 10 Oct 2024 18:17:08 -0500
|
||||
Subject: [PATCH] [hdtbl]: Fix Savannah #66316 (missing `grn` dep).
|
||||
|
||||
* hdtbl.am (HDTBLPROCESSEDEXAMPLEFILES): Declare dependency on `grn`;
|
||||
because `-I` flags are used, it is dragged in even though not
|
||||
explicitly needed. Resolves race against `grn`'s availability in the
|
||||
build tree.
|
||||
|
||||
Fixes <https://savannah.gnu.org/bugs/?66316>. Thanks to Ross Burton for
|
||||
the report.
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
---
|
||||
contrib/hdtbl/ChangeLog | 10 ++++++++++
|
||||
contrib/hdtbl/hdtbl.am | 3 +--
|
||||
2 files changed, 11 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/contrib/hdtbl/hdtbl.am b/contrib/hdtbl/hdtbl.am
|
||||
index b6c334c18..3c37174f2 100644
|
||||
--- a/contrib/hdtbl/hdtbl.am
|
||||
+++ b/contrib/hdtbl/hdtbl.am
|
||||
@@ -119,9 +119,8 @@ SUFFIXES += .roff .in .ps
|
||||
&& sed -e "s|[@]fontdir[@]|$(fontdir)|" \
|
||||
-e "s|[@]EGREP[@]|$(EGREP)|" $< >$@
|
||||
|
||||
-
|
||||
$(HDTBLPROCESSEDEXAMPLEFILES): $(DOC_GNU_EPS) groff troff eqn pic tbl \
|
||||
- grops font/devps/stamp contrib/hdtbl/examples/common.roff
|
||||
+ grops grn font/devps/stamp contrib/hdtbl/examples/common.roff
|
||||
|
||||
uninstall_groffdirs: uninstall-hdtbl-hook
|
||||
uninstall-hdtbl-hook:
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
From eb16276c3e2e34aa2e57f6a0e68554657b90cd28 Mon Sep 17 00:00:00 2001
|
||||
From: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
Date: Sat, 11 May 2019 17:06:29 +0800
|
||||
Subject: [PATCH] groff searchs fonts which are provided by ghostscript on
|
||||
build host. It causes non-determinism issue. So not search font dirs on host.
|
||||
|
||||
Upstream-Status: Inappropriate [cross build specific]
|
||||
|
||||
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
||||
|
||||
Rebase to 1.22.4
|
||||
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
|
||||
---
|
||||
font/devpdf/Foundry.in | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/font/devpdf/Foundry.in b/font/devpdf/Foundry.in
|
||||
index e5aba65..5441734 100644
|
||||
--- a/font/devpdf/Foundry.in
|
||||
+++ b/font/devpdf/Foundry.in
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
#=======================================================================
|
||||
#Foundry|Name|Search path
|
||||
-foundry||@urwfontsdir@:(gs):/usr/share/fonts/type1/gsfonts:/usr/share/fonts/default/Type1:/usr/share/fonts/default/Type1/adobestd35:/usr/share/fonts/type1/urw-base35:/opt/local/share/fonts/urw-fonts:/usr/local/share/fonts/ghostscript
|
||||
+foundry||(gs)
|
||||
|
||||
# Enable the font description files for grops (generated from Adobe
|
||||
# foundry font files) to be used with gropdf. afmtodit must not be
|
||||
@@ -72,7 +72,7 @@ EURO|N||||*../devps/freeeuro.pfa
|
||||
# URW fonts are typically shipped with Ghostscript, but can be replaced.
|
||||
|
||||
#Foundry|Name|Search path
|
||||
-foundry|U|@urwfontsdir@:/usr/share/fonts/type1/gsfonts:/usr/share/fonts/default/Type1:/usr/share/fonts/default/Type1/adobestd35:/usr/share/fonts/type1/urw-base35:/opt/local/share/fonts/urw-fonts:/usr/local/share/fonts/ghostscript:(gs)
|
||||
+foundry|U|(gs)
|
||||
|
||||
# Define flags for afmtodit.
|
||||
|
||||
Reference in New Issue
Block a user