diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2023-01-23 00:46:53 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2023-01-23 00:46:53 +0000 |
| commit | b8e5d8e4e78f647c9d38e23f2b378b28d04cd44b (patch) | |
| tree | ad6d2bd29cf2c354bc33af9c0ea72c85780a93f5 /dev-python | |
| parent | 0ea3d490083ad8783ecd547e4e43a18c9d6e27e3 (diff) | |
| download | baldeagleos-repo-b8e5d8e4e78f647c9d38e23f2b378b28d04cd44b.tar.gz baldeagleos-repo-b8e5d8e4e78f647c9d38e23f2b378b28d04cd44b.tar.xz baldeagleos-repo-b8e5d8e4e78f647c9d38e23f2b378b28d04cd44b.zip | |
Adding metadata
Diffstat (limited to 'dev-python')
| -rw-r--r-- | dev-python/build/build-0.10.0.ebuild | 2 | ||||
| -rw-r--r-- | dev-python/clint/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/clint/clint-0.5.1-r4.ebuild | 37 | ||||
| -rw-r--r-- | dev-python/pockets/pockets-0.9.1-r3.ebuild | 36 | ||||
| -rw-r--r-- | dev-python/pyproject-hooks/pyproject-hooks-1.0.0.ebuild | 2 |
5 files changed, 76 insertions, 2 deletions
diff --git a/dev-python/build/build-0.10.0.ebuild b/dev-python/build/build-0.10.0.ebuild index 70834e61c8d6..136ccb03402b 100644 --- a/dev-python/build/build-0.10.0.ebuild +++ b/dev-python/build/build-0.10.0.ebuild @@ -19,7 +19,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" RDEPEND=" >=dev-python/packaging-19.0[${PYTHON_USEDEP}] diff --git a/dev-python/clint/Manifest b/dev-python/clint/Manifest index e1227d68777e..abac9651a495 100644 --- a/dev-python/clint/Manifest +++ b/dev-python/clint/Manifest @@ -1 +1,2 @@ +DIST clint-0.5.1.gh.tar.gz 81140 BLAKE2B 5b42e7d46321f0416d3ffb51edf66c53476d3e4a211e971f36cab54a412f6b0f0ec26486c2b95871956ab09e7e4adf68e8329dd7e9e3c7ed1adb3f8a0dd2a728 SHA512 3ad8bfc587acb1322c7d7c3e73756a07c98f3b4215a3d4dc409b5a2067bc70dce2dd98d19250b8122b319b7bcf5e2859251de2829780345de06f93b35447c4e8 DIST clint-0.5.1.tar.gz 81140 BLAKE2B 5b42e7d46321f0416d3ffb51edf66c53476d3e4a211e971f36cab54a412f6b0f0ec26486c2b95871956ab09e7e4adf68e8329dd7e9e3c7ed1adb3f8a0dd2a728 SHA512 3ad8bfc587acb1322c7d7c3e73756a07c98f3b4215a3d4dc409b5a2067bc70dce2dd98d19250b8122b319b7bcf5e2859251de2829780345de06f93b35447c4e8 diff --git a/dev-python/clint/clint-0.5.1-r4.ebuild b/dev-python/clint/clint-0.5.1-r4.ebuild new file mode 100644 index 000000000000..61cdc438defe --- /dev/null +++ b/dev-python/clint/clint-0.5.1-r4.ebuild @@ -0,0 +1,37 @@ +# 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_{7,8,9,10,11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python Command-line Application Tools" +HOMEPAGE="https://github.com/kennethreitz-archive/clint" +SRC_URI=" + https://github.com/kennethreitz-archive/${PN}/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="examples" + +# https://github.com/kennethreitz-archive/clint/pull/180 +PATCHES=( "${FILESDIR}/${P}-disable-args-dependency.patch" ) + +distutils_enable_sphinx docs --no-autodoc +distutils_enable_tests pytest + +python_install_all() { + if use examples; then + docompress -x "/usr/share/doc/${PF}/examples" + docinto examples + dodoc -r examples/. + fi + + distutils-r1_python_install_all +} diff --git a/dev-python/pockets/pockets-0.9.1-r3.ebuild b/dev-python/pockets/pockets-0.9.1-r3.ebuild new file mode 100644 index 000000000000..1f5a5722d215 --- /dev/null +++ b/dev-python/pockets/pockets-0.9.1-r3.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_{7,8,9,10,11} ) + +inherit distutils-r1 + +# No tags upstream, https://github.com/RobRuana/pockets/issues/5 +COMMIT="777724c8eabaf76f6d0c5e4837c982d110509b2e" + +DESCRIPTION="Collection of helpful Python tools" +HOMEPAGE="https://pockets.readthedocs.io/ https://pypi.org/project/pockets/" +SRC_URI=" + https://github.com/RobRuana/pockets/archive/${COMMIT}.tar.gz + -> ${P}.gh.tar.gz +" +S="${WORKDIR}/${PN}-${COMMIT}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( dev-python/pytz[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests pytest + +src_prepare() { + sed -e 's/description-file/description_file/g' -i setup.cfg ||die + default +} diff --git a/dev-python/pyproject-hooks/pyproject-hooks-1.0.0.ebuild b/dev-python/pyproject-hooks/pyproject-hooks-1.0.0.ebuild index 5ca1dd6ac221..e236ecf46484 100644 --- a/dev-python/pyproject-hooks/pyproject-hooks-1.0.0.ebuild +++ b/dev-python/pyproject-hooks/pyproject-hooks-1.0.0.ebuild @@ -21,7 +21,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" RDEPEND=" $(python_gen_cond_dep ' |
