diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-12-10 02:01:16 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-12-10 02:01:16 +0000 |
commit | 59437d191de3ff33f9bfa37f8656d849184fcaf0 (patch) | |
tree | 7d5e645c0aac6d8b71229a0e53d7a93136f83781 /sci-mathematics/plfit | |
parent | 1a95f960273f276a4fdefb824336b073d83bcb5e (diff) |
gentoo auto-resync : 10:12:2024 - 02:01:16
Diffstat (limited to 'sci-mathematics/plfit')
-rw-r--r-- | sci-mathematics/plfit/Manifest | 2 | ||||
-rw-r--r-- | sci-mathematics/plfit/plfit-0.9.3.ebuild | 33 |
2 files changed, 0 insertions, 35 deletions
diff --git a/sci-mathematics/plfit/Manifest b/sci-mathematics/plfit/Manifest index b48aede2d66a..1f08bf30da9a 100644 --- a/sci-mathematics/plfit/Manifest +++ b/sci-mathematics/plfit/Manifest @@ -1,5 +1,3 @@ -DIST plfit-0.9.3.tar.gz 178880 BLAKE2B 611c4d30fa39cb05f8324670c484fd504abf2b1638602f5fede31438bf831f8aa3d7f3a5c6f2edbab377c99bf5f67763149f288581778fdd2fe9a1596a0d4a23 SHA512 6ca0fab75f607b27801576ff6752002079e11c736d0c3f6a669f20bb2869a254aa3ba124a5f6df1ad1daed25c59c8b0952838478cd42570e6d399958f0796e84 DIST plfit-0.9.5.tar.gz 181657 BLAKE2B c766ab3f309fc5c00a14e76d4ed40b1bd5722d56a16440065c52f0e63e56e70632d89ea606e83090f19d4201e53e8622ef3ad4af9487e5f1081d3c8ce6192b0e SHA512 8f20b649277e1e386815a0d9074dbc58e8ae30f3b23fb878f48ab52bb7983cab05e7adb9c4343490418054b7d902158f7387c9eda21bcb007b4903f6517af93c -EBUILD plfit-0.9.3.ebuild 945 BLAKE2B 667b9ada00dd45ac97be8dbd7f06b95148e1c4f444d9b60a0506157fc42d0a16fe5541dfe127d94ce85836bc05be65abb92fc8b0e59c26202f652604dd8e7a25 SHA512 3594af47d96dae49061705f9f6db287093279b522290c9dfcd98bf1719fba365418de74b6e23c0dea9c8547da8c3de1d073c7d443e146d171d8bcc1fa17f5bad EBUILD plfit-0.9.5.ebuild 945 BLAKE2B a42288484dbdebd29f836c4ba9d863cf57f2e6b359b980dd9b8b978bc9a6d4da5c2a420530ae3bfbed179bf5468702c04586221da1794b16ab1320c75bca8bbe SHA512 dff251f20ee4504a91c0e8cb1831c4dbad63544bd418b47fde8da1930e7e79bad9392efa164f6107cdabc003c083aa292fe3391c614ad3e73bb33db0526af2cd MISC metadata.xml 392 BLAKE2B ed6840c2dcf1c2f20ff69f94c0926a82b7aef46af87cfe1161a59a85da16d7c304704e0dd8ba10dda031f8b7618fffa9b6f45ecd6af898b47e3c3abe06494b3f SHA512 dc2f5c8b458bb59b6f602507272aca5bb160f89f400b0cc9a77ae5b93b2c6e141eb2a4bcdb6a2162d1f994d21e31eb90367b129e1b019f4860658eb62647b1db diff --git a/sci-mathematics/plfit/plfit-0.9.3.ebuild b/sci-mathematics/plfit/plfit-0.9.3.ebuild deleted file mode 100644 index a4ef6de3a1b7..000000000000 --- a/sci-mathematics/plfit/plfit-0.9.3.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2023 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 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 -} |