| Summary: | =net-emulation/vboxwrapper-0.9.1 - Wrapper to control VirtualBox VMs on Linux/Unix platforms | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Aaron Bauman (RETIRED) <bman> |
| Component: | New packages | Assignee: | Default Assignee for New Packages <maintainer-wanted> |
| Status: | RESOLVED OBSOLETE | ||
| Severity: | enhancement | Keywords: | EBUILD |
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| URL: | https://github.com/GNS3/vboxwrapper | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
| Attachments: | vboxwrapper-0.9.1 ebuild | ||
>python_prepare_all() { > # avoid file collisions caused by required tests > sed -e "s:find_packages():find_packages(exclude=['tests','tests.*']):" -i >setup.py || die > distutils-r1_python_prepare_all >} it looks weird at first glance, but probably also works. I'd simply do src_prepare() { # avoid file collisions caused by required tests sed -e "s:find_packages():find_packages(exclude=['tests','tests.*']):" -i setup.py || die distutils-r1_src_prepare } >python_install_all() { > distutils-r1_python_install_all > >} probably you don't need this, which is already handled the default way. > >python_install_all() {
> > distutils-r1_python_install_all
> >
> >}
> probably you don't need this, which is already handled the default way.
I mean, code snip from distutils-r1.eclass
distutils-r1_src_install() {
...
if declare -f python_install_all >/dev/null; then
_distutils-r1_run_common_phase python_install_all
else
_distutils-r1_run_common_phase distutils-r1_python_install_all
fi
}
Package is no longer required for GNS3 v1.2. Please close. |
Created attachment 387936 [details] vboxwrapper-0.9.1 ebuild net-misc/vboxwrapper is an optional package to support net-misc/gns3-server-1.1. From www.gns3.net website: "To control VirtualBox on Linux/Unix. This is meant as a temporary solution while waiting for VirtualBox API and XPCOM to be ported to Python3 (main problem being the XPCOM module)."