summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Calligeros <jcalligeros99@gmail.com>2024-09-21 16:44:09 +1000
committerSam James <sam@gentoo.org>2024-11-17 05:20:46 +0000
commitb8176d6fd67147a1b0c48aea58387854a45c62c1 (patch)
treeacdceeb8af55f500a96ee14251a5fd1752d7805b /sys-apps
parentsys-apps/asahi-scripts: add 20240822 (diff)
downloadgentoo-b8176d6fd67147a1b0c48aea58387854a45c62c1.tar.gz
gentoo-b8176d6fd67147a1b0c48aea58387854a45c62c1.tar.bz2
gentoo-b8176d6fd67147a1b0c48aea58387854a45c62c1.zip
sys-apps/asahi-scripts: drop 20231219.1
Signed-off-by: James Calligeros <jcalligeros99@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/asahi-scripts/Manifest1
-rw-r--r--sys-apps/asahi-scripts/asahi-scripts-20231219.1.ebuild46
2 files changed, 0 insertions, 47 deletions
diff --git a/sys-apps/asahi-scripts/Manifest b/sys-apps/asahi-scripts/Manifest
index 58484ab54e5f..924e0e2acacc 100644
--- a/sys-apps/asahi-scripts/Manifest
+++ b/sys-apps/asahi-scripts/Manifest
@@ -1,2 +1 @@
-DIST asahi-scripts-20231219.1.tar.gz 10696 BLAKE2B 1a3103f093fa87f33f7bdc64340dbd61705ac88832b1a9a2cb015ae8ff7ccfc138b91d0f38505dcdb916ccef03a0f788dd2bbaac66fc32118ce8acb536791bdd SHA512 ab4462bd8b98558f57a1edb4ac9fb21535e6a2b8396f6774a3ea1160ad2de4f64ffb65a93d08e6112ea2d90050a1a368fd32d8a6e5b0d7a545961c57ac9d0639
DIST asahi-scripts-20240822.tar.gz 12264 BLAKE2B 945bd549a768beb86b69bbdeae088df7d687a534d7003e62574349e40fcb84f37306e96aade89d2fd45882add0d1b31e99b647f38debce4f6fb9185ec848d2a8 SHA512 6b99abe8df63b928285d6af54ba745bf9ae7a53f3208c77b90158fa076d34feb091275343039b61320fc043b6021170ad63f0e6df933e6a0a3fbfe146f78caf5
diff --git a/sys-apps/asahi-scripts/asahi-scripts-20231219.1.ebuild b/sys-apps/asahi-scripts/asahi-scripts-20231219.1.ebuild
deleted file mode 100644
index 4e4b1fe2eda2..000000000000
--- a/sys-apps/asahi-scripts/asahi-scripts-20231219.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-DESCRIPTION="Apple Silicon support scripts"
-HOMEPAGE="https://asahilinux.org/"
-SRC_URI="https://github.com/AsahiLinux/${PN}/archive/refs/tags/${PV}.tar.gz -> ${PN}-${PV}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~arm64"
-
-PATCHES=(
- "${FILESDIR}/makefile.patch"
- "${FILESDIR}/update-m1n1-dtbs.patch"
-)
-
-src_install() {
- default
- emake DESTDIR="${D}" SYS_PREFIX="" install-dracut
-}
-
-pkg_postinst() {
- if [[ ! -e ${ROOT}/usr/lib/asahi-boot ]]; then
- ewarn "These scripts are intended for use on Apple Silicon"
- ewarn "machines with the Asahi tooling installed! Please"
- ewarn "install sys-boot/m1n1, sys-boot/u-boot and"
- ewarn "sys-firmware/asahi-firmware!"
- fi
-
- if [[ -e ${ROOT}/bin/update-m1n1 ]]; then
- ewarn "You need to remove /bin/update-m1n1."
- fi
-
- if [[ -e ${ROOT}/usr/local/share/asahi-scripts/functions.sh ]]; then
- ewarn "You have upgraded to a new version of ${PN}. Please"
- ewarn "remove /usr/local/share/asahi-scripts/,"
- ewarn " /usr/local/bin/update-m1n1, and"
- ewarn "/usr/local/bin/update-vendor-firmware."
- fi
-
- if [[ -e ${ROOT}/etc/dracut.conf.d/10-apple.conf ]]; then
- ewarn "Please remove /etc/dracut.conf.d/10-apple.conf"
- fi
-}