-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/jsonargparse: Init version
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST jsonargparse-4.34.1.tar.gz 243340 BLAKE2B 9848248fa76c74c3fea49fb2106fa569b1067c775bcfef55e0678bbff042f5e1b5904da63d627cca8198dd29a36a1b49ed35ae89ca53a2cde3b0a8d02f0f56f2 SHA512 52b17aeca5ba60663124b0c93e017e660455c0d8c6e612c65a2e9855b789e55a6894ff7b50792520a21675c72bc46650f73bd12223cff946098f9c0957618719 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{7..12} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Implement minimal boilerplate CLIs derived from type hints and parse from command line, config files and environment variables." | ||
HOMEPAGE="https://github.com/omni-us/jsonargparse" | ||
SRC_URI="https://github.com/omni-us/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" | ||
|
||
REQUIRED_USE=${PYTHON_REQUIRED_USE} | ||
|
||
RDEPEND=" | ||
${PYTHON_DEPS} | ||
>dev-python/pyyaml-3.13 | ||
" | ||
|
||
BDEPEND=${RDEPEND} |