commit: b25354bd0ded4d3214def5577b9e8010f6052fdd Author: Alexander Puck Neuwirth <apn-pucky <AT> gentoo <DOT> org> AuthorDate: Fri Feb 6 14:14:12 2026 +0000 Commit: Alexander Puck Neuwirth <apn-pucky <AT> gentoo <DOT> org> CommitDate: Fri Feb 6 14:35:32 2026 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b25354bd
dev-python/spur: new package, add 0.3.23 Signed-off-by: Alexander Puck Neuwirth <apn-pucky <AT> gentoo.org> dev-python/spur/metadata.xml | 12 ++++++++++++ dev-python/spur/spur-0.3.23.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/dev-python/spur/metadata.xml b/dev-python/spur/metadata.xml new file mode 100644 index 000000000..0b41fcebf --- /dev/null +++ b/dev-python/spur/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Alexander Puck Neuwirth</name> + </maintainer> + <upstream> + <remote-id type="github">mwilliamson/spur.py</remote-id> + <remote-id type="pypi">spur</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/spur/spur-0.3.23.ebuild b/dev-python/spur/spur-0.3.23.ebuild new file mode 100644 index 000000000..7cf8b07a4 --- /dev/null +++ b/dev-python/spur/spur-0.3.23.ebuild @@ -0,0 +1,36 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{11..14} ) +inherit distutils-r1 + +MY_P=spur.py-${PV} +DESCRIPTION="Run commands locally or over SSH using the same interface" +HOMEPAGE=" + https://github.com/mwilliamson/spur.py/ + https://pypi.org/project/spur/ +" + +SRC_URI=" + https://github.com/mwilliamson/spur.py/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" + +S="${WORKDIR}/${MY_P}" +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + <dev-python/paramiko-4[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +EPYTEST_IGNORE=( + # TODO: set up a local SSH server? + tests/ssh_tests.py +)
