|
|
@ -21,10 +21,9 @@
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import apt_pkg
|
|
|
|
|
|
|
|
from functools import partial
|
|
|
|
from functools import partial
|
|
|
|
from datetime import datetime
|
|
|
|
from datetime import datetime
|
|
|
|
from itertools import chain, repeat, filterfalse
|
|
|
|
from itertools import filterfalse
|
|
|
|
import os
|
|
|
|
import os
|
|
|
|
import time
|
|
|
|
import time
|
|
|
|
import yaml
|
|
|
|
import yaml
|
|
|
@ -36,6 +35,7 @@ from consts import (VERSION, BINARIES, PROVIDES, DEPENDS, CONFLICTS,
|
|
|
|
SOURCE, SOURCEVER, MAINTAINER, MULTIARCH,
|
|
|
|
SOURCE, SOURCEVER, MAINTAINER, MULTIARCH,
|
|
|
|
ESSENTIAL)
|
|
|
|
ESSENTIAL)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def ifilter_except(container, iterable=None):
|
|
|
|
def ifilter_except(container, iterable=None):
|
|
|
|
"""Filter out elements in container
|
|
|
|
"""Filter out elements in container
|
|
|
|
|
|
|
|
|
|
|
|