From fb0bfa9373b28538055c179a85787e271af13ea1 Mon Sep 17 00:00:00 2001 From: James Calligeros Date: Fri, 12 Apr 2024 15:25:31 +1000 Subject: [PATCH] sys-apps/asahi-scripts: drop 20231219.1-r2 Signed-off-by: James Calligeros --- sys-apps/asahi-scripts/Manifest | 1 - .../asahi-scripts-20231219.1-r2.ebuild | 55 ------------------- 2 files changed, 56 deletions(-) delete mode 100644 sys-apps/asahi-scripts/asahi-scripts-20231219.1-r2.ebuild diff --git a/sys-apps/asahi-scripts/Manifest b/sys-apps/asahi-scripts/Manifest index 4ba78d3..c39af7b 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-20240411.tar.gz 10700 BLAKE2B a625556f8bf1636c187705012ade561e83edc5ab358cd22c8d5b8b9f36cf8c1c1abf4087978c87e44eafb625b8513eeefb846155b7e3d68f5397dc3580bd971a SHA512 7757a929de535c0c506655daa03cce2d34c2608bd3a2d012772e6de0c1e5a9cae5717b421fecc54c66a44c3983535013116ba1205c7555eed6bb58f958c46e17 diff --git a/sys-apps/asahi-scripts/asahi-scripts-20231219.1-r2.ebuild b/sys-apps/asahi-scripts/asahi-scripts-20231219.1-r2.ebuild deleted file mode 100644 index f95ef9e..0000000 --- a/sys-apps/asahi-scripts/asahi-scripts-20231219.1-r2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 2022 James Calligeros -# 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" - "${FILESDIR}/20231219.1_dracut_fw_grep_mkdir_deps.patch" - ) - -BDEPEND=" - dev-build/make" - -src_prepare() { - default -} - -src_compile() { - emake || die "Could not invoke emake" -} - -src_install() { - default - emake DESTDIR="${D}" PREFIX="/usr" 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 - - elog "Asahi scripts have been installed to /usr/. For more" - elog "information on how to use them, please visit the Wiki." - - 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 -}