fixup productmd imports for changes with open sourcing

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
Dennis Gilmore 2015-04-24 17:55:56 -05:00
parent f828850466
commit 771ed2efcb
2 changed files with 5 additions and 5 deletions

View File

@ -27,7 +27,8 @@ import tempfile
import shutil
import kobo.log
from productmd import ComposeInfo, ImageManifest
from productmd.composeinfo import Compose
from productmd.images import Images
from pungi.wrappers.variants import VariantsXmlParser
from pungi.paths import Paths
@ -40,8 +41,8 @@ def get_compose_dir(topdir, conf, compose_type="production", compose_date=None,
topdir = os.path.abspath(topdir)
already_exists_callbacks = already_exists_callbacks or []
# create an incomplete ComposeInfo to generate compose ID
ci = ComposeInfo()
# create an incomplete composeinfo to generate compose ID
ci = Compose()
ci.product.name = conf["product_name"]
ci.product.short = conf["product_short"]
ci.product.version = conf["product_version"]
@ -112,7 +113,7 @@ class Compose(kobo.log.LoggingBase):
self.paths = Paths(self)
# to provide compose_id, compose_date and compose_respin
self.ci_base = ComposeInfo()
self.ci_base = Compose()
self.ci_base.load(os.path.join(self.paths.work.topdir(arch="global"), "composeinfo-base.json"))
self.supported = supported

View File

@ -20,7 +20,6 @@ import time
import productmd.composeinfo
import productmd.treeinfo
import productmd.treeinfo.product
from productmd.common import get_major_version
from kobo.shortcuts import relative_path