Guake / guake

Drop-down terminal for GNOME
https://guake.github.io
GNU General Public License v2.0
4.37k stars 577 forks source link

Guake terminal window is always completely invisible on KDE plasma #1300

Open JasonDictos opened 6 years ago

JasonDictos commented 6 years ago

Guake version - 0.8.8 Env - KDE Plasma 5.10.5 System - Dell XPS 13 Issue - The guake terminal window is always completely invisibile. I can virtually type on it though even though I cannot see it. Works fine on another machine (desktop) with the same KDE plasma version. Funny thing, this all worked fine in i3, but I recently switched to plasma and now it no longer works.

I tried building from source but I couldn't figure out how to use pip correctly, willing to try that.

aichingm commented 6 years ago

Guake 0.8.8 is way outdated and support has been dropped.

What distro are you running?

JasonDictos commented 6 years ago

Description: Ubuntu 17.10 Release: 17.10 Codename: artful

aichingm commented 6 years ago

How did you try to install guake from source?

Have you tried to install via make?

git clone https://github.com/Guake/guake
cd guake
make 
sudo make install

http://guake.readthedocs.io/en/latest/user/installing.html

Edit: I missed a step:

git clone https://github.com/Guake/guake
cd guake
./scripts/bootstrap-dev-debian.sh # this line installs all deps
make 
sudo make install
JasonDictos commented 6 years ago

Lol that easy huh, wonder why I had a problem, pip was complaining. Worked this time. Lets see if its still invisible.

