diff options
Diffstat (limited to '')
-rw-r--r-- | doc/Changelog | 2 | ||||
-rw-r--r-- | doc/TODO | 4 | ||||
-rw-r--r-- | portato/extern/__init__.py | 0 | ||||
-rw-r--r-- | portato/plugins/highlight.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
5 files changed, 4 insertions, 6 deletions
diff --git a/doc/Changelog b/doc/Changelog index 168437a..dc93c30 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,6 +1,8 @@ next: - added confirmation dialogs for quitting while the emerge queue is not empty - added icon and desktop-files +- added systray +- added "noroot"-plugin, allowing emerges if not root 0.7.0: - showed difference between unmasked and masked but unmasked by yourself @@ -13,13 +13,9 @@ Backend: - only remove already merged packages from queue - make sure, a package being removed from the queue is not needed as a dependency by another package -- allow emerging & co. as user by a useflag - - GUI: ==== -- Systray - allow sorting of packages by installation GTK: diff --git a/portato/extern/__init__.py b/portato/extern/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/portato/extern/__init__.py diff --git a/portato/plugins/highlight.py b/portato/plugins/highlight.py index bc8b839..137e3b3 100644 --- a/portato/plugins/highlight.py +++ b/portato/plugins/highlight.py @@ -12,7 +12,7 @@ from portato.gui.gtk.windows import EbuildWindow -import gtksourceview +from portato.extern import gtksourceview class HighlightedEbuildWindow (EbuildWindow): """An ebuild window with syntax highlighting, using the GtkSourceview.""" @@ -5,7 +5,7 @@ import os, os.path from distutils.core import setup, Extension from portato.constants import VERSION, DATA_DIR, FRONTENDS, ICON_DIR -packages = ["portato", "portato.gui", "portato.plugins", "portato.backend", "portato.backend.portage"] +packages = ["portato", "portato.gui", "portato.plugins", "portato.backend", "portato.backend.portage", "portato.extern"] ext_modules = [] data_files = [(ICON_DIR, ["icons/portato-icon.png"])] cmdclass = {} |