From 4e6615555abd15614935cbf097a8703b9db92820 Mon Sep 17 00:00:00 2001 From: Thomas Duval Date: Thu, 30 Jun 2016 17:15:17 +0200 Subject: Add script to create Moon deb package. Change-Id: I779970d5f39f30a4d9fbf07a0016ccd215d31621 --- keystonemiddleware-moon/debian/create_deb.py | 150 +++++++++++++++++++++++++++ 1 file changed, 150 insertions(+) create mode 100644 keystonemiddleware-moon/debian/create_deb.py diff --git a/keystonemiddleware-moon/debian/create_deb.py b/keystonemiddleware-moon/debian/create_deb.py new file mode 100644 index 00000000..5958229c --- /dev/null +++ b/keystonemiddleware-moon/debian/create_deb.py @@ -0,0 +1,150 @@ +#!/usr/bin/env python3.5 + +import os +import sys +import subprocess +import glob + + +TMP_DIR = "/tmp/debian-moon" +INIT_dir = os.path.split(os.path.abspath(sys.argv[0]))[0] + +print("init dir: {}".format(INIT_dir)) + +_run = subprocess.run(["mkdir", "-p", TMP_DIR]) +if _run.returncode != 0: + exit("\033[31mCannot create tmp dir\033[m") + +os.chdir(TMP_DIR) + +_run = subprocess.run(["sudo", "apt-get", "install", "-y", "git"]) +if _run.returncode != 0: + exit("\033[31mCannot install Git\033[m") + +print("\033[32mCloning Debian version\033[m") +_run = subprocess.run(["git", "clone", "https://anonscm.debian.org/git/openstack/python-keystonemiddleware.git"]) +if _run.returncode != 0: + os.chdir(os.path.join(TMP_DIR, "python-keystonemiddleware")) + _run = subprocess.run(["git", "pull"]) + if _run.returncode != 0: + print("\033[31mCannot clone ou pull debian version\033[m") + +os.chdir(TMP_DIR) + +print("\033[32mCloning Moon project\033[m") +_run = subprocess.run(["git", "clone", "https://git.opnfv.org/moon"]) +if _run.returncode != 0: + os.chdir(os.path.join(TMP_DIR, "moon")) + _run = subprocess.run(["git", "pull"]) + if _run.returncode != 0: + print("\033[31mCannot clone Moon project\033[m") + +os.chdir(TMP_DIR) + +_run = subprocess.run(["cp", + "-r", + os.path.join(TMP_DIR, "python-keystonemiddleware", "debian"), + os.path.join(TMP_DIR, "moon", "keystonemiddleware-moon")]) + +print("\033[32mBuilding Moon project\033[m") +os.chdir(os.path.join(TMP_DIR, "moon", "keystonemiddleware-moon")) + +mandatory_deb_pkg = """dh-apparmor +dh-systemd +openstack-pkg-tools +python-all python-pbr +python-sphinx +python-bashate +python-keystonemiddleware +python-ldap +python-ldappool +python-memcache +python-migrate +python-mock +python-msgpack +python-oslo.cache +python-oslo.concurrency +python-oslo.config +python-oslo.context +python-oslo.db +python-oslo.i18n +python-oslo.log +python-oslo.messaging +python-oslo.policy +python-oslo.serialization +python-oslo.service +python-oslo.utils +python-oslosphinx +python-oslotest +python-os-testr +python-passlib +python-paste +python-pastedeploy +python-pycadf +python-pymongo +python-pysaml2 +python-pysqlite2 +python-routes +python-sqlalchemy +python-stevedore +python-testscenarios +python-testtools +python-unittest2 +python-webob +python-webtest +subunit +testrepository +python-coverage +python-dogpile.cache +python-eventlet +python-hacking +python-oslo.cache +python-oslo.concurrency +python-oslo.config +python-oslo.db +python-oslo.log +python-oslo.messaging +python-oslo.middleware +python-tempest-lib +python-oauthlib +python-pam +python3-all +python3-setuptools +python-bandit +python-requests-mock +python-testresources +python3-bandit +python3-crypto +python3-keystoneauth1 +python3-keystoneclient +python3-memcache +python3-mock +python3-oslo.config +python3-oslo.context +python3-oslo.i18n +python3-oslo.messaging +python3-oslo.serialization +python3-oslo.utils +python3-oslotest +python3-positional +python3-pycadf +python3-requests-mock +python3-stevedore +python3-testresources +python3-webob +""" + +_command = ["sudo", "apt-get", "install", "-y"] +_command.extend(mandatory_deb_pkg.split()) +_run = subprocess.run(_command) + +os.putenv("DEB_BUILD_OPTIONS", "nocheck") + +_run = subprocess.run(["dpkg-buildpackage", "-b", "-us"]) + +print("\033[32mResults:\033[m") +subprocess.run(["mkdir", "-p", "/tmp/deb"]) + +files = glob.glob(os.path.join(TMP_DIR, "moon", "*.deb")) +for _file in files: + subprocess.run(["mv", "-v", _file, "/tmp/deb/"]) -- cgit 1.2.3-korg