b9f1c7a22f
The existing directories are needed for stage building (a part of the Gentoo build process). Normally these directories are empty, but there are times where overrides need to be defined. This commit handles existing overrides for keywords. For historical reasons the overrides were able to be put in different files and directories, this centralizes them. This also updates the version of openssl/cryptography that works with or without bindist. Change-Id: I62c934ed305a711a4a9a3ef01fa55ad142aebb78
43 lines
1.3 KiB
Bash
Executable File
43 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [[ ${GENTOO_OVERLAYS} != '' ]]; then
|
|
if mountpoint -q /dev/shm; then
|
|
echo "/dev/shm found in /proc/self/mountinfo"
|
|
elif [[ -k /dev/shm ]]; then
|
|
echo "/dev/shm exists and is stickied"
|
|
else
|
|
fix_shm
|
|
fi
|
|
|
|
if [[ ! -f /usr/portage/profiles ]]; then
|
|
emerge-webrsync -q
|
|
fi
|
|
|
|
# layman requires cryptography, which needs ecc crypto functions.
|
|
# binaries providing those functions have questionable legality for
|
|
# redistribution, so we have to use a version of openssl that works around
|
|
# it (using fedora's patchset) and also use a version of cryptography that
|
|
# depends on that version of openssl.
|
|
echo '=dev-python/cryptography-2.1.4-r2 ~amd64' >> /etc/portage/package.keywords/layman
|
|
echo '=dev-libs/openssl-1.0.2o-r6 ~amd64' >> /etc/portage/package.keywords/layman
|
|
emerge -q --oneshot --jobs=2 openssl openssh
|
|
# install layman
|
|
USE="-build" emerge --deep -q --jobs=2 --ignore-built-slot-operator-deps=y layman
|
|
# sync the initial overlay list
|
|
layman -S
|
|
# enable the various overlays, ignore failures (overlay my already be enabled)
|
|
set +e
|
|
for OVERLAY in ${GENTOO_OVERLAYS}; do
|
|
layman -a "${OVERLAY}"
|
|
done
|
|
set -e
|
|
|
|
unfix_shm
|
|
fi
|