summaryrefslogtreecommitdiff
path: root/dev-python/lap
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-07 19:13:18 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-07 19:13:18 +0000
commit63cc2c766bddbc62e012b702853544b13e1d9612 (patch)
treed1a813acde1218348da28db4415bf9bb9cd81705 /dev-python/lap
parentbd8f31291641f6114c228c3d0381a13a04169e93 (diff)
downloadbaldeagleos-repo-63cc2c766bddbc62e012b702853544b13e1d9612.tar.gz
baldeagleos-repo-63cc2c766bddbc62e012b702853544b13e1d9612.tar.xz
baldeagleos-repo-63cc2c766bddbc62e012b702853544b13e1d9612.zip
Adding metadata
Diffstat (limited to 'dev-python/lap')
-rw-r--r--dev-python/lap/Manifest1
-rw-r--r--dev-python/lap/lap-0.5.12.ebuild45
2 files changed, 0 insertions, 46 deletions
diff --git a/dev-python/lap/Manifest b/dev-python/lap/Manifest
index 177ed818d124..ec0866ce3f98 100644
--- a/dev-python/lap/Manifest
+++ b/dev-python/lap/Manifest
@@ -1,3 +1,2 @@
-DIST lap-0.5.12.tar.gz 1520169 BLAKE2B ce68ddd14304b930044a94ff7362b00724ca8ce89d5fa0189437a393cff5911ac74cc45056ba152780000f7f4c691e73269cd711f20f5f693f5699918c0c4428 SHA512 a8ba1883e06b04a41cebb53999bcc7321748036958fde1ab37a2194b43104a84d0315bea89b21aaae7556cc3f573d95bf30107dc4045af301134dd10319b7d53
DIST lap-0.5.13.tar.gz 1537351 BLAKE2B 0756d52680f0b55ffea94544d9d284d74a27f24b7de4ff968acae0a021cba72a36871b2a1ff36a93c00f521afa19ea28132ed440e30bce830e2b5c4743cd0013 SHA512 66c45a6802a6edcbb7f5bf25f7ee5030acc0d5eab706666fb4ebaff3f8578af5bfc951296138ab22cf8d18d74cb0712433feca5c43c3a97cd5e8eed2abdbaee5
DIST lap-0.5.13.tar.gz.provenance 9282 BLAKE2B c8ad7ed181ad24aab1f7b14539823512dcfbdc1d4b465396c34e9c3d8118cad986a5712269e869a00ae52fbfb69587195eb2e01c803ae84d95c9621762d4c370 SHA512 6bd656b6066380b68fa37c76d9cb6c22c63eeabc90c7e8dc9ec4873bcbe92d3445e28eb18cdff1aec16751e91a7775334f441c2a1e5886aa60470c503f3b240f
diff --git a/dev-python/lap/lap-0.5.12.ebuild b/dev-python/lap/lap-0.5.12.ebuild
deleted file mode 100644
index 9fb3063d7f12..000000000000
--- a/dev-python/lap/lap-0.5.12.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-DISTUTILS_EXT=1
-PYTHON_COMPAT=( python3_{10..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Linear Assignment Problem solver (LAPJV/LAPMOD)"
-HOMEPAGE="
- https://github.com/gatagat/lap
- https://pypi.org/project/lap/
-"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64"
-
-RDEPEND="
- >=dev-python/numpy-1.21.6[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
- >=dev-python/numpy-1.23.0[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- # Don't install tests and keep them in a separate location
- # https://projects.gentoo.org/python/guide/test.html#importerrors-for-c-extensions
- mv lap/tests tests || die
- sed -e '/tests_package =/d' \
- -e '/packages =/ { s/, tests_package// }' \
- -i setup.py || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- rm -rf lap || die
- epytest
-}