app-forensics/libfsxfs: drop 2022, bump 2024

This commit is contained in:
rick 2025-12-02 00:57:19 +01:00
parent 3321435d0b
commit 9aa9c41942
No known key found for this signature in database
GPG key ID: D3FB4A5EDD2CBF02
3 changed files with 1 additions and 81 deletions

View file

@ -1,2 +1 @@
DIST libfsxfs-experimental-20220706.tar.gz 1739918 BLAKE2B 45ec1f1741bb68a234008d1a4d8d35acdcd69a5e4940da9cbe3c576b5fb5a3a882202fda155a67e25aab727840d4b02fd3f443643619a3c986c1f81cd2355463 SHA512 cfba8660bf9100f02c757e396317367ead5754670c0dc5d3d5529ac4ecedf24938414a26c179fe783c837f58176674882b80bb6e6f70bd5f106641eb4e5587ee
DIST libfsxfs-experimental-20220829.tar.gz 1733183 BLAKE2B a3f40833a724b1c2c2c8b78107473dd30141f5659a1ce511cd906afab607384e570ec7a01801bb9f04ceb09d783bd3a7a1a42580283fc9270d95a6fd90a36a75 SHA512 b751b657a1fa33671cf426dd2873bfc7d1e7f323c5f27d0691bf8fca65d076fc009cb8725f194e7335b43a5a6ca094cea7bbb201cf3b89ec43c60aece4b5ebda
DIST libfsxfs-20240501.gh.tar.gz 1714269 BLAKE2B 093bcfac31980fc44e48be3fc0824f9b92c777371dd7036920cb69b52be4bf25191ae52e1b3846eb1b87fa922310770f45661cabad01a879c6cf0826e97b6486 SHA512 91e6f2838da5fbf020b25fc9b55164bf08c4e43d8e30fb319acd65726a87b161899fb4cbb2da0fb4968815c09b6dd6efa0cfbeffe02ff9770de815ce7b871535

View file

@ -1,79 +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 SGI X File System (XFS)"
HOMEPAGE="https://github.com/libyal/libfsxfs"
SRC_URI="https://github.com/libyal/libfsxfs/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/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/libhmac[nls=,unicode=,threads=]
dev-libs/libuna[nls=,unicode=]
dev-libs/openssl
"
RDEPEND="
${DEPEND}
python? ( ${PYTHON_DEPS} )
fuse? ( sys-fs/fuse )
"
src_prepare() {
# workaround for missing files in distribution package, see https://github.com/libyal/libfsxfs/issues/9
# should not be required any more in releases after 20220829
cp "${FILESDIR}/2022-11-pyfsxfs_test_volume.py" "${WORKDIR}/${P}/tests/pyfsxfs_test_volume.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
}