public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/binhost:master commit in: builders/milou/gnome-23/, builders/milou/gnome-v3-23/
@ 2024-09-13 14:13 Eli Schwartz
  0 siblings, 0 replies; 3+ messages in thread
From: Eli Schwartz @ 2024-09-13 14:13 UTC (permalink / raw
  To: gentoo-commits

commit:     7691d3a4d0838d10f0787ef0f6d4c8ce443e90db
Author:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 13 14:11:54 2024 +0000
Commit:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Fri Sep 13 14:11:54 2024 +0000
URL:        https://gitweb.gentoo.org/proj/binhost.git/commit/?id=7691d3a4

Do not require variant files to be based on an already-existing directory

cp: cannot create regular file '../../package.accept_keywords/gcc': No such file or directory
Container binhost-amd64-x86-64-gnome-23 failed with error code 1.

Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>

 builders/milou/gnome-23/run-update    | 1 +
 builders/milou/gnome-v3-23/run-update | 1 +
 2 files changed, 2 insertions(+)

diff --git a/builders/milou/gnome-23/run-update b/builders/milou/gnome-23/run-update
index 84bf589..7e1aeca 100755
--- a/builders/milou/gnome-23/run-update
+++ b/builders/milou/gnome-23/run-update
@@ -26,6 +26,7 @@ elif [[ $1 ]]; then
 		elif [[ ${line} = *.footer ]]; then
 			cat "${line}" >> "${dest}"
 		else
+			mkdir -p "${dest%/*}"
 			cp "${line}" "${dest}"
 		fi
 	done < <(find . -type f -printf '%P\0')

diff --git a/builders/milou/gnome-v3-23/run-update b/builders/milou/gnome-v3-23/run-update
index 84bf589..7e1aeca 100755
--- a/builders/milou/gnome-v3-23/run-update
+++ b/builders/milou/gnome-v3-23/run-update
@@ -26,6 +26,7 @@ elif [[ $1 ]]; then
 		elif [[ ${line} = *.footer ]]; then
 			cat "${line}" >> "${dest}"
 		else
+			mkdir -p "${dest%/*}"
 			cp "${line}" "${dest}"
 		fi
 	done < <(find . -type f -printf '%P\0')


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/binhost:master commit in: builders/milou/gnome-23/, builders/milou/gnome-v3-23/
@ 2024-09-13 17:59 Andreas K. Hüttel
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas K. Hüttel @ 2024-09-13 17:59 UTC (permalink / raw
  To: gentoo-commits

commit:     b064981ec35e81d76becf4618b402bd0f698c684
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 13 17:58:31 2024 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Sep 13 17:59:00 2024 +0000
URL:        https://gitweb.gentoo.org/proj/binhost.git/commit/?id=b064981e

Disallow autounmask from unmasking licenses (bad!)

Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 builders/milou/gnome-23/run-update    | 2 +-
 builders/milou/gnome-v3-23/run-update | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/builders/milou/gnome-23/run-update b/builders/milou/gnome-23/run-update
index 7e1aeca..0d043c6 100755
--- a/builders/milou/gnome-23/run-update
+++ b/builders/milou/gnome-23/run-update
@@ -12,7 +12,7 @@ if [[ $1 = lucky ]]; then
 	comm -23 /tmp/stable /tmp/installed > /tmp/uninstalled-stable
 	sed -i 's/--binpkg-respect-use//' /etc/portage/make.conf
 
-	to_install=(--autounmask --autounmask-keep-keywords --autounmask-write --autounmask-continue $(shuf -n1 /tmp/uninstalled-stable))
+	to_install=(--autounmask --autounmask-keep-keywords --autounmask-license n --autounmask-write --autounmask-continue $(shuf -n1 /tmp/uninstalled-stable))
 elif [[ $1 ]]; then
 	pushd /etc/portage/variants/$1
 	while read -r -d '' line; do

diff --git a/builders/milou/gnome-v3-23/run-update b/builders/milou/gnome-v3-23/run-update
index 7e1aeca..0d043c6 100755
--- a/builders/milou/gnome-v3-23/run-update
+++ b/builders/milou/gnome-v3-23/run-update
@@ -12,7 +12,7 @@ if [[ $1 = lucky ]]; then
 	comm -23 /tmp/stable /tmp/installed > /tmp/uninstalled-stable
 	sed -i 's/--binpkg-respect-use//' /etc/portage/make.conf
 
-	to_install=(--autounmask --autounmask-keep-keywords --autounmask-write --autounmask-continue $(shuf -n1 /tmp/uninstalled-stable))
+	to_install=(--autounmask --autounmask-keep-keywords --autounmask-license n --autounmask-write --autounmask-continue $(shuf -n1 /tmp/uninstalled-stable))
 elif [[ $1 ]]; then
 	pushd /etc/portage/variants/$1
 	while read -r -d '' line; do


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/binhost:master commit in: builders/milou/gnome-23/, builders/milou/gnome-v3-23/
@ 2024-09-22  2:34 Eli Schwartz
  0 siblings, 0 replies; 3+ messages in thread
From: Eli Schwartz @ 2024-09-22  2:34 UTC (permalink / raw
  To: gentoo-commits

commit:     a44fe3bd42cdaf50390653616fdd93dc46cd582b
Author:     Ian Jordan <immoloism <AT> gmail <DOT> com>
AuthorDate: Sun Sep 22 02:29:18 2024 +0000
Commit:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Sun Sep 22 02:33:53 2024 +0000
URL:        https://gitweb.gentoo.org/proj/binhost.git/commit/?id=a44fe3bd

milou/gnome: Add Handbook tools

This commit adds all the tools currently in the Handbook and the ones being planned
to be added to the Handbook shortly but require different USE flags for GNOME
Profiles. This will allow any user to do a quick binpkg install.

Signed-off-by: Ian Jordan <immoloism <AT> gmail.com>
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>

 builders/milou/gnome-23/world    | 3 +++
 builders/milou/gnome-v3-23/world | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/builders/milou/gnome-23/world b/builders/milou/gnome-23/world
index dc1fcfb..a1c02df 100644
--- a/builders/milou/gnome-23/world
+++ b/builders/milou/gnome-23/world
@@ -32,16 +32,19 @@ media-gfx/gnuclad
 media-gfx/inkscape
 media-gfx/povray
 media-sound/clementine
+net-dialup/ppp
 net-firewall/fwbuilder
 net-irc/quassel
 net-misc/chrony
 net-misc/dhcpcd
+net-misc/networkmanager
 net-vpn/openvpn
 sci-libs/netcdf
 sci-visualization/gnuplot
 sci-visualization/gwyddion
 sci-visualization/spyview
 sys-apps/portage
+sys-boot/grub
 sys-cluster/openmpi
 sys-devel/clang
 dev-debug/gdb

diff --git a/builders/milou/gnome-v3-23/world b/builders/milou/gnome-v3-23/world
index dc1fcfb..a1c02df 100644
--- a/builders/milou/gnome-v3-23/world
+++ b/builders/milou/gnome-v3-23/world
@@ -32,16 +32,19 @@ media-gfx/gnuclad
 media-gfx/inkscape
 media-gfx/povray
 media-sound/clementine
+net-dialup/ppp
 net-firewall/fwbuilder
 net-irc/quassel
 net-misc/chrony
 net-misc/dhcpcd
+net-misc/networkmanager
 net-vpn/openvpn
 sci-libs/netcdf
 sci-visualization/gnuplot
 sci-visualization/gwyddion
 sci-visualization/spyview
 sys-apps/portage
+sys-boot/grub
 sys-cluster/openmpi
 sys-devel/clang
 dev-debug/gdb


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-09-22  2:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-13 17:59 [gentoo-commits] proj/binhost:master commit in: builders/milou/gnome-23/, builders/milou/gnome-v3-23/ Andreas K. Hüttel
  -- strict thread matches above, loose matches on Subject: below --
2024-09-22  2:34 Eli Schwartz
2024-09-13 14:13 Eli Schwartz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox