diff options
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/Manifest.gz | bin | 148278 -> 148273 bytes | |||
-rw-r--r-- | profiles/arch/m68k/package.use.mask | 1 | ||||
-rw-r--r-- | profiles/package.mask | 4 | ||||
-rw-r--r-- | profiles/prefix/darwin/macos/arch/arm64/profile.bashrc | 26 | ||||
-rw-r--r-- | profiles/use.local.desc | 1 |
5 files changed, 24 insertions, 8 deletions
diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz Binary files differindex 5cf170dfc174..4b0f14d4c107 100644 --- a/profiles/Manifest.gz +++ b/profiles/Manifest.gz diff --git a/profiles/arch/m68k/package.use.mask b/profiles/arch/m68k/package.use.mask index 9ea36846d459..c1cd52961c14 100644 --- a/profiles/arch/m68k/package.use.mask +++ b/profiles/arch/m68k/package.use.mask @@ -55,6 +55,7 @@ sys-block/thin-provisioning-tools test # James Le Cuirot <chewi@gentoo.org> (2021-09-19) # Requires texlive and friends to be keyworded. app-doc/doxygen doc +app-text/po4a test dev-libs/libcbor doc media-libs/libcaca doc diff --git a/profiles/package.mask b/profiles/package.mask index ec9b6047b97a..48b576a71609 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -33,6 +33,10 @@ #--- END OF EXAMPLES --- +# Fabian Groffen <grobian@gentoo.org> (2022-08-06) +# superseeded by sys-apps/baselayout, removal in 30 days. bug #836114 +sys-apps/baselayout-prefix + # Jimi Huotari <chiitoo@gentoo.org> (2022-08-02) # Masked for testing. The split of some packages may still # change. bug #838970. diff --git a/profiles/prefix/darwin/macos/arch/arm64/profile.bashrc b/profiles/prefix/darwin/macos/arch/arm64/profile.bashrc index 6bfe36915c9d..314c9a7e4f99 100644 --- a/profiles/prefix/darwin/macos/arch/arm64/profile.bashrc +++ b/profiles/prefix/darwin/macos/arch/arm64/profile.bashrc @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 pre_src_configure() { @@ -11,13 +11,23 @@ pre_src_configure() { # triplets, so patch that for various versions of autoconf # This bit should be kept in sync with fix_config_sub in # bootstrap-prefix.sh - if [[ ${CHOST} == arm64-apple-darwin* ]] ; then - # Apple Silicon doesn't use aarch64, but arm64 - find . -name "config.sub" | \ - xargs sed -i -e 's/ arm\(-\*\)* / arm\1 | arm64\1 /' - find . -name "config.sub" | \ - xargs sed -i -e 's/ aarch64 / aarch64 | arm64 /' - fi + # Apple Silicon doesn't use aarch64, but arm64 + find . -name "config.sub" | \ + ${XARGS} sed -i -e 's/ arm\(-\*\)* / arm\1 | arm64\1 /' + find . -name "config.sub" | \ + ${XARGS} sed -i -e 's/ aarch64 / aarch64 | arm64 /' + + # currently the toolchain appears to be a bit funky, and generates + # code the (host) linker thinks is invalid with -O2 and up: + # ld: in section __TEXT,__text reloc 442: symbol index out of range + # file 'src/preproc/refer/refer-label.o' for architecture arm64 + case ${CATEGORY}/${PN} in + sys-apps/groff |\ + app-editors/vim) + [[ ${CFLAGS} == *-O[23456789]* ]] && CFLAGS="${CFLAGS} -O1" + [[ ${CXXFLAGS} == *-O[23456789]* ]] && CXXFLAGS="${CFLAGS} -O1" + ;; + esac popd > /dev/null } diff --git a/profiles/use.local.desc b/profiles/use.local.desc index b36114bd6d58..a19a78a86224 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -3536,6 +3536,7 @@ kde-apps/kopete:zeroconf - Enable Link-Local Messaging via the bonjour protocol. kde-apps/kpimtextedit:designer - Build plugins for dev-qt/designer kde-apps/kpimtextedit:speech - Enable text-to-speech support kde-apps/ksystemlog:kdesu - Run as root using kdesu from kde-plasma/kde-cli-tools +kde-apps/ktouch:X - Enable support for X11 Keyboard Layout Detection kde-apps/ktp-accounts-kcm:experimental - Enables disabled telepathy services (currently only steam) kde-apps/ktp-common-internals:otr - Enable support for encrypted conversations using Off-The-Records messaging kde-apps/ktp-common-internals:sso - Enable support for Single sign-on through KAccounts |