Search Criteria
Package Details: usb-creator 0.3.5-1
Git Clone URL: | https://aur.archlinux.org/usb-creator.git (read-only, click to copy) |
---|---|
Package Base: | usb-creator |
Description: | Create bootable USB from a LiveCD or disc image of Ubuntu |
Upstream URL: | https://launchpad.net/usb-creator |
Licenses: | |
Submitter: | menollo |
Maintainer: | carstene1ns |
Last Packager: | carstene1ns |
Votes: | 371 |
Popularity: | 0.078355 |
First Submitted: | 2008-11-11 00:47 |
Last Updated: | 2018-10-08 09:59 |
Dependencies (11)
- cdrkit (cdrtools)
- dosfstools (dosfstools-git)
- mtools (mtools-svn)
- parted (parted-git, libparted)
- python-dbus
- python-gobject (python-gobject-git)
- syslinux
- udisks2 (udisks2-nosystemd)
- python-distutils-extra (make)
- gtk3 (gtk3-donnatella, gtk3-cosy, gtk3-adwaita-3-32-git, gtk3-mushrooms, gtk3-git, gtk3-ubuntu, gtk3-patched-filechooser-icon-view, gtk3-typeahead, gtk3-no_deadkeys_underline, gtk3-classic) (optional) – for GTK frontend
- python-pyqt5 (optional) – for KDE/QT5 frontend
Latest Comments
1 2 3 4 5 6 ... Next › Last »
TheCloudt commented on 2020-05-17 09:16
Seems to me that
python-pyqt5
is a missing dependency.Dijx commented on 2020-01-30 15:03
To fix
ModuleNotFoundError: No module named 'sip'
remove or comment line#import sip
, then add linefrom PyQt5 import sip
. I suppose the same would go for gtk version. But then, some other thing seems not working...ericthefish commented on 2019-04-01 09:09
It seems that python-sip should also be listed as a dependency for this.
Maelan commented on 2018-10-24 20:47
I get a compile-time error, while running
package()
:even though package
python-distutils-extra
(version 2.39-3) is properly installed.carstene1ns commented on 2018-10-08 10:01
Sorry for the lack of updates here, should work again as intended.
aaronleao commented on 2018-08-02 02:04
erikzenker: About the error: ValueError: Namespace Unity not available I just commented the line 28 of the file /usr/lib/python3.6/site-packages/usbcreator/frontends/gtk/unitysupport.py. And work just fine.
farao commented on 2018-02-15 14:09
So I installed this and got, like the others, the " ValueError: Namespace Unity not available" error. I looked a bit in the code and found the problem.
FIX:
change the line 28 in ..site-packages/usbcreator/frontends/gtk/unitysupport.py
from
except ImportError as e:
to
except (ImportError, ValueError) as e:
EXPLANATION:
In ..site-packages/usbcreator/frontends/gtk/unitysupport.py it checks if the Unity environment (the former Ubuntu desktop environment) is running and therefore calls require_versions('Unity', '7.0') in a try block that has an except block for exceptions of type "ImportError". BUT require_versions (..site-packages/gi/init.py:92) throws an exception of type ValueError.
THIS PACKAGE SHOULD BE UPDATED
I also looked up the current version of usbcreator from upstream (https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/usb-creator/trusty/view/head:/usbcreator/frontends/gtk/unitysupport.py) and there the require_versions check was completely deleted. Maybe it would help to just update this package to the current version of the code instead of wildly patching in it :-)
erikzenker commented on 2017-11-04 11:05
I also get the error of the previous comment:
...
ValueError: Namespace Unity not available
lynix commented on 2017-09-19 08:34
Missing some unity stuff as dependency?
$ usb-creator-gtk
Traceback (most recent call last):
File "/usr/bin/usb-creator-gtk", line 28, in <module>
from usbcreator.frontends.gtk import GtkFrontend
File "/usr/lib/python3.6/site-packages/usbcreator/frontends/gtk/__init__.py", line 1, in <module>
from usbcreator.frontends.gtk.frontend import GtkFrontend
File "/usr/lib/python3.6/site-packages/usbcreator/frontends/gtk/frontend.py", line 31, in <module>
from usbcreator.frontends.gtk.unitysupport import UnitySupport
File "/usr/lib/python3.6/site-packages/usbcreator/frontends/gtk/unitysupport.py", line 28, in <module>
gi.require_version('Unity', '7.0')
File "/usr/lib/python3.6/site-packages/gi/__init__.py", line 118, in require_version
raise ValueError('Namespace %s not available' % namespace)
ValueError: Namespace Unity not available
KinG-InFeT commented on 2016-01-22 10:34
┌─[benzi] @ [benzi-pc]
└─[(~)] > packer -S usb-creator
warning: usb-creator is flagged out of date
AUR (1): usb-creator
Proceed with installation? [Y/n] y
Installing AUR package: usb-creator
Edit usb-creator PKGBUILD? [y/N] n
Edit usb-creator.install? [y/N] n
==> Creazione del pacchetto: usb-creator 0.2.67-2 (ven 22 gen 2016, 12.32.17, CET)
==> Controllo delle dipendenze durante l'avvio in corso...
==> Dipendenze mancanti:
-> python-debian
==> Controllo delle dipendenze durante la compilazione in corso...
==> Dipendenze mancanti:
-> python-distutils-extra
==> ERRORE: Impossibile risolvere tutte le dipendenze.
The build failed.