PN: weston
PV: 10.0.2
PR: r0
PKGV: 10.0.2
PKGR: r0@EXTENDPRAUTO@
LICENSE: MIT
DESCRIPTION: Weston is the reference implementation of a Wayland compositor
SUMMARY: Weston, a Wayland compositor
RDEPENDS:weston: base-files base-passwd shadow weston-data weston-terminal xkeyboard-config cairo (>= 1.18.0) glibc (>= 2.35) libevdev (>= 1.12.1) libinput (>= 1.19.4) libjpeg-turbo (>= 2.1.5.1) libpng (>= 1.6.39) libsystemd (>= 250.14) libweston-10 (>= 10.0.2) libxkbcommon (>= 1.4.1) pango (>= 1.50.4) pixman (>= 0.40.0) wayland (>= 1.20.0)
RRECOMMENDS:weston: weston-init liberation-fonts
SECTION: base
PKG:weston: weston
FILES:weston: /usr/bin/weston /usr/bin/weston-terminal /usr/bin/weston-info /usr/bin/weston-launch /usr/bin/wcap-decode /usr/libexec /usr/lib/weston/*.so* /usr/share
FILES_INFO:weston: {"/usr/bin/wcap-decode": 9608, "/usr/bin/weston": 5508, "/usr/bin/weston-info": 22160, "/usr/lib/weston/desktop-shell.so": 50624, "/usr/lib/weston/fullscreen-shell.so": 13652, "/usr/lib/weston/hmi-controller.so": 17716, "/usr/lib/weston/ivi-shell.so": 30244, "/usr/lib/weston/kiosk-shell.so": 21896, "/usr/lib/weston/libexec_weston.so.0": 23, "/usr/lib/weston/libexec_weston.so.0.0.0": 62920, "/usr/lib/weston/screen-share.so": 21896, "/usr/lib/weston/systemd-notify.so": 5364, "/usr/libexec/weston-desktop-shell": 79772, "/usr/libexec/weston-ivi-shell-user-interface": 34528, "/usr/libexec/weston-keyboard": 83896, "/usr/libexec/weston-simple-im": 13812, "/usr/share/libweston-10/protocols/weston-debug.xml": 6072, "/usr/share/libweston-10/protocols/weston-direct-display.xml": 4015, "/usr/share/wayland-sessions/weston.desktop": 94, "/usr/share/weston-start/systemd-notify": 194}
pkg_preinst:weston: #!/bin/sh\nset -e\nbbnote () {\n\techo "NOTE: $*"\n}\nbbwarn () {\n\techo "WARNING: $*"\n}\nbbfatal () {\n\techo "ERROR: $*"\n\texit 1\n}\nperform_groupadd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "weston: Performing groupadd with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ print $NF }'`\n\tlocal group_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\tif test "x$group_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupadd \\$opts\\" || true\n\t\tgroup_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\t\tif test "x$group_exists" = "x"; then\n\t\t\tbbfatal "weston: groupadd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "weston: group $groupname already exists, not re-creating it"\n\tfi\n}\nperform_useradd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "weston: Performing useradd with [$opts]"\n\tlocal username=`echo "$opts" | awk '{ print $NF }'`\n\tlocal user_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\tif test "x$user_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c  \\"$PSEUDO useradd \\$opts\\" || true\n\t\tuser_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\t\tif test "x$user_exists" = "x"; then\n\t\t\tbbfatal "weston: useradd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "weston: user $username already exists, not re-creating it"\n\tfi\n}\nperform_groupmems () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "weston: Performing groupmems with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-g" || $i == "--group") print $(i+1) }'`\n\tlocal username=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-a" || $i == "--add") print $(i+1) }'`\n\tbbnote "weston: Running groupmems command with group $groupname and user $username"\n\tlocal mem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\tif test "x$mem_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupmems \\$opts\\" || true\n\t\tmem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\t\tif test "x$mem_exists" = "x"; then\n\t\t\tbbfatal "weston: groupmems command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "weston: group $groupname already contains $username, not re-adding it"\n\tfi\n}\nOPT=""\nSYSROOT=""\n\nif test "x$D" != "x"; then\n\t# Installing into a sysroot\n\tSYSROOT="$D"\n\tOPT="--root $D"\n\n\t# Make sure login.defs is there, this is to make debian package backend work\n\t# correctly while doing rootfs.\n\t# The problem here is that if /etc/login.defs is treated as a config file for\n\t# shadow package, then while performing preinsts for packages that depend on\n\t# shadow, there might only be /etc/login.def.dpkg-new there in root filesystem.\n\tif [ ! -e $D/etc/login.defs -a -e $D/etc/login.defs.dpkg-new ]; then\n\t    cp $D/etc/login.defs.dpkg-new $D/etc/login.defs\n\tfi\n\n\t# user/group lookups should match useradd/groupadd --root\n\texport PSEUDO_PASSWD="$SYSROOT"\nfi\n\n# If we're not doing a special SSTATE/SYSROOT install\n# then set the values, otherwise use the environment\nif test "x$UA_SYSROOT" = "x"; then\n\t# Installing onto a target\n\t# Add groups and users defined only for this package\n\tGROUPADD_PARAM="--gid 986 --system weston-launch"\n\tUSERADD_PARAM=""\n\tGROUPMEMS_PARAM=""\nfi\n\n# Perform group additions first, since user additions may depend\n# on these groups existing\nif test "x`echo $GROUPADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupadd commands..."\n\t# Invoke multiple instances of groupadd for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupadd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $USERADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running useradd commands..."\n\t# Invoke multiple instances of useradd for parameter lists\n\t# separated by ';'\n\topts=`echo "$USERADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_useradd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $GROUPMEMS_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupmems commands..."\n\t# Invoke multiple instances of groupmems for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupmems "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n
FILERPROVIDESFLIST:weston: /usr/lib/weston/libexec@underscore@weston.so.0.0.0
FILERPROVIDES:/usr/lib/weston/libexec@underscore@weston.so.0.0.0:weston:  libexec_weston.so.0
FILERDEPENDSFLIST:weston: /usr/bin/wcap-decode /usr/bin/weston /usr/bin/weston-info /usr/lib/weston/desktop-shell.so /usr/lib/weston/fullscreen-shell.so /usr/lib/weston/hmi-controller.so /usr/lib/weston/ivi-shell.so /usr/lib/weston/kiosk-shell.so /usr/lib/weston/libexec@underscore@weston.so.0.0.0 /usr/lib/weston/screen-share.so /usr/lib/weston/systemd-notify.so /usr/libexec/weston-desktop-shell /usr/libexec/weston-ivi-shell-user-interface /usr/libexec/weston-keyboard /usr/libexec/weston-simple-im
FILERDEPENDS:/usr/bin/wcap-decode:weston:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.33) libc.so.6(GLIBC_2.7) libc.so.6(GLIBC_2.4) libcairo.so.2 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/weston:weston:  libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libexec_weston.so.0 libc.so.6 rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/weston-info:weston:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libwayland-client.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/weston/desktop-shell.so:weston:  libm.so.6(GLIBC_2.4) ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.17) libc.so.6(GLIBC_2.4) libexec_weston.so.0 libweston-10.so.0 libweston-desktop-10.so.0 libm.so.6 libwayland-server.so.0 libpixman-1.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/weston/fullscreen-shell.so:weston:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.4) libweston-10.so.0 libexec_weston.so.0 libwayland-server.so.0 libpixman-1.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/weston/hmi-controller.so:weston:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.17) libc.so.6(GLIBC_2.4) libexec_weston.so.0 libweston-10.so.0 libwayland-server.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/weston/ivi-shell.so:weston:  libm.so.6(GLIBC_2.4) ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.17) libc.so.6(GLIBC_2.4) libexec_weston.so.0 libweston-10.so.0 libweston-desktop-10.so.0 libm.so.6 libwayland-server.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/weston/kiosk-shell.so:weston:  ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.4) libexec_weston.so.0 libweston-10.so.0 libweston-desktop-10.so.0 libwayland-server.so.0 libpixman-1.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/weston/libexec@underscore@weston.so.0.0.0:weston:  libevdev.so.2(LIBEVDEV_1) ld-linux-armhf.so.3(GLIBC_2.4) libinput.so.10(LIBINPUT_1.2) libinput.so.10(LIBINPUT_0.14.0) libinput.so.10(LIBINPUT_1.4) libinput.so.10(LIBINPUT_1.1) libinput.so.10(LIBINPUT_0.12.0) libinput.so.10(LIBINPUT_0.19.0) libinput.so.10(LIBINPUT_0.21.0) libc.so.6(GLIBC_2.9) libc.so.6(GLIBC_2.28) libc.so.6(GLIBC_2.32) libc.so.6(GLIBC_2.17) libc.so.6(GLIBC_2.8) libc.so.6(GLIBC_2.7) libc.so.6(GLIBC_2.33) libc.so.6(GLIBC_2.27) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.4) libweston-10.so.0 libwayland-client.so.0 libwayland-server.so.0 libinput.so.10 libevdev.so.2 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/weston/screen-share.so:weston:  libxkbcommon.so.0(V_0.5.0) ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.9) libc.so.6(GLIBC_2.28) libc.so.6(GLIBC_2.7) libc.so.6(GLIBC_2.27) libc.so.6(GLIBC_2.4) libexec_weston.so.0 libweston-10.so.0 libwayland-server.so.0 libpixman-1.so.0 libxkbcommon.so.0 libwayland-client.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/weston/systemd-notify.so:weston:  ld-linux-armhf.so.3(GLIBC_2.4) libsystemd.so.0(LIBSYSTEMD_209) libc.so.6(GLIBC_2.4) libweston-10.so.0 libwayland-server.so.0 libsystemd.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/libexec/weston-desktop-shell:weston:  libm.so.6(GLIBC_2.29) libjpeg.so.62(LIBJPEG_6.2) ld-linux-armhf.so.3(GLIBC_2.4) libxkbcommon.so.0(V_0.5.0) libpng16.so.16(PNG16_0) libc.so.6(GLIBC_2.33) libc.so.6(GLIBC_2.28) libc.so.6(GLIBC_2.17) libc.so.6(GLIBC_2.7) libc.so.6(GLIBC_2.8) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.9) libc.so.6(GLIBC_2.27) libc.so.6(GLIBC_2.11) libc.so.6(GLIBC_2.4) libwayland-client.so.0 libcairo.so.2 libpng16.so.16 libpixman-1.so.0 libm.so.6 libpango-1.0.so.0 libpangocairo-1.0.so.0 libjpeg.so.62 libxkbcommon.so.0 libwayland-cursor.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/libexec/weston-ivi-shell-user-interface:weston:  ld-linux-armhf.so.3(GLIBC_2.4) libm.so.6(GLIBC_2.29) libjpeg.so.62(LIBJPEG_6.2) libpng16.so.16(PNG16_0) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.28) libc.so.6(GLIBC_2.33) libc.so.6(GLIBC_2.9) libc.so.6(GLIBC_2.27) libc.so.6(GLIBC_2.8) libc.so.6(GLIBC_2.7) libc.so.6(GLIBC_2.11) libc.so.6(GLIBC_2.4) libwayland-client.so.0 libcairo.so.2 libpng16.so.16 libpixman-1.so.0 libm.so.6 libpango-1.0.so.0 libpangocairo-1.0.so.0 libjpeg.so.62 libwayland-cursor.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/libexec/weston-keyboard:weston:  libm.so.6(GLIBC_2.29) libjpeg.so.62(LIBJPEG_6.2) ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.33) libc.so.6(GLIBC_2.28) libc.so.6(GLIBC_2.17) libc.so.6(GLIBC_2.7) libc.so.6(GLIBC_2.8) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.9) libc.so.6(GLIBC_2.27) libc.so.6(GLIBC_2.4) libc.so.6(GLIBC_2.11) libxkbcommon.so.0(V_0.5.0) libpng16.so.16(PNG16_0) libwayland-client.so.0 libcairo.so.2 libpng16.so.16 libpixman-1.so.0 libm.so.6 libpango-1.0.so.0 libpangocairo-1.0.so.0 libjpeg.so.62 libxkbcommon.so.0 libwayland-cursor.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
FILERDEPENDS:/usr/libexec/weston-simple-im:weston:  libxkbcommon.so.0(V_0.5.0) ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6(GLIBC_2.4) libc.so.6(GLIBC_2.34) libwayland-client.so.0 libxkbcommon.so.0 libc.so.6 ld-linux-armhf.so.3 rtld(GNU_HASH)
PKGSIZE:weston: 483994
