Search Criteria
Package Details: usb-creator 0.3.17-1
Package Actions
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://git.launchpad.net/~usb-creator-hackers/usb-creator/+git/main |
Keywords: | boot disc image livecd ubuntu |
Licenses: | GPL3 |
Submitter: | menollo |
Maintainer: | tee |
Last Packager: | tee |
Votes: | 372 |
Popularity: | 0.39 |
First Submitted: | 2008-11-11 00:47 (UTC) |
Last Updated: | 2024-09-07 14:07 (UTC) |
Dependencies (15)
- cdrkit (cdrtools)
- dosfstools (dosfstools-gitAUR)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classicAUR, gtk3-classic-xfceAUR, gtk3-patched-filechooser-icon-viewAUR)
- kde-dev-scripts
- libisoburn (libisoburn-gitAUR)
- mtools (mtools-svnAUR)
- parted (parted-gitAUR)
- python (python37AUR, python311AUR, python310AUR)
- python-dbus
- python-gobject (python-gobject-gitAUR)
- python-pyqt5 (python-pyqt5-sip4AUR, python-pyqt5-webkitAUR)
- syslinux
- udisks2
- python-distutils-extra (make)
- python-setuptools (make)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 .. 11 Next › Last »
Dijx commented on 2020-01-30 15:03 (UTC) (edited on 2020-01-30 15:14 (UTC) by Dijx)
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 (UTC)
It seems that python-sip should also be listed as a dependency for this.
Maelan commented on 2018-10-24 20:47 (UTC) (edited on 2018-10-24 20:57 (UTC) by Maelan)
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 (UTC)
Sorry for the lack of updates here, should work again as intended.
aaronleao commented on 2018-08-02 02:04 (UTC)
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 (UTC) (edited on 2018-02-15 14:12 (UTC) by farao)
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 (UTC)
lynix commented on 2017-09-19 08:34 (UTC)
KinG-InFeT commented on 2016-01-22 10:34 (UTC)
« First ‹ Previous 1 2 3 4 5 6 7 .. 11 Next › Last »