summaryrefslogtreecommitdiffstats
path: root/meta-phosphor/common/recipes-phosphor/users/obmc-phosphor-user.bb
blob: b52684235502b0a30c15482fcfa759930e0bf283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
SUMMARY = "User DBUS object"
DESCRIPTION = "User DBUS object"
HOMEPAGE = "http://github.com/openbmc/phosphor-networkd"
PR = "r1"

inherit allarch
inherit obmc-phosphor-license
inherit obmc-phosphor-dbus-service

PROVIDES += "virtual/obmc-user-mgmt"
RPROVIDES_${PN} += "virtual-obmc-user-mgmt"

RDEPENDS_${PN} += " \
        python-dbus \
        python-pygobject \
        python-subprocess \
        python-pexpect"

SRC_URI += "git://github.com/openbmc/phosphor-networkd"

SRCREV = "65e5abefd6b73c8f383a335291c32111ae787be0"

S = "${WORKDIR}/git"
INSTALL_NAME = "userman.py"

DBUS_SERVICE_${PN} += "org.openbmc.UserManager.service"

# Since base_do_compile finds a makefile (from networkd) it tries to
# compile.  Short-circuit that because we just need to copy a python
# file in this package.
do_compile() {
    :
}

do_install_append() {
echo "***installing $INSTALL_NAME"
        install -d ${D}/${sbindir}
        install ${S}/${INSTALL_NAME} ${D}/${sbindir}/obmc-phosphor-userd
}

OpenPOWER on IntegriCloud