756b44948e
This allows us to create these objects without needing workdir, which means we can use them outside of __init__.py. We can also write them directly to their final destination instead of writing them to the workdir and then copying them in.
49 lines
1.6 KiB
Python
49 lines
1.6 KiB
Python
#
|
|
# buildstamp.py
|
|
#
|
|
# Copyright (C) 2010 Red Hat, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# Red Hat Author(s): Martin Gracik <mgracik@redhat.com>
|
|
#
|
|
|
|
import logging
|
|
logger = logging.getLogger("pylorax.buildstamp")
|
|
|
|
import datetime
|
|
|
|
|
|
class BuildStamp(object):
|
|
|
|
def __init__(self, product, version, bugurl, is_beta, buildarch):
|
|
self.product = product
|
|
self.version = version
|
|
self.bugurl = bugurl
|
|
self.is_beta = is_beta
|
|
|
|
now = datetime.datetime.now()
|
|
now = now.strftime("%Y%m%d%H%M")
|
|
self.uuid = "{0}.{1}".format(now, buildarch)
|
|
|
|
def write(self, outfile):
|
|
logger.info("writing .buildstamp file")
|
|
with open(outfile, "w") as fobj:
|
|
fobj.write("[Main]\n")
|
|
fobj.write("Product={0.product}\n".format(self))
|
|
fobj.write("Version={0.version}\n".format(self))
|
|
fobj.write("BugURL={0.bugurl}\n".format(self))
|
|
fobj.write("IsBeta={0.is_beta}\n".format(self))
|
|
fobj.write("UUID={0.uuid}\n".format(self))
|