Como corrijo “bzr: ERRO: Não é possível determinar seu nome. "?

4

Estou tentando quickly create meu primeiro aplicativo e estou recebendo erros de gtk quando tento executar ou criar um aplicativo.

Aqui está uma cópia do que eu executei e os resultados que obtive:

daniel@laptop:~/PyDevelopment$ quickly create ubuntu-application app001
Creating project directory app001
Creating bzr repository and committing
Launching your newly created project!
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning: g_object_set_property: construct property "type" for object 'Window' can't be set after construction
  Gtk.Window.__init__(self, type=type, **kwds)
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning: g_object_set_property: construct property "type" for object 'App001Window' can't be set after construction
  Gtk.Window.__init__(self, type=type, **kwds)
Congrats, your new project is setup! cd /home/daniel/PyDevelopment/app001/ to start hacking.
daniel@laptop:~/PyDevelopment$ cd app001
daniel@laptop:~/PyDevelopment/app001$ quickly design
daniel@laptop:~/PyDevelopment/app001$ quickly rub
ERROR: No rub command found in template ubuntu-application.
Candidate commands are: add, commands, configure, create, debug, design, edit, getstarted, help, license, package, quickly, release, run, save, share, submitubuntu, test, tutorial, upgrade
daniel@laptop:~/PyDevelopment/app001$ quickly run
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning: g_object_set_property: construct property "type" for object 'Window' can't be set after construction
  Gtk.Window.__init__(self, type=type, **kwds)
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning: g_object_set_property: construct property "type" for object 'App001Window' can't be set after construction
  Gtk.Window.__init__(self, type=type, **kwds)
daniel@laptop:~/PyDevelopment/app001$ quickly package
.......Ubuntu packaging created in debian/
.......
----------------------------------
Command returned some ERRORS:
----------------------------------
bzr: ERROR: Unable to determine your name.
----------------------------------
ERROR: can't create or update ubuntu package
ERROR: package command failed
Aborting
    
por Daniel 17.06.2012 / 21:35

1 resposta

5

Você precisa dizer ao bzr qual é o seu nome usando o comando bzr whoami , assim:

bzr whoami "Jorge Castro <[email protected]>"

Substitua seu nome e endereço, é claro. Você pode ver todas as opções whoami clicando em bzr help whoami .

Depois de definir seu nome, execute novamente o comando de pacote rápido.

E os "erros" do GTK são avisos, não erros. Muitos aplicativos os descartam por vários motivos, mas não devem ser interpretados como algo sério, dando errado.

    
por Jorge Castro 17.06.2012 / 22:03