diff options
author | Eli Schwartz <eschwartz@gentoo.org> | 2024-09-29 00:13:59 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@gentoo.org> | 2024-09-29 00:13:59 -0400 |
commit | 1e48082a95f3344904684746f8ecd9a6ac22679c (patch) | |
tree | cdba9dbf456a667fb3630746a3b5d2bf67acb19a /builders | |
parent | lucky variant: try to build 3 packages, not just one (diff) | |
download | binhost-1e48082a95f3344904684746f8ecd9a6ac22679c.tar.gz binhost-1e48082a95f3344904684746f8ecd9a6ac22679c.tar.bz2 binhost-1e48082a95f3344904684746f8ecd9a6ac22679c.zip |
enable variant builds for all builders, and include lucky run
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'builders')
-rw-r--r-- | builders/milou/kde-23/portage/variants/lucky/.run_marker | 1 | ||||
-rwxr-xr-x | builders/milou/kde-23/run-update | 39 | ||||
-rw-r--r-- | builders/milou/kde-v3-23/portage/variants/lucky/.run_marker | 1 | ||||
-rwxr-xr-x | builders/milou/kde-v3-23/run-update | 39 | ||||
-rw-r--r-- | builders/milou/openrc-23/portage/variants/lucky/.run_marker | 1 | ||||
-rwxr-xr-x | builders/milou/openrc-23/run-update | 39 | ||||
-rw-r--r-- | builders/milou/openrc-v3-23/portage/variants/lucky/.run_marker | 1 | ||||
-rwxr-xr-x | builders/milou/openrc-v3-23/run-update | 39 | ||||
-rw-r--r-- | builders/milou/server-23/portage/variants/lucky/.run_marker | 1 | ||||
-rwxr-xr-x | builders/milou/server-23/run-update | 39 | ||||
-rw-r--r-- | builders/milou/server-v3-23/portage/variants/lucky/.run_marker | 1 | ||||
-rwxr-xr-x | builders/milou/server-v3-23/run-update | 39 |
12 files changed, 226 insertions, 14 deletions
diff --git a/builders/milou/kde-23/portage/variants/lucky/.run_marker b/builders/milou/kde-23/portage/variants/lucky/.run_marker new file mode 100644 index 0000000..722c3eb --- /dev/null +++ b/builders/milou/kde-23/portage/variants/lucky/.run_marker @@ -0,0 +1 @@ +I'm feeling lucky! diff --git a/builders/milou/kde-23/run-update b/builders/milou/kde-23/run-update index 02cdf8a..ea34914 100755 --- a/builders/milou/kde-23/run-update +++ b/builders/milou/kde-23/run-update @@ -3,6 +3,41 @@ # if one thing fails, abort entirely set -e -emerge -uDNkq --changed-deps --backtrack=100 --keep-going world +to_install=(world) -emerge --depclean --quiet-unmerge-warn +if [[ $1 = lucky ]]; then + eix-update + eix --stable --only-names | grep -E -v '^(acct|virtual|sec)-' | sort -u > /tmp/stable + eix --installed --only-names | sort -u > /tmp/installed + comm -23 /tmp/stable /tmp/installed > /tmp/uninstalled-stable + sed -i 's/--binpkg-respect-use//' /etc/portage/make.conf + + to_install=(--autounmask-write --autounmask-continue $(shuf -n3 /tmp/uninstalled-stable)) +elif [[ $1 ]]; then + pushd /etc/portage/variants/$1 + while read -r -d '' line; do + dest=../../${line%.footer} + if [[ ${line} = world* ]]; then + dest=/var/lib/portage/world + fi + + if [[ ${line} = world.remove ]]; then + emerge -C $(<"${line}") + elif [[ ${line} = *.footer ]]; then + cat "${line}" >> "${dest}" + else + mkdir -p "${dest%/*}" + cp "${line}" "${dest}" + fi + done < <(find . -type f -printf '%P\0') + if [[ -f buildpkgonly ]]; then + ./buildpkgonly + fi + popd +fi + +emerge -uDNkq --changed-deps --backtrack=100 --keep-going "${to_install[@]}" + +if [[ ! $1 ]]; then + emerge --depclean --quiet-unmerge-warn +fi diff --git a/builders/milou/kde-v3-23/portage/variants/lucky/.run_marker b/builders/milou/kde-v3-23/portage/variants/lucky/.run_marker new file mode 100644 index 0000000..722c3eb --- /dev/null +++ b/builders/milou/kde-v3-23/portage/variants/lucky/.run_marker @@ -0,0 +1 @@ +I'm feeling lucky! diff --git a/builders/milou/kde-v3-23/run-update b/builders/milou/kde-v3-23/run-update index 02cdf8a..ea34914 100755 --- a/builders/milou/kde-v3-23/run-update +++ b/builders/milou/kde-v3-23/run-update @@ -3,6 +3,41 @@ # if one thing fails, abort entirely set -e -emerge -uDNkq --changed-deps --backtrack=100 --keep-going world +to_install=(world) -emerge --depclean --quiet-unmerge-warn +if [[ $1 = lucky ]]; then + eix-update + eix --stable --only-names | grep -E -v '^(acct|virtual|sec)-' | sort -u > /tmp/stable + eix --installed --only-names | sort -u > /tmp/installed + comm -23 /tmp/stable /tmp/installed > /tmp/uninstalled-stable + sed -i 's/--binpkg-respect-use//' /etc/portage/make.conf + + to_install=(--autounmask-write --autounmask-continue $(shuf -n3 /tmp/uninstalled-stable)) +elif [[ $1 ]]; then + pushd /etc/portage/variants/$1 + while read -r -d '' line; do + dest=../../${line%.footer} + if [[ ${line} = world* ]]; then + dest=/var/lib/portage/world + fi + + if [[ ${line} = world.remove ]]; then + emerge -C $(<"${line}") + elif [[ ${line} = *.footer ]]; then + cat "${line}" >> "${dest}" + else + mkdir -p "${dest%/*}" + cp "${line}" "${dest}" + fi + done < <(find . -type f -printf '%P\0') + if [[ -f buildpkgonly ]]; then + ./buildpkgonly + fi + popd +fi + +emerge -uDNkq --changed-deps --backtrack=100 --keep-going "${to_install[@]}" + +if [[ ! $1 ]]; then + emerge --depclean --quiet-unmerge-warn +fi diff --git a/builders/milou/openrc-23/portage/variants/lucky/.run_marker b/builders/milou/openrc-23/portage/variants/lucky/.run_marker new file mode 100644 index 0000000..722c3eb --- /dev/null +++ b/builders/milou/openrc-23/portage/variants/lucky/.run_marker @@ -0,0 +1 @@ +I'm feeling lucky! diff --git a/builders/milou/openrc-23/run-update b/builders/milou/openrc-23/run-update index 02cdf8a..ea34914 100755 --- a/builders/milou/openrc-23/run-update +++ b/builders/milou/openrc-23/run-update @@ -3,6 +3,41 @@ # if one thing fails, abort entirely set -e -emerge -uDNkq --changed-deps --backtrack=100 --keep-going world +to_install=(world) -emerge --depclean --quiet-unmerge-warn +if [[ $1 = lucky ]]; then + eix-update + eix --stable --only-names | grep -E -v '^(acct|virtual|sec)-' | sort -u > /tmp/stable + eix --installed --only-names | sort -u > /tmp/installed + comm -23 /tmp/stable /tmp/installed > /tmp/uninstalled-stable + sed -i 's/--binpkg-respect-use//' /etc/portage/make.conf + + to_install=(--autounmask-write --autounmask-continue $(shuf -n3 /tmp/uninstalled-stable)) +elif [[ $1 ]]; then + pushd /etc/portage/variants/$1 + while read -r -d '' line; do + dest=../../${line%.footer} + if [[ ${line} = world* ]]; then + dest=/var/lib/portage/world + fi + + if [[ ${line} = world.remove ]]; then + emerge -C $(<"${line}") + elif [[ ${line} = *.footer ]]; then + cat "${line}" >> "${dest}" + else + mkdir -p "${dest%/*}" + cp "${line}" "${dest}" + fi + done < <(find . -type f -printf '%P\0') + if [[ -f buildpkgonly ]]; then + ./buildpkgonly + fi + popd +fi + +emerge -uDNkq --changed-deps --backtrack=100 --keep-going "${to_install[@]}" + +if [[ ! $1 ]]; then + emerge --depclean --quiet-unmerge-warn +fi diff --git a/builders/milou/openrc-v3-23/portage/variants/lucky/.run_marker b/builders/milou/openrc-v3-23/portage/variants/lucky/.run_marker new file mode 100644 index 0000000..722c3eb --- /dev/null +++ b/builders/milou/openrc-v3-23/portage/variants/lucky/.run_marker @@ -0,0 +1 @@ +I'm feeling lucky! diff --git a/builders/milou/openrc-v3-23/run-update b/builders/milou/openrc-v3-23/run-update index 02cdf8a..ea34914 100755 --- a/builders/milou/openrc-v3-23/run-update +++ b/builders/milou/openrc-v3-23/run-update @@ -3,6 +3,41 @@ # if one thing fails, abort entirely set -e -emerge -uDNkq --changed-deps --backtrack=100 --keep-going world +to_install=(world) -emerge --depclean --quiet-unmerge-warn +if [[ $1 = lucky ]]; then + eix-update + eix --stable --only-names | grep -E -v '^(acct|virtual|sec)-' | sort -u > /tmp/stable + eix --installed --only-names | sort -u > /tmp/installed + comm -23 /tmp/stable /tmp/installed > /tmp/uninstalled-stable + sed -i 's/--binpkg-respect-use//' /etc/portage/make.conf + + to_install=(--autounmask-write --autounmask-continue $(shuf -n3 /tmp/uninstalled-stable)) +elif [[ $1 ]]; then + pushd /etc/portage/variants/$1 + while read -r -d '' line; do + dest=../../${line%.footer} + if [[ ${line} = world* ]]; then + dest=/var/lib/portage/world + fi + + if [[ ${line} = world.remove ]]; then + emerge -C $(<"${line}") + elif [[ ${line} = *.footer ]]; then + cat "${line}" >> "${dest}" + else + mkdir -p "${dest%/*}" + cp "${line}" "${dest}" + fi + done < <(find . -type f -printf '%P\0') + if [[ -f buildpkgonly ]]; then + ./buildpkgonly + fi + popd +fi + +emerge -uDNkq --changed-deps --backtrack=100 --keep-going "${to_install[@]}" + +if [[ ! $1 ]]; then + emerge --depclean --quiet-unmerge-warn +fi diff --git a/builders/milou/server-23/portage/variants/lucky/.run_marker b/builders/milou/server-23/portage/variants/lucky/.run_marker new file mode 100644 index 0000000..722c3eb --- /dev/null +++ b/builders/milou/server-23/portage/variants/lucky/.run_marker @@ -0,0 +1 @@ +I'm feeling lucky! diff --git a/builders/milou/server-23/run-update b/builders/milou/server-23/run-update index 417f835..ea34914 100755 --- a/builders/milou/server-23/run-update +++ b/builders/milou/server-23/run-update @@ -3,8 +3,41 @@ # if one thing fails, abort entirely set -e -emerge -uDNkq --changed-deps --backtrack=100 --keep-going world +to_install=(world) -emerge --depclean --quiet-unmerge-warn +if [[ $1 = lucky ]]; then + eix-update + eix --stable --only-names | grep -E -v '^(acct|virtual|sec)-' | sort -u > /tmp/stable + eix --installed --only-names | sort -u > /tmp/installed + comm -23 /tmp/stable /tmp/installed > /tmp/uninstalled-stable + sed -i 's/--binpkg-respect-use//' /etc/portage/make.conf -eclean-pkg + to_install=(--autounmask-write --autounmask-continue $(shuf -n3 /tmp/uninstalled-stable)) +elif [[ $1 ]]; then + pushd /etc/portage/variants/$1 + while read -r -d '' line; do + dest=../../${line%.footer} + if [[ ${line} = world* ]]; then + dest=/var/lib/portage/world + fi + + if [[ ${line} = world.remove ]]; then + emerge -C $(<"${line}") + elif [[ ${line} = *.footer ]]; then + cat "${line}" >> "${dest}" + else + mkdir -p "${dest%/*}" + cp "${line}" "${dest}" + fi + done < <(find . -type f -printf '%P\0') + if [[ -f buildpkgonly ]]; then + ./buildpkgonly + fi + popd +fi + +emerge -uDNkq --changed-deps --backtrack=100 --keep-going "${to_install[@]}" + +if [[ ! $1 ]]; then + emerge --depclean --quiet-unmerge-warn +fi diff --git a/builders/milou/server-v3-23/portage/variants/lucky/.run_marker b/builders/milou/server-v3-23/portage/variants/lucky/.run_marker new file mode 100644 index 0000000..722c3eb --- /dev/null +++ b/builders/milou/server-v3-23/portage/variants/lucky/.run_marker @@ -0,0 +1 @@ +I'm feeling lucky! diff --git a/builders/milou/server-v3-23/run-update b/builders/milou/server-v3-23/run-update index 417f835..ea34914 100755 --- a/builders/milou/server-v3-23/run-update +++ b/builders/milou/server-v3-23/run-update @@ -3,8 +3,41 @@ # if one thing fails, abort entirely set -e -emerge -uDNkq --changed-deps --backtrack=100 --keep-going world +to_install=(world) -emerge --depclean --quiet-unmerge-warn +if [[ $1 = lucky ]]; then + eix-update + eix --stable --only-names | grep -E -v '^(acct|virtual|sec)-' | sort -u > /tmp/stable + eix --installed --only-names | sort -u > /tmp/installed + comm -23 /tmp/stable /tmp/installed > /tmp/uninstalled-stable + sed -i 's/--binpkg-respect-use//' /etc/portage/make.conf -eclean-pkg + to_install=(--autounmask-write --autounmask-continue $(shuf -n3 /tmp/uninstalled-stable)) +elif [[ $1 ]]; then + pushd /etc/portage/variants/$1 + while read -r -d '' line; do + dest=../../${line%.footer} + if [[ ${line} = world* ]]; then + dest=/var/lib/portage/world + fi + + if [[ ${line} = world.remove ]]; then + emerge -C $(<"${line}") + elif [[ ${line} = *.footer ]]; then + cat "${line}" >> "${dest}" + else + mkdir -p "${dest%/*}" + cp "${line}" "${dest}" + fi + done < <(find . -type f -printf '%P\0') + if [[ -f buildpkgonly ]]; then + ./buildpkgonly + fi + popd +fi + +emerge -uDNkq --changed-deps --backtrack=100 --keep-going "${to_install[@]}" + +if [[ ! $1 ]]; then + emerge --depclean --quiet-unmerge-warn +fi |