summaryrefslogtreecommitdiff
path: root/sci-mathematics/plfit
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /sci-mathematics/plfit
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'sci-mathematics/plfit')
-rw-r--r--sci-mathematics/plfit/Manifest1
-rw-r--r--sci-mathematics/plfit/metadata.xml13
-rw-r--r--sci-mathematics/plfit/plfit-1.0.1.ebuild33
3 files changed, 0 insertions, 47 deletions
diff --git a/sci-mathematics/plfit/Manifest b/sci-mathematics/plfit/Manifest
deleted file mode 100644
index 67e05cbc08d4..000000000000
--- a/sci-mathematics/plfit/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST plfit-1.0.1.tar.gz 186015 BLAKE2B e5944015cf9c53eab1634f54cfbceb63eccff5b1225ef2818066499ba9fa8d913cfe21527606d6118df86f3a3a1a14e00649fc51424792d8346247a3a19ec744 SHA512 8d1f43bdd038310504500367d808b07b14d226af116bf205d2185fc9bdd669be5e28b773df1d100b396f40ae918e3c86ea94e5f10892167514a139b0505a6c15
diff --git a/sci-mathematics/plfit/metadata.xml b/sci-mathematics/plfit/metadata.xml
deleted file mode 100644
index fad11365ac2d..000000000000
--- a/sci-mathematics/plfit/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>mjo@gentoo.org</email>
- </maintainer>
- <maintainer type="project">
- <email>sci-mathematics@gentoo.org</email>
- </maintainer>
- <upstream>
- <remote-id type="github">ntamas/plfit</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sci-mathematics/plfit/plfit-1.0.1.ebuild b/sci-mathematics/plfit/plfit-1.0.1.ebuild
deleted file mode 100644
index 7437edfcd533..000000000000
--- a/sci-mathematics/plfit/plfit-1.0.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Fit power-law distributions to empirical data"
-HOMEPAGE="https://github.com/ntamas/plfit"
-SRC_URI="https://github.com/ntamas/${PN}/archive/refs/tags/${PV}.tar.gz
- -> ${P}.tar.gz"
-# plfit is gpl-2 and its source headers say "or later." The upstream
-# doc/ directory contains MIT and BSD licenses for two components.
-LICENSE="BSD GPL-2+ MIT"
-SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
-IUSE="cpu_flags_x86_sse cpu_flags_x86_sse2"
-
-DOCS=( CHANGELOG.md README.rst doc/THANKS )
-
-src_configure() {
- local mycmakeargs=(
- -DPLFIT_COMPILE_PYTHON_MODULE=OFF
- -DPLFIT_USE_SSE=OFF
- -DPLFIT_USE_OPENMP=OFF
- )
- if use cpu_flags_x86_sse || use cpu_flags_x86_sse2; then
- # plfit chooses which to use at compile time based on the
- # constants __SSE__ and __SSE2__.
- mycmakeargs+=( -DPLFIT_USE_SSE=ON )
- fi
- cmake_src_configure
-}