Files
meta-overc/meta-cube/recipes-devtools/python/udocker_git.bb
Bruce Ashfield 1627b439fc tools: introduce udocker for docker-free searching of repos
To allow the searching of a registry without needing the docker
tools, we introduce 'udocker', which is a python script capabable
of doing searches.

This script does much more than search, but we only use it for
this capability.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2018-01-31 15:46:56 -05:00

35 lines
1.4 KiB
BlitzBasic

LICENSE = "Apache-2"
HOMEPAGE = "https://github.com/indigo-dc/udocker"
SUMMARY = "A basic user tool to execute simple docker containers in batch or interactive systems without root privileges"
DESCRIPTION = "A basic user tool to execute simple docker containers in user space \
without requiring root privileges. Enables download and execution of \
docker containers by non-privileged users in Linux systems where \
docker is not available. It can be used to pull and execute docker \
containers in Linux batch systems and interactive clusters that are \
managed by other entities such as grid infrastructures or externally \
managed batch or interactive systems."
SECTION = "containers"
LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
SRC_URI = "git://github.com/indigo-dc/udocker.git \
file://0001-commands-prevent-autoinstall-by-default.patch"
SRCREV = "94fcec123257d47c4629dadd04add4247cd74f8c"
S = "${WORKDIR}/git"
DEPENDS = ""
RDEPENDS_${PN} = "python-subprocess \
python-modules \
ca-certificates \
curl \
"
# custom compile rule to avoid test target which may fail when x-compiling
do_compile () {
}
do_install () {
install -d ${D}${bindir}
install -m 0755 ${S}/udocker.py ${D}/${bindir}/udocker
}