Added KiKit and dependencies

This commit is contained in:
layman
2020-10-02 12:15:08 +02:00
parent d5f321aedd
commit eb674de470
12 changed files with 311 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
EBUILD kikit-9999.ebuild 1011 BLAKE2B 8c0bedf60e3790b36eb0f7ccdc7a8668e377de18e64d89e388ca9254f0c8891b2137a0111f8938fbed7e8f57e0d8a360b10bcbe98b5187cc30f69cfdb7d1637f SHA512 41030b392b83ff8cc9b4011aba536d1732ae5d67a156b6861769d7e67903b81be67485fc6c0bb84eda421a53f511a59c12a166e2879a518727b4189fb309c777
+40
View File
@@ -0,0 +1,40 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
DISTUTILS_USE_SETUPTOOLS=rdepend
MY_PN="KiKit"
MY_P="${MY_PN}-${PV}"
inherit distutils-r1
DESCRIPTION="KiKit is a Python library and CLI tool to automate several tasks in a standard KiCAD workflow"
HOMEPAGE="https://github.com/yaqwsx/KiKit"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/yaqwsx/KiKit.git"
KEYWORDS=""
inherit git-r3
else
KEYWORDS="~amd64 ~x86"
SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
fi
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="dev-python/click[${PYTHON_USEDEP}]
dev-python/markdown2[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pybars3[${PYTHON_USEDEP}]
dev-python/solidpython[${PYTHON_USEDEP}]
sci-libs/Shapely[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}
dev-python/versioneer[${PYTHON_USEDEP}]
"