569ce1d3dc
This includes a new configuration file at /etc/lorax/composer.conf with built-in defaults. It also adds a YUMLOCK server config object so that request handlers can access the yum base object without interfering with each other.
50 lines
1.5 KiB
Python
50 lines
1.5 KiB
Python
#!/usr/bin/python
|
|
|
|
from distutils.core import setup
|
|
import os
|
|
import sys
|
|
|
|
|
|
# config file
|
|
data_files = [("/etc/lorax", ["etc/lorax.conf"]),
|
|
("/etc/lorax", ["etc/configure.conf"]),
|
|
("/usr/lib/systemd/system", ["systemd/lorax-composer.service"])]
|
|
|
|
# shared files
|
|
for root, dnames, fnames in os.walk("share"):
|
|
for fname in fnames:
|
|
data_files.append((root.replace("share", "/usr/share/lorax", 1),
|
|
[os.path.join(root, fname)]))
|
|
|
|
# executable
|
|
data_files.append(("/usr/sbin", ["src/sbin/lorax", "src/sbin/mkefiboot",
|
|
"src/sbin/livemedia-creator", "src/sbin/lorax-composer"]))
|
|
data_files.append(("/usr/bin", ["src/bin/image-minimizer",
|
|
"src/bin/mk-s390-cdboot"]))
|
|
|
|
# get the version
|
|
sys.path.insert(0, "src")
|
|
try:
|
|
import pylorax.version
|
|
except ImportError:
|
|
vernum = "devel"
|
|
else:
|
|
vernum = pylorax.version.num
|
|
finally:
|
|
sys.path = sys.path[1:]
|
|
|
|
|
|
setup(name="lorax",
|
|
version=vernum,
|
|
description="Lorax",
|
|
long_description="Tools for creating bootable images, including the Anaconda boot.iso",
|
|
author="Brian C. Lane, Will Woods, Martin Gracik",
|
|
author_email="bcl@redhat.com",
|
|
url="https://rhinstaller.github.io/lorax/",
|
|
download_url="https://github.com/rhinstaller/lorax/releases",
|
|
license="GPLv2+",
|
|
packages=["pylorax", "pylorax.api"],
|
|
package_dir={"" : "src"},
|
|
data_files=data_files
|
|
)
|