cockpit: Add recipe version 218#218
Conversation
| SUMMARY = "Admin interface for Linux machines" | ||
| DESCRIPTION = "Cockpit makes it easy to administer your GNU/Linux servers via a web browser" | ||
|
|
||
| LICENSE = "LGPLv2+" |
There was a problem hiding this comment.
Good point. License is "LGPLv2.1". I will correct it.
| inherit gettext pkgconfig autotools systemd distro_features_check | ||
|
|
||
| DEPENDS += "glib-2.0-native intltool-native gnutls" | ||
| DEPENDS += "systemd virtual/gettext json-glib krb5 libpam" |
There was a problem hiding this comment.
its already inheriting systemd class so DEPENDS on systemd should not be needed.
| --with-cockpit-ws-instance-user=${COCKPIT_WS_USER_GROUP} \ | ||
| --with-cockpit-ws-instance-group=${COCKPIT_WS_USER_GROUP} \ | ||
| --disable-doc \ | ||
| --with-systemdunitdir=${systemd_system_unitdir} \ |
There was a problem hiding this comment.
this should pehaps be checking systemd to be available in DISTRO_FEATURES
There was a problem hiding this comment.
Maybe I don't really understand the question.
Cockpit is closely connected to systemd and the DBus API. What would be the advantage of using ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} ?
There was a problem hiding this comment.
systemd is not the only init system we support in OE, so if this package absolutely depends on systemd then perhaps it should ask for REQUIRED_DISTRO_FEATURE = "systemd"
see below error when not using systemd e.g.
14:51:00 Building world for qemuarm ...
14:51:27 Parsing recipes...WARNING: /mnt/jenkins/workspace/Yocto-world-arm/sources/meta-openembedded/meta-webserver/recipes-webadmin/cockpit/cockpit_217.bb: distro_features_check.bbclass is deprecated, please use features_check.bbclass instead
14:52:18 done.
14:52:19 WARNING: No bb files matched BBFILE_PATTERN_odroid-extras '^/mnt/jenkins/workspace/Yocto-world-arm/sources/meta-odroid/meta-odroid-extras/'
14:52:19 WARNING: No bb files matched BBFILE_PATTERN_meta-altera '^/mnt/jenkins/workspace/Yocto-world-arm/sources/meta-altera/'
14:52:23 ERROR: Nothing PROVIDES 'systemd' (but /mnt/jenkins/workspace/Yocto-world-arm/sources/meta-openembedded/meta-webserver/recipes-webadmin/cockpit/cockpit_217.bb DEPENDS on or otherwise requires it)
14:52:23 systemd was skipped: missing required distro feature 'systemd' (not in DISTRO_FEATURES)
14:52:27 ERROR: Nothing RPROVIDES 'cockpit' (but /mnt/jenkins/workspace/Yocto-world-arm/sources/meta-openembedded/meta-webserver/recipes-webadmin/cockpit/cockpit_217.bb RDEPENDS on or otherwise requires it)
14:52:27 No eligible RPROVIDERs exist for 'cockpit'
14:52:27 ERROR: Nothing RPROVIDES 'cockpit-dev' (but /mnt/jenkins/workspace/Yocto-world-arm/sources/meta-openembedded/meta-webserver/recipes-webadmin/cockpit/cockpit_217.bb RDEPENDS on or otherwise requires it)
14:52:27 No eligible RPROVIDERs exist for 'cockpit-dev'
14:52:27 ERROR: Nothing RPROVIDES 'cockpit-bridge' (but /mnt/jenkins/workspace/Yocto-world-arm/sources/meta-openembedded/meta-webserver/recipes-webadmin/cockpit/cockpit_217.bb RDEPENDS on or otherwise requires it)
14:52:27 No eligible RPROVIDERs exist for 'cockpit-bridge'
There was a problem hiding this comment.
Now I get it. I have now extended the "REQUIRED_DISTRO_FEATURES. Thank you.
| pkgdatadir=${datadir}/cockpit | ||
|
|
||
| # avoid host contamination | ||
| find ${D}${datadir}/cockpit -name manifest.json -exec chown root:root {} \; |
There was a problem hiding this comment.
root seems to be iffy perhaps look into install target of the package and see if they are not using cp -a or some such
There was a problem hiding this comment.
Unfortunately I have not yet found the cause of this.
There was a problem hiding this comment.
In the install target, the files are copied using tar which leads to host contamination.
I have a patch for that I could add to a subsequent PR.
There was a problem hiding this comment.
That's great!
If desired you can make a pull request on https://github.com/hoinmic/meta-openembedded (branch feat/cockpit ). Then we could bring everything upstream at once in this pull request.
There was a problem hiding this comment.
@eroullit its fine, please prepare a patch on top of master-next which already has this patch. and send a new pull.
d6c258b to
0f175d3
Compare
|
I have updated to the latest Cockpit version released yesterday. |
| SRC_URI[md5sum] = "e69b0b8a75a5d55ddfd9817d857c71af" | ||
| SRC_URI[sha256sum] = "5f242cefccd7f1120c9e0310581aa51dbe941d9c4a6d8375c45057dcbb6f2fbb" | ||
|
|
||
| inherit gettext pkgconfig autotools systemd distro_features_check |
There was a problem hiding this comment.
distro_features_check is deprecated please use features_check
There was a problem hiding this comment.
build fails on musl. I think it needs to depend on see http://errors.yoctoproject.org/Errors/Details/410052/
There was a problem hiding this comment.
- My yocto version doesn't know
features_checkyet, so I didn't make any changes there. - Added fts in a fix
- I wanted to do a squashed force-push with the corrections. But now I added a second commit, since the first commit was picked on the master-next branch. If this is not ok, let me know.
|
I added this patch on top diff --git a/meta-webserver/recipes-webadmin/cockpit/cockpit_218.bb b/meta-webserver/recipes-webadmin/cockpit/cockpit_218.bb
index 733a5ea921..8374d57257 100644
--- a/meta-webserver/recipes-webadmin/cockpit/cockpit_218.bb
+++ b/meta-webserver/recipes-webadmin/cockpit/cockpit_218.bb
@@ -13,10 +13,12 @@ SRC_URI += " \
SRC_URI[md5sum] = "e69b0b8a75a5d55ddfd9817d857c71af"
SRC_URI[sha256sum] = "5f242cefccd7f1120c9e0310581aa51dbe941d9c4a6d8375c45057dcbb6f2fbb"
-inherit gettext pkgconfig autotools systemd distro_features_check
+inherit gettext pkgconfig autotools systemd features_check
-DEPENDS += "glib-2.0-native intltool-native gnutls"
-DEPENDS += "virtual/gettext json-glib krb5 libpam"
+DEPENDS += "glib-2.0-native intltool-native gnutls virtual/gettext json-glib krb5 libpam systemd"
+
+DEPENDS_append_libc-musl = " fts libexecinfo"
+LDFLAGS_append_libc-musl = " -lfts"
RDEPENDS_${PN} += "glib-networking"to see if it can compile with It ends up with more errors like |
|
@kraj Sorry for this failure. Where can I find the setup of the CI, so that I can set this up locally identical to track down the errors? |
http://jenkins.nas-admin.org/view/OE/ musl task is http://jenkins.nas-admin.org/view/OE/job/oe_world_qemux86/ if you want to take a look at jenkins script |
|
@kraj thx |
|
@Kray replaced second commit. New fix: No musl support. Runs only with glibc. |
| # only works on glibc systems | ||
| if d.getVar('TCLIBC') != "glibc": | ||
| raise bb.parse.SkipRecipe("incompatible with %s C library" % d.getVar('TCLIBC')) | ||
| } |
There was a problem hiding this comment.
Just add
COMPATIBLE_HOST_libc-musl = "null"
There was a problem hiding this comment.
@kraj Great!
Now I have combined all inputs to one commit. Hope everything fits :-)
Cockpit is a server manager that makes it easy to administer your GNU/Linux servers via a web browser. Signed-off-by: Michael Haener <michael.haener@siemens.com>
|
merged with 410e938 |
5.2.0 (2020-11-05) ================== - Add documentation section ``Persistency and Equality`` (`openembedded#218 <https://github.com/zopefoundation/zope.interface/issues/218>`_). - Create arm64 wheels. - Add support for Python 3.9. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
5.2.0 (2020-11-05) ================== - Add documentation section ``Persistency and Equality`` (`openembedded#218 <https://github.com/zopefoundation/zope.interface/issues/218>`_). - Create arm64 wheels. - Add support for Python 3.9. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
5.2.0 (2020-11-05) ================== - Add documentation section ``Persistency and Equality`` (`openembedded#218 <https://github.com/zopefoundation/zope.interface/issues/218>`_). - Create arm64 wheels. - Add support for Python 3.9. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
5.2.0 (2020-11-05) ================== - Add documentation section ``Persistency and Equality`` (`openembedded#218 <https://github.com/zopefoundation/zope.interface/issues/218>`_). - Create arm64 wheels. - Add support for Python 3.9. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
5.2.0 (2020-11-05) ================== - Add documentation section ``Persistency and Equality`` (`#218 <https://github.com/zopefoundation/zope.interface/issues/218>`_). - Create arm64 wheels. - Add support for Python 3.9. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Changelog: =========== Feature -------- Update for final cpython release (openembedded#263) (460a072) Speed up unpacking arrays (openembedded#257) (5c8bfe5) Speed up constructing Variant objects (openembedded#256) (0d7a665) Speed up unmarshalling message body (openembedded#255) (5aed075) Speed up unmarshalling Variants (openembedded#254) (dd74a84) Speed up readers in the unmarshall path (openembedded#253) (f9b61b8) Speed up first connection when using asyncio (openembedded#251) (0b6ba93) Speed up unmarshaller (openembedded#250) (e4cae13) Add cython typing for ServiceInterface.name (openembedded#248) (98c7e75) Speed up connect and disconnect (openembedded#247) (8f39ba3) Speed up unmarshalling by skipping unused unix_fds header (openembedded#246) (5f5a150) Reduce overhead to reset between messages (openembedded#245) (da30b04) Don't import backends by default (openembedded#243) (091d421) Breaking don't import backends by default (openembedded#243) (091d421) Small speed up to the unmarshaller (openembedded#238) (b8d0e9b) Build cpython 3.12 wheels (openembedded#234) (b38aa58) Improve performance of processing incoming messages (openembedded#228) (ce61aea) Reduce overhead to dispatch method handlers (openembedded#227) (b222552) Speed up to processing bluez passive data (openembedded#221) (8e7432d) Remove async_timeout dependency (openembedded#218) (7826897) Speed up Message creation and callbacks (openembedded#217) (04d6451) Optimize passive bluez message unmarshaller (openembedded#216) (e0e87ec) Initial cpython 3.12 support (openembedded#207) (c755193) Improve performance of reading from the socket during unmarshall (openembedded#200) (e5d355f) Fix ------------- Handling of None messages from notify callback (openembedded#236) (14f52f2) Clean up address parsing and tests (openembedded#244) (370791d) Handle multiple flag bits when unmarshalling (openembedded#241) (6f6f5f8) Rebuild wheels with cython 3.0.2 (openembedded#235) (e8901a8) Avoid cythonizing SendReply (openembedded#232) (d12266d) Subpath bad matching (openembedded#202) (5d6f90b) Messages could be sent out of order if they had to queue (openembedded#225) (4051cf2) Avoid checking if a message expects a reply twice (openembedded#223) (823e85f) Revert changes to _expects_reply from speed up to processing bluez passive data (openembedded#222) (dfa9053) Spelling of dbus_fast.auth.AuthAnnonymous to dbus_fast.auth.AuthAnonymous (openembedded#220) (6c2412f) More cython3 optional fixes (openembedded#219) (5b6cbc5) Exception handler failure when exception is not DBusError (openembedded#215) (d771bcf) Result typing in ServiceInterface._handle_signal (openembedded#214) (5bda04b) Avoid double buffering when using asyncio reader without negotiate_unix_fd (openembedded#213) (c933be7) Relax typing on _fn_result_to_body to allow Any (openembedded#212) (2f5fc38) Typing on _fn_result_to_body was incorrect which was caused an exception with cython3 (openembedded#210) (c40c7bc) Cython3 compat (openembedded#208) (43b3d48) Reduce size of wheels by excluding generated .c files (openembedded#262) (dca4599) Marshall multi-byte strings correctly (openembedded#261) (4de31a3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Changelog: =========== Feature -------- Update for final cpython release (#263) (460a072) Speed up unpacking arrays (#257) (5c8bfe5) Speed up constructing Variant objects (#256) (0d7a665) Speed up unmarshalling message body (#255) (5aed075) Speed up unmarshalling Variants (#254) (dd74a84) Speed up readers in the unmarshall path (#253) (f9b61b8) Speed up first connection when using asyncio (#251) (0b6ba93) Speed up unmarshaller (#250) (e4cae13) Add cython typing for ServiceInterface.name (#248) (98c7e75) Speed up connect and disconnect (#247) (8f39ba3) Speed up unmarshalling by skipping unused unix_fds header (#246) (5f5a150) Reduce overhead to reset between messages (#245) (da30b04) Don't import backends by default (#243) (091d421) Breaking don't import backends by default (#243) (091d421) Small speed up to the unmarshaller (#238) (b8d0e9b) Build cpython 3.12 wheels (#234) (b38aa58) Improve performance of processing incoming messages (#228) (ce61aea) Reduce overhead to dispatch method handlers (#227) (b222552) Speed up to processing bluez passive data (#221) (8e7432d) Remove async_timeout dependency (#218) (7826897) Speed up Message creation and callbacks (#217) (04d6451) Optimize passive bluez message unmarshaller (#216) (e0e87ec) Initial cpython 3.12 support (#207) (c755193) Improve performance of reading from the socket during unmarshall (#200) (e5d355f) Fix ------------- Handling of None messages from notify callback (#236) (14f52f2) Clean up address parsing and tests (#244) (370791d) Handle multiple flag bits when unmarshalling (#241) (6f6f5f8) Rebuild wheels with cython 3.0.2 (#235) (e8901a8) Avoid cythonizing SendReply (#232) (d12266d) Subpath bad matching (#202) (5d6f90b) Messages could be sent out of order if they had to queue (#225) (4051cf2) Avoid checking if a message expects a reply twice (#223) (823e85f) Revert changes to _expects_reply from speed up to processing bluez passive data (#222) (dfa9053) Spelling of dbus_fast.auth.AuthAnnonymous to dbus_fast.auth.AuthAnonymous (#220) (6c2412f) More cython3 optional fixes (#219) (5b6cbc5) Exception handler failure when exception is not DBusError (#215) (d771bcf) Result typing in ServiceInterface._handle_signal (#214) (5bda04b) Avoid double buffering when using asyncio reader without negotiate_unix_fd (#213) (c933be7) Relax typing on _fn_result_to_body to allow Any (#212) (2f5fc38) Typing on _fn_result_to_body was incorrect which was caused an exception with cython3 (#210) (c40c7bc) Cython3 compat (#208) (43b3d48) Reduce size of wheels by excluding generated .c files (#262) (dca4599) Marshall multi-byte strings correctly (#261) (4de31a3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit f10cf13) Signed-off-by: Armin Kuster <akuster808@gmail.com>
Cockpit is a server manager that makes it easy to
administer your GNU/Linux servers via a web browser.
Signed-off-by: Michael Haener michael.haener@siemens.com