public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Davide Cavalca <dcavalca@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/asahi-installer] epel10: Do not require expert for M3
Date: Thu, 17 Sep 2026 05:03:49 GMT	[thread overview]
Message-ID: <178962142991.1.405429146970760360.rpms-asahi-installer-53bfb1be32e2@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/asahi-installer
Branch : epel10
Commit : 53bfb1be32e2322ae7f263640a19e2d355ff9d76
Author : Davide Cavalca <dcavalca@fedoraproject.org>
Date   : 2026-09-14T20:38:41-07:00
Stats  : +55/-0 in 2 file(s)
URL    : https://src.fedoraproject.org/rpms/asahi-installer/c/53bfb1be32e2322ae7f263640a19e2d355ff9d76?branch=epel10

Log:
Do not require expert for M3

---
diff --git a/444.patch b/444.patch
new file mode 100644
index 0000000..ff45b5c
--- /dev/null
+++ b/444.patch
@@ -0,0 +1,52 @@
+From 71281db4639a36f7df13c199c1bdb5dcb29e7c61 Mon Sep 17 00:00:00 2001
+From: Davide Cavalca <davide@asahilinux.org>
+Date: Mon, 14 Sep 2026 20:33:54 -0700
+Subject: [PATCH] Do not require expert for M3
+
+Signed-off-by: Davide Cavalca <davide@asahilinux.org>
+---
+ src/main.py | 24 ++++++++++++------------
+ 1 file changed, 12 insertions(+), 12 deletions(-)
+
+diff --git a/src/main.py b/src/main.py
+index e6407ba..88dd2ab 100644
+--- a/src/main.py
++++ b/src/main.py
+@@ -75,17 +75,17 @@ class Device:
+     "j475cap":  Device("13.4", False),  # Mac Studio (M2 Max, 2023)
+     "j475dap":  Device("13.4", False),  # Mac Studio (M2 Ultra, 2023)
+     "j180dap":  Device("13.4", False),  # Mac Pro (M2 Ultra, 2023)
+-    "j433ap":   Device("14.8.3", True), # iMac (24-inch, M3, 2023)
+-    "j434ap":   Device("14.8.3", True), # iMac (24-inch, M3, 2023)
+-    "j504ap":   Device("14.8.3", True), # MacBook Pro (14-inch, M3, 2023)
+-    "j613ap":   Device("14.8.3", True), # MacBook Air (13-inch, M3, 2024)
+-    "j615ap":   Device("14.8.3", True), # MacBook Air (15-inch, M3, 2024)
+-    "j514sap":  Device("14.8.3", True), # MacBook Pro (14-inch, M3 Pro, 2023)
+-    "j514cap":  Device("14.8.3", True), # MacBook Pro (14-inch, M3 Max, 2023)
+-    "j514map":  Device("14.8.3", True), # MacBook Pro (14-inch, M3 Max, 2023)
+-    "j516sap":  Device("14.8.3", True), # MacBook Pro (16-inch, M3 Pro, 2023)
+-    "j516cap":  Device("14.8.3", True), # MacBook Pro (16-inch, M3 Max, 2023)
+-    "j516map":  Device("14.8.3", True), # MacBook Pro (16-inch, M3 Max, 2023)
++    "j433ap":   Device("14.8.3", False), # iMac (24-inch, M3, 2023)
++    "j434ap":   Device("14.8.3", False), # iMac (24-inch, M3, 2023)
++    "j504ap":   Device("14.8.3", False), # MacBook Pro (14-inch, M3, 2023)
++    "j613ap":   Device("14.8.3", False), # MacBook Air (13-inch, M3, 2024)
++    "j615ap":   Device("14.8.3", False), # MacBook Air (15-inch, M3, 2024)
++    "j514sap":  Device("14.8.3", False), # MacBook Pro (14-inch, M3 Pro, 2023)
++    "j514cap":  Device("14.8.3", False), # MacBook Pro (14-inch, M3 Max, 2023)
++    "j514map":  Device("14.8.3", False), # MacBook Pro (14-inch, M3 Max, 2023)
++    "j516sap":  Device("14.8.3", False), # MacBook Pro (16-inch, M3 Pro, 2023)
++    "j516cap":  Device("14.8.3", False), # MacBook Pro (16-inch, M3 Max, 2023)
++    "j516map":  Device("14.8.3", False), # MacBook Pro (16-inch, M3 Max, 2023)
+ }
+ 
+ # Asahi Linux does not support running in a virtual machine, this option
+@@ -120,7 +120,7 @@ class Device:
+          "14.6",
+          "iBoot-10151.140.19",
+          "23.10.220.0.0,0",
+-         True,
++         False,
+          ["j433ap", "j434ap", "j504ap", "j613ap", "j615ap", "j514sap", "j514cap", "j514map", "j516sap", "j516cap", "j516map"],
+          "https://updates.cdn-apple.com/2025FallFCS/patches/089-71124/49AD260A-D47F-4B5E-A793-30446187196E/com_apple_MobileAsset_MacSoftwareUpdate/f6d1ac9149f6a06401ff87fae5b262c420bfc5f7.zip"),
+ ]

diff --git a/asahi-installer.spec b/asahi-installer.spec
index a37dc25..a0d62b3 100644
--- a/asahi-installer.spec
+++ b/asahi-installer.spec
@@ -46,6 +46,9 @@ Source3:        https://www.python.org/ftp/python/%{installer_python_version}/%{
 # Python release binaries for macOS
 Source4:        https://keybase.io/nad/pgp_keys.asc?fingerprint=0d96df4d4110e5c43fbfb17f2d347ea6aa65421d#/key.asc
 
+# Do not require expert for M3
+Patch:          %{url}/pull/444.patch
+
 BuildRequires:  gnupg2
 BuildRequires:  python3-devel
 BuildRequires:  python3dist(asn1)

                 reply	other threads:[~2026-09-17  5:03 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178962142991.1.405429146970760360.rpms-asahi-installer-53bfb1be32e2@fedoraproject.org \
    --to=dcavalca@fedoraproject.org \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox