aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/rpmutil.py
diff options
context:
space:
mode:
authorPer Øyvind Karlsen <proyvind@moondrake.org>2016-06-03 18:10:43 +0200
committerPer Øyvind Karlsen <proyvind@moondrake.org>2016-06-03 18:10:43 +0200
commit06c158c149c5d3e44634135632812d3a65dd255e (patch)
tree6dd3124ce887aaf724b385b33443956ee24a2844 /MgaRepo/rpmutil.py
parent3dac8f9086fdde5a9d5380c454bb9cef85451db6 (diff)
downloadmgarepo-06c158c149c5d3e44634135632812d3a65dd255e.tar
mgarepo-06c158c149c5d3e44634135632812d3a65dd255e.tar.gz
mgarepo-06c158c149c5d3e44634135632812d3a65dd255e.tar.bz2
mgarepo-06c158c149c5d3e44634135632812d3a65dd255e.tar.xz
mgarepo-06c158c149c5d3e44634135632812d3a65dd255e.zip
implement support for applying %changelog with 'mgarepo buildrpm -l'
Diffstat (limited to 'MgaRepo/rpmutil.py')
-rw-r--r--MgaRepo/rpmutil.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/MgaRepo/rpmutil.py b/MgaRepo/rpmutil.py
index 3a10380..92f663d 100644
--- a/MgaRepo/rpmutil.py
+++ b/MgaRepo/rpmutil.py
@@ -382,6 +382,8 @@ def build_rpm(build_cmd="b",
packager = None,
installdeps = True,
use_dnf = False,
+ svnlog = False,
+ fullnames = True,
macros = []):
top = os.getcwd()
topdir = "_topdir %s" % top
@@ -401,6 +403,21 @@ def build_rpm(build_cmd="b",
raise Error("no spec files found")
spec = speclist[0]
+ # If we're building package with %changelog, we'll make a temporary
+ # copy of the spec file with %changelog applied that we'll use for
+ # building. This way we avoid modifying files in repository.
+ # TODO: implement support for external changelog in rpm
+ if svnlog:
+ vcs = detectVCS(top)
+ specsdir = tempfile.mkdtemp()
+ shutil.copy(spec, specsdir)
+ specdir = "_specdir "+specsdir
+ spec = os.path.join(specsdir,os.path.basename(spec))
+ info = vcs.info2(top)
+ pkgdirurl = layout.remove_current(info["URL"])
+ log.specfile_svn2rpm(pkgdirurl, spec, rev=None, submit=False,
+ template=None, macros=macros, exported=top, fullnames=fullnames)
+
rpmdefs = [("--define", expr) for expr in (topdir, builddir, rpmdir,
sourcedir, specdir, srcrpmdir, patchdir)]
@@ -449,6 +466,9 @@ def build_rpm(build_cmd="b",
status, output = execcmd(*cmd, show=verbose, collecter=True, noerror=True)
status, output = execcmd(*args + ["-b"+build_cmd], show=verbose)
+ if svnlog:
+ if os.path.isdir(specsdir):
+ shutil.rmtree(specsdir)
def create_package(pkgdirurl, log="", verbose=0):
svn = detectVCS(pkgdirurl)