summaryrefslogtreecommitdiff
path: root/dev-python/XenAPI
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/XenAPI')
-rw-r--r--dev-python/XenAPI/Manifest1
-rw-r--r--dev-python/XenAPI/XenAPI-22.14.0.ebuild146
2 files changed, 0 insertions, 147 deletions
diff --git a/dev-python/XenAPI/Manifest b/dev-python/XenAPI/Manifest
index 7f5dd3349572..430c889925c4 100644
--- a/dev-python/XenAPI/Manifest
+++ b/dev-python/XenAPI/Manifest
@@ -1,2 +1 @@
DIST XenAPI-2.14.tar.gz 5110 BLAKE2B 0391ccfffe8c2a264360eef4057a666e92bcbc8b31e7848f15704fff4d554db9758b1aa0b5210d1bfc41c4df261096b04961a4ff6722a8ea25305971b70f8562 SHA512 a56245b617fa049bcc62ee78e85167e322b632e53d2a6bc3e042e1cb0541ea0004aee4b957f9190c30685cef935f236d980a224322ac593896abd7a31e36abd2
-DIST XenAPI-22.14.0.tar.gz 3124877 BLAKE2B 2b073e0f713b45b51af1e221aa278841c4a5515c72859c7c95601edeb32ec2b8415c11dec86f79a2ab88265d4303675cf9f0432091c884346a25630a503b5244 SHA512 cc048ede21748e6e60b9e432bb68e0754590e3846277c8bf1fa9000916897353db1b5b39bd7120e7d6c894fc859c8a34129824399cfca0a07c5edf937a6e18ec
diff --git a/dev-python/XenAPI/XenAPI-22.14.0.ebuild b/dev-python/XenAPI/XenAPI-22.14.0.ebuild
deleted file mode 100644
index 8ea490396b14..000000000000
--- a/dev-python/XenAPI/XenAPI-22.14.0.ebuild
+++ /dev/null
@@ -1,146 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_OPTIONAL=1
-PYTHON_COMPAT=( python3_{7,8,9,10} )
-
-inherit bash-completion-r1 distutils-r1 dune pam systemd
-
-DESCRIPTION="Xen API SDK, for communication with Citrix XenServer and Xen Cloud Platform"
-HOMEPAGE="
- https://xenproject.org/developers/teams/xen-api/
- https://github.com/xapi-project/xen-api
- https://pypi.org/project/XenAPI/
-"
-SRC_URI="https://github.com/xapi-project/xen-api/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/xen-api-${PV}"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="ocamlopt pam python test"
-
-RDEPEND="
- python? ( ${PYTHON_DEPS} )
-
- app-emulation/xen
- dev-libs/openssl
- dev-libs/xxhash
- dev-ml/alcotest:=
- dev-ml/angstrom:=
- dev-ml/astring:=
- dev-ml/async_inotify:=
- dev-ml/async_unix:=
- dev-ml/async:=
- dev-ml/base-threads:=
- dev-ml/base-unix:=
- dev-ml/cdrom:=
- dev-ml/cmdliner:=
- dev-ml/cohttp:=[async,lwt,lwt-unix]
- dev-ml/core:=
- dev-ml/crc:=
- dev-ml/cstruct:=[ppx,unix]
- dev-ml/domain-name:=
- dev-ml/dune-build-info:=
- dev-ml/ezjsonm:=
- dev-ml/ezxenstore:=
- dev-ml/fd-send-recv:=
- dev-ml/fmt:=
- dev-ml/fpath:=
- dev-ml/inotify:=
- dev-ml/io-page:=[unix(-)]
- dev-ml/ipaddr:=
- dev-ml/logs:=
- dev-ml/lwt:=
- dev-ml/lwt_log:=
- dev-ml/lwt_ssl:=
- dev-ml/mirage-block-unix:=
- dev-ml/mirage-crypto:=[pk]
- dev-ml/mtime:=
- dev-ml/mustache:=
- dev-ml/nbd:=[unix]
- dev-ml/netlink:=
- dev-ml/ocaml-base64:=
- dev-ml/ocaml-ctypes:=
- dev-ml/ocaml-migrate-parsetree:=
- dev-ml/ocaml-sha:=
- dev-ml/pci:=
- dev-ml/polly:=
- dev-ml/ppx_sexp_conv:=
- dev-ml/qmp:=
- dev-ml/re:=
- dev-ml/result:=
- dev-ml/rpc:=[async]
- dev-ml/rresult:=
- dev-ml/sexplib:=
- dev-ml/sexplib0:=
- dev-ml/shared-block-ring:=
- dev-ml/systemd:=
- dev-ml/tar:=[unix]
- dev-ml/uri:=
- dev-ml/uuidm:=
- dev-ml/uutf:=
- dev-ml/vhd:=[lwt]
- dev-ml/x509:=
- dev-ml/xapi-backtrace:=
- dev-ml/xapi-stdext:=
- dev-ml/xapi-test-utils:=
- dev-ml/xcp-inventory:=
- dev-ml/xcp-rrd:=
- dev-ml/xenctrl:=
- dev-ml/xen-gnt:=[unix]
- dev-ml/xenstore:=
- dev-ml/xenstore-clients:=
- dev-ml/xmlm:=
- dev-ml/yojson:=
- sys-libs/pam
-"
-DEPEND="
- ${RDEPEND}
- test? (
- dev-ml/mirage-crypto[rng]
- dev-ml/ounit2
- dev-ml/qcheck
- )
-"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-src_compile() {
- dune_src_compile
- if use python; then
- pushd scripts/examples/python || die
- python_foreach_impl distutil-r1_python_compile
- popd || die
- fi
-}
-
-src_install() {
- for p in *.opam ; do
- dune_src_install "${p/.opam/}"
- done
-
- pushd scripts || die
- emake install
- popd || die
-
- if use python; then
- pushd scripts/examples/python || die
- python_foreach_impl distutils-r1_python_install
- popd || die
- fi
-
-# newbashcomp scripts/xe-switch-network-backend-bash-completion xe-switch-network-backend
-#
-# insinto /etc/logrotate
-# newins scripts/audit-logrotate audit.conf
-#
-# for s in scripts/*.service ; do
-# systemd_dounit "${s}"
-# done
-#
-# use pam && newpamd scripts/pam.d-xapi xapi
-}