aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMykyta Holubakha <hilobakho@gmail.com>2017-07-07 10:40:11 +0300
committerMykyta Holubakha <hilobakho@gmail.com>2017-07-18 23:26:27 +0300
commit1c7929604b84d982296f082c060fcc305fd9146e (patch)
tree7bba82a909ec6596d6c9572587241a8ea9b51a89 /pomu/util/pkg.py
parentFixed a logic error in Dispatcher (diff)
downloadpomu-1c7929604b84d982296f082c060fcc305fd9146e.tar.gz
pomu-1c7929604b84d982296f082c060fcc305fd9146e.tar.bz2
pomu-1c7929604b84d982296f082c060fcc305fd9146e.zip
Overhauled patching support
dropped patch package source module added --patch option to the install command added a patch command to patch an existing package integrated patch support into the Package class created a MergedPackage module for operations on packages already in the pomu repo added ways to patch an existing package added a base package source module (template), with base classes for package-specific metadata and the source module per se added a list_add utility function implemented and_, and_then, and or in util.result
Diffstat (limited to 'pomu/util/pkg.py')
-rw-r--r--pomu/util/pkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pomu/util/pkg.py b/pomu/util/pkg.py
index 7544e42..56afff6 100644
--- a/pomu/util/pkg.py
+++ b/pomu/util/pkg.py
@@ -6,7 +6,7 @@ import re
from portage.versions import suffix_value
-from pomu.util.str import pivot
+from pomu.util.misc import pivot
suffixes = [x[0] for x in sorted(suffix_value.items(), key=lambda x:x[1])]