diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-09-02 10:15:56 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-09-02 10:15:56 +0100 |
commit | 15bd3dfb22c7ba23dad0823e326dbcb8bb31b892 (patch) | |
tree | 6da8c6fe191bb632a2a6454968d2d1cc1338a5dc /dev-python/pyhcl | |
parent | ec82846d15c127f36a0f0620e30c9c0fbbdd514c (diff) |
gentoo auto-resync : 02:09:2023 - 10:15:56
Diffstat (limited to 'dev-python/pyhcl')
-rw-r--r-- | dev-python/pyhcl/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pyhcl/pyhcl-0.4.5.ebuild | 36 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/pyhcl/Manifest b/dev-python/pyhcl/Manifest index 2332f60b3989..9ef31ad6ee7c 100644 --- a/dev-python/pyhcl/Manifest +++ b/dev-python/pyhcl/Manifest @@ -1,3 +1,5 @@ DIST pyhcl-0.4.4.gh.tar.gz 58400 BLAKE2B 89ce8ba1eff577d9b4c7a86931e305f94ad7633b83c27f44352658ec2a12e48fd0cb05619e4afd97e4f2d78a9f4dba5c082a0d5703060b629880a3d193d9b4ee SHA512 7c5e2b611d1198a0e6c667b8fda868231bdd25da822d634a34c076fea655a7ea2999fc827de8484992efcf52b6b843871713a83e3be7787003c90f05e3e7ddf6 +DIST pyhcl-0.4.5.gh.tar.gz 58692 BLAKE2B ea08471e3bc0957b19660322e487314ffb795c4df024e54b0ed5979f60f406c7ba08f48825ef9c6a2984fff753a85db696a3877f3409d5773b1789d696164e1b SHA512 094c766e8787142c6369e530102f54c187c25cbc68d0feb89e71230adf3241cd17bd001cabb52a67e4230e1d4ca43eff975c523bd395305a38ca72ef3e604ab8 EBUILD pyhcl-0.4.4-r1.ebuild 700 BLAKE2B a71e4d26d5f689d771555f62eef5275d82aebaf98e4ca77a6d81cef9da76ff97285e9e3ab5224b209c5b58134ae1a5cc0924252fd237e7634d35d07d931cc9a4 SHA512 7983c99330da1eb72674dffb6cf3c4f6e23bdfa9324896307f030e01b15e7feca15ec2caa7b84d548c6a2fa3b1bf52d1964f1cd32da8eccdcb64774f03e95d40 +EBUILD pyhcl-0.4.5.ebuild 747 BLAKE2B 66b1dcf3c6f5524101731c07231e5ff5534791aba980c1c3b0280cd2373f0454ad1f0d6461e5934e6574281c32fe3260aac895ace27eac6231e0c9f771d12b3a SHA512 8b9bf507d1531020d793a962e6d77f89f45bc476cb041ae72a02b242198b800a99bba0418dc35877aaae4762ba80bcc4070451cee33006ffa0836a1787547c16 MISC metadata.xml 505 BLAKE2B 83658ee21302c885aae91af9c83ba041a4884ddabf718987c5b41fb7b1d8aaf0808e6413fc5bd0a829267c7498d83f2461329990d6d7e01c7b5cf5189067063f SHA512 d3120947df45964f58852355058c9ac23dd306466ef785b8115f6fc9eef91ee7ae6634fa1e1732f0f99e84961af942f3e319b51d7a380bf5835fe05c25ab6ee5 diff --git a/dev-python/pyhcl/pyhcl-0.4.5.ebuild b/dev-python/pyhcl/pyhcl-0.4.5.ebuild new file mode 100644 index 000000000000..5607b0797e55 --- /dev/null +++ b/dev-python/pyhcl/pyhcl-0.4.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="HCL configuration parser for python" +HOMEPAGE=" + https://github.com/virtuald/pyhcl/ + https://pypi.org/project/pyhcl/ +" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/virtuald/pyhcl.git" +else + SRC_URI=" + https://github.com/virtuald/pyhcl/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz + " + KEYWORDS="~amd64 ~arm64" +fi + +LICENSE="MPL-2.0" +SLOT="0" + +distutils_enable_tests pytest + +python_prepare_all() { + printf '__version__ = "%s"\n' "${PV}" > src/hcl/version.py || die + distutils-r1_python_prepare_all +} |