public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2018-11-03 11:33 James Le Cuirot
  0 siblings, 0 replies; 10+ messages in thread
From: James Le Cuirot @ 2018-11-03 11:33 UTC (permalink / raw
  To: gentoo-commits

commit:     67e17930f5dc6ce0f781fb7f8defbf26471fa03a
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  3 11:21:41 2018 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Nov  3 11:33:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e17930

profiles: Mask media-libs/libsdl2[vulkan] on all but amd64

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 profiles/arch/amd64/package.use.mask | 4 ++++
 profiles/arch/base/package.use.mask  | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/profiles/arch/amd64/package.use.mask b/profiles/arch/amd64/package.use.mask
index 3011e934437..e81b99e2eb2 100644
--- a/profiles/arch/amd64/package.use.mask
+++ b/profiles/arch/amd64/package.use.mask
@@ -17,6 +17,10 @@
 
 #--- END OF EXAMPLES ---
 
+# James Le Cuirot <chewi@gentoo.org> (02 Nov 2018)
+# Vulkan is only available on amd64 at present.
+media-libs/libsdl2 -vulkan
+
 # Thomas Deutschmann <whissi@gentoo.org> (12 Oct 2018)
 # www-client/firefox is available on amd64
 app-misc/tracker -firefox-bookmarks

diff --git a/profiles/arch/base/package.use.mask b/profiles/arch/base/package.use.mask
index 68da82ad967..0d31a6716b6 100644
--- a/profiles/arch/base/package.use.mask
+++ b/profiles/arch/base/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# James Le Cuirot <chewi@gentoo.org> (02 Nov 2018)
+# Vulkan is only available on amd64 at present.
+media-libs/libsdl2 vulkan
+
 # Michael Palimaka <kensington@gentoo.org> (12 Oct 2018)
 # Only available on amd64/x86
 net-analyzer/testssl bundled-openssl kerberos


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

* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2021-03-29 13:47 Michael Orlitzky
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Orlitzky @ 2021-03-29 13:47 UTC (permalink / raw
  To: gentoo-commits

commit:     89b6e0a3442972aaf1bf89eab004f19fbfb85bb6
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 27 11:48:20 2021 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Mon Mar 29 12:42:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89b6e0a3

profiles: add masks for arch-specific sci-mathematics/maxima flags.

Now that there are two separate flags (clozurecl and clozurecl64) for
the corresponding 32-bit and 64-bit lisp implementations in maxima,
we need to refactor the profile masks a bit. The idea is that, going
forward, 32-bit arches will unmask "clozurecl" and 64-bit arches will
unmask "clozurecl64" for maxima.

This only gets a bit messy because we still need to support older
versions of maxima where the flags are NOT split; and we have one
other package (sci-mathematics/fricas) which treats USE=clozurecl
generically.

Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 profiles/arch/amd64/package.use.mask | 8 ++++++++
 profiles/arch/amd64/use.mask         | 1 -
 profiles/arch/base/package.use.mask  | 8 ++++++++
 3 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/profiles/arch/amd64/package.use.mask b/profiles/arch/amd64/package.use.mask
index 33fc0e6531a..d948cdc183b 100644
--- a/profiles/arch/amd64/package.use.mask
+++ b/profiles/arch/amd64/package.use.mask
@@ -17,6 +17,14 @@
 
 #--- END OF EXAMPLES ---
 
+# Michael Orlitzky <mjo@gentoo.org> (2021-03-27)
+# Unmask the use of 64-bit dev-lisp/clozurecl on 64-bit arches.
+# Only maxima makes a distinction between the 32-bit and 64-bit
+# USE flags.
+sci-mathematics/fricas -clozurecl
+<sci-mathematics/maxima-5.44.0-r5 -clozurecl
+sci-mathematics/maxima -clozurecl64
+
 # Thomas Deutschmann <whissi@gentoo.org> (2021-02-17)
 # Unmask PCRE JIT support where dev-libs/libpcre2[jit] is available
 dev-lang/php -jit

diff --git a/profiles/arch/amd64/use.mask b/profiles/arch/amd64/use.mask
index 30c8a9b4114..b5cba9077af 100644
--- a/profiles/arch/amd64/use.mask
+++ b/profiles/arch/amd64/use.mask
@@ -55,7 +55,6 @@
 # Andrey Grozin <grozin@gentoo.org> (2014-06-25)
 # keyworded on amd64
 -clisp
--clozurecl
 -ecls
 -gcl
 -sbcl

diff --git a/profiles/arch/base/package.use.mask b/profiles/arch/base/package.use.mask
index 542e10c3fa5..883c1d48b80 100644
--- a/profiles/arch/base/package.use.mask
+++ b/profiles/arch/base/package.use.mask
@@ -1,6 +1,14 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Michael Orlitzky <mjo@gentoo.org> (2021-03-27)
+# The clozurecl and clozurecl64 flags are now arch-specific in maxima,
+# so we mask them both by default beginning with v5.44.0-r5 where
+# their meanings first diverged. You should unmask "clozurecl" on
+# 32-bit arches and unmask "clozurecl64" on 64-bit ones.
+# We don't list "clozurecl" here since it's already in use.mask.
+>=sci-mathematics/maxima-5.44.0-r5 clozurecl64
+
 # Sam James <sam@gentoo.org> (2021-03-02)
 # Java build is extremely sensitive to environment
 # Previously stable-masked but moved here


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

* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2022-12-06 18:09 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2022-12-06 18:09 UTC (permalink / raw
  To: gentoo-commits

commit:     cf07b40eeacd75243eb04734d56b3f2a53f867b1
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  6 18:06:31 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Dec  6 18:07:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf07b40e

profiles/arch: mask qsv on non-amd64 arches

Closes: https://github.com/gentoo/gentoo/pull/28365
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 profiles/arch/amd64/package.use.mask | 6 ++++++
 profiles/arch/base/package.use.mask  | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/profiles/arch/amd64/package.use.mask b/profiles/arch/amd64/package.use.mask
index 20f9e7c5b661..28b8e5f5dfe1 100644
--- a/profiles/arch/amd64/package.use.mask
+++ b/profiles/arch/amd64/package.use.mask
@@ -17,6 +17,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2022-12-06)
+# Quick Sync Video (through intel-mediasdk or oneVPL) is
+# only keyworded on amd64
+media-video/ffmpeg -qsv
+media-libs/gst-plugins-bad -qsv
+
 # Michał Górny <mgorny@gentoo.org> (2022-12-01)
 # Keyworded here.
 app-alternatives/awk -nawk

diff --git a/profiles/arch/base/package.use.mask b/profiles/arch/base/package.use.mask
index cfb208578910..309971ea4bfd 100644
--- a/profiles/arch/base/package.use.mask
+++ b/profiles/arch/base/package.use.mask
@@ -1,6 +1,12 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2022-12-06)
+# Quick Sync Video (through intel-mediasdk or oneVPL) is
+# only keyworded on amd64
+media-video/ffmpeg qsv
+media-libs/gst-plugins-bad qsv
+
 # Georgy Yakovlev <gyakovlev@gentoo.org> (2022-12-01)
 # Only supported on ppc64le.
 sys-devel/gcc ieee-long-double


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

* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2023-04-22  9:04 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2023-04-22  9:04 UTC (permalink / raw
  To: gentoo-commits

commit:     77564f87710b43364f82f724664d81ea1beb3e10
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 22 09:02:03 2023 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Apr 22 09:04:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77564f87

profiles/arch: mask kde-plasma/discover[snap] on non-amd64 arches

Preparatory work, currently only the version in ::kde has this
flag. Will trickle down into ::gentoo with the next release.

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 profiles/arch/amd64/package.use.mask | 4 ++++
 profiles/arch/base/package.use.mask  | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/profiles/arch/amd64/package.use.mask b/profiles/arch/amd64/package.use.mask
index c614b3e933a4..69516b492869 100644
--- a/profiles/arch/amd64/package.use.mask
+++ b/profiles/arch/amd64/package.use.mask
@@ -17,6 +17,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2023-04-22)
+# snap only works on amd64
+kde-plasma/discover -snap
+
 # Sam James <sam@gentoo.org> (2023-04-17)
 # Ruby has several JITs available but they need porting to individual arches.
 # Unmask on specific arches where it's available.

diff --git a/profiles/arch/base/package.use.mask b/profiles/arch/base/package.use.mask
index 9af8d281351a..9bc2a111363b 100644
--- a/profiles/arch/base/package.use.mask
+++ b/profiles/arch/base/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2023-04-22)
+# snap only works on amd64
+kde-plasma/discover snap
+
 # Sam James <sam@gentoo.org> (2023-04-03)
 # Needs dev-python/py-cpuinfo which is not ported to all of our platforms
 # See bug #894078.


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

* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2023-04-22 10:08 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2023-04-22 10:08 UTC (permalink / raw
  To: gentoo-commits

commit:     4c485474eda5a239e5553f07379912619f08a734
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 22 10:07:21 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 22 10:07:21 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c485474

profiles: Also mask dev-python/nbclassic[doc] where not stable

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 profiles/arch/amd64/package.use.stable.mask | 1 +
 profiles/arch/base/package.use.stable.mask  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/profiles/arch/amd64/package.use.stable.mask b/profiles/arch/amd64/package.use.stable.mask
index 15189b2ccec6..5bb8f28a0550 100644
--- a/profiles/arch/amd64/package.use.stable.mask
+++ b/profiles/arch/amd64/package.use.stable.mask
@@ -19,6 +19,7 @@
 
 # Michał Górny <mgorny@gentoo.org> (2023-04-22)
 # pandoc is stable here.
+dev-python/nbclassic -doc
 dev-python/nbval -doc
 
 # Yiyang Wu <xgreenlandforwyy@gmail.com> (2023-01-27)

diff --git a/profiles/arch/base/package.use.stable.mask b/profiles/arch/base/package.use.stable.mask
index 899f9ebf4d3a..818466ada9a2 100644
--- a/profiles/arch/base/package.use.stable.mask
+++ b/profiles/arch/base/package.use.stable.mask
@@ -3,4 +3,5 @@
 
 # Michał Górny <mgorny@gentoo.org> (2023-04-22)
 # pandoc is stable on amd64 only.
+dev-python/nbclassic doc
 dev-python/nbval doc


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

* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2023-07-23 10:06 Andrey Grozin
  0 siblings, 0 replies; 10+ messages in thread
From: Andrey Grozin @ 2023-07-23 10:06 UTC (permalink / raw
  To: gentoo-commits

commit:     a12d268e95855d08de0f1ba26e6d944a389fd0f3
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 23 10:06:19 2023 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Sun Jul 23 10:06:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a12d268e

profiles/arch: mask clozurecl64 in mase and unmask in amd64

Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>

 profiles/arch/amd64/use.mask | 1 +
 profiles/arch/base/use.mask  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/profiles/arch/amd64/use.mask b/profiles/arch/amd64/use.mask
index 31bf806892a6..40cc5b1b0035 100644
--- a/profiles/arch/amd64/use.mask
+++ b/profiles/arch/amd64/use.mask
@@ -68,6 +68,7 @@
 # Andrey Grozin <grozin@gentoo.org> (2014-06-25)
 # keyworded on amd64
 -clisp
+-clozurecl64
 -ecls
 -gcl
 -sbcl

diff --git a/profiles/arch/base/use.mask b/profiles/arch/base/use.mask
index a0408d9e7c5e..3a6a556ad04d 100644
--- a/profiles/arch/base/use.mask
+++ b/profiles/arch/base/use.mask
@@ -206,6 +206,7 @@ abi_s390_64
 # These lisps are available only on some arches
 clisp
 clozurecl
+clozurecl64
 cmucl
 ecls
 gcl


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

* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2023-11-24 15:52 Jimi Huotari
  0 siblings, 0 replies; 10+ messages in thread
From: Jimi Huotari @ 2023-11-24 15:52 UTC (permalink / raw
  To: gentoo-commits

commit:     9dc61a6791c69be995de7c8da1107079ac004b8b
Author:     Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 19 19:35:26 2023 +0000
Commit:     Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
CommitDate: Fri Nov 24 15:51:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dc61a67

profiles: mask 'media-video/obs-studio[qsv,websocket]'

The 'dev-libs/qr-code-generator' and 'media-libs/oneVPL'
packages have only been keyworded for amd64 at this time.

Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>

 profiles/arch/amd64/package.use.mask | 4 ++++
 profiles/arch/base/package.use.mask  | 8 ++++++++
 2 files changed, 12 insertions(+)

diff --git a/profiles/arch/amd64/package.use.mask b/profiles/arch/amd64/package.use.mask
index 037bd8e5c0ca..31fab1e8cd31 100644
--- a/profiles/arch/amd64/package.use.mask
+++ b/profiles/arch/amd64/package.use.mask
@@ -17,6 +17,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Jimi Huotari <chiitoo@gentoo.org> (2023-11-22)
+# Unmask on amd64.
+media-video/obs-studio -qsv -websocket
+
 # Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2023-11-20)
 # Qt6 is still experimental in freecad, currently the configure phase
 # gets itself stuck by importing both qt5 and qt6 cmake files.

diff --git a/profiles/arch/base/package.use.mask b/profiles/arch/base/package.use.mask
index 4b0362d1f311..6695d99265f5 100644
--- a/profiles/arch/base/package.use.mask
+++ b/profiles/arch/base/package.use.mask
@@ -1,6 +1,14 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Jimi Huotari <chiitoo@gentoo.org> (2023-11-22)
+# media-libs/oneVPL is only keyworded for amd64 at this time.
+media-video/obs-studio qsv
+
+# Jimi Huotari <chiitoo@gentoo.org> (2023-11-22)
+# dev-libs/qr-code-generator is only keyworded for amd64 at this time.
+media-video/obs-studio websocket
+
 # Jimi Huotari <chiitoo@gentoo.org> (2023-10-21)
 # net-libs/librist is only keyworded for arm64 at this time.
 media-video/obs-studio mpegts


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

* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2024-05-10  2:05 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2024-05-10  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     863f4cacefbd0e1a65f224ad8d4255072d4be123
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May 10 00:56:03 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May 10 02:03:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=863f4cac

profiles: Unmask python3_13 targets after rekeywording

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 profiles/arch/amd64/use.mask        | 5 -----
 profiles/arch/amd64/use.stable.mask | 5 -----
 profiles/arch/base/use.mask         | 5 -----
 3 files changed, 15 deletions(-)

diff --git a/profiles/arch/amd64/use.mask b/profiles/arch/amd64/use.mask
index 05b4d15bec03..8049967550c6 100644
--- a/profiles/arch/amd64/use.mask
+++ b/profiles/arch/amd64/use.mask
@@ -1,11 +1,6 @@
 # Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Michał Górny <mgorny@gentoo.org> (2024-05-08)
-# Python 3.13 is due for rekeywording due to a new dep.
--python_targets_python3_13
--python_single_target_python3_13
-
 # Unmask the flag which corresponds to ARCH.
 -amd64
 

diff --git a/profiles/arch/amd64/use.stable.mask b/profiles/arch/amd64/use.stable.mask
index c37a4c878745..c7159b879206 100644
--- a/profiles/arch/amd64/use.stable.mask
+++ b/profiles/arch/amd64/use.stable.mask
@@ -4,11 +4,6 @@
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in use.mask
 
-# Michał Górny <mgorny@gentoo.org> (2024-05-08)
-# Need to copy this here while the flag is use.masked.
-python_targets_python3_13
-python_single_target_python3_13
-
 # Paul Zander <negril.nx+gentoo@gmail.com> (2023-11-17)
 # ROCm/HIP is not suitable for stabilization.
 hip

diff --git a/profiles/arch/base/use.mask b/profiles/arch/base/use.mask
index 529ebbacc4e4..d1cd9910ec4a 100644
--- a/profiles/arch/base/use.mask
+++ b/profiles/arch/base/use.mask
@@ -1,11 +1,6 @@
 # Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Michał Górny <mgorny@gentoo.org> (2024-05-08)
-# Python 3.13 is due for rekeywording due to a new dep.
-python_targets_python3_13
-python_single_target_python3_13
-
 # Paul Zander <negril.nx+gentoo@gmail.com> (2024-04-14)
 # media-libs/quirc only keyworded on amd64, x86
 quirc


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

* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2024-06-16  7:18 Pacho Ramos
  0 siblings, 0 replies; 10+ messages in thread
From: Pacho Ramos @ 2024-06-16  7:18 UTC (permalink / raw
  To: gentoo-commits

commit:     d908964eb865ae2731a7aff3e0ae46cff9961420
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 16 07:16:54 2024 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jun 16 07:18:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d908964e

profiles/arch: Update snap package.use.mask

Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 profiles/arch/amd64/package.use.mask | 1 +
 profiles/arch/base/package.use.mask  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/profiles/arch/amd64/package.use.mask b/profiles/arch/amd64/package.use.mask
index c35791e826ac..501559b18b84 100644
--- a/profiles/arch/amd64/package.use.mask
+++ b/profiles/arch/amd64/package.use.mask
@@ -130,6 +130,7 @@ www-servers/apache -apache2_modules_tls
 
 # Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2023-04-22)
 # snap only works on amd64
+gnome-extra/gnome-software -snap
 kde-plasma/discover -snap
 
 # Sam James <sam@gentoo.org> (2023-04-17)

diff --git a/profiles/arch/base/package.use.mask b/profiles/arch/base/package.use.mask
index 19313c3ec2d8..44d1c8e25182 100644
--- a/profiles/arch/base/package.use.mask
+++ b/profiles/arch/base/package.use.mask
@@ -102,6 +102,7 @@ www-servers/apache apache2_modules_tls
 
 # Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2023-04-22)
 # snap only works on amd64
+gnome-extra/gnome-software snap
 kde-plasma/discover snap
 
 # Sam James <sam@gentoo.org> (2023-04-03)


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

* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/
@ 2024-07-15 19:18 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2024-07-15 19:18 UTC (permalink / raw
  To: gentoo-commits

commit:     bb598e49508fc2fb546cd7c369ae4cfa81084c36
Author:     Zen <z <AT> pyl <DOT> onl>
AuthorDate: Mon Jul  1 20:54:50 2024 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Jul 15 19:15:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb598e49

Add masks for installkernel[ugrd] ~amd64

Co-authored-by: Andrew Nowa Ammerlaan <andrewammerlaan <AT> gentoo.org>
Signed-off-by: Zen <z <AT> pyl.onl>
Closes: https://github.com/gentoo/gentoo/pull/33634
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 profiles/arch/amd64/package.use.mask        | 4 ++++
 profiles/arch/amd64/package.use.stable.mask | 4 ++++
 profiles/arch/base/package.use.mask         | 4 ++++
 3 files changed, 12 insertions(+)

diff --git a/profiles/arch/amd64/package.use.mask b/profiles/arch/amd64/package.use.mask
index 84e274ebe6ce..67bacefa97e1 100644
--- a/profiles/arch/amd64/package.use.mask
+++ b/profiles/arch/amd64/package.use.mask
@@ -17,6 +17,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Zen <dev@pyl.onl> (2024-07-01)
+# Unmask the ugrd flag for installkernel. It is keyworded here
+sys-kernel/installkernel -ugrd
+
 # Andreas Sturmlechner <asturm@gentoo.org> (2024-06-23)
 # Pulls in kde-apps/kgpg which is keyworded here
 >=kde-apps/kdeutils-meta-24.05.1 -gpg

diff --git a/profiles/arch/amd64/package.use.stable.mask b/profiles/arch/amd64/package.use.stable.mask
index 5be319fb3993..3fabf46299c0 100644
--- a/profiles/arch/amd64/package.use.stable.mask
+++ b/profiles/arch/amd64/package.use.stable.mask
@@ -17,6 +17,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Zen <dev@pyl.onl> (2024-07-01)
+# UGRD support is still experimental, no stable keywords for now
+sys-kernel/installkernel ugrd
+
 # Andrew Ammerlaan <andrewammerlaan@gentoo.org> (2024-03-17)
 # Experimental, virt-firmware is keyworded only unstable
 sys-kernel/installkernel efistub

diff --git a/profiles/arch/base/package.use.mask b/profiles/arch/base/package.use.mask
index fd55514a3e6f..eccb6c4c756b 100644
--- a/profiles/arch/base/package.use.mask
+++ b/profiles/arch/base/package.use.mask
@@ -8,6 +8,10 @@
 sys-devel/binutils default-gold gold
 sys-devel/binutils-hppa64 default-gold gold
 
+# Zen <dev@pyl.onl> (2024-07-01)
+# UGRD is not keyworded everywhere yet
+sys-kernel/installkernel ugrd
+
 # Andreas Sturmlechner <asturm@gentoo.org> (2024-06-23)
 # Pulls in kde-apps/kgpg which requires kde-apps/akonadi, which is as
 # part of the KDE PIM stack (big, requiring QtWebengine) only keyworded


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

end of thread, other threads:[~2024-07-15 19:18 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-15 19:18 [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/base/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2024-06-16  7:18 Pacho Ramos
2024-05-10  2:05 Michał Górny
2023-11-24 15:52 Jimi Huotari
2023-07-23 10:06 Andrey Grozin
2023-04-22 10:08 Michał Górny
2023-04-22  9:04 Andrew Ammerlaan
2022-12-06 18:09 Andrew Ammerlaan
2021-03-29 13:47 Michael Orlitzky
2018-11-03 11:33 James Le Cuirot

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