2010-11-23 10:14:25 +00:00
|
|
|
#
|
|
|
|
# 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):
|
|
|
|
|
2011-04-28 18:10:31 +00:00
|
|
|
def __init__(self, product, version, bugurl, is_beta, buildarch):
|
2010-11-23 10:14:25 +00:00
|
|
|
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)
|
|
|
|
|
2011-04-28 18:10:31 +00:00
|
|
|
def write(self, outfile):
|
2010-11-23 10:14:25 +00:00
|
|
|
logger.info("writing .buildstamp file")
|
2011-04-28 18:10:31 +00:00
|
|
|
with open(outfile, "w") as fobj:
|
2010-11-23 10:14:25 +00:00
|
|
|
fobj.write("[Main]\n")
|
2010-11-23 11:41:30 +00:00
|
|
|
fobj.write("Product={0.product}\n".format(self))
|
2010-12-08 14:53:41 +00:00
|
|
|
fobj.write("Version={0.version}\n".format(self))
|
2010-11-23 10:14:25 +00:00
|
|
|
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))
|