The following packages will be installed: tinyterm Fetching README... 0%100%100%100%100%100%Done Fetching slack-desc... 0%100%100%100%100%100%Done Fetching tinyterm.SlackBuild... 0%100%100%100%100%100%Done Fetching tinyterm.info... 0%100%100%100%100%100%Done tinyterm-0.6.0/ tinyterm-0.6.0/.gitignore tinyterm-0.6.0/LICENSE tinyterm-0.6.0/Makefile tinyterm-0.6.0/README.md tinyterm-0.6.0/config.h tinyterm-0.6.0/tinyterm.c cc -std=c99 -Wall -Wextra -pedantic -O2 -g -pthread -I/usr/include/vte-0.0 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/fribidi -I/usr/include/gio-unix-2.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libpng16 -O2 -march=i586 -mtune=i686 -DTINYTERM_VERSION=\"1\" tinyterm.c config.h -lm -lvte -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangoft2-1.0 -lpango-1.0 -lharfbuzz -lfontconfig -lfreetype -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lcairo -lX11 -lXext -o tinyterm In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37, from /usr/include/gtk-2.0/gtk/gtkwidget.h:36, from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35, from /usr/include/gtk-2.0/gtk/gtkbin.h:35, from /usr/include/gtk-2.0/gtk/gtkwindow.h:36, from /usr/include/gtk-2.0/gtk/gtkdialog.h:35, from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32, from /usr/include/gtk-2.0/gtk/gtk.h:33, from /usr/include/vte-0.0/vte/vte.h:25, from tinyterm.c:9: /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: ‘GTypeDebugFlags’ is deprecated [-Wdeprecated-declarations] 236 | void gtk_type_init (GTypeDebugFlags debug_flags); | ^~~~ In file included from /usr/include/glib-2.0/gobject/gobject.h:24, from /usr/include/glib-2.0/gobject/gbinding.h:29, from /usr/include/glib-2.0/glib-object.h:22, from /usr/include/glib-2.0/gio/gioenums.h:28, from /usr/include/glib-2.0/gio/giotypes.h:28, from /usr/include/glib-2.0/gio/gio.h:26, from /usr/include/vte-0.0/vte/vte.h:23, from tinyterm.c:9: /usr/include/glib-2.0/gobject/gtype.h:698:1: note: declared here 698 | { | ^ In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31, from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30, from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30, from /usr/include/gtk-2.0/gtk/gtk.h:126, from /usr/include/vte-0.0/vte/vte.h:25, from tinyterm.c:9: /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: ‘GTimeVal’ is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations] 73 | GTimeVal last_popdown; | ^~~~~~~~ In file included from /usr/include/glib-2.0/glib/galloca.h:32, from /usr/include/glib-2.0/glib.h:30, from tinyterm.c:6: /usr/include/glib-2.0/glib/gtypes.h:547:8: note: declared here 547 | struct _GTimeVal | ^~~~~~~~~ tinyterm.c: In function ‘xdg_open_selection_cb’: tinyterm.c:32:37: warning: unused parameter ‘clipboard’ [-Wunused-parameter] 32 | xdg_open_selection_cb(GtkClipboard* clipboard, const char* string, gpointer data) | ~~~~~~~~~~~~~~^~~~~~~~~ tinyterm.c:32:77: warning: unused parameter ‘data’ [-Wunused-parameter] 32 | xdg_open_selection_cb(GtkClipboard* clipboard, const char* string, gpointer data) | ~~~~~~~~~^~~~ tinyterm.c: In function ‘key_press_cb’: tinyterm.c:82:36: warning: passing argument 1 of ‘xdg_open_selection’ from incompatible pointer type [-Wincompatible-pointer-types] 82 | xdg_open_selection(vte); | ^~~ | | | VteTerminal * {aka struct _VteTerminal *} tinyterm.c:39:31: note: expected ‘GtkWidget *’ {aka ‘struct _GtkWidget *’} but argument is of type ‘VteTerminal *’ {aka ‘struct _VteTerminal *’} 39 | xdg_open_selection(GtkWidget* terminal) | ~~~~~~~~~~~^~~~~~~~ tinyterm.c:99:36: warning: passing argument 1 of ‘xdg_open_selection’ from incompatible pointer type [-Wincompatible-pointer-types] 99 | xdg_open_selection(vte); | ^~~ | | | VteTerminal * {aka struct _VteTerminal *} tinyterm.c:39:31: note: expected ‘GtkWidget *’ {aka ‘struct _GtkWidget *’} but argument is of type ‘VteTerminal *’ {aka ‘struct _VteTerminal *’} 39 | xdg_open_selection(GtkWidget* terminal) | ~~~~~~~~~~~^~~~~~~~ tinyterm.c: In function ‘button_press_cb’: tinyterm.c:111:30: warning: unused parameter ‘vte’ [-Wunused-parameter] 111 | button_press_cb(VteTerminal* vte, GdkEventButton* event) | ~~~~~~~~~~~~~^~~ tinyterm.c:111:51: warning: unused parameter ‘event’ [-Wunused-parameter] 111 | button_press_cb(VteTerminal* vte, GdkEventButton* event) | ~~~~~~~~~~~~~~~~^~~~~ tinyterm.c: In function ‘vte_config’: tinyterm.c:133:5: warning: ‘vte_terminal_set_font_from_string_full’ is deprecated [-Wdeprecated-declarations] 133 | vte_terminal_set_font_from_string_full (vte, TINYTERM_FONT, TINYTERM_ANTIALIAS); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/vte-0.0/vte/vte.h:529, from tinyterm.c:9: /usr/include/vte-0.0/vte/vtedeprecated.h:79:6: note: declared here 79 | void vte_terminal_set_font_from_string_full(VteTerminal *terminal, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tinyterm.c:155:56: warning: passing argument 4 of ‘vte_terminal_set_colors’ from incompatible pointer type [-Wincompatible-pointer-types] 155 | vte_terminal_set_colors(vte, &color_fg, &color_bg, &color_palette, 16); | ^~~~~~~~~~~~~~ | | | GdkColor (*)[16] {aka struct _GdkColor (*)[16]} In file included from tinyterm.c:9: /usr/include/vte-0.0/vte/vte.h:330:46: note: expected ‘const GdkColor *’ {aka ‘const struct _GdkColor *’} but argument is of type ‘GdkColor (*)[16]’ {aka ‘struct _GdkColor (*)[16]’} 330 | const GdkColor *palette, | ~~~~~~~~~~~~~~~~^~~~~~~ tinyterm.c: In function ‘key_press_cb’: tinyterm.c:82:17: warning: this statement may fall through [-Wimplicit-fallthrough=] 82 | xdg_open_selection(vte); | ^~~~~~~~~~~~~~~~~~~~~~~ tinyterm.c:83:13: note: here 83 | case GDK_Escape: | ^~~~ install -Dm755 tinyterm /usr/src/slapt-src-i486/system/tinyterm/package-tinyterm/usr/bin/tinyterm Slackware package maker, version 3.14159265. Searching for symbolic links: No symbolic links were found, so we won't make an installation script. You can make your own later in ./install/doinst.sh and rebuild the package if you like. This next step is optional - you can set the directories in your package to some sane permissions. If any of the directories in your package have special permissions, then DO NOT reset them here! Would you like to reset all directory permissions to 755 (drwxr-xr-x) and directory ownerships to root.root ([y]es, [n]o)? n Creating Slackware package: /usr/src/slapt-src-i486/system/tinyterm/tinyterm-0.6.0-i586-1salix15.0.txz ./ install/ install/slack-desc usr/ usr/bin/ usr/bin/tinyterm usr/doc/ usr/doc/tinyterm-0.6.0/ usr/doc/tinyterm-0.6.0/LICENSE usr/doc/tinyterm-0.6.0/README.md usr/doc/tinyterm-0.6.0/tinyterm.SlackBuild Slackware package /usr/src/slapt-src-i486/system/tinyterm/tinyterm-0.6.0-i586-1salix15.0.txz created. Installing package tinyterm-0.6.0-i586-1salix15.0... | tinyterm (simple terminal) | | tinyterm is a simple X terminal emulator written in C. | | It supports copy & paste with Ctrl+Shift+C and Ctrl+Shift+V. | | Homepage: https://github.com/ryanpcmcquen/tinyterm | | | | | |