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,32 @@
|
||||
From 708c765ffb41ecc734316f69043583312fe444bd Mon Sep 17 00:00:00 2001
|
||||
From: Kai Kang <kai.kang@windriver.com>
|
||||
Date: Tue, 15 May 2018 17:17:01 +0800
|
||||
Subject: [PATCH] diffstat: fix wrong evaluation of CC
|
||||
|
||||
Upstream-Status: Inappropriate [oe specific]
|
||||
|
||||
m4 function CF_CC_ENV_FLAGS checks whether variable CC contains options '-I', '-U'
|
||||
and '-D'. It is not suitable for oe that option such as '-D_FORTIFY_SOURCE=2' may
|
||||
be included in CC. And then CC will be wrongly filtered.
|
||||
|
||||
So comment out CF_CC_ENV_FLAGS from function CF_PROG_CC.
|
||||
|
||||
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
||||
|
||||
---
|
||||
aclocal.m4 | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/aclocal.m4 b/aclocal.m4
|
||||
index d4bd283..1b653c4 100644
|
||||
--- a/aclocal.m4
|
||||
+++ b/aclocal.m4
|
||||
@@ -1522,7 +1522,7 @@ CF_GCC_VERSION
|
||||
CF_ACVERSION_CHECK(2.52,
|
||||
[AC_PROG_CC_STDC],
|
||||
[CF_ANSI_CC_REQD])
|
||||
-CF_CC_ENV_FLAGS
|
||||
+dnl CF_CC_ENV_FLAGS
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_PROG_GROFF version: 3 updated: 2018/01/07 13:16:19
|
||||
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
./testing/run_test.sh ./testing/case*.pat |sed \
|
||||
-e 's|** ok|PASS|' \
|
||||
-e 's|?? fail|FAIL|'
|
||||
27
sources/poky/meta/recipes-devtools/diffstat/diffstat_1.66.bb
Normal file
27
sources/poky/meta/recipes-devtools/diffstat/diffstat_1.66.bb
Normal file
@@ -0,0 +1,27 @@
|
||||
SUMMARY = "Tool to produce a statistics based on a diff"
|
||||
DESCRIPTION = "diffstat reads the output of diff and displays a histogram of \
|
||||
the insertions, deletions, and modifications per-file. It is useful for \
|
||||
reviewing large, complex patch files."
|
||||
HOMEPAGE = "http://invisible-island.net/diffstat/"
|
||||
SECTION = "devel"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=5713b4719a66a6527e6301e8f8745877"
|
||||
|
||||
SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz \
|
||||
file://run-ptest \
|
||||
file://avoid-check-user-break-cc.patch \
|
||||
"
|
||||
|
||||
SRC_URI[sha256sum] = "f54531bbe32e8e0fa461f018b41e3af516b632080172f361f05e50367ecbb69e"
|
||||
|
||||
inherit autotools gettext ptest
|
||||
|
||||
EXTRA_AUTORECONF += "--exclude=aclocal"
|
||||
|
||||
LDFLAGS += "${TOOLCHAIN_OPTIONS}"
|
||||
|
||||
do_install_ptest() {
|
||||
cp -r ${S}/testing ${D}${PTEST_PATH}
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "nativesdk"
|
||||
Reference in New Issue
Block a user