app-forensics/libfsapfs: drop 2022, bump to 2024

This commit is contained in:
rick 2025-11-30 23:01:59 +01:00
parent 850e925b8e
commit 3a85e4ab1d
No known key found for this signature in database
GPG key ID: D3FB4A5EDD2CBF02
3 changed files with 1 additions and 86 deletions

View file

@ -1,2 +1 @@
DIST libfsapfs-experimental-20220709.tar.gz 2138692 BLAKE2B 1899560c0f7d8686d3d892a4315f69f2d933982f50d7bb0b33be9bc348b9fffde83b2b779f510b659ed21a8da2940cac974d8758f9d80cb6a6d213ce6f32c344 SHA512 1217fccfb5db2cd6f5892c1a550259adc756751f79f343703dba2fda7b9e5cdf96f88d19715e30c31efcef194ca9aa58869348c131c955e8a0f290ccd3c568ad
DIST libfsapfs-experimental-20221102.tar.gz 2175695 BLAKE2B 65865863ddf6a720c04e7ea3893557b8d2eda580082c7613b5a040ee5d3f022da1457ab2bbd1488069a213c01e65733d52ebcf576873649d52548b56b1dba436 SHA512 63c5f199cb60c52964b5d12f5a6f0246257c4132a3f6fbb2977b8637d33450c5d8eb05b52476c609b9c921947277ab50ad154959f889ac776585441cd34b3d8c
DIST libfsapfs-experimental-20240429.tar.gz 2171864 BLAKE2B c7e61f68b3cd40528c290c6c3244b71f7661cd0925bef9093dd98eff33f886bc76ba2ca79f71d8418c032c193fc24ab255a651f94c01ca80c737ef04caaffe89 SHA512 4d666ab41066c1522e33ed4f66871d5463fcabb53d9aa630bf6b5e10d19d74f4392e28b2948d074bf28bac5d76b8df52d317631358916737c0c03464afb7be5f

View file

@ -1,84 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{12..14} )
inherit autotools python-single-r1
DESCRIPTION="Library and tools to access the Apple File System (APFS)"
HOMEPAGE="https://github.com/libyal/libfsapfs"
SRC_URI="https://github.com/libyal/libfsapfs/releases/download/${PV}/${PN}-experimental-${PV}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
IUSE="nls unicode python +fuse +threads debug"
REQUIRED_USE="
python? ( ${PYTHON_REQUIRED_USE} )
"
DEPEND="
nls? (
virtual/libiconv
virtual/libintl
)
python? ( dev-lang/python:* )
app-forensics/libbfio[nls=,unicode=,threads=]
dev-libs/libcaes[nls=,python=]
dev-libs/libcdata[nls=]
dev-libs/libcerror[nls=]
dev-libs/libcfile[nls=,unicode=]
dev-libs/libclocale[nls=,unicode=]
dev-libs/libcnotify[nls=]
dev-libs/libcpath[nls=,unicode=]
dev-libs/libcsplit[nls=,unicode=]
dev-libs/libcthreads[nls=]
dev-libs/libfcache[nls=]
dev-libs/libfdata[nls=,threads=]
dev-libs/libfdatetime[nls=]
dev-libs/libfguid[nls=]
dev-libs/libfmos[nls=,threads=,python=]
dev-libs/libhmac[nls=,unicode=,threads=]
dev-libs/libuna[nls=,unicode=]
sys-libs/zlib
dev-libs/openssl
sys-libs/glibc
"
# sys-libs/glibc is for libpthread
RDEPEND="
${DEPEND}
python? ( ${PYTHON_DEPS} )
fuse? ( sys-fs/fuse )
"
src_prepare() {
# workaround for missing files in distribution package, see https://github.com/libyal/libfsapfs/issues/64
# should not be required any more in releases after 20221102
cp "${FILESDIR}/2022-11-pyfsapfs_test_container.py" "${WORKDIR}/${P}/tests/pyfsapfs_test_container.py"
eautoreconf
eapply_user
}
src_configure() {
econf \
$(use_enable nls) \
$(use_with nls libiconv-prefix) \
$(use_with nls libintl-prefix) \
$(use_enable unicode wide-character-type) \
$(use_enable debug verbose-output ) \
$(use_enable debug debug-output ) \
$(use_enable threads multi-threading-support) \
$(use_enable python) \
$(use_enable python python3) \
$(use_with fuse libfuse) \
}
src_install() {
default
# see https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303
find "${ED}" -name '*.la' -delete || die
}