diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-04-17 07:12:33 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-04-17 07:12:33 +0000 |
| commit | ca125481edd74de829bb375eebaa362b99ad85ca (patch) | |
| tree | 98d1126e02f0de719c4eb7e7ed0f3c5e4ec881fc /app-admin | |
| parent | afae01ffd370a829cb4c628a4dd7e8f87e35b2e3 (diff) | |
| download | baldeagleos-repo-ca125481edd74de829bb375eebaa362b99ad85ca.tar.gz baldeagleos-repo-ca125481edd74de829bb375eebaa362b99ad85ca.tar.xz baldeagleos-repo-ca125481edd74de829bb375eebaa362b99ad85ca.zip | |
Adding metadata
Diffstat (limited to 'app-admin')
| -rw-r--r-- | app-admin/awscli/Manifest | 1 | ||||
| -rw-r--r-- | app-admin/awscli/awscli-1.44.80.ebuild | 92 | ||||
| -rw-r--r-- | app-admin/kio-admin/Manifest | 1 | ||||
| -rw-r--r-- | app-admin/kio-admin/kio-admin-26.04.0.ebuild | 25 |
4 files changed, 119 insertions, 0 deletions
diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index 61a2c5f822c7..2df3b4b40c49 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -10,3 +10,4 @@ DIST aws-cli-1.44.76.gh.tar.gz 3110917 BLAKE2B bb71b5efe74d9065ecaff4e3a7866157f DIST aws-cli-1.44.77.gh.tar.gz 3112383 BLAKE2B 386c13c0556788ab1de83e7442006b98d3c77555ebb34b1b62951210a4a56ea3f7fefd4487e3f066d7240369b31da1aa401a9dda0058ed0a32cf3ab71075f9b7 SHA512 8f176cad308fa0228421aa1d15e365a35897476b3f3754756c402cbcd59366cbcf553a22361edcc53141173f0dd6ba5fc22796fb7d6306a3f00a5cd9939f3e01 DIST aws-cli-1.44.78.gh.tar.gz 3113712 BLAKE2B 058bb5fd747eec76a6713f7171f6dd280f61551768d00cc31a4271b4bacd922af887592ecd9cda776a2266290802c36dc3e78d3c057937f7646e059959f77408 SHA512 9c7476fbe8b904de3b91bc198444c41c295ea7a56449b4896ab3c7aac44bd151d0eacefaf8341944ddda7a8769950404b3ebb2b107a889504dd81d6cf0e65377 DIST aws-cli-1.44.79.gh.tar.gz 3114561 BLAKE2B d4f46ad2b59a3925ca2c683f3f8493acca86d843aa583bf154594a024b50005c39309fed0bbe19e374e1cc5e4202852ecbdad870a5a35bb42c79de0d573c9831 SHA512 95a1cbe82a1b60ee59d945897894196903a6cdcda0ac5b5b84ff290ecc775a6236d59255a6b165fa57e510df2c337e84132c35988119030b29ea1b593eb9a52f +DIST aws-cli-1.44.80.gh.tar.gz 3115206 BLAKE2B cdf1f6249af7cd651cf5c3d88f8e269297aaff66b16103d8b62074b631e9e1e7b1a78d2fc25a31acdeae64ee8e8421adca7b554960b1ae4267ed954a03146064 SHA512 06fe1304169cbd9daac526cf5fd4a1fb994f6444b4f7c5b445ec99cacca6d677974c4a852b87174e241e88ef3f02a6dfae9fd9e808c29602e8049d5522522f7c diff --git a/app-admin/awscli/awscli-1.44.80.ebuild b/app-admin/awscli/awscli-1.44.80.ebuild new file mode 100644 index 000000000000..4a5f452a79a8 --- /dev/null +++ b/app-admin/awscli/awscli-1.44.80.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 shell-completion + +MY_P=aws-cli-${PV} +DESCRIPTION="Universal Command Line Environment for AWS" +HOMEPAGE=" + https://github.com/aws/aws-cli/ + https://pypi.org/project/awscli/ +" +SRC_URI=" + https://github.com/aws/aws-cli/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +# botocore is x.(y-2).(z+10), sigh +BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) - 2)).$(( $(ver_cut 3) + 10 ))" +RDEPEND=" + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] + dev-python/colorama[${PYTHON_USEDEP}] + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/rsa[${PYTHON_USEDEP}] + >=dev-python/s3transfer-0.16.0[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + !app-admin/awscli-bin +" +BDEPEND=" + test? ( + dev-python/packaging[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=( pytest-forked ) +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +src_prepare() { + # do not rely on bundled deps in botocore (sic!) + find -name '*.py' -exec sed -i \ + -e 's:from botocore[.]vendored import:import:' \ + -e 's:from botocore[.]vendored[.]:from :' \ + {} + || die + # strip overzealous upper bounds on requirements + sed -i -e 's:,<[=0-9.]*::' -e 's:==:>=:' setup.py || die + distutils-r1_src_prepare +} + +python_test() { + local serial_tests=( + tests/functional/ecs/test_execute_command.py::TestExecuteCommand::test_execute_command_success + tests/functional/ssm/test_start_session.py::TestSessionManager::test_start_session_{fails,success} + tests/functional/ssm/test_start_session.py::TestSessionManager::test_start_session_with_new_version_plugin_success + tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking + tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking_windows + tests/unit/customizations/codeartifact/test_adapter_login.py::TestNuGetLogin::test_login_nuget_sources_listed_with_backtracking + tests/unit/customizations/ecs/test_executecommand_startsession.py::TestExecuteCommand::test_execute_command_success + tests/unit/customizations/test_sessionmanager.py + tests/unit/test_compat.py::TestIgnoreUserSignals + tests/unit/test_help.py + tests/unit/test_utils.py::TestIgnoreCtrlC::test_ctrl_c_is_ignored + ) + EPYTEST_XDIST= epytest "${serial_tests[@]}" + + local EPYTEST_DESELECT=( + "${serial_tests[@]}" + + # flaky (some ordering?) + tests/functional/s3/test_cp_command.py::TestCPCommand::test_multipart_upload_with_checksum_algorithm_crc32 + ) + # integration tests require AWS credentials and Internet access + epytest tests/{functional,unit} +} + +python_install_all() { + newbashcomp bin/aws_bash_completer aws + newzshcomp bin/aws_zsh_completer.sh _aws + + distutils-r1_python_install_all + + rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || die +} diff --git a/app-admin/kio-admin/Manifest b/app-admin/kio-admin/Manifest index 13e0f58d6a64..5388b1830d81 100644 --- a/app-admin/kio-admin/Manifest +++ b/app-admin/kio-admin/Manifest @@ -1 +1,2 @@ DIST kio-admin-25.12.3.tar.xz 39236 BLAKE2B 7f56d3de2de1fd88192eac4d3d2dd5472a9f6d6df310a4739e2ad69c2f113f8fbf00efd41f313f5101b7c11dde9d84899bbc09e192f0f90ff9ac17816893cc1e SHA512 edf8aacfff1560dcbcbcc46c11a7d93d8a024f6c4a6b73616973157d61f8ae5f74d2257da5cd0fd88409d554d9a999bca6f2df2d0d13f0764886093227d0dd7d +DIST kio-admin-26.04.0.tar.xz 39652 BLAKE2B e67ba565388154bf6a18756699f3f4edd79b8a0aaf4cf06953ab0768a9f99a430bb7a290f723d1b5f0469a13e3eefdb608d0d8a006be2e9500133dc297ea4552 SHA512 b1b680a436f38c78574eaff8a15598851483ed699f9a01af64f58a84f1da18504d3f4ceaca167fdbebff8fa9b57427a964bbc4dde3d64a10add6095c69e63a1c diff --git a/app-admin/kio-admin/kio-admin-26.04.0.ebuild b/app-admin/kio-admin/kio-admin-26.04.0.ebuild new file mode 100644 index 000000000000..e66b964844d3 --- /dev/null +++ b/app-admin/kio-admin/kio-admin-26.04.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 2024-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_CATEGORY="system" +KFMIN=6.22.0 +QTMIN=6.10.1 +inherit ecm gear.kde.org + +DESCRIPTION="Manage files as administrator using the admin:// KIO protocol" +HOMEPAGE="https://invent.kde.org/system/kio-admin" + +LICENSE="BSD CC0-1.0 FSFAP GPL-2 GPL-3" +SLOT="6" +KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" + +DEPEND=" + >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets] + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 + >=kde-frameworks/kio-${KFMIN}:6 + >=sys-auth/polkit-qt-0.175[qt6(+)] +" +RDEPEND="${DEPEND}" |
