"""Packager module.
This program makes Debian and RPM repositories for MongoDB, by
downloading our tarballs of statically linked executables and
insinuating them into Linux packages. It must be run on a
Debianoid, since Debian provides tools to make RPMs, but RPM-based
systems don't provide debian packaging crud.
Notes
-----
* Almost anything that you want to be able to influence about how a
package construction must be embedded in some file that the
packaging tool uses for input (e.g., debian/rules, debian/control,
debian/changelog; or the RPM specfile), and the precise details are
arbitrary and silly. So this program generates all the relevant
inputs to the packaging tools.
* Once a .deb or .rpm package is made, there's a separate layer of
tools that makes a "repository" for use by the apt/yum layers of
package tools. The layouts of these repositories are arbitrary and
silly, too.
* Before you run the program on a new host, these are the
prerequisites:
apt-get install dpkg-dev rpm debhelper fakeroot ia32-libs createrepo git-core
echo "Now put the dist gnupg signing keys in ~root/.gnupg"
"""
import argparse
import errno
import os
import re
import shutil
import subprocess
import sys
import tempfile
import time
from glob import glob
import git
ARCH_CHOICES = ["x86_64", "arm64", "aarch64", "s390x"]
DISTROS = ["suse", "debian", "redhat", "ubuntu", "amazon", "amazon2", "amazon2023"]
unexpected_lts_release_series = ("8.2", "8.3")
def rhel_major_version(build_os: str) -> str:
"""Return the RHEL major version encoded in a build_os name.
Names for RHEL 9 and earlier are a single-digit major version followed by an
optional single-digit minor version ("rhel93" -> "9", "rhel9" -> "9"). RHEL 10
and later are major-only ("rhel10" -> "10").
Any other name is rejected rather than guessed at, so that a new naming scheme
(such as a "rhel101" that would be ambiguous here) has to be handled
deliberately instead of silently producing a mislabeled package.
"""
match = re.fullmatch(r"rhel(?:(1\d)|([5-9])\d?)", build_os)
if not match:
raise Exception("unsupported build_os: %s" % build_os)
return match.group(1) or match.group(2)
def get_suffix(version, stable_name: str, unstable_name: str) -> str:
parts = version.split(".")
major = int(parts[0])
minor = int(parts[1])
series = f"{major}.{minor}"
if major >= 5:
is_stable_version = minor == 0 or series in unexpected_lts_release_series
return stable_name if is_stable_version else unstable_name
else:
return stable_name if minor % 2 == 0 else unstable_name
class Spec(object):
"""Spec class."""
def __init__(self, ver, gitspec=None, rel=None):
"""Initialize Spec."""
self.ver = ver
self.gitspec = gitspec
self.rel = rel
def is_nightly(self):
"""Return True if nightly."""
return bool(re.search("-$", self.version())) or bool(
re.search(r"-g[0-9a-f]+$", self.version())
)
def is_patch(self):
"""Return True if patch."""
return bool(re.search(r"\d-\d+-g[0-9a-f]+-patch-[0-9a-f]+$", self.version()))
def is_rc(self):
"""Return True if rc."""
return bool(re.search(r"(-rc|-alpha)\d+$", self.version()))
def is_pre_release(self):
"""Return True if pre-release."""
return self.is_rc() or self.is_nightly()
def version(self):
"""Return version."""
return self.ver
def patch_id(self):
"""Return patch id."""
if self.is_patch():
return re.sub(r".*-([0-9a-f]+$)", r"\1", self.version())
return "none"
def metadata_gitspec(self):
"""Git revision to use for spec+control+init+manpage files.
The default is the release tag for the version being packaged.
"""
if self.gitspec:
return self.gitspec
return "r" + self.version()
def version_better_than(self, version_string):
"""Return True if 'version_string' is greater than instance version."""
return self.ver > version_string
def suffix(self) -> str:
"""Return suffix."""
return get_suffix(self.ver, "-org", "-org-unstable")
def prelease(self):
"""Return pre-release verison suffix."""
if self.rel:
corenum = self.rel
else:
corenum = 1
if self.is_rc():
return "0.%s.%s" % (corenum, re.sub(".*-", "", self.version()))
elif self.is_nightly():
return "0.%s.latest" % (corenum)
elif self.is_patch():
return "0.%s.patch.%s" % (corenum, self.patch_id())
return str(corenum)
def pversion(self, distro):
"""Return the pversion."""
if re.search("(suse|redhat|fedora|centos|amazon)", distro.name()):
return re.sub("-.*", "", self.version())
if re.search("^(debian|ubuntu)", distro.name()):
if self.is_nightly():
ver = re.sub("-.*", "-latest", self.ver)
elif self.is_patch():
ver = re.sub("-.*", "", self.ver) + "-patch-" + self.patch_id()
else:
ver = self.ver
return re.sub("-", "~", ver)
raise Exception("BUG: unsupported platform?")
def branch(self):
"""Return the major and minor portions of the specified version.
For example, if the version is "2.5.5" the branch would be "2.5"
"""
return ".".join(self.ver.split(".")[0:2])
class Distro(object):
"""Distro class."""
def __init__(self, string):
"""Initialize Distro."""
self.dname = string
def name(self):
"""Return name."""
return self.dname
@staticmethod
def pkgbase():
"""Return pkgbase."""
return "mongodb"
def archname(self, arch):
"""Return the packaging system's architecture name.
Power and x86 have different names for apt/yum (ppc64le/ppc64el
and x86_64/amd64).
"""
if re.search("^(debian|ubuntu)", self.dname):
if arch == "ppc64le":
return "ppc64el"
elif arch == "s390x":
return "s390x"
elif arch == "arm64":
return "arm64"
elif arch.endswith("86"):
return "i386"
return "amd64"
elif re.search("^(suse|centos|redhat|fedora|amazon)", self.dname):
if arch == "ppc64le":
return "ppc64le"
elif arch == "s390x":
return "s390x"
elif arch.endswith("86"):
return "i686"
elif arch == "arm64":
return "arm64"
elif arch == "aarch64":
return "aarch64"
return "x86_64"
else:
raise Exception("BUG: unsupported platform?")
def repodir(self, arch, build_os, spec):
"""Return the directory where we'll place the package files for (distro, distro_version).
This is in that distro's preferred repository
layout (as distinct from where that distro's packaging building
tools place the package files).
Examples:
repo/apt/ubuntu/dists/precise/mongodb-org/2.5/multiverse/binary-amd64
repo/apt/ubuntu/dists/precise/mongodb-org/2.5/multiverse/binary-i386
repo/apt/ubuntu/dists/trusty/mongodb-org/2.5/multiverse/binary-amd64
repo/apt/ubuntu/dists/trusty/mongodb-org/2.5/multiverse/binary-i386
repo/apt/debian/dists/wheezy/mongodb-org/2.5/main/binary-amd64
repo/apt/debian/dists/wheezy/mongodb-org/2.5/main/binary-i386
repo/yum/redhat/6/mongodb-org/2.5/x86_64
yum/redhat/6/mongodb-org/2.5/i386
repo/zypper/suse/11/mongodb-org/2.5/x86_64
zypper/suse/11/mongodb-org/2.5/i386
"""
repo_directory = ""
if spec.is_pre_release():
repo_directory = "testing"
else:
repo_directory = spec.branch()
if re.search("^(debian|ubuntu)", self.dname):
return "repo/apt/%s/dists/%s/mongodb-org/%s/%s/binary-%s/" % (
self.dname,
self.repo_os_version(build_os),
repo_directory,
self.repo_component(),
self.archname(arch),
)
elif re.search("(redhat|fedora|centos|amazon)", self.dname):
return "repo/yum/%s/%s/mongodb-org/%s/%s/RPMS/" % (
self.dname,
self.repo_os_version(build_os),
repo_directory,
self.archname(arch),
)
elif re.search("(suse)", self.dname):
return "repo/zypper/%s/%s/mongodb-org/%s/%s/RPMS/" % (
self.dname,
self.repo_os_version(build_os),
repo_directory,
self.archname(arch),
)
else:
raise Exception("BUG: unsupported platform?")
def repo_component(self):
"""Return the name of the section/component/pool we are publishing into.
Example, "multiverse" for Ubuntu, "main" for debian.
"""
if self.dname == "ubuntu":
return "multiverse"
elif self.dname == "debian":
return "main"
else:
raise Exception("unsupported distro: %s" % self.dname)
def repo_os_version(self, build_os):
"""Return an OS version suitable for package repo directory naming.
Example, 5, 6 or 7 for redhat/centos, "precise," "wheezy," etc.
for Ubuntu/Debian, 11 for suse, "2013.03" for amazon.
"""
if self.dname == "suse":
return re.sub(r"^suse(\d+)$", r"\1", build_os)
if self.dname == "redhat":
return rhel_major_version(build_os)
if self.dname == "amazon":
return "2013.03"
elif self.dname == "amazon2":
return "2017.12"
elif self.dname == "amazon2023":
return "2023.3"
elif self.dname == "ubuntu":
if build_os == "ubuntu1204":
return "precise"
elif build_os == "ubuntu1404":
return "trusty"
elif build_os == "ubuntu1604":
return "xenial"
elif build_os == "ubuntu1804":
return "bionic"
elif build_os == "ubuntu2004":
return "focal"
elif build_os == "ubuntu2204":
return "jammy"
elif build_os == "ubuntu2404":
return "noble"
else:
raise Exception("unsupported build_os: %s" % build_os)
elif self.dname == "debian":
if build_os == "debian81":
return "jessie"
elif build_os == "debian92":
return "stretch"
elif build_os == "debian10":
return "buster"
elif build_os == "debian11":
return "bullseye"
elif build_os == "debian12":
return "bookworm"
elif build_os == "debian13":
return "trixie"
else:
raise Exception("unsupported build_os: %s" % build_os)
else:
raise Exception("unsupported distro: %s" % self.dname)
def make_pkg(self, build_os, arch, spec, srcdir):
"""Return the package."""
if re.search("^(debian|ubuntu)", self.dname):
return make_deb(self, build_os, arch, spec, srcdir)
elif re.search("^(suse|centos|redhat|fedora|amazon)", self.dname):
return make_rpm(self, build_os, arch, spec, srcdir)
else:
raise Exception("BUG: unsupported platform?")
def build_os(self, arch):
"""Return the build os label in the binary package to download.
Example, "rhel55" for redhat, "ubuntu1204" for ubuntu, "debian81" for debian,
"suse11" for suse, etc.
"""
if arch not in ["x86_64", "ppc64le", "s390x", "arm64", "aarch64"]:
raise Exception("BUG: unsupported architecture (%s)" % arch)
if re.search("(suse)", self.dname):
return ["suse11", "suse12", "suse15", "suse16"]
elif re.search("(redhat|fedora|centos)", self.dname):
return [
"rhel10",
"rhel93",
"rhel90",
"rhel88",
"rhel82",
"rhel80",
"rhel70",
"rhel71",
"rhel72",
"rhel79",
"rhel62",
"rhel55",
"rhel67",
]
elif self.dname in ["amazon", "amazon2", "amazon2023"]:
return [self.dname]
elif self.dname == "ubuntu":
return [
"ubuntu1204",
"ubuntu1404",
"ubuntu1604",
"ubuntu1804",
"ubuntu2004",
"ubuntu2204",
"ubuntu2404",
]
elif self.dname == "debian":
return ["debian81", "debian92", "debian10", "debian11", "debian12", "debian13"]
else:
raise Exception("BUG: unsupported platform?")
def release_dist(self, build_os):
"""Return the release distribution to use in the rpm.
"amzn1", "amzn2" or "amzn2023" for the amazon distros,
"el" plus the major version for rhel ("el6" for rhel 6.x, "el10" for rhel 10.x),
and anything else unchanged.
"""
if self.dname == "amazon":
return "amzn1"
elif self.dname == "amazon2":
return "amzn2"
elif self.dname == "amazon2023":
return "amzn2023"
elif build_os.startswith("rhel"):
return "el" + rhel_major_version(build_os)
else:
return build_os
def get_args(distros, arch_choices):
"""Return the program arguments."""
distro_choices = []
for distro in distros:
for arch in arch_choices:
distro_choices.extend(distro.build_os(arch))
parser = argparse.ArgumentParser(description="Build MongoDB Packages")
parser.add_argument(
"-s", "--server-version", help="Server version to build (e.g. 2.7.8-rc0)", required=True
)
parser.add_argument(
"-m", "--metadata-gitspec", help="Gitspec to use for package metadata files", required=False
)
parser.add_argument(
"-r", "--release-number", help="RPM release number base", type=int, required=False
)
parser.add_argument(
"-d",
"--distros",
help="Distros to build for",
choices=distro_choices,
required=False,
default=[],
action="append",
)
parser.add_argument("-p", "--prefix", help="Directory to build into", required=False)
parser.add_argument(
"-a",
"--arches",
help="Architecture to build",
choices=arch_choices,
default=[],
required=False,
action="append",
)
parser.add_argument(
"-t",
"--tarball",
help="Local tarball to package",
required=True,
type=lambda x: is_valid_file(parser, x),
)
parser.add_argument(
"-c",
"--crypt_spec",
help="use the crypt spec to build the requested package",
required=False,
action="store_true",
)
args = parser.parse_args()
if len(args.distros) * len(args.arches) > 1 and args.tarball:
parser.error("Can only specify local tarball with one distro/arch combination")
return args
def main():
"""Execute Main program."""
distros = [Distro(distro) for distro in DISTROS]
args = get_args(distros, ARCH_CHOICES)
spec = Spec(args.server_version, args.metadata_gitspec, args.release_number)
oldcwd = os.getcwd()
srcdir = oldcwd + "/../"
prefix = args.prefix
if prefix is None:
prefix = tempfile.mkdtemp()
print("Working in directory %s" % prefix)
os.chdir(prefix)
try:
for distro, arch in crossproduct(distros, args.arches):
for build_os in distro.build_os(arch):
if build_os in args.distros or not args.distros:
filename = tarfile(build_os, arch, spec)
ensure_dir(filename)
shutil.copyfile(args.tarball, filename)
repo = make_package(distro, build_os, arch, spec, srcdir)
make_repo(repo, distro, build_os)
finally:
os.chdir(oldcwd)
def crossproduct(*seqs):
"""Provide a generator for iterating all the tuples consisting of elements of seqs."""
num_seqs = len(seqs)
if num_seqs == 0:
pass
elif num_seqs == 1:
for idx in seqs[0]:
yield [idx]
else:
for lst in crossproduct(*seqs[:-1]):
for idx in seqs[-1]:
lst2 = list(lst)
lst2.append(idx)
yield lst2
def sysassert(argv):
"""Run argv and assert that it exited with status 0."""
print("In %s, running %s" % (os.getcwd(), " ".join(argv)))
sys.stdout.flush()
sys.stderr.flush()
assert subprocess.Popen(argv).wait() == 0
def backtick(argv):
"""Run argv and return its output string."""
print("In %s, running %s" % (os.getcwd(), " ".join(argv)))
sys.stdout.flush()
sys.stderr.flush()
return subprocess.Popen(argv, stdout=subprocess.PIPE).communicate()[0]
def tarfile(build_os, arch, spec):
"""Return the location where we store the downloaded tarball for this package."""
return "dl/mongodb-linux-%s-%s-%s.tar.gz" % (spec.version(), build_os, arch)
def setupdir(distro, build_os, arch, spec):
"""Return the setup directory name."""
return "dst/%s/%s/%s/%s%s-%s/" % (
arch,
distro.name(),
build_os,
distro.pkgbase(),
spec.suffix(),
spec.pversion(distro),
)
def unpack_binaries_into(build_os, arch, spec, where):
"""Unpack the tarfile for (build_os, arch, spec) into directory where."""
rootdir = os.getcwd()
ensure_dir(where)
os.chdir(where)
try:
sysassert(["tar", "xvzf", rootdir + "/" + tarfile(build_os, arch, spec)])
release_dir = glob("mongodb-linux-*")[0]
for releasefile in "bin", "LICENSE-Community.txt", "README", "THIRD-PARTY-NOTICES", "MPL-2":
print("moving file: %s/%s" % (release_dir, releasefile))
os.rename("%s/%s" % (release_dir, releasefile), releasefile)
shutil.rmtree(release_dir)
except Exception:
exc = sys.exc_info()[1]
os.chdir(rootdir)
raise exc
os.chdir(rootdir)
def make_package(distro, build_os, arch, spec, srcdir):
"""Construct the package for (arch, distro, spec).
Get the packaging files from srcdir and any user-specified suffix from suffixes.
"""
sdir = setupdir(distro, build_os, arch, spec)
ensure_dir(sdir)
for pkgdir in ["debian", "rpm"]:
print("Copying packaging files from %s to %s" % ("%s/%s" % (srcdir, pkgdir), sdir))
sysassert(
[
"sh",
"-c",
'(cd "%s" && tar cf - %s ) | (cd "%s" && tar xvf -)' % (srcdir, pkgdir, sdir),
]
)
unpack_binaries_into(build_os, arch, spec, sdir)
return distro.make_pkg(build_os, arch, spec, srcdir)
def make_repo(repodir, distro, build_os):
"""Make the repo."""
if re.search("(debian|ubuntu)", repodir):
make_deb_repo(repodir, distro, build_os)
elif re.search("(suse|centos|redhat|fedora|amazon)", repodir):
make_rpm_repo(repodir)
else:
raise Exception("BUG: unsupported platform?")
def make_deb(distro, build_os, arch, spec, srcdir):
"""Make the Debian script."""
suffix = spec.suffix()
sdir = setupdir(distro, build_os, arch, spec)
if re.search("debian", distro.name()):
os.unlink(sdir + "debian/mongod.upstart")
os.link(
sdir + "debian/mongod.service",
sdir + "debian/%s%s-server.mongod.service" % (distro.pkgbase(), suffix),
)
os.unlink(sdir + "debian/init.d")
elif re.search("ubuntu", distro.name()):
os.unlink(sdir + "debian/init.d")
if build_os in ("ubuntu1204", "ubuntu1404", "ubuntu1410"):
os.link(
sdir + "debian/mongod.upstart",
sdir + "debian/%s%s-server.mongod.upstart" % (distro.pkgbase(), suffix),
)
os.unlink(sdir + "debian/mongod.service")
else:
os.link(
sdir + "debian/mongod.service",
sdir + "debian/%s%s-server.mongod.service" % (distro.pkgbase(), suffix),
)
os.unlink(sdir + "debian/mongod.upstart")
else:
raise Exception("unknown debianoid flavor: not debian or ubuntu?")
write_debian_changelog(sdir + "debian/changelog", spec, srcdir)
distro_arch = distro.archname(arch)
sysassert(
[
"cp",
"-v",
srcdir + "debian/%s%s.control" % (distro.pkgbase(), suffix),
sdir + "debian/control",
]
)
sysassert(
[
"cp",
"-v",
srcdir + "debian/%s%s.rules" % (distro.pkgbase(), suffix),
sdir + "debian/rules",
]
)
if os.path.exists(sdir + "debian/postinst"):
os.unlink(sdir + "debian/postinst")
sysassert(["sh", "-c", 'cp -v "%sdebian/"*.postinst "%sdebian/"' % (srcdir, sdir)])
with open(sdir + "debian/substvars", "w") as fh:
fh.write("\n")
ensure_dir(sdir + "debian/source/format")
with open(sdir + "debian/source/format", "w") as fh:
fh.write("1.0\n")
oldcwd = os.getcwd()
try:
os.chdir(sdir)
sysassert(["dpkg-buildpackage", "-uc", "-us", "-a" + distro_arch])
finally:
os.chdir(oldcwd)
repo_dir = distro.repodir(arch, build_os, spec)
ensure_dir(repo_dir)
sysassert(["sh", "-c", 'cp -v "%s/../"*.deb "%s"' % (sdir, repo_dir)])
return repo_dir
def make_deb_repo(repo, distro, build_os):
"""Make the Debian repo."""
oldpwd = os.getcwd()
os.chdir(repo + "../../../../../../")
try:
dirs = {
os.path.dirname(deb)[2:]
for deb in backtick(["find", ".", "-name", "*.deb"]).decode("utf-8").split()
}
for directory in dirs:
st = backtick(["dpkg-scanpackages", directory, "/dev/null"])
with open(directory + "/Packages", "wb") as fh:
fh.write(st)
bt = backtick(["gzip", "-9c", directory + "/Packages"])
with open(directory + "/Packages.gz", "wb") as fh:
fh.write(bt)
finally:
os.chdir(oldpwd)
s1 = """Origin: mongodb
Label: mongodb
Suite: %s
Codename: %s/mongodb-org
Architectures: amd64 arm64 s390x
Components: %s
Description: MongoDB packages
""" % (distro.repo_os_version(build_os), distro.repo_os_version(build_os), distro.repo_component())
if os.path.exists(repo + "../../Release"):
os.unlink(repo + "../../Release")
if os.path.exists(repo + "../../Release.gpg"):
os.unlink(repo + "../../Release.gpg")
oldpwd = os.getcwd()
os.chdir(repo + "../../")
s2 = backtick(["apt-ftparchive", "release", "."])
try:
with open("Release", "wb") as fh:
fh.write(s1.encode("utf-8"))
fh.write(s2)
finally:
os.chdir(oldpwd)
def move_repos_into_place(src, dst):
"""Move the repos into place."""
i = 0
while True:
date_suffix = time.strftime("%Y-%m-%d")
dname = dst + ".%s.%d" % (date_suffix, i)
try:
os.mkdir(dname)
break
except OSError:
exc = sys.exc_info()[1]
if exc.errno == errno.EEXIST:
pass
else:
raise exc
i = i + 1
for src_file in os.listdir(src):
sysassert(["cp", "-rv", src + "/" + src_file, dname])
i = 0
while True:
tmpnam = dst + ".TMP.%d" % i
try:
os.symlink(dname, tmpnam)
break
except OSError:
exc = sys.exc_info()[1]
if exc.errno == errno.EEXIST:
pass
else:
raise exc
i = i + 1
oldnam = None
if os.path.exists(dst):
i = 0
while True:
oldnam = dst + ".old.%d" % i
try:
os.symlink(os.readlink(dst), oldnam)
break
except OSError:
exc = sys.exc_info()[1]
if exc.errno == errno.EEXIST:
pass
else:
raise exc
os.rename(tmpnam, dst)
if oldnam:
os.rename(oldnam, dst + ".old")
def write_debian_changelog(path, spec, srcdir):
"""Write the debian changelog."""
oldcwd = os.getcwd()
os.chdir(srcdir)
preamble = ""
try:
git_repo = git.Repo(srcdir)
head_commit_sha = git_repo.head.object.hexsha
print("Commiting uncommited changes")
git_repo.git.add(all=True)
if len(git_repo.index.diff("HEAD")) != 0:
with git_repo.git.custom_environment(
GIT_COMMITTER_NAME="Evergreen", GIT_COMMITTER_EMAIL="evergreen@mongodb.com"
):
git_repo.git.commit("--author='Evergreen <>'", "-m", "temp commit")
print("Getting changelog for specified gitspec:", spec.metadata_gitspec())
sb = preamble + backtick(
["sh", "-c", "git archive %s debian/changelog | tar xOf -" % spec.metadata_gitspec()]
).decode("utf-8")
print("Resetting branch to original state")
git_repo.git.reset("--mixed", head_commit_sha)
finally:
os.chdir(oldcwd)
lines = sb.split("\n")
lines[0] = re.sub(
"^mongodb \\(.*\\)", "mongodb (%s)" % (spec.pversion(Distro("debian"))), lines[0]
)
lines = [re.sub("^mongodb ", "mongodb%s " % (spec.suffix()), line) for line in lines]
lines = [re.sub("^ --", " --", line) for line in lines]
sb = "\n".join(lines)
with open(path, "w") as fh:
fh.write(sb)
def make_rpm(distro, build_os, arch, spec, srcdir):
"""Create the RPM specfile."""
suffix = spec.suffix()
sdir = setupdir(distro, build_os, arch, spec)
specfile = srcdir + "rpm/mongodb%s.spec" % suffix
init_spec = specfile.replace(".spec", "-init.spec")
os.unlink(sdir + "debian/mongod.service")
if distro.name() == "suse" and distro.repo_os_version(build_os) in ("10", "11"):
os.unlink(sdir + "rpm/init.d-mongod")
os.link(sdir + "rpm/init.d-mongod.suse", sdir + "rpm/init.d-mongod")
os.unlink(specfile)
os.link(init_spec, specfile)
elif distro.name() == "redhat" and distro.repo_os_version(build_os) in ("5", "6"):
os.unlink(specfile)
os.link(init_spec, specfile)
elif distro.name() == "amazon":
os.unlink(specfile)
os.link(init_spec, specfile)
topdir = ensure_dir("%s/rpmbuild/%s/" % (os.getcwd(), build_os))
for subdir in ["BUILD", "RPMS", "SOURCES", "SPECS", "SRPMS"]:
ensure_dir("%s/%s/" % (topdir, subdir))
distro_arch = distro.archname(arch)
shutil.copy(specfile, topdir + "SPECS")
oldcwd = os.getcwd()
os.chdir(sdir + "/../")
try:
sysassert(
[
"tar",
"-cpzf",
topdir + "SOURCES/mongodb%s-%s.tar.gz" % (suffix, spec.pversion(distro)),
os.path.basename(os.path.dirname(sdir)),
]
)
finally:
os.chdir(oldcwd)
flags = [
"-D",
f"_topdir {topdir}",
"-D",
f"dist .{distro.release_dist(build_os)}",
"-D",
f"dynamic_version {spec.pversion(distro)}",
"-D",
f"dynamic_release {spec.prelease()}",
]
pathfix = None
for candidate in ("/usr/bin/pathfix.py", "/usr/lib/rpm/redhat/pathfix.py"):
if os.path.exists(candidate):
pathfix = candidate
break
if pathfix:
flags.extend(["-D", f"pathfix {pathfix}"])
if (distro.name() == "suse" and distro.repo_os_version(build_os) in ("15", "16")) or (
distro.name() == "redhat" and distro.repo_os_version(build_os) == "8"
):
flags.extend(
[
"--buildroot",
os.path.join(topdir, "BUILDROOT"),
]
)
sysassert(
["rpmbuild", "-ba", "--target", distro_arch]
+ flags
+ ["%s/SPECS/mongodb%s.spec" % (topdir, suffix)]
)
repo_dir = distro.repodir(arch, build_os, spec)
ensure_dir(repo_dir)
sysassert(["sh", "-c", 'cp -v "%s/RPMS/%s/"*.rpm "%s"' % (topdir, distro_arch, repo_dir)])
return repo_dir
def make_rpm_repo(repo):
"""Make the RPM repo."""
oldpwd = os.getcwd()
os.chdir(repo + "../")
try:
sysassert(["createrepo", "."])
finally:
os.chdir(oldpwd)
def ensure_dir(filename):
"""Ensure that the dirname directory of filename exists, and return filename."""
dirpart = os.path.dirname(filename)
try:
os.makedirs(dirpart)
except OSError:
exc = sys.exc_info()[1]
if exc.errno == errno.EEXIST:
pass
else:
raise exc
return filename
def is_valid_file(parser, filename):
"""Check if file exists, and return the filename."""
if not os.path.exists(filename):
parser.error("The file %s does not exist!" % filename)
return None
return filename
if __name__ == "__main__":
main()