From 7dbc2f3a4d941f63e851bc14bc0d9fea142c5783 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Fri, 9 Feb 2024 11:59:41 +0100 Subject: [PATCH 1/2] build_dev_binpkgs: Fix getting a list of packages The format of emerge output differs a bit, as it is missing the repo name (which came after `::`). --- build_dev_binpkgs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_dev_binpkgs b/build_dev_binpkgs index 37e0cc50bd..552ba2a82b 100755 --- a/build_dev_binpkgs +++ b/build_dev_binpkgs @@ -58,7 +58,7 @@ info "Collecting list of binpkgs to build" my_board_emerge --pretend --root-deps=rdeps --emptytree ${@} \ | grep '\[ebuild' \ - | sed 's/^\[[^]]\+\] \([^ :]\+\)*:.*/\1/' \ + | sed 's/^\[[^]]\+\] \([^ :]\+\)*.*/\1/' \ | while read pkg; do if [ -f "/build/${FLAGS_board}/var/lib/portage/pkgs/${pkg}.tbz2" ] ; then continue From f6177cca506210f5252c9f9524ed1597ae1dd7ab Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Fri, 9 Feb 2024 14:11:06 +0100 Subject: [PATCH 2/2] dev-util/glib-utils: Stabilize for arm64 Gets build as a part of building binary dev packages. --- .../portage-stable/dev-util/glib-utils/glib-utils-2.74.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/portage-stable/dev-util/glib-utils/glib-utils-2.74.4.ebuild b/sdk_container/src/third_party/portage-stable/dev-util/glib-utils/glib-utils-2.74.4.ebuild index 0ad7e86cf1..cab70bfe2c 100644 --- a/sdk_container/src/third_party/portage-stable/dev-util/glib-utils/glib-utils-2.74.4.ebuild +++ b/sdk_container/src/third_party/portage-stable/dev-util/glib-utils/glib-utils-2.74.4.ebuild @@ -14,7 +14,7 @@ LICENSE="LGPL-2.1+" SLOT="0" # /usr/bin utilities that can't be parallel installed by their nature REQUIRED_USE="${PYTHON_REQUIRED_USE}" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" RDEPEND="${PYTHON_DEPS}" DEPEND="${RDEPEND}"