commit: 44d86d92eef53d49b95cdaffdd44d8cca191a81a Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Fri Mar 28 01:03:51 2025 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Fri Mar 28 01:04:05 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d86d92
sys-fs/linux-apfs-rw: add 0.3.13 Closes: https://bugs.gentoo.org/952804 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> sys-fs/linux-apfs-rw/Manifest | 1 + sys-fs/linux-apfs-rw/linux-apfs-rw-0.3.13.ebuild | 40 ++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/sys-fs/linux-apfs-rw/Manifest b/sys-fs/linux-apfs-rw/Manifest index f1dfb52b34db..800666306aad 100644 --- a/sys-fs/linux-apfs-rw/Manifest +++ b/sys-fs/linux-apfs-rw/Manifest @@ -1 +1,2 @@ DIST linux-apfs-rw-0.3.10.tar.gz 210033 BLAKE2B a7714ed7e0f2334fe8b534cf88cca5c5dba62592046e8c4957171350de17d808fb64cc809facd2b385ef27b7f8c3f6001e675e34437c609daf5b6b2cd9afd1f0 SHA512 cebdbbda67f282edaf00e6b1da9ed4905a068205c2af6a1b723da4007c39c3ea02c2a2935e2e07395b51dda58b6f1ad00beb9547fed81690f77455b96fb9e672 +DIST linux-apfs-rw-0.3.13.tar.gz 214862 BLAKE2B b0e41feedde32953019cd8183ef7637fcc9310e47f383e82b67d830f3f8c21f86100e6726d1540051ed3594d286a294778e45d41c3456a841281f3f57ff2a57e SHA512 09db8cc6b0dc28e61d455b621e9c5cc17ebbbc2c80f6d88874f29b5878a9c0a611adf6ec0880ae47179ef5f1c632bb0b8bc5f2469678e59d9e4dd346dbaa28d3 diff --git a/sys-fs/linux-apfs-rw/linux-apfs-rw-0.3.13.ebuild b/sys-fs/linux-apfs-rw/linux-apfs-rw-0.3.13.ebuild new file mode 100644 index 000000000000..3613f1532e95 --- /dev/null +++ b/sys-fs/linux-apfs-rw/linux-apfs-rw-0.3.13.ebuild @@ -0,0 +1,40 @@ +# Copyright 2024-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit linux-mod-r1 + +DESCRIPTION="APFS module for linux, with experimental write support" +HOMEPAGE="https://github.com/linux-apfs/linux-apfs-rw" +SRC_URI="https://github.com/linux-apfs/linux-apfs-rw/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +CONFIG_CHECK="LIBCRC32C" + +pkg_setup() { + linux-mod-r1_pkg_setup +} + +src_prepare() { + default + sed -e "s/GIT_COMMIT=.*/GIT_COMMIT=${PV}/" -i genver.sh || die +} + +src_compile() { + local modlist=( apfs=extra ) + local modargs=( KERNEL_DIR=${KV_OUT_DIR} KERNELRELEASE=${KV_FULL} ) + + linux-mod-r1_src_compile +} + +src_install() { + linux-mod-r1_src_install +} + +pkg_postinst() { + linux-mod-r1_pkg_postinst +}
