Updated several python-related packages

This commit is contained in:
2025-09-22 10:17:58 +02:00
parent f01295cf5c
commit 45662fe13d
26 changed files with 80 additions and 27 deletions
+1
View File
@@ -1,2 +1,3 @@
DIST pcbnewTransition-0.3.4.tar.gz 21636 BLAKE2B 5d60619b99652a9349d90f5055177bcf39154f5b29bfe2ab4e4d66b733256817e1a9cf930ffcf9622573a8bee1b9177fc694f86e698dccf0e1a5249d0c203bcb SHA512 cca02f15d59e051f2a04f561a1ecc9a3dcf2f755695feb38850eaf3c0fbb2a92a43049d4af51cb9fc7850059404c8da209121c82902e0775f23af7aeb4c178bc
EBUILD pcbnewtransition-0.3.4.ebuild 962 BLAKE2B 24028e89fe527b22afd8a281451a9ede45e6aa30a3dc7f83bd9eb5fbb3f696978b35fa74064f6bdb36b57dea0fbd937c441c3ccd0c0ffe7b1ac3fc72be8e28cd SHA512 1da2448e03b027f51477a63de35cc809dbfed0f7f677e069b5c1c1e2a713bf9863189c0a4772350a529b8d32dffac5df45d6a135b1adfaa18b2fb288894bb26b
EBUILD pcbnewtransition-9999.ebuild 963 BLAKE2B 42cf32aca156b77cd72dad3b2c9865051960864b67f7ddcb5ae19b8775ac2f0b12544821ac90f65d54453b90440fcea5091bedc26225d60cb3cf254d19f8c9e0 SHA512 65bcab45e99623ff6e3cb06d243ea628ba29de0ebdc1983e7908ba0d57341fd779a71f2cdf9359f82a0bc327123023cab99da0d3dcefa5a7a784210cc127aa6f
@@ -0,0 +1,50 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_PEP517=setuptools
PYPI_PN="pcbnewTransition"
MY_P="${PYPI_PN}-${PV}"
inherit distutils-r1
DESCRIPTION="Library that allows you to support both, KiCAD 5 and KiCAD 6 in your plugins"
HOMEPAGE="https://github.com/yaqwsx/KiKit"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/yaqwsx/${PYPI_PN}.git"
KEYWORDS=""
inherit git-r3
else
KEYWORDS="~amd64 ~x86"
inherit pypi
SRC_URI="$(pypi_sdist_url --no-normalize)"
fi
LICENSE="MIT"
SLOT="0"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND=""
DEPEND="${RDEPEND}
$(python_gen_cond_dep '
dev-python/versioneer[${PYTHON_USEDEP}]
')
"
S="${WORKDIR}/${MY_P}"
src_compile() {
true;
}
src_install() {
python_domodule ${PYPI_PN}
dodoc README.md
}