-
Notifications
You must be signed in to change notification settings - Fork 714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enca: fix broken automake #11
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The added patch fixes the usage of AM_ICONV macro and comes straight from the Buildroot source tree. Signed-off-by: Drew Moseley <drew_moseley@mentor.com> Signed-off-by: Awais Belal <awais_belal@mentor.com>
Submitted to mailing list |
philb
pushed a commit
that referenced
this pull request
Jul 8, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Jul 15, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Jul 15, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Jul 16, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Jul 27, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Jul 29, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Jul 30, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Aug 3, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Aug 17, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Aug 18, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Aug 18, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Aug 20, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Aug 24, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Aug 24, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Aug 27, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Aug 31, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
philb
pushed a commit
that referenced
this pull request
Sep 14, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
halstead
pushed a commit
that referenced
this pull request
Apr 13, 2018
WARNING: hddtemp-0.3-beta15-r1 do_patch: Some of the context lines in patches were ignored. This can lead to incorrectly applied patches. The context lines in the patches can be updated with devtool: devtool modify <recipe> devtool finish --force-patch-refresh <recipe> <layer_path> Then the updated patches and the source tree (in devtool's workspace) should be reviewed to make sure the patches apply in the correct place and don't introduce duplicate lines (which can, and does happen when some of the context is ignored). Further information: http://lists.openembedded.org/pipermail/openembedded-core/2018-March/148675.html https://bugzilla.yoctoproject.org/show_bug.cgi?id=10450 Details: Applying patch hddtemp_0.3-beta15-52.diff patching file doc/hddtemp.8 patching file po/fr.po patching file po/ru.po patching file po/sv.po patching file po/pt.po patching file po/de.po patching file po/LINGUAS patching file po/hddtemp.pot patching file src/sata.c patching file src/satacmds.c patching file src/backtrace.c patching file src/daemon.c patching file src/hddtemp.c Hunk #5 succeeded at 268 with fuzz 2 (offset 4 lines). Hunk #6 succeeded at 283 (offset 4 lines). Hunk #7 succeeded at 295 (offset 4 lines). Hunk #8 succeeded at 372 (offset 4 lines). Hunk #9 succeeded at 409 (offset 4 lines). Hunk #10 succeeded at 483 (offset 4 lines). Hunk #11 succeeded at 496 (offset 4 lines). Hunk #12 succeeded at 510 (offset 4 lines). Hunk #13 succeeded at 532 (offset 4 lines). patching file src/ata.c patching file src/hddtemp.h patching file src/scsicmds.c Now at patch hddtemp_0.3-beta15-52.diff Signed-off-by: Armin Kuster <akuster808@gmail.com>
kraj
pushed a commit
to kraj/meta-openembedded
that referenced
this pull request
May 29, 2018
When switch PATCHTOOL to patch, the key-replay-cve-multiple.patch can't be apply with "--dry-run" as follows: checking file src/ap/ieee802_11.c checking file src/ap/wpa_auth.c checking file src/ap/wpa_auth.h checking file src/ap/wpa_auth_ft.c checking file src/ap/wpa_auth_i.h checking file src/common/wpa_common.h checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/rsn_supp/wpa.c Hunk openembedded#1 FAILED at 709. Hunk openembedded#2 FAILED at 757. Hunk openembedded#3 succeeded at 840 (offset -12 lines). Hunk openembedded#4 FAILED at 868. Hunk openembedded#5 FAILED at 900. Hunk openembedded#6 FAILED at 924. Hunk openembedded#7 succeeded at 1536 (offset -38 lines). Hunk openembedded#8 FAILED at 2386. Hunk openembedded#9 FAILED at 2920. Hunk openembedded#10 succeeded at 2940 (offset -46 lines). Hunk openembedded#11 FAILED at 2998. 8 out of 11 hunks FAILED checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 FAILED at 32. 1 out of 1 hunk FAILED checking file src/common/wpa_common.h Hunk openembedded#1 succeeded at 215 with fuzz 1. checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/ap/wpa_auth.c Hunk openembedded#1 succeeded at 1898 (offset -3 lines). Hunk openembedded#2 succeeded at 2470 (offset -3 lines). checking file src/rsn_supp/tdls.c checking file src/rsn_supp/wpa.c Hunk openembedded#1 succeeded at 2378 (offset -62 lines). checking file src/rsn_supp/wpa_ft.c checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 succeeded at 123 (offset -5 lines). So split the key-replay-cve-multiple.patch to 7 patches. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to kraj/meta-openembedded
that referenced
this pull request
May 29, 2018
When switch PATCHTOOL to patch, the key-replay-cve-multiple.patch can't be apply with "--dry-run" as follows: checking file src/ap/ieee802_11.c checking file src/ap/wpa_auth.c checking file src/ap/wpa_auth.h checking file src/ap/wpa_auth_ft.c checking file src/ap/wpa_auth_i.h checking file src/common/wpa_common.h checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/rsn_supp/wpa.c Hunk openembedded#1 FAILED at 709. Hunk openembedded#2 FAILED at 757. Hunk openembedded#3 succeeded at 840 (offset -12 lines). Hunk openembedded#4 FAILED at 868. Hunk openembedded#5 FAILED at 900. Hunk openembedded#6 FAILED at 924. Hunk openembedded#7 succeeded at 1536 (offset -38 lines). Hunk openembedded#8 FAILED at 2386. Hunk openembedded#9 FAILED at 2920. Hunk openembedded#10 succeeded at 2940 (offset -46 lines). Hunk openembedded#11 FAILED at 2998. 8 out of 11 hunks FAILED checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 FAILED at 32. 1 out of 1 hunk FAILED checking file src/common/wpa_common.h Hunk openembedded#1 succeeded at 215 with fuzz 1. checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/ap/wpa_auth.c Hunk openembedded#1 succeeded at 1898 (offset -3 lines). Hunk openembedded#2 succeeded at 2470 (offset -3 lines). checking file src/rsn_supp/tdls.c checking file src/rsn_supp/wpa.c Hunk openembedded#1 succeeded at 2378 (offset -62 lines). checking file src/rsn_supp/wpa_ft.c checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 succeeded at 123 (offset -5 lines). So split the key-replay-cve-multiple.patch to 7 patches. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to kraj/meta-openembedded
that referenced
this pull request
May 29, 2018
When switch PATCHTOOL to patch, the key-replay-cve-multiple.patch can't be apply with "--dry-run" as follows: checking file src/ap/ieee802_11.c checking file src/ap/wpa_auth.c checking file src/ap/wpa_auth.h checking file src/ap/wpa_auth_ft.c checking file src/ap/wpa_auth_i.h checking file src/common/wpa_common.h checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/rsn_supp/wpa.c Hunk openembedded#1 FAILED at 709. Hunk openembedded#2 FAILED at 757. Hunk openembedded#3 succeeded at 840 (offset -12 lines). Hunk openembedded#4 FAILED at 868. Hunk openembedded#5 FAILED at 900. Hunk openembedded#6 FAILED at 924. Hunk openembedded#7 succeeded at 1536 (offset -38 lines). Hunk openembedded#8 FAILED at 2386. Hunk openembedded#9 FAILED at 2920. Hunk openembedded#10 succeeded at 2940 (offset -46 lines). Hunk openembedded#11 FAILED at 2998. 8 out of 11 hunks FAILED checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 FAILED at 32. 1 out of 1 hunk FAILED checking file src/common/wpa_common.h Hunk openembedded#1 succeeded at 215 with fuzz 1. checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/ap/wpa_auth.c Hunk openembedded#1 succeeded at 1898 (offset -3 lines). Hunk openembedded#2 succeeded at 2470 (offset -3 lines). checking file src/rsn_supp/tdls.c checking file src/rsn_supp/wpa.c Hunk openembedded#1 succeeded at 2378 (offset -62 lines). checking file src/rsn_supp/wpa_ft.c checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 succeeded at 123 (offset -5 lines). So split the key-replay-cve-multiple.patch to 7 patches. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
jpuhlman
pushed a commit
to MontaVista-OpenSourceTechnology/meta-openembedded
that referenced
this pull request
Jun 13, 2018
Source: meta-openembedded MR: 00000 Type: Integration Disposition: Merged from meta-openembedded ChangeID: 543bb9c Description: When switch PATCHTOOL to patch, the key-replay-cve-multiple.patch can't be apply with "--dry-run" as follows: checking file src/ap/ieee802_11.c checking file src/ap/wpa_auth.c checking file src/ap/wpa_auth.h checking file src/ap/wpa_auth_ft.c checking file src/ap/wpa_auth_i.h checking file src/common/wpa_common.h checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/rsn_supp/wpa.c Hunk openembedded#1 FAILED at 709. Hunk openembedded#2 FAILED at 757. Hunk openembedded#3 succeeded at 840 (offset -12 lines). Hunk openembedded#4 FAILED at 868. Hunk openembedded#5 FAILED at 900. Hunk openembedded#6 FAILED at 924. Hunk openembedded#7 succeeded at 1536 (offset -38 lines). Hunk openembedded#8 FAILED at 2386. Hunk openembedded#9 FAILED at 2920. Hunk openembedded#10 succeeded at 2940 (offset -46 lines). Hunk openembedded#11 FAILED at 2998. 8 out of 11 hunks FAILED checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 FAILED at 32. 1 out of 1 hunk FAILED checking file src/common/wpa_common.h Hunk openembedded#1 succeeded at 215 with fuzz 1. checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/ap/wpa_auth.c Hunk openembedded#1 succeeded at 1898 (offset -3 lines). Hunk openembedded#2 succeeded at 2470 (offset -3 lines). checking file src/rsn_supp/tdls.c checking file src/rsn_supp/wpa.c Hunk openembedded#1 succeeded at 2378 (offset -62 lines). checking file src/rsn_supp/wpa_ft.c checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 succeeded at 123 (offset -5 lines). So split the key-replay-cve-multiple.patch to 7 patches. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
halstead
pushed a commit
that referenced
this pull request
Jun 20, 2018
When switch PATCHTOOL to patch, the key-replay-cve-multiple.patch can't be apply with "--dry-run" as follows: checking file src/ap/ieee802_11.c checking file src/ap/wpa_auth.c checking file src/ap/wpa_auth.h checking file src/ap/wpa_auth_ft.c checking file src/ap/wpa_auth_i.h checking file src/common/wpa_common.h checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/rsn_supp/wpa.c Hunk #1 FAILED at 709. Hunk #2 FAILED at 757. Hunk #3 succeeded at 840 (offset -12 lines). Hunk #4 FAILED at 868. Hunk #5 FAILED at 900. Hunk #6 FAILED at 924. Hunk #7 succeeded at 1536 (offset -38 lines). Hunk #8 FAILED at 2386. Hunk #9 FAILED at 2920. Hunk #10 succeeded at 2940 (offset -46 lines). Hunk #11 FAILED at 2998. 8 out of 11 hunks FAILED checking file src/rsn_supp/wpa_i.h Hunk #1 FAILED at 32. 1 out of 1 hunk FAILED checking file src/common/wpa_common.h Hunk #1 succeeded at 215 with fuzz 1. checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/ap/wpa_auth.c Hunk #1 succeeded at 1898 (offset -3 lines). Hunk #2 succeeded at 2470 (offset -3 lines). checking file src/rsn_supp/tdls.c checking file src/rsn_supp/wpa.c Hunk #1 succeeded at 2378 (offset -62 lines). checking file src/rsn_supp/wpa_ft.c checking file src/rsn_supp/wpa_i.h Hunk #1 succeeded at 123 (offset -5 lines). So split the key-replay-cve-multiple.patch to 7 patches. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 543bb9c) Signed-off-by: Armin Kuster <akuster808@gmail.com>
jpuhlman
pushed a commit
to MontaVista-OpenSourceTechnology/meta-openembedded
that referenced
this pull request
Jun 26, 2018
Source: meta-openembedded MR: 00000 Type: Integration Disposition: Merged from meta-openembedded ChangeID: 49f937b Description: When switch PATCHTOOL to patch, the key-replay-cve-multiple.patch can't be apply with "--dry-run" as follows: checking file src/ap/ieee802_11.c checking file src/ap/wpa_auth.c checking file src/ap/wpa_auth.h checking file src/ap/wpa_auth_ft.c checking file src/ap/wpa_auth_i.h checking file src/common/wpa_common.h checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/rsn_supp/wpa.c Hunk openembedded#1 FAILED at 709. Hunk openembedded#2 FAILED at 757. Hunk openembedded#3 succeeded at 840 (offset -12 lines). Hunk openembedded#4 FAILED at 868. Hunk openembedded#5 FAILED at 900. Hunk openembedded#6 FAILED at 924. Hunk openembedded#7 succeeded at 1536 (offset -38 lines). Hunk openembedded#8 FAILED at 2386. Hunk openembedded#9 FAILED at 2920. Hunk openembedded#10 succeeded at 2940 (offset -46 lines). Hunk openembedded#11 FAILED at 2998. 8 out of 11 hunks FAILED checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 FAILED at 32. 1 out of 1 hunk FAILED checking file src/common/wpa_common.h Hunk openembedded#1 succeeded at 215 with fuzz 1. checking file src/rsn_supp/wpa.c checking file src/rsn_supp/wpa_i.h checking file src/ap/wpa_auth.c Hunk openembedded#1 succeeded at 1898 (offset -3 lines). Hunk openembedded#2 succeeded at 2470 (offset -3 lines). checking file src/rsn_supp/tdls.c checking file src/rsn_supp/wpa.c Hunk openembedded#1 succeeded at 2378 (offset -62 lines). checking file src/rsn_supp/wpa_ft.c checking file src/rsn_supp/wpa_i.h Hunk openembedded#1 succeeded at 123 (offset -5 lines). So split the key-replay-cve-multiple.patch to 7 patches. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 543bb9c) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 3, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 3, 2021
Release notes for 4.16.0 ======================== - Fix action of Back/Forward mouse gesture when using RTL (Issue openembedded#90) - Prevent crash on mouse gesture action (Issue openembedded#443) - Avoid crashes when closing thunar with ctrl+w (openembedded#336) - Ignore double-click events from back/forward mouse button (Issue openembedded#371) - Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump - bump minimum required exo version to 4.15.3 - Wrap box around spinner to prevent flickering (Issue openembedded#440) - Use g_drive_is_removable over g_drive_is_media_removable - bump glib (and gio, gthread, etc) to 2.50.0 - Do not duplicate app_info when added via custom command (Issue openembedded#309) - Escape all whitespace characters in custom command path - Remove hidden quotes for "Open with"->"custom command" (Issue openembedded#425) - Ignore unknown XML elements in UCA.xml - Regression: Fix broken bulk renamer context menu (Issue openembedded#436) - Revert of b12247c2 and proper fix for Issue openembedded#423 - Remove duplicated code in renamer and prevent possible leak - Prevent possible crash of thunar_launcher_poke (Issue openembedded#436) - Fix combo box entry order (Issue openembedded#435) - Remove TODO file - Change focus when clicking an emblem entry (Issue openembedded#315) - Bump GLib minimum version to 2.44 - Prevent Gtk-CRITICAL when terminating session (Issue openembedded#430) - Missing thunarx support on the shortcut view (Issue openembedded#423) - Translation Updates: Basque, Chinese (China), Czech, Danish, Estonian, Korean, Norwegian Nynorsk, Turkish, Vietnamese Release notes for 4.15.0 ======================== This is a development release of Thunar aiming the upcoming release of Xfce 4.16. - Fix unavailable rubber banding in detailed view (Issue openembedded#326) - Context menu entries in Thunar flutter while downloading (Issue openembedded#276) - Improve cusor handling after file deletion in thunar (Issue openembedded#69) - Fix regression: Trying to open a .desktop file from the context menu leads to the execution of the file (Issue openembedded#325) - Use numbering on label "open new window/tab" only for multiple windows/tabs (MR openembedded#15) - Remove "Sort by" and "View as" from menu item labels (Issue openembedded#247) - Add new app icon and switch to rDNS icon name (MR openembedded#11) - Replace deprecated GtkActionEntry with XfceGtkActionEntry (Issue openembedded#293) - Menus are now updated when selection changes not only when opened (Issue openembedded#293) - Merge all file-context-menus into one (Issue openembedded#198) - Ghost file ocasionally remains when dropping file into directory (Fixes openembedded#312) - Use XfceFilenameInput to validate long filenames (Bug #13720) - Support for variables like $HOME in address bar (Bug #12165) - Fix eject button click detection when using RTL languages (Bug #11387) - Remove upper case from group names in shortcuts view - Option to rename a file when existing copy conflicts (Bug #16686) - Remove suffix "- FileManager" from window title - Move from exo-csource to xdt-csource (Bug #16717) - Pause button on copy/move (Bug #16685) - Allow drag-and-drop of multiple files in icon view (Bug #2487) - Add keywords to .desktop files to thunar (Bug #16618) - Reduce vertical space in Templates info popup - Hide android phone from network group (Bug #11584) - Reduce size of Templates info popup - Do not add "cant-write" emblem to files in the Trash - Hide Browse Network entry in shortcuts view if not supported - Move 'network' to the bottom of tree view (Bug #16516) - Add examples to "Select by Pattern" dialog (Bug #16587) - Improve tooltips in shortcuts view (Bug #16566) - Rename "Disconnect" context menu entry in side pane (Bug #16558) - Make path entry matching case-insensitive (Bug #12747) - Add new bookmarks to bottom of list in shortcuts view (Bug #16526) - Move places above devices in shortcuts view (Bug #11586) - Add desktop actions for home, computer and trash (Bug #16497) - Option to use static icon instead of folder icon (Bug #16501) - Remove top level desktop entry from tree view (Bug #16474) - Easy access to computer:/// (Bug #16472) - Use libxfce4ui close-multiple-tab dialog (Bug #16254) - Replace deprecated G_FILE_MONITOR_EVENT_MOVED (Bug #16328) - Use symbolic icon for eject (Bug #16281) - Prevent ghost files after "move" on remote locations (Bug #15704) - Add a confirmation dialog when closing a window with multiple open tabs. - Improve explanation string for "invert selection" action (Bug #15625) - Improve layout of Permissions tab (Bug #15557) - Remove superfluous shell script "ThunarBulkRename" (Bug #15373) - Make labels in permissions chooser wrap - Add a small delay when dismissing notifications (Bug #14552) - File / Folder size text in statusbar sometimes is ambiguous (Bug #14203) - Add missing parameter to ThunarBrowserPokeDeviceFunc function - Add property to enable/disable frames on thumbnails (Bug #14433) - Improved spacing between widgets in Properties and Preferences dialogs - Fixed numerous compiler warnings - Fixed numerous warning and critical messages - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Asturian, Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Esperanto, Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Panjabi (Punjabi), Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Urdu, Urdu (Pakistan), Vietnamese Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 3, 2021
fix-pam-config.patch was applied upstream Release notes for 4.16.0 ======================== This release version has been bumped from 0.x to 4.16.0 to align with the new Libxfce4util and Xfconf GIR requirements. - xfce4-screensaver-configure: Use GIRepository of libxfce4util and xfconf (openembedded#11) - Change type of seconds to guint in add_lock_timer - Check dbus system_connection in add_sleep_inhibit - Cleanup GSourceFunc usage - Convert date_time_update to a timer function - Fix format specifiers in lock_timer - Fix issues connected to dbus (openembedded#66) - Fix pam_strerror usage - Pass constants to XSetScreenSaver - Plug memleak in get_x11_idle_info - Remove obsolete check for scrnsaver.h from configure.ac - Translation Updates: Czech, Japanese, Portuguese, Turkish Release notes for 0.1.11 ======================== [Please note that this is a development release.] Configuration Update: This release updates the DPMS settings used for the Blank screensaver. Timeouts are now stored in seconds instead of minutes, with the default DPMS sleep now 5 seconds after the screensaver goes active. Xfconf: /xfce4-screensaver/screensavers/xfce-blank/dpms-sleep-after Theme Update: This release uses a new icon name, org.xfce.ScreenSaver, instead of the generic preferences-desktop-screensaver. NEWS: - Builds: Move from exo-csource to xdt-csource (Bugzilla #16717) - CI: Add basic GitLab pipeline - distcheck: Add missing gs-auth-pam.c - DPMS: Change sleep settings to seconds, default after 5 seconds (openembedded#27) - Fix: Catch gs_listener_dbus_init failures - Fix: remove unused flag --no-daemon - Icons: New icons and rDNS icon name, org.xfce.ScreenSaver - Internal: Change timers from milliseconds to seconds - README.md: Note setuid requirement after install with shadow/bsdauth (openembedded#9) - xfce4-screensaver.common-auth: replace @include with standard systax (openembedded#6) Translation Updates: Albanian, Armenian (Armenia), Basque, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Czech, Danish, Dutch, Eastern Armenian, English (Australia), Estonian, French, German, Hebrew, Hungarian, Icelandic, Italian, Japanese, Korean, Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 6, 2021
Release notes for 4.16.0 ======================== - Fix action of Back/Forward mouse gesture when using RTL (Issue openembedded#90) - Prevent crash on mouse gesture action (Issue openembedded#443) - Avoid crashes when closing thunar with ctrl+w (openembedded#336) - Ignore double-click events from back/forward mouse button (Issue openembedded#371) - Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump - bump minimum required exo version to 4.15.3 - Wrap box around spinner to prevent flickering (Issue openembedded#440) - Use g_drive_is_removable over g_drive_is_media_removable - bump glib (and gio, gthread, etc) to 2.50.0 - Do not duplicate app_info when added via custom command (Issue openembedded#309) - Escape all whitespace characters in custom command path - Remove hidden quotes for "Open with"->"custom command" (Issue openembedded#425) - Ignore unknown XML elements in UCA.xml - Regression: Fix broken bulk renamer context menu (Issue openembedded#436) - Revert of b12247c2 and proper fix for Issue openembedded#423 - Remove duplicated code in renamer and prevent possible leak - Prevent possible crash of thunar_launcher_poke (Issue openembedded#436) - Fix combo box entry order (Issue openembedded#435) - Remove TODO file - Change focus when clicking an emblem entry (Issue openembedded#315) - Bump GLib minimum version to 2.44 - Prevent Gtk-CRITICAL when terminating session (Issue openembedded#430) - Missing thunarx support on the shortcut view (Issue openembedded#423) - Translation Updates: Basque, Chinese (China), Czech, Danish, Estonian, Korean, Norwegian Nynorsk, Turkish, Vietnamese Release notes for 4.15.0 ======================== This is a development release of Thunar aiming the upcoming release of Xfce 4.16. - Fix unavailable rubber banding in detailed view (Issue openembedded#326) - Context menu entries in Thunar flutter while downloading (Issue openembedded#276) - Improve cusor handling after file deletion in thunar (Issue openembedded#69) - Fix regression: Trying to open a .desktop file from the context menu leads to the execution of the file (Issue openembedded#325) - Use numbering on label "open new window/tab" only for multiple windows/tabs (MR openembedded#15) - Remove "Sort by" and "View as" from menu item labels (Issue openembedded#247) - Add new app icon and switch to rDNS icon name (MR openembedded#11) - Replace deprecated GtkActionEntry with XfceGtkActionEntry (Issue openembedded#293) - Menus are now updated when selection changes not only when opened (Issue openembedded#293) - Merge all file-context-menus into one (Issue openembedded#198) - Ghost file ocasionally remains when dropping file into directory (Fixes openembedded#312) - Use XfceFilenameInput to validate long filenames (Bug #13720) - Support for variables like $HOME in address bar (Bug #12165) - Fix eject button click detection when using RTL languages (Bug #11387) - Remove upper case from group names in shortcuts view - Option to rename a file when existing copy conflicts (Bug #16686) - Remove suffix "- FileManager" from window title - Move from exo-csource to xdt-csource (Bug #16717) - Pause button on copy/move (Bug #16685) - Allow drag-and-drop of multiple files in icon view (Bug #2487) - Add keywords to .desktop files to thunar (Bug #16618) - Reduce vertical space in Templates info popup - Hide android phone from network group (Bug #11584) - Reduce size of Templates info popup - Do not add "cant-write" emblem to files in the Trash - Hide Browse Network entry in shortcuts view if not supported - Move 'network' to the bottom of tree view (Bug #16516) - Add examples to "Select by Pattern" dialog (Bug #16587) - Improve tooltips in shortcuts view (Bug #16566) - Rename "Disconnect" context menu entry in side pane (Bug #16558) - Make path entry matching case-insensitive (Bug #12747) - Add new bookmarks to bottom of list in shortcuts view (Bug #16526) - Move places above devices in shortcuts view (Bug #11586) - Add desktop actions for home, computer and trash (Bug #16497) - Option to use static icon instead of folder icon (Bug #16501) - Remove top level desktop entry from tree view (Bug #16474) - Easy access to computer:/// (Bug #16472) - Use libxfce4ui close-multiple-tab dialog (Bug #16254) - Replace deprecated G_FILE_MONITOR_EVENT_MOVED (Bug #16328) - Use symbolic icon for eject (Bug #16281) - Prevent ghost files after "move" on remote locations (Bug #15704) - Add a confirmation dialog when closing a window with multiple open tabs. - Improve explanation string for "invert selection" action (Bug #15625) - Improve layout of Permissions tab (Bug #15557) - Remove superfluous shell script "ThunarBulkRename" (Bug #15373) - Make labels in permissions chooser wrap - Add a small delay when dismissing notifications (Bug #14552) - File / Folder size text in statusbar sometimes is ambiguous (Bug #14203) - Add missing parameter to ThunarBrowserPokeDeviceFunc function - Add property to enable/disable frames on thumbnails (Bug #14433) - Improved spacing between widgets in Properties and Preferences dialogs - Fixed numerous compiler warnings - Fixed numerous warning and critical messages - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Asturian, Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Esperanto, Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Panjabi (Punjabi), Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Urdu, Urdu (Pakistan), Vietnamese Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 6, 2021
fix-pam-config.patch was applied upstream Release notes for 4.16.0 ======================== This release version has been bumped from 0.x to 4.16.0 to align with the new Libxfce4util and Xfconf GIR requirements. - xfce4-screensaver-configure: Use GIRepository of libxfce4util and xfconf (openembedded#11) - Change type of seconds to guint in add_lock_timer - Check dbus system_connection in add_sleep_inhibit - Cleanup GSourceFunc usage - Convert date_time_update to a timer function - Fix format specifiers in lock_timer - Fix issues connected to dbus (openembedded#66) - Fix pam_strerror usage - Pass constants to XSetScreenSaver - Plug memleak in get_x11_idle_info - Remove obsolete check for scrnsaver.h from configure.ac - Translation Updates: Czech, Japanese, Portuguese, Turkish Release notes for 0.1.11 ======================== [Please note that this is a development release.] Configuration Update: This release updates the DPMS settings used for the Blank screensaver. Timeouts are now stored in seconds instead of minutes, with the default DPMS sleep now 5 seconds after the screensaver goes active. Xfconf: /xfce4-screensaver/screensavers/xfce-blank/dpms-sleep-after Theme Update: This release uses a new icon name, org.xfce.ScreenSaver, instead of the generic preferences-desktop-screensaver. NEWS: - Builds: Move from exo-csource to xdt-csource (Bugzilla #16717) - CI: Add basic GitLab pipeline - distcheck: Add missing gs-auth-pam.c - DPMS: Change sleep settings to seconds, default after 5 seconds (openembedded#27) - Fix: Catch gs_listener_dbus_init failures - Fix: remove unused flag --no-daemon - Icons: New icons and rDNS icon name, org.xfce.ScreenSaver - Internal: Change timers from milliseconds to seconds - README.md: Note setuid requirement after install with shadow/bsdauth (openembedded#9) - xfce4-screensaver.common-auth: replace @include with standard systax (openembedded#6) Translation Updates: Albanian, Armenian (Armenia), Basque, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Czech, Danish, Dutch, Eastern Armenian, English (Australia), Estonian, French, German, Hebrew, Hungarian, Icelandic, Italian, Japanese, Korean, Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 6, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 6, 2021
Release notes for 4.16.0 ======================== - Fix action of Back/Forward mouse gesture when using RTL (Issue openembedded#90) - Prevent crash on mouse gesture action (Issue openembedded#443) - Avoid crashes when closing thunar with ctrl+w (openembedded#336) - Ignore double-click events from back/forward mouse button (Issue openembedded#371) - Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump - bump minimum required exo version to 4.15.3 - Wrap box around spinner to prevent flickering (Issue openembedded#440) - Use g_drive_is_removable over g_drive_is_media_removable - bump glib (and gio, gthread, etc) to 2.50.0 - Do not duplicate app_info when added via custom command (Issue openembedded#309) - Escape all whitespace characters in custom command path - Remove hidden quotes for "Open with"->"custom command" (Issue openembedded#425) - Ignore unknown XML elements in UCA.xml - Regression: Fix broken bulk renamer context menu (Issue openembedded#436) - Revert of b12247c2 and proper fix for Issue openembedded#423 - Remove duplicated code in renamer and prevent possible leak - Prevent possible crash of thunar_launcher_poke (Issue openembedded#436) - Fix combo box entry order (Issue openembedded#435) - Remove TODO file - Change focus when clicking an emblem entry (Issue openembedded#315) - Bump GLib minimum version to 2.44 - Prevent Gtk-CRITICAL when terminating session (Issue openembedded#430) - Missing thunarx support on the shortcut view (Issue openembedded#423) - Translation Updates: Basque, Chinese (China), Czech, Danish, Estonian, Korean, Norwegian Nynorsk, Turkish, Vietnamese Release notes for 4.15.0 ======================== This is a development release of Thunar aiming the upcoming release of Xfce 4.16. - Fix unavailable rubber banding in detailed view (Issue openembedded#326) - Context menu entries in Thunar flutter while downloading (Issue openembedded#276) - Improve cusor handling after file deletion in thunar (Issue openembedded#69) - Fix regression: Trying to open a .desktop file from the context menu leads to the execution of the file (Issue openembedded#325) - Use numbering on label "open new window/tab" only for multiple windows/tabs (MR openembedded#15) - Remove "Sort by" and "View as" from menu item labels (Issue openembedded#247) - Add new app icon and switch to rDNS icon name (MR openembedded#11) - Replace deprecated GtkActionEntry with XfceGtkActionEntry (Issue openembedded#293) - Menus are now updated when selection changes not only when opened (Issue openembedded#293) - Merge all file-context-menus into one (Issue openembedded#198) - Ghost file ocasionally remains when dropping file into directory (Fixes openembedded#312) - Use XfceFilenameInput to validate long filenames (Bug #13720) - Support for variables like $HOME in address bar (Bug #12165) - Fix eject button click detection when using RTL languages (Bug #11387) - Remove upper case from group names in shortcuts view - Option to rename a file when existing copy conflicts (Bug #16686) - Remove suffix "- FileManager" from window title - Move from exo-csource to xdt-csource (Bug #16717) - Pause button on copy/move (Bug #16685) - Allow drag-and-drop of multiple files in icon view (Bug #2487) - Add keywords to .desktop files to thunar (Bug #16618) - Reduce vertical space in Templates info popup - Hide android phone from network group (Bug #11584) - Reduce size of Templates info popup - Do not add "cant-write" emblem to files in the Trash - Hide Browse Network entry in shortcuts view if not supported - Move 'network' to the bottom of tree view (Bug #16516) - Add examples to "Select by Pattern" dialog (Bug #16587) - Improve tooltips in shortcuts view (Bug #16566) - Rename "Disconnect" context menu entry in side pane (Bug #16558) - Make path entry matching case-insensitive (Bug #12747) - Add new bookmarks to bottom of list in shortcuts view (Bug #16526) - Move places above devices in shortcuts view (Bug #11586) - Add desktop actions for home, computer and trash (Bug #16497) - Option to use static icon instead of folder icon (Bug #16501) - Remove top level desktop entry from tree view (Bug #16474) - Easy access to computer:/// (Bug #16472) - Use libxfce4ui close-multiple-tab dialog (Bug #16254) - Replace deprecated G_FILE_MONITOR_EVENT_MOVED (Bug #16328) - Use symbolic icon for eject (Bug #16281) - Prevent ghost files after "move" on remote locations (Bug #15704) - Add a confirmation dialog when closing a window with multiple open tabs. - Improve explanation string for "invert selection" action (Bug #15625) - Improve layout of Permissions tab (Bug #15557) - Remove superfluous shell script "ThunarBulkRename" (Bug #15373) - Make labels in permissions chooser wrap - Add a small delay when dismissing notifications (Bug #14552) - File / Folder size text in statusbar sometimes is ambiguous (Bug #14203) - Add missing parameter to ThunarBrowserPokeDeviceFunc function - Add property to enable/disable frames on thumbnails (Bug #14433) - Improved spacing between widgets in Properties and Preferences dialogs - Fixed numerous compiler warnings - Fixed numerous warning and critical messages - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Asturian, Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Esperanto, Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Panjabi (Punjabi), Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Urdu, Urdu (Pakistan), Vietnamese Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 6, 2021
fix-pam-config.patch was applied upstream Release notes for 4.16.0 ======================== This release version has been bumped from 0.x to 4.16.0 to align with the new Libxfce4util and Xfconf GIR requirements. - xfce4-screensaver-configure: Use GIRepository of libxfce4util and xfconf (openembedded#11) - Change type of seconds to guint in add_lock_timer - Check dbus system_connection in add_sleep_inhibit - Cleanup GSourceFunc usage - Convert date_time_update to a timer function - Fix format specifiers in lock_timer - Fix issues connected to dbus (openembedded#66) - Fix pam_strerror usage - Pass constants to XSetScreenSaver - Plug memleak in get_x11_idle_info - Remove obsolete check for scrnsaver.h from configure.ac - Translation Updates: Czech, Japanese, Portuguese, Turkish Release notes for 0.1.11 ======================== [Please note that this is a development release.] Configuration Update: This release updates the DPMS settings used for the Blank screensaver. Timeouts are now stored in seconds instead of minutes, with the default DPMS sleep now 5 seconds after the screensaver goes active. Xfconf: /xfce4-screensaver/screensavers/xfce-blank/dpms-sleep-after Theme Update: This release uses a new icon name, org.xfce.ScreenSaver, instead of the generic preferences-desktop-screensaver. NEWS: - Builds: Move from exo-csource to xdt-csource (Bugzilla #16717) - CI: Add basic GitLab pipeline - distcheck: Add missing gs-auth-pam.c - DPMS: Change sleep settings to seconds, default after 5 seconds (openembedded#27) - Fix: Catch gs_listener_dbus_init failures - Fix: remove unused flag --no-daemon - Icons: New icons and rDNS icon name, org.xfce.ScreenSaver - Internal: Change timers from milliseconds to seconds - README.md: Note setuid requirement after install with shadow/bsdauth (openembedded#9) - xfce4-screensaver.common-auth: replace @include with standard systax (openembedded#6) Translation Updates: Albanian, Armenian (Armenia), Basque, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Czech, Danish, Dutch, Eastern Armenian, English (Australia), Estonian, French, German, Hebrew, Hungarian, Icelandic, Italian, Japanese, Korean, Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 7, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 7, 2021
Release notes for 4.16.0 ======================== - Fix action of Back/Forward mouse gesture when using RTL (Issue openembedded#90) - Prevent crash on mouse gesture action (Issue openembedded#443) - Avoid crashes when closing thunar with ctrl+w (openembedded#336) - Ignore double-click events from back/forward mouse button (Issue openembedded#371) - Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump - bump minimum required exo version to 4.15.3 - Wrap box around spinner to prevent flickering (Issue openembedded#440) - Use g_drive_is_removable over g_drive_is_media_removable - bump glib (and gio, gthread, etc) to 2.50.0 - Do not duplicate app_info when added via custom command (Issue openembedded#309) - Escape all whitespace characters in custom command path - Remove hidden quotes for "Open with"->"custom command" (Issue openembedded#425) - Ignore unknown XML elements in UCA.xml - Regression: Fix broken bulk renamer context menu (Issue openembedded#436) - Revert of b12247c2 and proper fix for Issue openembedded#423 - Remove duplicated code in renamer and prevent possible leak - Prevent possible crash of thunar_launcher_poke (Issue openembedded#436) - Fix combo box entry order (Issue openembedded#435) - Remove TODO file - Change focus when clicking an emblem entry (Issue openembedded#315) - Bump GLib minimum version to 2.44 - Prevent Gtk-CRITICAL when terminating session (Issue openembedded#430) - Missing thunarx support on the shortcut view (Issue openembedded#423) - Translation Updates: Basque, Chinese (China), Czech, Danish, Estonian, Korean, Norwegian Nynorsk, Turkish, Vietnamese Release notes for 4.15.0 ======================== This is a development release of Thunar aiming the upcoming release of Xfce 4.16. - Fix unavailable rubber banding in detailed view (Issue openembedded#326) - Context menu entries in Thunar flutter while downloading (Issue openembedded#276) - Improve cusor handling after file deletion in thunar (Issue openembedded#69) - Fix regression: Trying to open a .desktop file from the context menu leads to the execution of the file (Issue openembedded#325) - Use numbering on label "open new window/tab" only for multiple windows/tabs (MR openembedded#15) - Remove "Sort by" and "View as" from menu item labels (Issue openembedded#247) - Add new app icon and switch to rDNS icon name (MR openembedded#11) - Replace deprecated GtkActionEntry with XfceGtkActionEntry (Issue openembedded#293) - Menus are now updated when selection changes not only when opened (Issue openembedded#293) - Merge all file-context-menus into one (Issue openembedded#198) - Ghost file ocasionally remains when dropping file into directory (Fixes openembedded#312) - Use XfceFilenameInput to validate long filenames (Bug #13720) - Support for variables like $HOME in address bar (Bug #12165) - Fix eject button click detection when using RTL languages (Bug #11387) - Remove upper case from group names in shortcuts view - Option to rename a file when existing copy conflicts (Bug #16686) - Remove suffix "- FileManager" from window title - Move from exo-csource to xdt-csource (Bug #16717) - Pause button on copy/move (Bug #16685) - Allow drag-and-drop of multiple files in icon view (Bug #2487) - Add keywords to .desktop files to thunar (Bug #16618) - Reduce vertical space in Templates info popup - Hide android phone from network group (Bug #11584) - Reduce size of Templates info popup - Do not add "cant-write" emblem to files in the Trash - Hide Browse Network entry in shortcuts view if not supported - Move 'network' to the bottom of tree view (Bug #16516) - Add examples to "Select by Pattern" dialog (Bug #16587) - Improve tooltips in shortcuts view (Bug #16566) - Rename "Disconnect" context menu entry in side pane (Bug #16558) - Make path entry matching case-insensitive (Bug #12747) - Add new bookmarks to bottom of list in shortcuts view (Bug #16526) - Move places above devices in shortcuts view (Bug #11586) - Add desktop actions for home, computer and trash (Bug #16497) - Option to use static icon instead of folder icon (Bug #16501) - Remove top level desktop entry from tree view (Bug #16474) - Easy access to computer:/// (Bug #16472) - Use libxfce4ui close-multiple-tab dialog (Bug #16254) - Replace deprecated G_FILE_MONITOR_EVENT_MOVED (Bug #16328) - Use symbolic icon for eject (Bug #16281) - Prevent ghost files after "move" on remote locations (Bug #15704) - Add a confirmation dialog when closing a window with multiple open tabs. - Improve explanation string for "invert selection" action (Bug #15625) - Improve layout of Permissions tab (Bug #15557) - Remove superfluous shell script "ThunarBulkRename" (Bug #15373) - Make labels in permissions chooser wrap - Add a small delay when dismissing notifications (Bug #14552) - File / Folder size text in statusbar sometimes is ambiguous (Bug #14203) - Add missing parameter to ThunarBrowserPokeDeviceFunc function - Add property to enable/disable frames on thumbnails (Bug #14433) - Improved spacing between widgets in Properties and Preferences dialogs - Fixed numerous compiler warnings - Fixed numerous warning and critical messages - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Asturian, Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Esperanto, Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Panjabi (Punjabi), Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Urdu, Urdu (Pakistan), Vietnamese Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 7, 2021
fix-pam-config.patch was applied upstream Release notes for 4.16.0 ======================== This release version has been bumped from 0.x to 4.16.0 to align with the new Libxfce4util and Xfconf GIR requirements. - xfce4-screensaver-configure: Use GIRepository of libxfce4util and xfconf (openembedded#11) - Change type of seconds to guint in add_lock_timer - Check dbus system_connection in add_sleep_inhibit - Cleanup GSourceFunc usage - Convert date_time_update to a timer function - Fix format specifiers in lock_timer - Fix issues connected to dbus (openembedded#66) - Fix pam_strerror usage - Pass constants to XSetScreenSaver - Plug memleak in get_x11_idle_info - Remove obsolete check for scrnsaver.h from configure.ac - Translation Updates: Czech, Japanese, Portuguese, Turkish Release notes for 0.1.11 ======================== [Please note that this is a development release.] Configuration Update: This release updates the DPMS settings used for the Blank screensaver. Timeouts are now stored in seconds instead of minutes, with the default DPMS sleep now 5 seconds after the screensaver goes active. Xfconf: /xfce4-screensaver/screensavers/xfce-blank/dpms-sleep-after Theme Update: This release uses a new icon name, org.xfce.ScreenSaver, instead of the generic preferences-desktop-screensaver. NEWS: - Builds: Move from exo-csource to xdt-csource (Bugzilla #16717) - CI: Add basic GitLab pipeline - distcheck: Add missing gs-auth-pam.c - DPMS: Change sleep settings to seconds, default after 5 seconds (openembedded#27) - Fix: Catch gs_listener_dbus_init failures - Fix: remove unused flag --no-daemon - Icons: New icons and rDNS icon name, org.xfce.ScreenSaver - Internal: Change timers from milliseconds to seconds - README.md: Note setuid requirement after install with shadow/bsdauth (openembedded#9) - xfce4-screensaver.common-auth: replace @include with standard systax (openembedded#6) Translation Updates: Albanian, Armenian (Armenia), Basque, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Czech, Danish, Dutch, Eastern Armenian, English (Australia), Estonian, French, German, Hebrew, Hungarian, Icelandic, Italian, Japanese, Korean, Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 21, 2021
Bugs fixed in NSS 3.60.1: Bug 1682863 - Fix remaining hang issues with slow third-party PKCS openembedded#11 tokens. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 21, 2021
Bugs fixed in NSS 3.60.1: Bug 1682863 - Fix remaining hang issues with slow third-party PKCS openembedded#11 tokens. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Mar 7, 2021
Although not mentioned below and obstacles in the way, 0001-Makefile.in.in-remove-bashisms.patch made it upstream [1]. Release notes for 1.0.13 ======================== New Features: - Add Cupertino layout (openembedded#7) - Add Redmond 7 layout (openembedded#8) - Add Xfce 4.16 layout General: - Updated existing templates to support Xfce 4.16 - Makefile.in.in: remove bashisms - Enabled exporting Whisker menu configuration (openembedded#11) Updated translations [1] https://gitlab.xfce.org/apps/xfce4-panel-profiles/-/commit/1565fe5f450732a82a76b828610fc935501584d0 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Mar 8, 2021
Although not mentioned below and obstacles in the way, 0001-Makefile.in.in-remove-bashisms.patch made it upstream [1]. Release notes for 1.0.13 ======================== New Features: - Add Cupertino layout (openembedded#7) - Add Redmond 7 layout (openembedded#8) - Add Xfce 4.16 layout General: - Updated existing templates to support Xfce 4.16 - Makefile.in.in: remove bashisms - Enabled exporting Whisker menu configuration (openembedded#11) Updated translations [1] https://gitlab.xfce.org/apps/xfce4-panel-profiles/-/commit/1565fe5f450732a82a76b828610fc935501584d0 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Apr 7, 2021
Release notes for 0.5.2 ======================= A bugfix and translation update, a new icon, various cleanups.. thanks to all contributors ! ====== - Update TODO - Refresh Glade file, drop unused tab labels (fixes openembedded#13) - move the logic setting GtkSpin port value to setup_for_type() (openembedded#11) - Use new icon in window titlebar - Fix compilation warnings - autoconf: Some updates - Only show an error dialog if the host field is visible/required - Remove capitalization from icon name - Update GenericName (openembedded#2) - Fix comment style. - Remove GSourceFunc casts - Update Makefile.am - Add gigolo.ui to POTFILES.in (Issue openembedded#6) - Added new icons following new style and reverse DNS format. - Add new README.md and update AM_INIT_AUTOMAKE - Add basic GitLab pipeline - Bug #16717: Move from exo-csource to xdt-csource - Translation Updates Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead
pushed a commit
that referenced
this pull request
Apr 8, 2021
Release notes for 0.5.2 ======================= A bugfix and translation update, a new icon, various cleanups.. thanks to all contributors ! ====== - Update TODO - Refresh Glade file, drop unused tab labels (fixes #13) - move the logic setting GtkSpin port value to setup_for_type() (#11) - Use new icon in window titlebar - Fix compilation warnings - autoconf: Some updates - Only show an error dialog if the host field is visible/required - Remove capitalization from icon name - Update GenericName (#2) - Fix comment style. - Remove GSourceFunc casts - Update Makefile.am - Add gigolo.ui to POTFILES.in (Issue #6) - Added new icons following new style and reverse DNS format. - Add new README.md and update AM_INIT_AUTOMAKE - Add basic GitLab pipeline - Bug #16717: Move from exo-csource to xdt-csource - Translation Updates Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead
pushed a commit
that referenced
this pull request
Apr 10, 2021
Release notes for 0.5.2 ======================= A bugfix and translation update, a new icon, various cleanups.. thanks to all contributors ! ====== - Update TODO - Refresh Glade file, drop unused tab labels (fixes #13) - move the logic setting GtkSpin port value to setup_for_type() (#11) - Use new icon in window titlebar - Fix compilation warnings - autoconf: Some updates - Only show an error dialog if the host field is visible/required - Remove capitalization from icon name - Update GenericName (#2) - Fix comment style. - Remove GSourceFunc casts - Update Makefile.am - Add gigolo.ui to POTFILES.in (Issue #6) - Added new icons following new style and reverse DNS format. - Add new README.md and update AM_INIT_AUTOMAKE - Add basic GitLab pipeline - Bug #16717: Move from exo-csource to xdt-csource - Translation Updates Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit e2add12) Signed-off-by: Armin Kuster <akuster808@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jul 15, 2021
License_Update: Update license to GPLv3 version 1.1.0: - drop support for libparted older than 2.4 (openembedded#16) - introduce `-n, --partition` to set a partition number when dealing with file dumps, /dev/loop and /dev/ram devices (openembedded#15) - ask confirmation for operations (e.g. FAT32 -> FAT16 conversion), add `-f, --force` option to not prompt (openembedded#13) - do not limit FAT32 usage on small partitions (openembedded#11) - update ChangeLog (openembedded#10) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jul 16, 2021
License_Update: Update license to GPLv3 version 1.1.0: - drop support for libparted older than 2.4 (openembedded#16) - introduce `-n, --partition` to set a partition number when dealing with file dumps, /dev/loop and /dev/ram devices (openembedded#15) - ask confirmation for operations (e.g. FAT32 -> FAT16 conversion), add `-f, --force` option to not prompt (openembedded#13) - do not limit FAT32 usage on small partitions (openembedded#11) - update ChangeLog (openembedded#10) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jul 16, 2021
License_Update: Update license to GPLv3 version 1.1.0: - drop support for libparted older than 2.4 (openembedded#16) - introduce `-n, --partition` to set a partition number when dealing with file dumps, /dev/loop and /dev/ram devices (openembedded#15) - ask confirmation for operations (e.g. FAT32 -> FAT16 conversion), add `-f, --force` option to not prompt (openembedded#13) - do not limit FAT32 usage on small partitions (openembedded#11) - update ChangeLog (openembedded#10) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 27, 2022
Changelog: ========== Added ------ Support Python 3.11 (openembedded#13) Add Arabic language (jmoiron/humanize#256) Docs: add dark mode toggle and default to system preference (jmoiron/humanize#255) Documentation improvements (jmoiron/humanize#254) Changed ------- Update repo links (openembedded#2) Fixed ------- Removed VERSION from __all__ (openembedded#11) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 27, 2022
Changelog: ========== Added ------ Support Python 3.11 (openembedded#13) Add Arabic language (jmoiron/humanize#256) Docs: add dark mode toggle and default to system preference (jmoiron/humanize#255) Documentation improvements (jmoiron/humanize#254) Changed ------- Update repo links (openembedded#2) Fixed ------- Removed VERSION from __all__ (openembedded#11) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 27, 2022
Changelog: ========== Added ------ Support Python 3.11 (openembedded#13) Add Arabic language (jmoiron/humanize#256) Docs: add dark mode toggle and default to system preference (jmoiron/humanize#255) Documentation improvements (jmoiron/humanize#254) Changed ------- Update repo links (openembedded#2) Fixed ------- Removed VERSION from __all__ (openembedded#11) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 28, 2022
Changelog: ========== Added ------ Support Python 3.11 (openembedded#13) Add Arabic language (jmoiron/humanize#256) Docs: add dark mode toggle and default to system preference (jmoiron/humanize#255) Documentation improvements (jmoiron/humanize#254) Changed ------- Update repo links (openembedded#2) Fixed ------- Removed VERSION from __all__ (openembedded#11) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 28, 2022
Changelog: ========== Added ------ Support Python 3.11 (openembedded#13) Add Arabic language (jmoiron/humanize#256) Docs: add dark mode toggle and default to system preference (jmoiron/humanize#255) Documentation improvements (jmoiron/humanize#254) Changed ------- Update repo links (openembedded#2) Fixed ------- Removed VERSION from __all__ (openembedded#11) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 28, 2022
Changelog: ========== Added ------ Support Python 3.11 (openembedded#13) Add Arabic language (jmoiron/humanize#256) Docs: add dark mode toggle and default to system preference (jmoiron/humanize#255) Documentation improvements (jmoiron/humanize#254) Changed ------- Update repo links (openembedded#2) Fixed ------- Removed VERSION from __all__ (openembedded#11) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 28, 2022
Changelog: ========== Added ------ Support Python 3.11 (openembedded#13) Add Arabic language (jmoiron/humanize#256) Docs: add dark mode toggle and default to system preference (jmoiron/humanize#255) Documentation improvements (jmoiron/humanize#254) Changed ------- Update repo links (openembedded#2) Fixed ------- Removed VERSION from __all__ (openembedded#11) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 29, 2022
Changelog: ========== Added ------ Support Python 3.11 (openembedded#13) Add Arabic language (jmoiron/humanize#256) Docs: add dark mode toggle and default to system preference (jmoiron/humanize#255) Documentation improvements (jmoiron/humanize#254) Changed ------- Update repo links (openembedded#2) Fixed ------- Removed VERSION from __all__ (openembedded#11) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 31, 2022
Fix RDEPENDS, in particular perl-module-perlio-encoding and perl-module-encode-encoding were needed to be able to open the database in /usr/lib/perl5/5.36.0/vendor_perl/MIME/types.db... even though no warnings or errors were reported. bin/collect-types was dropped in 2.18 Upstream release notes: version 2.22: Wed 27 Oct 16:54:38 CEST 2021 Changes: - webm keeps on producting unexpected results [issue openembedded#11, Даша Федорова] - iana updates version 2.21: Fri 28 May 12:01:00 CEST 2021 Changes: - application/octet-stream is better for .dat [issue openembedded#11, Даша Федорова] - add video/webm which Google forgot to register [issue openembedded#12, Brent Laabs] - add image/webp which Google registered too late [issue openembedded#12, Brent Laabs] version 2.20: Thu 22 Apr 12:48:35 CEST 2021 Fixes: - problems with PAUSE cause the previous release to show-up in the wrong location. Let's hope this release solves it. Changes: - heif/heic/heifs/heics/hif fix [issue openembedded#9, Даша Федорова] - no 'and' and 'or' extensions [issue openembedded#9, Даша Федорова] - application/octet-stream is better for .bin [issue openembedded#10, Даша Федорова] version 2.19: Fri 16 Apr 11:47:10 CEST 2021 Improvements: - update with the newest data from IANA and Apache httpd Changes: - mp4 preference is video/mp4 [issue openembedded#5, Даша Федорова] - yt preference is video/vnd.youtube.yt [issue openembedded#6, Даша Федорова] - 3gp and 3gpp preference is video/3gpp [issue openembedded#7, Даша Федорова] version 2.18: Wed 9 Dec 10:29:46 CET 2020 Improvements: - update with newest data Changes: - Mojo 6.0 changed types() into mapping() [Dmitry Latin] - Mojo 7.94 adds experimental file_type() - Mojo 7.94 adds experimental content_type() Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Nov 18, 2022
* Fix RDEPENDS for a minimal image * Inherit ptest-perl and add RDEPENDS 1.17 2022-11-11 Todd Rinaldo <toddr@cpan.org> * Switch changelog entries to metacpan friendly format * openembedded#29 - Fix printf format conversion specifiers in croak to support size_t on all platforms * openembedded#11,openembedded#30 - Tty.pm: pre-allocate buffer for ioctl but leave it length 0 * openembedded#28 - Use $arg to match @argv in Makefile.PL https://metacpan.org/release/TODDR/IO-Tty-1.17 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Dec 19, 2023
Starting with version 3.0 the OpenSSL project introduced a new modular system to extend OpenSSL that replaces the deprecated Engine modules. Providers are loaded via configuration directives in the openssl configuration file (or directly loaded by applications). The pkcs11 provider allows applications linked to openssl to use keys and cryptographic operations from a hardware or software token via their PKCS openembedded#11 driver and the use of PCKS openembedded#11 URIs. The pkcs11 provider can be configured to be automatically loaded via openssl.cnf For more details, visit https://github.com/latchset/pkcs11-provider/blob/main/docs/provider-pkcs11.7.md Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Dec 20, 2023
Starting with version 3.0 the OpenSSL project introduced a new modular system to extend OpenSSL that replaces the deprecated Engine modules. Providers are loaded via configuration directives in the openssl configuration file (or directly loaded by applications). The pkcs11 provider allows applications linked to openssl to use keys and cryptographic operations from a hardware or software token via their PKCS openembedded#11 driver and the use of PCKS openembedded#11 URIs. The pkcs11 provider can be configured to be automatically loaded via openssl.cnf For more details, visit https://github.com/latchset/pkcs11-provider/blob/main/docs/provider-pkcs11.7.md Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The added patch fixes the usage of AM_ICONV macro and
comes straight from the Buildroot source tree.
Signed-off-by: Drew Moseley drew_moseley@mentor.com
Signed-off-by: Awais Belal awais_belal@mentor.com