commit: da4f5aee78341d25505e27b294f753c34a4753f5
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon May 19 20:32:53 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue May 20 19:12:22 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da4f5aee
sci-mathematics/fann: drop 2.2.0-r1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-mathematics/fann/fann-2.2.0-r1.ebuild | 38 -------------------------------
1 file changed, 38 deletions(-)
diff --git a/sci-mathematics/fann/fann-2.2.0-r1.ebuild
b/sci-mathematics/fann/fann-2.2.0-r1.ebuild
deleted file mode 100644
index a24f78373579..000000000000
--- a/sci-mathematics/fann/fann-2.2.0-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_P=FANN-${PV}-Source
-inherit cmake
-
-DESCRIPTION="Fast Artificial Neural Network Library"
-HOMEPAGE="http://leenissen.dk/fann/wp/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${MY_P}.zip"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="examples"
-
-RDEPEND=""
-BDEPEND="app-arch/unzip"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=( "${FILESDIR}/${P}-examples.patch" )
-
-src_test() {
- cd examples || die
- emake CFLAGS="${CFLAGS} -I../src/include -L${BUILD_DIR}/src"
- LD_LIBRARY_PATH="${BUILD_DIR}/src" emake runtest
- emake clean
-}
-
-src_install() {
- cmake_src_install
- if use examples; then
- dodoc -r examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}