commit: fdcb03b668aa57c326ee96bc16d34974c80afbdf Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Oct 26 00:02:35 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Oct 26 00:03:16 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdcb03b6
dev-lang/fpc: use downloads.freepascal.org for SRC_URI Followup to c7b0a652d99ba6813e0d2f8ef6a60382cf4a149a. They're still using sourceforge as a mirror but this leads to noise w/ "missing" remote-id and seems more futureproof to use this location anyway. Signed-off-by: Sam James <sam <AT> gentoo.org> dev-lang/fpc/fpc-3.2.2.ebuild | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/dev-lang/fpc/fpc-3.2.2.ebuild b/dev-lang/fpc/fpc-3.2.2.ebuild index 8230343c8e34..4c942fec4f85 100644 --- a/dev-lang/fpc/fpc-3.2.2.ebuild +++ b/dev-lang/fpc/fpc-3.2.2.ebuild @@ -1,19 +1,22 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit prefix toolchain-funcs -HOMEPAGE="https://www.freepascal.org/" DESCRIPTION="Free Pascal Compiler" -SRC_URI="https://downloads.sourceforge.net/freepascal/fpcbuild-${PV}.tar.gz - https://downloads.sourceforge.net/freepascal/fpc-${PV}.source.tar.gz - amd64? ( https://downloads.sourceforge.net/freepascal/${P}.x86_64-linux.tar ) - arm64? ( https://downloads.sourceforge.net/freepascal/${P}.aarch64-linux.tar ) - sparc? ( https://downloads.sourceforge.net/freepascal/${P}.sparc64-linux.tar ) - x86? ( https://downloads.sourceforge.net/freepascal/${P}.i386-linux.tar ) - doc? ( https://downloads.sourceforge.net/freepascal/Documentation/${PV}/doc-html.tar.gz -> ${P}-doc-html.tar.gz )" +HOMEPAGE="https://www.freepascal.org/" +SRC_URI=" + https://downloads.freepascal.org/fpc/dist/${PV}/source/fpcbuild-${PV}.tar.gz + https://downloads.freepascal.org/fpc/dist/${PV}/source/fpc-${PV}.source.tar.gz + doc? ( https://downloads.freepascal.org/fpc/dist/${PV}/docs/doc-html.tar.gz -> ${P}-doc-html.tar.gz ) + + amd64? ( https://downloads.freepascal.org/fpc/dist/${PV}/x86_64-linux/${P}.x86_64-linux.tar ) + arm64? ( https://downloads.freepascal.org/fpc/dist/${PV}/aarch64-linux/${P}.aarch64-linux.tar ) + sparc? ( https://downloads.freepascal.org/fpc/dist/${PV}/sparc64-linux/${P}.sparc64-linux.tar ) + x86? ( https://downloads.freepascal.org/fpc/dist/${PV}/i386-linux/${P}.i386-linux.tar ) +" S="${WORKDIR}/fpcbuild-${PV}/fpcsrc" LICENSE="GPL-2 LGPL-2.1-with-linking-exception"
