Control: tags 1066708 + patch
Dear maintainer, I've prepared an NMU for matchbox-keyboard (versioned as 0.2+git20160713-1.1). The diff is attached to this message. Regards. -- Sebastian Ramacher
diff -Nru matchbox-keyboard-0.2+git20160713/debian/changelog matchbox-keyboard-0.2+git20160713/debian/changelog --- matchbox-keyboard-0.2+git20160713/debian/changelog 2020-06-15 18:19:48.000000000 +0200 +++ matchbox-keyboard-0.2+git20160713/debian/changelog 2024-06-02 19:46:51.000000000 +0200 @@ -1,3 +1,10 @@ +matchbox-keyboard (0.2+git20160713-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * debian/patches: Fix implicit function declarations (Closes: #1066708) + + -- Sebastian Ramacher <sramac...@debian.org> Sun, 02 Jun 2024 19:46:51 +0200 + matchbox-keyboard (0.2+git20160713-1) unstable; urgency=medium * New upstream release from Yocto Project git. diff -Nru matchbox-keyboard-0.2+git20160713/debian/patches/implicit-functions.patch matchbox-keyboard-0.2+git20160713/debian/patches/implicit-functions.patch --- matchbox-keyboard-0.2+git20160713/debian/patches/implicit-functions.patch 1970-01-01 01:00:00.000000000 +0100 +++ matchbox-keyboard-0.2+git20160713/debian/patches/implicit-functions.patch 2024-06-02 19:38:14.000000000 +0200 @@ -0,0 +1,47 @@ +--- a/src/matchbox-keyboard-ui-xft-backend.h ++++ b/src/matchbox-keyboard-ui-xft-backend.h +@@ -27,6 +27,9 @@ + MBKeyboardUIBackend* + mb_kbd_ui_xft_init(MBKeyboardUI *ui); + ++void ++mb_kbd_ui_xft_destroy (MBKeyboardUI *ui); ++ + #define MB_KBD_UI_BACKEND_INIT_FUNC(ui) mb_kbd_ui_xft_init((ui)) + #define MB_KBD_UI_BACKEND_DESTROY_FUNC(ui) mb_kbd_ui_xft_destroy((ui)) + +--- a/src/matchbox-keyboard.h ++++ b/src/matchbox-keyboard.h +@@ -332,6 +332,12 @@ + void + mb_kbd_ui_handle_widget_xevent (MBKeyboardUI *ui, XEvent *xev); + ++void ++mb_kbd_ui_handle_configure(MBKeyboardUI *ui, int width, int height); ++ ++void ++mb_kbd_ui_update_display_size(MBKeyboardUI *ui); ++ + #ifdef WANT_CAIRO + #define mb_kbd_image_width(x) cairo_image_surface_get_width (x) + #define mb_kbd_image_height(x) cairo_image_surface_get_height (x) +@@ -379,6 +385,9 @@ + int x, int y, int w, int h); + #endif + ++void ++mb_kbd_destroy (MBKeyboard *kb); ++ + int + mb_kbd_row_spacing(MBKeyboard *kb); + +@@ -647,6 +656,9 @@ + void + mb_kbd_key_dump_key(MBKeyboardKey *key); + ++MBKeyboardKeyActionType ++mb_kbd_key_get_action_type(MBKeyboardKey *key, MBKeyboardKeyStateType state); ++ + #define mb_kdb_key_foreach_state(k,s) \ + for((s)=0; (s) < N_MBKeyboardKeyStateTypes; (s)++) \ + if (mb_kdb_key_has_state((k), (s))) diff -Nru matchbox-keyboard-0.2+git20160713/debian/patches/series matchbox-keyboard-0.2+git20160713/debian/patches/series --- matchbox-keyboard-0.2+git20160713/debian/patches/series 2020-06-15 18:19:48.000000000 +0200 +++ matchbox-keyboard-0.2+git20160713/debian/patches/series 2024-06-02 19:30:47.000000000 +0200 @@ -1,2 +1,3 @@ linking-fix xmonad-support +implicit-functions.patch