JasonDictos commented 6 years ago
jason@jason-laptop:~/guake$ make
generating desktop files
cp -f guake/paths.py.in guake/paths.py
# Generic
# Dev environment:
sed -i -e 's|{{ LOCALE_DIR }}|/usr/local/share/locale|g' guake/paths.py
sed -i -e 's|{{ IMAGE_DIR }}|/home/jason/guake/data/pixmaps|g' guake/paths.py
sed -i -e 's|{{ GUAKE_THEME_DIR }}|/home/jason/guake/data/themes|g' guake/paths.py
sed -i -e 's|{{ GLADE_DIR }}|/home/jason/guake/data|g' guake/paths.py
sed -i -e 's|{{ SCHEMA_DIR }}|/home/jason/guake/data|g' guake/paths.py
generating po/fa.po
generating po/hu.po
generating po/pt_BR.po
generating po/ko.po
generating po/es.po
generating po/ja.po
generating po/pl.po
generating po/pa.po
generating po/zh_CN.po
generating po/fr.po
generating po/it.po
generating po/nl.po
generating po/ca.po
generating po/nb.po
generating po/hr.po
generating po/sv.po
generating po/gl.po
generating po/tr.po
generating po/el.po
generating po/de.po
generating po/ru.po
generating po/uk.po
generating po/id.po
generating po/cs.po
rm -f /home/jason/guake/data/gschemas.compiled
glib-compile-schemas --strict /home/jason/guake/data                                                                                                                                                               
# 'make' target, so users can install guake without need to install the 'dev' dependencies                                                                                                                         
jason@jason-laptop:~/guake$ sudo make install                                                                                                                                                                      
install -Dm644 "/home/jason/guake/data/guake.desktop" "//usr/local/share/applications/guake.desktop"                                                                                                               
install -Dm644 "/home/jason/guake/data/guake-prefs.desktop" "//usr/local/share/applications/guake-prefs.desktop"                                                                                                   
mkdir -p //usr/local/share/guake/pixmaps                                                                                                                                                                           
install -Dm644 /home/jason/guake/data/pixmaps/*.png "//usr/local/share/guake/pixmaps/"                                                                                                                             
install -Dm644 /home/jason/guake/data/pixmaps/*.svg "//usr/local/share/guake/pixmaps/"                                                                                                                             
install -Dm644 /home/jason/guake/data/pixmaps/guake.png "//usr/local/share/pixmaps/guake.png"                                                                                                                      
mkdir -p //usr/local/share/guake                                                                                                                                                                                   
mkdir -p //usr/local/share/guake                                                                                                                                                                                   
install -Dm644  /home/jason/guake/data/*.glade "//usr/local/share/guake"                                                                                                                                           
mkdir -p //usr/local/share/guake                                                                                                                                                                                   
install -Dm644 "/home/jason/guake/data/autostart-guake.desktop" "//usr/local/share/guake"                                                                                                                          
mkdir -p //usr/local/share/glib-2.0/schemas                                                                                                                                                                        
install -Dm644 "/home/jason/guake/data/org.guake.gschema.xml" "//usr/local/share/glib-2.0/schemas/"                                                                                                                
if [ 1 = 1 ]; then glib-compile-schemas //usr/local/share/glib-2.0/schemas; fi                                                                                                                                     
for f in $(find po -iname "*.mo"); do \                                                                                                                                                                            
        l="${f%%.*}"; \                                                                                                                                                                                            
        lb=$(basename $l); \
        install -Dm644 "$f" "//usr/local/share/locale/$lb/LC_MESSAGES/guake.mo"; \
done;
# you probably want to execute this target with sudo:
# sudo make install
Installing from on your system is not recommended.
Please prefer you application package manager (apt, yum, ...)
Ignoring typing: markers 'python_version < "3.5"' don't match your environment
Collecting pbr (from -r requirements.txt (line 13))
  Downloading https://files.pythonhosted.org/packages/e1/ba/f95e3ec83f93919b1437028e989cf3fa5ff4f5cae4a1f62255f71deddb5b/pbr-4.0.2-py2.py3-none-any.whl (98kB)
    100% |████████████████████████████████| 102kB 1.5MB/s 
Installing collected packages: pbr
Successfully installed pbr-4.0.2
running install
[pbr] Writing ChangeLog
[pbr] Generating ChangeLog
[pbr] ChangeLog complete (0.0s)
[pbr] Generating AUTHORS
[pbr] AUTHORS complete (0.0s)
running build
running build_py
creating build
creating build/lib
creating build/lib/guake
creating build/lib/guake/tests
copying guake/tests/__init__.py -> build/lib/guake/tests
copying guake/tests/test_quick_open.py -> build/lib/guake/tests
copying guake/tests/test_guake.py -> build/lib/guake/tests
copying guake/__init__.py -> build/lib/guake
copying guake/guake_logging.py -> build/lib/guake
copying guake/keybindings.py -> build/lib/guake
copying guake/guake_app.py -> build/lib/guake
copying guake/palettes.py -> build/lib/guake
copying guake/terminal.py -> build/lib/guake
copying guake/globals.py -> build/lib/guake
copying guake/dbusiface.py -> build/lib/guake
copying guake/paths.py -> build/lib/guake
copying guake/notifier.py -> build/lib/guake
copying guake/common.py -> build/lib/guake
copying guake/guake_notebook.py -> build/lib/guake
copying guake/settings.py -> build/lib/guake
copying guake/about.py -> build/lib/guake
copying guake/theme.py -> build/lib/guake
copying guake/simplegladeapp.py -> build/lib/guake
copying guake/main.py -> build/lib/guake
copying guake/gsettings.py -> build/lib/guake
copying guake/utils.py -> build/lib/guake
copying guake/prefs.py -> build/lib/guake
running egg_info
creating Guake.egg-info
writing pbr to Guake.egg-info/pbr.json
writing Guake.egg-info/PKG-INFO
writing dependency_links to Guake.egg-info/dependency_links.txt
writing entry points to Guake.egg-info/entry_points.txt
writing requirements to Guake.egg-info/requires.txt
writing top-level names to Guake.egg-info/top_level.txt
[pbr] Processing SOURCES.txt
writing manifest file 'Guake.egg-info/SOURCES.txt'
[pbr] In git context, generating filelist from git
warning: no previously-included files found matching '.gitreview'
warning: no previously-included files matching '*.pyc' found anywhere in distribution
writing manifest file 'Guake.egg-info/SOURCES.txt'
copying guake/paths.py.in -> build/lib/guake
running install_lib
creating /usr/local/lib/python3.6/dist-packages/guake
creating /usr/local/lib/python3.6/dist-packages/guake/tests
copying build/lib/guake/tests/__init__.py -> /usr/local/lib/python3.6/dist-packages/guake/tests
copying build/lib/guake/tests/test_quick_open.py -> /usr/local/lib/python3.6/dist-packages/guake/tests
copying build/lib/guake/tests/test_guake.py -> /usr/local/lib/python3.6/dist-packages/guake/tests
copying build/lib/guake/__init__.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/guake_logging.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/keybindings.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/guake_app.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/palettes.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/terminal.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/globals.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/dbusiface.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/paths.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/notifier.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/common.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/guake_notebook.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/settings.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/about.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/theme.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/paths.py.in -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/simplegladeapp.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/main.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/gsettings.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/utils.py -> /usr/local/lib/python3.6/dist-packages/guake
copying build/lib/guake/prefs.py -> /usr/local/lib/python3.6/dist-packages/guake
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/tests/__init__.py to __init__.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/tests/test_quick_open.py to test_quick_open.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/tests/test_guake.py to test_guake.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/__init__.py to __init__.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/guake_logging.py to guake_logging.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/keybindings.py to keybindings.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/guake_app.py to guake_app.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/palettes.py to palettes.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/terminal.py to terminal.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/globals.py to globals.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/dbusiface.py to dbusiface.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/paths.py to paths.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/notifier.py to notifier.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/common.py to common.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/guake_notebook.py to guake_notebook.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/settings.py to settings.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/about.py to about.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/theme.py to theme.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/simplegladeapp.py to simplegladeapp.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/main.py to main.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/gsettings.py to gsettings.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/utils.py to utils.cpython-36.pyc
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/prefs.py to prefs.cpython-36.pyc
writing byte-compilation script '/tmp/tmp8aq_mktv.py'
/usr/bin/python3 /tmp/tmp8aq_mktv.py
removing /tmp/tmp8aq_mktv.py
running install_egg_info
Copying Guake.egg-info to /usr/local/lib/python3.6/dist-packages/Guake-3.2.1.dev29-py3.6.egg-info
running install_scripts
Installing guake script to /usr/local/bin
removed 'build/lib/guake/tests/__init__.py'
removed 'build/lib/guake/tests/test_quick_open.py'
removed 'build/lib/guake/tests/test_guake.py'
removed directory 'build/lib/guake/tests'
removed 'build/lib/guake/__init__.py'
removed 'build/lib/guake/guake_logging.py'
removed 'build/lib/guake/keybindings.py'
removed 'build/lib/guake/guake_app.py'
removed 'build/lib/guake/palettes.py'
removed 'build/lib/guake/terminal.py'
removed 'build/lib/guake/globals.py'
removed 'build/lib/guake/dbusiface.py'
removed 'build/lib/guake/paths.py'
removed 'build/lib/guake/notifier.py'
removed 'build/lib/guake/common.py'
removed 'build/lib/guake/guake_notebook.py'
removed 'build/lib/guake/settings.py'
removed 'build/lib/guake/about.py'
removed 'build/lib/guake/theme.py'
removed 'build/lib/guake/paths.py.in'
removed 'build/lib/guake/simplegladeapp.py'
removed 'build/lib/guake/main.py'
removed 'build/lib/guake/gsettings.py'
removed 'build/lib/guake/utils.py'
removed 'build/lib/guake/prefs.py'
removed directory 'build/lib/guake'
removed directory 'build/lib'
removed directory 'build'
removed 'Guake.egg-info/entry_points.txt'
removed 'Guake.egg-info/not-zip-safe'
removed 'Guake.egg-info/PKG-INFO'
removed 'Guake.egg-info/SOURCES.txt'
removed 'Guake.egg-info/dependency_links.txt'
removed 'Guake.egg-info/requires.txt'
removed 'Guake.egg-info/pbr.json'
removed 'Guake.egg-info/top_level.txt'
removed directory 'Guake.egg-info'
jason@jason-laptop:~/guake$ /usr/local/bin/guake 
Guake not running, starting it
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 175, in activate_name_owner
    return self.get_name_owner(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 361, in get_name_owner
    's', (bus_name,), **keywords)
  File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.guake3.RemoteControl': no such name

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 270, in main
    remote_object = bus.get_object(DBUS_NAME, DBUS_PATH)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 241, in get_object
    follow_name_owner_changes=follow_name_owner_changes)
  File "/usr/lib/python3/dist-packages/dbus/proxies.py", line 248, in __init__
    self._named_service = conn.activate_name_owner(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 180, in activate_name_owner
    self.start_service_by_name(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 278, in start_service_by_name
    'su', (bus_name, flags)))
  File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.guake3.RemoteControl was not provided by any .service files

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/bin/guake", line 10, in <module>
    sys.exit(exec_main())
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 385, in exec_main
    if not main():
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 284, in main
    from guake.guake_app import Guake
  File "/home/jason/.local/lib/python3.6/site-packages/guake/guake_app.py", line 39, in <module>
    gi.require_version('Keybinder', '3.0')
  File "/usr/lib/python3/dist-packages/gi/__init__.py", line 118, in require_version
    raise ValueError('Namespace %s not available' % namespace)
ValueError: Namespace Keybinder not available
jason@jason-laptop:~/guake$ 
aichingm commented 6 years ago

Sorry I think I missed a step:

git clone https://github.com/Guake/guake
cd guake
./scripts/bootstrap-dev-debian.sh # this line will install a lot of things if you don't want them remove the lines in the file. E.g. poedit is needed for development but not for running or building
make 
sudo make install
JasonDictos commented 6 years ago
jason@jason-laptop:~/guake$ ./scripts/bootstrap-dev-debian.sh 
Install packages needed for execution
Reading package lists... Done
Building dependency tree       
Reading state information... Done
gir1.2-notify-0.7 is already the newest version (0.7.7-2).
gir1.2-vte-2.91 is already the newest version (0.48.4-0ubuntu1).
python3 is already the newest version (3.6.3-0ubuntu2).
python3-cairo is already the newest version (1.10.0+dfsg-5build3).
python3-dbus is already the newest version (1.2.4-1build3).
python3-gi is already the newest version (3.24.1-2build1).
python3-pip is already the newest version (9.0.1-2).
The following packages were automatically installed and are no longer required:
  python-gconf python-glade2 python-keybinder python-notify python-vte
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  gir1.2-keybinder-3.0 libkeybinder-3.0-0 python3-pbr
0 upgraded, 3 newly installed, 0 to remove and 2 not upgraded.
Need to get 46.9 kB of archives.
After this operation, 222 kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 libkeybinder-3.0-0 amd64 0.3.1-1 [8,412 B]
Get:2 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 gir1.2-keybinder-3.0 amd64 0.3.1-1 [3,006 B]
Get:3 http://us.archive.ubuntu.com/ubuntu artful/main amd64 python3-pbr all 2.0.0-0ubuntu1 [35.5 kB]
Fetched 46.9 kB in 0s (101 kB/s)      
sudo makeSelecting previously unselected package libkeybinder-3.0-0:amd64.
(Reading database ... 542977 files and directories currently installed.)
tPreparing to unpack .../libkeybinder-3.0-0_0.3.1-1_amd64.deb ...
Unpacking libkeybinder-3.0-0:amd64 (0.3.1-1) ...
alSelecting previously unselected package gir1.2-keybinder-3.0.
Preparing to unpack .../gir1.2-keybinder-3.0_0.3.1-1_amd64.deb ...
Unpacking gir1.2-keybinder-3.0 (0.3.1-1) ...
lSelecting previously unselected package python3-pbr.

Preparing to unpack .../python3-pbr_2.0.0-0ubuntu1_all.deb ...
Unpacking python3-pbr (2.0.0-0ubuntu1) ...
Setting up python3-pbr (2.0.0-0ubuntu1) ...
update-alternatives: using /usr/bin/python3-pbr to provide /usr/bin/pbr (pbr) in auto mode
Processing triggers for libc-bin (2.26-0ubuntu2.1) ...                                                                                                                                                             
Setting up libkeybinder-3.0-0:amd64 (0.3.1-1) ...                                                                                                                                                                  
Setting up gir1.2-keybinder-3.0 (0.3.1-1) ...                                                                                                                                                                      
Processing triggers for libc-bin (2.26-0ubuntu2.1) ...                                                                                                                                                             
Install needed development packages on a Debian/Ubuntu system
Reading package lists... Done
Building dependency tree       
Reading state information... Done
gettext is already the newest version (0.19.8.1-4ubuntu1).
gsettings-desktop-schemas is already the newest version (3.24.1-1ubuntu1).
make is already the newest version (4.1-9.1).
make set to manually installed.
gnome-tweak-tool is already the newest version (3.26.2.1-1ubuntu1).
The following packages were automatically installed and are no longer required:
  python-gconf python-glade2 python-keybinder python-notify python-vte
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  autopoint debhelper devhelp devhelp-common dh-autoreconf dh-strip-nondeterminism libarchive-cpio-perl libatk-bridge2.0-dev libatk1.0-dev libatk1.0-doc libatspi2.0-dev libcairo-script-interpreter2
  libcairo2-dev libcld2-0 libdbus-1-dev libdevhelp-3-4 libepoxy-dev libfile-stripnondeterminism-perl libfontconfig1-dev libfreetype6-dev libgdk-pixbuf2.0-dev libgladeui-2-6 libgladeui-common libglib2.0-doc
  libgraphite2-dev libgtk-3-dev libgtk-3-doc libgtkspell0 libharfbuzz-dev libharfbuzz-gobject0 libice-dev libluajit-5.1-2 libluajit-5.1-common liblucene++0v5 libmail-sendmail-perl libmirclient-dev
  libmircommon-dev libmircookie-dev libmircookie2 libmircore-dev libpango1.0-dev libpango1.0-doc libpixman-1-dev libpng-dev libpng-tools libprotobuf-dev libsm-dev libsys-hostname-long-perl libwxbase3.0-0v5
  libwxgtk3.0-0v5 libxcb-shm0-dev libxcomposite-dev libxcursor-dev libxft-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxrender-dev libxtst-dev pandoc-data po-debconf poedit-common
  wayland-protocols x11proto-composite-dev x11proto-randr-dev x11proto-record-dev x11proto-render-dev x11proto-xinerama-dev
Suggested packages:
  dh-make libgtk2.0-doc libcairo2-doc libice-doc libsm-doc texlive-latex-recommended texlive-xetex texlive-luatex pandoc-citeproc texlive-latex-extra wkhtmltopdf libmail-box-perl
The following NEW packages will be installed:
  aspell-fr autopoint colortest dconf-editor debhelper devhelp devhelp-common dh-autoreconf dh-strip-nondeterminism glade libarchive-cpio-perl libatk-bridge2.0-dev libatk1.0-dev libatk1.0-doc libatspi2.0-dev
  libcairo-script-interpreter2 libcairo2-dev libcld2-0 libdbus-1-dev libdevhelp-3-4 libepoxy-dev libfile-stripnondeterminism-perl libfontconfig1-dev libfreetype6-dev libgdk-pixbuf2.0-dev libgladeui-2-6
  libgladeui-common libglib2.0-doc libgraphite2-dev libgtk-3-dev libgtk-3-doc libgtkspell0 libharfbuzz-dev libharfbuzz-gobject0 libice-dev libluajit-5.1-2 libluajit-5.1-common liblucene++0v5
  libmail-sendmail-perl libmirclient-dev libmircommon-dev libmircookie-dev libmircookie2 libmircore-dev libpango1.0-dev libpango1.0-doc libpixman-1-dev libpng-dev libpng-tools libprotobuf-dev libsm-dev
  libsys-hostname-long-perl libwxbase3.0-0v5 libwxgtk3.0-0v5 libxcb-shm0-dev libxcomposite-dev libxcursor-dev libxft-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxrender-dev libxtst-dev
  pandoc pandoc-data po-debconf poedit poedit-common wayland-protocols x11proto-composite-dev x11proto-randr-dev x11proto-record-dev x11proto-render-dev x11proto-xinerama-dev
0 upgraded, 75 newly installed, 0 to remove and 2 not upgraded.
Need to get 38.0 MB of archives.
After this operation, 208 MB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 aspell-fr all 0.50-3-8 [378 kB]
Get:2 http://ppa.launchpad.net/xorg-edgers/ppa/ubuntu artful/main amd64 wayland-protocols all 1.11-1~17.10~xedgers1 [48.2 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu artful/main amd64 autopoint all 0.19.8.1-4ubuntu1 [412 kB]
Get:4 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 colortest all 20110624-6 [12.8 kB]
Get:5 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 dconf-editor amd64 3.26.1-1 [282 kB]
Get:6 http://us.archive.ubuntu.com/ubuntu artful/main amd64 dh-autoreconf all 14 [15.5 kB]
Get:7 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libfile-stripnondeterminism-perl all 0.038-1 [13.3 kB]
Get:8 http://us.archive.ubuntu.com/ubuntu artful/main amd64 dh-strip-nondeterminism all 0.038-1 [5,026 B]
Get:9 http://us.archive.ubuntu.com/ubuntu artful/main amd64 po-debconf all 1.0.20 [232 kB]
Get:10 http://us.archive.ubuntu.com/ubuntu artful/main amd64 debhelper all 10.7.2ubuntu2 [877 kB]
Get:11 http://us.archive.ubuntu.com/ubuntu artful/main amd64 devhelp-common all 3.26.0-1 [25.2 kB]
Get:12 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libdevhelp-3-4 amd64 3.26.0-1 [42.1 kB]
Get:13 http://us.archive.ubuntu.com/ubuntu artful/main amd64 devhelp amd64 3.26.0-1 [50.4 kB]
Get:14 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 libgladeui-common all 3.20.0-3 [1,029 kB]
Get:15 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 libgladeui-2-6 amd64 3.20.0-3 [496 kB]
Get:16 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 glade amd64 3.20.0-3 [703 kB]
Get:17 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libarchive-cpio-perl all 0.10-1 [9,644 B]
Get:18 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libdbus-1-dev amd64 1.10.22-1ubuntu1 [161 kB]
Get:19 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libxi-dev amd64 2:1.7.9-1 [186 kB]
Get:20 http://us.archive.ubuntu.com/ubuntu artful/main amd64 x11proto-record-dev all 1.14.2-1 [33.6 kB]
Get:21 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB]
Get:22 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libatspi2.0-dev amd64 2.26.0-2 [58.6 kB]
Get:23 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libatk-bridge2.0-dev amd64 2.26.0-1ubuntu1 [3,742 B]
Get:24 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libatk1.0-dev amd64 2.26.0-2ubuntu1 [79.9 kB]
Get:25 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libatk1.0-doc all 2.26.0-2ubuntu1 [93.6 kB]
Get:26 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libcairo-script-interpreter2 amd64 1.14.10-1ubuntu1 [54.4 kB]
Get:27 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libpng-dev amd64 1.6.34-1 [177 kB]
Get:28 http://us.archive.ubuntu.com/ubuntu artful-updates/main amd64 libfreetype6-dev amd64 2.8-0.2ubuntu2.1 [2,535 kB]
Get:29 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libfontconfig1-dev amd64 2.11.94-0ubuntu2 [659 kB]
Get:30 http://us.archive.ubuntu.com/ubuntu artful/main amd64 x11proto-render-dev all 2:0.11.1-2 [20.1 kB]
Get:31 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libxrender-dev amd64 1:0.9.10-1 [24.9 kB]
Get:32 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libice-dev amd64 2:1.0.9-2 [46.8 kB]
Get:33 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libsm-dev amd64 2:1.2.2-1 [16.2 kB]
Get:34 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libpixman-1-dev amd64 0.34.0-1 [245 kB]
Get:35 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libxcb-shm0-dev amd64 1.12-1ubuntu1 [6,578 B]
Get:36 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libcairo2-dev amd64 1.14.10-1ubuntu1 [601 kB]
Get:37 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 libcld2-0 amd64 0.0.0-git20150806-6 [5,203 kB]
Get:38 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libepoxy-dev amd64 1.3.1-3 [113 kB]
Get:39 http://us.archive.ubuntu.com/ubuntu artful-updates/main amd64 libgdk-pixbuf2.0-dev amd64 2.36.11-1ubuntu0.1 [46.7 kB]
Get:40 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libglib2.0-doc all 2.54.1-1ubuntu1 [1,372 kB]
Get:41 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libgraphite2-dev amd64 1.3.10-2 [14.6 kB]
Get:42 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libmircore-dev amd64 0.28.0+17.10.20171011.1-0ubuntu1 [26.7 kB]
Get:43 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libprotobuf-dev amd64 3.0.0-9ubuntu5 [958 kB]
Get:44 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libxkbcommon-dev amd64 0.7.1-2 [308 kB]
Get:45 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libmircommon-dev amd64 0.28.0+17.10.20171011.1-0ubuntu1 [13.9 kB]
Get:46 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libmircookie2 amd64 0.28.0+17.10.20171011.1-0ubuntu1 [24.8 kB]
Get:47 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libmircookie-dev amd64 0.28.0+17.10.20171011.1-0ubuntu1 [4,316 B]
Get:48 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libmirclient-dev amd64 0.28.0+17.10.20171011.1-0ubuntu1 [47.8 kB]
Get:49 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libharfbuzz-gobject0 amd64 1.4.2-1 [12.8 kB]
Get:50 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libharfbuzz-dev amd64 1.4.2-1 [278 kB]
Get:51 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libxft-dev amd64 2.3.2-1 [45.7 kB]
Get:52 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libpango1.0-dev amd64 1.40.12-1 [288 kB]
Get:53 http://us.archive.ubuntu.com/ubuntu artful/main amd64 x11proto-xinerama-dev all 1.2.1-2 [4,966 B]
Get:54 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libxinerama-dev amd64 2:1.1.3-1 [8,404 B]
Get:55 http://us.archive.ubuntu.com/ubuntu artful/main amd64 x11proto-randr-dev all 1.5.0-1 [33.7 kB]
Get:56 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libxrandr-dev amd64 2:1.5.1-1 [24.0 kB]
Get:57 http://us.archive.ubuntu.com/ubuntu artful-updates/main amd64 libxcursor-dev amd64 1:1.1.14-3ubuntu0.1 [26.5 kB]
Get:58 http://us.archive.ubuntu.com/ubuntu artful/main amd64 x11proto-composite-dev all 1:0.4.2-2 [10.5 kB]
Get:59 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libxcomposite-dev amd64 1:0.4.4-2 [9,136 B]
Get:60 http://us.archive.ubuntu.com/ubuntu artful-updates/main amd64 libgtk-3-dev amd64 3.22.25-0ubuntu0.1 [897 kB]
Get:61 http://us.archive.ubuntu.com/ubuntu artful-updates/main amd64 libgtk-3-doc all 3.22.25-0ubuntu0.1 [3,319 kB]
Get:62 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libgtkspell0 amd64 2.0.16-1.1ubuntu1 [11.1 kB]
Get:63 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 libluajit-5.1-common all 2.0.4+dfsg-1 [35.3 kB]
Get:64 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 libluajit-5.1-2 amd64 2.0.4+dfsg-1 [205 kB]
Get:65 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 liblucene++0v5 amd64 3.0.7-8build3 [1,784 kB]
Get:66 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB]
Get:67 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libmail-sendmail-perl all 0.79.16-2 [22.3 kB]
Get:68 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libpango1.0-doc all 1.40.12-1 [183 kB]
Get:69 http://us.archive.ubuntu.com/ubuntu artful/main amd64 libpng-tools amd64 1.6.34-1 [25.5 kB]
Get:70 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 libwxbase3.0-0v5 amd64 3.0.3.1+dfsg2-1 [954 kB]
Get:71 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 libwxgtk3.0-0v5 amd64 3.0.3.1+dfsg2-1 [4,180 kB]
Get:72 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 pandoc-data all 1.19.2.1.0-1 [40.1 kB]
Get:73 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 pandoc amd64 1.19.2.1.0-1 [6,604 kB]
Get:74 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 poedit-common all 2.0.4-1 [465 kB]
Get:75 http://us.archive.ubuntu.com/ubuntu artful/universe amd64 poedit amd64 2.0.4-1 [745 kB]
Fetched 38.0 MB in 5s (7,323 kB/s)
Extracting templates from packages: 100%
Selecting previously unselected package aspell-fr.
(Reading database ... 543021 files and directories currently installed.)
Preparing to unpack .../00-aspell-fr_0.50-3-8_all.deb ...
Unpacking aspell-fr (0.50-3-8) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../01-autopoint_0.19.8.1-4ubuntu1_all.deb ...
Unpacking autopoint (0.19.8.1-4ubuntu1) ...
Selecting previously unselected package colortest.
Preparing to unpack .../02-colortest_20110624-6_all.deb ...
Unpacking colortest (20110624-6) ...
Selecting previously unselected package dconf-editor.
Preparing to unpack .../03-dconf-editor_3.26.1-1_amd64.deb ...
Unpacking dconf-editor (3.26.1-1) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../04-dh-autoreconf_14_all.deb ...
Unpacking dh-autoreconf (14) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../05-libfile-stripnondeterminism-perl_0.038-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (0.038-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../06-dh-strip-nondeterminism_0.038-1_all.deb ...
Unpacking dh-strip-nondeterminism (0.038-1) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../07-po-debconf_1.0.20_all.deb ...
Unpacking po-debconf (1.0.20) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../08-debhelper_10.7.2ubuntu2_all.deb ...
Unpacking debhelper (10.7.2ubuntu2) ...
Selecting previously unselected package devhelp-common.
Preparing to unpack .../09-devhelp-common_3.26.0-1_all.deb ...
Unpacking devhelp-common (3.26.0-1) ...
Selecting previously unselected package libdevhelp-3-4:amd64.
Preparing to unpack .../10-libdevhelp-3-4_3.26.0-1_amd64.deb ...
Unpacking libdevhelp-3-4:amd64 (3.26.0-1) ...
Selecting previously unselected package devhelp.
Preparing to unpack .../11-devhelp_3.26.0-1_amd64.deb ...
Unpacking devhelp (3.26.0-1) ...
Selecting previously unselected package libgladeui-common.
Preparing to unpack .../12-libgladeui-common_3.20.0-3_all.deb ...
Unpacking libgladeui-common (3.20.0-3) ...
Selecting previously unselected package libgladeui-2-6:amd64.
Preparing to unpack .../13-libgladeui-2-6_3.20.0-3_amd64.deb ...
Unpacking libgladeui-2-6:amd64 (3.20.0-3) ...
Selecting previously unselected package glade.
Preparing to unpack .../14-glade_3.20.0-3_amd64.deb ...
Unpacking glade (3.20.0-3) ...
Selecting previously unselected package libarchive-cpio-perl.
Preparing to unpack .../15-libarchive-cpio-perl_0.10-1_all.deb ...
Unpacking libarchive-cpio-perl (0.10-1) ...
Selecting previously unselected package libdbus-1-dev:amd64.
Preparing to unpack .../16-libdbus-1-dev_1.10.22-1ubuntu1_amd64.deb ...
Unpacking libdbus-1-dev:amd64 (1.10.22-1ubuntu1) ...
Selecting previously unselected package libxi-dev:amd64.
Preparing to unpack .../17-libxi-dev_2%3a1.7.9-1_amd64.deb ...
Unpacking libxi-dev:amd64 (2:1.7.9-1) ...
Selecting previously unselected package x11proto-record-dev.
Preparing to unpack .../18-x11proto-record-dev_1.14.2-1_all.deb ...
Unpacking x11proto-record-dev (1.14.2-1) ...
Selecting previously unselected package libxtst-dev:amd64.
Preparing to unpack .../19-libxtst-dev_2%3a1.2.3-1_amd64.deb ...
Unpacking libxtst-dev:amd64 (2:1.2.3-1) ...
Selecting previously unselected package libatspi2.0-dev:amd64.
Preparing to unpack .../20-libatspi2.0-dev_2.26.0-2_amd64.deb ...
Unpacking libatspi2.0-dev:amd64 (2.26.0-2) ...
Selecting previously unselected package libatk-bridge2.0-dev:amd64.
Preparing to unpack .../21-libatk-bridge2.0-dev_2.26.0-1ubuntu1_amd64.deb ...
Unpacking libatk-bridge2.0-dev:amd64 (2.26.0-1ubuntu1) ...
Selecting previously unselected package libatk1.0-dev:amd64.
Preparing to unpack .../22-libatk1.0-dev_2.26.0-2ubuntu1_amd64.deb ...
Unpacking libatk1.0-dev:amd64 (2.26.0-2ubuntu1) ...
Selecting previously unselected package libatk1.0-doc.
Preparing to unpack .../23-libatk1.0-doc_2.26.0-2ubuntu1_all.deb ...
Unpacking libatk1.0-doc (2.26.0-2ubuntu1) ...
Selecting previously unselected package libcairo-script-interpreter2:amd64.
Preparing to unpack .../24-libcairo-script-interpreter2_1.14.10-1ubuntu1_amd64.deb ...
Unpacking libcairo-script-interpreter2:amd64 (1.14.10-1ubuntu1) ...
Selecting previously unselected package libpng-dev:amd64.
Preparing to unpack .../25-libpng-dev_1.6.34-1_amd64.deb ...
Unpacking libpng-dev:amd64 (1.6.34-1) ...
Selecting previously unselected package libfreetype6-dev:amd64.
Preparing to unpack .../26-libfreetype6-dev_2.8-0.2ubuntu2.1_amd64.deb ...
Unpacking libfreetype6-dev:amd64 (2.8-0.2ubuntu2.1) ...
Selecting previously unselected package libfontconfig1-dev:amd64.
Preparing to unpack .../27-libfontconfig1-dev_2.11.94-0ubuntu2_amd64.deb ...
Unpacking libfontconfig1-dev:amd64 (2.11.94-0ubuntu2) ...
Selecting previously unselected package x11proto-render-dev.
Preparing to unpack .../28-x11proto-render-dev_2%3a0.11.1-2_all.deb ...
Unpacking x11proto-render-dev (2:0.11.1-2) ...
Selecting previously unselected package libxrender-dev:amd64.
Preparing to unpack .../29-libxrender-dev_1%3a0.9.10-1_amd64.deb ...
Unpacking libxrender-dev:amd64 (1:0.9.10-1) ...
Selecting previously unselected package libice-dev:amd64.
Preparing to unpack .../30-libice-dev_2%3a1.0.9-2_amd64.deb ...
Unpacking libice-dev:amd64 (2:1.0.9-2) ...
Selecting previously unselected package libsm-dev:amd64.
Preparing to unpack .../31-libsm-dev_2%3a1.2.2-1_amd64.deb ...
Unpacking libsm-dev:amd64 (2:1.2.2-1) ...
Selecting previously unselected package libpixman-1-dev.
Preparing to unpack .../32-libpixman-1-dev_0.34.0-1_amd64.deb ...
Unpacking libpixman-1-dev (0.34.0-1) ...
Selecting previously unselected package libxcb-shm0-dev:amd64.
Preparing to unpack .../33-libxcb-shm0-dev_1.12-1ubuntu1_amd64.deb ...
Unpacking libxcb-shm0-dev:amd64 (1.12-1ubuntu1) ...
Selecting previously unselected package libcairo2-dev.
Preparing to unpack .../34-libcairo2-dev_1.14.10-1ubuntu1_amd64.deb ...
Unpacking libcairo2-dev (1.14.10-1ubuntu1) ...
Selecting previously unselected package libcld2-0:amd64.
Preparing to unpack .../35-libcld2-0_0.0.0-git20150806-6_amd64.deb ...
Unpacking libcld2-0:amd64 (0.0.0-git20150806-6) ...
Selecting previously unselected package libepoxy-dev:amd64.
Preparing to unpack .../36-libepoxy-dev_1.3.1-3_amd64.deb ...
Unpacking libepoxy-dev:amd64 (1.3.1-3) ...
Selecting previously unselected package libgdk-pixbuf2.0-dev.
Preparing to unpack .../37-libgdk-pixbuf2.0-dev_2.36.11-1ubuntu0.1_amd64.deb ...
Unpacking libgdk-pixbuf2.0-dev (2.36.11-1ubuntu0.1) ...
Selecting previously unselected package libglib2.0-doc.
Preparing to unpack .../38-libglib2.0-doc_2.54.1-1ubuntu1_all.deb ...
Unpacking libglib2.0-doc (2.54.1-1ubuntu1) ...
Selecting previously unselected package libgraphite2-dev.
Preparing to unpack .../39-libgraphite2-dev_1.3.10-2_amd64.deb ...
Unpacking libgraphite2-dev (1.3.10-2) ...
Selecting previously unselected package libmircore-dev:amd64.
Preparing to unpack .../40-libmircore-dev_0.28.0+17.10.20171011.1-0ubuntu1_amd64.deb ...
Unpacking libmircore-dev:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Selecting previously unselected package libprotobuf-dev:amd64.
Preparing to unpack .../41-libprotobuf-dev_3.0.0-9ubuntu5_amd64.deb ...
Unpacking libprotobuf-dev:amd64 (3.0.0-9ubuntu5) ...
Selecting previously unselected package libxkbcommon-dev.
Preparing to unpack .../42-libxkbcommon-dev_0.7.1-2_amd64.deb ...
Unpacking libxkbcommon-dev (0.7.1-2) ...
Selecting previously unselected package libmircommon-dev:amd64.
Preparing to unpack .../43-libmircommon-dev_0.28.0+17.10.20171011.1-0ubuntu1_amd64.deb ...
Unpacking libmircommon-dev:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Selecting previously unselected package libmircookie2:amd64.
Preparing to unpack .../44-libmircookie2_0.28.0+17.10.20171011.1-0ubuntu1_amd64.deb ...
Unpacking libmircookie2:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Selecting previously unselected package libmircookie-dev:amd64.
Preparing to unpack .../45-libmircookie-dev_0.28.0+17.10.20171011.1-0ubuntu1_amd64.deb ...
Unpacking libmircookie-dev:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Selecting previously unselected package libmirclient-dev:amd64.
Preparing to unpack .../46-libmirclient-dev_0.28.0+17.10.20171011.1-0ubuntu1_amd64.deb ...
Unpacking libmirclient-dev:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Selecting previously unselected package libharfbuzz-gobject0:amd64.
Preparing to unpack .../47-libharfbuzz-gobject0_1.4.2-1_amd64.deb ...
Unpacking libharfbuzz-gobject0:amd64 (1.4.2-1) ...
Selecting previously unselected package libharfbuzz-dev:amd64.
Preparing to unpack .../48-libharfbuzz-dev_1.4.2-1_amd64.deb ...
Unpacking libharfbuzz-dev:amd64 (1.4.2-1) ...
Selecting previously unselected package libxft-dev.
Preparing to unpack .../49-libxft-dev_2.3.2-1_amd64.deb ...
Unpacking libxft-dev (2.3.2-1) ...
Selecting previously unselected package libpango1.0-dev.
Preparing to unpack .../50-libpango1.0-dev_1.40.12-1_amd64.deb ...
Unpacking libpango1.0-dev (1.40.12-1) ...
Selecting previously unselected package x11proto-xinerama-dev.
Preparing to unpack .../51-x11proto-xinerama-dev_1.2.1-2_all.deb ...
Unpacking x11proto-xinerama-dev (1.2.1-2) ...
Selecting previously unselected package libxinerama-dev:amd64.
Preparing to unpack .../52-libxinerama-dev_2%3a1.1.3-1_amd64.deb ...
Unpacking libxinerama-dev:amd64 (2:1.1.3-1) ...
Selecting previously unselected package x11proto-randr-dev.
Preparing to unpack .../53-x11proto-randr-dev_1.5.0-1_all.deb ...
Unpacking x11proto-randr-dev (1.5.0-1) ...
Selecting previously unselected package libxrandr-dev:amd64.
Preparing to unpack .../54-libxrandr-dev_2%3a1.5.1-1_amd64.deb ...
Unpacking libxrandr-dev:amd64 (2:1.5.1-1) ...
Selecting previously unselected package libxcursor-dev:amd64.
Preparing to unpack .../55-libxcursor-dev_1%3a1.1.14-3ubuntu0.1_amd64.deb ...
Unpacking libxcursor-dev:amd64 (1:1.1.14-3ubuntu0.1) ...
Selecting previously unselected package x11proto-composite-dev.
Preparing to unpack .../56-x11proto-composite-dev_1%3a0.4.2-2_all.deb ...
Unpacking x11proto-composite-dev (1:0.4.2-2) ...
Selecting previously unselected package libxcomposite-dev:amd64.
Preparing to unpack .../57-libxcomposite-dev_1%3a0.4.4-2_amd64.deb ...
Unpacking libxcomposite-dev:amd64 (1:0.4.4-2) ...
Selecting previously unselected package wayland-protocols.
Preparing to unpack .../58-wayland-protocols_1.11-1~17.10~xedgers1_all.deb ...
Unpacking wayland-protocols (1.11-1~17.10~xedgers1) ...
Selecting previously unselected package libgtk-3-dev:amd64.
Preparing to unpack .../59-libgtk-3-dev_3.22.25-0ubuntu0.1_amd64.deb ...
Unpacking libgtk-3-dev:amd64 (3.22.25-0ubuntu0.1) ...
Selecting previously unselected package libgtk-3-doc.
Preparing to unpack .../60-libgtk-3-doc_3.22.25-0ubuntu0.1_all.deb ...
Unpacking libgtk-3-doc (3.22.25-0ubuntu0.1) ...
Selecting previously unselected package libgtkspell0.
Preparing to unpack .../61-libgtkspell0_2.0.16-1.1ubuntu1_amd64.deb ...
Unpacking libgtkspell0 (2.0.16-1.1ubuntu1) ...
Selecting previously unselected package libluajit-5.1-common.
Preparing to unpack .../62-libluajit-5.1-common_2.0.4+dfsg-1_all.deb ...
Unpacking libluajit-5.1-common (2.0.4+dfsg-1) ...
Selecting previously unselected package libluajit-5.1-2:amd64.
Preparing to unpack .../63-libluajit-5.1-2_2.0.4+dfsg-1_amd64.deb ...
Unpacking libluajit-5.1-2:amd64 (2.0.4+dfsg-1) ...
Selecting previously unselected package liblucene++0v5:amd64.
Preparing to unpack .../64-liblucene++0v5_3.0.7-8build3_amd64.deb ...
Unpacking liblucene++0v5:amd64 (3.0.7-8build3) ...
Selecting previously unselected package libsys-hostname-long-perl.
Preparing to unpack .../65-libsys-hostname-long-perl_1.5-1_all.deb ...
Unpacking libsys-hostname-long-perl (1.5-1) ...
Selecting previously unselected package libmail-sendmail-perl.
Preparing to unpack .../66-libmail-sendmail-perl_0.79.16-2_all.deb ...
Unpacking libmail-sendmail-perl (0.79.16-2) ...
Selecting previously unselected package libpango1.0-doc.
Preparing to unpack .../67-libpango1.0-doc_1.40.12-1_all.deb ...
Unpacking libpango1.0-doc (1.40.12-1) ...
Selecting previously unselected package libpng-tools.
Preparing to unpack .../68-libpng-tools_1.6.34-1_amd64.deb ...
Unpacking libpng-tools (1.6.34-1) ...
Selecting previously unselected package libwxbase3.0-0v5:amd64.
Preparing to unpack .../69-libwxbase3.0-0v5_3.0.3.1+dfsg2-1_amd64.deb ...
Unpacking libwxbase3.0-0v5:amd64 (3.0.3.1+dfsg2-1) ...
Selecting previously unselected package libwxgtk3.0-0v5:amd64.
Preparing to unpack .../70-libwxgtk3.0-0v5_3.0.3.1+dfsg2-1_amd64.deb ...
Unpacking libwxgtk3.0-0v5:amd64 (3.0.3.1+dfsg2-1) ...
Selecting previously unselected package pandoc-data.
Preparing to unpack .../71-pandoc-data_1.19.2.1.0-1_all.deb ...
Unpacking pandoc-data (1.19.2.1.0-1) ...
Selecting previously unselected package pandoc.
Preparing to unpack .../72-pandoc_1.19.2.1.0-1_amd64.deb ...
Unpacking pandoc (1.19.2.1.0-1) ...
Selecting previously unselected package poedit-common.
Preparing to unpack .../73-poedit-common_2.0.4-1_all.deb ...
Unpacking poedit-common (2.0.4-1) ...
Selecting previously unselected package poedit.
Preparing to unpack .../74-poedit_2.0.4-1_amd64.deb ...
Unpacking poedit (2.0.4-1) ...
Setting up libglib2.0-doc (2.54.1-1ubuntu1) ...
Setting up libdbus-1-dev:amd64 (1.10.22-1ubuntu1) ...
Setting up colortest (20110624-6) ...
Setting up libxkbcommon-dev (0.7.1-2) ...
Processing triggers for gconf2 (3.2.6-4ubuntu1) ...
Setting up libluajit-5.1-common (2.0.4+dfsg-1) ...
Setting up libpango1.0-doc (1.40.12-1) ...
Setting up po-debconf (1.0.20) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Setting up libmircore-dev:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu3) ...
Setting up libcairo-script-interpreter2:amd64 (1.14.10-1ubuntu1) ...
Setting up libpng-tools (1.6.34-1) ...
Processing triggers for libglib2.0-0:amd64 (2.54.1-1ubuntu1) ...
Setting up libatk1.0-doc (2.26.0-2ubuntu1) ...
Setting up libprotobuf-dev:amd64 (3.0.0-9ubuntu5) ...
Setting up libxcb-shm0-dev:amd64 (1.12-1ubuntu1) ...
Setting up pandoc-data (1.19.2.1.0-1) ...
Setting up libarchive-cpio-perl (0.10-1) ...
Setting up aspell-fr (0.50-3-8) ...
Setting up libatk1.0-dev:amd64 (2.26.0-2ubuntu1) ...
Setting up libcld2-0:amd64 (0.0.0-git20150806-6) ...
Setting up x11proto-record-dev (1.14.2-1) ...
Setting up libwxbase3.0-0v5:amd64 (3.0.3.1+dfsg2-1) ...
Setting up libgladeui-common (3.20.0-3) ...
Setting up libsys-hostname-long-perl (1.5-1) ...
Setting up poedit-common (2.0.4-1) ...
Setting up libgtkspell0 (2.0.16-1.1ubuntu1) ...
Setting up dconf-editor (3.26.1-1) ...
Setting up libmircookie2:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Setting up libmail-sendmail-perl (0.79.16-2) ...
Processing triggers for libc-bin (2.26-0ubuntu2.1) ...
Setting up liblucene++0v5:amd64 (3.0.7-8build3) ...
Setting up x11proto-xinerama-dev (1.2.1-2) ...
Setting up libice-dev:amd64 (2:1.0.9-2) ...
Setting up libpixman-1-dev (0.34.0-1) ...
Processing triggers for doc-base (0.10.7) ...
Processing 10 added doc-base files...
Registering documents with scrollkeeper...
Setting up libmircommon-dev:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Setting up x11proto-randr-dev (1.5.0-1) ...
Setting up libxinerama-dev:amd64 (2:1.1.3-1) ...
Setting up libgtk-3-doc (3.22.25-0ubuntu0.1) ...
Setting up libluajit-5.1-2:amd64 (2.0.4+dfsg-1) ...
Processing triggers for man-db (2.7.6.1-2) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Setting up libxi-dev:amd64 (2:1.7.9-1) ...
Setting up libpng-dev:amd64 (1.6.34-1) ...
Setting up x11proto-render-dev (2:0.11.1-2) ...
Setting up devhelp-common (3.26.0-1) ...
Processing triggers for hicolor-icon-theme (0.17-1) ...
Setting up libgraphite2-dev (1.3.10-2) ...
Setting up wayland-protocols (1.11-1~17.10~xedgers1) ...
Setting up libharfbuzz-gobject0:amd64 (1.4.2-1) ...
Setting up x11proto-composite-dev (1:0.4.2-2) ...
Setting up autopoint (0.19.8.1-4ubuntu1) ...
Setting up libepoxy-dev:amd64 (1.3.1-3) ...
Setting up libfile-stripnondeterminism-perl (0.038-1) ...
Setting up libsm-dev:amd64 (2:1.2.2-1) ...
Setting up libgladeui-2-6:amd64 (3.20.0-3) ...
Setting up pandoc (1.19.2.1.0-1) ...
Setting up libxcomposite-dev:amd64 (1:0.4.4-2) ...
Setting up libxrender-dev:amd64 (1:0.9.10-1) ...
Setting up libwxgtk3.0-0v5:amd64 (3.0.3.1+dfsg2-1) ...
Setting up libmircookie-dev:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Setting up libxtst-dev:amd64 (2:1.2.3-1) ...
Setting up poedit (2.0.4-1) ...
update-alternatives: using /usr/bin/poeditor to provide /usr/bin/poedit (poedit) in auto mode
Setting up libgdk-pixbuf2.0-dev (2.36.11-1ubuntu0.1) ...
Setting up libdevhelp-3-4:amd64 (3.26.0-1) ...
Setting up libfreetype6-dev:amd64 (2.8-0.2ubuntu2.1) ...
Setting up libharfbuzz-dev:amd64 (1.4.2-1) ...
Setting up glade (3.20.0-3) ...
Setting up libfontconfig1-dev:amd64 (2.11.94-0ubuntu2) ...
Setting up libxcursor-dev:amd64 (1:1.1.14-3ubuntu0.1) ...
Setting up libxrandr-dev:amd64 (2:1.5.1-1) ...
Setting up libcairo2-dev (1.14.10-1ubuntu1) ...
Setting up devhelp (3.26.0-1) ...
Setting up libmirclient-dev:amd64 (0.28.0+17.10.20171011.1-0ubuntu1) ...
Setting up libatspi2.0-dev:amd64 (2.26.0-2) ...
Setting up libxft-dev (2.3.2-1) ...
Setting up libatk-bridge2.0-dev:amd64 (2.26.0-1ubuntu1) ...
Setting up libpango1.0-dev (1.40.12-1) ...
Setting up libgtk-3-dev:amd64 (3.22.25-0ubuntu0.1) ...
Setting up dh-autoreconf (14) ...
Setting up debhelper (10.7.2ubuntu2) ...
Setting up dh-strip-nondeterminism (0.038-1) ...
Processing triggers for dictionaries-common (1.27.2) ...
aspell-autobuildhash: processing: fr [fr-40-only].
aspell-autobuildhash: processing: fr [fr-60-only].
aspell-autobuildhash: processing: fr [fr-80-only].
aspell-autobuildhash: processing: fr [fr_CH-only].
Processing triggers for libc-bin (2.26-0ubuntu2.1) ...
jason@jason-laptop:~/guake$ /usr/local/bin/guake 
Guake not running, starting it
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 175, in activate_name_owner
    return self.get_name_owner(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 361, in get_name_owner
    's', (bus_name,), **keywords)
  File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.guake3.RemoteControl': no such name

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 270, in main
    remote_object = bus.get_object(DBUS_NAME, DBUS_PATH)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 241, in get_object
    follow_name_owner_changes=follow_name_owner_changes)
  File "/usr/lib/python3/dist-packages/dbus/proxies.py", line 248, in __init__
    self._named_service = conn.activate_name_owner(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 180, in activate_name_owner
    self.start_service_by_name(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 278, in start_service_by_name
    'su', (bus_name, flags)))
  File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.guake3.RemoteControl was not provided by any .service files

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/bin/guake", line 10, in <module>
    sys.exit(exec_main())
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 385, in exec_main
    if not main():
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 284, in main
    from guake.guake_app import Guake
  File "/home/jason/.local/lib/python3.6/site-packages/guake/guake_app.py", line 55, in <module>
    from guake.about import AboutDialog
  File "/home/jason/.local/lib/python3.6/site-packages/guake/about.py", line 28, in <module>
    from guake.common import gladefile
  File "/home/jason/.local/lib/python3.6/site-packages/guake/common.py", line 30, in <module>
    from guake.paths import GLADE_DIR
ModuleNotFoundError: No module named 'guake.paths'
jason@jason-laptop:~/guake$ 
aichingm commented 6 years ago

After installing the deps you have to run make and sudo make install again

JasonDictos commented 6 years ago
jason@jason-laptop:~/guake$ sudo make install
install -Dm644 "/home/jason/guake/data/guake.desktop" "//usr/local/share/applications/guake.desktop"
install -Dm644 "/home/jason/guake/data/guake-prefs.desktop" "//usr/local/share/applications/guake-prefs.desktop"
mkdir -p //usr/local/share/guake/pixmaps
install -Dm644 /home/jason/guake/data/pixmaps/*.png "//usr/local/share/guake/pixmaps/"
install -Dm644 /home/jason/guake/data/pixmaps/*.svg "//usr/local/share/guake/pixmaps/"
install -Dm644 /home/jason/guake/data/pixmaps/guake.png "//usr/local/share/pixmaps/guake.png"
mkdir -p //usr/local/share/guake
mkdir -p //usr/local/share/guake
install -Dm644  /home/jason/guake/data/*.glade "//usr/local/share/guake"
mkdir -p //usr/local/share/guake
install -Dm644 "/home/jason/guake/data/autostart-guake.desktop" "//usr/local/share/guake"
mkdir -p //usr/local/share/glib-2.0/schemas
install -Dm644 "/home/jason/guake/data/org.guake.gschema.xml" "//usr/local/share/glib-2.0/schemas/"
if [ 1 = 1 ]; then glib-compile-schemas //usr/local/share/glib-2.0/schemas; fi
for f in $(find po -iname "*.mo"); do \
        l="${f%%.*}"; \
        lb=$(basename $l); \
        install -Dm644 "$f" "//usr/local/share/locale/$lb/LC_MESSAGES/guake.mo"; \
done;
# you probably want to execute this target with sudo:
# sudo make install
Installing from on your system is not recommended.
Please prefer you application package manager (apt, yum, ...)
Ignoring typing: markers 'python_version < "3.5"' don't match your environment
Requirement already satisfied: pbr in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 13))
running install
[pbr] Writing ChangeLog
[pbr] Generating ChangeLog
[pbr] ChangeLog complete (0.0s)
[pbr] Generating AUTHORS
[pbr] AUTHORS complete (0.0s)
running build
running build_py
creating build
creating build/lib
creating build/lib/guake
creating build/lib/guake/tests
copying guake/tests/__init__.py -> build/lib/guake/tests
copying guake/tests/test_quick_open.py -> build/lib/guake/tests                                                                                                                                                    
copying guake/tests/test_guake.py -> build/lib/guake/tests                                                                                                                                                         
copying guake/__init__.py -> build/lib/guake                                                                                                                                                                       
copying guake/guake_logging.py -> build/lib/guake                                                                                                                                                                  
copying guake/keybindings.py -> build/lib/guake                                                                                                                                                                    
copying guake/guake_app.py -> build/lib/guake                                                                                                                                                                      
copying guake/palettes.py -> build/lib/guake                                                                                                                                                                       
copying guake/terminal.py -> build/lib/guake                                                                                                                                                                       
copying guake/globals.py -> build/lib/guake                                                                                                                                                                        
copying guake/dbusiface.py -> build/lib/guake                                                                                                                                                                      
copying guake/paths.py -> build/lib/guake                                                                                                                                                                          
copying guake/notifier.py -> build/lib/guake                                                                                                                                                                       
copying guake/common.py -> build/lib/guake                                                                                                                                                                         
copying guake/guake_notebook.py -> build/lib/guake                                                                                                                                                                 
copying guake/settings.py -> build/lib/guake                                                                                                                                                                       
copying guake/about.py -> build/lib/guake                                                                                                                                                                          
copying guake/theme.py -> build/lib/guake                                                                                                                                                                          
copying guake/simplegladeapp.py -> build/lib/guake                                                                                                                                                                 
copying guake/main.py -> build/lib/guake                                                                                                                                                                           
copying guake/gsettings.py -> build/lib/guake
copying guake/utils.py -> build/lib/guake
copying guake/prefs.py -> build/lib/guake
running egg_info
creating Guake.egg-info
writing pbr to Guake.egg-info/pbr.json
writing Guake.egg-info/PKG-INFO
writing dependency_links to Guake.egg-info/dependency_links.txt
writing entry points to Guake.egg-info/entry_points.txt
writing requirements to Guake.egg-info/requires.txt
writing top-level names to Guake.egg-info/top_level.txt
[pbr] Processing SOURCES.txt
writing manifest file 'Guake.egg-info/SOURCES.txt'
[pbr] In git context, generating filelist from git
warning: no previously-included files found matching '.gitreview'
warning: no previously-included files matching '*.pyc' found anywhere in distribution
writing manifest file 'Guake.egg-info/SOURCES.txt'
copying guake/paths.py.in -> build/lib/guake
running install_lib
copying build/lib/guake/paths.py -> /usr/local/lib/python3.6/dist-packages/guake
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/paths.py to paths.cpython-36.pyc
writing byte-compilation script '/tmp/tmpmdmdqdb5.py'
/usr/bin/python3 /tmp/tmpmdmdqdb5.py
removing /tmp/tmpmdmdqdb5.py
running install_egg_info
removing '/usr/local/lib/python3.6/dist-packages/Guake-3.2.1.dev29-py3.6.egg-info' (and everything under it)
Copying Guake.egg-info to /usr/local/lib/python3.6/dist-packages/Guake-3.2.1.dev29-py3.6.egg-info
running install_scripts
Installing guake script to /usr/local/bin
removed 'build/lib/guake/tests/__init__.py'
removed 'build/lib/guake/tests/test_quick_open.py'
removed 'build/lib/guake/tests/test_guake.py'
removed directory 'build/lib/guake/tests'
removed 'build/lib/guake/__init__.py'
removed 'build/lib/guake/guake_logging.py'
removed 'build/lib/guake/keybindings.py'
removed 'build/lib/guake/guake_app.py'
removed 'build/lib/guake/palettes.py'
removed 'build/lib/guake/terminal.py'
removed 'build/lib/guake/globals.py'
removed 'build/lib/guake/dbusiface.py'
removed 'build/lib/guake/paths.py'
removed 'build/lib/guake/notifier.py'
removed 'build/lib/guake/common.py'
removed 'build/lib/guake/guake_notebook.py'
removed 'build/lib/guake/settings.py'
removed 'build/lib/guake/about.py'
removed 'build/lib/guake/theme.py'
removed 'build/lib/guake/paths.py.in'
removed 'build/lib/guake/simplegladeapp.py'
removed 'build/lib/guake/main.py'
removed 'build/lib/guake/gsettings.py'
removed 'build/lib/guake/utils.py'
removed 'build/lib/guake/prefs.py'
removed directory 'build/lib/guake'
removed directory 'build/lib'
removed directory 'build'
removed 'Guake.egg-info/entry_points.txt'
removed 'Guake.egg-info/not-zip-safe'
removed 'Guake.egg-info/PKG-INFO'
removed 'Guake.egg-info/SOURCES.txt'
removed 'Guake.egg-info/dependency_links.txt'
removed 'Guake.egg-info/requires.txt'
removed 'Guake.egg-info/pbr.json'
removed 'Guake.egg-info/top_level.txt'
removed directory 'Guake.egg-info'
jason@jason-laptop:~/guake$ /usr/local/bin/guake 
Guake not running, starting it
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 175, in activate_name_owner
    return self.get_name_owner(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 361, in get_name_owner
    's', (bus_name,), **keywords)
  File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.guake3.RemoteControl': no such name

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 270, in main
    remote_object = bus.get_object(DBUS_NAME, DBUS_PATH)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 241, in get_object
    follow_name_owner_changes=follow_name_owner_changes)
  File "/usr/lib/python3/dist-packages/dbus/proxies.py", line 248, in __init__
    self._named_service = conn.activate_name_owner(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 180, in activate_name_owner
    self.start_service_by_name(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 278, in start_service_by_name
    'su', (bus_name, flags)))
  File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.guake3.RemoteControl was not provided by any .service files

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/bin/guake", line 10, in <module>
    sys.exit(exec_main())
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 385, in exec_main
    if not main():
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 284, in main
    from guake.guake_app import Guake
  File "/home/jason/.local/lib/python3.6/site-packages/guake/guake_app.py", line 55, in <module>
    from guake.about import AboutDialog
  File "/home/jason/.local/lib/python3.6/site-packages/guake/about.py", line 28, in <module>
    from guake.common import gladefile
  File "/home/jason/.local/lib/python3.6/site-packages/guake/common.py", line 30, in <module>
    from guake.paths import GLADE_DIR
ModuleNotFoundError: No module named 'guake.paths'
jason@jason-laptop:~/guake$ 
aichingm commented 6 years ago

have you run make before sudo make install?

JasonDictos commented 6 years ago
jason@jason-laptop:~/guake$ make
generating desktop files
cp -f guake/paths.py.in guake/paths.py
# Generic
# Dev environment:
sed -i -e 's|{{ LOCALE_DIR }}|/usr/local/share/locale|g' guake/paths.py
sed -i -e 's|{{ IMAGE_DIR }}|/home/jason/guake/data/pixmaps|g' guake/paths.py
sed -i -e 's|{{ GUAKE_THEME_DIR }}|/home/jason/guake/data/themes|g' guake/paths.py
sed -i -e 's|{{ GLADE_DIR }}|/home/jason/guake/data|g' guake/paths.py
sed -i -e 's|{{ SCHEMA_DIR }}|/home/jason/guake/data|g' guake/paths.py
generating po/fa.po
generating po/hu.po
generating po/pt_BR.po
generating po/ko.po
generating po/es.po
generating po/ja.po
generating po/pl.po
generating po/pa.po
generating po/zh_CN.po
generating po/fr.po
generating po/it.po
generating po/nl.po
generating po/ca.po
generating po/nb.po
generating po/hr.po
generating po/sv.po
generating po/gl.po
generating po/tr.po
generating po/el.po
generating po/de.po
generating po/ru.po
generating po/uk.po
generating po/id.po
generating po/cs.po
rm -f /home/jason/guake/data/gschemas.compiled
glib-compile-schemas --strict /home/jason/guake/data
# 'make' target, so users can install guake without need to install the 'dev' dependencies
jason@jason-laptop:~/guake$ sudo make install                                                                                                                                                                      
install -Dm644 "/home/jason/guake/data/guake.desktop" "//usr/local/share/applications/guake.desktop"                                                                                                               
install -Dm644 "/home/jason/guake/data/guake-prefs.desktop" "//usr/local/share/applications/guake-prefs.desktop"                                                                                                   
mkdir -p //usr/local/share/guake/pixmaps                                                                                                                                                                           
install -Dm644 /home/jason/guake/data/pixmaps/*.png "//usr/local/share/guake/pixmaps/"                                                                                                                             
install -Dm644 /home/jason/guake/data/pixmaps/*.svg "//usr/local/share/guake/pixmaps/"                                                                                                                             
install -Dm644 /home/jason/guake/data/pixmaps/guake.png "//usr/local/share/pixmaps/guake.png"                                                                                                                      
mkdir -p //usr/local/share/guake                                                                                                                                                                                   
mkdir -p //usr/local/share/guake                                                                                                                                                                                   
install -Dm644  /home/jason/guake/data/*.glade "//usr/local/share/guake"                                                                                                                                           
mkdir -p //usr/local/share/guake                                                                                                                                                                                   
install -Dm644 "/home/jason/guake/data/autostart-guake.desktop" "//usr/local/share/guake"                                                                                                                          
mkdir -p //usr/local/share/glib-2.0/schemas                                                                                                                                                                        
install -Dm644 "/home/jason/guake/data/org.guake.gschema.xml" "//usr/local/share/glib-2.0/schemas/"                                                                                                                
if [ 1 = 1 ]; then glib-compile-schemas //usr/local/share/glib-2.0/schemas; fi                                                                                                                                     
for f in $(find po -iname "*.mo"); do \                                                                                                                                                                            
        l="${f%%.*}"; \                                                                                                                                                                                            
        lb=$(basename $l); \                                                                                                                                                                                       
        install -Dm644 "$f" "//usr/local/share/locale/$lb/LC_MESSAGES/guake.mo"; \                                                                                                                                 
done;
# you probably want to execute this target with sudo:
# sudo make install
Installing from on your system is not recommended.
Please prefer you application package manager (apt, yum, ...)
Ignoring typing: markers 'python_version < "3.5"' don't match your environment
Requirement already satisfied: pbr in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 13))
running install
[pbr] Writing ChangeLog
[pbr] Generating ChangeLog
[pbr] ChangeLog complete (0.0s)
[pbr] Generating AUTHORS
[pbr] AUTHORS complete (0.0s)
running build
running build_py
creating build
creating build/lib
creating build/lib/guake
creating build/lib/guake/tests
copying guake/tests/__init__.py -> build/lib/guake/tests
copying guake/tests/test_quick_open.py -> build/lib/guake/tests
copying guake/tests/test_guake.py -> build/lib/guake/tests
copying guake/__init__.py -> build/lib/guake
copying guake/guake_logging.py -> build/lib/guake
copying guake/keybindings.py -> build/lib/guake
copying guake/guake_app.py -> build/lib/guake
copying guake/palettes.py -> build/lib/guake
copying guake/terminal.py -> build/lib/guake
copying guake/globals.py -> build/lib/guake
copying guake/dbusiface.py -> build/lib/guake
copying guake/paths.py -> build/lib/guake
copying guake/notifier.py -> build/lib/guake
copying guake/common.py -> build/lib/guake
copying guake/guake_notebook.py -> build/lib/guake
copying guake/settings.py -> build/lib/guake
copying guake/about.py -> build/lib/guake
copying guake/theme.py -> build/lib/guake
copying guake/simplegladeapp.py -> build/lib/guake
copying guake/main.py -> build/lib/guake
copying guake/gsettings.py -> build/lib/guake
copying guake/utils.py -> build/lib/guake
copying guake/prefs.py -> build/lib/guake
running egg_info
creating Guake.egg-info
writing pbr to Guake.egg-info/pbr.json
writing Guake.egg-info/PKG-INFO
writing dependency_links to Guake.egg-info/dependency_links.txt
writing entry points to Guake.egg-info/entry_points.txt
writing requirements to Guake.egg-info/requires.txt
writing top-level names to Guake.egg-info/top_level.txt
[pbr] Processing SOURCES.txt
writing manifest file 'Guake.egg-info/SOURCES.txt'
[pbr] In git context, generating filelist from git
warning: no previously-included files found matching '.gitreview'
warning: no previously-included files matching '*.pyc' found anywhere in distribution
writing manifest file 'Guake.egg-info/SOURCES.txt'
copying guake/paths.py.in -> build/lib/guake
running install_lib
copying build/lib/guake/paths.py -> /usr/local/lib/python3.6/dist-packages/guake
byte-compiling /usr/local/lib/python3.6/dist-packages/guake/paths.py to paths.cpython-36.pyc
writing byte-compilation script '/tmp/tmpwz1eadxl.py'
/usr/bin/python3 /tmp/tmpwz1eadxl.py
removing /tmp/tmpwz1eadxl.py
running install_egg_info
removing '/usr/local/lib/python3.6/dist-packages/Guake-3.2.1.dev29-py3.6.egg-info' (and everything under it)
Copying Guake.egg-info to /usr/local/lib/python3.6/dist-packages/Guake-3.2.1.dev29-py3.6.egg-info
running install_scripts
Installing guake script to /usr/local/bin
removed 'build/lib/guake/tests/__init__.py'
removed 'build/lib/guake/tests/test_quick_open.py'
removed 'build/lib/guake/tests/test_guake.py'
removed directory 'build/lib/guake/tests'
removed 'build/lib/guake/__init__.py'
removed 'build/lib/guake/guake_logging.py'
removed 'build/lib/guake/keybindings.py'
removed 'build/lib/guake/guake_app.py'
removed 'build/lib/guake/palettes.py'
removed 'build/lib/guake/terminal.py'
removed 'build/lib/guake/globals.py'
removed 'build/lib/guake/dbusiface.py'
removed 'build/lib/guake/paths.py'
removed 'build/lib/guake/notifier.py'
removed 'build/lib/guake/common.py'
removed 'build/lib/guake/guake_notebook.py'
removed 'build/lib/guake/settings.py'
removed 'build/lib/guake/about.py'
removed 'build/lib/guake/theme.py'
removed 'build/lib/guake/paths.py.in'
removed 'build/lib/guake/simplegladeapp.py'
removed 'build/lib/guake/main.py'
removed 'build/lib/guake/gsettings.py'
removed 'build/lib/guake/utils.py'
removed 'build/lib/guake/prefs.py'
removed directory 'build/lib/guake'
removed directory 'build/lib'
removed directory 'build'
removed 'Guake.egg-info/entry_points.txt'
removed 'Guake.egg-info/not-zip-safe'
removed 'Guake.egg-info/PKG-INFO'
removed 'Guake.egg-info/SOURCES.txt'
removed 'Guake.egg-info/dependency_links.txt'
removed 'Guake.egg-info/requires.txt'
removed 'Guake.egg-info/pbr.json'
removed 'Guake.egg-info/top_level.txt'
removed directory 'Guake.egg-info'
jason@jason-laptop:~/guake$ /usr/local/bin/guake 
Guake not running, starting it
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 175, in activate_name_owner
    return self.get_name_owner(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 361, in get_name_owner
    's', (bus_name,), **keywords)
  File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.guake3.RemoteControl': no such name

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 270, in main
    remote_object = bus.get_object(DBUS_NAME, DBUS_PATH)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 241, in get_object
    follow_name_owner_changes=follow_name_owner_changes)
  File "/usr/lib/python3/dist-packages/dbus/proxies.py", line 248, in __init__
    self._named_service = conn.activate_name_owner(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 180, in activate_name_owner
    self.start_service_by_name(bus_name)
  File "/usr/lib/python3/dist-packages/dbus/bus.py", line 278, in start_service_by_name
    'su', (bus_name, flags)))
  File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.guake3.RemoteControl was not provided by any .service files

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/bin/guake", line 10, in <module>
    sys.exit(exec_main())
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 385, in exec_main
    if not main():
  File "/home/jason/.local/lib/python3.6/site-packages/guake/main.py", line 284, in main
    from guake.guake_app import Guake
  File "/home/jason/.local/lib/python3.6/site-packages/guake/guake_app.py", line 55, in <module>
    from guake.about import AboutDialog
  File "/home/jason/.local/lib/python3.6/site-packages/guake/about.py", line 28, in <module>
    from guake.common import gladefile
  File "/home/jason/.local/lib/python3.6/site-packages/guake/common.py", line 30, in <module>
    from guake.paths import GLADE_DIR
ModuleNotFoundError: No module named 'guake.paths'
jason@jason-laptop:~/guake$ 
JasonDictos commented 6 years ago

Thanks for the help btw

aichingm commented 6 years ago

No problem I hope I can help but I'm not an Ubuntu user... Could you give me the output of which guake

JasonDictos commented 6 years ago

jason@jason-laptop:~$ which guake /usr/local/bin/guake jason@jason-laptop:~$

aichingm commented 6 years ago

And what is in /usr/local/lib/python3.6/site-packages/guake/ is there a file called paths.py?

if yes I think by trying to install guake via pip you installed it in to ~/.local/lib/python3.6/site-packages/guake. And python tries to pick up from there...

My next guess would be to try to rename the "pip-installation" and than run guake. mv /home/jason/.local/lib/python3.6/site-packages/guake/home/jason/.local/lib/python3.6/site-packages/_this_is_not_the_guake_u_r_looking_for

JasonDictos commented 6 years ago

Yup that worked, so now guake is running, but the problem remains

JasonDictos commented 6 years ago

Whats funny is, once this happened I started looking for alternatives, and I found yakuake and tried it, and it had the same problem. Then I futzed with packages and stuff then magically it started working. Guake though is doing the same thing still oddly.

aichingm commented 6 years ago

Hm that sounds odd...

What is guake printing if you run it from a command line?

Does guake -p open the preferences window?

What happens if you change the the height or transparency in the settings?

Are you running wayland?

JasonDictos commented 6 years ago

prefs open up fine, and the console is actually there, e.g. the cursor changes, and I can like type 'reboot' and the system will reboot, just.. can't see anything (still see the desktop as is, just the cursor changing is the only indication guake is doing anything). Hitting the super key again will return the cursor to the normal pointer etc. as well.

Guake not running, starting it Guake Terminal 3.2.1 VTE 0.48.4 Gtk 3.22.25 can't bind show-focus key Guake initialized

Showing the terminal

(guake:3678): Gtk-WARNING **: Allocating size to GtkVScrollbar 0x23c86b0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate? hiding the terminal

JasonDictos commented 6 years ago

And yeah I messed with the transparency settings, dropped it to zero, no change.

aichingm commented 6 years ago
(guake:3678): Gtk-WARNING **: Allocating size to GtkVScrollbar 0x23c86b0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?

This does not happen on my system.

I'm just guessing but you could try to disable the tab-bar preferences -> Main window -> Show tab bar (thats the only place where I can think of a GtkVScrollbar).

aichingm commented 6 years ago

Do you have some sort of multi screen set up?

JasonDictos commented 6 years ago

Hmm tried disabling tabs, and making the window size smaller. Let me try blowing away my old guake config too. No multi screen, dell xps 13

aichingm commented 6 years ago

I'm running out of ideas... The only thing left is playing with various options in the preferences window. But if this happens to other apps too I don't know how to fix this...

JasonDictos commented 6 years ago

I'll update this thread if I find anything, thanks again for the help

gsemet commented 6 years ago

I have updated the documentation, do not hesitate to submit a pull request (ideally) or open a ticket saying when something is not clear enough in it!

ksk-uchi commented 5 years ago

Hi, I have getting the completely same situation since today.. Yesterday, all were fine but today guake doesn't work and also other app like yakuake, AltYo. I tried sudo apt-get purge guake && sudo pip3 install guake but it's not fix anything.

Below I paste is what's different between today and yesterday. I'm using Kubuntu 16.04

I'd really appreciate that if you could help me.. Thanks.

Start-Date: 2018-07-09  18:42:47
Commandline: apt-get upgrade -y
Requested-By: ***** (1000)
Upgrade:
    libgles2-mesa:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libdrm-nouveau2:amd64 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    libdrm-nouveau2:i386 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    libapt-inst2.0:amd64 (1.2.26, 1.2.27),
    apt:amd64 (1.2.26, 1.2.27),
    libglapi-mesa:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libglapi-mesa:i386 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    mesa-common-dev:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libapt-pkg5.0:amd64 (1.2.26, 1.2.27),
    libdrm-amdgpu1:amd64 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    libdrm-amdgpu1:i386 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    firefox-locale-en:amd64 (60.0.2+build1-0ubuntu0.16.04.1, 61.0+build3-0ubuntu0.16.04.2),
    firefox-locale-ja:amd64 (60.0.2+build1-0ubuntu0.16.04.1, 61.0+build3-0ubuntu0.16.04.2),
    libdrm2:amd64 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    libdrm2:i386 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    libgl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    apt-utils:amd64 (1.2.26, 1.2.27),
    code:amd64 (1.24.1-1528912196, 1.25.0-1530796411),
    libgl1-mesa-glx:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libgl1-mesa-glx:i386 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libdrm-intel1:amd64 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    libdrm-intel1:i386 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    firefox:amd64 (60.0.2+build1-0ubuntu0.16.04.1, 61.0+build3-0ubuntu0.16.04.2),
    apt-transport-https:amd64 (1.2.26, 1.2.27),
    libdrm-radeon1:amd64 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    libdrm-radeon1:i386 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    linux-firmware:amd64 (1.157.19, 1.157.20),
    libdrm-dev:amd64 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1),
    libdrm-common:amd64 (2.4.83-1~16.04.1, 2.4.91-2~16.04.1)
End-Date: 2018-07-09  18:43:59

Start-Date: 2018-07-09  18:44:38
Commandline: apt dist-upgrade
Requested-By: ***** (1000)
Install:
    libllvm6.0:amd64 (1:6.0-1ubuntu2~16.04.1, automatic),
    libllvm6.0:i386 (1:6.0-1ubuntu2~16.04.1, automatic)
Upgrade:
    libegl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libxatracker2:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libegl1-mesa:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libgbm1:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libwayland-egl1-mesa:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libgl1-mesa-dri:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    libgl1-mesa-dri:i386 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1),
    mesa-vdpau-drivers:amd64 (17.2.8-0ubuntu0~16.04.1, 18.0.5-0ubuntu0~16.04.1)
End-Date: 2018-07-09  18:44:45

Start-Date: 2018-07-09  18:48:01
Commandline: apt autoremove
Requested-By: ***** (1000)
Remove:
    libllvm5.0:amd64 (1:5.0-3~16.04.1),
    libllvm5.0:i386 (1:5.0-3~16.04.1)
End-Date: 2018-07-09  18:48:02
ksk-uchi commented 5 years ago

I upgraded Plasma to 5.13.3 from 5.8.* then fixed the invisible issue. The guake 3 installed by pip3 install --user guake doesn't work but the guake 0.8 installed by apt-get install guake works fine for me.