summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meta-phosphor/classes/obmc-phosphor-py-daemon.bbclass14
-rw-r--r--meta-phosphor/classes/obmc-phosphor-pydbus-service.bbclass6
-rw-r--r--meta-phosphor/classes/skeleton-python.bbclass14
-rw-r--r--meta-phosphor/classes/skeleton-sdbus.bbclass11
4 files changed, 0 insertions, 45 deletions
diff --git a/meta-phosphor/classes/obmc-phosphor-py-daemon.bbclass b/meta-phosphor/classes/obmc-phosphor-py-daemon.bbclass
deleted file mode 100644
index 09a5582aae..0000000000
--- a/meta-phosphor/classes/obmc-phosphor-py-daemon.bbclass
+++ /dev/null
@@ -1,14 +0,0 @@
-# Common code for dbus applications using python.
-
-inherit allarch
-inherit obmc-phosphor-systemd
-
-RDEPENDS:${PN} += "python3-dbus python3-pygobject"
-INSTALL_NAME ?= "${PN}"
-SCRIPT_NAME ?= "${INSTALL_NAME}.py"
-
-do_install:append() {
- # install the script
- install -d ${D}${sbindir}
- install -m 0755 ${S}/${SCRIPT_NAME} ${D}${sbindir}/${INSTALL_NAME}
-}
diff --git a/meta-phosphor/classes/obmc-phosphor-pydbus-service.bbclass b/meta-phosphor/classes/obmc-phosphor-pydbus-service.bbclass
deleted file mode 100644
index dc6f9e5ed8..0000000000
--- a/meta-phosphor/classes/obmc-phosphor-pydbus-service.bbclass
+++ /dev/null
@@ -1,6 +0,0 @@
-# Common code for applications providing a D-Bus service using python-dbus bindings.
-
-# Class users should define DBUS_SERVICES prior to including.
-
-inherit obmc-phosphor-dbus-service
-inherit obmc-phosphor-py-daemon
diff --git a/meta-phosphor/classes/skeleton-python.bbclass b/meta-phosphor/classes/skeleton-python.bbclass
deleted file mode 100644
index 935aaedc39..0000000000
--- a/meta-phosphor/classes/skeleton-python.bbclass
+++ /dev/null
@@ -1,14 +0,0 @@
-inherit setuptools3
-
-do_compile:class-native() {
- :
-}
-
-do_install:class-native() {
- :
-}
-
-DEPENDS:append:class-target = " python"
-
-inherit skeleton
-inherit allarch
diff --git a/meta-phosphor/classes/skeleton-sdbus.bbclass b/meta-phosphor/classes/skeleton-sdbus.bbclass
deleted file mode 100644
index c126b3153c..0000000000
--- a/meta-phosphor/classes/skeleton-sdbus.bbclass
+++ /dev/null
@@ -1,11 +0,0 @@
-inherit skeleton
-
-DEPENDS:append:class-target = " systemd"
-
-do_compile:class-native() {
- :
-}
-
-do_install:append:class-target() {
- oe_runmake install DESTDIR=${D}
-}