Updated flatcam and dependency galore / minor updates to other ebuilds

This commit is contained in:
layman
2022-11-27 22:14:54 +01:00
parent b722f6b0a1
commit 1a100e11bc
38 changed files with 1073 additions and 24 deletions
+3
View File
@@ -0,0 +1,3 @@
DIST snuggs-1.4.7.tar.gz 7762 BLAKE2B fae10c4e6f759219cbecdbea4b8f49001980824fe1d43fba9d5b62837a88183d1ecb6f55e191b637048e03856b1c6466cb17a9c38dfa332537d8968c8510fc25 SHA512 c1f40e521d1b0cf15075b22b04000c74ecbd0522cdd820b8c159aac812924d877349b3f3bca93b09eed5b025a34c26665a41c7a52a8145419558b115cf8ef361
EBUILD snuggs-1.4.7.ebuild 603 BLAKE2B 5f33a3a47380fabbdea0708f16f47afa6a96d9ef3e3f3253f831fbff444a1bbd29d49287b67e70199247f00600da3b5238060d0046dc9d7b9c7d0c7803cb9e6a SHA512 3a9ca3ac8c977fb4917f8972748237083622ff0af71a9303c036589880ce0b1e744b260d5db8ffe2e68aee6a2c79645e21624583e7c093ba86780732933713fa
MISC metadata.xml 646 BLAKE2B 900fd067f2df4fcb89c6ed9fb25b9fa790f2f7885564bf75a97d3913eea50e2c3e3a5a0a21af25ad73ecfad2c8193a3233b3c02b5d1f7306203ea5135239cc0d SHA512 344a1a0b286e341768a72d931d047d0dc63fc752c4fe628acca7f89ae1c7c2c22a0f492abf8e28521838f55bf073980d1a531e4121531dfefb16f0b799883fd0
+17
View File
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>sci@gentoo.org</email>
<name>Gentoo Science Project</name>
</maintainer>
<longdescription lang="en">
Snuggs library parses S-expressions using numpy. Available function
include arithmetic and logical operators. Also members of the numpy
module such as "asarray()", "mean()" and "where" are available.
</longdescription>
<upstream>
<remote-id type="github">mapbox/snuggs</remote-id>
<remote-id type="pypi">snuggs</remote-id>
</upstream>
</pkgmetadata>
+26
View File
@@ -0,0 +1,26 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
DISTUTILS_USE_PEP517="setuptools"
inherit distutils-r1
DESCRIPTION="S-expressions for numpy"
HOMEPAGE="https://github.com/mapbox/snuggs"
SRC_URI="https://github.com/mapbox/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
"
BDEPEND="
test? ( dev-python/hypothesis[${PYTHON_USEDEP}] )
"
distutils_enable_tests pytest