dev-libs/libfdata: fix version

old versions could not be fetched (404)
This commit is contained in:
João Lucas 2024-04-02 13:48:35 +01:00
parent 98d0eb29b8
commit ae66134080
No known key found for this signature in database
GPG key ID: 6404947A3E15D5AB
3 changed files with 1 additions and 59 deletions

View file

@ -1,2 +1 @@
DIST libfdata-alpha-20211023.tar.gz 726308 BLAKE2B 78768a38699cd5d5727b5067c82ea2f01605a24b78e862409a6f2245ecb9645210833c82e138df6a7293fbb3755aa1409ca441c9ac8e229e86fd27e73508f07c SHA512 e8f899c7c447ac97fa82f289411674a714faf722bfa28ec6c39712cedb4ac560fe30de34c5315f5830286e86fdca6bc897662c29ee78c0a7e6bd09a3406ea295 DIST libfdata-alpha-20240114.tar.gz 720443 BLAKE2B faab45b55ff1d364638cb869b4c2a052416a74b24a8e73a6f52065de1a16fe314fd6b58c7168c5785d22da20bc72f4b7508e4343bc54f1d0a89f91391f85a0f9 SHA512 f46ad6b877142fe0994c3370826c915b295736c23d563b6b04345217ce65602e8e89fdb73a9101de84438691d049afb5a2edae57ed8a88bc1b79f03b2a52fea9
DIST libfdata-alpha-20220111.tar.gz 726541 BLAKE2B 8640cbcafd39e26638cfa5b3f7c1d9c99618801ba080bc8d5ee5ee8d574a837e74d8f1df5399e367f7a17f28b5f175a7e0183e0cefe7fb37a303d7be61a261b2 SHA512 89e7477d15df8403102452fef874e1d2c61be53e861051bd06d258d1e8d3fdca86b0ec694b2ece62fc74e71257cd93b711dfa785aea2f3e313b5e857569c80a3

View file

@ -1,57 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Library for cross-platform C file data functions"
HOMEPAGE="https://github.com/libyal/libfdata"
SRC_URI="https://github.com/libyal/libfdata/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
IUSE="nls debug +threads"
DEPEND="
dev-libs/libcdata[nls=]
dev-libs/libcerror[nls=]
dev-libs/libcnotify[nls=]
dev-libs/libcthreads[nls=]
dev-libs/libfcache[nls=]
nls? (
virtual/libiconv
virtual/libintl
)
"
RDEPEND="${DEPEND}"
src_prepare() {
#makefile was created with 1.16, let's regenerate it
eautoreconf
eapply_user
}
src_configure() {
econf \
$(use_enable nls) \
$(use_with nls libiconv-prefix) \
$(use_with nls libintl-prefix) \
$(use_enable debug debug-output) \
$(use_enable debug verbose-output) \
$(use_enable threads multi-threading-support)
# --disable-shared-libs disable shared library support
# not supported in the ebuild at the moment - kind of defeats the entire process
# --enable-winapi enable WINAPI support for cross-compilation
# [default=auto-detect]
# not supported in the ebuild at the moment - requires windows.h, does not make much sense for us
}
src_install() {
default
# see https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303
find "${ED}" -name '*.la' -delete || die
}