Merge branch 'master' into merge-branch
Change-Id: Ib3c4b0030c94459a8c2eca836a16e42edf1accd4
This commit is contained in:
commit
f1776d72aa
@ -18,11 +18,6 @@ emerge --verbose=n --depclean
|
|||||||
emaint all -f
|
emaint all -f
|
||||||
eselect news read all
|
eselect news read all
|
||||||
|
|
||||||
# clean up files that may have been changed during build
|
|
||||||
shopt -s extglob
|
|
||||||
rm -Rf /tmp/!(ccache|in_target*|profiledir*)
|
|
||||||
shopt -u extglob
|
|
||||||
|
|
||||||
rm -Rf /root/.ccache/* /usr/src/* /var/cache/edb/dep/* /var/cache/genkernel/* /var/empty/* /var/run/* /var/state/* /var/tmp/*
|
rm -Rf /root/.ccache/* /usr/src/* /var/cache/edb/dep/* /var/cache/genkernel/* /var/empty/* /var/run/* /var/state/* /var/tmp/*
|
||||||
rm -Rf /etc/*- /etc/*.old /etc/ssh/ssh_host_* /root/.*history /root/.lesshst /root/.ssh/known_hosts /root/.viminfo /usr/share/genkernel /usr/lib64/python*/site-packages/gentoolkit/test/eclean/testdistfiles.tar.gz
|
rm -Rf /etc/*- /etc/*.old /etc/ssh/ssh_host_* /root/.*history /root/.lesshst /root/.ssh/known_hosts /root/.viminfo /usr/share/genkernel /usr/lib64/python*/site-packages/gentoolkit/test/eclean/testdistfiles.tar.gz
|
||||||
if [[ "${GENTOO_PORTAGE_CLEANUP}" != "False" ]]; then
|
if [[ "${GENTOO_PORTAGE_CLEANUP}" != "False" ]]; then
|
||||||
|
@ -6,7 +6,7 @@ fi
|
|||||||
set -eu
|
set -eu
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
if [[ $DISTRO_NAME =~ (centos|fedora) ]]; then
|
if [[ $DISTRO_NAME =~ (opensuse}fedora|centos|centos7|rhel|rhel7) ]]; then
|
||||||
# GENERAL WARNING : mixing packaged python libraries with
|
# GENERAL WARNING : mixing packaged python libraries with
|
||||||
# pip-installed versions always creates issues. Upstream
|
# pip-installed versions always creates issues. Upstream
|
||||||
# openstack-infra uses this a lot (especially devstack) but be
|
# openstack-infra uses this a lot (especially devstack) but be
|
||||||
@ -16,7 +16,11 @@ if [[ $DISTRO_NAME =~ (centos|fedora) ]]; then
|
|||||||
# on somebody does a "yum install python-virtualenv" and goes and
|
# on somebody does a "yum install python-virtualenv" and goes and
|
||||||
# overwrites the pip installed version with the packaged version,
|
# overwrites the pip installed version with the packaged version,
|
||||||
# leading to all sorts of weird version issues.
|
# leading to all sorts of weird version issues.
|
||||||
|
if [[ $DISTRO_NAME = opensuse ]]; then
|
||||||
|
zypper -n install python-virtualenv python-pip python-setuptools
|
||||||
|
else
|
||||||
${YUM:-yum} install -y python-virtualenv python-pip python-setuptools
|
${YUM:-yum} install -y python-virtualenv python-pip python-setuptools
|
||||||
|
fi
|
||||||
|
|
||||||
# install pip; this overwrites packaged pip
|
# install pip; this overwrites packaged pip
|
||||||
/usr/local/bin/dib-python /tmp/get-pip.py
|
/usr/local/bin/dib-python /tmp/get-pip.py
|
||||||
@ -38,6 +42,16 @@ if [[ $DISTRO_NAME =~ (centos|fedora) ]]; then
|
|||||||
# doesn't have issues with other system packages.
|
# doesn't have issues with other system packages.
|
||||||
pip install -U virtualenv
|
pip install -U virtualenv
|
||||||
|
|
||||||
|
if [[ $DISTRO_NAME = opensuse ]]; then
|
||||||
|
for pkg in virtualenv pip setuptools; do
|
||||||
|
cat - >> /etc/zypp/locks <<EOF
|
||||||
|
type: package
|
||||||
|
match_type: glob
|
||||||
|
case_sensitive: on
|
||||||
|
solvable_name: python-$pkg
|
||||||
|
EOF
|
||||||
|
done
|
||||||
|
else
|
||||||
# Add this to exclude so that we don't install a later package
|
# Add this to exclude so that we don't install a later package
|
||||||
# over it if it updates. Note that fedora-minimal, bootstrapped
|
# over it if it updates. Note that fedora-minimal, bootstrapped
|
||||||
# via yum, can have an old yum.conf around, so look for dnf first.
|
# via yum, can have an old yum.conf around, so look for dnf first.
|
||||||
@ -49,6 +63,7 @@ if [[ $DISTRO_NAME =~ (centos|fedora) ]]; then
|
|||||||
die "No conf to modify?"
|
die "No conf to modify?"
|
||||||
fi
|
fi
|
||||||
echo "exclude=python-virtualenv,python-pip,python-setuptools" >> ${conf}
|
echo "exclude=python-virtualenv,python-pip,python-setuptools" >> ${conf}
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
/usr/local/bin/dib-python /tmp/get-pip.py
|
/usr/local/bin/dib-python /tmp/get-pip.py
|
||||||
pip install virtualenv
|
pip install virtualenv
|
||||||
|
@ -37,7 +37,7 @@ function cleanup() {
|
|||||||
trap cleanup EXIT
|
trap cleanup EXIT
|
||||||
|
|
||||||
ZYPPER_TARGET_OPTS="--non-interactive --gpg-auto-import-keys --root $TARGET_ROOT"
|
ZYPPER_TARGET_OPTS="--non-interactive --gpg-auto-import-keys --root $TARGET_ROOT"
|
||||||
ZYPPER_INSTALL_OPTS="--no-confirm --no-recommends"
|
ZYPPER_INSTALL_OPTS="--no-recommends"
|
||||||
|
|
||||||
for repo in ${ZYPPER_REPOS}; do
|
for repo in ${ZYPPER_REPOS}; do
|
||||||
reponame=repo-${repo%%=>*}
|
reponame=repo-${repo%%=>*}
|
||||||
|
@ -6,4 +6,3 @@ pbr>=1.8 # Apache-2.0
|
|||||||
PyYAML>=3.10.0 # MIT
|
PyYAML>=3.10.0 # MIT
|
||||||
flake8<2.6.0,>=2.5.4 # MIT
|
flake8<2.6.0,>=2.5.4 # MIT
|
||||||
six>=1.9.0 # MIT
|
six>=1.9.0 # MIT
|
||||||
oslosphinx>=4.7.0 # Apache-2.0
|
|
||||||
|
@ -37,7 +37,8 @@ mapping_file = babel.cfg
|
|||||||
output_file = diskimage_builder/locale/diskimage_builder.pot
|
output_file = diskimage_builder/locale/diskimage_builder.pot
|
||||||
|
|
||||||
[pbr]
|
[pbr]
|
||||||
warnerrors = True
|
# TODO(jaegerandi): Set to True once pbr 1.11.0 is out.
|
||||||
|
warnerrors = False
|
||||||
|
|
||||||
[update_catalog]
|
[update_catalog]
|
||||||
domain = diskimage_builder
|
domain = diskimage_builder
|
||||||
|
@ -7,7 +7,7 @@ oslotest>=1.10.0 # Apache-2.0
|
|||||||
testrepository>=0.0.18 # Apache-2.0/BSD
|
testrepository>=0.0.18 # Apache-2.0/BSD
|
||||||
|
|
||||||
# Doc requirements
|
# Doc requirements
|
||||||
sphinx!=1.3b1,<1.4,>=1.2.1 # BSD
|
sphinx>=1.5.1 # BSD
|
||||||
oslosphinx>=4.7.0 # Apache-2.0
|
oslosphinx>=4.7.0 # Apache-2.0
|
||||||
|
|
||||||
# releasenotes
|
# releasenotes
|
||||||
|
Loading…
Reference in New Issue
Block a user