summaryrefslogtreecommitdiff
path: root/app-admin
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-12-04 16:58:27 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-12-04 16:58:27 +0000
commit4c552e09a1ece7792f2a20ccf4322348acbe3139 (patch)
treea0748a931217558c420eaac365cbf63f15eb25c0 /app-admin
parent4ead5818a5d230bcc875202c487761a9b786e945 (diff)
gentoo auto-resync : 04:12:2023 - 16:58:27
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/Manifest.gzbin32018 -> 32019 bytes
-rw-r--r--app-admin/clustershell/Manifest2
-rw-r--r--app-admin/clustershell/clustershell-1.9.1-r1.ebuild57
3 files changed, 0 insertions, 59 deletions
diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz
index d825f5628b8a..e6b82cc255fa 100644
--- a/app-admin/Manifest.gz
+++ b/app-admin/Manifest.gz
Binary files differ
diff --git a/app-admin/clustershell/Manifest b/app-admin/clustershell/Manifest
index fc371d97b5c4..b3de26880984 100644
--- a/app-admin/clustershell/Manifest
+++ b/app-admin/clustershell/Manifest
@@ -1,5 +1,3 @@
DIST ClusterShell-1.9.2.tar.gz 400880 BLAKE2B d10c78696268cabd001e1da1c28f1850d6b2fd9d20e73f9aeab378c855a0b937f32d706869e2d3fcdf109b2e98175abbec8f06fe0c6d2c4139d2da14f1c5b610 SHA512 852c9dcbe333965fa853e4360da7305c448dc037348ede18c0417d763e68d4bafad0a60480fce421f1815a86dd0a20e07d32fd8828aa185e7e1b88ed292014fc
-DIST clustershell-1.9.1.gh.tar.gz 383917 BLAKE2B 90d8c8390453a2c843bbb909a741d24d5f8e4b8eb03631bbe81b98973fce95d96dd3e68d0b951bc23d067057222c858e5041a3bafde200e0e2d14a0be995689f SHA512 32ee8b43d92e7ada8c81facc6a0609c39beee9189fa6fb9c2237387a58134f99fb2e6ab6e5de35c8e6fc8d3cef57f74f4c08b14968484546859071dff2594eb1
-EBUILD clustershell-1.9.1-r1.ebuild 1132 BLAKE2B 37edb8ab47a6a48da13346a8828cfa96ebb5424821ca5516bfd7cc1484d0a09be213f9e0e2680b228278c0e4bec0ad3fc7156654713f75e5d3319657ac5ee792 SHA512 a3a788750c5e1279d1a7bc11f4dfb8ebf9898eaba002860e5cabbef48731b3402061aa0ddd9d844769f3aa115664ca7dcc8646282c772ae76cba0e221ef26bb9
EBUILD clustershell-1.9.2.ebuild 1215 BLAKE2B eac784bc96107ead850bc863a01df4e2bc99b279941e0aba6bd94fe8c9a8be078f4054c52290ae87c84f708387a6423001a88176701b8efb5389de46c145c9bf SHA512 13c7bacfc19a44400d70f7a2bbf3c0d0cb4590d4cd38e473bc0b0953b33fb1b106ed4c5b65fed0fe09dd2cc79f7bd5eaecc43f02f53b69ec49894e5dfc788815
MISC metadata.xml 511 BLAKE2B f4ecaf3b98ac477bfd0ee609d3a9b24b792a8fad6a962c2ee3dbbed6b69985d1c84aabcf99a131939da5bf28934cc032e43689bf378870ce28f0cb210f96b7eb SHA512 07f2a0cbb6ae34e59cd211599b51eabd8cecfbc36aa36f8824bf68a55b66ca18c02b24832321e54f21e81fcb72ade825dc368eb106d8881d6cf68dce76da4146
diff --git a/app-admin/clustershell/clustershell-1.9.1-r1.ebuild b/app-admin/clustershell/clustershell-1.9.1-r1.ebuild
deleted file mode 100644
index 35edb6bc3fb3..000000000000
--- a/app-admin/clustershell/clustershell-1.9.1-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# 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_{9..11} )
-PYTHON_REQ_USE="xml(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Python framework for efficient cluster administration"
-HOMEPAGE="https://github.com/cea-hpc/clustershell/"
-SRC_URI="
- https://github.com/cea-hpc/clustershell/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-
-BDEPEND="
- test? (
- app-shells/pdsh
- virtual/openssh
- sys-devel/bc
- )
-"
-
-RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
-
-distutils_enable_tests unittest
-
-src_prepare() {
- default
-
- # remove test sets that require working ssh connection
- rm tests/{CLIClush,TaskDistant*}Test.py || die
-}
-
-python_test() {
- cd tests || die
- # Automatic discovery does not work
- "${EPYTHON}" -m unittest_or_fail -v *.py || die "Tests failed with ${EPYTHON}"
-}
-
-src_install() {
- distutils-r1_src_install
-
- mv "${ED}/usr/etc" "${ED}/etc" || die
-}
-
-pkg_postinst() {
- einfo "Some default system-wide config files have been installed into"
- einfo "/etc/${PN}"
-}