From 890a1418c8d2524c3c408a2fc8043cb8b37c049d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas?= Date: Tue, 2 Apr 2024 13:39:40 +0100 Subject: [PATCH] dev-libs/libfcache: fix version old versions could not be fetched (404) --- dev-libs/libfcache/Manifest | 3 +- dev-libs/libfcache/libfcache-20220110.ebuild | 53 ------------------- ...00708.ebuild => libfcache-20240112.ebuild} | 0 3 files changed, 1 insertion(+), 55 deletions(-) delete mode 100644 dev-libs/libfcache/libfcache-20220110.ebuild rename dev-libs/libfcache/{libfcache-20200708.ebuild => libfcache-20240112.ebuild} (100%) diff --git a/dev-libs/libfcache/Manifest b/dev-libs/libfcache/Manifest index 0a58b2bae..eca907477 100644 --- a/dev-libs/libfcache/Manifest +++ b/dev-libs/libfcache/Manifest @@ -1,2 +1 @@ -DIST libfcache-alpha-20200708.tar.gz 608441 BLAKE2B 861a9a63c8250a2272f75cf1bcd387d4b19c278e152f306823870f1e6ee56a1b3d3a55c1768f2821b6f29cee4222695de1ad2fca7a93dcd2f6756af456de3ee0 SHA512 c32ac6f07a0696eacaf5833c6bba6ec97b72a4cce8777824e73091bfff8eacf8fca90b7be2897ceb7ea73a5106f758b200b64f19dbf4f3eef1c1ef35f6c462cc -DIST libfcache-alpha-20220110.tar.gz 609372 BLAKE2B 6bc1c4750ef9bab85494026c5b85cd45fc9ba2ea551dc41bdf0c5e7659c0575031202236d108adc40791a5281f87830268b8c255e3795772fdccb6350b77ed8d SHA512 ef8b55f0e9a34b349b101b96fa2365131284b51e436d1213439c057fc95a983abfc0fbd7abb2d802bb7a1e247fee651a62f76f60836bf30804821f1f9f0eb954 +DIST libfcache-alpha-20240112.tar.gz 621584 BLAKE2B 75b6b78d12a9e4ec7cc93bb6b7a989fa3ce1e720a9634bafd08d457a14046c5898b54311f8116faa91194dede71226b27ed0656af1b795b8faa7fd58fc55d1a1 SHA512 4c4610edebeed3c9708bd6ebe532b37cc226162935d6a5002bd4a2490d7940ae87cb879d18e73e3032bb918ed74c6937207ca5e49a1f1f209d3e8fea6fb53194 diff --git a/dev-libs/libfcache/libfcache-20220110.ebuild b/dev-libs/libfcache/libfcache-20220110.ebuild deleted file mode 100644 index 22f0efab6..000000000 --- a/dev-libs/libfcache/libfcache-20220110.ebuild +++ /dev/null @@ -1,53 +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 cache functions" -HOMEPAGE="https://github.com/libyal/libfcache" -SRC_URI="https://github.com/libyal/libfcache/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="nls +threads" - -DEPEND=" - dev-libs/libcdata[nls=] - dev-libs/libcerror[nls=] - dev-libs/libcthreads[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 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 -} diff --git a/dev-libs/libfcache/libfcache-20200708.ebuild b/dev-libs/libfcache/libfcache-20240112.ebuild similarity index 100% rename from dev-libs/libfcache/libfcache-20200708.ebuild rename to dev-libs/libfcache/libfcache-20240112.ebuild