diff --git a/.gitreview b/.gitreview index 0bde96893..675ce706e 100644 --- a/.gitreview +++ b/.gitreview @@ -13,4 +13,4 @@ host=review.opencontrail.org port=29418 project=Juniper/contrail-packaging.git -defaultbranch=master +defaultbranch=R3.0.3.x diff --git a/build/build_docker_test_image.sh b/build/build_docker_test_image.sh new file mode 100755 index 000000000..da1c21f1f --- /dev/null +++ b/build/build_docker_test_image.sh @@ -0,0 +1,54 @@ +#!/bin/bash -x + +sku=$1 +shift +to_build=${@:-'contrail-test-ci contrail-test'} +VERSION=$(cat controller/src/base/version.info) +TEST_ARTIFACT=${TEST_ARTIFACT:-$(readlink -f build/artifacts_extra/contrail-test-${VERSION}-*~$sku.tgz)} +TEST_CI_ARTIFACT=${TEST_CI_ARTIFACT:-$(readlink -f build/artifacts_extra/contrail-test-ci-*~$sku.tgz)} +FABRIC_UTILS_ARTIFACT=${FABRIC_UTILS_ARTIFACT:-$(readlink -f build/artifacts_extra/contrail-fabric-utils-*~$sku.tgz)} +CONTRAIL_PACKAGE_DEB=${CONTRAIL_PACKAGE_DEB:-$(readlink -f build/artifacts/contrail-install-packages*~${sku}_all.deb)} +DOCKER_IMAGE_EXPORT_PATH=${DOCKER_IMAGE_EXPORT_PATH:-$(readlink -f build/artifacts/)} +#IPADDRESS=${IPADDRESS:-$(ip a show docker0 | awk '/inet / {split ($2,a,"/"); print a[1]}')} +IPADDRESS="172.17.0.1" +export SSHPASS=c0ntrail123 + +clean_up() { + for j in `docker images| tr -s ' ' | cut -d ' ' -f3 | grep -v IMAGE` + do + docker rmi -f $j + done + + for i in `docker ps -a | tr -s ' ' | cut -d ' ' -f1 | grep -v CONTAINER` + do + docker rm -f $i + done +} + +tmp=$(mktemp -d) +tar zxv -C $tmp -f $TEST_CI_ARTIFACT contrail-test-ci/install.sh + +for container in $to_build; do + echo "Building container for $container..." + tag=$(echo $container | sed -e 's/-/_/g') + bash -x $tmp/contrail-test-ci/install.sh docker-build --test-artifact $TEST_ARTIFACT \ + --ci-artifact $TEST_CI_ARTIFACT --fab-artifact $FABRIC_UTILS_ARTIFACT \ + -u ssh://${IPADDRESS}/${CONTRAIL_PACKAGE_DEB} --export $DOCKER_IMAGE_EXPORT_PATH $container + rc=$? + if [[ $rc = 0 ]]; then + touch ci_docker_build_${tag}_successful + else + echo "ERROR: Docker build for $container failed" + break + fi +done + +clean_up +rm -rf $tmp +[[ $rc = 0 ]] && echo "Docker build completed!" +set +e +source /usr/local/jenkins/slave_scripts/ci-infra/ci-utils.sh +DOCKER_IMAGE=$(ls build/artifacts/docker-image-contrail-test-*.gz 2>/dev/null) +if [[ $? = 0 ]]; then + retry sshpass -p c0ntrail123 rsync -acz --no-owner --no-group $DOCKER_IMAGE ci-admin@10.84.26.50:$CI_IMAGE_DIR +fi diff --git a/build/deb_server_manager_setup.sh b/build/deb_server_manager_setup.sh index 6da71fc40..c9d0f9253 100644 --- a/build/deb_server_manager_setup.sh +++ b/build/deb_server_manager_setup.sh @@ -25,6 +25,7 @@ NOWEBUI="" WEBCORE="" CERT_NAME="" SMLITE="" +NOEXTERNALREPOS="" HOST_IP_LIST=`ifconfig | sed -n -e 's/:127\.0\.0\.1 //g' -e 's/ *inet addr:\([0-9.]\+\).*/\1/gp'` HOSTIP=`echo $HOST_IP_LIST | cut -d' ' -f1` rel=`lsb_release -r` @@ -62,18 +63,9 @@ function cleanup_smgr_repos() } -function setup_smgr_repos() +function setup_apt_conf() { - # Push this to makefile - Copy only the file we need into installer. - if [ ${rel[1]} == "14.04" ]; then - cp /opt/contrail/contrail_server_manager/ubuntu_14_04_1_sources.list /etc/apt/sources.list.d/smgr_sources.list - elif [ ${rel[1]} == "12.04" ]; then - cp /opt/contrail/contrail_server_manager/ubuntu_12_04_3_sources.list /etc/apt/sources.list.d/smgr_sources.list - else - echo "$space$arrow This version of Ubuntu ${rel[1]} is not supported" - exit - fi - + echo "$space$arrow Allow Install of Unauthenticated APT packages" # Allow unauthenticated pacakges to get installed. # Do not over-write apt.conf. Instead just append what is necessary # retaining other useful configurations such as http::proxy info. @@ -86,24 +78,54 @@ function setup_smgr_repos() echo "$apt_auth" >> /etc/apt/apt.conf fi - echo "$space$arrow Setting up the repositories for Server Manager Install" + set +e apt-get update >> $log_file 2>&1 + set -e +} + - echo "$space$arrow Installing dependent packages for Setting up repos" +function setup_smgr_repos() +{ + + echo "$space$arrow Installing dependent packages for Setting up Smgr repos" #scan pkgs in local repo and create Packages.gz apt-get --no-install-recommends -y install dpkg-dev >> $log_file 2>&1 - # Dependencies to add apt-repos - apt-get --no-install-recommends -y install python-software-properties debmirror >> $log_file 2>&1 - apt-get --no-install-recommends -y install software-properties-common >> $log_file 2>&1 pushd /opt/contrail/contrail_server_manager >> $log_file 2>&1 dpkg-scanpackages . | gzip -9c > Packages.gz | >> $log_file 2>&1 popd >> $log_file 2>&1 - + echo "deb file:/opt/contrail/contrail_server_manager ./" > /tmp/local_repo cat /tmp/local_repo /etc/apt/sources.list.d/smgr_sources.list > /tmp/new_smgr_sources.list mv /tmp/new_smgr_sources.list /etc/apt/sources.list.d/smgr_sources.list + set +e + apt-get update >> $log_file 2>&1 + set -e + +} + +function setup_internet_repos() +{ + echo "$space$arrow Setting up Internet Repos" + # Push this to makefile - Copy only the file we need into installer. + if [ ${rel[1]} == "14.04" ]; then + cp /opt/contrail/contrail_server_manager/ubuntu_14_04_1_sources.list /etc/apt/sources.list.d/smgr_sources.list + elif [ ${rel[1]} == "12.04" ]; then + cp /opt/contrail/contrail_server_manager/ubuntu_12_04_3_sources.list /etc/apt/sources.list.d/smgr_sources.list + else + echo "$space$arrow This version of Ubuntu ${rel[1]} is not supported" + exit + fi + + set +e + apt-get update >> $log_file 2>&1 + set -e + + # Dependencies to add apt-repos + apt-get --no-install-recommends -y install python-software-properties debmirror >> $log_file 2>&1 + apt-get --no-install-recommends -y install software-properties-common >> $log_file 2>&1 + puppet_list_file="/etc/apt/sources.list.d/puppet.list" passenger_list_file="/etc/apt/sources.list.d/passenger.list" dist='precise' @@ -124,7 +146,7 @@ function setup_smgr_repos() fi # Repo to add for redis - required for contrail-web-core - add-apt-repository ppa:rwky/redis --yes >> $log_file 2>&1 + #add-apt-repository ppa:rwky/redis --yes >> $log_file 2>&1 # Cobbler repo to be added if this is not an SMLITE install if [ "$SMLITE" == "" ]; then @@ -136,7 +158,10 @@ function setup_smgr_repos() add-apt-repository "deb http://download.opensuse.org/repositories/home:/libertas-ict:/cobbler26/xUbuntu_12.04/ ./" >> $log_file 2>&1 fi fi + + set +e apt-get update >> $log_file 2>&1 + set -e } @@ -199,11 +224,14 @@ while [ "$1" != "" ]; do --hostip) HOSTIP=$VALUE rm -rf /opt/contrail/contrail_server_manager/IP.txt - echo $HOSTIP >> /opt/contrail/contrail_server_manager/IP.txt + echo $HOSTIP >> /opt/contrail/contrail_server_manager/IP.txt ;; --cert-name) CERT_NAME=$VALUE ;; + --no-external-repos) + NOEXTERNALREPOS="TRUE" + ;; *) echo "ERROR: unknown parameter \"$PARAM\"" usage @@ -214,8 +242,15 @@ while [ "$1" != "" ]; do done cleanup_smgr_repos +setup_apt_conf +if [ "$NOEXTERNALREPOS" == "" ]; then + setup_internet_repos +else + touch /etc/apt/sources.list.d/smgr_sources.list +fi setup_smgr_repos +RESTART_SERVER_MANAGER="" if [ "$SM" != "" ]; then echo "$arrow Server Manager" @@ -244,7 +279,7 @@ if [ "$SM" != "" ]; then #TODO: To be Removed after local repo additions if [ ${rel[1]} == "14.04" ]; then - apt-get --no-install-recommends -y install libpython2.7=2.7.6-8ubuntu0.2 >> $log_file 2>&1 + apt-get --no-install-recommends -y install libpython2.7>=2.7.6-8ubuntu0.2 >> $log_file 2>&1 fi apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" install puppet-common="3.7.3-1puppetlabs1" puppetmaster-common="3.7.3-1puppetlabs1" >> $log_file 2>&1 cp /opt/contrail/contrail_server_manager/puppet.conf /etc/puppet/ @@ -273,14 +308,11 @@ if [ "$SM" != "" ]; then if [ "$check_upgrade" != "" ]; then # Upgrade echo "$space$arrow Upgrading Server Manager" + RESTART_SERVER_MANAGER="1" if [ "$SMLITE" != "" ]; then echo "$space$arrow$install_str Server Manager Lite" apt-get -y install contrail-server-manager-lite >> $log_file 2>&1 apt-get -y install -f >> $log_file 2>&1 - echo "$space$space$arrow Starting Server Manager Lite Service" - service contrail-server-manager restart - sleep 5 - service contrail-server-manager status else cv=`cobbler --version` cv=( $cv ) @@ -296,19 +328,18 @@ if [ "$SM" != "" ]; then apt-get -y install contrail-server-manager >> $log_file 2>&1 apt-get -y install -f >> $log_file 2>&1 # Stopping webui service that uses old name - old_webui_status=`service supervisor-webui status | awk '{print $2}' | cut -d'/' -f 1` - if [ $old_webui_status != "stop" ]; then - service supervisor-webui stop >> $log_file 2>&1 # TODO : Remove for 3.0 release + if [ -f /etc/init.d/supervisor-webui ]; then + old_webui_status=`service supervisor-webui status | awk '{print $2}' | cut -d'/' -f 1` + if [ $old_webui_status != "stop" ]; then + service supervisor-webui stop >> $log_file 2>&1 # TODO : Remove for 3.0 release + fi fi fi else if [ "$SMLITE" != "" ]; then echo "$space$arrow$install_str Server Manager Lite" apt-get -y install contrail-server-manager-lite >> $log_file 2>&1 - echo "$space$space$arrow Starting Server Manager Lite Service" - service contrail-server-manager restart - sleep 5 - service contrail-server-manager status + RESTART_SERVER_MANAGER="1" else echo "$space$arrow$install_str Server Manager" apt-get -y install cobbler="2.6.3-1" >> $log_file 2>&1 # TODO : Remove after local repo pinning @@ -364,9 +395,19 @@ if [ "$SMMON" != "" ] && [ "$NOSMMON" == "" ]; then echo "$arrow Completed Installing Server Manager Monitoring" fi +if [ "x$RESTART_SERVER_MANAGER" == "x1" ]; then + if [ "$SMLITE" != "" ]; then + echo "$space$space$arrow Starting Server Manager Lite Service" + else + echo "$space$space$arrow Starting Server Manager Service" + fi + service contrail-server-manager restart >> $log_file 2>&1 + sleep 5 +fi + # Should we remove Puppet/Passenger sources.list.d files also? echo "$arrow Reverting Repos to old state" -rm -f /etc/apt/sources.list.d/puppet.list >> $log_file 2>&1 +rm -f /etc/apt/sources.list.d/puppet.list >> $log_file 2>&1 rm -f /etc/apt/sources.list.d/passenger.list >> $log_file 2>&1 rm -f /etc/apt/sources.list.d/smgr_sources.list >> $log_file 2>&1 apt-get update >> $log_file 2>&1 diff --git a/build/libs/packager/common.py b/build/libs/packager/common.py index 9086baa05..25608550b 100755 --- a/build/libs/packager/common.py +++ b/build/libs/packager/common.py @@ -26,6 +26,7 @@ class MakeError(Exception): class BasePackager(Utils): ''' Base class for packager methods ''' def __init__(self, **kwargs): + self.debug = kwargs.get('debug', True) # echo unfiltered exec_cmd() output self.base_pkg_files = self.expanduser(kwargs['base_package_file']) self.depends_pkg_files = self.expanduser(kwargs['depends_package_file']) self.contrail_pkg_files = self.expanduser(kwargs['contrail_package_file']) diff --git a/build/libs/packager/utils.py b/build/libs/packager/utils.py index 4fe66640f..e670bc2c7 100644 --- a/build/libs/packager/utils.py +++ b/build/libs/packager/utils.py @@ -96,7 +96,7 @@ def log_fds(self, fds): for fd in fds: out = self.read_async(fd) if out: - sys.stdout.write(out) + if getattr(self, 'debug', True): sys.stdout.write(out) log.handlers[1].stream.write(out) log.handlers[1].stream.flush() diff --git a/build/package_configs/centos65/havana/depends_packages.cfg b/build/package_configs/centos65/havana/depends_packages.cfg index 15e27f8a4..cb8d0e642 100644 --- a/build/package_configs/centos65/havana/depends_packages.cfg +++ b/build/package_configs/centos65/havana/depends_packages.cfg @@ -1752,8 +1752,8 @@ file = ifmap-python-client-0.3.2-1407190101.el6.noarch.rpm md5 = d1a2256cc7c612e712f981087c28b4cf [ifmap-server] -file = ifmap-server-0.3.2-2contrail.el6.noarch.rpm -md5 = 512e5c97a0608de137fa6d2e550bd5ba +file = ifmap-server-0.3.2-4contrail.el6.noarch.rpm +md5 = a02bfbb7b83fa56ab8617fb7de3285ad package_type = contrail-install-packages, contrail-thirdparty-packages [authbind] diff --git a/build/package_configs/centos65/icehouse/depends_packages.cfg b/build/package_configs/centos65/icehouse/depends_packages.cfg index 78e5909ae..de2d40376 100644 --- a/build/package_configs/centos65/icehouse/depends_packages.cfg +++ b/build/package_configs/centos65/icehouse/depends_packages.cfg @@ -649,9 +649,9 @@ md5 = 48981e56ec5b1a0df6c6aa94454fb24c file = ifmap-python-client-0.3.2-1407190101.el6.noarch.rpm md5 = d1a2256cc7c612e712f981087c28b4cf -[ifmap-server_0.3.2_1408082330.el6] -file = ifmap-server-0.3.2-2contrail.el6.noarch.rpm -md5 = 512e5c97a0608de137fa6d2e550bd5ba +[ifmap-server-0.3.2-5contrail.el6] +file = ifmap-server-0.3.2-5contrail.el6.noarch.rpm +md5 = 71f21bede135ab1fdd6b3936a5d676cf package_type = contrail-install-packages, contrail-thirdparty-packages [ipmitool_1.8.11_16.el6] diff --git a/build/package_configs/centoslinux71/juno/contrail_packages.cfg b/build/package_configs/centoslinux71/juno/contrail_packages.cfg index 857e2a909..b6ef47c26 100755 --- a/build/package_configs/centoslinux71/juno/contrail_packages.cfg +++ b/build/package_configs/centoslinux71/juno/contrail_packages.cfg @@ -50,6 +50,10 @@ makeloc = tools/packaging/common/rpm pkgs = contrail-dns makeloc = tools/packaging/common/rpm +[contrail-database-common] +pkgs = contrail-database-common +makeloc = tools/packaging/common/rpm + [contrail-interface-name] pkgs = contrail-interface-name makeloc = tools/packaging/common/rpm diff --git a/build/package_configs/centoslinux71/juno/depends_contrail_dependent_packages.cfg b/build/package_configs/centoslinux71/juno/depends_contrail_dependent_packages.cfg index c6951be4d..fb0f2edde 100644 --- a/build/package_configs/centoslinux71/juno/depends_contrail_dependent_packages.cfg +++ b/build/package_configs/centoslinux71/juno/depends_contrail_dependent_packages.cfg @@ -655,6 +655,26 @@ md5 = 75e5a5963d0c5bd58f1fcd9cb3646e06 file = kernel-tools-libs-3.10.0-229.el7.x86_64.rpm md5 = 46e28f051a08b8859c45306cdc57de3b +[kernel-3.10.0-327.10.1.el7] +file = kernel-3.10.0-327.10.1.el7.x86_64.rpm +md5 = f28fc700e3276f13b1e5fba4e5459793 +source = repo:updates + +[kernel-headers-3.10.0-327.10.1.el7] +file = kernel-headers-3.10.0-327.10.1.el7.x86_64.rpm +md5 = 598bbf7927e3e69c9dd6820e9b934815 +source = repo:updates + +[kernel-tools-3.10.0-327.10.1.el7] +file = kernel-tools-3.10.0-327.10.1.el7.x86_64.rpm +md5 = de120dc8ed401bc3c55d88c995552a86 +source = repo:updates + +[kernel-tools-libs-3.10.0-327.10.1.el7] +file = kernel-tools-libs-3.10.0-327.10.1.el7.x86_64.rpm +md5 = aaf83ada7c7504d8db4a9adbbc437db1 +source = repo:updates + [keyutils-1.5.8-3.el7] file = keyutils-1.5.8-3.el7.x86_64.rpm md5 = 1332e9cc5a05ae8385311648957ddabe @@ -1628,10 +1648,6 @@ md5 = e6eb2bb1e2a899c2a2f76308fd49ed15 file = python-futures-2.1.6-1.el7.noarch.rpm md5 = b4542b2f6aba78d6b8218c058458e396 -[python-gevent-1.0-2.el7] -file = python-gevent-1.0-2.el7.x86_64.rpm -md5 = 15225ae038bd53b53e6ca73c520f82b8 - [python-greenlet-0.4.2-3.el7] file = python-greenlet-0.4.2-3.el7.x86_64.rpm md5 = 953a467532eb12586f788eaeec60dd53 diff --git a/build/package_configs/centoslinux71/juno/depends_contrail_installer_packages.cfg b/build/package_configs/centoslinux71/juno/depends_contrail_installer_packages.cfg index c1da84b75..7b07c7b60 100644 --- a/build/package_configs/centoslinux71/juno/depends_contrail_installer_packages.cfg +++ b/build/package_configs/centoslinux71/juno/depends_contrail_installer_packages.cfg @@ -91,10 +91,11 @@ md5 = ccc1ca75c0a2e80434a5fd4610476a83 file = python-ecdsa-0.11-3.el7.centos.noarch.rpm md5 = d0e0370629d546b390ec258e12292147 -[python-Fabric-1.7.5-1.1contrail0] -file = python-Fabric-1.7.5-1.1contrail0.noarch.rpm -md5 = e3a4b8cc6271229a76545645564dd4b5 +[python-Fabric-1.7.5-1.2contrail0] +file = python-Fabric-1.7.5-1.2contrail0.noarch.rpm +md5 = 899afb211197ada80e326b6a86b53fc0 source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-thirdparty-packages, contrail-installer-packages [python-netaddr-0.7.12-1.el7.centos] file = python-netaddr-0.7.12-1.el7.centos.noarch.rpm diff --git a/build/package_configs/centoslinux71/juno/depends_contrail_openstack_packages.cfg b/build/package_configs/centoslinux71/juno/depends_contrail_openstack_packages.cfg index 448b981c6..b9229a42d 100644 --- a/build/package_configs/centoslinux71/juno/depends_contrail_openstack_packages.cfg +++ b/build/package_configs/centoslinux71/juno/depends_contrail_openstack_packages.cfg @@ -27,6 +27,11 @@ md5 = location = package_type = contrail-install-packages, contrail-openstack-packages +[lz4-r131-2.el7] +file = lz4-r131-2.el7.x86_64.rpm +md5 = f2c555cdc1b124d2d419b705f70056f5 +source = repo:openstack-mitaka + [novnc-0.5.1-2.el7] file = novnc-0.5.1-2.el7.noarch.rpm md5 = 97199c473a29e75a0ea8932b8d7aeae8 @@ -47,6 +52,10 @@ md5 = 96278d6c798f6806e3067c89ccafcafd file = openstack-heat-api-2014.2.2-1.el7.noarch.rpm md5 = 746169f288edd2213a778ab3bd1a6280 +[openstack-heat-api-cfn-2014.2.2-1.el7] +file = openstack-heat-api-cfn-2014.2.2-1.el7.noarch.rpm +md5 = 846d370c3ae6bc7bb43dc01a5c9fb8d4 + [openstack-heat-common-2014.2.2-1.el7] file = openstack-heat-common-2014.2.2-1.el7.noarch.rpm md5 = 049fb55fa7b5fe32eabb64851ed88715 diff --git a/build/package_configs/centoslinux71/juno/depends_contrail_thirdparty_packages.cfg b/build/package_configs/centoslinux71/juno/depends_contrail_thirdparty_packages.cfg index 234ac9b9b..830cf2eea 100644 --- a/build/package_configs/centoslinux71/juno/depends_contrail_thirdparty_packages.cfg +++ b/build/package_configs/centoslinux71/juno/depends_contrail_thirdparty_packages.cfg @@ -55,13 +55,13 @@ md5 = e83decbf4017da6f47696842aa909e13 file = hc-httpcore-4.1-1.jpp6.noarch.rpm md5 = 65d9fbf17070841708643f7eaa000071 -[ifmap-server-0.3.2-2contrail.el7] -file = ifmap-server-0.3.2-2contrail.el7.noarch.rpm -md5 = 3f89792cf3d8a781e7e38f17e5b2e6f6 +[ifmap-server-0.3.2-5contrail.el7] +file = ifmap-server-0.3.2-5contrail.el7.centos.noarch.rpm +md5 = a0362fcbaf2a3cde9f41fc3a98b4a78f -[kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7.centos] -file = kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7.centos.x86_64.rpm -md5 = 97dee52c332b8d6de510631d4129b7af +[kafka-2.11-0.9.0.1.0contrail0.el7.centos] +file = kafka-2.11-0.9.0.1.0contrail0.el7.centos.x86_64.rpm +md5 = 2ba18cafa558d7d04d486f5a097b1855 [librdkafka-devel-0.8.5-2.0contrail0.el7.centos] file = librdkafka-devel-0.8.5-2.0contrail0.el7.centos.x86_64.rpm @@ -131,6 +131,10 @@ md5 = 3fa8a2c1b303252e21a08f78cb4b8b18 file = python-cassandra-driver-3.0.0-0contrail2.el7.centos.x86_64.rpm md5 = c85802f977a132012443202a6d27cd9e +[python-gevent-1.1rc5-1contrail1.el7.centos] +file = python-gevent-1.1rc5-1contrail1.el7.centos.x86_64.rpm +md5 = d52a43d8659c5ea402d21ea9770e0da2 + [python-geventhttpclient-1.0a-0contrail.el7] file = python-geventhttpclient-1.0a-0contrail.el7.x86_64.rpm md5 = 045388afa560fce0ebdd47bf18bef3b5 @@ -139,6 +143,10 @@ md5 = 045388afa560fce0ebdd47bf18bef3b5 file = python-kafka-python-0.9.4-1.1.noarch.rpm md5 = d6901cbe82f61880ba7c741f65e68fb3 +[python-kafka-1.0.1-0contrail0.el7.centos.noarch] +file = python-kafka-1.0.1-0contrail0.el7.centos.noarch.rpm +md5 = 241862887705c1c787a90a4e2403a98b + [python-kazoo-1.3.1_1.1contrail2.el7] file = python-kazoo-1.3.1-1.1contrail2.el7.centos.noarch.rpm md5 = 11f3ee671efc37a4b7941275d55cba06 @@ -159,6 +167,10 @@ md5 = 62641a22f76d2b5a1c030a9e32f8f897 file = python-requests-2.6.0-1.1contrail1.el7.centos.noarch.rpm md5 = 86865ba4643bdb28bad2c275bc3fafb5 +[python-sseclient-0.0.11-0contrail0] +file = python-sseclient-0.0.11-0contrail0.el7.centos.noarch.rpm +md5 = 121c43e7c9dcb693cea0d5fbb0a03fb9 + [python-thrift-0.9.1-0contrail.el7] file = python-thrift-0.9.1-0contrail.el7.x86_64.rpm md5 = 8a57025dfd403b8f719a83012f7d7b4a @@ -183,3 +195,6 @@ md5 = 40295fd03e32a767acda161dca3a04db file = python-websocket-client-0.14.1-108.el7.centos.noarch.rpm md5 = 370cab77e2ce3e9c403d38d88ddd9d0b +[libzookeeper-3.4.8-0contrail0.el7] +file = libzookeeper-3.4.8-0contrail0.el7.centos.x86_64.rpm +md5 = 84acb00d70f87b00bee35fc735bd4d3a diff --git a/build/package_configs/centoslinux71/kilo/contrail_packages.cfg b/build/package_configs/centoslinux71/kilo/contrail_packages.cfg index 187beebc5..a5b930467 100755 --- a/build/package_configs/centoslinux71/kilo/contrail_packages.cfg +++ b/build/package_configs/centoslinux71/kilo/contrail_packages.cfg @@ -50,6 +50,10 @@ makeloc = tools/packaging/common/rpm pkgs = contrail-dns makeloc = tools/packaging/common/rpm +[contrail-database-common] +pkgs = contrail-database-common +makeloc = tools/packaging/common/rpm + [contrail-interface-name] pkgs = contrail-interface-name makeloc = tools/packaging/common/rpm diff --git a/build/package_configs/centoslinux71/kilo/depends_contrail_dependent_packages.cfg b/build/package_configs/centoslinux71/kilo/depends_contrail_dependent_packages.cfg index 03ee24759..23e9555f4 100644 --- a/build/package_configs/centoslinux71/kilo/depends_contrail_dependent_packages.cfg +++ b/build/package_configs/centoslinux71/kilo/depends_contrail_dependent_packages.cfg @@ -658,6 +658,26 @@ file = keepalived-1.2.13-6.el7.x86_64.rpm md5 = d516b65092bb8e83c7d8a5474dfeefa8 source = repo:base +[kernel-3.10.0-327.10.1.el7] +file = kernel-3.10.0-327.10.1.el7.x86_64.rpm +md5 = f28fc700e3276f13b1e5fba4e5459793 +source = repo:updates + +[kernel-headers-3.10.0-327.10.1.el7] +file = kernel-headers-3.10.0-327.10.1.el7.x86_64.rpm +md5 = 598bbf7927e3e69c9dd6820e9b934815 +source = repo:updates + +[kernel-tools-3.10.0-327.10.1.el7] +file = kernel-tools-3.10.0-327.10.1.el7.x86_64.rpm +md5 = de120dc8ed401bc3c55d88c995552a86 +source = repo:updates + +[kernel-tools-libs-3.10.0-327.10.1.el7] +file = kernel-tools-libs-3.10.0-327.10.1.el7.x86_64.rpm +md5 = aaf83ada7c7504d8db4a9adbbc437db1 +source = repo:updates + [keyutils-1.5.8-3.el7] file = keyutils-1.5.8-3.el7.x86_64.rpm md5 = 1332e9cc5a05ae8385311648957ddabe @@ -1748,11 +1768,6 @@ file = python-futures-3.0.3-1.el7.noarch.rpm md5 = 55f25ee497a23a0d7424948869aa8524 source = repo:epel -[python-gevent-1.0-2.el7] -file = python-gevent-1.0-2.el7.x86_64.rpm -md5 = 15225ae038bd53b53e6ca73c520f82b8 -source = repo:extras - [python-greenlet-0.4.2-3.el7] file = python-greenlet-0.4.2-3.el7.x86_64.rpm md5 = 953a467532eb12586f788eaeec60dd53 diff --git a/build/package_configs/centoslinux71/kilo/depends_contrail_installer_packages.cfg b/build/package_configs/centoslinux71/kilo/depends_contrail_installer_packages.cfg index dd2611e15..32a433f54 100644 --- a/build/package_configs/centoslinux71/kilo/depends_contrail_installer_packages.cfg +++ b/build/package_configs/centoslinux71/kilo/depends_contrail_installer_packages.cfg @@ -118,10 +118,11 @@ file = python-ecdsa-0.11-3.el7.centos.noarch.rpm md5 = d0e0370629d546b390ec258e12292147 source = repo:extras -[python-Fabric-1.7.5-1.1contrail0] -file = python-Fabric-1.7.5-1.1contrail0.noarch.rpm -md5 = e3a4b8cc6271229a76545645564dd4b5 +[python-Fabric-1.7.5-1.2contrail0] +file = python-Fabric-1.7.5-1.2contrail0.noarch.rpm +md5 = 899afb211197ada80e326b6a86b53fc0 source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-thirdparty-packages, contrail-installer-packages [python-libs-2.7.5-18.el7_1.1] file = python-libs-2.7.5-18.el7_1.1.x86_64.rpm diff --git a/build/package_configs/centoslinux71/kilo/depends_contrail_openstack_packages.cfg b/build/package_configs/centoslinux71/kilo/depends_contrail_openstack_packages.cfg index 0ee3166c0..51c7787e0 100644 --- a/build/package_configs/centoslinux71/kilo/depends_contrail_openstack_packages.cfg +++ b/build/package_configs/centoslinux71/kilo/depends_contrail_openstack_packages.cfg @@ -34,6 +34,11 @@ location = package_type = contrail-install-packages, contrail-openstack-packages source = repo:openstack-kilo +[lz4-r131-2.el7] +file = lz4-r131-2.el7.x86_64.rpm +md5 = f2c555cdc1b124d2d419b705f70056f5 +source = repo:openstack-mitaka + [mariadb-galera-common-5.5.40-2.el7] file = mariadb-galera-common-5.5.40-2.el7.x86_64.rpm md5 = 2694c15677e51733593f5b88b587ef31 @@ -58,6 +63,10 @@ md5 = 8ee9aed65bb91ce198664e1a568c0f90 file = openstack-heat-api-2015.1.1-1.el7.noarch.rpm md5 = 74d69aba701e5991ffd19a4cb508367c +[openstack-heat-api-cfn-2015.1.1-1.el7] +file = openstack-heat-api-cfn-2015.1.1-1.el7.noarch.rpm +md5 = 2a0e2e841faa84243bdf02dd8c719933 + [openstack-heat-common-2015.1.1-1.el7] file = openstack-heat-common-2015.1.1-1.el7.noarch.rpm md5 = 106eb3daca374f199c07b351aaaef014 diff --git a/build/package_configs/centoslinux71/kilo/depends_contrail_thirdparty_packages.cfg b/build/package_configs/centoslinux71/kilo/depends_contrail_thirdparty_packages.cfg index 2327abadc..28613796b 100644 --- a/build/package_configs/centoslinux71/kilo/depends_contrail_thirdparty_packages.cfg +++ b/build/package_configs/centoslinux71/kilo/depends_contrail_thirdparty_packages.cfg @@ -61,13 +61,13 @@ md5 = e83decbf4017da6f47696842aa909e13 file = hc-httpcore-4.1-1.jpp6.noarch.rpm md5 = 65d9fbf17070841708643f7eaa000071 -[ifmap-server-0.3.2-2contrail.el7] -file = ifmap-server-0.3.2-2contrail.el7.noarch.rpm -md5 = 3f89792cf3d8a781e7e38f17e5b2e6f6 +[ifmap-server-0.3.2-5contrail.el7] +file = ifmap-server-0.3.2-5contrail.el7.centos.noarch.rpm +md5 = a0362fcbaf2a3cde9f41fc3a98b4a78f -[kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7.centos] -file = kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7.centos.x86_64.rpm -md5 = 97dee52c332b8d6de510631d4129b7af +[kafka-2.11-0.9.0.1.0contrail0.el7.centos] +file = kafka-2.11-0.9.0.1.0contrail0.el7.centos.x86_64.rpm +md5 = 2ba18cafa558d7d04d486f5a097b1855 [librdkafka-devel-0.8.5-2.0contrail0.el7.centos] file = librdkafka-devel-0.8.5-2.0contrail0.el7.centos.x86_64.rpm @@ -133,6 +133,10 @@ md5 = de2aa10a5958e7f16b7dcbac3d1d952b file = python-cassandra-driver-3.0.0-0contrail2.el7.centos.x86_64.rpm md5 = c85802f977a132012443202a6d27cd9e +[python-gevent-1.1rc5-1contrail1.el7.centos] +file = python-gevent-1.1rc5-1contrail1.el7.centos.x86_64.rpm +md5 = d52a43d8659c5ea402d21ea9770e0da2 + [python-geventhttpclient-1.0a-0contrail.el7] file = python-geventhttpclient-1.0a-0contrail.el7.x86_64.rpm md5 = 045388afa560fce0ebdd47bf18bef3b5 @@ -145,6 +149,10 @@ md5 = 5180b60b42598b19a809bb79f28f3058 file = python-kafka-python-0.9.4-1.1.noarch.rpm md5 = d6901cbe82f61880ba7c741f65e68fb3 +[python-kafka-1.0.1-0contrail0.el7.centos.noarch] +file = python-kafka-1.0.1-0contrail0.el7.centos.noarch.rpm +md5 = 241862887705c1c787a90a4e2403a98b + [python-kazoo-1.3.1_1.1contrail2.el7] file = python-kazoo-1.3.1-1.1contrail2.el7.centos.noarch.rpm md5 = 11f3ee671efc37a4b7941275d55cba06 @@ -161,6 +169,10 @@ md5 = 62641a22f76d2b5a1c030a9e32f8f897 file = python-requests-2.6.0-1.1contrail1.el7.centos.noarch.rpm md5 = 86865ba4643bdb28bad2c275bc3fafb5 +[python-sseclient-0.0.11-0contrail0] +file = python-sseclient-0.0.11-0contrail0.el7.centos.noarch.rpm +md5 = 121c43e7c9dcb693cea0d5fbb0a03fb9 + [redis-py-0.1-2contrail.el7] file = redis-py-0.1-2contrail.el7.noarch.rpm md5 = 7c402a8bd07a9d54c4a7193fabc71fd1 @@ -181,3 +193,6 @@ md5 = 40295fd03e32a767acda161dca3a04db file = python-websocket-client-0.14.1-108.el7.centos.noarch.rpm md5 = 370cab77e2ce3e9c403d38d88ddd9d0b +[libzookeeper-3.4.8-0contrail0.el7] +file = libzookeeper-3.4.8-0contrail0.el7.centos.x86_64.rpm +md5 = 84acb00d70f87b00bee35fc735bd4d3a diff --git a/build/package_configs/centoslinux71/liberty/contrail_packages.cfg b/build/package_configs/centoslinux71/liberty/contrail_packages.cfg new file mode 100755 index 000000000..a5b930467 --- /dev/null +++ b/build/package_configs/centoslinux71/liberty/contrail_packages.cfg @@ -0,0 +1,206 @@ +# ***************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# ***************************************************************************** +# Usage: +# [build target name] +# pkgs = # list of packages generated by the make target +# # multiple packages are comma separated or with +# # new lines +# +# pkg_pattern = # pattern to match packages. would be used +# # packager to pick packages from given directory +# +# builtloc = # location where packages are copied after built +# # these path are taken relative to sandbox +# +# makeloc = # location where make command has to issued +# # these path are taken relative to sandbox +# +# Note: +# Sections are grouped as Individual targets, default targets and +# wrapper package. Place your new targets appropriately. +# ***************************************************************************** + +############################################################################## +# Default Section +# Values defined in default section applies to variables in all sections +# unless they're are overriden in the section + +[DEFAULT] +pkgs = +pkg_pattern = {pkg}-[0-9]*.rpm +builtloc = controller/build/package-build/RPMS/ +target = %(__name__)s +makeloc = +package_type = contrail-install-packages, contrail-packages + +############################################################################### +# Individual target sections + +[contrail] +pkgs = contrail-analytics, contrail-config, contrail-control, contrail-lib, + contrail-vrouter-agent, contrail-vrouter-source, contrail-vrouter-utils, + python-contrail, python-contrail-vrouter-api, contrail-vrouter, + contrail-config-openstack, contrail-utils, + python-opencontrail-vrouter-netns, contrail-docs +makeloc = tools/packaging/common/rpm + +[contrail-dns] +pkgs = contrail-dns +makeloc = tools/packaging/common/rpm + +[contrail-database-common] +pkgs = contrail-database-common +makeloc = tools/packaging/common/rpm + +[contrail-interface-name] +pkgs = contrail-interface-name +makeloc = tools/packaging/common/rpm + +[contrail-heat] +pkgs = contrail-heat +makeloc = tools/packaging/common/rpm + +[contrail-setup] +pkgs = contrail-setup +makeloc = tools/packaging/common/rpm + +[contrail-openstack] +pkgs = contrail-openstack +makeloc = tools/packaging/common/rpm +package_type = contrail-install-packages, contrail-openstack-packages, contrail-packages + +[contrail-openstack-analytics] +pkgs = contrail-openstack-analytics +makeloc = tools/packaging/common/rpm +package_type = contrail-install-packages, contrail-openstack-packages, contrail-packages + +[contrail-openstack-config] +pkgs = contrail-openstack-config +makeloc = tools/packaging/common/rpm +package_type = contrail-install-packages, contrail-openstack-packages, contrail-packages + +[contrail-openstack-control] +pkgs = contrail-openstack-control +makeloc = tools/packaging/common/rpm +package_type = contrail-install-packages, contrail-openstack-packages, contrail-packages + +[contrail-openstack-database] +pkgs = contrail-openstack-database +makeloc = tools/packaging/common/rpm +package_type = contrail-install-packages, contrail-openstack-packages, contrail-packages + +[contrail-openstack-vrouter] +pkgs = contrail-openstack-vrouter +makeloc = tools/packaging/common/rpm +package_type = contrail-install-packages, contrail-openstack-packages, contrail-packages + +[contrail-openstack-webui] +pkgs = contrail-openstack-webui +makeloc = tools/packaging/common/rpm +package_type = contrail-install-packages, contrail-openstack-packages, contrail-packages + +[contrail-web-core] +pkgs = contrail-web-core +makeloc = tools/packaging/common/rpm + +[contrail-web-controller] +pkgs = contrail-web-controller +makeloc = tools/packaging/common/rpm + +[contrail-database] +pkgs = contrail-database +makeloc = tools/packaging/common/rpm + +[contrail-fabric-utils] +pkgs = contrail-fabric-utils +makeloc = tools/packaging/third_party/ +package_type = contrail-install-packages, contrail-packages, contrail-installer-packages + +[contrail-nodemgr] +pkgs = contrail-nodemgr +makeloc = tools/packaging/common/rpm + +[contrail-vrouter-init] +pkgs = contrail-vrouter-init +makeloc = tools/packaging/common/rpm + +[contrail-vrouter-common] +pkgs = contrail-vrouter-common +makeloc = tools/packaging/common/rpm + +[neutron-plugin-contrail] +pkgs = neutron-plugin-contrail +makeloc = tools/packaging/common/rpm + +[contrail-nova-networkapi] +pkgs = contrail-nova-networkapi +makelog = tools/packaging/common/rpm + +############################################################################### +# Virtual Target sections + +[contrail-cloud] +pkgs = +package_type = contrail-cloud +builtloc = build/ +target = +sub_package_type = contrail-packages, contrail-openstack-packages, + contrail-thirdparty-packages, contrail-dependent-packages + +[contrail-networking] +pkgs = +package_type = contrail-networking +builtloc = build/ +target = +sub_package_type = contrail-packages, contrail-thirdparty-packages, + contrail-dependent-packages + +############################################################################### +# Wrapper Package Sections + +[contrail-installer-packages] +pkgs = contrail-installer-packages +makeloc = tools/packaging/common/rpm +package_type = contrail-installer-packages + +[contrail-install-packages] +pkgs = contrail-install-packages +makeloc = tools/packaging/common/rpm +package_type = contrail-install-packages + +[contrail-thirdparty-packages] +pkgs = contrail-thirdparty-packages +makeloc = tools/packaging/common/rpm +package_type = contrail-thirdparty-packages + +[contrail-packages] +pkgs = contrail-packages +makeloc = tools/packaging/common/rpm +package_type = contrail-packages + +[contrail-dependent-packages] +pkgs = contrail-dependent-packages +makeloc = tools/packaging/common/rpm +package_type = contrail-dependent-packages + +[contrail-openstack-packages] +pkgs = contrail-openstack-packages +makeloc = tools/packaging/common/rpm +package_type = contrail-openstack-packages + +############################################################################### +# Default target sections + +[contrail-default-target] +pkgs = +makeloc = tools/packaging/common/rpm +target = all +package_type = contrail-install-packages + +[openstack-default-target] +pkgs = +makeloc = tools/packaging/openstack/centos_64 +target = all +package_type = contrail-install-packages diff --git a/build/package_configs/centoslinux71/liberty/depends_contrail_dependent_packages.cfg b/build/package_configs/centoslinux71/liberty/depends_contrail_dependent_packages.cfg new file mode 100644 index 000000000..b90cdb0a1 --- /dev/null +++ b/build/package_configs/centoslinux71/liberty/depends_contrail_dependent_packages.cfg @@ -0,0 +1,3420 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-install-packages, contrail-dependent-packages +source = + +[GConf2-3.2.6-8.el7] +file = GConf2-3.2.6-8.el7.x86_64.rpm +md5 = 46e6b780b4158c1453ef5366f37ad0bd +source = repo:base + +[MySQL-python-1.2.3-11.el7] +file = MySQL-python-1.2.3-11.el7.x86_64.rpm +md5 = 1a23ccb20df8d33d857b9a5641ee2611 +source = repo:base + +[NetworkManager-1.0.6-29.el7_2] +file = NetworkManager-1.0.6-29.el7_2.x86_64.rpm +md5 = e0506dd35b3e02677b9d235a61e4a0cc +source = repo:updates + +[NetworkManager-libnm-1.0.6-29.el7_2] +file = NetworkManager-libnm-1.0.6-29.el7_2.x86_64.rpm +md5 = bf876deb40530f0760edffa49b9a656e +source = repo:updates + +[NetworkManager-tui-1.0.6-29.el7_2] +file = NetworkManager-tui-1.0.6-29.el7_2.x86_64.rpm +md5 = 0d86f28cecefa5240d554d143bd5c658 +source = repo:updates + +[NetworkManager-wifi-1.0.6-29.el7_2] +file = NetworkManager-wifi-1.0.6-29.el7_2.x86_64.rpm +md5 = 8479a51c70f958a62e682a26f595c1cf +source = repo:updates + +[OpenIPMI-modalias-2.0.19-11.el7] +file = OpenIPMI-modalias-2.0.19-11.el7.x86_64.rpm +md5 = 71865196c44039678d83b9724d3319be +source = repo:base + +[PyPAM-0.5.0-19.el7] +file = PyPAM-0.5.0-19.el7.x86_64.rpm +md5 = e3f87de170f211ee3563d78c242c65e0 +source = repo:base + +[abrt-2.1.11-36.el7.centos] +file = abrt-2.1.11-36.el7.centos.x86_64.rpm +md5 = 596943047e75dbfa2150058a2f65074a +source = repo:base + +[abrt-dbus-2.1.11-36.el7.centos] +file = abrt-dbus-2.1.11-36.el7.centos.x86_64.rpm +md5 = 02b0860bb4a6e4ba8ffc04fc34215f35 +source = repo:base + +[abrt-libs-2.1.11-36.el7.centos] +file = abrt-libs-2.1.11-36.el7.centos.x86_64.rpm +md5 = 5c76729cfb1ffd266bc34733c82bfc4f +source = repo:base + +[abrt-python-2.1.11-36.el7.centos] +file = abrt-python-2.1.11-36.el7.centos.x86_64.rpm +md5 = 4ed065008ba9d19e1ccb9e8ed1d20038 +source = repo:base + +[alsa-tools-firmware-1.0.28-2.el7] +file = alsa-tools-firmware-1.0.28-2.el7.x86_64.rpm +md5 = 595851ea928ba21d4f38767cb1ff7ad2 +source = repo:base + +[apache-commons-codec-1.8-7.el7] +file = apache-commons-codec-1.8-7.el7.noarch.rpm +md5 = 73bbb478856d223f46cff13162c751da +source = repo:base + +[apache-commons-lang-2.6-15.el7] +file = apache-commons-lang-2.6-15.el7.noarch.rpm +md5 = 147986dc5cb2ab29ad2a371781d204b3 +source = repo:base + +[apache-commons-logging-1.1.2-7.el7] +file = apache-commons-logging-1.1.2-7.el7.noarch.rpm +md5 = aaaf35696777f98818beb538425ea5f6 +source = repo:base + +[apr-1.4.8-3.el7] +file = apr-1.4.8-3.el7.x86_64.rpm +md5 = 5603cb2be66ba099c2c6d63792808f25 +source = repo:base + +[apr-util-1.5.2-6.el7] +file = apr-util-1.5.2-6.el7.x86_64.rpm +md5 = 9bf69f63dea860b3313f91f39e306d84 +source = repo:base + +[atk-2.14.0-1.el7] +file = atk-2.14.0-1.el7.x86_64.rpm +md5 = 9ecd4ef1f2a9d28284a587e3ef380c73 +source = repo:base + +[atlas-3.10.1-10.el7] +file = atlas-3.10.1-10.el7.x86_64.rpm +md5 = a0e1f20bdeafe9f8ea96298ef42b85cc +source = repo:base + +[attr-2.4.46-12.el7] +file = attr-2.4.46-12.el7.x86_64.rpm +md5 = cb1bbf592af8cc085fbb33757ec1f8fd +source = repo:base + +[augeas-libs-1.4.0-2.el7] +file = augeas-libs-1.4.0-2.el7.x86_64.rpm +md5 = 9c7b1f644733f716d9f654252b516130 +source = repo:base + +[authconfig-6.2.8-10.el7] +file = authconfig-6.2.8-10.el7.x86_64.rpm +md5 = bb1abe9d15c2a3cec0f3df2d27fb970f +source = repo:base + +[avahi-autoipd-0.6.31-15.el7_2.1] +file = avahi-autoipd-0.6.31-15.el7_2.1.x86_64.rpm +md5 = f67abfd97910cb57ac6090bc138c5c60 +source = repo:updates + +[avahi-libs-0.6.31-15.el7_2.1] +file = avahi-libs-0.6.31-15.el7_2.1.x86_64.rpm +md5 = be162fa705ccf6b96a13307d28f25be6 +source = repo:updates + +[avalon-framework-4.3-10.el7] +file = avalon-framework-4.3-10.el7.noarch.rpm +md5 = 98ccb428f9dfeea033546c3647a15add +source = repo:base + +[avalon-logkit-2.1-14.el7] +file = avalon-logkit-2.1-14.el7.noarch.rpm +md5 = 578e40857f5a42dd01c00a35756dfdb6 +source = repo:base + +[bash-4.2.46-19.el7] +file = bash-4.2.46-19.el7.x86_64.rpm +md5 = 4a9402c44666824430f297ea2d31ed92 +source = repo:base + +[bind-libs-lite-9.9.4-29.el7_2.3] +file = bind-libs-lite-9.9.4-29.el7_2.3.x86_64.rpm +md5 = 9e54decdc57753a5c827869a6979bfde +source = repo:updates + +[bind-license-9.9.4-29.el7_2.3] +file = bind-license-9.9.4-29.el7_2.3.noarch.rpm +md5 = 489c470d7c2fa7c14cab0ff2626c2f77 +source = repo:updates + +[binutils-2.23.52.0.1-55.el7] +file = binutils-2.23.52.0.1-55.el7.x86_64.rpm +md5 = 8ffac95ccdc2e74fc6d16682b6fc8583 +source = repo:base + +[biosdevname-0.6.2-1.el7] +file = biosdevname-0.6.2-1.el7.x86_64.rpm +md5 = 7482e0cd3583e941a3038812b03c2e58 +source = repo:base + +[blas-3.4.2-5.el7] +file = blas-3.4.2-5.el7.x86_64.rpm +md5 = 4f4b40a1c7a21f18f0001d6fed84d2e8 +source = repo:base + +[boost-1.53.0-25.el7] +file = boost-1.53.0-25.el7.x86_64.rpm +md5 = 1e42c89844d572a43483ce1750e36677 +source = repo:base + +[boost-atomic-1.53.0-25.el7] +file = boost-atomic-1.53.0-25.el7.x86_64.rpm +md5 = e293d89a92753e86c2705e1959abcc18 +source = repo:base + +[boost-chrono-1.53.0-25.el7] +file = boost-chrono-1.53.0-25.el7.x86_64.rpm +md5 = f08cd0524b064cbdfd5d3fd8c45481fa +source = repo:base + +[boost-context-1.53.0-25.el7] +file = boost-context-1.53.0-25.el7.x86_64.rpm +md5 = d0ddb5add2554d9a05e63f2d78969034 +source = repo:base + +[boost-date-time-1.53.0-25.el7] +file = boost-date-time-1.53.0-25.el7.x86_64.rpm +md5 = a7b39f706f789b659ab8db4bc0c1617a +source = repo:base + +[boost-filesystem-1.53.0-25.el7] +file = boost-filesystem-1.53.0-25.el7.x86_64.rpm +md5 = 8d856dd9eed6933bf5244827eda0e9b5 +source = repo:base + +[boost-graph-1.53.0-25.el7] +file = boost-graph-1.53.0-25.el7.x86_64.rpm +md5 = 4ff5c988fdfb43fe934e9e61ceece1fe +source = repo:base + +[boost-iostreams-1.53.0-25.el7] +file = boost-iostreams-1.53.0-25.el7.x86_64.rpm +md5 = 9c02a2382ff9ee277e183c9bbf58861a +source = repo:base + +[boost-locale-1.53.0-25.el7] +file = boost-locale-1.53.0-25.el7.x86_64.rpm +md5 = 5ebc59a387c1795b5d975846374445f6 +source = repo:base + +[boost-math-1.53.0-25.el7] +file = boost-math-1.53.0-25.el7.x86_64.rpm +md5 = e3f7e209b00416c7b1f3f8f9135c875f +source = repo:base + +[boost-program-options-1.53.0-25.el7] +file = boost-program-options-1.53.0-25.el7.x86_64.rpm +md5 = 9d26413e2ee1c0b3d328c3fd4e08392d +source = repo:base + +[boost-python-1.53.0-25.el7] +file = boost-python-1.53.0-25.el7.x86_64.rpm +md5 = df7b1fc3a965a3765af8b243fb2c8927 +source = repo:base + +[boost-random-1.53.0-25.el7] +file = boost-random-1.53.0-25.el7.x86_64.rpm +md5 = 7ef11df3b6b33b17d1fb536324d33935 +source = repo:base + +[boost-regex-1.53.0-25.el7] +file = boost-regex-1.53.0-25.el7.x86_64.rpm +md5 = 450a547d80f26089e163e15533779884 +source = repo:base + +[boost-serialization-1.53.0-25.el7] +file = boost-serialization-1.53.0-25.el7.x86_64.rpm +md5 = a29bc43a2b83aeae1a71d36e516357b4 +source = repo:base + +[boost-signals-1.53.0-25.el7] +file = boost-signals-1.53.0-25.el7.x86_64.rpm +md5 = ae4620f94fe426160e39dbaf38483134 +source = repo:base + +[boost-system-1.53.0-25.el7] +file = boost-system-1.53.0-25.el7.x86_64.rpm +md5 = 9dda66ba7a3a277d0a4ea03ab1fca6fd +source = repo:base + +[boost-test-1.53.0-25.el7] +file = boost-test-1.53.0-25.el7.x86_64.rpm +md5 = b94e45ae13a3cff9f2f9dd69a795f310 +source = repo:base + +[boost-thread-1.53.0-25.el7] +file = boost-thread-1.53.0-25.el7.x86_64.rpm +md5 = 483814a4764aa43928a7fe6081eb8ddc +source = repo:base + +[boost-timer-1.53.0-25.el7] +file = boost-timer-1.53.0-25.el7.x86_64.rpm +md5 = 375f3089e725b3698fbbb5c341c41017 +source = repo:base + +[boost-wave-1.53.0-25.el7] +file = boost-wave-1.53.0-25.el7.x86_64.rpm +md5 = 43ab4788ed1e4f8eb5ff20414326a7eb +source = repo:base + +[bridge-utils-1.5-9.el7] +file = bridge-utils-1.5-9.el7.x86_64.rpm +md5 = 0525bd4c10c1f794aef6cacb4a162607 +source = repo:base + +[btrfs-progs-3.19.1-1.el7] +file = btrfs-progs-3.19.1-1.el7.x86_64.rpm +md5 = a0dfbadd45655f82f42798c5f6150521 +source = repo:base + +[bzip2-1.0.6-13.el7] +file = bzip2-1.0.6-13.el7.x86_64.rpm +md5 = b27cee22a94871eed0ed72524c5b7b4f +source = repo:base + +[bzip2-libs-1.0.6-13.el7] +file = bzip2-libs-1.0.6-13.el7.x86_64.rpm +md5 = d95c661eb49a0086dd83bad06c799956 +source = repo:base + +[c-ares-1.10.0-3.el7] +file = c-ares-1.10.0-3.el7.x86_64.rpm +md5 = ce416a15cc521d0e851dcf0a545e9a65 +source = repo:base + +[ca-certificates-2015.2.6-70.1.el7_2] +file = ca-certificates-2015.2.6-70.1.el7_2.noarch.rpm +md5 = 6eb89ac81e5382e5d2a7f012b28be812 +source = repo:updates + +[cairo-1.14.2-1.el7] +file = cairo-1.14.2-1.el7.x86_64.rpm +md5 = bec2852e6aad5353c7d39d48e8864757 +source = repo:base + +[cal10n-0.7.7-4.el7] +file = cal10n-0.7.7-4.el7.noarch.rpm +md5 = 3ebd050092cee6712a61bacc5d64a4ce +source = repo:base + +[celt051-0.5.1.3-8.el7] +file = celt051-0.5.1.3-8.el7.x86_64.rpm +md5 = 4109dddeb6abb35c5fb5b8f512f978ec +source = repo:base + +[centos-logos-70.0.6-3.el7.centos] +file = centos-logos-70.0.6-3.el7.centos.noarch.rpm +md5 = 38a1af958beceb406ea063f6206575b2 +source = repo:base + +[centos-release-7-2.1511.el7.centos.2.10] +file = centos-release-7-2.1511.el7.centos.2.10.x86_64.rpm +md5 = e08a4284b2c396b7f7f757da15510918 +source = repo:base + +[chkconfig-1.3.61-5.el7] +file = chkconfig-1.3.61-5.el7.x86_64.rpm +md5 = 602c5cfdd3a7a0ecd9a5b13fb55b969f +source = repo:base + +[conntrack-tools-1.4.2-9.el7] +file = conntrack-tools-1.4.2-9.el7.x86_64.rpm +md5 = 7aa703959fe2ddd383a2ccc20ff011e1 +source = repo:base + +[coreutils-8.22-15.el7_2.1] +file = coreutils-8.22-15.el7_2.1.x86_64.rpm +md5 = ff5864f68bd4d03cb4d5813d56765f1a +source = repo:updates + +[cpio-2.11-24.el7] +file = cpio-2.11-24.el7.x86_64.rpm +md5 = 253bc02c853ac49d508cf8d6a49bc430 +source = repo:base + +[cpp-4.8.5-4.el7] +file = cpp-4.8.5-4.el7.x86_64.rpm +md5 = e238107f81bd9a66acc8707823ebec5b +source = repo:base + +[cronie-1.4.11-14.el7_2.1] +file = cronie-1.4.11-14.el7_2.1.x86_64.rpm +md5 = 3858bd8a2290772e9ad3262625ae07de +source = repo:updates + +[cronie-anacron-1.4.11-14.el7_2.1] +file = cronie-anacron-1.4.11-14.el7_2.1.x86_64.rpm +md5 = 13e54319c962c06ea95e8342125c3ae9 +source = repo:updates + +[crudini-0.7-1.el7] +file = crudini-0.7-1.el7.noarch.rpm +md5 = 50b2012c815b49ce2e4cf3508876e200 +source = repo:epel + +[cryptsetup-1.6.7-1.el7] +file = cryptsetup-1.6.7-1.el7.x86_64.rpm +md5 = 7af2550836775437d345f86ccafbd92a +source = repo:base + +[cryptsetup-libs-1.6.7-1.el7] +file = cryptsetup-libs-1.6.7-1.el7.x86_64.rpm +md5 = 9b2103005d2381d21b1cafec5a09039e +source = repo:base + +[cups-libs-1.6.3-22.el7] +file = cups-libs-1.6.3-22.el7.x86_64.rpm +md5 = 0275a653764fd1c14bf3b43925b7acd6 +source = repo:base + +[curl-7.29.0-25.el7.centos] +file = curl-7.29.0-25.el7.centos.x86_64.rpm +md5 = 9bb5921f08d57f294692bef3e3c23532 +source = repo:base + +[cyrus-sasl-2.1.26-20.el7_2] +file = cyrus-sasl-2.1.26-20.el7_2.x86_64.rpm +md5 = 26a74b28282a98c7f7501d3ec3a5e598 +source = repo:updates + +[cyrus-sasl-lib-2.1.26-20.el7_2] +file = cyrus-sasl-lib-2.1.26-20.el7_2.x86_64.rpm +md5 = 52e900536240b51ad1c2118e2e90a0b3 +source = repo:updates + +[cyrus-sasl-md5-2.1.26-20.el7_2] +file = cyrus-sasl-md5-2.1.26-20.el7_2.x86_64.rpm +md5 = 46b7fd989b387ad5b6fe3734d3fbf24d +source = repo:updates + +[dbus-1.6.12-13.el7] +file = dbus-1.6.12-13.el7.x86_64.rpm +md5 = 49cdc8b481fb7feb8acc8ff0027820bd +source = repo:base + +[dbus-libs-1.6.12-13.el7] +file = dbus-libs-1.6.12-13.el7.x86_64.rpm +md5 = 6ba3083e9637bff1cf963d576e8fed72 +source = repo:base + +[device-mapper-1.02.107-5.el7_2.1] +file = device-mapper-1.02.107-5.el7_2.1.x86_64.rpm +md5 = 95db191cea7ade723c4e0b274075a3c1 +source = repo:updates + +[device-mapper-event-1.02.107-5.el7_2.1] +file = device-mapper-event-1.02.107-5.el7_2.1.x86_64.rpm +md5 = d1f8f68530c348a12fe110aeb194e2ef +source = repo:updates + +[device-mapper-event-libs-1.02.107-5.el7_2.1] +file = device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64.rpm +md5 = 9167bea4f7ddf3b8dc925bf7e3063025 +source = repo:updates + +[device-mapper-libs-1.02.107-5.el7_2.1] +file = device-mapper-libs-1.02.107-5.el7_2.1.x86_64.rpm +md5 = 620bb10dfee7605c7663ad41a6ec58cd +source = repo:updates + +[device-mapper-persistent-data-0.5.5-1.el7] +file = device-mapper-persistent-data-0.5.5-1.el7.x86_64.rpm +md5 = ae4eaa6daffb365180c257a82af733c9 +source = repo:base + +[dhclient-4.2.5-42.el7.centos] +file = dhclient-4.2.5-42.el7.centos.x86_64.rpm +md5 = be9beccfea0ef9d55c53596fd883747f +source = repo:base + +[dhcp-common-4.2.5-42.el7.centos] +file = dhcp-common-4.2.5-42.el7.centos.x86_64.rpm +md5 = 2154cd8535d09a9daea4ba483dbe71fd +source = repo:base + +[dhcp-libs-4.2.5-42.el7.centos] +file = dhcp-libs-4.2.5-42.el7.centos.x86_64.rpm +md5 = 18889cdea50be2baf6e1301173cd8149 +source = repo:base + +[dibbler-client-1.0.1-0.RC1.2.el7] +file = dibbler-client-1.0.1-0.RC1.2.el7.x86_64.rpm +md5 = e6e97512ffca1b97522fbcebb736b4fc +source = repo:epel + +[dmidecode-2.12-9.el7] +file = dmidecode-2.12-9.el7.x86_64.rpm +md5 = 3166de8dd5f97bd5ae7e2692fea34de3 +source = repo:base + +[dnsmasq-2.66-14.el7_1] +file = dnsmasq-2.66-14.el7_1.x86_64.rpm +md5 = 923c27b23cd834141402f58f5695a83d +source = repo:base + +[dnsmasq-utils-2.66-14.el7_1] +file = dnsmasq-utils-2.66-14.el7_1.x86_64.rpm +md5 = ff1ef1907fffae6ba1776019c9f47040 +source = repo:base + +[dosfstools-3.0.20-9.el7] +file = dosfstools-3.0.20-9.el7.x86_64.rpm +md5 = 9740a75eb1ee710e31a82d4fe59120cb +source = repo:base + +[dracut-033-360.el7_2] +file = dracut-033-360.el7_2.x86_64.rpm +md5 = d0dfc95b55cf431f95f5d77fa28a7a75 +source = repo:updates + +[dracut-config-rescue-033-360.el7_2] +file = dracut-config-rescue-033-360.el7_2.x86_64.rpm +md5 = 6c05a9be1c30c968b1cd4574d93da082 +source = repo:updates + +[dracut-network-033-360.el7_2] +file = dracut-network-033-360.el7_2.x86_64.rpm +md5 = bec48ba87c3fb8795d972282b5af0de3 +source = repo:updates + +[elfutils-libelf-0.163-3.el7] +file = elfutils-libelf-0.163-3.el7.x86_64.rpm +md5 = af18a568c6b9010bb37bfac7a91e6678 +source = repo:base + +[elfutils-libs-0.163-3.el7] +file = elfutils-libs-0.163-3.el7.x86_64.rpm +md5 = bf75ea50d7fa1781c2b3a167663477f4 +source = repo:base + +[erlang-asn1-R16B-03.16.el7] +file = erlang-asn1-R16B-03.16.el7.x86_64.rpm +md5 = 74c3cb2fe6b652fab2548edddb5fc162 +source = repo:epel + +[erlang-compiler-R16B-03.16.el7] +file = erlang-compiler-R16B-03.16.el7.x86_64.rpm +md5 = 5dde61a5e91a9d946449a5a22aa744be +source = repo:epel + +[erlang-crypto-R16B-03.16.el7] +file = erlang-crypto-R16B-03.16.el7.x86_64.rpm +md5 = eb6beab811513da8e8671d1750cfc9b7 +source = repo:epel + +[erlang-erts-R16B-03.16.el7] +file = erlang-erts-R16B-03.16.el7.x86_64.rpm +md5 = 3f51ba4b0319e13be98a2ac32faff528 +source = repo:epel + +[erlang-hipe-R16B-03.16.el7] +file = erlang-hipe-R16B-03.16.el7.x86_64.rpm +md5 = 1b2cdaa4235256c694b0ffc70bc3001b +source = repo:epel + +[erlang-inets-R16B-03.16.el7] +file = erlang-inets-R16B-03.16.el7.x86_64.rpm +md5 = 01629e3cefd49657db8bedb1d51d5b52 +source = repo:epel + +[erlang-kernel-R16B-03.16.el7] +file = erlang-kernel-R16B-03.16.el7.x86_64.rpm +md5 = eb6db9f9e932dba7a574e010e25b6359 +source = repo:epel + +[erlang-mnesia-R16B-03.16.el7] +file = erlang-mnesia-R16B-03.16.el7.x86_64.rpm +md5 = 53f6be5250e53af350c0424524641973 +source = repo:epel + +[erlang-os_mon-R16B-03.16.el7] +file = erlang-os_mon-R16B-03.16.el7.x86_64.rpm +md5 = 1965e4fe3d343e4ec3a039417a407214 +source = repo:epel + +[erlang-otp_mibs-R16B-03.16.el7] +file = erlang-otp_mibs-R16B-03.16.el7.x86_64.rpm +md5 = a5e1bff3ac8d25021669d8fa9f17aaaa +source = repo:epel + +[erlang-public_key-R16B-03.16.el7] +file = erlang-public_key-R16B-03.16.el7.x86_64.rpm +md5 = 05744dbc314bb303bf04d66eb2a94623 +source = repo:epel + +[erlang-runtime_tools-R16B-03.16.el7] +file = erlang-runtime_tools-R16B-03.16.el7.x86_64.rpm +md5 = 3749f9ae55aa865af1a4e15a09df740d +source = repo:epel + +[erlang-sasl-R16B-03.16.el7] +file = erlang-sasl-R16B-03.16.el7.x86_64.rpm +md5 = 9e7205440dd4e252d77f7276cf134e48 +source = repo:epel + +[erlang-sd_notify-0.1-1.el7] +file = erlang-sd_notify-0.1-1.el7.x86_64.rpm +md5 = 782e12a3e17b3c750d9337e538a2e11d +source = repo:epel + +[erlang-snmp-R16B-03.16.el7] +file = erlang-snmp-R16B-03.16.el7.x86_64.rpm +md5 = fae337c928b974b87c7bee74c7df1174 +source = repo:epel + +[erlang-ssl-R16B-03.16.el7] +file = erlang-ssl-R16B-03.16.el7.x86_64.rpm +md5 = b016d6cc43dba3e355cbef71ac352a8b +source = repo:epel + +[erlang-stdlib-R16B-03.16.el7] +file = erlang-stdlib-R16B-03.16.el7.x86_64.rpm +md5 = d4ac122f5b05b3da080e7839591ac68f +source = repo:epel + +[erlang-syntax_tools-R16B-03.16.el7] +file = erlang-syntax_tools-R16B-03.16.el7.x86_64.rpm +md5 = 328533906fb2c1a7e0e083b0cf61c98d +source = repo:epel + +[erlang-tools-R16B-03.16.el7] +file = erlang-tools-R16B-03.16.el7.x86_64.rpm +md5 = 34839ad53056dd0ab3cc78304dd3c308 +source = repo:epel + +[erlang-xmerl-R16B-03.16.el7] +file = erlang-xmerl-R16B-03.16.el7.x86_64.rpm +md5 = 0b65c5a5ae63487e88410fee5a9619c1 +source = repo:epel + +[euca2ools-2.1.4-1.el7.centos] +file = euca2ools-2.1.4-1.el7.centos.noarch.rpm +md5 = f72b3dd8a80c54658916fff99d4223c8 +source = repo:extras + +[file-5.11-31.el7] +file = file-5.11-31.el7.x86_64.rpm +md5 = d53129ca4b3f064e9d34387b0f636f3c +source = repo:base + +[file-libs-5.11-31.el7] +file = file-libs-5.11-31.el7.x86_64.rpm +md5 = 1aafdbb6b1a4218ee53b84e9fe530e18 +source = repo:base + +[filesystem-3.2-20.el7] +file = filesystem-3.2-20.el7.x86_64.rpm +md5 = 2516777a402013e09d5d02479b7b5fa3 +source = repo:base + +[findutils-4.5.11-5.el7] +file = findutils-4.5.11-5.el7.x86_64.rpm +md5 = 63198a84f5227e9ce49f6a3a9a255c3b +source = repo:base + +[firewalld-0.3.9-14.el7] +file = firewalld-0.3.9-14.el7.noarch.rpm +md5 = db4494c9a9b4f01017cbd36af5e5ab03 +source = repo:base + +[flac-libs-1.3.0-5.el7_1] +file = flac-libs-1.3.0-5.el7_1.x86_64.rpm +md5 = f82ab380ab066df9744d6eaa86f01b75 +source = repo:base + +[fontconfig-2.10.95-7.el7] +file = fontconfig-2.10.95-7.el7.x86_64.rpm +md5 = 8a85eddf082f4ce726cb53b6e9cc28fa +source = repo:base + +[fontpackages-filesystem-1.44-8.el7] +file = fontpackages-filesystem-1.44-8.el7.noarch.rpm +md5 = 7207587be9ff9f6cfa5084d8fb438801 +source = repo:base + +[freetype-2.4.11-11.el7] +file = freetype-2.4.11-11.el7.x86_64.rpm +md5 = 1d967c3de8f9e85d185bc60cda8ecbc7 +source = repo:base + +[fuse-2.9.2-6.el7] +file = fuse-2.9.2-6.el7.x86_64.rpm +md5 = f216f2d9fdfcd57ddad16ddaea77e5d7 +source = repo:base + +[fuse-libs-2.9.2-6.el7] +file = fuse-libs-2.9.2-6.el7.x86_64.rpm +md5 = c13ee5580fbc3bf13200fc012e5102da +source = repo:base + +[galera-25.3.5-7.el7] +file = galera-25.3.5-7.el7.x86_64.rpm +md5 = 570e23bf1187d82798f1c15f34807800 +source = repo:epel + +[gcc-4.8.5-4.el7] +file = gcc-4.8.5-4.el7.x86_64.rpm +md5 = 88bd00bcdf4260f02c95759339824899 +source = repo:base + +[gdb-7.6.1-80.el7] +file = gdb-7.6.1-80.el7.x86_64.rpm +md5 = 94b9b52e285bfa8cd8c0365a03e3daa7 +source = repo:base + +[gdisk-0.8.6-5.el7] +file = gdisk-0.8.6-5.el7.x86_64.rpm +md5 = a42cfa4ea138cc04abdc2311c6d9dcdf +source = repo:base + +[gdk-pixbuf2-2.31.6-3.el7] +file = gdk-pixbuf2-2.31.6-3.el7.x86_64.rpm +md5 = 94605a4ddef3717ecef8e7a8762e0716 +source = repo:base + +[genisoimage-1.1.11-23.el7] +file = genisoimage-1.1.11-23.el7.x86_64.rpm +md5 = 20445a177342b5969aa2a5921c0d3531 +source = repo:base + +[geronimo-jms-1.1.1-19.el7] +file = geronimo-jms-1.1.1-19.el7.noarch.rpm +md5 = 663c1f6707098e10a3dc809db4df9d0c +source = repo:base + +[ghostscript-9.07-18.el7] +file = ghostscript-9.07-18.el7.x86_64.rpm +md5 = 295ba2283c1d3497b8261cb9e17a7cec +source = repo:base + +[ghostscript-fonts-5.50-32.el7] +file = ghostscript-fonts-5.50-32.el7.noarch.rpm +md5 = 1d180d961e3ac63da99c1451e7758e82 +source = repo:base + +[giflib-4.1.6-9.el7] +file = giflib-4.1.6-9.el7.x86_64.rpm +md5 = 756282335a54208abc81a96a1b62252c +source = repo:base + +[glib-networking-2.42.0-1.el7] +file = glib-networking-2.42.0-1.el7.x86_64.rpm +md5 = b3efb57fbecbf2fd6a3992daac2e485c +source = repo:base + +[glib2-2.42.2-5.el7] +file = glib2-2.42.2-5.el7.x86_64.rpm +md5 = 202b3f43a90f7de21d041eb833822019 +source = repo:base + +[glibc-2.17-106.el7_2.4] +file = glibc-2.17-106.el7_2.4.x86_64.rpm +md5 = 3f56c876803c0dafa456d4b3081e99d4 +source = repo:updates + +[glibc-common-2.17-106.el7_2.4] +file = glibc-common-2.17-106.el7_2.4.x86_64.rpm +md5 = c12df2e24f7fa960589c92af74415870 +source = repo:updates + +[glibc-devel-2.17-106.el7_2.4] +file = glibc-devel-2.17-106.el7_2.4.x86_64.rpm +md5 = 2913ca59a5fa02746c7a6f0209304b2a +source = repo:updates + +[glibc-headers-2.17-106.el7_2.4] +file = glibc-headers-2.17-106.el7_2.4.x86_64.rpm +md5 = 7029e606abec71018b74977c98d6b91a +source = repo:updates + +[glusterfs-3.7.1-16.0.1.el7.centos] +file = glusterfs-3.7.1-16.0.1.el7.centos.x86_64.rpm +md5 = c35a6c5d2b69898fd0fbcc6a51843114 +source = repo:updates + +[glusterfs-api-3.7.1-16.0.1.el7.centos] +file = glusterfs-api-3.7.1-16.0.1.el7.centos.x86_64.rpm +md5 = 45cca8cdcedc6bf980c4ee0fdfab0c38 +source = repo:updates + +[glusterfs-client-xlators-3.7.1-16.0.1.el7.centos] +file = glusterfs-client-xlators-3.7.1-16.0.1.el7.centos.x86_64.rpm +md5 = ea48795fae86f9861be3842f50290ba8 +source = repo:updates + +[glusterfs-libs-3.7.1-16.0.1.el7.centos] +file = glusterfs-libs-3.7.1-16.0.1.el7.centos.x86_64.rpm +md5 = eb93c78e6c2c903631315f127351a65d +source = repo:updates + +[gmp-6.0.0-12.el7_1] +file = gmp-6.0.0-12.el7_1.x86_64.rpm +md5 = 447612aec9ea88a32fa878537ddf8278 +source = repo:updates + +[gnutls-3.3.8-14.el7_2] +file = gnutls-3.3.8-14.el7_2.x86_64.rpm +md5 = 98a96f4c0d78cec39f3124af582dee3c +source = repo:updates + +[gnutls-dane-3.3.8-14.el7_2] +file = gnutls-dane-3.3.8-14.el7_2.x86_64.rpm +md5 = b8d68d57678f823c6574597cd7f4f781 +source = repo:updates + +[gnutls-utils-3.3.8-14.el7_2] +file = gnutls-utils-3.3.8-14.el7_2.x86_64.rpm +md5 = 4e538f3b00942ddd685f6c27a2be64e4 +source = repo:updates + +[gobject-introspection-1.42.0-1.el7] +file = gobject-introspection-1.42.0-1.el7.x86_64.rpm +md5 = e4e0ae387163ce752deb286f76dde2f4 +source = repo:base + +[gperftools-libs-2.4-7.el7] +file = gperftools-libs-2.4-7.el7.x86_64.rpm +md5 = 7f133e9352bd99431dfa0d3a06f6d7d4 +source = repo:base + +[graphite2-1.2.2-5.el7] +file = graphite2-1.2.2-5.el7.x86_64.rpm +md5 = 691fb0d8441391df36394321986580e6 +source = repo:base + +[grep-2.20-2.el7] +file = grep-2.20-2.el7.x86_64.rpm +md5 = 26363e9f5fd8307cb900fc1d87d4cad8 +source = repo:base + +[grub2-2.02-0.34.el7.centos] +file = grub2-2.02-0.34.el7.centos.x86_64.rpm +md5 = 9acae078d37c0c1bc8a7ec84925fad8d +source = repo:updates + +[grub2-tools-2.02-0.34.el7.centos] +file = grub2-tools-2.02-0.34.el7.centos.x86_64.rpm +md5 = a78c5167bd31eb638b06c88a4e9859e7 +source = repo:updates + +[grubby-8.28-17.el7] +file = grubby-8.28-17.el7.x86_64.rpm +md5 = 3545f8d32c9e607c054096e3e5460059 +source = repo:base + +[gsettings-desktop-schemas-3.14.2-1.el7] +file = gsettings-desktop-schemas-3.14.2-1.el7.x86_64.rpm +md5 = 47f4bc01952d938274b91975fd6d2824 +source = repo:base + +[gsm-1.0.13-11.el7] +file = gsm-1.0.13-11.el7.x86_64.rpm +md5 = 07f27d7304ebe78a1d0eb89f82da083f +source = repo:base + +[gssproxy-0.4.1-7.el7] +file = gssproxy-0.4.1-7.el7.x86_64.rpm +md5 = 74176832f3e63dc2733af165ff4ec271 +source = repo:base + +[gtk2-2.24.28-8.el7] +file = gtk2-2.24.28-8.el7.x86_64.rpm +md5 = 2cf7f577b3017d0563c048c695580e10 +source = repo:base + +[gzip-1.5-8.el7] +file = gzip-1.5-8.el7.x86_64.rpm +md5 = eb6e62903b2097dc40f57c7986d68a5a +source = repo:base + +[haproxy-1.5.14-3.el7] +file = haproxy-1.5.14-3.el7.x86_64.rpm +md5 = 17146e60ef188651f2f55263d8e26b9b +source = repo:base + +[harfbuzz-0.9.36-1.el7] +file = harfbuzz-0.9.36-1.el7.x86_64.rpm +md5 = 6207c8a83c6e3ffad86e2809fb15eb16 +source = repo:base + +[hicolor-icon-theme-0.12-7.el7] +file = hicolor-icon-theme-0.12-7.el7.noarch.rpm +md5 = 6a63faeec83b6f89d0cad083539d0edf +source = repo:base + +[hiera-1.3.4-5.el7] +file = hiera-1.3.4-5.el7.noarch.rpm +md5 = a486343ddb960f95ad837a6f8d6baccc +source = repo:epel + +[hivex-1.3.10-5.7.el7] +file = hivex-1.3.10-5.7.el7.x86_64.rpm +md5 = 62897f7554fac49a7eb8735cc1f5d165 +source = repo:base + +[httpd-2.4.6-40.el7.centos] +file = httpd-2.4.6-40.el7.centos.x86_64.rpm +md5 = 75dc984397dc54cdbb98d85f3780f709 +source = repo:base + +[httpd-tools-2.4.6-40.el7.centos] +file = httpd-tools-2.4.6-40.el7.centos.x86_64.rpm +md5 = 57c448ccc3e965b88ca2b6c171c03d14 +source = repo:base + +[hwdata-0.252-8.1.el7] +file = hwdata-0.252-8.1.el7.x86_64.rpm +md5 = 5634af59f1be35ab891ba090d11f78ce +source = repo:base + +[icoutils-0.31.0-3.el7] +file = icoutils-0.31.0-3.el7.x86_64.rpm +md5 = cba7015bc9f1288f5af8dc8609e57df1 +source = repo:base + +[initscripts-9.49.30-1.el7_2.2] +file = initscripts-9.49.30-1.el7_2.2.x86_64.rpm +md5 = 04d8777deb2025661517895e2a324bdd +source = repo:updates + +[ipmitool-1.8.13-8.el7_1] +file = ipmitool-1.8.13-8.el7_1.x86_64.rpm +md5 = ddd868e96bf0c2c793d938ab6d01b95c +source = repo:base + +[iproute-3.10.0-54.el7] +file = iproute-3.10.0-54.el7.x86_64.rpm +md5 = 0b7e8b74f4f94082d49bc00f73b8b8f4 +source = repo:base + +[iprutils-2.4.8-1.el7] +file = iprutils-2.4.8-1.el7.x86_64.rpm +md5 = 10f1a06851ed726d7b350bf314a210be +source = repo:base + +[ipset-6.19-4.el7] +file = ipset-6.19-4.el7.x86_64.rpm +md5 = 78eafdb25456bba90b709d079a0705cd +source = repo:base + +[ipset-libs-6.19-4.el7] +file = ipset-libs-6.19-4.el7.x86_64.rpm +md5 = 54a98b49343de992ff40a011c158ce29 +source = repo:base + +[iptables-1.4.21-16.el7] +file = iptables-1.4.21-16.el7.x86_64.rpm +md5 = 24a3011680db458a3b00fa37242030b9 +source = repo:base + +[iptables-services-1.4.21-16.el7] +file = iptables-services-1.4.21-16.el7.x86_64.rpm +md5 = 9420a265f704580edab6a037e8865d78 +source = repo:base + +[iputils-20121221-7.el7] +file = iputils-20121221-7.el7.x86_64.rpm +md5 = 0307d1a29eb99c7e952971572ef7973d +source = repo:base + +[ipxe-roms-qemu-20130517-8.gitc4bce43.el7_2.1] +file = ipxe-roms-qemu-20130517-8.gitc4bce43.el7_2.1.noarch.rpm +md5 = 3cc966b32d3f24419b3ec0281d787eaa +source = repo:updates + +[irqbalance-1.0.7-5.el7] +file = irqbalance-1.0.7-5.el7.x86_64.rpm +md5 = 50ef888de4bff0219cbd5f534754af07 +source = repo:base + +[iscsi-initiator-utils-6.2.0.873-32.el7] +file = iscsi-initiator-utils-6.2.0.873-32.el7.x86_64.rpm +md5 = 5872b4c54dbe67e82e6cc85361d897db +source = repo:base + +[iscsi-initiator-utils-iscsiuio-6.2.0.873-32.el7] +file = iscsi-initiator-utils-iscsiuio-6.2.0.873-32.el7.x86_64.rpm +md5 = fbef0c2db3636b0c2f598e5aef5009cb +source = repo:base + +[iwl100-firmware-39.31.5.1-43.el7] +file = iwl100-firmware-39.31.5.1-43.el7.noarch.rpm +md5 = 6f6acaf85eaa61aea490900e26d96981 +source = repo:base + +[iwl1000-firmware-39.31.5.1-43.el7] +file = iwl1000-firmware-39.31.5.1-43.el7.noarch.rpm +md5 = 1d45c0328a515fb034f5204ef577710e +source = repo:base + +[iwl105-firmware-18.168.6.1-43.el7] +file = iwl105-firmware-18.168.6.1-43.el7.noarch.rpm +md5 = 8511572c7dbef25b986f88cbe4ff3d23 +source = repo:base + +[iwl135-firmware-18.168.6.1-43.el7] +file = iwl135-firmware-18.168.6.1-43.el7.noarch.rpm +md5 = b0438091c962b78cf97aba1a319ee1c6 +source = repo:base + +[iwl2000-firmware-18.168.6.1-43.el7] +file = iwl2000-firmware-18.168.6.1-43.el7.noarch.rpm +md5 = 5cb8b0ceb29b255a51c822abc1526009 +source = repo:base + +[iwl2030-firmware-18.168.6.1-43.el7] +file = iwl2030-firmware-18.168.6.1-43.el7.noarch.rpm +md5 = 9348f330b96a18a385ab28eb41797404 +source = repo:base + +[iwl3160-firmware-22.0.7.0-43.el7] +file = iwl3160-firmware-22.0.7.0-43.el7.noarch.rpm +md5 = e377d3f21fe07c761f9a99567b32c48a +source = repo:base + +[iwl3945-firmware-15.32.2.9-43.el7] +file = iwl3945-firmware-15.32.2.9-43.el7.noarch.rpm +md5 = f93b9aad108140856e1b859ec418c60e +source = repo:base + +[iwl4965-firmware-228.61.2.24-43.el7] +file = iwl4965-firmware-228.61.2.24-43.el7.noarch.rpm +md5 = fe1dad1cb1ba72c1bafb132fc6f183f3 +source = repo:base + +[iwl5000-firmware-8.83.5.1_1-43.el7] +file = iwl5000-firmware-8.83.5.1_1-43.el7.noarch.rpm +md5 = abde1deff99bb201b4b638ea545c0ce5 +source = repo:base + +[iwl5150-firmware-8.24.2.2-43.el7] +file = iwl5150-firmware-8.24.2.2-43.el7.noarch.rpm +md5 = 2e463730544928bb4f759d6be9e903cd +source = repo:base + +[iwl6000-firmware-9.221.4.1-43.el7] +file = iwl6000-firmware-9.221.4.1-43.el7.noarch.rpm +md5 = bed1c0e6ca7b7f2903a3c92d90869031 +source = repo:base + +[iwl6000g2a-firmware-17.168.5.3-43.el7] +file = iwl6000g2a-firmware-17.168.5.3-43.el7.noarch.rpm +md5 = e1cf57fe341388423173620d7da0cc6a +source = repo:base + +[iwl6000g2b-firmware-17.168.5.2-43.el7] +file = iwl6000g2b-firmware-17.168.5.2-43.el7.noarch.rpm +md5 = f70139a216026d403e54da90018c7cd3 +source = repo:base + +[iwl6050-firmware-41.28.5.1-43.el7] +file = iwl6050-firmware-41.28.5.1-43.el7.noarch.rpm +md5 = d3f28879ef7d1d5465b771d0df46f727 +source = repo:base + +[iwl7260-firmware-22.0.7.0-43.el7] +file = iwl7260-firmware-22.0.7.0-43.el7.noarch.rpm +md5 = 1fe83003c63f8f6370f6e609de1fdd63 +source = repo:base + +[jasper-libs-1.900.1-29.el7] +file = jasper-libs-1.900.1-29.el7.x86_64.rpm +md5 = 11f8e043db4d2605dfc1b13043991cf0 +source = repo:base + +[java-1.7.0-openjdk-1.7.0.99-2.6.5.0.el7_2] +file = java-1.7.0-openjdk-1.7.0.99-2.6.5.0.el7_2.x86_64.rpm +md5 = a396956b169522438325b86f29b880b9 +source = repo:updates + +[java-1.7.0-openjdk-headless-1.7.0.99-2.6.5.0.el7_2] +file = java-1.7.0-openjdk-headless-1.7.0.99-2.6.5.0.el7_2.x86_64.rpm +md5 = a9aa311ee7fe0a8c61f8f75878097fe8 +source = repo:updates + +[javamail-1.4.6-8.el7] +file = javamail-1.4.6-8.el7.noarch.rpm +md5 = e525df64a7a33833969a105b0955f9ee +source = repo:base + +[javapackages-tools-3.4.1-11.el7] +file = javapackages-tools-3.4.1-11.el7.noarch.rpm +md5 = 9ffdfad5450661aad811bc27e5142527 +source = repo:base + +[javassist-3.16.1-10.el7] +file = javassist-3.16.1-10.el7.noarch.rpm +md5 = c5267ede1d5806c56e2f3d9a92c0507c +source = repo:base + +[jbigkit-libs-2.0-11.el7] +file = jbigkit-libs-2.0-11.el7.x86_64.rpm +md5 = 3b99b35e4059311fdcec4f83c7373e0a +source = repo:base + +[jemalloc-3.6.0-1.el7] +file = jemalloc-3.6.0-1.el7.x86_64.rpm +md5 = b3a15b12ce051c18948e47deeeeb7849 +source = repo:epel + +[keepalived-1.2.13-7.el7] +file = keepalived-1.2.13-7.el7.x86_64.rpm +md5 = d9119451cbdb340342f97586820d3d77 +source = repo:base + +[kernel-3.10.0-327.10.1.el7] +file = kernel-3.10.0-327.10.1.el7.x86_64.rpm +md5 = f28fc700e3276f13b1e5fba4e5459793 +source = repo:updates + +[kernel-headers-3.10.0-327.10.1.el7] +file = kernel-headers-3.10.0-327.10.1.el7.x86_64.rpm +md5 = 598bbf7927e3e69c9dd6820e9b934815 +source = repo:updates + +[kernel-tools-3.10.0-327.10.1.el7] +file = kernel-tools-3.10.0-327.10.1.el7.x86_64.rpm +md5 = de120dc8ed401bc3c55d88c995552a86 +source = repo:updates + +[kernel-tools-libs-3.10.0-327.10.1.el7] +file = kernel-tools-libs-3.10.0-327.10.1.el7.x86_64.rpm +md5 = aaf83ada7c7504d8db4a9adbbc437db1 +source = repo:updates + +[kexec-tools-2.0.7-38.el7_2.1] +file = kexec-tools-2.0.7-38.el7_2.1.x86_64.rpm +md5 = 32b403252744051ad44996bf77273f1b +source = repo:updates + +[keyutils-1.5.8-3.el7] +file = keyutils-1.5.8-3.el7.x86_64.rpm +md5 = 1332e9cc5a05ae8385311648957ddabe +source = repo:base + +[kmod-20-5.el7] +file = kmod-20-5.el7.x86_64.rpm +md5 = cd89e55c3163b37927eefc2a4bcd7906 +source = repo:base + +[kmod-libs-20-5.el7] +file = kmod-libs-20-5.el7.x86_64.rpm +md5 = 77e2ab8da379bc85e34bfa34c8aa406b +source = repo:base + +[kpartx-0.4.9-85.el7_2.1] +file = kpartx-0.4.9-85.el7_2.1.x86_64.rpm +md5 = 4e4a93a4140783c095393455206215c2 +source = repo:updates + +[krb5-libs-1.13.2-12.el7_2] +file = krb5-libs-1.13.2-12.el7_2.x86_64.rpm +md5 = 9e842c01d6eb716323e05c570f760c5c +source = repo:updates + +[lapack-3.4.2-5.el7] +file = lapack-3.4.2-5.el7.x86_64.rpm +md5 = c409ec8fd94f188569530d91df4d96e8 +source = repo:base + +[lcms2-2.6-2.el7] +file = lcms2-2.6-2.el7.x86_64.rpm +md5 = b69c20491b96dcf5233a2afc17df9703 +source = repo:base + +[ldns-1.6.16-7.el7] +file = ldns-1.6.16-7.el7.x86_64.rpm +md5 = 7031de978ab7f22632dfc19c8601f436 +source = repo:base + +[less-458-9.el7] +file = less-458-9.el7.x86_64.rpm +md5 = 8e73d6be4bcb237b73342ca66e461bde +source = repo:base + +[libICE-1.0.9-2.el7] +file = libICE-1.0.9-2.el7.x86_64.rpm +md5 = c7d8a89265872597ea9f4c8be6f6e1e4 +source = repo:base + +[libSM-1.2.2-2.el7] +file = libSM-1.2.2-2.el7.x86_64.rpm +md5 = a5e1aeb3958314315c3e8dedc494ae77 +source = repo:base + +[libX11-1.6.3-2.el7] +file = libX11-1.6.3-2.el7.x86_64.rpm +md5 = 4b624d62edf9159682f38eb8a0ed90af +source = repo:base + +[libX11-common-1.6.3-2.el7] +file = libX11-common-1.6.3-2.el7.noarch.rpm +md5 = bc3a8e2e1958a435912b7a276e2e06a5 +source = repo:base + +[libXau-1.0.8-2.1.el7] +file = libXau-1.0.8-2.1.el7.x86_64.rpm +md5 = 52e5b3d10cf699234c9ed8c0aa6dbdf4 +source = repo:base + +[libXcomposite-0.4.4-4.1.el7] +file = libXcomposite-0.4.4-4.1.el7.x86_64.rpm +md5 = d0f0d05f88e5ae03172db19e06bd747f +source = repo:base + +[libXcursor-1.1.14-2.1.el7] +file = libXcursor-1.1.14-2.1.el7.x86_64.rpm +md5 = f2121c32032a7c816237281cff4ab2ca +source = repo:base + +[libXdamage-1.1.4-4.1.el7] +file = libXdamage-1.1.4-4.1.el7.x86_64.rpm +md5 = e961b4eca78db4db2cee64cfbbb8e1a7 +source = repo:base + +[libXext-1.3.3-3.el7] +file = libXext-1.3.3-3.el7.x86_64.rpm +md5 = b0c67f30c995c0b3f25cc6ecf4cc7fc3 +source = repo:base + +[libXfixes-5.0.1-2.1.el7] +file = libXfixes-5.0.1-2.1.el7.x86_64.rpm +md5 = 4694e2f419eb346b7efb37b79f6fa743 +source = repo:base + +[libXfont-1.5.1-2.el7] +file = libXfont-1.5.1-2.el7.x86_64.rpm +md5 = 6710c8588f218cc7423d4a1ad98499ae +source = repo:base + +[libXft-2.3.2-2.el7] +file = libXft-2.3.2-2.el7.x86_64.rpm +md5 = 59be282045e63243aa70881e11dcca8a +source = repo:base + +[libXi-1.7.4-2.el7] +file = libXi-1.7.4-2.el7.x86_64.rpm +md5 = 528a3902d7718cb33c80f74dda8b0350 +source = repo:base + +[libXinerama-1.1.3-2.1.el7] +file = libXinerama-1.1.3-2.1.el7.x86_64.rpm +md5 = f40a8761577da093918fb14cd311d26d +source = repo:base + +[libXrandr-1.4.2-2.el7] +file = libXrandr-1.4.2-2.el7.x86_64.rpm +md5 = cfb1b754f269598234949007c316c97e +source = repo:base + +[libXrender-0.9.8-2.1.el7] +file = libXrender-0.9.8-2.1.el7.x86_64.rpm +md5 = f56792596c8e89a2c8f8bb46c48b00b4 +source = repo:base + +[libXt-1.1.4-6.1.el7] +file = libXt-1.1.4-6.1.el7.x86_64.rpm +md5 = 76e9586e5a1a90588bc97c796e658fbc +source = repo:base + +[libXtst-1.2.2-2.1.el7] +file = libXtst-1.2.2-2.1.el7.x86_64.rpm +md5 = 05362f1e3a76f7801e74966eaa6075b1 +source = repo:base + +[libXxf86vm-1.1.3-2.1.el7] +file = libXxf86vm-1.1.3-2.1.el7.x86_64.rpm +md5 = 442122b8ca7d418a3f377f306fd408c1 +source = repo:base + +[libaio-0.3.109-13.el7] +file = libaio-0.3.109-13.el7.x86_64.rpm +md5 = 8a95c2565c0b51e43b94c47f910e0e88 +source = repo:base + +[libasyncns-0.8-7.el7] +file = libasyncns-0.8-7.el7.x86_64.rpm +md5 = ec84b35373a8466131644e668036e781 +source = repo:base + +[libbasicobjects-0.1.1-25.el7] +file = libbasicobjects-0.1.1-25.el7.x86_64.rpm +md5 = 50c86e99601f362fe1fa12132c29fd56 +source = repo:base + +[libblkid-2.23.2-26.el7_2.2] +file = libblkid-2.23.2-26.el7_2.2.x86_64.rpm +md5 = 5dad678d5b7afbe1fd7865cfb08bbbc7 +source = repo:updates + +[libcap-ng-0.7.5-4.el7] +file = libcap-ng-0.7.5-4.el7.x86_64.rpm +md5 = 3690ea77fb824ec03b4e9a3c3f23e7b9 +source = repo:base + +[libcgroup-0.41-8.el7] +file = libcgroup-0.41-8.el7.x86_64.rpm +md5 = 64926d8a5a0ead8bfbd3461eff2d671a +source = repo:base + +[libcgroup-tools-0.41-8.el7] +file = libcgroup-tools-0.41-8.el7.x86_64.rpm +md5 = 612721924fcf30e4132dcd25ce9c0d2b +source = repo:base + +[libcollection-0.6.2-25.el7] +file = libcollection-0.6.2-25.el7.x86_64.rpm +md5 = dd1e8f49f00cc6593e65b7ecaafa8c88 +source = repo:base + +[libcurl-7.29.0-25.el7.centos] +file = libcurl-7.29.0-25.el7.centos.x86_64.rpm +md5 = f12e6cda23e3decee27e26cd29a32d4c +source = repo:base + +[libdb-5.3.21-19.el7] +file = libdb-5.3.21-19.el7.x86_64.rpm +md5 = 27eaef627f8984f8b69a24df49b49151 +source = repo:base + +[libdb-utils-5.3.21-19.el7] +file = libdb-utils-5.3.21-19.el7.x86_64.rpm +md5 = fd1f73d0d6682a313ca9f15f6903a79a +source = repo:base + +[libdrm-2.4.60-3.el7] +file = libdrm-2.4.60-3.el7.x86_64.rpm +md5 = 6f323eb385b431a2367aff396dac8e1c +source = repo:base + +[libev-4.15-6.el7] +file = libev-4.15-6.el7.x86_64.rpm +md5 = eb50d14f9a9f17129b8c29ef21eab56d +source = repo:extras + +[libevent-2.0.21-4.el7] +file = libevent-2.0.21-4.el7.x86_64.rpm +md5 = 681e0c36628612877047e3eceb40312b +source = repo:base + +[libffi-3.0.13-16.el7] +file = libffi-3.0.13-16.el7.x86_64.rpm +md5 = 2fd7e4cc518986cb407ee8f91e259f73 +source = repo:base + +[libfontenc-1.1.2-3.el7] +file = libfontenc-1.1.2-3.el7.x86_64.rpm +md5 = 005b0641bd5ffec3cb67bdddc1b7f19f +source = repo:base + +[libgcc-4.8.5-4.el7] +file = libgcc-4.8.5-4.el7.x86_64.rpm +md5 = 323a019eab04abc683476747ddc492f9 +source = repo:base + +[libgcrypt-1.5.3-12.el7_1.1] +file = libgcrypt-1.5.3-12.el7_1.1.x86_64.rpm +md5 = 582d64d8746530a06671170d3f1fff3c +source = repo:base + +[libgfortran-4.8.5-4.el7] +file = libgfortran-4.8.5-4.el7.x86_64.rpm +md5 = 60f52d5510a058cdd8f0d1d2ce5b9d36 +source = repo:base + +[libgomp-4.8.5-4.el7] +file = libgomp-4.8.5-4.el7.x86_64.rpm +md5 = 45cdae2f3a4a1190921fc13e26452851 +source = repo:base + +[libgudev1-219-19.el7_2.7] +file = libgudev1-219-19.el7_2.7.x86_64.rpm +md5 = 7fc6bc72b4d01e241a6f2f6ca384d7a7 +source = repo:updates + +[libguestfs-1.28.1-1.55.el7.centos] +file = libguestfs-1.28.1-1.55.el7.centos.x86_64.rpm +md5 = 306eb431ce259ad0eae370d17ec075e7 +source = repo:base + +[libibverbs-1.1.8-8.el7] +file = libibverbs-1.1.8-8.el7.x86_64.rpm +md5 = 676feb9be4b8735df6fb26894b365352 +source = repo:base + +[libicu-50.1.2-15.el7] +file = libicu-50.1.2-15.el7.x86_64.rpm +md5 = c3c1ebaabc8d1619377d535698784953 +source = repo:base + +[libidn-1.28-4.el7] +file = libidn-1.28-4.el7.x86_64.rpm +md5 = 280add666f96834e49ea258e8eab4e68 +source = repo:base + +[libini_config-1.2.0-25.el7] +file = libini_config-1.2.0-25.el7.x86_64.rpm +md5 = a194bca49de8e281df5c2af922f78059 +source = repo:base + +[libiscsi-1.9.0-6.el7] +file = libiscsi-1.9.0-6.el7.x86_64.rpm +md5 = 2fb29806c91af2fe496fc85e9b1d5f24 +source = repo:base + +[libjpeg-turbo-1.2.90-5.el7] +file = libjpeg-turbo-1.2.90-5.el7.x86_64.rpm +md5 = 82a1e86d2c07ccae050df4f8413e6b12 +source = repo:base + +[libmount-2.23.2-26.el7_2.2] +file = libmount-2.23.2-26.el7_2.2.x86_64.rpm +md5 = d6ad066cd798d32da07a3c74f23300e2 +source = repo:updates + +[libmpc-1.0.1-3.el7] +file = libmpc-1.0.1-3.el7.x86_64.rpm +md5 = d828a8cfe6b71d68b97dfdb377e18f0c +source = repo:base + +[libnetfilter_cthelper-1.0.0-8.el7] +file = libnetfilter_cthelper-1.0.0-8.el7.x86_64.rpm +md5 = 4ab67d9c76ca0cd3980c24110e001ff6 +source = repo:base + +[libnetfilter_cttimeout-1.0.0-6.el7] +file = libnetfilter_cttimeout-1.0.0-6.el7.x86_64.rpm +md5 = bba4485457428ea8dcc7063f98c448f8 +source = repo:base + +[libnetfilter_queue-1.0.2-2.el7] +file = libnetfilter_queue-1.0.2-2.el7.x86_64.rpm +md5 = 80abbf9a8fd3b2124960e70811c45fd5 +source = repo:epel + +[libnfsidmap-0.25-12.el7] +file = libnfsidmap-0.25-12.el7.x86_64.rpm +md5 = 5a8323842ed79e249401072743ed3a8d +source = repo:base + +[libnl3-3.2.21-10.el7] +file = libnl3-3.2.21-10.el7.x86_64.rpm +md5 = 86be9a1e051e824d23ed9f7d66e1b887 +source = repo:base + +[libnl3-cli-3.2.21-10.el7] +file = libnl3-cli-3.2.21-10.el7.x86_64.rpm +md5 = 7763bcbf602273878cc763cb1e6ec169 +source = repo:base + +[libogg-1.3.0-7.el7] +file = libogg-1.3.0-7.el7.x86_64.rpm +md5 = d56d19e951f6888d4d82f21996b0643a +source = repo:base + +[libosinfo-0.2.12-3.el7] +file = libosinfo-0.2.12-3.el7.x86_64.rpm +md5 = 6dcf368706fda0516e09b1ece42f310e +source = repo:base + +[libpath_utils-0.2.1-25.el7] +file = libpath_utils-0.2.1-25.el7.x86_64.rpm +md5 = bb976655dface7b231b398587586f612 +source = repo:base + +[libpcap-1.5.3-8.el7] +file = libpcap-1.5.3-8.el7.x86_64.rpm +md5 = 71a871c2d050d953fe1ed1fc91408cfb +source = repo:base + +[libpciaccess-0.13.4-2.el7] +file = libpciaccess-0.13.4-2.el7.x86_64.rpm +md5 = c5c21bc2c8247110d800bb401b8778ff +source = repo:base + +[libpng-1.5.13-7.el7_2] +file = libpng-1.5.13-7.el7_2.x86_64.rpm +md5 = 1366442d0dd5564f1a06a841a3c9ee9d +source = repo:updates + +[libproxy-0.4.11-8.el7] +file = libproxy-0.4.11-8.el7.x86_64.rpm +md5 = 53b9bdc7373c7eabd1db268c54b46f7c +source = repo:base + +[libquadmath-4.8.5-4.el7] +file = libquadmath-4.8.5-4.el7.x86_64.rpm +md5 = 6745aa9a1629463287d353f38b0864cd +source = repo:base + +[librabbitmq-0.5.2-1.el7] +file = librabbitmq-0.5.2-1.el7.x86_64.rpm +md5 = 0eee1d2843b46a8bb5c079079729a6ae +source = repo:epel + +[librados2-0.80.7-3.el7] +file = librados2-0.80.7-3.el7.x86_64.rpm +md5 = 5ab031c890bd17d52798aeaaa8af9ef6 +source = repo:base + +[librbd1-0.80.7-3.el7] +file = librbd1-0.80.7-3.el7.x86_64.rpm +md5 = 492c8dceae2b60d47a37b3afcc5a082e +source = repo:base + +[librdmacm-1.0.21-1.el7] +file = librdmacm-1.0.21-1.el7.x86_64.rpm +md5 = c51b6846f7c02dfdd573acd556b128c4 +source = repo:base + +[libref_array-0.1.5-25.el7] +file = libref_array-0.1.5-25.el7.x86_64.rpm +md5 = 7123e54a1537138d7dcb010cc9a6ad0a +source = repo:base + +[libreport-2.1.11-32.el7.centos] +file = libreport-2.1.11-32.el7.centos.x86_64.rpm +md5 = 3a66fdb1e2819da492f9480e0746e04e +source = repo:base + +[libreport-filesystem-2.1.11-32.el7.centos] +file = libreport-filesystem-2.1.11-32.el7.centos.x86_64.rpm +md5 = 0b2adab819403470d99d07f56a0c4fd8 +source = repo:base + +[libreport-plugin-rhtsupport-2.1.11-32.el7.centos] +file = libreport-plugin-rhtsupport-2.1.11-32.el7.centos.x86_64.rpm +md5 = 831bd518bceaba18bde91c2f63370d3a +source = repo:base + +[libreport-plugin-ureport-2.1.11-32.el7.centos] +file = libreport-plugin-ureport-2.1.11-32.el7.centos.x86_64.rpm +md5 = e6bae0eecec433e220670f811f57e559 +source = repo:base + +[libreport-python-2.1.11-32.el7.centos] +file = libreport-python-2.1.11-32.el7.centos.x86_64.rpm +md5 = a39668b77ee00ca6d0d143f148f12131 +source = repo:base + +[libreport-web-2.1.11-32.el7.centos] +file = libreport-web-2.1.11-32.el7.centos.x86_64.rpm +md5 = ce94f4c57aaaee36656775b8a803f548 +source = repo:base + +[libseccomp-2.2.1-1.el7] +file = libseccomp-2.2.1-1.el7.x86_64.rpm +md5 = 0a1d07194456aa49d21ee6e2c638cadd +source = repo:base + +[libsemanage-2.1.10-18.el7] +file = libsemanage-2.1.10-18.el7.x86_64.rpm +md5 = 7f6be4bb6604e5917d5c2644ad50af07 +source = repo:base + +[libsndfile-1.0.25-10.el7] +file = libsndfile-1.0.25-10.el7.x86_64.rpm +md5 = 003094634f53e59ba7d60121d6f4bfba +source = repo:base + +[libsoup-2.48.1-3.el7] +file = libsoup-2.48.1-3.el7.x86_64.rpm +md5 = 2ac6d8f7cc5cfcba602d22d1a478ffac +source = repo:base + +[libssh2-1.4.3-10.el7_2.1] +file = libssh2-1.4.3-10.el7_2.1.x86_64.rpm +md5 = 8d2559ab4c32341946b5f7f708f588a7 +source = repo:updates + +[libstdc++-4.8.5-4.el7] +file = libstdc++-4.8.5-4.el7.x86_64.rpm +md5 = 732814e499c44406e2dd72f9e51a4f22 +source = repo:base + +[libsysfs-2.1.0-16.el7] +file = libsysfs-2.1.0-16.el7.x86_64.rpm +md5 = 43f545f880b6e60b80ddfd7b9a1e5a25 +source = repo:base + +[libtalloc-2.1.2-1.el7] +file = libtalloc-2.1.2-1.el7.x86_64.rpm +md5 = 4f1eb3e7c1316995e00589efa705f4e1 +source = repo:base + +[libtar-1.2.11-29.el7] +file = libtar-1.2.11-29.el7.x86_64.rpm +md5 = 4dbf0cc921cc62d227cb0ac263279214 +source = repo:base + +[libteam-1.17-6.el7_2] +file = libteam-1.17-6.el7_2.x86_64.rpm +md5 = e35b5c488f447740511b465513b16a39 +source = repo:updates + +[libtevent-0.9.25-1.el7] +file = libtevent-0.9.25-1.el7.x86_64.rpm +md5 = e221932baac4df1bc31b0271a9474f42 +source = repo:base + +[libthai-0.1.14-9.el7] +file = libthai-0.1.14-9.el7.x86_64.rpm +md5 = ae0acfafef2eb89f1c10641be0078184 +source = repo:base + +[libtiff-4.0.3-14.el7] +file = libtiff-4.0.3-14.el7.x86_64.rpm +md5 = da54cb01dd86a1eda14a9932fccc3973 +source = repo:base + +[libtirpc-0.2.4-0.6.el7] +file = libtirpc-0.2.4-0.6.el7.x86_64.rpm +md5 = b577929e5ca7bc4d5f689d3cba487bfb +source = repo:base + +[libunwind-1.1-5.el7_2.2] +file = libunwind-1.1-5.el7_2.2.x86_64.rpm +md5 = 49eab351f88eb6efc0ca731ac9f0ab20 +source = repo:updates + +[libusal-1.1.11-23.el7] +file = libusal-1.1.11-23.el7.x86_64.rpm +md5 = 43a617c88458361580d3b354dfcc9466 +source = repo:base + +[libusbx-1.0.15-4.el7] +file = libusbx-1.0.15-4.el7.x86_64.rpm +md5 = 12c651541ecfc992bd65acada2048ac9 +source = repo:base + +[libuser-0.60-7.el7_1] +file = libuser-0.60-7.el7_1.x86_64.rpm +md5 = e22f073962c5ebc9639bcd9dd36b8c1e +source = repo:base + +[libuuid-2.23.2-26.el7_2.2] +file = libuuid-2.23.2-26.el7_2.2.x86_64.rpm +md5 = 61606518dec48d16528c0e1c0e5f9c34 +source = repo:updates + +[libverto-tevent-0.2.5-4.el7] +file = libverto-tevent-0.2.5-4.el7.x86_64.rpm +md5 = 16ec5b24564209f887089c0a8f7b4a34 +source = repo:base + +[libvirt-client-1.2.17-13.el7_2.4] +file = libvirt-client-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 1cacc3fedca555fa84e06772a0b00fce +source = repo:updates + +[libvirt-daemon-1.2.17-13.el7_2.4] +file = libvirt-daemon-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 294894e243237627a0af70ee4043178d +source = repo:updates + +[libvirt-daemon-driver-interface-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-interface-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 828621cb32e84293afcff9751b5b3bdf +source = repo:updates + +[libvirt-daemon-driver-network-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-network-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 8d2362c37b1a325d368d469a8d568017 +source = repo:updates + +[libvirt-daemon-driver-nodedev-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-nodedev-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 515e507d192d1db83da96b4824f37762 +source = repo:updates + +[libvirt-daemon-driver-nwfilter-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-nwfilter-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 247851f705992f79b71eb8ecabc22bbc +source = repo:updates + +[libvirt-daemon-driver-qemu-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-qemu-1.2.17-13.el7_2.4.x86_64.rpm +md5 = ffd2c60b906f69a1f3f319f05871a8a6 +source = repo:updates + +[libvirt-daemon-driver-secret-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-secret-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 4db4ba85d8539a497e04640e0fdc18b4 +source = repo:updates + +[libvirt-daemon-driver-storage-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-storage-1.2.17-13.el7_2.4.x86_64.rpm +md5 = f52f89d974df6bf20fe1dbfda8f2886b +source = repo:updates + +[libvirt-daemon-kvm-1.2.17-13.el7_2.4] +file = libvirt-daemon-kvm-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 65bce2a22a8d5aa6a95c4a36d4a7ac10 +source = repo:updates + +[libvirt-python-1.2.17-2.el7] +file = libvirt-python-1.2.17-2.el7.x86_64.rpm +md5 = ecf1428daf47e01afe5f5a1b91999237 +source = repo:base + +[libvorbis-1.3.3-8.el7] +file = libvorbis-1.3.3-8.el7.x86_64.rpm +md5 = 4b0cf6bb379d509cfe507bb1121488a3 +source = repo:base + +[libwebp-0.3.0-3.el7] +file = libwebp-0.3.0-3.el7.x86_64.rpm +md5 = eb1da5650ca5d64362daf6cc041ee594 +source = repo:base + +[libxcb-1.11-4.el7] +file = libxcb-1.11-4.el7.x86_64.rpm +md5 = b66cabeb279117a2952946b5aa3cfc96 +source = repo:base + +[libxml2-2.9.1-6.el7_2.2] +file = libxml2-2.9.1-6.el7_2.2.x86_64.rpm +md5 = 2710c04f8066a745637ef1f216900f17 +source = repo:updates + +[libxshmfence-1.2-1.el7] +file = libxshmfence-1.2-1.el7.x86_64.rpm +md5 = 6926d2259b916eef9d29f7286c07a368 +source = repo:base + +[libxslt-1.1.28-5.el7] +file = libxslt-1.1.28-5.el7.x86_64.rpm +md5 = c266825ddad0b141aa715f2b130ac093 +source = repo:base + +[libxslt-python-1.1.28-5.el7] +file = libxslt-python-1.1.28-5.el7.x86_64.rpm +md5 = 3140691ec0ec3177713f373359b9af8b +source = repo:base + +[libyaml-0.1.4-11.el7_0] +file = libyaml-0.1.4-11.el7_0.x86_64.rpm +md5 = 477717e62b00a5c36c7e7955298d15e1 +source = repo:base + +[linux-firmware-20150904-43.git6ebf5d5.el7] +file = linux-firmware-20150904-43.git6ebf5d5.el7.noarch.rpm +md5 = 61592a54d07831a062876139146fb486 +source = repo:base + +[lksctp-tools-1.0.13-3.el7] +file = lksctp-tools-1.0.13-3.el7.x86_64.rpm +md5 = ac346b7325516105f728552c208079ea +source = repo:base + +[lm_sensors-libs-3.3.4-11.el7] +file = lm_sensors-libs-3.3.4-11.el7.x86_64.rpm +md5 = 438168483fe181dee3588c8577f44935 +source = repo:base + +[log4j-1.2.17-15.el7] +file = log4j-1.2.17-15.el7.noarch.rpm +md5 = eccaa6be11d3477f79fdb80aee9826a1 +source = repo:base + +[logrotate-3.8.6-7.el7_2] +file = logrotate-3.8.6-7.el7_2.x86_64.rpm +md5 = ec5cbf862c3c70a972e4b8c7da4e8ecc +source = repo:updates + +[lsof-4.87-4.el7] +file = lsof-4.87-4.el7.x86_64.rpm +md5 = 6c4e6f412eaac3744d2b52c909acedf3 +source = repo:base + +[lsscsi-0.27-3.el7] +file = lsscsi-0.27-3.el7.x86_64.rpm +md5 = 7dd75dc55e23a783f45125e3286d6827 +source = repo:base + +[lvm2-2.02.130-5.el7_2.1] +file = lvm2-2.02.130-5.el7_2.1.x86_64.rpm +md5 = d85faad4de10b26d9333cf8b22877caa +source = repo:updates + +[lvm2-libs-2.02.130-5.el7_2.1] +file = lvm2-libs-2.02.130-5.el7_2.1.x86_64.rpm +md5 = 930816c345167c379a00ad6262fe3838 +source = repo:updates + +[lzo-2.06-8.el7] +file = lzo-2.06-8.el7.x86_64.rpm +md5 = 0484b3c6c4b387fe295c880d7e0a7f78 +source = repo:base + +[lzop-1.03-10.el7] +file = lzop-1.03-10.el7.x86_64.rpm +md5 = cd7a9e25070ccf9989a4fad7cafd9133 +source = repo:base + +[m2crypto-0.21.1-17.el7] +file = m2crypto-0.21.1-17.el7.x86_64.rpm +md5 = 09504f04fdd55ec0646b6272e1f34a39 +source = repo:base + +[mailcap-2.1.41-2.el7] +file = mailcap-2.1.41-2.el7.noarch.rpm +md5 = 0011ff65d03dde05b4370f7879b4bd0c +source = repo:base + +[mariadb-5.5.47-1.el7_2] +file = mariadb-5.5.47-1.el7_2.x86_64.rpm +md5 = 975b1739fb8efaf6d5547709e1b706bf +source = repo:updates + +[mariadb-libs-5.5.47-1.el7_2] +file = mariadb-libs-5.5.47-1.el7_2.x86_64.rpm +md5 = 03973a2a79ce24d2ac39b8b8fbf5c5e0 +source = repo:updates + +[mdadm-3.3.2-7.el7] +file = mdadm-3.3.2-7.el7.x86_64.rpm +md5 = a624a8ff113a207f6d74a0f42c25ec90 +source = repo:base + +[memcached-1.4.15-9.el7] +file = memcached-1.4.15-9.el7.x86_64.rpm +md5 = 45e20a5d75704b9ae38bbb3e43ed1458 +source = repo:base + +[mesa-libEGL-10.6.5-3.20150824.el7] +file = mesa-libEGL-10.6.5-3.20150824.el7.x86_64.rpm +md5 = 61c4fe712155e87ee3bd7c66f95ef26f +source = repo:base + +[mesa-libGL-10.6.5-3.20150824.el7] +file = mesa-libGL-10.6.5-3.20150824.el7.x86_64.rpm +md5 = 13ad6258fb7e1393020f9f274e43dc6c +source = repo:base + +[mesa-libgbm-10.6.5-3.20150824.el7] +file = mesa-libgbm-10.6.5-3.20150824.el7.x86_64.rpm +md5 = 33c77d7b1fbd2f1b7475ced7d28c03b4 +source = repo:base + +[mesa-libglapi-10.6.5-3.20150824.el7] +file = mesa-libglapi-10.6.5-3.20150824.el7.x86_64.rpm +md5 = e065e787ef3aa88769dc7972de8aa790 +source = repo:base + +[microcode_ctl-2.1-12.el7] +file = microcode_ctl-2.1-12.el7.x86_64.rpm +md5 = fc783e7e231d51fe5e0689b62b7bbd87 +source = repo:base + +[mod_wsgi-3.4-12.el7_0] +file = mod_wsgi-3.4-12.el7_0.x86_64.rpm +md5 = 8b0a2937e8f59f98be7b977c991cb026 +source = repo:base + +[mozjs17-17.0.0-12.el7] +file = mozjs17-17.0.0-12.el7.x86_64.rpm +md5 = a3af29bab3bda357344bbc35a1ef4ec6 +source = repo:base + +[mpfr-3.1.1-4.el7] +file = mpfr-3.1.1-4.el7.x86_64.rpm +md5 = fc9e39143a34eb3b7c2c0cedb7f62521 +source = repo:base + +[mtools-4.0.18-5.el7] +file = mtools-4.0.18-5.el7.x86_64.rpm +md5 = 0e4ec7feabd19884bcf07850eb3680a0 +source = repo:base + +[net-snmp-agent-libs-5.7.2-24.el7] +file = net-snmp-agent-libs-5.7.2-24.el7.x86_64.rpm +md5 = 619991d60ffc693af8235abce7a444ad +source = repo:base + +[net-snmp-libs-5.7.2-24.el7] +file = net-snmp-libs-5.7.2-24.el7.x86_64.rpm +md5 = 2fb5613369b9ceceb2adf192eae13917 +source = repo:base + +[net-snmp-python-5.7.2-24.el7] +file = net-snmp-python-5.7.2-24.el7.x86_64.rpm +md5 = 111033c10c8f16346134eaed086309d2 +source = repo:base + +[netcf-libs-0.2.8-1.el7] +file = netcf-libs-0.2.8-1.el7.x86_64.rpm +md5 = 1abd83cf98cf69db80ea11004bcc4747 +source = repo:base + +[netpbm-10.61.02-9.el7] +file = netpbm-10.61.02-9.el7.x86_64.rpm +md5 = 72534fbce58541228d987d41ed5e1941 +source = repo:base + +[netpbm-progs-10.61.02-9.el7] +file = netpbm-progs-10.61.02-9.el7.x86_64.rpm +md5 = 7ad7e7f0e70003fd87d4f6dc8d7ad4ef +source = repo:base + +[nfs-utils-1.3.0-0.21.el7_2] +file = nfs-utils-1.3.0-0.21.el7_2.x86_64.rpm +md5 = 748d3cf72b1963fbe96d1feeab5f1234 +source = repo:updates + +[nmap-ncat-6.40-7.el7] +file = nmap-ncat-6.40-7.el7.x86_64.rpm +md5 = b4cf39358cd9d2737e85dcc6a37bcce6 +source = repo:base + +[novnc-0.5.1-2.el7] +file = novnc-0.5.1-2.el7.noarch.rpm +md5 = 97199c473a29e75a0ea8932b8d7aeae8 +source = repo:epel + +[nspr-4.10.8-2.el7_1] +file = nspr-4.10.8-2.el7_1.x86_64.rpm +md5 = b28bde8e11d157b0c073f9261dfa7fa5 +source = repo:base + +[nss-3.19.1-19.el7_2] +file = nss-3.19.1-19.el7_2.x86_64.rpm +md5 = 5b6c3fb55e706f43d2af6d8fae2df888 +source = repo:updates + +[nss-softokn-3.16.2.3-13.el7_1] +file = nss-softokn-3.16.2.3-13.el7_1.x86_64.rpm +md5 = e7345ea76186c8adab18b2af54d4b46a +source = repo:base + +[nss-softokn-freebl-3.16.2.3-13.el7_1] +file = nss-softokn-freebl-3.16.2.3-13.el7_1.x86_64.rpm +md5 = c0e7c2690d497a0228947958d2f49869 +source = repo:base + +[nss-sysinit-3.19.1-19.el7_2] +file = nss-sysinit-3.19.1-19.el7_2.x86_64.rpm +md5 = f36d457e3244f0d7a11df4abcc66b37d +source = repo:updates + +[nss-tools-3.19.1-19.el7_2] +file = nss-tools-3.19.1-19.el7_2.x86_64.rpm +md5 = c3ac16121fbfab44ab3fea689da41d6a +source = repo:updates + +[nss-util-3.19.1-9.el7_2] +file = nss-util-3.19.1-9.el7_2.x86_64.rpm +md5 = 35400056c6494f8d84ebc9c871b05e04 +source = repo:updates + +[numactl-libs-2.0.9-6.el7_2] +file = numactl-libs-2.0.9-6.el7_2.x86_64.rpm +md5 = b5ec3c79212e2f6ed1d8983ca618d34d +source = repo:updates + +[numad-0.5-14.20140620git.el7] +file = numad-0.5-14.20140620git.el7.x86_64.rpm +md5 = b66876b7dbc85cd000dca751549b5d9e +source = repo:base + +[numpy-1.7.1-11.el7] +file = numpy-1.7.1-11.el7.x86_64.rpm +md5 = 3ad85fe2993728885c483d7d97ed9c36 +source = repo:base + +[numpy-f2py-1.7.1-11.el7] +file = numpy-f2py-1.7.1-11.el7.x86_64.rpm +md5 = 398869dd50382b4336b35e9dae518bfa +source = repo:base + +[openldap-2.4.40-9.el7_2] +file = openldap-2.4.40-9.el7_2.x86_64.rpm +md5 = cd79c178c9d30a9c91c41d9c208a4848 +source = repo:updates + +[openssh-6.6.1p1-25.el7_2] +file = openssh-6.6.1p1-25.el7_2.x86_64.rpm +md5 = 0b14bd479bfc36ee29aa69e196deebd3 +source = repo:updates + +[openssh-clients-6.6.1p1-25.el7_2] +file = openssh-clients-6.6.1p1-25.el7_2.x86_64.rpm +md5 = 720bbe436f995d3a54548923fa4d3700 +source = repo:updates + +[openssh-server-6.6.1p1-25.el7_2] +file = openssh-server-6.6.1p1-25.el7_2.x86_64.rpm +md5 = 5cef63994ea3a85bbc378225159a46ba +source = repo:updates + +[openssl-1.0.1e-51.el7_2.4] +file = openssl-1.0.1e-51.el7_2.4.x86_64.rpm +md5 = ad42f4cbfb26d61ea316207d4ce00b77 +source = repo:updates + +[openssl-libs-1.0.1e-51.el7_2.4] +file = openssl-libs-1.0.1e-51.el7_2.4.x86_64.rpm +md5 = 5ec790da3783654c9de7bc5217729f70 +source = repo:updates + +[openssl098e-0.9.8e-29.el7.centos.3] +file = openssl098e-0.9.8e-29.el7.centos.3.x86_64.rpm +md5 = 3006faff98f9ac0dab04af8cd37be07b +source = repo:updates + +[pam-1.1.8-12.el7_1.1] +file = pam-1.1.8-12.el7_1.1.x86_64.rpm +md5 = cc5f55a11041a282146f5d3f2a2d40b7 +source = repo:base + +[pango-1.36.8-2.el7] +file = pango-1.36.8-2.el7.x86_64.rpm +md5 = e2a43f27546fc2442cd0b514093e8478 +source = repo:base + +[parted-3.1-23.el7] +file = parted-3.1-23.el7.x86_64.rpm +md5 = 628eb3ed17884ffc8c7718daba27ca84 +source = repo:base + +[patch-2.7.1-8.el7] +file = patch-2.7.1-8.el7.x86_64.rpm +md5 = 2b832656dc91ad51d3e508c37071e805 +source = repo:base + +[pciutils-3.2.1-4.el7] +file = pciutils-3.2.1-4.el7.x86_64.rpm +md5 = de4fbc86bdc9f75b89c5512ee03d7a99 +source = repo:base + +[pcre-8.32-15.el7] +file = pcre-8.32-15.el7.x86_64.rpm +md5 = dff4905275885ef267cf38c85dd4aa60 +source = repo:base + +[pcsc-lite-libs-1.8.8-6.el7] +file = pcsc-lite-libs-1.8.8-6.el7.x86_64.rpm +md5 = 74728599046416c6fe337e0ea8fe71ec +source = repo:base + +[perl-5.16.3-286.el7] +file = perl-5.16.3-286.el7.x86_64.rpm +md5 = 3b8474ed072c9f928562a0e0e1d87040 +source = repo:base + +[perl-Business-ISBN-2.06-2.el7] +file = perl-Business-ISBN-2.06-2.el7.noarch.rpm +md5 = badc1d94d69a1582324f9ecfee3f1424 +source = repo:base + +[perl-Business-ISBN-Data-20120719.001-2.el7] +file = perl-Business-ISBN-Data-20120719.001-2.el7.noarch.rpm +md5 = dde52686c977a60f3825c5efa76e6c67 +source = repo:base + +[perl-Carp-1.26-244.el7] +file = perl-Carp-1.26-244.el7.noarch.rpm +md5 = 3972883ba06372fb1cc7007ea851221f +source = repo:base + +[perl-Compress-Raw-Bzip2-2.061-3.el7] +file = perl-Compress-Raw-Bzip2-2.061-3.el7.x86_64.rpm +md5 = 95a4f2347e939565a4c9886d3b7d7abc +source = repo:base + +[perl-Compress-Raw-Zlib-2.061-4.el7] +file = perl-Compress-Raw-Zlib-2.061-4.el7.x86_64.rpm +md5 = 90e6bb85a677ae0462b7513c2d206ddb +source = repo:base + +[perl-DBD-MySQL-4.023-5.el7] +file = perl-DBD-MySQL-4.023-5.el7.x86_64.rpm +md5 = e7c159beb829235b4e1f86f742f7abcd +source = repo:base + +[perl-DBI-1.627-4.el7] +file = perl-DBI-1.627-4.el7.x86_64.rpm +md5 = d110aaa34e4de7d5f8a83398a3b1b460 +source = repo:base + +[perl-Data-Dumper-2.145-3.el7] +file = perl-Data-Dumper-2.145-3.el7.x86_64.rpm +md5 = 7655e484c57c6f6c9acaa2b0ece8c4b2 +source = repo:base + +[perl-Digest-1.17-245.el7] +file = perl-Digest-1.17-245.el7.noarch.rpm +md5 = 121febde3cd324385cb49f6ffd4a5dc3 +source = repo:base + +[perl-Digest-MD5-2.52-3.el7] +file = perl-Digest-MD5-2.52-3.el7.x86_64.rpm +md5 = 5b912b529215f76ca8ee2d5839510018 +source = repo:base + +[perl-Encode-2.51-7.el7] +file = perl-Encode-2.51-7.el7.x86_64.rpm +md5 = e5d80b41661fd3763786486e844bca8f +source = repo:base + +[perl-Encode-Locale-1.03-5.el7] +file = perl-Encode-Locale-1.03-5.el7.noarch.rpm +md5 = 1b399c8d0dd4a002ab8a7bae33256c7c +source = repo:base + +[perl-Exporter-5.68-3.el7] +file = perl-Exporter-5.68-3.el7.noarch.rpm +md5 = a10bc13e6699cb873c6c81b088feb606 +source = repo:base + +[perl-File-Listing-6.04-7.el7] +file = perl-File-Listing-6.04-7.el7.noarch.rpm +md5 = 55b070e1eae14b0d3996c8ac1ed1f596 +source = repo:base + +[perl-File-Path-2.09-2.el7] +file = perl-File-Path-2.09-2.el7.noarch.rpm +md5 = 9e334286cc8cf481821b513ea49c2930 +source = repo:base + +[perl-File-Temp-0.23.01-3.el7] +file = perl-File-Temp-0.23.01-3.el7.noarch.rpm +md5 = 544234785607076394d0bf0c3d8cfc17 +source = repo:base + +[perl-Filter-1.49-3.el7] +file = perl-Filter-1.49-3.el7.x86_64.rpm +md5 = 3b40da0c0595b527a15f0fe2e6108ec0 +source = repo:base + +[perl-Getopt-Long-2.40-2.el7] +file = perl-Getopt-Long-2.40-2.el7.noarch.rpm +md5 = e164c591a7477faaa8c0347f999013d0 +source = repo:base + +[perl-HTML-Parser-3.71-4.el7] +file = perl-HTML-Parser-3.71-4.el7.x86_64.rpm +md5 = 56d21b6475916b93f862aad779c50a71 +source = repo:base + +[perl-HTML-Tagset-3.20-15.el7] +file = perl-HTML-Tagset-3.20-15.el7.noarch.rpm +md5 = 7a1a7e28fa35532d0547276ca4d49b92 +source = repo:base + +[perl-HTTP-Cookies-6.01-5.el7] +file = perl-HTTP-Cookies-6.01-5.el7.noarch.rpm +md5 = cb8d2dab90afa08ef12711340b8abca3 +source = repo:base + +[perl-HTTP-Daemon-6.01-5.el7] +file = perl-HTTP-Daemon-6.01-5.el7.noarch.rpm +md5 = 86db331083ac7e282371c129a4d57d94 +source = repo:base + +[perl-HTTP-Date-6.02-8.el7] +file = perl-HTTP-Date-6.02-8.el7.noarch.rpm +md5 = 7ccaede9e6765439bc29b0c1fa112faf +source = repo:base + +[perl-HTTP-Message-6.06-6.el7] +file = perl-HTTP-Message-6.06-6.el7.noarch.rpm +md5 = 581fdca301d11f8d81d4ad95c57d7cae +source = repo:base + +[perl-HTTP-Negotiate-6.01-5.el7] +file = perl-HTTP-Negotiate-6.01-5.el7.noarch.rpm +md5 = 2c8837ed8d6b0976550e7d242505a742 +source = repo:base + +[perl-HTTP-Tiny-0.033-3.el7] +file = perl-HTTP-Tiny-0.033-3.el7.noarch.rpm +md5 = dd455947104c239126a05b240798965b +source = repo:base + +[perl-IO-Compress-2.061-2.el7] +file = perl-IO-Compress-2.061-2.el7.noarch.rpm +md5 = 4923e6ebc1927b283d156021b35c6189 +source = repo:base + +[perl-IO-HTML-1.00-2.el7] +file = perl-IO-HTML-1.00-2.el7.noarch.rpm +md5 = 88e7f9baae2418100a0bc2e53eb9773e +source = repo:base + +[perl-IO-Socket-IP-0.21-4.el7] +file = perl-IO-Socket-IP-0.21-4.el7.noarch.rpm +md5 = 2fc5cf6ff168795f84cc257d033b5ab3 +source = repo:base + +[perl-IO-Socket-SSL-1.94-3.el7] +file = perl-IO-Socket-SSL-1.94-3.el7.noarch.rpm +md5 = b0ba2c2c9e443bfd813618977980cea4 +source = repo:base + +[perl-LWP-MediaTypes-6.02-2.el7] +file = perl-LWP-MediaTypes-6.02-2.el7.noarch.rpm +md5 = 6dc8376d490b3a610c611bcf4392dc36 +source = repo:base + +[perl-Net-Daemon-0.48-5.el7] +file = perl-Net-Daemon-0.48-5.el7.noarch.rpm +md5 = 5c60208d2148a7ec857660d19fce21e2 +source = repo:base + +[perl-Net-HTTP-6.06-2.el7] +file = perl-Net-HTTP-6.06-2.el7.noarch.rpm +md5 = 24ac20698012dd2c496ecea3e066046a +source = repo:base + +[perl-Net-LibIDN-0.12-15.el7] +file = perl-Net-LibIDN-0.12-15.el7.x86_64.rpm +md5 = bc8b756d38b06d70543e316b96d817c8 +source = repo:base + +[perl-Net-SSLeay-1.55-3.el7] +file = perl-Net-SSLeay-1.55-3.el7.x86_64.rpm +md5 = 964a5d68d4443208112cfc929a167e25 +source = repo:base + +[perl-PathTools-3.40-5.el7] +file = perl-PathTools-3.40-5.el7.x86_64.rpm +md5 = 10102e9cc9b0a04a67180271edc89a02 +source = repo:base + +[perl-PlRPC-0.2020-14.el7] +file = perl-PlRPC-0.2020-14.el7.noarch.rpm +md5 = da7a2d8b0741b9f144006596358434b4 +source = repo:base + +[perl-Pod-Escapes-1.04-286.el7] +file = perl-Pod-Escapes-1.04-286.el7.noarch.rpm +md5 = 4ea8dd829dea0f5435dc756dfca2a0eb +source = repo:base + +[perl-Pod-Perldoc-3.20-4.el7] +file = perl-Pod-Perldoc-3.20-4.el7.noarch.rpm +md5 = 63a810d6ae208780a541063664f0cef0 +source = repo:base + +[perl-Pod-Simple-3.28-4.el7] +file = perl-Pod-Simple-3.28-4.el7.noarch.rpm +md5 = 26fb6eb9ed36d89ce4d2c6a507a4f748 +source = repo:base + +[perl-Pod-Usage-1.63-3.el7] +file = perl-Pod-Usage-1.63-3.el7.noarch.rpm +md5 = 75bae8a653812b1f9dfd35bb361a8660 +source = repo:base + +[perl-Scalar-List-Utils-1.27-248.el7] +file = perl-Scalar-List-Utils-1.27-248.el7.x86_64.rpm +md5 = 22200133bcf14af25b3db62441964aae +source = repo:base + +[perl-Socket-2.010-3.el7] +file = perl-Socket-2.010-3.el7.x86_64.rpm +md5 = 98fa993e3016e70a3e0e7957664eb2db +source = repo:base + +[perl-Storable-2.45-3.el7] +file = perl-Storable-2.45-3.el7.x86_64.rpm +md5 = ca4a428e13040327b3c1b83cbd769878 +source = repo:base + +[perl-Text-ParseWords-3.29-4.el7] +file = perl-Text-ParseWords-3.29-4.el7.noarch.rpm +md5 = d0ab7086d89e7cd7a0fae783f4100f03 +source = repo:base + +[perl-Time-HiRes-1.9725-3.el7] +file = perl-Time-HiRes-1.9725-3.el7.x86_64.rpm +md5 = 204fa079b789180677e84c4de2684e00 +source = repo:base + +[perl-Time-Local-1.2300-2.el7] +file = perl-Time-Local-1.2300-2.el7.noarch.rpm +md5 = c6fdfd414190ea4c0fe3037ca04fc329 +source = repo:base + +[perl-TimeDate-2.30-2.el7] +file = perl-TimeDate-2.30-2.el7.noarch.rpm +md5 = 600eb5c6e2ed528d96f147612137bd87 +source = repo:base + +[perl-URI-1.60-9.el7] +file = perl-URI-1.60-9.el7.noarch.rpm +md5 = 1d039ce70d73de71dba1ef20088aa614 +source = repo:base + +[perl-WWW-RobotRules-6.02-5.el7] +file = perl-WWW-RobotRules-6.02-5.el7.noarch.rpm +md5 = 4fc38a9e60ac7374698c09b638672757 +source = repo:base + +[perl-constant-1.27-2.el7] +file = perl-constant-1.27-2.el7.noarch.rpm +md5 = 68dc21266b04cabb032c93d46c58ed4a +source = repo:base + +[perl-hivex-1.3.10-5.7.el7] +file = perl-hivex-1.3.10-5.7.el7.x86_64.rpm +md5 = e42a691e60936245ce611246a2471f60 +source = repo:base + +[perl-libs-5.16.3-286.el7] +file = perl-libs-5.16.3-286.el7.x86_64.rpm +md5 = e399470a89cbeeb3fbe30d3a42107e11 +source = repo:base + +[perl-libwww-perl-6.05-2.el7] +file = perl-libwww-perl-6.05-2.el7.noarch.rpm +md5 = 37583f3b119062ab03892c4e07ec728e +source = repo:base + +[perl-macros-5.16.3-286.el7] +file = perl-macros-5.16.3-286.el7.x86_64.rpm +md5 = 0e9e223aaa49d88ca1ad5994a0e5377e +source = repo:base + +[perl-parent-0.225-244.el7] +file = perl-parent-0.225-244.el7.noarch.rpm +md5 = 78f00f84623779ffa45d1e299f069514 +source = repo:base + +[perl-podlators-2.5.1-3.el7] +file = perl-podlators-2.5.1-3.el7.noarch.rpm +md5 = be3cfaca3be36b3f334f321ad0955041 +source = repo:base + +[perl-threads-1.87-4.el7] +file = perl-threads-1.87-4.el7.x86_64.rpm +md5 = 5ae1e669e55f06d9afd3ea99bacd91cd +source = repo:base + +[perl-threads-shared-1.43-6.el7] +file = perl-threads-shared-1.43-6.el7.x86_64.rpm +md5 = 9b17327a31e744459b1ee96e6c37d6dd +source = repo:base + +[pixman-0.32.6-3.el7] +file = pixman-0.32.6-3.el7.x86_64.rpm +md5 = 824a0dd89a036751c3c8958854b3c5f4 +source = repo:base + +[plymouth-0.8.9-0.24.20140113.el7.centos] +file = plymouth-0.8.9-0.24.20140113.el7.centos.x86_64.rpm +md5 = 6143e8f5624e391abaa3d1ff3db4f8af +source = repo:base + +[plymouth-core-libs-0.8.9-0.24.20140113.el7.centos] +file = plymouth-core-libs-0.8.9-0.24.20140113.el7.centos.x86_64.rpm +md5 = 571f03f693eb1efb65efd3d6153d990b +source = repo:base + +[plymouth-scripts-0.8.9-0.24.20140113.el7.centos] +file = plymouth-scripts-0.8.9-0.24.20140113.el7.centos.x86_64.rpm +md5 = e864c2083bb779be5193c06158aa98b2 +source = repo:base + +[policycoreutils-2.2.5-20.el7] +file = policycoreutils-2.2.5-20.el7.x86_64.rpm +md5 = 3afb2a25b27fd2e4126c1844b61e9735 +source = repo:base + +[polkit-0.112-6.el7_2] +file = polkit-0.112-6.el7_2.x86_64.rpm +md5 = 30f19eac08aa73c4d3cf92566e6dbe31 +source = repo:updates + +[poppler-data-0.4.6-3.el7] +file = poppler-data-0.4.6-3.el7.noarch.rpm +md5 = 4ea04de5ab8eb6b7b0ef2b4555941136 +source = repo:base + +[procps-ng-3.3.10-5.el7_2] +file = procps-ng-3.3.10-5.el7_2.x86_64.rpm +md5 = 824f424d4b5ab1bb11f7947c6bd7428e +source = repo:updates + +[protobuf-2.5.0-8.el7] +file = protobuf-2.5.0-8.el7.x86_64.rpm +md5 = 1f5cd238a92e7fcf3c71c4ab074c074d +source = repo:base + +[psmisc-22.20-9.el7] +file = psmisc-22.20-9.el7.x86_64.rpm +md5 = fbbdb75c45346ed5b5fc461983bae097 +source = repo:base + +[pth-2.0.7-23.el7] +file = pth-2.0.7-23.el7.x86_64.rpm +md5 = 9ff2f09de12ef4b5c8b8546f24f9633e +source = repo:base + +[pulseaudio-libs-6.0-7.el7] +file = pulseaudio-libs-6.0-7.el7.x86_64.rpm +md5 = d605a177ea01e0150923480a2f2abe60 +source = repo:base + +[pygobject2-2.28.6-11.el7] +file = pygobject2-2.28.6-11.el7.x86_64.rpm +md5 = 983f7fd480263ccabfb8c5ade4e1de32 +source = repo:base + +[pygobject3-base-3.14.0-3.el7] +file = pygobject3-base-3.14.0-3.el7.x86_64.rpm +md5 = a8ac9e68171c228432c112822ae15765 +source = repo:base + +[pysendfile-2.0.0-5.el7] +file = pysendfile-2.0.0-5.el7.x86_64.rpm +md5 = b8c59be222069d7fd941dbbed8395535 +source = repo:epel + +[python-2.7.5-34.el7] +file = python-2.7.5-34.el7.x86_64.rpm +md5 = f72794159788ebbb3749dc5e2b2ba75f +source = repo:base + +[python-XStatic-1.0.1-1.el7] +file = python-XStatic-1.0.1-1.el7.noarch.rpm +md5 = 9dc793d2df2c78cff8646fed67e8220b +source = repo:epel + +[python-XStatic-Angular-Bootstrap-0.11.0.2-1.el7] +file = python-XStatic-Angular-Bootstrap-0.11.0.2-1.el7.noarch.rpm +md5 = ad33be6b83ffc8181f1f6fb048c1dedc +source = repo:epel + +[python-XStatic-Angular-Mock-1.2.1.1-2.el7] +file = python-XStatic-Angular-Mock-1.2.1.1-2.el7.noarch.rpm +md5 = 4bdd23d01a77376ea966771d26872f91 +source = repo:epel + +[python-XStatic-Bootstrap-Datepicker-1.3.1.0-1.el7] +file = python-XStatic-Bootstrap-Datepicker-1.3.1.0-1.el7.noarch.rpm +md5 = 4bb47fa0e9176062e0ca6f1d243ca459 +source = repo:epel + +[python-XStatic-Bootstrap-SCSS-3.2.0.0-1.el7] +file = python-XStatic-Bootstrap-SCSS-3.2.0.0-1.el7.noarch.rpm +md5 = 939cd1ede1352c45df00913b3cb0097f +source = repo:epel + +[python-XStatic-D3-3.1.6.2-2.el7] +file = python-XStatic-D3-3.1.6.2-2.el7.noarch.rpm +md5 = 70ac8d8f1e3539471a68755efb53b529 +source = repo:epel + +[python-XStatic-Hogan-2.0.0.2-2.el7] +file = python-XStatic-Hogan-2.0.0.2-2.el7.noarch.rpm +md5 = dc01c73bfa96a9b808eb43f51afa50d3 +source = repo:epel + +[python-XStatic-JQuery-Migrate-1.2.1.1-2.el7] +file = python-XStatic-JQuery-Migrate-1.2.1.1-2.el7.noarch.rpm +md5 = 361c599e486c1dd41bd5d734628cd3c8 +source = repo:epel + +[python-XStatic-JQuery-TableSorter-2.14.5.1-2.el7] +file = python-XStatic-JQuery-TableSorter-2.14.5.1-2.el7.noarch.rpm +md5 = 319adc3e08920d01c19157324981d4fb +source = repo:epel + +[python-XStatic-JQuery-quicksearch-2.0.3.1-2.el7] +file = python-XStatic-JQuery-quicksearch-2.0.3.1-2.el7.noarch.rpm +md5 = dbef73498dae86cf2aaac3daa56421f1 +source = repo:epel + +[python-XStatic-JSEncrypt-2.0.0.2-2.el7] +file = python-XStatic-JSEncrypt-2.0.0.2-2.el7.noarch.rpm +md5 = 202de570fb8ff45bb069001590c230db +source = repo:epel + +[python-XStatic-Jasmine-1.3.1.1-2.el7] +file = python-XStatic-Jasmine-1.3.1.1-2.el7.noarch.rpm +md5 = a9919ac39dcc4afc9fb2c259b70af368 +source = repo:epel + +[python-XStatic-QUnit-1.14.0.2-2.el7] +file = python-XStatic-QUnit-1.14.0.2-2.el7.noarch.rpm +md5 = ea11619ad3aa3a745e7bec089bd36446 +source = repo:epel + +[python-XStatic-Rickshaw-1.5.0.0-4.el7] +file = python-XStatic-Rickshaw-1.5.0.0-4.el7.noarch.rpm +md5 = 205b7750280e72f92b96f43f36facff2 +source = repo:epel + +[python-XStatic-Spin-1.2.5.2-2.el7] +file = python-XStatic-Spin-1.2.5.2-2.el7.noarch.rpm +md5 = d5910b1937c24e33c50ff8326a9e5ba0 +source = repo:epel + +[python-XStatic-jQuery-1.10.2.1-1.el7] +file = python-XStatic-jQuery-1.10.2.1-1.el7.noarch.rpm +md5 = 6853a7a37d41b90c83849bfdad6a4b04 +source = repo:epel + +[python-XStatic-jquery-ui-1.10.4.1-1.el7] +file = python-XStatic-jquery-ui-1.10.4.1-1.el7.noarch.rpm +md5 = 5f481c0c6c7f1c1daa209079e85fb57e +source = repo:epel + +[python-alembic-0.8.3-3.el7] +file = python-alembic-0.8.3-3.el7.noarch.rpm +md5 = 5aeb76810eafa8e9b499c1ec8caee9c3 +source = repo:epel + +[python-amqplib-1.0.2-7.el7] +file = python-amqplib-1.0.2-7.el7.noarch.rpm +md5 = c00b962fbf0de3681b52b62fd13bf170 +source = repo:epel + +[python-anyjson-0.3.3-3.el7] +file = python-anyjson-0.3.3-3.el7.noarch.rpm +md5 = c6af1a4f1c6b165fa811f510c64be60b +source = repo:epel + +[python-augeas-0.5.0-2.el7] +file = python-augeas-0.5.0-2.el7.noarch.rpm +md5 = 5034750b8c04823a016bbc8e097adb06 +source = repo:base + +[python-beaker-1.5.4-10.el7] +file = python-beaker-1.5.4-10.el7.noarch.rpm +md5 = 64be795ccc00fcc97fe83065655a5ea5 +source = repo:base + +[python-bottle-0.12.6-1.el7] +file = python-bottle-0.12.6-1.el7.noarch.rpm +md5 = fc331e78778776ff6e0342da9c18e2b7 +source = repo:epel + +[python-chardet-2.2.1-1.el7_1] +file = python-chardet-2.2.1-1.el7_1.noarch.rpm +md5 = 7c566d96b204228e67b4d01af7c98033 +source = repo:base + +[python-cheetah-2.4.4-5.el7.centos] +file = python-cheetah-2.4.4-5.el7.centos.x86_64.rpm +md5 = 9a30191d959f83c1760ced32d32418dc +source = repo:extras + +[python-contextlib2-0.4.0-1.el7] +file = python-contextlib2-0.4.0-1.el7.noarch.rpm +md5 = 37d355bdeed6f787ea4380ab67f83c7b +source = repo:epel + +[python-dateutil-1.5-7.el7] +file = python-dateutil-1.5-7.el7.noarch.rpm +md5 = 5caff3b82b98c7c0bc0eb1a4174fdad2 +source = repo:base + +[python-devel-2.7.5-34.el7] +file = python-devel-2.7.5-34.el7.x86_64.rpm +md5 = e4fa44a2dc804cd6e059e33094a79437 +source = repo:base + +[python-django-appconf-0.6-1.el7] +file = python-django-appconf-0.6-1.el7.noarch.rpm +md5 = 34c37299be9423b2d20ad59009b10cb5 +source = repo:epel + +[python-dmidecode-3.10.13-11.el7] +file = python-dmidecode-3.10.13-11.el7.x86_64.rpm +md5 = 2957dc287e272be1e51a20279a31cd84 +source = repo:base + +[python-docker-py-1.7.2-1.el7] +file = python-docker-py-1.7.2-1.el7.noarch.rpm +md5 = fac2ceee666855107f9314d9ea7b5ac4 +source = repo:extras + +[python-dogpile-cache-0.5.5-1.el7] +file = python-dogpile-cache-0.5.5-1.el7.noarch.rpm +md5 = fd0cb9c1c2154c6d81d574378ec3ebb4 +source = repo:epel + +[python-dogpile-core-0.4.1-2.el7] +file = python-dogpile-core-0.4.1-2.el7.noarch.rpm +md5 = 8b246dc3446f7eef306df70114534de4 +source = repo:epel + +[python-editor-0.4-4.el7] +file = python-editor-0.4-4.el7.noarch.rpm +md5 = 4d75f872824ea7fa01d68d8348793859 +source = repo:epel + +[python-enum34-1.0.4-1.el7] +file = python-enum34-1.0.4-1.el7.noarch.rpm +md5 = 5854f0d639dd87c36b888872779e7a86 +source = repo:base + +[python-extras-0.0.3-2.el7] +file = python-extras-0.0.3-2.el7.noarch.rpm +md5 = c0056331b95a682cd1860b2c7ff84b21 +source = repo:epel + +[python-fasteners-0.9.0-2.el7] +file = python-fasteners-0.9.0-2.el7.noarch.rpm +md5 = 40253727616ee1caf0bf1fb088735f07 +source = repo:epel + +[python-fixtures-0.3.14-3.el7] +file = python-fixtures-0.3.14-3.el7.noarch.rpm +md5 = d3200ea50b7e7a835452b06ead4ad8c4 +source = repo:epel + +[python-futures-3.0.3-1.el7] +file = python-futures-3.0.3-1.el7.noarch.rpm +md5 = 55f25ee497a23a0d7424948869aa8524 +source = repo:epel + +[python-idna-2.0-1.el7] +file = python-idna-2.0-1.el7.noarch.rpm +md5 = e6167ccdc727aed3463245240d22e83b +source = repo:epel + +[python-ipaddress-1.0.7-4.el7] +file = python-ipaddress-1.0.7-4.el7.noarch.rpm +md5 = 7b79d21268abe631a37298a1e62cc666 +source = repo:epel + +[python-javapackages-3.4.1-11.el7] +file = python-javapackages-3.4.1-11.el7.noarch.rpm +md5 = fddd8131be3e543c060f52378033cc67 +source = repo:base + +[python-jinja2-2.7.2-2.el7] +file = python-jinja2-2.7.2-2.el7.noarch.rpm +md5 = 6d3a41f9ca8699c274fa03cfa42e5bc2 +source = repo:base + +[python-jsonpatch-1.2-3.el7.centos] +file = python-jsonpatch-1.2-3.el7.centos.noarch.rpm +md5 = 6d0cc773fc130052bc99d47aad22d427 +source = repo:extras + +[python-jsonpointer-1.9-2.el7] +file = python-jsonpointer-1.9-2.el7.noarch.rpm +md5 = 559ca888c114f120fa57e235a1aa3127 +source = repo:base + +[python-jsonschema-2.3.0-1.el7] +file = python-jsonschema-2.3.0-1.el7.noarch.rpm +md5 = a432d8ef30d0837ae6accc6bf2fc4ae4 +source = repo:epel + +[python-keyring-5.0-1.el7] +file = python-keyring-5.0-1.el7.noarch.rpm +md5 = c80d232117c06601fd316dde36b15ac2 +source = repo:epel + +[python-kitchen-1.1.1-5.el7] +file = python-kitchen-1.1.1-5.el7.noarch.rpm +md5 = ca9590da29c719a38ec5b7770a186b55 +source = repo:base + +[python-kmod-0.9-4.el7] +file = python-kmod-0.9-4.el7.x86_64.rpm +md5 = a02d2f2aa0deedd129e20e8aeace5d92 +source = repo:base + +[python-ldap-2.4.15-2.el7] +file = python-ldap-2.4.15-2.el7.x86_64.rpm +md5 = 4bbdf80b64486a63cf04730581ab0b43 +source = repo:base + +[python-lesscpy-0.9j-4.el7] +file = python-lesscpy-0.9j-4.el7.noarch.rpm +md5 = d654c71415e0b1d948cacdd53da1992f +source = repo:epel + +[python-libguestfs-1.28.1-1.55.el7.centos] +file = python-libguestfs-1.28.1-1.55.el7.centos.x86_64.rpm +md5 = 8384362f2e9517a2b9eadfb8bd8544c3 +source = repo:base + +[python-libs-2.7.5-34.el7] +file = python-libs-2.7.5-34.el7.x86_64.rpm +md5 = 023b155839804320579c7c9f9286cbe6 +source = repo:base + +[python-linecache2-1.0.0-1.el7] +file = python-linecache2-1.0.0-1.el7.noarch.rpm +md5 = eff97beb158573269636d1a06b292358 +source = repo:epel + +[python-lockfile-0.9.1-4.el7.centos] +file = python-lockfile-0.9.1-4.el7.centos.noarch.rpm +md5 = a730f7d23c7f3432641200407282dcfb +source = repo:extras + +[python-lxml-3.2.1-4.el7] +file = python-lxml-3.2.1-4.el7.x86_64.rpm +md5 = 48277db3e92aa47cfd0638a117e1f800 +source = repo:base + +[python-mako-0.8.1-2.el7] +file = python-mako-0.8.1-2.el7.noarch.rpm +md5 = 4df9bda32f707efc41b358be751d9214 +source = repo:base + +[python-markdown-2.4.1-1.el7.centos] +file = python-markdown-2.4.1-1.el7.centos.noarch.rpm +md5 = c8b4cba2004d18262dc267d406c162e5 +source = repo:extras + +[python-markupsafe-0.11-10.el7] +file = python-markupsafe-0.11-10.el7.x86_64.rpm +md5 = e953ec7947031b0ab4ee498c356e639b +source = repo:base + +[python-meld3-0.6.10-1.el7] +file = python-meld3-0.6.10-1.el7.x86_64.rpm +md5 = 68b9297bb86f87ce02673106da68ea99 +source = repo:epel + +[python-memcached-1.48-4.el7] +file = python-memcached-1.48-4.el7.noarch.rpm +md5 = 9fd8380682d0dee9b734d24b9c9dd786 +source = repo:base + +[python-mimeparse-0.1.4-2.el7] +file = python-mimeparse-0.1.4-2.el7.noarch.rpm +md5 = 9fb11a176f9d767d16d9911266e5a664 +source = repo:epel + +[python-ncclient-0.4.2-2.el7] +file = python-ncclient-0.4.2-2.el7.noarch.rpm +md5 = 0932d9e45d7b547d89ed6cf2e267681b +source = repo:epel + +[python-paste-1.7.5.1-9.20111221hg1498.el7] +file = python-paste-1.7.5.1-9.20111221hg1498.el7.noarch.rpm +md5 = 051da16a95b7658f5714d97b34171678 +source = repo:base + +[python-paste-deploy-1.5.0-10.el7] +file = python-paste-deploy-1.5.0-10.el7.noarch.rpm +md5 = 0c1a741b680d4ec8a8e39b6d5b8b16a5 +source = repo:epel + +[python-pathlib-1.0.1-1.el7] +file = python-pathlib-1.0.1-1.el7.noarch.rpm +md5 = bebec4153df3d70bf5538fbdb6c6196e +source = repo:epel + +[python-pbr-1.8.1-2.el7] +file = python-pbr-1.8.1-2.el7.noarch.rpm +md5 = 508a135fec3fcedfc8e69b6c34c276bf +source = repo:epel + +[python-perf-3.10.0-327.13.1.el7] +file = python-perf-3.10.0-327.13.1.el7.x86_64.rpm +md5 = 35b222cfa6dbc6f69c14c2d5f906b55a +source = repo:updates + +[python-pillow-2.0.0-19.gitd1c6db8.el7] +file = python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64.rpm +md5 = 26158438b3bd8fd6816f8fcf8de2e793 +source = repo:base + +[python-pint-0.6-2.el7] +file = python-pint-0.6-2.el7.noarch.rpm +md5 = 60c32081c001e6e9b203f139e9495c63 +source = repo:epel + +[python-ply-3.4-10.el7] +file = python-ply-3.4-10.el7.noarch.rpm +md5 = 8b924f7ea5e8c7dfb273b050f90f8dcc +source = repo:base + +[python-posix_ipc-0.9.8-1.el7] +file = python-posix_ipc-0.9.8-1.el7.x86_64.rpm +md5 = 8eed9006431c8c887705291a980c8364 +source = repo:epel + +[python-prettytable-0.7.2-2.el7.centos] +file = python-prettytable-0.7.2-2.el7.centos.noarch.rpm +md5 = 73e7b920c3280a13c2c4cc6548a4fd28 +source = repo:extras + +[python-psutil-2.2.1-1.el7] +file = python-psutil-2.2.1-1.el7.x86_64.rpm +md5 = a82878492ae43622371de0a09c264933 +source = repo:epel + +[python-pycparser-2.14-1.el7] +file = python-pycparser-2.14-1.el7.noarch.rpm +md5 = d898b47a0aff4088aaea0e1a331f79e2 +source = repo:base + +[python-pyudev-0.15-7.el7_2.1] +file = python-pyudev-0.15-7.el7_2.1.noarch.rpm +md5 = 7c8132c4908fd2e5ce7f8f0c304f2e98 +source = repo:updates + +[python-qpid-0.32-13.el7] +file = python-qpid-0.32-13.el7.noarch.rpm +md5 = 6f1685864b82fb455eaffb87760a01e6 +source = repo:epel + +[python-qpid-common-0.32-13.el7] +file = python-qpid-common-0.32-13.el7.noarch.rpm +md5 = 74c28fc5b044c0fbc515b7e4c8d3f3b6 +source = repo:epel + +[python-repoze-lru-0.4-3.el7] +file = python-repoze-lru-0.4-3.el7.noarch.rpm +md5 = 2d4c7190381a506dd64b5b9ee99a85df +source = repo:epel + +[python-repoze-who-2.1-1.el7] +file = python-repoze-who-2.1-1.el7.noarch.rpm +md5 = df398d6140623e9067e98b4249f4254b +source = repo:epel + +[python-routes-1.13-2.el7] +file = python-routes-1.13-2.el7.noarch.rpm +md5 = 4f2a30536c1f2bd47665961863721a7b +source = repo:epel + +[python-rtslib-2.1.fb57-3.el7] +file = python-rtslib-2.1.fb57-3.el7.noarch.rpm +md5 = 0abd277030bf98254bc2d31e98c32290 +source = repo:base + +[python-saslwrapper-0.16-5.el7] +file = python-saslwrapper-0.16-5.el7.x86_64.rpm +md5 = 0303168dd977609a8cac4e861cbad6bf +source = repo:epel + +[python-semantic_version-2.4.2-1.el7] +file = python-semantic_version-2.4.2-1.el7.noarch.rpm +md5 = 31607ee857d7a96f267d005cc6de90d1 +source = repo:epel + +[python-setuptools-0.9.8-4.el7] +file = python-setuptools-0.9.8-4.el7.noarch.rpm +md5 = be6d25001f8177aaa1f3a9a9a336ea74 +source = repo:base + +[python-simplegeneric-0.8-7.el7] +file = python-simplegeneric-0.8-7.el7.noarch.rpm +md5 = fc6b45bc63d181ce819e9c24b7efbc20 +source = repo:epel + +[python-simplejson-3.3.3-1.el7] +file = python-simplejson-3.3.3-1.el7.x86_64.rpm +md5 = 600dbbcbb16c8c59fd576ca8685b2490 +source = repo:epel + +[python-singledispatch-3.4.0.2-2.el7] +file = python-singledispatch-3.4.0.2-2.el7.noarch.rpm +md5 = 430e27d34523521b4c4aafea2785fde3 +source = repo:epel + +[python-sqlparse-0.1.11-2.el7] +file = python-sqlparse-0.1.11-2.el7.noarch.rpm +md5 = 0f28e4f50f87c0213280819e1890daf0 +source = repo:epel + +[python-suds-0.4.1-5.el7] +file = python-suds-0.4.1-5.el7.noarch.rpm +md5 = f44128e2e8d732b74f72bd1c9bcb5372 +source = repo:base + +[python-thrift-0.9.1-12.el7] +file = python-thrift-0.9.1-12.el7.x86_64.rpm +md5 = 99450d322f56bed4bb334243d0d4d7b8 +source = repo:epel + +[python-traceback2-1.4.0-2.el7] +file = python-traceback2-1.4.0-2.el7.noarch.rpm +md5 = 6e497d1f2940bf2150066207df5ca1b9 +source = repo:epel + +[python-unicodecsv-0.14.1-4.el7] +file = python-unicodecsv-0.14.1-4.el7.noarch.rpm +md5 = c8b04e514f2b2b92e240e1f62c87c1c1 +source = repo:epel + +[python-unittest2-1.1.0-4.el7] +file = python-unittest2-1.1.0-4.el7.noarch.rpm +md5 = 9d9c9c5a304418a02ff1d62b671474dc +source = repo:epel + +[python-urlgrabber-3.10-7.el7] +file = python-urlgrabber-3.10-7.el7.noarch.rpm +md5 = e1821f874563620fe341267c0a85ff3d +source = repo:base + +[python-versiontools-1.9.1-4.el7] +file = python-versiontools-1.9.1-4.el7.noarch.rpm +md5 = bc7ec2066a60eda2cf42e9374cac01cf +source = repo:epel + +[python-warlock-1.0.1-1.el7] +file = python-warlock-1.0.1-1.el7.noarch.rpm +md5 = a5b13a4ee5d4b5722df6f93f3d39cdcc +source = repo:epel + +[python-websocket-client-0.32.0-116.el7] +file = python-websocket-client-0.32.0-116.el7.noarch.rpm +md5 = 6e5c4e5eb486f0563554c40b716a492b +source = repo:extras + +[python-websockify-0.6.0-2.el7] +file = python-websockify-0.6.0-2.el7.noarch.rpm +md5 = b903798f3ef49b3fc2544442f5c67e9a +source = repo:epel + +[python-webtest-1.3.4-6.el7] +file = python-webtest-1.3.4-6.el7.noarch.rpm +md5 = 04c58d5c527c30620c9b254f3c7a627c +source = repo:base + +[python-wrapt-1.10.4-6.el7] +file = python-wrapt-1.10.4-6.el7.x86_64.rpm +md5 = 6c54be4e84ea672e731171bbc42adc8c +source = repo:epel + +[python-zope-interface-4.0.5-4.el7] +file = python-zope-interface-4.0.5-4.el7.x86_64.rpm +md5 = 9900f46f19201e9ee67a3be7022c76ec +source = repo:base + +[python2-XStatic-roboto-fontface-0.4.3.2-4.el7] +file = python2-XStatic-roboto-fontface-0.4.3.2-4.el7.noarch.rpm +md5 = a9bbe595c9dcca77a9c86285d7d9ebef +source = repo:epel + +[python2-boto-2.39.0-1.el7] +file = python2-boto-2.39.0-1.el7.noarch.rpm +md5 = e6629233390aeed2ac18ae8d7cc8708e +source = repo:epel + +[python2-iso8601-0.1.11-1.el7] +file = python2-iso8601-0.1.11-1.el7.noarch.rpm +md5 = 570be1f616918889df208f854560ef15 +source = repo:epel + +[python2-mock-1.0.1-9.el7] +file = python2-mock-1.0.1-9.el7.noarch.rpm +md5 = 63d5e32be5fcbd53d031766035051897 +source = repo:epel + +[python2-msgpack-0.4.7-3.el7] +file = python2-msgpack-0.4.7-3.el7.x86_64.rpm +md5 = 629eee86a86de2d1ee04ac0797fab7e7 +source = repo:epel + +[python2-rsa-3.3-2.el7] +file = python2-rsa-3.3-2.el7.noarch.rpm +md5 = 6f921936e9d02882500f6133835ae0d4 +source = repo:epel + +[pytz-2012d-5.el7] +file = pytz-2012d-5.el7.noarch.rpm +md5 = 17b738104c36b90d7640048e6a38876a +source = repo:base + +[qemu-img-1.5.3-105.el7_2.3] +file = qemu-img-1.5.3-105.el7_2.3.x86_64.rpm +md5 = b17bf11e014c734c617e37501b599a34 +source = repo:updates + +[qemu-kvm-1.5.3-105.el7_2.3] +file = qemu-kvm-1.5.3-105.el7_2.3.x86_64.rpm +md5 = 33625a0062376d1041bf94af48415605 +source = repo:updates + +[qemu-kvm-common-1.5.3-105.el7_2.3] +file = qemu-kvm-common-1.5.3-105.el7_2.3.x86_64.rpm +md5 = f71178b6308b530b9a5a31ce3f8228e8 +source = repo:updates + +[qpid-cpp-client-0.34-6.el7] +file = qpid-cpp-client-0.34-6.el7.x86_64.rpm +md5 = 4df506cf469ddcb7e7a4c0ffc8ee3396 +source = repo:epel + +[qpid-cpp-server-0.34-6.el7] +file = qpid-cpp-server-0.34-6.el7.x86_64.rpm +md5 = 1ee47bedf058df7bfce6f93b987324af +source = repo:epel + +[qpid-proton-c-0.12.0-1.el7] +file = qpid-proton-c-0.12.0-1.el7.x86_64.rpm +md5 = 48e7f48c5c427493a1996b2dafecacd1 +source = repo:epel + +[qt-4.8.5-11.el7] +file = qt-4.8.5-11.el7.x86_64.rpm +md5 = 0803ef7ab96a6f71978f976334069a8d +source = repo:base + +[qt-settings-19-23.5.el7.centos] +file = qt-settings-19-23.5.el7.centos.noarch.rpm +md5 = 571cde05bace4cd6490af730100f69da +source = repo:base + +[quota-4.01-11.el7_2.1] +file = quota-4.01-11.el7_2.1.x86_64.rpm +md5 = fadc4c8f3af7033d5533c11a8bbdfd48 +source = repo:updates + +[quota-nls-4.01-11.el7_2.1] +file = quota-nls-4.01-11.el7_2.1.noarch.rpm +md5 = 3fbe1632fd4bf25a730a40a5257ac13e +source = repo:updates + +[rabbitmq-server-3.3.5-17.el7] +file = rabbitmq-server-3.3.5-17.el7.noarch.rpm +md5 = 5b33621e0ba89dee63eb0f5c59ebdc2c +source = repo:epel + +[radvd-1.9.2-9.el7] +file = radvd-1.9.2-9.el7.x86_64.rpm +md5 = a4a1afd331907cebb9c871ec7b26db33 +source = repo:base + +[rdma-7.2_4.1_rc6-2.el7] +file = rdma-7.2_4.1_rc6-2.el7.noarch.rpm +md5 = cb631f00ff9e36bda86f23f6b8b904d3 +source = repo:updates + +[roboto-fontface-common-0.4.3.2-4.el7] +file = roboto-fontface-common-0.4.3.2-4.el7.noarch.rpm +md5 = 3796d583f072a7fe5c8fe3fd22341bab +source = repo:epel + +[roboto-fontface-fonts-0.4.3.2-4.el7] +file = roboto-fontface-fonts-0.4.3.2-4.el7.noarch.rpm +md5 = 4921e9d9aa2ee2f2fb8fde607f0b4ec1 +source = repo:epel + +[rpcbind-0.2.0-33.el7_2] +file = rpcbind-0.2.0-33.el7_2.x86_64.rpm +md5 = b8371e8bb8d05cc35db6296f00e9cc6e +source = repo:updates + +[rpm-4.11.3-17.el7] +file = rpm-4.11.3-17.el7.x86_64.rpm +md5 = 0ebf537a2a3807982fab348eb3e69653 +source = repo:base + +[rpm-build-libs-4.11.3-17.el7] +file = rpm-build-libs-4.11.3-17.el7.x86_64.rpm +md5 = b37d1138232a8abeabaccb7a297abc5c +source = repo:base + +[rpm-libs-4.11.3-17.el7] +file = rpm-libs-4.11.3-17.el7.x86_64.rpm +md5 = 1593103f6ba8b45d46d23e5d91a57845 +source = repo:base + +[rpm-python-4.11.3-17.el7] +file = rpm-python-4.11.3-17.el7.x86_64.rpm +md5 = f7b7e5a23186acdca5a4b7b7904ffdbb +source = repo:base + +[rsync-3.0.9-17.el7] +file = rsync-3.0.9-17.el7.x86_64.rpm +md5 = 80862463dd7c056f18aa60a24cb2105a +source = repo:base + +[rsyslog-7.4.7-12.el7] +file = rsyslog-7.4.7-12.el7.x86_64.rpm +md5 = 81ffc6aa40c92ac4ab31ce76c33e4059 +source = repo:base + +[rsyslog-mmjsonparse-7.4.7-12.el7] +file = rsyslog-mmjsonparse-7.4.7-12.el7.x86_64.rpm +md5 = 1233ab28b627407b451150021dc37604 +source = repo:base + +[ruby-2.0.0.598-25.el7_1] +file = ruby-2.0.0.598-25.el7_1.x86_64.rpm +md5 = d956c75d686141a17653b1f3a6ae3587 +source = repo:base + +[ruby-irb-2.0.0.598-25.el7_1] +file = ruby-irb-2.0.0.598-25.el7_1.noarch.rpm +md5 = 66bd9cdba2a92541418cbbbcc1e20763 +source = repo:base + +[ruby-libs-2.0.0.598-25.el7_1] +file = ruby-libs-2.0.0.598-25.el7_1.x86_64.rpm +md5 = 4375df56cdcdd7e7a51c2ed647b2e14a +source = repo:base + +[rubygem-bigdecimal-1.2.0-25.el7_1] +file = rubygem-bigdecimal-1.2.0-25.el7_1.x86_64.rpm +md5 = 08f65d71cc3622cff7151574315819f3 +source = repo:base + +[rubygem-io-console-0.4.2-25.el7_1] +file = rubygem-io-console-0.4.2-25.el7_1.x86_64.rpm +md5 = f1e98da447d88cec013831c1e6afcb65 +source = repo:base + +[rubygem-json-1.7.7-25.el7_1] +file = rubygem-json-1.7.7-25.el7_1.x86_64.rpm +md5 = 24276495f1d89d5f41ec624b9ff4c6c9 +source = repo:base + +[rubygem-psych-2.0.0-25.el7_1] +file = rubygem-psych-2.0.0-25.el7_1.x86_64.rpm +md5 = 1970d8a74159cd57b142fa468f46a242 +source = repo:base + +[rubygem-rdoc-4.0.0-25.el7_1] +file = rubygem-rdoc-4.0.0-25.el7_1.noarch.rpm +md5 = fd7768b02fe96546f8976b18747c0611 +source = repo:base + +[rubygems-2.0.14-25.el7_1] +file = rubygems-2.0.14-25.el7_1.noarch.rpm +md5 = af8d9fb17bf6df863d1ada16ab33b980 +source = repo:base + +[saslwrapper-0.16-5.el7] +file = saslwrapper-0.16-5.el7.x86_64.rpm +md5 = 8671070ddeeaa041c2e0853c4e06de0a +source = repo:epel + +[satyr-0.13-12.el7] +file = satyr-0.13-12.el7.x86_64.rpm +md5 = a4f7b6282d5741fd25a8906a7b4fd968 +source = repo:base + +[scipy-0.12.1-3.el7] +file = scipy-0.12.1-3.el7.x86_64.rpm +md5 = b608d7f4408bf70b3eb2c24aff360943 +source = repo:base + +[scrub-2.5.2-5.el7] +file = scrub-2.5.2-5.el7.x86_64.rpm +md5 = a3413b7eb6b140fa67fa7548a76de7b9 +source = repo:base + +[seabios-bin-1.7.5-11.el7] +file = seabios-bin-1.7.5-11.el7.noarch.rpm +md5 = a76804900883ad68173457797d4c95a7 +source = repo:base + +[seavgabios-bin-1.7.5-11.el7] +file = seavgabios-bin-1.7.5-11.el7.noarch.rpm +md5 = ee3e11ddf1279709c40a87b778375b5d +source = repo:base + +[selinux-policy-3.13.1-60.el7_2.3] +file = selinux-policy-3.13.1-60.el7_2.3.noarch.rpm +md5 = c5e43ff568c05ac73aa2c0d2f6c72172 +source = repo:updates + +[selinux-policy-targeted-3.13.1-60.el7_2.3] +file = selinux-policy-targeted-3.13.1-60.el7_2.3.noarch.rpm +md5 = 21709831c3a2386af77dca17cf56af6b +source = repo:updates + +[setup-2.8.71-6.el7] +file = setup-2.8.71-6.el7.noarch.rpm +md5 = f04d4a67bf26d5624ba0c051ddfb039b +source = repo:base + +[sgabios-bin-0.20110622svn-4.el7] +file = sgabios-bin-0.20110622svn-4.el7.noarch.rpm +md5 = cdc4adb545e3032489ca08e2f70dc0bc +source = repo:base + +[shared-mime-info-1.1-9.el7] +file = shared-mime-info-1.1-9.el7.x86_64.rpm +md5 = ba91062bc9c9d74e3935fd1a2a23285c +source = repo:base + +[slf4j-1.7.4-3.el7] +file = slf4j-1.7.4-3.el7.noarch.rpm +md5 = eb726c0d967b04f0a7c4fdf1ccc9ea3c +source = repo:base + +[sos-3.2-35.el7.centos.3] +file = sos-3.2-35.el7.centos.3.noarch.rpm +md5 = 679cdf8d2496d7a682ca1057fd3bb5cc +source = repo:updates + +[spice-server-0.12.4-15.el7] +file = spice-server-0.12.4-15.el7.x86_64.rpm +md5 = 25caca648b23d6bb993280f83b67d60c +source = repo:base + +[sqlite-3.7.17-8.el7] +file = sqlite-3.7.17-8.el7.x86_64.rpm +md5 = f038a7fc8ee9359e2b503bb7caa81215 +source = repo:base + +[sudo-1.8.6p7-17.el7_2] +file = sudo-1.8.6p7-17.el7_2.x86_64.rpm +md5 = 4b4c43567824b686424047e9fda83168 +source = repo:updates + +[suitesparse-4.0.2-10.el7] +file = suitesparse-4.0.2-10.el7.x86_64.rpm +md5 = 9518c8f00b93178ca3b7b2cb1bdaa12b +source = repo:base + +[supermin5-5.1.10-1.2.el7] +file = supermin5-5.1.10-1.2.el7.x86_64.rpm +md5 = b0eea9e698c833dfb06d62b56dfeeb19 +source = repo:base + +[supervisor-3.1.3-3.el7] +file = supervisor-3.1.3-3.el7.noarch.rpm +md5 = 7e93da0ea138260d22471b3bffc05046 +source = repo:epel + +[sysfsutils-2.1.0-16.el7] +file = sysfsutils-2.1.0-16.el7.x86_64.rpm +md5 = 4a13685cdd715db407d6700ebd681ed1 +source = repo:base + +[syslinux-4.05-12.el7] +file = syslinux-4.05-12.el7.x86_64.rpm +md5 = 3d7d5cb07323a0c623da4621b4c4bdc6 +source = repo:base + +[syslinux-extlinux-4.05-12.el7] +file = syslinux-extlinux-4.05-12.el7.x86_64.rpm +md5 = 4ce08ab85bf276430000f1388890c844 +source = repo:base + +[systemd-219-19.el7_2.7] +file = systemd-219-19.el7_2.7.x86_64.rpm +md5 = d9d704cc5d98945fa47bec812e30d0e0 +source = repo:updates + +[systemd-libs-219-19.el7_2.7] +file = systemd-libs-219-19.el7_2.7.x86_64.rpm +md5 = 2048e1a1ba85d418ba7b6250589bf947 +source = repo:updates + +[systemd-sysv-219-19.el7_2.7] +file = systemd-sysv-219-19.el7_2.7.x86_64.rpm +md5 = b9dce6b0bbfbc74af7bb932e2b98f174 +source = repo:updates + +[tbb-4.1-9.20130314.el7] +file = tbb-4.1-9.20130314.el7.x86_64.rpm +md5 = 83066a11a7c2fd1a40e8b22e2983fe00 +source = repo:base + +[tcp_wrappers-7.6-77.el7] +file = tcp_wrappers-7.6-77.el7.x86_64.rpm +md5 = 17f2ddbdef3f856e957e347223f8679e +source = repo:base + +[teamd-1.17-6.el7_2] +file = teamd-1.17-6.el7_2.x86_64.rpm +md5 = 13651e2ff5dc7664f9006e5ee19585c5 +source = repo:updates + +[thrift-0.9.1-12.el7] +file = thrift-0.9.1-12.el7.x86_64.rpm +md5 = 0336c328090402b53e3bae0a86f6c95f +source = repo:epel + +[tomcat-servlet-3.0-api-7.0.54-2.el7_1] +file = tomcat-servlet-3.0-api-7.0.54-2.el7_1.noarch.rpm +md5 = 15a0c2d2398d36e6378534cf13b20d65 +source = repo:base + +[trousers-0.3.13-1.el7] +file = trousers-0.3.13-1.el7.x86_64.rpm +md5 = 825688dfcec232b828ca1a0565b877b4 +source = repo:base + +[ttmkfdir-3.0.9-42.el7] +file = ttmkfdir-3.0.9-42.el7.x86_64.rpm +md5 = 08b0f20a2a994eee5d092b6c3eb90dfd +source = repo:base + +[tuned-2.5.1-4.el7_2.3] +file = tuned-2.5.1-4.el7_2.3.noarch.rpm +md5 = 351259b34fead9a38678b3917f595295 +source = repo:updates + +[tzdata-2016c-1.el7] +file = tzdata-2016c-1.el7.noarch.rpm +md5 = a8f884a40c30437616446e0462cf5725 +source = repo:updates + +[tzdata-java-2016c-1.el7] +file = tzdata-java-2016c-1.el7.noarch.rpm +md5 = 9f737930491e78ee0e5fce91978adc0a +source = repo:updates + +[unbound-libs-1.4.20-26.el7] +file = unbound-libs-1.4.20-26.el7.x86_64.rpm +md5 = ff1f5159661fa15bde28c4af2b7cb74b +source = repo:base + +[urw-fonts-2.4-16.el7] +file = urw-fonts-2.4-16.el7.noarch.rpm +md5 = 9ab877777dcc0b265750b7f909adc9b7 +source = repo:base + +[usbredir-0.6-7.el7] +file = usbredir-0.6-7.el7.x86_64.rpm +md5 = cb6929def74a036d75158f9adfcb51ac +source = repo:base + +[util-linux-2.23.2-26.el7_2.2] +file = util-linux-2.23.2-26.el7_2.2.x86_64.rpm +md5 = f2f219b3583d8897b922044f5fc171ed +source = repo:updates + +[virt-what-1.13-6.el7] +file = virt-what-1.13-6.el7.x86_64.rpm +md5 = 44c0fb5b63340877d0436aaa89856615 +source = repo:base + +[web-assets-filesystem-5-1.el7] +file = web-assets-filesystem-5-1.el7.noarch.rpm +md5 = dde926d079f5ebe304aaac573f857038 +source = repo:epel + +[wpa_supplicant-2.0-17.el7_1] +file = wpa_supplicant-2.0-17.el7_1.x86_64.rpm +md5 = 287bcb56e894b2d163aee5fff7e78f69 +source = repo:base + +[xalan-j2-2.7.1-23.el7] +file = xalan-j2-2.7.1-23.el7.noarch.rpm +md5 = eb45009e74bf3df868bfae9e835e6152 +source = repo:base + +[xerces-j2-2.11.0-17.el7_0] +file = xerces-j2-2.11.0-17.el7_0.noarch.rpm +md5 = 45cb498ac6ce58f452a769d4d7ab6547 +source = repo:base + +[xfsprogs-3.2.2-2.el7] +file = xfsprogs-3.2.2-2.el7.x86_64.rpm +md5 = 7d209c272e8d0992cb4ff21ebcaf1586 +source = repo:base + +[xml-commons-apis-1.4.01-16.el7] +file = xml-commons-apis-1.4.01-16.el7.noarch.rpm +md5 = 9c3d8ccd167e81e856880f8f3dd4c980 +source = repo:base + +[xml-commons-resolver-1.2-15.el7] +file = xml-commons-resolver-1.2-15.el7.noarch.rpm +md5 = bf157403ddd1161c64df3a9c863dd885 +source = repo:base + +[xmlrpc-c-1.32.5-1905.svn2451.el7] +file = xmlrpc-c-1.32.5-1905.svn2451.el7.x86_64.rpm +md5 = baecf0ff5555d01fde76499d3758d2f4 +source = repo:base + +[xmlrpc-c-client-1.32.5-1905.svn2451.el7] +file = xmlrpc-c-client-1.32.5-1905.svn2451.el7.x86_64.rpm +md5 = 13a7f514e3f193a7f01ba3b953263a10 +source = repo:base + +[xorg-x11-font-utils-7.5-20.el7] +file = xorg-x11-font-utils-7.5-20.el7.x86_64.rpm +md5 = 86f4262d8af9e61cfed619db90098baa +source = repo:base + +[xorg-x11-fonts-Type1-7.5-9.el7] +file = xorg-x11-fonts-Type1-7.5-9.el7.noarch.rpm +md5 = d479e2f596d107f9103aff2e613b9e10 +source = repo:base + +[xz-5.1.2-12alpha.el7] +file = xz-5.1.2-12alpha.el7.x86_64.rpm +md5 = 688650c3ba31c9d9fb618a8bc99f4226 +source = repo:base + +[xz-libs-5.1.2-12alpha.el7] +file = xz-libs-5.1.2-12alpha.el7.x86_64.rpm +md5 = d08179c24e0037f0cbe61d9ba3eecb36 +source = repo:base + +[yajl-2.0.4-4.el7] +file = yajl-2.0.4-4.el7.x86_64.rpm +md5 = 843f0170a4c25b75c352062786db49ec +source = repo:base + +[yum-3.4.3-132.el7.centos.0.1] +file = yum-3.4.3-132.el7.centos.0.1.noarch.rpm +md5 = 48cf64493def0763865e189cb873c2a9 +source = repo:base + +[yum-plugin-fastestmirror-1.1.31-34.el7] +file = yum-plugin-fastestmirror-1.1.31-34.el7.noarch.rpm +md5 = 927b195d7fbdeaba40fc5df89c202643 +source = repo:base + +[yum-utils-1.1.31-34.el7] +file = yum-utils-1.1.31-34.el7.noarch.rpm +md5 = b077812f100c8dc73d25116b0f37435e +source = repo:base + +[zlib-1.2.7-15.el7] +file = zlib-1.2.7-15.el7.x86_64.rpm +md5 = be4906cf59401cbe21bdef5164fb20d9 +source = repo:base diff --git a/build/package_configs/centoslinux71/liberty/depends_contrail_installer_packages.cfg b/build/package_configs/centoslinux71/liberty/depends_contrail_installer_packages.cfg new file mode 100644 index 000000000..166a453b9 --- /dev/null +++ b/build/package_configs/centoslinux71/liberty/depends_contrail_installer_packages.cfg @@ -0,0 +1,122 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-install-packages, contrail-dependent-packages, contrail-installer-packages +source = + + +[PyYAML-3.10-11.el7] +file = PyYAML-3.10-11.el7.x86_64.rpm +md5 = f6e7d3300feab7dd9b8df90992187003 +source = repo:base + +[createrepo-0.9.9-25.el7_2] +file = createrepo-0.9.9-25.el7_2.noarch.rpm +md5 = 6221d83ff042518b544168d0305a1d5a +source = repo:updates + +[deltarpm-3.6-3.el7] +file = deltarpm-3.6-3.el7.x86_64.rpm +md5 = b2e202b2456749df16c9736a752a13fc +source = repo:base + +[libtomcrypt-1.17-23.el7] +file = libtomcrypt-1.17-23.el7.x86_64.rpm +md5 = a89c80360708b3c1afbc1949edddbc27 +source = repo:epel + +[libtommath-0.42.0-4.el7] +file = libtommath-0.42.0-4.el7.x86_64.rpm +md5 = ed7ad02f38139c8162a19307768f257f +source = repo:epel + +[libxml2-python-2.9.1-6.el7_2.2] +file = libxml2-python-2.9.1-6.el7_2.2.x86_64.rpm +md5 = 618eb7c44d7aa833ca42ae154630b729 +source = repo:updates + +[net-tools-2.0-0.17.20131004git.el7] +file = net-tools-2.0-0.17.20131004git.el7.x86_64.rpm +md5 = d3e38fe789a9ae3be95cd5d26d4fea95 +source = repo:base + +[python-Fabric-1.7.5-1.2contrail0] +file = python-Fabric-1.7.5-1.2contrail0.noarch.rpm +md5 = 899afb211197ada80e326b6a86b53fc0 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-thirdparty-packages, contrail-installer-packages + +[python-backports-1.0-8.el7] +file = python-backports-1.0-8.el7.x86_64.rpm +md5 = bb1e44073f5e082d8e3c7a896abfcb19 +source = repo:base + +[python-backports-ssl_match_hostname-3.4.0.2-4.el7] +file = python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch.rpm +md5 = 8e8007a8f38d0ef8923b8595abcfb404 +source = repo:base + +[python-deltarpm-3.6-3.el7] +file = python-deltarpm-3.6-3.el7.x86_64.rpm +md5 = 9c8deee0eb9a7fa329835e3eb730aad6 +source = repo:base + +[python-ecdsa-0.11-3.el7.centos] +file = python-ecdsa-0.11-3.el7.centos.noarch.rpm +md5 = d0e0370629d546b390ec258e12292147 +source = repo:extras + +[python-netaddr-0.7.5-7.el7] +file = python-netaddr-0.7.5-7.el7.noarch.rpm +md5 = 85b3b6fe2c46327edfb2e7eba9069536 +source = repo:base + +[python-paramiko-1.15.1-1.el7] +file = python-paramiko-1.15.1-1.el7.noarch.rpm +md5 = 80e481b4619e04d74a042d770ec5cdb4 +source = repo:epel + +[python-six-1.9.0-2.el7] +file = python-six-1.9.0-2.el7.noarch.rpm +md5 = 352f85bb64fad25262f4f1330c74c53b +source = repo:base + +[python2-crypto-2.6.1-9.el7] +file = python2-crypto-2.6.1-9.el7.x86_64.rpm +md5 = 90c20221ab06385d545f662030c7f1b2 +source = repo:epel + +[yum-plugin-priorities-1.1.31-34.el7] +file = yum-plugin-priorities-1.1.31-34.el7.noarch.rpm +md5 = fa1ae8ca3dad6811a026c46de8e04331 +source = repo:base diff --git a/build/package_configs/centoslinux71/liberty/depends_contrail_openstack_packages.cfg b/build/package_configs/centoslinux71/liberty/depends_contrail_openstack_packages.cfg new file mode 100644 index 000000000..8731533a5 --- /dev/null +++ b/build/package_configs/centoslinux71/liberty/depends_contrail_openstack_packages.cfg @@ -0,0 +1,588 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-install-packages, contrail-openstack-packages +source = repo:openstack-liberty + +[bootswatch-common-3.3.5.3-2.el7] +file = bootswatch-common-3.3.5.3-2.el7.noarch.rpm +md5 = f2121f1b0ebd0d6e752d36365add0f74 + +[bootswatch-fonts-3.3.5.3-2.el7] +file = bootswatch-fonts-3.3.5.3-2.el7.noarch.rpm +md5 = 385a9e803ac1bd94b3fe947753378f7d + +[fontawesome-fonts-4.4.0-1.el7] +file = fontawesome-fonts-4.4.0-1.el7.noarch.rpm +md5 = c46005fa7e80558114252dd071943fb4 + +[fontawesome-fonts-web-4.4.0-1.el7] +file = fontawesome-fonts-web-4.4.0-1.el7.noarch.rpm +md5 = ede197ed9a5595a2974166b36ff9bf64 + +[lz4-r131-2.el7] +file = lz4-r131-2.el7.x86_64.rpm +md5 = f2c555cdc1b124d2d419b705f70056f5 +source = repo:openstack-mitaka + +[mariadb-galera-common-5.5.40-2.el7] +file = mariadb-galera-common-5.5.40-2.el7.x86_64.rpm +md5 = 7efeeee99166fdbb1400a2141d2ca894 + +[mariadb-galera-server-5.5.40-2.el7] +file = mariadb-galera-server-5.5.40-2.el7.x86_64.rpm +md5 = 17e66d8cfc5c09ce975e6ffdd6e523de + +[mdi-common-1.1.70.1-2.el7] +file = mdi-common-1.1.70.1-2.el7.noarch.rpm +md5 = 5f3a3e299ff8b16c8864d060d35540c6 + +[mdi-fonts-1.1.70.1-2.el7] +file = mdi-fonts-1.1.70.1-2.el7.noarch.rpm +md5 = c74b8f272e87caef17ba21930589549b + +[openstack-cinder-7.0.1-1.el7] +file = openstack-cinder-7.0.1-1.el7.noarch.rpm +md5 = a2e4b46bf45941674312560b5e971ce7 + +[openstack-dashboard-8.0.0-1.el7] +file = openstack-dashboard-8.0.0-1.el7.noarch.rpm +md5 = 4fb8fa6c916ac4db9d60436b9aa1dcbe + +[openstack-glance-11.0.1-2.el7] +file = openstack-glance-11.0.1-2.el7.noarch.rpm +md5 = 1af271da9417ff4dd07676e338575d02 + +[openstack-heat-api-5.0.0-1.el7] +file = openstack-heat-api-5.0.0-1.el7.noarch.rpm +md5 = dd48657c7527a7711104233d3f28877f + +[openstack-heat-api-cfn-5.0.0-1.el7] +file = openstack-heat-api-cfn-5.0.0-1.el7.noarch.rpm +md5 = ed6d2e51a6fd81616bf5a1874a6b0a0f + +[openstack-heat-common-5.0.0-1.el7] +file = openstack-heat-common-5.0.0-1.el7.noarch.rpm +md5 = 43d67b8a82d5e76067f65e5eaccaeaa7 + +[openstack-heat-engine-5.0.0-1.el7] +file = openstack-heat-engine-5.0.0-1.el7.noarch.rpm +md5 = fd00afc15778490096db350e80d27080 + +[openstack-keystone-8.0.1-1.el7] +file = openstack-keystone-8.0.1-1.el7.noarch.rpm +md5 = aea553d3fb6d59fd977eba939fd04dd3 + +[openstack-neutron-7.0.3-1.el7] +file = openstack-neutron-7.0.3-1.el7.noarch.rpm +md5 = 74d9c88e070285932fe7cc86f275972e + +[openstack-neutron-common-7.0.3-1.el7] +file = openstack-neutron-common-7.0.3-1.el7.noarch.rpm +md5 = 87c70c3a201f8d1e7eae078279631a22 + +[openstack-nova-12.0.1-1.el7] +file = openstack-nova-12.0.1-1.el7.noarch.rpm +md5 = d833b71ff8ebe0bc1537d2274d8613f6 + +[openstack-nova-api-12.0.1-1.el7] +file = openstack-nova-api-12.0.1-1.el7.noarch.rpm +md5 = 2c7acec334d0b9815185b573a8553063 + +[openstack-nova-cells-12.0.1-1.el7] +file = openstack-nova-cells-12.0.1-1.el7.noarch.rpm +md5 = 64618f925ec3deaac15fb25cc581dcbf + +[openstack-nova-cert-12.0.1-1.el7] +file = openstack-nova-cert-12.0.1-1.el7.noarch.rpm +md5 = 783941075a81eb049040633b879a04e2 + +[openstack-nova-common-12.0.1-1.el7] +file = openstack-nova-common-12.0.1-1.el7.noarch.rpm +md5 = 1b9eeffa0775affca55a4ccc97086ce4 + +[openstack-nova-compute-12.0.1-1.el7] +file = openstack-nova-compute-12.0.1-1.el7.noarch.rpm +md5 = c69e563a8064f2b1a01aa91c6d20cc9d + +[openstack-nova-conductor-12.0.1-1.el7] +file = openstack-nova-conductor-12.0.1-1.el7.noarch.rpm +md5 = 35fb3f60d274f1a21d33d9b6b2e36340 + +[openstack-nova-console-12.0.1-1.el7] +file = openstack-nova-console-12.0.1-1.el7.noarch.rpm +md5 = 24b78aa0e0fcc457b1402dfe34dabd1d + +[openstack-nova-network-12.0.1-1.el7] +file = openstack-nova-network-12.0.1-1.el7.noarch.rpm +md5 = d716c90b7509fb160b3baa6bc6e1fd42 + +[openstack-nova-novncproxy-12.0.1-1.el7] +file = openstack-nova-novncproxy-12.0.1-1.el7.noarch.rpm +md5 = 844f5d46aa207eb76c5b2506dc5e3e99 + +[openstack-nova-objectstore-12.0.1-1.el7] +file = openstack-nova-objectstore-12.0.1-1.el7.noarch.rpm +md5 = 5f5069795338ada01a9eb9449a808813 + +[openstack-nova-scheduler-12.0.1-1.el7] +file = openstack-nova-scheduler-12.0.1-1.el7.noarch.rpm +md5 = 68ba16fe4c6052aa168fb55deb685b04 + +[openstack-utils-2015.2-1.el7] +file = openstack-utils-2015.2-1.el7.noarch.rpm +md5 = 57f9a9bf8a5c1b483f22e8046f2ed73c + +[pyOpenSSL-0.15.1-1.el7] +file = pyOpenSSL-0.15.1-1.el7.noarch.rpm +md5 = b58465b90cc0b73eafcae9b9da35ff56 + +[pyparsing-2.0.3-1.el7] +file = pyparsing-2.0.3-1.el7.noarch.rpm +md5 = 9e6a38f031a72d747bfe8eff01a5c744 + +[python-XStatic-Angular-1.3.7.0-4.el7] +file = python-XStatic-Angular-1.3.7.0-4.el7.noarch.rpm +md5 = a47a6ff933e6a1bd515d9400a5400023 + +[python-XStatic-Angular-Gettext-2.1.0.2-1.el7] +file = python-XStatic-Angular-Gettext-2.1.0.2-1.el7.noarch.rpm +md5 = 5114495dbc36891e0920a4744da40008 + +[python-XStatic-Angular-lrdragndrop-1.0.2.2-2.el7] +file = python-XStatic-Angular-lrdragndrop-1.0.2.2-2.el7.noarch.rpm +md5 = 52e14ada613831d9a2d7ca289e971f6d + +[python-XStatic-Font-Awesome-4.3.0.0-1.el7] +file = python-XStatic-Font-Awesome-4.3.0.0-1.el7.noarch.rpm +md5 = e4724db563489c1e64e1eb8cb254f582 + +[python-XStatic-Magic-Search-0.2.0.1-2.el7] +file = python-XStatic-Magic-Search-0.2.0.1-2.el7.noarch.rpm +md5 = 4f0e8f83e0994fa05f4363fdee3c872b + +[python-XStatic-smart-table-1.4.5.3-2.el7] +file = python-XStatic-smart-table-1.4.5.3-2.el7.noarch.rpm +md5 = 236f447f05fc6a5e796aadd4117eb62c + +[python-XStatic-termjs-0.0.4.2-2.el7] +file = python-XStatic-termjs-0.0.4.2-2.el7.noarch.rpm +md5 = d38cca11e6bb8b22f067cfc838dd81a8 + +[python-amqp-1.4.6-1.el7] +file = python-amqp-1.4.6-1.el7.noarch.rpm +md5 = 1d6c6501b1acaf054d1e19cdd02081f3 + +[python-automaton-0.7.0-1.el7] +file = python-automaton-0.7.0-1.el7.noarch.rpm +md5 = 01a91f238a254e73ab761eb1538c04ba + +[python-babel-1.3-6.el7] +file = python-babel-1.3-6.el7.noarch.rpm +md5 = 6bb2214248b8a876112fe444e9155bed + +[python-barbicanclient-3.3.0-1.el7] +file = python-barbicanclient-3.3.0-1.el7.noarch.rpm +md5 = ea8b002e645be5967c55c91ca56c4c46 + +[python-cachetools-1.0.3-2.el7] +file = python-cachetools-1.0.3-2.el7.noarch.rpm +md5 = af4563c7152330c43b1e167f5fa9d9d4 + +[python-ceilometerclient-1.5.0-1.el7] +file = python-ceilometerclient-1.5.0-1.el7.noarch.rpm +md5 = 5e8f1d72b4e1415dc4499480981f37c6 + +[python-cffi-1.1.2-3.el7] +file = python-cffi-1.1.2-3.el7.x86_64.rpm +md5 = 46fc3400aef810d7805a23f15be55789 + +[python-cinder-7.0.1-1.el7] +file = python-cinder-7.0.1-1.el7.noarch.rpm +md5 = 4cbc13dee08d47aad7689f03c49e43e3 + +[python-cinderclient-1.4.0-1.el7] +file = python-cinderclient-1.4.0-1.el7.noarch.rpm +md5 = d4c624ec620be2971fc98d12158afd6a + +[python-cliff-1.15.0-1.el7] +file = python-cliff-1.15.0-1.el7.noarch.rpm +md5 = 82fa26e9a4e48056bb599f830cf68031 + +[python-cliff-tablib-1.1-3.el7] +file = python-cliff-tablib-1.1-3.el7.noarch.rpm +md5 = f5594d38e2dc73fffabbf40186a37ec8 + +[python-cmd2-0.6.8-3.el7] +file = python-cmd2-0.6.8-3.el7.noarch.rpm +md5 = e9b196e06a566aa150ff674280daf7d6 + +[python-cryptography-1.0-1.el7] +file = python-cryptography-1.0-1.el7.x86_64.rpm +md5 = 92a365d55f2d10696a6b04b53432c83d + +[python-django-1.8.7-1.el7] +file = python-django-1.8.7-1.el7.noarch.rpm +md5 = 91526515e41d96bbc42ddc523ea09ff9 + +[python-django-bash-completion-1.8.7-1.el7] +file = python-django-bash-completion-1.8.7-1.el7.noarch.rpm +md5 = e231265f70169df951627dcce409dd81 + +[python-django-compressor-1.5-2.el7] +file = python-django-compressor-1.5-2.el7.noarch.rpm +md5 = d23bf87e1f79d18b975aea92520cc323 + +[python-django-horizon-8.0.0-1.el7] +file = python-django-horizon-8.0.0-1.el7.noarch.rpm +md5 = 473d02c5ab197fcfd9cf3c0a64e9616a + +[python-django-pyscss-2.0.2-1.el7] +file = python-django-pyscss-2.0.2-1.el7.noarch.rpm +md5 = 8e141c7292ddeb8c3585b64d8156b01a + +[python-elasticsearch-1.4.0-2.el7] +file = python-elasticsearch-1.4.0-2.el7.noarch.rpm +md5 = 749ffb76ad6da6f1217877efe7e8d4ee + +[python-glance-11.0.1-2.el7] +file = python-glance-11.0.1-2.el7.noarch.rpm +md5 = e86155eb1995f77ff7e3eecf7e12aede + +[python-glance-store-0.9.1-1.el7] +file = python-glance-store-0.9.1-1.el7.noarch.rpm +md5 = 032055e52a52cc4ff2a4d5f97c2106c1 + +[python-glanceclient-1.1.0-1.el7] +file = python-glanceclient-1.1.0-1.el7.noarch.rpm +md5 = 2bcc5ac4f1c6353bdb360f4d302e88cb + +[python-heatclient-0.8.0-1.el7] +file = python-heatclient-0.8.0-1.el7.noarch.rpm +md5 = ab89fbdce07f303f970b8445f714be75 + +[python-httplib2-0.9.2-1.el7] +file = python-httplib2-0.9.2-1.el7.noarch.rpm +md5 = a7bae51a761624f1c48d6b54e09b4e1b + +[python-kazoo-2.2.1-1.el7] +file = python-kazoo-2.2.1-1.el7.noarch.rpm +md5 = c92825c834bba1d0c8c7f14406bdb8a2 + +[python-keystone-8.0.1-1.el7] +file = python-keystone-8.0.1-1.el7.noarch.rpm +md5 = 6d9325d8cbe36706037c981ddf9f8da9 + +[python-keystoneclient-1.7.2-1.el7] +file = python-keystoneclient-1.7.2-1.el7.noarch.rpm +md5 = 9ec3875a553197dc17cd3fbbd065b5c4 + +[python-keystonemiddleware-2.3.1-1.el7] +file = python-keystonemiddleware-2.3.1-1.el7.noarch.rpm +md5 = e0eb5dec4d763bbfee74cb3cd4572cb2 + +[python-kombu-3.0.32-1.el7] +file = python-kombu-3.0.32-1.el7.noarch.rpm +md5 = 7e40f3409f1c5463e1ce328aa68afdf7 + +[python-ldappool-1.0-4.el7] +file = python-ldappool-1.0-4.el7.noarch.rpm +md5 = 86a4d5dfa995443b2b9427edd97e0ad3 + +[python-logutils-0.3.3-3.el7] +file = python-logutils-0.3.3-3.el7.noarch.rpm +md5 = 139169f64d79efc280b6653784865ef1 + +[python-migrate-0.10.0-1.el7] +file = python-migrate-0.10.0-1.el7.noarch.rpm +md5 = b8e4a6683534b287a23dda1b5689846b + +[python-monotonic-0.3-1.el7] +file = python-monotonic-0.3-1.el7.noarch.rpm +md5 = b0438957bae12d9b09a0a7adfe01e8f8 + +[python-netaddr-0.7.18-1.el7] +file = python-netaddr-0.7.18-1.el7.noarch.rpm +md5 = f3eecb8f948b9ca5f517901e20f18484 + +[python-netifaces-0.10.4-1.el7] +file = python-netifaces-0.10.4-1.el7.x86_64.rpm +md5 = 8cc8af7ba50ff3e9eb9c786e82a8b4fb + +[python-networkx-core-1.10-1.el7] +file = python-networkx-core-1.10-1.el7.noarch.rpm +md5 = ae63e7cc7aa8b013018fa6af80aa8092 + +[python-neutron-7.0.3-1.el7] +file = python-neutron-7.0.3-1.el7.noarch.rpm +md5 = 02c1353f5971458b7ee9b7bdceb520b4 + +[python-neutron-lbaas-7.0.0-1.el7] +file = python-neutron-lbaas-7.0.0-1.el7.noarch.rpm +md5 = 0a5e2f02262d5cf85f954c2ea1196b7e + +[python-nose-1.3.4-1.el7] +file = python-nose-1.3.4-1.el7.noarch.rpm +md5 = 11e4ce7539120f99c6de882b76144465 + +[python-nova-12.0.1-1.el7] +file = python-nova-12.0.1-1.el7.noarch.rpm +md5 = 9b21c2e42a87a05a8cab03e5828d018e + +[python-novaclient-2.30.1-1.el7] +file = python-novaclient-2.30.1-1.el7.noarch.rpm +md5 = 4b0ed3603c02fb2f0dfce178a0b71ae3 + +[python-oauthlib-0.6.0-3.el7] +file = python-oauthlib-0.6.0-3.el7.noarch.rpm +md5 = ed1156eb1a3d499b32407b5033295e21 + +[python-openstackclient-1.7.2-1.el7] +file = python-openstackclient-1.7.2-1.el7.noarch.rpm +md5 = f06923836b00a682a4737e2a56e0f71b + +[python-oslo-cache-0.7.0-1.el7] +file = python-oslo-cache-0.7.0-1.el7.noarch.rpm +md5 = 0b9764a1d18f958daa17c00fa4bcd19b + +[python-oslo-concurrency-2.6.0-1.el7] +file = python-oslo-concurrency-2.6.0-1.el7.noarch.rpm +md5 = f30cd173459663d287d5bdb4b49bda56 + +[python-oslo-db-2.6.0-3.el7] +file = python-oslo-db-2.6.0-3.el7.noarch.rpm +md5 = 0b9a868a0cddd964f3600b01ee698dd5 + +[python-oslo-log-1.10.0-1.el7] +file = python-oslo-log-1.10.0-1.el7.noarch.rpm +md5 = ef54adbf8004f6b40cd60ca98c54fc60 + +[python-oslo-messaging-2.5.0-1.el7] +file = python-oslo-messaging-2.5.0-1.el7.noarch.rpm +md5 = d00ff6074ec0bb97042215c61ec92ea4 + +[python-oslo-middleware-2.8.0-1.el7] +file = python-oslo-middleware-2.8.0-1.el7.noarch.rpm +md5 = 3b11e2ff77e9640bec49d63119a34b8e + +[python-oslo-policy-0.11.0-1.el7] +file = python-oslo-policy-0.11.0-1.el7.noarch.rpm +md5 = 0a4905b94d770cdc8aaf03cfed7d1186 + +[python-oslo-rootwrap-2.3.0-1.el7] +file = python-oslo-rootwrap-2.3.0-1.el7.noarch.rpm +md5 = 88e3676962a8a39d3b922457bbca452b + +[python-oslo-service-0.9.0-1.el7] +file = python-oslo-service-0.9.0-1.el7.noarch.rpm +md5 = aebbc987f79be8faa24f06f9793257d6 + +[python-oslo-versionedobjects-0.10.0-1.el7] +file = python-oslo-versionedobjects-0.10.0-1.el7.noarch.rpm +md5 = 050ea2fd195b27531471848cfa5323d4 + +[python-oslo-vmware-1.21.0-1.el7] +file = python-oslo-vmware-1.21.0-1.el7.noarch.rpm +md5 = 1fa39d01ef5fafd2352af567d77b6cf6 + +[python-osprofiler-0.3.0-1.el7] +file = python-osprofiler-0.3.0-1.el7.noarch.rpm +md5 = 7f2df08f36f5cc6880bca5c45e3632bd + +[python-pyasn1-0.1.8-2.el7] +file = python-pyasn1-0.1.8-2.el7.noarch.rpm +md5 = 00d1661f69e0ca3ee591b7dc04b7d7b0 + +[python-pyasn1-modules-0.1.8-2.el7] +file = python-pyasn1-modules-0.1.8-2.el7.noarch.rpm +md5 = 77c296bc29e4dd51c63cec16e522cf97 + +[python-pycadf-1.1.0-1.el7] +file = python-pycadf-1.1.0-1.el7.noarch.rpm +md5 = f65216b2c0be99afd3d070ef07069286 + +[python-pygments-2.0.2-4.el7] +file = python-pygments-2.0.2-4.el7.noarch.rpm +md5 = 8a159c38e1e2e41ab20714f8f169601b + +[python-pysaml2-3.0.2-1.el7] +file = python-pysaml2-3.0.2-1.el7.noarch.rpm +md5 = a06cc0aeff667ca93d35d1d396af31ef + +[python-requests-2.7.0-6.el7] +file = python-requests-2.7.0-6.el7.noarch.rpm +md5 = e1518ae89f40a24baeafcff745983e26 + +[python-retrying-1.2.3-4.el7] +file = python-retrying-1.2.3-4.el7.noarch.rpm +md5 = 82e56bbcf562540c8a5c2656a53b8142 + +[python-rfc3986-0.2.0-1.el7] +file = python-rfc3986-0.2.0-1.el7.noarch.rpm +md5 = 04e97a17e94d5189efa2dd348ac38316 + +[python-saharaclient-0.11.1-1.el7] +file = python-saharaclient-0.11.1-1.el7.noarch.rpm +md5 = 996c51aee52c53c191bad48a53c21f6f + +[python-scss-1.3.4-1.el7] +file = python-scss-1.3.4-1.el7.x86_64.rpm +md5 = d9790b43562c335e1a052d1cc781eec8 + +[python-sqlalchemy-1.0.11-1.el7] +file = python-sqlalchemy-1.0.11-1.el7.x86_64.rpm +md5 = 36d874927e08536a76ae5a45d9adc0bc + +[python-stevedore-1.8.0-1.el7] +file = python-stevedore-1.8.0-1.el7.noarch.rpm +md5 = 66dd692afc36df9af6083c5706774e30 + +[python-swiftclient-2.6.0-1.el7] +file = python-swiftclient-2.6.0-1.el7.noarch.rpm +md5 = e437330ecc080a71ccd4efe7e9389e69 + +[python-tablib-0.10.0-1.el7] +file = python-tablib-0.10.0-1.el7.noarch.rpm +md5 = 81a640cd62a75c94dbd485ca8dd6c3e5 + +[python-taskflow-1.21.0-1.el7] +file = python-taskflow-1.21.0-1.el7.noarch.rpm +md5 = 4cbff77d5281846346456c8488d00e91 + +[python-tempita-0.5.1-8.el7] +file = python-tempita-0.5.1-8.el7.noarch.rpm +md5 = 988b4a9fbe05639af4badf5e38d0321c + +[python-testtools-1.8.0-2.el7] +file = python-testtools-1.8.0-2.el7.noarch.rpm +md5 = f1cba590cddbb67715c288b6f4f659c1 + +[python-troveclient-1.3.0-1.el7] +file = python-troveclient-1.3.0-1.el7.noarch.rpm +md5 = 3615c1bb1cd7b96c13c04429f2297acc + +[python-urllib3-1.10.4-1.20150503gita91975b.el7] +file = python-urllib3-1.10.4-1.20150503gita91975b.el7.noarch.rpm +md5 = 504ee08888018893afde9bc338b32e8a + +[python-webob-1.4.1-2.el7] +file = python-webob-1.4.1-2.el7.noarch.rpm +md5 = 3f10603364daba623420ba13c7471dd5 + +[python2-PyMySQL-0.6.7-2.el7] +file = python2-PyMySQL-0.6.7-2.el7.noarch.rpm +md5 = bd64d00e23f6236a5dd74210a38ab445 + +[python2-XStatic-bootswatch-3.3.5.3-2.el7] +file = python2-XStatic-bootswatch-3.3.5.3-2.el7.noarch.rpm +md5 = 72c189f202f5c8e5f32c8d26717791bb + +[python2-XStatic-mdi-1.1.70.1-2.el7] +file = python2-XStatic-mdi-1.1.70.1-2.el7.noarch.rpm +md5 = 87b754c79ba76b83043de6e27d427eed + +[python2-appdirs-1.4.0-4.el7] +file = python2-appdirs-1.4.0-4.el7.noarch.rpm +md5 = 0e36fc41aab4b4eb1fef8bc82f63179e + +[python2-castellan-0.3.1-1.el7] +file = python2-castellan-0.3.1-1.el7.noarch.rpm +md5 = 2294480b17a3801ea53378bf5a01144c + +[python2-debtcollector-0.8.0-1.el7] +file = python2-debtcollector-0.8.0-1.el7.noarch.rpm +md5 = 635177c606afd4897ce638a4e7b1ba3a + +[python2-django-openstack-auth-2.0.1-1.el7] +file = python2-django-openstack-auth-2.0.1-1.el7.noarch.rpm +md5 = 83471be381d6530f0e0bfaf9e9f3d18f + +[python2-eventlet-0.17.4-4.el7] +file = python2-eventlet-0.17.4-4.el7.noarch.rpm +md5 = 89263191d860531f47fbb0e93cb6f5f4 + +[python2-futurist-0.5.0-1.el7] +file = python2-futurist-0.5.0-1.el7.noarch.rpm +md5 = 12da4932abf7ae9e32b11dd4a029d0be + +[python2-greenlet-0.4.9-1.el7] +file = python2-greenlet-0.4.9-1.el7.x86_64.rpm +md5 = 3b44a4469f5dfeb64ca3a94242846409 + +[python2-os-brick-0.5.0-1.el7] +file = python2-os-brick-0.5.0-1.el7.noarch.rpm +md5 = 804f98f97a6b480344ed0041ab6ea880 + +[python2-os-client-config-1.7.4-1.el7] +file = python2-os-client-config-1.7.4-1.el7.noarch.rpm +md5 = a0877c8f5f5b2796efa32336512015c5 + +[python2-oslo-config-2.4.0-1.el7] +file = python2-oslo-config-2.4.0-1.el7.noarch.rpm +md5 = ae5796b49314eae86c570204944327c4 + +[python2-oslo-context-0.6.0-1.el7] +file = python2-oslo-context-0.6.0-1.el7.noarch.rpm +md5 = 6308d93b02fbd92dc2c79ace9e128d56 + +[python2-oslo-i18n-2.6.0-1.el7] +file = python2-oslo-i18n-2.6.0-1.el7.noarch.rpm +md5 = 00f209347db3c38dcc2c50ed82999cef + +[python2-oslo-reports-0.5.0-1.el7] +file = python2-oslo-reports-0.5.0-1.el7.noarch.rpm +md5 = cfd64d6920c3c012168867d9c5c8a6d2 + +[python2-oslo-serialization-1.9.0-1.el7] +file = python2-oslo-serialization-1.9.0-1.el7.noarch.rpm +md5 = 5c6b0042ada83e75bca9c1fa4d6682cc + +[python2-oslo-utils-2.5.0-1.el7] +file = python2-oslo-utils-2.5.0-1.el7.noarch.rpm +md5 = 3123dacc12007a02b1e8ebe2141791d0 + +[python2-passlib-1.6.5-1.el7] +file = python2-passlib-1.6.5-1.el7.noarch.rpm +md5 = a749f2522e1f321cf9266197fc901061 + +[python2-pecan-1.0.2-2.el7] +file = python2-pecan-1.0.2-2.el7.noarch.rpm +md5 = 86593e3895ec45ef6ab1ce2a5ed23b6b + +[python2-wsme-0.7.0-2.el7] +file = python2-wsme-0.7.0-2.el7.noarch.rpm +md5 = dcd6267c33643ed27264be2402cf1fcd + +[redis-3.0.6-1.el7] +file = redis-3.0.6-1.el7.x86_64.rpm +md5 = 33aeab7425baf9cd9bde94f10bbaa201 diff --git a/build/package_configs/centoslinux71/liberty/depends_contrail_thirdparty_packages.cfg b/build/package_configs/centoslinux71/liberty/depends_contrail_thirdparty_packages.cfg new file mode 100644 index 000000000..8183007bb --- /dev/null +++ b/build/package_configs/centoslinux71/liberty/depends_contrail_thirdparty_packages.cfg @@ -0,0 +1,156 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-install-packages, contrail-thirdparty-packages +source = repo:contrail-thirdparty + +[authbind-2.1.1-0] +file = authbind-2.1.1-0.x86_64.rpm +md5 = f573f94b5333c87b3154b024de259e97 + +[bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.el6] +file = bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.el6.noarch.rpm +md5 = 4a02c32568bde3d6c74257f925de491a + +[cassandra-cpp-driver-2.2.0-1.el7.centos] +file = cassandra-cpp-driver-2.2.0-1.el7.centos.x86_64.rpm +md5 = 7b1f66c4fcfdd2e85f981b2c3a12089f + +[cassandra20-2.0.17-1] +file = cassandra20-2.0.17-1.noarch.rpm +md5 = 0adf976fefbcfbaaf0b724a80f68cccc + +[cassandra21-2.1.9-1] +file = cassandra21-2.1.9-1.noarch.rpm +md5 = cae6ad6089fd15df384303b66cab594f + +[consistent_hash-1.0-0contrail0.el7] +file = consistent_hash-1.0-0contrail0.el7.noarch.rpm +md5 = d90efcd375a4b89639f80786d73114e2 + +[euca2ools-1.0-2contrail] +file = euca2ools-1.0-2contrail.x86_64.rpm +md5 = e83decbf4017da6f47696842aa909e13 + +[hc-httpcore-4.1-1.jpp6] +file = hc-httpcore-4.1-1.jpp6.noarch.rpm +md5 = 65d9fbf17070841708643f7eaa000071 + +[ifmap-server-0.3.2-5contrail.el7] +file = ifmap-server-0.3.2-5contrail.el7.centos.noarch.rpm +md5 = a0362fcbaf2a3cde9f41fc3a98b4a78f + +[kafka-2.11-0.9.0.1.0contrail0.el7.centos] +file = kafka-2.11-0.9.0.1.0contrail0.el7.centos.x86_64.rpm +md5 = 2ba18cafa558d7d04d486f5a097b1855 + +[librdkafka-devel-0.8.5-2.0contrail0.el7.centos] +file = librdkafka-devel-0.8.5-2.0contrail0.el7.centos.x86_64.rpm +md5 = 031fadbf1a27758a9bbdb168b4015842 + +[librdkafka1-0.8.5-2.0contrail0.el7.centos] +file = librdkafka1-0.8.5-2.0contrail0.el7.centos.x86_64.rpm +md5 = 31d466cee10e29c3c5e8811163879828 + +[libuv-1.7.5-1.el7.centos] +file = libuv-1.7.5-1.el7.centos.x86_64.rpm +md5 = 51db754e423fe425d09ed114d5ddd625 + +[libzookeeper-3.4.8-0contrail0.el7.centos] +file = libzookeeper-3.4.8-0contrail0.el7.centos.x86_64.rpm +md5 = 84acb00d70f87b00bee35fc735bd4d3a + +[nodejs-0.10.35-1contrail.el7] +file = nodejs-0.10.35-1contrail.el7.x86_64.rpm +md5 = 788131e83c0dc24b64f5623c9c11e7f4 + +[python-bitarray-0.8.0-0contrail.el7] +file = python-bitarray-0.8.0-0contrail.el7.x86_64.rpm +md5 = d1330f60ab5e7b9102da9706345f671d + +[python-boto-2.12.0-2contrail.el7] +file = python-boto-2.12.0-2contrail.el7.x86_64.rpm +md5 = de2aa10a5958e7f16b7dcbac3d1d952b + +[python-cassandra-driver-3.0.0-0contrail2.el7.centos] +file = python-cassandra-driver-3.0.0-0contrail2.el7.centos.x86_64.rpm +md5 = c85802f977a132012443202a6d27cd9e + +[python-gevent-1.1rc5-1contrail1.el7.centos] +file = python-gevent-1.1rc5-1contrail1.el7.centos.x86_64.rpm +md5 = d52a43d8659c5ea402d21ea9770e0da2 + +[python-geventhttpclient-1.0a-0contrail.el7] +file = python-geventhttpclient-1.0a-0contrail.el7.x86_64.rpm +md5 = 045388afa560fce0ebdd47bf18bef3b5 + +[python-jsonpickle-0.9.2-0contrail] +file = python-jsonpickle-0.9.2-0contrail.x86_64.rpm +md5 = 5180b60b42598b19a809bb79f28f3058 + +[python-kafka-1.0.1-0contrail0.el7.centos.noarch] +file = python-kafka-1.0.1-0contrail0.el7.centos.noarch.rpm +md5 = 241862887705c1c787a90a4e2403a98b + +[python-neutronclient-3.1.0-2contrail.el7.centos] +file = python-neutronclient-3.1.0-2contrail.el7.centos.noarch.rpm +md5 = fbf2a57f7aa3fdbb9fc1387225315f83 + +[python-pycassa-1.10.0-0contrail.el7] +file = python-pycassa-1.10.0-0contrail.el7.noarch.rpm +md5 = 62641a22f76d2b5a1c030a9e32f8f897 + +[python-requests-2.6.0-1.1contrail1.el7.centos] +file = python-requests-2.6.0-1.1contrail1.el7.centos.noarch.rpm +md5 = 86865ba4643bdb28bad2c275bc3fafb5 + +[python-sseclient-0.0.11-0contrail0] +file = python-sseclient-0.0.11-0contrail0.el7.centos.noarch.rpm +md5 = 121c43e7c9dcb693cea0d5fbb0a03fb9 + +[redis-py-0.1-2contrail.el7] +file = redis-py-0.1-2contrail.el7.noarch.rpm +md5 = 7c402a8bd07a9d54c4a7193fabc71fd1 + +[tunctl-1.5-3.el6] +file = tunctl-1.5-3.el6.x86_64.rpm +md5 = 5bd82e4f47b1e0fc7843de49c7afa5f1 + +[xmltodict-0.7.0-0contrail.el7] +file = xmltodict-0.7.0-0contrail.el7.noarch.rpm +md5 = dc1d4fe49d51c5d80597dfe51502de26 + +[zookeeper-3.4.3-1.el6] +file = zookeeper-3.4.3-1.el6.noarch.rpm +md5 = 40295fd03e32a767acda161dca3a04db + diff --git a/build/package_configs/redhatenterpriselinuxserver70/icehouse/depends_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/icehouse/depends_packages.cfg index ee3ae10dd..6b635e8ca 100755 --- a/build/package_configs/redhatenterpriselinuxserver70/icehouse/depends_packages.cfg +++ b/build/package_configs/redhatenterpriselinuxserver70/icehouse/depends_packages.cfg @@ -522,9 +522,9 @@ md5 = 6d3ce91813d113b5a8f01782f818dc0e file = jbigkit-libs-2.0-11.el7.x86_64.rpm md5 = b529406534f53b01137b43aff7d17791 -[kafka-2.10-0.9.0.0_SNAPSHOT] -file = kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7.x86_64.rpm -md5 = 3b0864872aaa91690cde2829e1d55637 +[kafka-2.11-0.9.0.1.0contrail0.el7] +file = kafka-2.11-0.9.0.1.0contrail0.el7.x86_64.rpm +md5 = 9514e5bd9f7a7f02a3ca0c2642430973 package_type = contrail-install-packages [keepalived] @@ -869,6 +869,10 @@ md5 = 42b0726657d3b51c58064e16682d6d07 file = lsscsi-0.27-3.el7.x86_64.rpm md5 = bdb62a06fa951044059101c4cf949f44 +[lz4-r131-2.el7ost] +file = lz4-r131-2.el7ost.x86_64.rpm +md5 = 0848f8332e2781a76ef8233bc4aeee57 + [lzop_1.03_10.el7] file = lzop-1.03-10.el7.x86_64.rpm md5 = 0242ebbaa2b6f41570ae2ae12157bd60 diff --git a/build/package_configs/redhatenterpriselinuxserver70/juno/contrail_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/juno/contrail_packages.cfg index a41646fb8..9c3493629 100755 --- a/build/package_configs/redhatenterpriselinuxserver70/juno/contrail_packages.cfg +++ b/build/package_configs/redhatenterpriselinuxserver70/juno/contrail_packages.cfg @@ -31,10 +31,18 @@ pkgs = contrail-analytics, contrail-config, contrail-control, contrail-lib, python-opencontrail-vrouter-netns, contrail-docs makeloc = tools/packaging/common/rpm +[contrail-heat] +pkgs = contrail-heat +makeloc = tools/packaging/common/rpm + [contrail-dns] pkgs = contrail-dns makeloc = tools/packaging/common/rpm +[contrail-database-common] +pkgs = contrail-database-common +makeloc = tools/packaging/common/rpm + [contrail-interface-name] pkgs = contrail-interface-name makeloc = tools/packaging/common/rpm diff --git a/build/package_configs/redhatenterpriselinuxserver70/juno/depends_contrail_thirdparty_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/juno/depends_contrail_thirdparty_packages.cfg index 10df20525..71fdd3b99 100644 --- a/build/package_configs/redhatenterpriselinuxserver70/juno/depends_contrail_thirdparty_packages.cfg +++ b/build/package_configs/redhatenterpriselinuxserver70/juno/depends_contrail_thirdparty_packages.cfg @@ -38,9 +38,9 @@ file = authbind-2.1.1-0.x86_64.rpm md5 = f573f94b5333c87b3154b024de259e97 source = repo:contrail-thirdparty -[bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.el6] -file = bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.el6.noarch.rpm -md5 = 4a02c32568bde3d6c74257f925de491a +[bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.0contrail0] +file = bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.0contrail0.el7.noarch.rpm +md5 = 8393709399f34314cff63ec57aaa0f39 source = repo:contrail-thirdparty [cassandra-cpp-driver-2.2.0-1.el7.centos] @@ -73,14 +73,14 @@ file = hc-httpcore-4.1-1.jpp6.noarch.rpm md5 = 65d9fbf17070841708643f7eaa000071 source = repo:contrail-thirdparty -[ifmap-server-0.3.2-2contrail.el7] -file = ifmap-server-0.3.2-2contrail.el7.noarch.rpm -md5 = 3f89792cf3d8a781e7e38f17e5b2e6f6 +[ifmap-server-0.3.2-5contrail.el7] +file = ifmap-server-0.3.2-5contrail.el7.noarch.rpm +md5 = f8750c8538a7d41e45eed82772ce7f44 source = repo:contrail-thirdparty -[kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7] -file = kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7.x86_64.rpm -md5 = 3b0864872aaa91690cde2829e1d55637 +[kafka-2.11-0.9.0.1.0contrail0.el7] +file = kafka-2.11-0.9.0.1.0contrail0.el7.x86_64.rpm +md5 = 9514e5bd9f7a7f02a3ca0c2642430973 source = repo:contrail-thirdparty [librdkafka-devel-0.8.5-2.0contrail0.el7.centos] @@ -98,11 +98,34 @@ file = libuv-1.7.5-1.el7.centos.x86_64.rpm md5 = 51db754e423fe425d09ed114d5ddd625 source = repo:contrail-thirdparty +# This package is rebuilt by contrail without any patches +# 0contrail0 was not added to maintain dependency chain +# with net-snmp-libs which is coming from RHEL repos. +[net-snmp-python-5.7.2-24] +file = net-snmp-python-5.7.2-24.el7.x86_64.rpm +md5 = 8e9b3d7966982c0f16f616a2f3a065c7 +source = repo:contrail-thirdparty + +[net-snmp-python-5.7.2-24.el7_2.1] +file = net-snmp-python-5.7.2-24.el7_2.1.x86_64.rpm +md5 = 95ceda3dbe0d2a19272c66fd5863de84 +source = repo:contrail-thirdparty + +[net-snmp-python-5.7.2-24.el7_3.2] +file = net-snmp-python-5.7.2-24.el7_3.2.x86_64.rpm +md5 = 6c8ff6ef0da47512090dccdbe69e422e +source = repo:contrail-thirdparty + [nodejs-0.10.35-1contrail.el7] file = nodejs-0.10.35-1contrail.el7.x86_64.rpm md5 = 788131e83c0dc24b64f5623c9c11e7f4 source = repo:contrail-thirdparty +[protobuf-2.5.0-8.0contrail0.el7] +file = protobuf-2.5.0-8.0contrail0.el7.x86_64.rpm +md5 = f71a8bf8459344a3a3328277b509f07c +source = repo:contrail-thirdparty + [python-bitarray-0.8.0-0contrail.el7] file = python-bitarray-0.8.0-0contrail.el7.x86_64.rpm md5 = d1330f60ab5e7b9102da9706345f671d @@ -118,9 +141,14 @@ file = python-bottle-0.11.6-0contrail.el7.noarch.rpm md5 = 3fa8a2c1b303252e21a08f78cb4b8b18 source = repo:contrail-thirdparty -[python-Fabric-1.7.5-1.1contrail0] -file = python-Fabric-1.7.5-1.1contrail0.noarch.rpm -md5 = 67ccac8fb4b7add866d274e878f036ad +[python-Fabric-1.7.5-1.2contrail0] +file = python-Fabric-1.7.5-1.2contrail0.noarch.rpm +md5 = 8d9a0f9be5cdeac0f5c43cce5eeb5333 +source = repo:contrail-thirdparty + +[python-gevent-1.1rc5-1contrail1.el7] +file = python-gevent-1.1rc5-1contrail1.el7.x86_64.rpm +md5 = 12df53d0eaf9e46f239ecf665dfc6ee1 source = repo:contrail-thirdparty [python-geventhttpclient-1.0a-0contrail.el7] @@ -133,6 +161,11 @@ file = python-jsonpickle-0.3.1-2.1.el7.noarch.rpm md5 = b8686001c5202e5ee4eb25230dd7ba1d source = repo:contrail-thirdparty +[python-kafka-1.0.1-0contrail0.el7.noarch] +file = python-kafka-1.0.1-0contrail0.el7.noarch.rpm +md5 = ac166cc3e5fd6d5f44f3070443f2ef26 +source = repo:contrail-thirdparty + [python-kafka-python-0.9.4-1.1] file = python-kafka-python-0.9.4-1.1.noarch.rpm md5 = d6901cbe82f61880ba7c741f65e68fb3 @@ -143,6 +176,11 @@ file = python-kazoo-1.3.1-1.1contrail2.el7.noarch.rpm md5 = 2e8af639466a04468a0be23b3bdb2e2d source = repo:contrail-thirdparty +[python-meld3-0.6.10-1.0contrail0.el7] +file = python-meld3-0.6.10-1.0contrail0.el7.x86_64.rpm +md5 = 3fd0c187bcd1ba88f0118377509db8f1 +source = repo:contrail-thirdparty + [python-ncclient-0.3.2-1.1contrail0.el7] file = python-ncclient-0.3.2-1.1contrail0.el7.noarch.rpm md5 = 6a803d6a3635b2fec925e85413fa4abd @@ -163,6 +201,11 @@ file = python-requests-2.6.0-1.1contrail1.el7.noarch.rpm md5 = 6316c0ae19e6063c0c4af8aee36e501f source = repo:contrail-thirdparty +[python-sseclient-0.0.11-0contrail0] +file = python-sseclient-0.0.11-0contrail0.el7.noarch.rpm +md5 = 6459fb0be6021030504a9509649c796c +source = repo:contrail-thirdparty + [python-thrift-0.9.1-0contrail.el7] file = python-thrift-0.9.1-0contrail.el7.x86_64.rpm md5 = 8a57025dfd403b8f719a83012f7d7b4a @@ -178,9 +221,14 @@ file = redis-py-0.1-2contrail.el7.noarch.rpm md5 = 7c402a8bd07a9d54c4a7193fabc71fd1 source = repo:contrail-thirdparty -[tunctl-1.5-3.el6] -file = tunctl-1.5-3.el6.x86_64.rpm -md5 = 5bd82e4f47b1e0fc7843de49c7afa5f1 +[supervisor-3.1.3-3.0contrail0] +file = supervisor-3.1.3-3.0contrail0.el7.noarch.rpm +md5 = 4bd387048a2481335bb8e06eb6e67a23 +source = repo:contrail-thirdparty + +[tunctl-1.5-3.0contrail0] +file = tunctl-1.5-3.0contrail0.el7.x86_64.rpm +md5 = fbed8bd27e02819302ee70c0c93e1599 source = repo:contrail-thirdparty [xmltodict-0.7.0-0contrail.el7] @@ -188,7 +236,17 @@ file = xmltodict-0.7.0-0contrail.el7.noarch.rpm md5 = dc1d4fe49d51c5d80597dfe51502de26 source = repo:contrail-thirdparty +[yum-plugin-priorities-1.1.31-34.0contrail0.el7] +file = yum-plugin-priorities-1.1.31-34.0contrail0.el7.noarch.rpm +md5 = fc1ef2ce549792d9b7e63690b00bcfe4 +source = repo:contrail-thirdparty + [zookeeper-3.4.3-1.el6] file = zookeeper-3.4.3-1.el6.noarch.rpm md5 = 40295fd03e32a767acda161dca3a04db source = repo:contrail-thirdparty + +[libzookeeper-3.4.8-0contrail0] +file = libzookeeper-3.4.8-0contrail0.x86_64.rpm +md5 = 1b6e8a2b7281fca88d6666f026ffd0b2 +source = repo:contrail-thirdparty diff --git a/build/package_configs/redhatenterpriselinuxserver70/juno/depends_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/juno/depends_packages.cfg index c8cd3090b..1f39b2915 100644 --- a/build/package_configs/redhatenterpriselinuxserver70/juno/depends_packages.cfg +++ b/build/package_configs/redhatenterpriselinuxserver70/juno/depends_packages.cfg @@ -993,9 +993,24 @@ file = keepalived-1.2.13-7.el7.x86_64.rpm md5 = aa83c136da4f1c6a9e057dbb1a622ec5 source = repo:rhel-7-server-rpms -[kernel-headers-3.10.0-229.el7] -file = kernel-headers-3.10.0-229.el7.x86_64.rpm -md5 = d4ccc6b3552872af2abed6eeba05ecd0 +[kernel-3.10.0-327.10.1.el7] +file = kernel-3.10.0-327.10.1.el7.x86_64.rpm +md5 = bef1a8fd818ffee12dbbe62dcdcac9dc +source = repo:rhel-7-server-rpms + +[kernel-headers-3.10.0-327.10.1.el7] +file = kernel-headers-3.10.0-327.10.1.el7.x86_64.rpm +md5 = c08d07da805d4a3871a7c417af39720e +source = repo:rhel-7-server-rpms + +[kernel-tools-3.10.0-327.10.1.el7] +file = kernel-tools-3.10.0-327.10.1.el7.x86_64.rpm +md5 = 4438f88d14af3057e37f91ef23f4a44f +source = repo:rhel-7-server-rpms + +[kernel-tools-libs-3.10.0-327.10.1.el7] +file = kernel-tools-libs-3.10.0-327.10.1.el7.x86_64.rpm +md5 = 1d8481db2479f1ec1f7a8d6e847af4b9 source = repo:rhel-7-server-rpms [kexec-tools-2.0.7-38.el7] @@ -1348,11 +1363,6 @@ file = libproxy-0.4.11-8.el7.x86_64.rpm md5 = 6e8fb0782c126c550531caa9c0440dd0 source = repo:rhel-7-server-rpms -[librabbitmq-0.5.2-1.el7] -file = librabbitmq-0.5.2-1.el7.x86_64.rpm -md5 = 0eee1d2843b46a8bb5c079079729a6ae -source = repo:rhel7-required-but-missing - [librados2-0.80.7-3.el7] file = librados2-0.80.7-3.el7.x86_64.rpm md5 = ae0641248570628451642dda1c2aa4f2 @@ -1633,6 +1643,11 @@ file = lvm2-libs-2.02.130-5.el7.x86_64.rpm md5 = 4193326d0725497c00d6977246e55bd2 source = repo:rhel-7-server-rpms +[lz4-r131-2.el7ost] +file = lz4-r131-2.el7ost.x86_64.rpm +md5 = 0848f8332e2781a76ef8233bc4aeee57 +source = repo:rhel-7-server-rpms + [lzo-2.06-8.el7] file = lzo-2.06-8.el7.x86_64.rpm md5 = 363aafdbe35d1a7c73097feb03b51076 @@ -1723,15 +1738,30 @@ file = net-snmp-agent-libs-5.7.2-24.el7.x86_64.rpm md5 = 738739fe0b01ce31ae85514067271c10 source = repo:rhel-7-server-rpms +[net-snmp-agent-libs-5.7.2-24.el7_2.1] +file = net-snmp-agent-libs-5.7.2-24.el7_2.1.x86_64.rpm +md5 = b84013da8524dde40d9a8035f0d39af1 +source = repo:rhel-7-server-rpms + +[net-snmp-agent-libs-5.7.2-24.el7_3.2] +file = net-snmp-agent-libs-5.7.2-24.el7_3.2.x86_64.rpm +md5 = f70edbd7019cf21e1db8c86f1c1637de +source = repo:rhel-7-server-rpms + [net-snmp-libs-5.7.2-24.el7] file = net-snmp-libs-5.7.2-24.el7.x86_64.rpm md5 = fbe45fcbb7624ae4659854ea02a6a866 source = repo:rhel-7-server-rpms -[net-snmp-python-5.7.2-24.el7] -file = net-snmp-python-5.7.2-24.el7.x86_64.rpm -md5 = a15eb304ced739ecbee1ae378c21c0cd -source = repo:rhel-7-server-optional-rpms +[net-snmp-libs-5.7.2-24.el7_2.1] +file = net-snmp-libs-5.7.2-24.el7_2.1.x86_64.rpm +md5 = 4607fbd8e24d9df6868253bfb3fac6e4 +source = repo:rhel-7-server-rpms + +[net-snmp-libs-5.7.2-24.el7_3.2] +file = net-snmp-libs-5.7.2-24.el7_3.2.x86_64.rpm +md5 = f632a5d46a388476b7ebad80ddcfd293 +source = repo:rhel-7-server-rpms [netcf-libs-0.2.8-1.el7] file = netcf-libs-0.2.8-1.el7.x86_64.rpm @@ -2223,11 +2253,6 @@ file = poppler-data-0.4.6-3.el7.noarch.rpm md5 = aab1e290d6463e5d1e8bc0e610cddf40 source = repo:rhel-7-server-rpms -[protobuf-2.5.0-8.el7] -file = protobuf-2.5.0-8.el7.x86_64.rpm -md5 = 5e48bfea04e4d61d18a5136aa04d581a -source = repo:rhel-7-server-optional-rpms - [psmisc-22.20-9.el7] file = psmisc-22.20-9.el7.x86_64.rpm md5 = 0fd393a596edf4f886a8bd8973a8525b @@ -2363,11 +2388,6 @@ file = python-futures-2.1.6-1.el7ost.noarch.rpm md5 = b96cd89a4060b2e1e7544dc4452d4543 source = repo:rhel-7-server-openstack-7.0-rpms -[python-gevent-1.0-2.el7] -file = python-gevent-1.0-2.el7.x86_64.rpm -md5 = 4e2922218d4224fa3c30eb2ba2571300 -source = repo:rhel-7-server-extras-rpms - [python-glanceclient-0.14.2-2.el7ost] file = python-glanceclient-0.14.2-2.el7ost.noarch.rpm md5 = c5ccea19520db569d47334af77848d42 @@ -2493,11 +2513,6 @@ file = python-markupsafe-0.11-10.el7.x86_64.rpm md5 = 2765df306e0ab0b96120331c6f99f4f6 source = repo:rhel-7-server-rpms -[python-meld3-0.6.10-1.el7cp] -file = python-meld3-0.6.10-1.el7cp.x86_64.rpm -md5 = b2300f9d679736a15affb947a92bd249 -source = repo:rhel7-required-but-missing - [python-memcached-1.48-4.el7] file = python-memcached-1.48-4.el7.noarch.rpm md5 = 8e90470cb63b2ac23a163085685778cd @@ -2983,11 +2998,6 @@ file = supermin5-5.1.10-1.2.el7.x86_64.rpm md5 = 7409f58bdfb7a798e329588ab57219f4 source = repo:rhel-7-server-rpms -[supervisor-3.0-2.el7cp] -file = supervisor-3.0-2.el7cp.noarch.rpm -md5 = 7fcd029d36655546d52673f2098abcb1 -source = repo:rhel7-required-but-missing - [syslinux-4.05-12.el7] file = syslinux-4.05-12.el7.x86_64.rpm md5 = 0ba98d85678eb8d35d67aaff5536a669 diff --git a/build/package_configs/redhatenterpriselinuxserver70/juno/depends_packages.cfg.moved b/build/package_configs/redhatenterpriselinuxserver70/juno/depends_packages.cfg.moved index 58653d8ff..ca50632a9 100755 --- a/build/package_configs/redhatenterpriselinuxserver70/juno/depends_packages.cfg.moved +++ b/build/package_configs/redhatenterpriselinuxserver70/juno/depends_packages.cfg.moved @@ -781,9 +781,9 @@ md5 = b529406534f53b01137b43aff7d17791 file = json-c-0.11-4.el7_0.x86_64.rpm md5 = 31736cbc9ff03d3600f286be1fabb540 -[kafka-2.10-0.9.0.0_SNAPSHOT] -file = kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7.x86_64.rpm -md5 = 3b0864872aaa91690cde2829e1d55637 +[kafka-2.11-0.9.0.1.0contrail0.el7] +file = kafka-2.11-0.9.0.1.0contrail0.el7.x86_64.rpm +md5 = 9514e5bd9f7a7f02a3ca0c2642430973 package_type = contrail-install-packages [kbd-legacy_1.15.5_11.el7] @@ -2081,6 +2081,11 @@ md5 = 326143409019965bed1bef2d6e8b8fa0 file = python-jsonschema-2.3.0-1.el7ost.noarch.rpm md5 = 7dcee27a91bf51c999f2f0c3df71ce7d +[python-kafka-1.0.1-0contrail0.el7.noarch] +file = python-kafka-1.0.1-0contrail0.el7.noarch.rpm +md5 = ac166cc3e5fd6d5f44f3070443f2ef26 +package_type = contrail-install-packages + [python-kafka-python-0.9.4-1.1.noarch] file = python-kafka-python-0.9.4-1.1.noarch.rpm md5 = d6901cbe82f61880ba7c741f65e68fb3 @@ -2339,6 +2344,11 @@ md5 = 0f28e4f50f87c0213280819e1890daf0 file = python-stevedore-1.1.0-1.el7ost.noarch.rpm md5 = 08d0420ed56388d1dff52b699d2cbc0e +[python-sseclient-0.0.11-0contrail0] +file = python-sseclient-0.0.11-0contrail0.el7.noarch.rpm +md5 = 6459fb0be6021030504a9509649c796c +package_type = contrail-install-packages + [python-suds_0.4.1_5.el7] file = python-suds-0.4.1-5.el7.noarch.rpm md5 = 082b27c1bb25bd7e0454251c5f11bb13 diff --git a/build/package_configs/redhatenterpriselinuxserver70/kilo/contrail_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/kilo/contrail_packages.cfg index a41646fb8..9c3493629 100755 --- a/build/package_configs/redhatenterpriselinuxserver70/kilo/contrail_packages.cfg +++ b/build/package_configs/redhatenterpriselinuxserver70/kilo/contrail_packages.cfg @@ -31,10 +31,18 @@ pkgs = contrail-analytics, contrail-config, contrail-control, contrail-lib, python-opencontrail-vrouter-netns, contrail-docs makeloc = tools/packaging/common/rpm +[contrail-heat] +pkgs = contrail-heat +makeloc = tools/packaging/common/rpm + [contrail-dns] pkgs = contrail-dns makeloc = tools/packaging/common/rpm +[contrail-database-common] +pkgs = contrail-database-common +makeloc = tools/packaging/common/rpm + [contrail-interface-name] pkgs = contrail-interface-name makeloc = tools/packaging/common/rpm diff --git a/build/package_configs/redhatenterpriselinuxserver70/kilo/depends_contrail_thirdparty_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/kilo/depends_contrail_thirdparty_packages.cfg index e55b6d151..89e95e2e7 100644 --- a/build/package_configs/redhatenterpriselinuxserver70/kilo/depends_contrail_thirdparty_packages.cfg +++ b/build/package_configs/redhatenterpriselinuxserver70/kilo/depends_contrail_thirdparty_packages.cfg @@ -38,9 +38,9 @@ file = authbind-2.1.1-0.x86_64.rpm md5 = f573f94b5333c87b3154b024de259e97 source = repo:contrail-thirdparty -[bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.el6] -file = bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.el6.noarch.rpm -md5 = 4a02c32568bde3d6c74257f925de491a +[bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.0contrail0] +file = bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.0contrail0.el7.noarch.rpm +md5 = 8393709399f34314cff63ec57aaa0f39 source = repo:contrail-thirdparty [cassandra20-2.0.17-1.noarch.rpm] @@ -74,14 +74,14 @@ file = hc-httpcore-4.1-1.jpp6.noarch.rpm md5 = 65d9fbf17070841708643f7eaa000071 source = repo:contrail-thirdparty -[ifmap-server-0.3.2-2contrail.el7] -file = ifmap-server-0.3.2-2contrail.el7.noarch.rpm -md5 = 3f89792cf3d8a781e7e38f17e5b2e6f6 +[ifmap-server-0.3.2-5contrail.el7] +file = ifmap-server-0.3.2-5contrail.el7.noarch.rpm +md5 = f8750c8538a7d41e45eed82772ce7f44 source = repo:contrail-thirdparty -[kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7] -file = kafka-2.10-0.9.0.0_SNAPSHOT.0contrail0.el7.x86_64.rpm -md5 = 3b0864872aaa91690cde2829e1d55637 +[kafka-2.11-0.9.0.1.0contrail0.el7] +file = kafka-2.11-0.9.0.1.0contrail0.el7.x86_64.rpm +md5 = 9514e5bd9f7a7f02a3ca0c2642430973 source = repo:contrail-thirdparty [librdkafka-devel-0.8.5-2.0contrail0.el7.centos] @@ -99,11 +99,34 @@ file = libuv-1.7.5-1.el7.centos.x86_64.rpm md5 = 51db754e423fe425d09ed114d5ddd625 source = repo:contrail-thirdparty +# This package is rebuilt by contrail without any patches +# 0contrail0 was not added to maintain dependency chain +# with net-snmp-libs which is coming from RHEL repos. +[net-snmp-python-5.7.2-24] +file = net-snmp-python-5.7.2-24.el7.x86_64.rpm +md5 = 8e9b3d7966982c0f16f616a2f3a065c7 +source = repo:contrail-thirdparty + +[net-snmp-python-5.7.2-24.el7_2.1] +file = net-snmp-python-5.7.2-24.el7_2.1.x86_64.rpm +md5 = 95ceda3dbe0d2a19272c66fd5863de84 +source = repo:contrail-thirdparty + +[net-snmp-python-5.7.2-24.el7_3.2] +file = net-snmp-python-5.7.2-24.el7_3.2.x86_64.rpm +md5 = 6c8ff6ef0da47512090dccdbe69e422e +source = repo:contrail-thirdparty + [nodejs-0.10.35-1contrail.el7] file = nodejs-0.10.35-1contrail.el7.x86_64.rpm md5 = 788131e83c0dc24b64f5623c9c11e7f4 source = repo:contrail-thirdparty +[protobuf-2.5.0-8.0contrail0.el7] +file = protobuf-2.5.0-8.0contrail0.el7.x86_64.rpm +md5 = f71a8bf8459344a3a3328277b509f07c +source = repo:contrail-thirdparty + [python-bitarray-0.8.0-0contrail.el7] file = python-bitarray-0.8.0-0contrail.el7.x86_64.rpm md5 = d1330f60ab5e7b9102da9706345f671d @@ -124,9 +147,14 @@ file = python-cassandra-driver-3.0.0-0contrail2.el7.x86_64.rpm md5 = 893a2e365ea8b27614760c723b9a5c89 source = repo:contrail-thirdparty -[python-Fabric-1.7.5-1.1contrail0] -file = python-Fabric-1.7.5-1.1contrail0.noarch.rpm -md5 = 67ccac8fb4b7add866d274e878f036ad +[python-Fabric-1.7.5-1.2contrail0] +file = python-Fabric-1.7.5-1.2contrail0.noarch.rpm +md5 = 8d9a0f9be5cdeac0f5c43cce5eeb5333 +source = repo:contrail-thirdparty + +[python-gevent-1.1rc5-1contrail1.el7] +file = python-gevent-1.1rc5-1contrail1.el7.x86_64.rpm +md5 = 12df53d0eaf9e46f239ecf665dfc6ee1 source = repo:contrail-thirdparty [python-geventhttpclient-1.0a-0contrail.el7] @@ -139,6 +167,11 @@ file = python-jsonpickle-0.3.1-2.1.el7.noarch.rpm md5 = b8686001c5202e5ee4eb25230dd7ba1d source = repo:contrail-thirdparty +[python-kafka-1.0.1-0contrail0.el7.noarch] +file = python-kafka-1.0.1-0contrail0.el7.noarch.rpm +md5 = ac166cc3e5fd6d5f44f3070443f2ef26 +source = repo:contrail-thirdparty + [python-kafka-python-0.9.4-1.1.noarch] file = python-kafka-python-0.9.4-1.1.noarch.rpm md5 = d6901cbe82f61880ba7c741f65e68fb3 @@ -149,6 +182,11 @@ file = python-kazoo-1.3.1-1.1contrail2.el7.noarch.rpm md5 = 2e8af639466a04468a0be23b3bdb2e2d source = repo:contrail-thirdparty +[python-meld3-0.6.10-1.0contrail0.el7] +file = python-meld3-0.6.10-1.0contrail0.el7.x86_64.rpm +md5 = 3fd0c187bcd1ba88f0118377509db8f1 +source = repo:contrail-thirdparty + [python-ncclient-0.3.2-1.0contrail0.el7] file = python-ncclient-0.3.2-1.0contrail0.el7.noarch.rpm md5 = d8abaea02f24939f15fe118d5238c851 @@ -169,6 +207,11 @@ file = python-requests-2.6.0-1.1contrail1.el7.noarch.rpm md5 = 6316c0ae19e6063c0c4af8aee36e501f source = repo:contrail-thirdparty +[python-sseclient-0.0.11-0contrail0] +file = python-sseclient-0.0.11-0contrail0.el7.noarch.rpm +md5 = 6459fb0be6021030504a9509649c796c +source = repo:contrail-thirdparty + [python-thrift-0.9.1-0contrail.el7] file = python-thrift-0.9.1-0contrail.el7.x86_64.rpm md5 = 8a57025dfd403b8f719a83012f7d7b4a @@ -184,9 +227,14 @@ file = redis-py-0.1-2contrail.el7.noarch.rpm md5 = 7c402a8bd07a9d54c4a7193fabc71fd1 source = repo:contrail-thirdparty -[tunctl-1.5-3.el6] -file = tunctl-1.5-3.el6.x86_64.rpm -md5 = 5bd82e4f47b1e0fc7843de49c7afa5f1 +[supervisor-3.1.3-3.0contrail0] +file = supervisor-3.1.3-3.0contrail0.el7.noarch.rpm +md5 = 4bd387048a2481335bb8e06eb6e67a23 +source = repo:contrail-thirdparty + +[tunctl-1.5-3.0contrail0] +file = tunctl-1.5-3.0contrail0.el7.x86_64.rpm +md5 = fbed8bd27e02819302ee70c0c93e1599 source = repo:contrail-thirdparty [xmltodict-0.7.0-0contrail.el7] @@ -194,7 +242,17 @@ file = xmltodict-0.7.0-0contrail.el7.noarch.rpm md5 = dc1d4fe49d51c5d80597dfe51502de26 source = repo:contrail-thirdparty +[yum-plugin-priorities-1.1.31-34.0contrail0.el7] +file = yum-plugin-priorities-1.1.31-34.0contrail0.el7.noarch.rpm +md5 = fc1ef2ce549792d9b7e63690b00bcfe4 +source = repo:contrail-thirdparty + [zookeeper-3.4.3-1.el6] file = zookeeper-3.4.3-1.el6.noarch.rpm md5 = 40295fd03e32a767acda161dca3a04db source = repo:contrail-thirdparty + +[libzookeeper-3.4.8-0contrail0] +file = libzookeeper-3.4.8-0contrail0.x86_64.rpm +md5 = 1b6e8a2b7281fca88d6666f026ffd0b2 +source = repo:contrail-thirdparty diff --git a/build/package_configs/redhatenterpriselinuxserver70/kilo/depends_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/kilo/depends_packages.cfg index 82d9e8d27..2f996b4a8 100755 --- a/build/package_configs/redhatenterpriselinuxserver70/kilo/depends_packages.cfg +++ b/build/package_configs/redhatenterpriselinuxserver70/kilo/depends_packages.cfg @@ -1003,9 +1003,24 @@ file = keepalived-1.2.13-7.el7.x86_64.rpm md5 = aa83c136da4f1c6a9e057dbb1a622ec5 source = repo:rhel-7-server-rpms -[kernel-headers-3.10.0-229.el7] -file = kernel-headers-3.10.0-229.el7.x86_64.rpm -md5 = d4ccc6b3552872af2abed6eeba05ecd0 +[kernel-3.10.0-327.10.1.el7] +file = kernel-3.10.0-327.10.1.el7.x86_64.rpm +md5 = bef1a8fd818ffee12dbbe62dcdcac9dc +source = repo:rhel-7-server-rpms + +[kernel-headers-3.10.0-327.10.1.el7] +file = kernel-headers-3.10.0-327.10.1.el7.x86_64.rpm +md5 = c08d07da805d4a3871a7c417af39720e +source = repo:rhel-7-server-rpms + +[kernel-tools-3.10.0-327.10.1.el7] +file = kernel-tools-3.10.0-327.10.1.el7.x86_64.rpm +md5 = 4438f88d14af3057e37f91ef23f4a44f +source = repo:rhel-7-server-rpms + +[kernel-tools-libs-3.10.0-327.10.1.el7] +file = kernel-tools-libs-3.10.0-327.10.1.el7.x86_64.rpm +md5 = 1d8481db2479f1ec1f7a8d6e847af4b9 source = repo:rhel-7-server-rpms [kexec-tools-2.0.7-38.el7] @@ -1643,6 +1658,11 @@ file = lvm2-libs-2.02.130-5.el7.x86_64.rpm md5 = 4193326d0725497c00d6977246e55bd2 source = repo:rhel-7-server-rpms +[lz4-r131-2.el7ost] +file = lz4-r131-2.el7ost.x86_64.rpm +md5 = 0848f8332e2781a76ef8233bc4aeee57 +source = repo:rhel-7-server-rpms + [lzo-2.06-8.el7] file = lzo-2.06-8.el7.x86_64.rpm md5 = 363aafdbe35d1a7c73097feb03b51076 @@ -1738,15 +1758,30 @@ file = net-snmp-agent-libs-5.7.2-24.el7.x86_64.rpm md5 = 738739fe0b01ce31ae85514067271c10 source = repo:rhel-7-server-rpms +[net-snmp-agent-libs-5.7.2-24.el7_2.1] +file = net-snmp-agent-libs-5.7.2-24.el7_2.1.x86_64.rpm +md5 = b84013da8524dde40d9a8035f0d39af1 +source = repo:rhel-7-server-rpms + +[net-snmp-agent-libs-5.7.2-24.el7_3.2] +file = net-snmp-agent-libs-5.7.2-24.el7_3.2.x86_64.rpm +md5 = f70edbd7019cf21e1db8c86f1c1637de +source = repo:rhel-7-server-rpms + [net-snmp-libs-5.7.2-24.el7] file = net-snmp-libs-5.7.2-24.el7.x86_64.rpm md5 = fbe45fcbb7624ae4659854ea02a6a866 source = repo:rhel-7-server-rpms -[net-snmp-python-5.7.2-24.el7] -file = net-snmp-python-5.7.2-24.el7.x86_64.rpm -md5 = a15eb304ced739ecbee1ae378c21c0cd -source = repo:rhel-7-server-optional-rpms +[net-snmp-libs-5.7.2-24.el7_2.1] +file = net-snmp-libs-5.7.2-24.el7_2.1.x86_64.rpm +md5 = 4607fbd8e24d9df6868253bfb3fac6e4 +source = repo:rhel-7-server-rpms + +[net-snmp-libs-5.7.2-24.el7_3.2] +file = net-snmp-libs-5.7.2-24.el7_3.2.x86_64.rpm +md5 = f632a5d46a388476b7ebad80ddcfd293 +source = repo:rhel-7-server-rpms [netcf-libs-0.2.8-1.el7] file = netcf-libs-0.2.8-1.el7.x86_64.rpm @@ -2243,11 +2278,6 @@ file = poppler-data-0.4.6-3.el7.noarch.rpm md5 = aab1e290d6463e5d1e8bc0e610cddf40 source = repo:rhel-7-server-rpms -[protobuf-2.5.0-8.el7] -file = protobuf-2.5.0-8.el7.x86_64.rpm -md5 = 5e48bfea04e4d61d18a5136aa04d581a -source = repo:rhel-7-server-optional-rpms - [psmisc-22.20-9.el7] file = psmisc-22.20-9.el7.x86_64.rpm md5 = 0fd393a596edf4f886a8bd8973a8525b @@ -2418,11 +2448,6 @@ file = python-futures-2.1.6-1.el7ost.noarch.rpm md5 = b96cd89a4060b2e1e7544dc4452d4543 source = repo:rhel-7-server-openstack-7.0-rpms -[python-gevent-1.0-2.el7] -file = python-gevent-1.0-2.el7.x86_64.rpm -md5 = 4e2922218d4224fa3c30eb2ba2571300 -source = repo:rhel-7-server-extras-rpms - [python-glanceclient-0.17.0-2.el7ost] file = python-glanceclient-0.17.0-2.el7ost.noarch.rpm md5 = bb986f411085464916ab33b08a2c853e @@ -2563,11 +2588,6 @@ file = python-markupsafe-0.11-10.el7.x86_64.rpm md5 = 2765df306e0ab0b96120331c6f99f4f6 source = repo:rhel-7-server-rpms -[python-meld3-0.6.10-1.el7cp] -file = python-meld3-0.6.10-1.el7cp.x86_64.rpm -md5 = b2300f9d679736a15affb947a92bd249 -source = repo:rhel7-missing-pkgs - [python-memcached-1.48-4.el7] file = python-memcached-1.48-4.el7.noarch.rpm md5 = 8e90470cb63b2ac23a163085685778cd @@ -3193,11 +3213,6 @@ file = supermin5-5.1.10-1.2.el7.x86_64.rpm md5 = 7409f58bdfb7a798e329588ab57219f4 source = repo:rhel-7-server-rpms -[supervisor-3.0-2.el7cp] -file = supervisor-3.0-2.el7cp.noarch.rpm -md5 = 7fcd029d36655546d52673f2098abcb1 -source = repo:rhel7-missing-pkgs - [syslinux-4.05-12.el7] file = syslinux-4.05-12.el7.x86_64.rpm md5 = 0ba98d85678eb8d35d67aaff5536a669 diff --git a/build/package_configs/redhatenterpriselinuxserver70/liberty/contrail_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/liberty/contrail_packages.cfg new file mode 100755 index 000000000..9c3493629 --- /dev/null +++ b/build/package_configs/redhatenterpriselinuxserver70/liberty/contrail_packages.cfg @@ -0,0 +1,135 @@ +# **************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************** +# Usage: +# [build target name] +# pkgs = # list of packages generated by the make target +# +# pkg_pattern = # pattern to match packages. would be used +# # packager to pick packages from given directory +# +# builtloc = # location where packages are copied after built +# +# makeloc = # location where make command has to issued +# # these path are taken relative to git local repo +# ***************************************************************** + +[DEFAULT] +pkgs = +pkg_pattern = {pkg}-[0-9]*.rpm +builtloc = controller/build/package-build/RPMS/ +target = %(__name__)s +makeloc = +package_type = contrail-install-packages + +[contrail] +pkgs = contrail-analytics, contrail-config, contrail-control, contrail-lib, + contrail-vrouter-agent, contrail-vrouter-source, contrail-vrouter-utils, + python-contrail, python-contrail-vrouter-api, contrail-vrouter, + contrail-config-openstack, contrail-nova-vif, contrail-utils, + python-opencontrail-vrouter-netns, contrail-docs +makeloc = tools/packaging/common/rpm + +[contrail-heat] +pkgs = contrail-heat +makeloc = tools/packaging/common/rpm + +[contrail-dns] +pkgs = contrail-dns +makeloc = tools/packaging/common/rpm + +[contrail-database-common] +pkgs = contrail-database-common +makeloc = tools/packaging/common/rpm + +[contrail-interface-name] +pkgs = contrail-interface-name +makeloc = tools/packaging/common/rpm + +[contrail-setup] +pkgs = contrail-setup +makeloc = tools/packaging/common/rpm + +[contrail-openstack] +pkgs = contrail-openstack +makeloc = tools/packaging/common/rpm + +[contrail-openstack-analytics] +pkgs = contrail-openstack-analytics +makeloc = tools/packaging/common/rpm + +[contrail-openstack-config] +pkgs = contrail-openstack-config +makeloc = tools/packaging/common/rpm + +[contrail-openstack-control] +pkgs = contrail-openstack-control +makeloc = tools/packaging/common/rpm + +[contrail-openstack-database] +pkgs = contrail-openstack-database +makeloc = tools/packaging/common/rpm + +[contrail-openstack-vrouter] +pkgs = contrail-openstack-vrouter +makeloc = tools/packaging/common/rpm + +[contrail-openstack-webui] +pkgs = contrail-openstack-webui +makeloc = tools/packaging/common/rpm + +[contrail-web-core] +pkgs = contrail-web-core +makeloc = tools/packaging/common/rpm + +[contrail-web-controller] +pkgs = contrail-web-controller +makeloc = tools/packaging/common/rpm + +[contrail-database] +pkgs = contrail-database +makeloc = tools/packaging/common/rpm + +[contrail-fabric-utils] +pkgs = contrail-fabric-utils +makeloc = tools/packaging/common/rpm + +[contrail-nodemgr] +pkgs = contrail-nodemgr +makeloc = tools/packaging/common/rpm + +[contrail-vrouter-init] +pkgs = contrail-vrouter-init +makeloc = tools/packaging/common/rpm + +[contrail-vrouter-common] +pkgs = contrail-vrouter-common +makeloc = tools/packaging/common/rpm + +[neutron-plugin-contrail] +pkgs = neutron-plugin-contrail +makeloc = tools/packaging/common/rpm + +[ceilometer-plugin-contrail] +pkgs = ceilometer-plugin-contrail +makeloc = tools/packaging/common/rpm + +[contrail-install-packages] +pkgs = contrail-install-packages +makeloc = tools/packaging/common/rpm + +[contrail-thirdparty-packages] +pkgs = contrail-thirdparty-packages +makeloc = tools/packaging/common/rpm +package_type = contrail-thirdparty-packages + +[contrail-default-target] +pkgs = +makeloc = tools/packaging/common/rpm +target = all + +[openstack-default-target] +pkgs = +makeloc = tools/packaging/openstack/centos_64 +target = all diff --git a/build/package_configs/redhatenterpriselinuxserver70/liberty/depends_contrail_thirdparty_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/liberty/depends_contrail_thirdparty_packages.cfg new file mode 100644 index 000000000..8a5c96258 --- /dev/null +++ b/build/package_configs/redhatenterpriselinuxserver70/liberty/depends_contrail_thirdparty_packages.cfg @@ -0,0 +1,245 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-install-packages +source = + + +[authbind-2.1.1-0] +file = authbind-2.1.1-0.x86_64.rpm +md5 = f573f94b5333c87b3154b024de259e97 +source = repo:contrail-thirdparty + +[bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.0contrail0] +file = bigtop-utils-0.6.0+243-1.cdh4.7.0.p0.17.0contrail0.el7.noarch.rpm +md5 = 8393709399f34314cff63ec57aaa0f39 +source = repo:contrail-thirdparty + +[cassandra-cpp-driver-2.2.0-1.el7.centos] +file = cassandra-cpp-driver-2.2.0-1.el7.centos.x86_64.rpm +md5 = 7b1f66c4fcfdd2e85f981b2c3a12089f +source = repo:datastax + +[cassandra20-2.0.17-1] +file = cassandra20-2.0.17-1.noarch.rpm +md5 = 0adf976fefbcfbaaf0b724a80f68cccc +source = repo:contrail-thirdparty + +[cassandra21-2.1.9-1] +file = cassandra21-2.1.9-1.noarch.rpm +md5 = cae6ad6089fd15df384303b66cab594f +source = repo:contrail-thirdparty + +[consistent_hash-1.0-0contrail0.el7] +file = consistent_hash-1.0-0contrail0.el7.noarch.rpm +md5 = d90efcd375a4b89639f80786d73114e2 +source = repo:contrail-thirdparty + +[euca2ools-1.0-2contrail] +file = euca2ools-1.0-2contrail.x86_64.rpm +md5 = e83decbf4017da6f47696842aa909e13 +source = repo:contrail-thirdparty + +[hc-httpcore-4.1-1.jpp6] +file = hc-httpcore-4.1-1.jpp6.noarch.rpm +md5 = 65d9fbf17070841708643f7eaa000071 +source = repo:contrail-thirdparty + +[ifmap-server-0.3.2-5contrail.el7] +file = ifmap-server-0.3.2-5contrail.el7.noarch.rpm +md5 = f8750c8538a7d41e45eed82772ce7f44 +source = repo:contrail-thirdparty + +[kafka-2.11-0.9.0.1.0contrail0.el7] +file = kafka-2.11-0.9.0.1.0contrail0.el7.x86_64.rpm +md5 = 9514e5bd9f7a7f02a3ca0c2642430973 +source = repo:contrail-thirdparty + +[librdkafka-devel-0.8.5-2.0contrail0.el7.centos] +file = librdkafka-devel-0.8.5-2.0contrail0.el7.centos.x86_64.rpm +md5 = 031fadbf1a27758a9bbdb168b4015842 +source = repo:contrail-thirdparty + +[librdkafka1-0.8.5-2.0contrail0.el7.centos] +file = librdkafka1-0.8.5-2.0contrail0.el7.centos.x86_64.rpm +md5 = 31d466cee10e29c3c5e8811163879828 +source = repo:contrail-thirdparty + +[libuv-1.7.5-1.el7.centos] +file = libuv-1.7.5-1.el7.centos.x86_64.rpm +md5 = 51db754e423fe425d09ed114d5ddd625 +source = repo:contrail-thirdparty + +[libzookeeper-3.4.8-0contrail0] +file = libzookeeper-3.4.8-0contrail0.x86_64.rpm +md5 = 1b6e8a2b7281fca88d6666f026ffd0b2 +source = repo:contrail-thirdparty + +# This package is rebuilt by contrail without any patches +# 0contrail0 was not added to maintain dependency chain +# with net-snmp-libs which is coming from RHEL repos. +[net-snmp-python-5.7.2-24] +file = net-snmp-python-5.7.2-24.el7.x86_64.rpm +md5 = 8e9b3d7966982c0f16f616a2f3a065c7 +source = repo:contrail-thirdparty + +[net-snmp-python-5.7.2-24.el7_2.1] +file = net-snmp-python-5.7.2-24.el7_2.1.x86_64.rpm +md5 = 95ceda3dbe0d2a19272c66fd5863de84 +source = repo:contrail-thirdparty + +[net-snmp-python-5.7.2-24.el7_3.2] +file = net-snmp-python-5.7.2-24.el7_3.2.x86_64.rpm +md5 = 6c8ff6ef0da47512090dccdbe69e422e +source = repo:contrail-thirdparty + +[nodejs-0.10.35-1contrail.el7] +file = nodejs-0.10.35-1contrail.el7.x86_64.rpm +md5 = 788131e83c0dc24b64f5623c9c11e7f4 +source = repo:contrail-thirdparty + +[protobuf-2.5.0-8.0contrail0.el7] +file = protobuf-2.5.0-8.0contrail0.el7.x86_64.rpm +md5 = f71a8bf8459344a3a3328277b509f07c +source = repo:contrail-thirdparty + +[python-Fabric-1.7.5-1.2contrail0] +file = python-Fabric-1.7.5-1.2contrail0.noarch.rpm +md5 = 8d9a0f9be5cdeac0f5c43cce5eeb5333 +source = repo:contrail-thirdparty + +[python-bitarray-0.8.0-0contrail.el7] +file = python-bitarray-0.8.0-0contrail.el7.x86_64.rpm +md5 = d1330f60ab5e7b9102da9706345f671d +source = repo:contrail-thirdparty + +[python-boto-2.12.0-2contrail.el7] +file = python-boto-2.12.0-2contrail.el7.x86_64.rpm +md5 = de2aa10a5958e7f16b7dcbac3d1d952b +source = repo:contrail-thirdparty + +[python-bottle-0.11.6-0contrail.el7] +file = python-bottle-0.11.6-0contrail.el7.noarch.rpm +md5 = 3fa8a2c1b303252e21a08f78cb4b8b18 +source = repo:contrail-thirdparty + +[python-cassandra-driver-3.0.0-0contrail2.el7] +file = python-cassandra-driver-3.0.0-0contrail2.el7.x86_64.rpm +md5 = 893a2e365ea8b27614760c723b9a5c89 +source = repo:contrail-thirdparty + +[python-gevent-1.1rc5-1contrail1.el7] +file = python-gevent-1.1rc5-1contrail1.el7.x86_64.rpm +md5 = 12df53d0eaf9e46f239ecf665dfc6ee1 +source = repo:contrail-thirdparty + +[python-geventhttpclient-1.0a-0contrail.el7] +file = python-geventhttpclient-1.0a-0contrail.el7.x86_64.rpm +md5 = 045388afa560fce0ebdd47bf18bef3b5 +source = repo:contrail-thirdparty + +[python-jsonpickle-0.3.1-2.1.el7] +file = python-jsonpickle-0.3.1-2.1.el7.noarch.rpm +md5 = b8686001c5202e5ee4eb25230dd7ba1d +source = repo:contrail-thirdparty + +[python-kafka-1.0.1-0contrail0.el7.noarch] +file = python-kafka-1.0.1-0contrail0.el7.noarch.rpm +md5 = ac166cc3e5fd6d5f44f3070443f2ef26 +source = repo:contrail-thirdparty + +[python-kazoo-2.2.1-0contrail0.el7.noarch] +file = python-kazoo-2.2.1-0contrail0.el7.noarch.rpm +md5 = c743d3fe343007a74ec05bc0071bee57 +source = repo:contrail-thirdparty + +[python-meld3-0.6.10-1.0contrail0.el7] +file = python-meld3-0.6.10-1.0contrail0.el7.x86_64.rpm +md5 = 3fd0c187bcd1ba88f0118377509db8f1 +source = repo:contrail-thirdparty + +[python-neutronclient-3.1.0-2contrail.el7] +file = python-neutronclient-3.1.0-2contrail.el7.noarch.rpm +md5 = ee3a941980a73e0ae2c3cd24be8e23ab +source = repo:contrail-thirdparty + +[python-pycassa-1.10.0-0contrail.el7] +file = python-pycassa-1.10.0-0contrail.el7.noarch.rpm +md5 = 62641a22f76d2b5a1c030a9e32f8f897 +source = repo:contrail-thirdparty + +[python-requests-2.6.0-1.1contrail1.el7] +file = python-requests-2.6.0-1.1contrail1.el7.noarch.rpm +md5 = 6316c0ae19e6063c0c4af8aee36e501f +source = repo:contrail-thirdparty + +[python-sseclient-0.0.11-0contrail0] +file = python-sseclient-0.0.11-0contrail0.el7.noarch.rpm +md5 = 6459fb0be6021030504a9509649c796c +source = repo:contrail-thirdparty + +[python-thrift-0.9.1-0contrail.el7] +file = python-thrift-0.9.1-0contrail.el7.x86_64.rpm +md5 = 8a57025dfd403b8f719a83012f7d7b4a +source = repo:contrail-thirdparty + +[redis-py-0.1-2contrail.el7] +file = redis-py-0.1-2contrail.el7.noarch.rpm +md5 = 7c402a8bd07a9d54c4a7193fabc71fd1 +source = repo:contrail-thirdparty + +[supervisor-3.1.3-3.0contrail0] +file = supervisor-3.1.3-3.0contrail0.el7.noarch.rpm +md5 = 4bd387048a2481335bb8e06eb6e67a23 +source = repo:contrail-thirdparty + + +[tunctl-1.5-3.0contrail0] +file = tunctl-1.5-3.0contrail0.el7.x86_64.rpm +md5 = fbed8bd27e02819302ee70c0c93e1599 +source = repo:contrail-thirdparty + +[xmltodict-0.7.0-0contrail.el7] +file = xmltodict-0.7.0-0contrail.el7.noarch.rpm +md5 = dc1d4fe49d51c5d80597dfe51502de26 +source = repo:contrail-thirdparty + +[yum-plugin-priorities-1.1.31-34.0contrail0.el7] +file = yum-plugin-priorities-1.1.31-34.0contrail0.el7.noarch.rpm +md5 = fc1ef2ce549792d9b7e63690b00bcfe4 +source = repo:contrail-thirdparty + +[zookeeper-3.4.3-1.el6] +file = zookeeper-3.4.3-1.el6.noarch.rpm +md5 = 40295fd03e32a767acda161dca3a04db +source = repo:contrail-thirdparty diff --git a/build/package_configs/redhatenterpriselinuxserver70/liberty/depends_packages.cfg b/build/package_configs/redhatenterpriselinuxserver70/liberty/depends_packages.cfg new file mode 100644 index 000000000..80ad2bd06 --- /dev/null +++ b/build/package_configs/redhatenterpriselinuxserver70/liberty/depends_packages.cfg @@ -0,0 +1,3497 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-thirdparty-packages +source = + + +[GConf2-3.2.6-8.el7] +file = GConf2-3.2.6-8.el7.x86_64.rpm +md5 = a99da31e18f5febaa39f5f637088b481 +source = repo:rhel-7-server-rpms + +[MySQL-python-1.2.3-11.el7] +file = MySQL-python-1.2.3-11.el7.x86_64.rpm +md5 = 945af998a8cafbd65ec42c69e4b028c9 +source = repo:rhel-7-server-rpms + +[NetworkManager-1.0.6-29.el7_2] +file = NetworkManager-1.0.6-29.el7_2.x86_64.rpm +md5 = a5202dfafa09a60f8af65c02bae500a9 +source = repo:rhel-7-server-rpms + +[NetworkManager-config-server-1.0.6-29.el7_2] +file = NetworkManager-config-server-1.0.6-29.el7_2.x86_64.rpm +md5 = db8d98c39897415e3dcf48bb241a834c +source = repo:rhel-7-server-rpms + +[NetworkManager-libnm-1.0.6-29.el7_2] +file = NetworkManager-libnm-1.0.6-29.el7_2.x86_64.rpm +md5 = 71719e86160efa3ed3171dc0e1bbb2bf +source = repo:rhel-7-server-rpms + +[NetworkManager-team-1.0.6-29.el7_2] +file = NetworkManager-team-1.0.6-29.el7_2.x86_64.rpm +md5 = db25160128f5f1d275ff0dbd46fba114 +source = repo:rhel-7-server-rpms + +[NetworkManager-tui-1.0.6-29.el7_2] +file = NetworkManager-tui-1.0.6-29.el7_2.x86_64.rpm +md5 = 3cea36c9e167950304489c9662c399c0 +source = repo:rhel-7-server-rpms + +[OpenIPMI-modalias-2.0.19-11.el7] +file = OpenIPMI-modalias-2.0.19-11.el7.x86_64.rpm +md5 = d67df67d72872d416dbb160a5513f5aa +source = repo:rhel-7-server-rpms + +[PyPAM-0.5.0-19.el7] +file = PyPAM-0.5.0-19.el7.x86_64.rpm +md5 = e5477e2be118c75b519768148812a153 +source = repo:rhel-7-server-rpms + +[PyYAML-3.10-11.el7] +file = PyYAML-3.10-11.el7.x86_64.rpm +md5 = 7bdc96a2cb0cf85fea8da750074e28bb +source = repo:RH7-RHOS-8.0 + +[Red_Hat_Enterprise_Linux-Release_Notes-7-en-US-7-2.el7] +file = Red_Hat_Enterprise_Linux-Release_Notes-7-en-US-7-2.el7.noarch.rpm +md5 = 49b66c5c8dbc544ea871c82a8149ddde +source = repo:rhel-7-server-rpms + +[abrt-2.1.11-35.el7] +file = abrt-2.1.11-35.el7.x86_64.rpm +md5 = 6d9dd449a7420e5b0176799990ca8ca0 +source = repo:rhel-7-server-rpms + +[abrt-dbus-2.1.11-35.el7] +file = abrt-dbus-2.1.11-35.el7.x86_64.rpm +md5 = 567dae46b9dec08f9389c268890d4156 +source = repo:rhel-7-server-rpms + +[abrt-libs-2.1.11-35.el7] +file = abrt-libs-2.1.11-35.el7.x86_64.rpm +md5 = d9a5cd136b604d0959c77a74a2e7a46c +source = repo:rhel-7-server-rpms + +[abrt-python-2.1.11-35.el7] +file = abrt-python-2.1.11-35.el7.x86_64.rpm +md5 = 9226668a6335c31d6f0fbe15903c95dd +source = repo:rhel-7-server-rpms + +[alsa-tools-firmware-1.0.28-2.el7] +file = alsa-tools-firmware-1.0.28-2.el7.x86_64.rpm +md5 = 97a424ff4377fb7f54afbf45e52acace +source = repo:rhel-7-server-rpms + +[apache-commons-codec-1.8-7.el7] +file = apache-commons-codec-1.8-7.el7.noarch.rpm +md5 = 47992c41daca8f0902669f63c7c24ed2 +source = repo:rhel-7-server-rpms + +[apache-commons-lang-2.6-15.el7] +file = apache-commons-lang-2.6-15.el7.noarch.rpm +md5 = 4646eeb13e7c97d2ca62a453fa03a524 +source = repo:rhel-7-server-rpms + +[apache-commons-logging-1.1.2-7.el7] +file = apache-commons-logging-1.1.2-7.el7.noarch.rpm +md5 = cb9d93b459f37c7d35c589b2c24aa87c +source = repo:rhel-7-server-rpms + +[atk-2.14.0-1.el7] +file = atk-2.14.0-1.el7.x86_64.rpm +md5 = efb1c7f324e6b6d336b61f1d2fdbdb60 +source = repo:rhel-7-server-rpms + +[attr-2.4.46-12.el7] +file = attr-2.4.46-12.el7.x86_64.rpm +md5 = 249edc768179c3bddbf82bc22962b4b5 +source = repo:rhel-7-server-rpms + +[audit-libs-python-2.4.1-5.el7] +file = audit-libs-python-2.4.1-5.el7.x86_64.rpm +md5 = c6623a6d6a05ae926fa4d08e9428c138 +source = repo:rhel-7-server-rpms + +[augeas-libs-1.4.0-2.el7] +file = augeas-libs-1.4.0-2.el7.x86_64.rpm +md5 = 7215ab094c78e5347b39990f27a92886 +source = repo:rhel-7-server-rpms + +[authconfig-6.2.8-10.el7] +file = authconfig-6.2.8-10.el7.x86_64.rpm +md5 = b9700e18ec0aa15d4cb514b1500e3b05 +source = repo:rhel-7-server-rpms + +[avahi-autoipd-0.6.31-15.el7_2.1] +file = avahi-autoipd-0.6.31-15.el7_2.1.x86_64.rpm +md5 = 99d9701e3bcbae711d8f475ff4ec0e5a +source = repo:rhel-7-server-rpms + +[avahi-libs-0.6.31-15.el7_2.1] +file = avahi-libs-0.6.31-15.el7_2.1.x86_64.rpm +md5 = 335086d82c2694657d3dadc23eac9f24 +source = repo:rhel-7-server-rpms + +[avalon-framework-4.3-10.el7] +file = avalon-framework-4.3-10.el7.noarch.rpm +md5 = c34c87ccd5016e293095df9186e2328a +source = repo:rhel-7-server-rpms + +[avalon-logkit-2.1-14.el7] +file = avalon-logkit-2.1-14.el7.noarch.rpm +md5 = a3a9806738405fc7fce9d736b5c71dbd +source = repo:rhel-7-server-rpms + +[bash-4.2.46-19.el7] +file = bash-4.2.46-19.el7.x86_64.rpm +md5 = 49de12447d5a46c2b76f2890098f986c +source = repo:rhel-7-server-rpms + +[bind-libs-lite-9.9.4-29.el7_2.3] +file = bind-libs-lite-9.9.4-29.el7_2.3.x86_64.rpm +md5 = 98dc0997b5d77770f96c828e50e76d3f +source = repo:rhel-7-server-rpms + +[bind-license-9.9.4-29.el7_2.3] +file = bind-license-9.9.4-29.el7_2.3.noarch.rpm +md5 = 28d9afebca07f5368da952539b3bc15b +source = repo:rhel-7-server-rpms + +[binutils-2.23.52.0.1-55.el7] +file = binutils-2.23.52.0.1-55.el7.x86_64.rpm +md5 = 6e5c3a1356055424bb845bda502c5d2a +source = repo:rhel-7-server-rpms + +[biosdevname-0.6.2-1.el7] +file = biosdevname-0.6.2-1.el7.x86_64.rpm +md5 = 7d8b7b52de114ae0f273e6a6edfc63a6 +source = repo:rhel-7-server-rpms + +[boost-program-options-1.53.0-25.el7] +file = boost-program-options-1.53.0-25.el7.x86_64.rpm +md5 = a065c25829c89e3949d57d8627b4a652 +source = repo:rhel-7-server-rpms + +[boost-system-1.53.0-25.el7] +file = boost-system-1.53.0-25.el7.x86_64.rpm +md5 = 9583b0ae664c8719930743418b23014b +source = repo:rhel-7-server-rpms + +[boost-thread-1.53.0-25.el7] +file = boost-thread-1.53.0-25.el7.x86_64.rpm +md5 = 64ba476655bba94232a153ddfeab8aea +source = repo:rhel-7-server-rpms + +[bridge-utils-1.5-9.el7] +file = bridge-utils-1.5-9.el7.x86_64.rpm +md5 = 6351e638a71fa949eb45e0d5843f8a7e +source = repo:rhel-7-server-rpms + +[btrfs-progs-3.19.1-1.el7] +file = btrfs-progs-3.19.1-1.el7.x86_64.rpm +md5 = 923e67d89b1c38cc37d3564f7fd48d44 +source = repo:rhel-7-server-rpms + +[bzip2-1.0.6-13.el7] +file = bzip2-1.0.6-13.el7.x86_64.rpm +md5 = 75cba4da2d8847ed2607665717fb5137 +source = repo:rhel-7-server-rpms + +[bzip2-libs-1.0.6-13.el7] +file = bzip2-libs-1.0.6-13.el7.x86_64.rpm +md5 = 284d30a65befb3bfb45ba7afe4bfdd0b +source = repo:rhel-7-server-rpms + +[c-ares-1.10.0-3.el7] +file = c-ares-1.10.0-3.el7.x86_64.rpm +md5 = 00e91d1ed8be9f13424e3554e1ec6451 +source = repo:rhel-7-server-rpms + +[ca-certificates-2015.2.6-70.1.el7_2] +file = ca-certificates-2015.2.6-70.1.el7_2.noarch.rpm +md5 = 87fe73b4db30412814a028eb7a2c38b3 +source = repo:rhel-7-server-rpms + +[cairo-1.14.2-1.el7] +file = cairo-1.14.2-1.el7.x86_64.rpm +md5 = bb456a14124c575191f123a01c3fc435 +source = repo:rhel-7-server-rpms + +[cal10n-0.7.7-4.el7] +file = cal10n-0.7.7-4.el7.noarch.rpm +md5 = 7b944d781323106ac0d3abae86340087 +source = repo:rhel-7-server-rpms + +[celt051-0.5.1.3-8.el7] +file = celt051-0.5.1.3-8.el7.x86_64.rpm +md5 = 295139c300d6bd0c1315bc4a9eee7f59 +source = repo:rhel-7-server-rpms + +[checkpolicy-2.1.12-6.el7] +file = checkpolicy-2.1.12-6.el7.x86_64.rpm +md5 = df6fd0ed68aa16581e1f84237377fee6 +source = repo:rhel-7-server-rpms + +[chkconfig-1.3.61-5.el7] +file = chkconfig-1.3.61-5.el7.x86_64.rpm +md5 = 8db58d7e5c91963d83464c5031d3e0fc +source = repo:rhel-7-server-rpms + +[conntrack-tools-1.4.2-9.el7] +file = conntrack-tools-1.4.2-9.el7.x86_64.rpm +md5 = 6616b3b9f9028e310faa5a6fe3f65469 +source = repo:rhel-7-server-rpms + +[coreutils-8.22-15.el7_2.1] +file = coreutils-8.22-15.el7_2.1.x86_64.rpm +md5 = adb4f2d9221471c76c37a45cb9788f22 +source = repo:rhel-7-server-rpms + +[cpio-2.11-24.el7] +file = cpio-2.11-24.el7.x86_64.rpm +md5 = a472247714a7ccf6d88c65928802cc5a +source = repo:rhel-7-server-rpms + +[cpp-4.8.5-4.el7] +file = cpp-4.8.5-4.el7.x86_64.rpm +md5 = 057da258bd4074e29fd0a9b6f8ddf3e0 +source = repo:rhel-7-server-rpms + +[createrepo-0.9.9-25.el7_2] +file = createrepo-0.9.9-25.el7_2.noarch.rpm +md5 = 58813ce0280f94a1861bef5fa27034dd +source = repo:rhel-7-server-rpms + +[cronie-1.4.11-14.el7_2.1] +file = cronie-1.4.11-14.el7_2.1.x86_64.rpm +md5 = bb9c17c1c89b3818c86dc5b9f4607dbd +source = repo:rhel-7-server-rpms + +[cronie-anacron-1.4.11-14.el7_2.1] +file = cronie-anacron-1.4.11-14.el7_2.1.x86_64.rpm +md5 = 235aa6f5ca9455160f3ac11a2fbc632b +source = repo:rhel-7-server-rpms + +[crudini-0.7-2.el7ost] +file = crudini-0.7-2.el7ost.noarch.rpm +md5 = ee3f1e483b0b987ee5c26531fcef0cd0 +source = repo:RH7-RHOS-8.0 + +[cryptsetup-1.6.7-1.el7] +file = cryptsetup-1.6.7-1.el7.x86_64.rpm +md5 = d12322def169d7b8ae0bd356e3b4cbba +source = repo:rhel-7-server-rpms + +[cryptsetup-libs-1.6.7-1.el7] +file = cryptsetup-libs-1.6.7-1.el7.x86_64.rpm +md5 = a6e6d6d1e82802b5576e2c6a748d0302 +source = repo:rhel-7-server-rpms + +[cups-libs-1.6.3-22.el7] +file = cups-libs-1.6.3-22.el7.x86_64.rpm +md5 = 5fb5e4b3a0ec2dda6c61d7ca22797d27 +source = repo:rhel-7-server-rpms + +[curl-7.29.0-25.el7] +file = curl-7.29.0-25.el7.x86_64.rpm +md5 = 206f5a0184757c156cc30e2dd14edfce +source = repo:rhel-7-server-rpms + +[cyrus-sasl-2.1.26-20.el7_2] +file = cyrus-sasl-2.1.26-20.el7_2.x86_64.rpm +md5 = 60f80992447f81617173ffb8b121295d +source = repo:rhel-7-server-rpms + +[cyrus-sasl-lib-2.1.26-20.el7_2] +file = cyrus-sasl-lib-2.1.26-20.el7_2.x86_64.rpm +md5 = caa847f58a7a6dbccc89ff240e8fbdcc +source = repo:rhel-7-server-rpms + +[cyrus-sasl-md5-2.1.26-20.el7_2] +file = cyrus-sasl-md5-2.1.26-20.el7_2.x86_64.rpm +md5 = 14e64d3bd8a7a7b0e7ac4d7ba3dd6e5d +source = repo:rhel-7-server-rpms + +[dbus-1.6.12-13.el7] +file = dbus-1.6.12-13.el7.x86_64.rpm +md5 = bd260346fdd80c90e716fb9ff2c95ea0 +source = repo:rhel-7-server-rpms + +[dbus-libs-1.6.12-13.el7] +file = dbus-libs-1.6.12-13.el7.x86_64.rpm +md5 = 2a7074eeb572277e4113208096ffd014 +source = repo:rhel-7-server-rpms + +[deltarpm-3.6-3.el7] +file = deltarpm-3.6-3.el7.x86_64.rpm +md5 = 2efed331c4823ad868a966fc537c0d44 +source = repo:rhel-7-server-rpms + +[desktop-file-utils-0.22-1.el7] +file = desktop-file-utils-0.22-1.el7.x86_64.rpm +md5 = 739bdef1d9f178981d95a5cba65510d4 +source = repo:rhel-7-server-rpms + +[device-mapper-1.02.107-5.el7_2.1] +file = device-mapper-1.02.107-5.el7_2.1.x86_64.rpm +md5 = 3df8d5081afb53352e9a41f57b3d1ed4 +source = repo:rhel-7-server-rpms + +[device-mapper-event-1.02.107-5.el7_2.1] +file = device-mapper-event-1.02.107-5.el7_2.1.x86_64.rpm +md5 = fc41a67bd3cde97a7cd881e3776a1e7a +source = repo:rhel-7-server-rpms + +[device-mapper-event-libs-1.02.107-5.el7_2.1] +file = device-mapper-event-libs-1.02.107-5.el7_2.1.x86_64.rpm +md5 = 281bd2714d38f8b586f062ccf865b0cc +source = repo:rhel-7-server-rpms + +[device-mapper-libs-1.02.107-5.el7_2.1] +file = device-mapper-libs-1.02.107-5.el7_2.1.x86_64.rpm +md5 = 733560675114ecf4961f288d0486e1c0 +source = repo:rhel-7-server-rpms + +[device-mapper-persistent-data-0.5.5-1.el7] +file = device-mapper-persistent-data-0.5.5-1.el7.x86_64.rpm +md5 = 765fa3be222e181eb96290641d2aa915 +source = repo:rhel-7-server-rpms + +[dhclient-4.2.5-42.el7] +file = dhclient-4.2.5-42.el7.x86_64.rpm +md5 = c67e01bb85d910b1b0e0f1e251710ac1 +source = repo:rhel-7-server-rpms + +[dhcp-common-4.2.5-42.el7] +file = dhcp-common-4.2.5-42.el7.x86_64.rpm +md5 = 90a18780f08c3140def4dca3a68c2e10 +source = repo:rhel-7-server-rpms + +[dhcp-libs-4.2.5-42.el7] +file = dhcp-libs-4.2.5-42.el7.x86_64.rpm +md5 = 64c566d003f215cef01c45aac857a655 +source = repo:rhel-7-server-rpms + +[dibbler-client-1.0.1-0.RC1.2.el7ost] +file = dibbler-client-1.0.1-0.RC1.2.el7ost.x86_64.rpm +md5 = 291c929ea495b648e73f52a6ecbfbff0 +source = repo:RH7-RHOS-8.0 + +[dmidecode-2.12-9.el7] +file = dmidecode-2.12-9.el7.x86_64.rpm +md5 = 8b12c9fac6da5662ea82c36cd35c63ae +source = repo:rhel-7-server-rpms + +[dnsmasq-2.66-14.el7_1] +file = dnsmasq-2.66-14.el7_1.x86_64.rpm +md5 = b3306ed2721a2b38bff6a275d78fac83 +source = repo:RH7-RHOS-8.0 + +[dnsmasq-utils-2.66-14.el7_1] +file = dnsmasq-utils-2.66-14.el7_1.x86_64.rpm +md5 = bb8fd0779cc493fedbe0a17a8141fa52 +source = repo:RH7-RHOS-8.0 + +[dosfstools-3.0.20-9.el7] +file = dosfstools-3.0.20-9.el7.x86_64.rpm +md5 = 64e05e05cb2c8ec4975a0c834deea072 +source = repo:rhel-7-server-rpms + +[dracut-033-360.el7_2] +file = dracut-033-360.el7_2.x86_64.rpm +md5 = 1dce981ed2e95d824642d14d41a9d709 +source = repo:rhel-7-server-rpms + +[dracut-config-rescue-033-360.el7_2] +file = dracut-config-rescue-033-360.el7_2.x86_64.rpm +md5 = d1d7108ea4655e45491b9a814b9dd1bd +source = repo:rhel-7-server-rpms + +[dracut-network-033-360.el7_2] +file = dracut-network-033-360.el7_2.x86_64.rpm +md5 = 0e68042b10c5626fd51fcdd44a647e29 +source = repo:rhel-7-server-rpms + +[elfutils-libelf-0.163-3.el7] +file = elfutils-libelf-0.163-3.el7.x86_64.rpm +md5 = 4763b0976e63325278e89f0328751384 +source = repo:rhel-7-server-rpms + +[elfutils-libs-0.163-3.el7] +file = elfutils-libs-0.163-3.el7.x86_64.rpm +md5 = 65a4f2837f36d5e36c7cca903aaf7931 +source = repo:rhel-7-server-rpms + +[emacs-filesystem-24.3-18.el7] +file = emacs-filesystem-24.3-18.el7.noarch.rpm +md5 = 5eacf1eec86045c26dde576bc0ced90d +source = repo:rhel-7-server-rpms + +[erlang-asn1-R16B-03.10min.5.el7ost] +file = erlang-asn1-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = e351c725031533e9c524e5555b5952fa +source = repo:RH7-RHOS-8.0 + +[erlang-compiler-R16B-03.10min.5.el7ost] +file = erlang-compiler-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 2498f5a5f750603817c42b2276c5df2c +source = repo:RH7-RHOS-8.0 + +[erlang-crypto-R16B-03.10min.5.el7ost] +file = erlang-crypto-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = b280993bb5994a1e4b93187778b818d3 +source = repo:RH7-RHOS-8.0 + +[erlang-erts-R16B-03.10min.5.el7ost] +file = erlang-erts-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 90b7ffadff0849dccfd7f64b2c61001a +source = repo:RH7-RHOS-8.0 + +[erlang-hipe-R16B-03.10min.5.el7ost] +file = erlang-hipe-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 1ce831d50c4fba11561dc3a15c38572e +source = repo:RH7-RHOS-8.0 + +[erlang-inets-R16B-03.10min.5.el7ost] +file = erlang-inets-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 371cd1937ac653328e286be1180dfc0a +source = repo:RH7-RHOS-8.0 + +[erlang-kernel-R16B-03.10min.5.el7ost] +file = erlang-kernel-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 5b92d67c2c87bbcc4786469f078a0f78 +source = repo:RH7-RHOS-8.0 + +[erlang-mnesia-R16B-03.10min.5.el7ost] +file = erlang-mnesia-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 0a2e5069eb3b0bfd2b93463d8c0205f8 +source = repo:RH7-RHOS-8.0 + +[erlang-os_mon-R16B-03.10min.5.el7ost] +file = erlang-os_mon-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = d9d5a0d926039b89ce19aa3b58764564 +source = repo:RH7-RHOS-8.0 + +[erlang-otp_mibs-R16B-03.10min.5.el7ost] +file = erlang-otp_mibs-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 3b69c1271e9b5ffae8809a3534e2882d +source = repo:RH7-RHOS-8.0 + +[erlang-public_key-R16B-03.10min.5.el7ost] +file = erlang-public_key-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = c49e7527af386c8c37aa58e5a115b5d1 +source = repo:RH7-RHOS-8.0 + +[erlang-runtime_tools-R16B-03.10min.5.el7ost] +file = erlang-runtime_tools-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 82bf4d6eb6be7770dcbd1882fd91d3ff +source = repo:RH7-RHOS-8.0 + +[erlang-sasl-R16B-03.10min.5.el7ost] +file = erlang-sasl-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = a662e137e17032122b7a99383b05fd19 +source = repo:RH7-RHOS-8.0 + +[erlang-sd_notify-0.1-2.el7ost] +file = erlang-sd_notify-0.1-2.el7ost.x86_64.rpm +md5 = d04749a2aaedca7273541d5bbdac23bc +source = repo:RH7-RHOS-8.0 + +[erlang-snmp-R16B-03.10min.5.el7ost] +file = erlang-snmp-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 91e8dbcbabf17944389f383119432e88 +source = repo:RH7-RHOS-8.0 + +[erlang-ssl-R16B-03.10min.5.el7ost] +file = erlang-ssl-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = b667ea2e3e773da65d2cbe1002c72631 +source = repo:RH7-RHOS-8.0 + +[erlang-stdlib-R16B-03.10min.5.el7ost] +file = erlang-stdlib-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 8cfa0a17e9c9bfb1f32049e59d13e034 +source = repo:RH7-RHOS-8.0 + +[erlang-syntax_tools-R16B-03.10min.5.el7ost] +file = erlang-syntax_tools-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 0812d73d941a40baa3d82123562c2b16 +source = repo:RH7-RHOS-8.0 + +[erlang-tools-R16B-03.10min.5.el7ost] +file = erlang-tools-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = 788763e14575bb77800522252090d95c +source = repo:RH7-RHOS-8.0 + +[erlang-xmerl-R16B-03.10min.5.el7ost] +file = erlang-xmerl-R16B-03.10min.5.el7ost.x86_64.rpm +md5 = d1e49f2e368f1142899f0ebb0daaef63 +source = repo:RH7-RHOS-8.0 + +[file-5.11-31.el7] +file = file-5.11-31.el7.x86_64.rpm +md5 = cb9e13f23fcdebfd4772448c591bb379 +source = repo:rhel-7-server-rpms + +[file-libs-5.11-31.el7] +file = file-libs-5.11-31.el7.x86_64.rpm +md5 = a0844fb1c3ac24df9b827db9c692a731 +source = repo:rhel-7-server-rpms + +[filesystem-3.2-20.el7] +file = filesystem-3.2-20.el7.x86_64.rpm +md5 = 5907d69662da76677dad734df9957c75 +source = repo:rhel-7-server-rpms + +[findutils-4.5.11-5.el7] +file = findutils-4.5.11-5.el7.x86_64.rpm +md5 = c508a177a0e9a80663d45f492934c560 +source = repo:rhel-7-server-rpms + +[firewalld-0.3.9-14.el7] +file = firewalld-0.3.9-14.el7.noarch.rpm +md5 = 22559983cb477ad3532347ec0f6279e5 +source = repo:rhel-7-server-rpms + +[flac-libs-1.3.0-5.el7_1] +file = flac-libs-1.3.0-5.el7_1.x86_64.rpm +md5 = 111512721d84636bb6a93ad7f90e1b02 +source = repo:rhel-7-server-rpms + +[fontconfig-2.10.95-7.el7] +file = fontconfig-2.10.95-7.el7.x86_64.rpm +md5 = af47bfd6f0f3b66808e7828e8d9298cc +source = repo:rhel-7-server-rpms + +[fontpackages-filesystem-1.44-8.el7] +file = fontpackages-filesystem-1.44-8.el7.noarch.rpm +md5 = 128e6f83f38c03c707c3f7a881df2452 +source = repo:rhel-7-server-rpms + +[freetype-2.4.11-11.el7] +file = freetype-2.4.11-11.el7.x86_64.rpm +md5 = 89d1952032752d4668c4e4c821be66a5 +source = repo:rhel-7-server-rpms + +[fuse-2.9.2-6.el7] +file = fuse-2.9.2-6.el7.x86_64.rpm +md5 = 9f6605f5a48444425ff46e52bee9b064 +source = repo:rhel-7-server-rpms + +[fuse-libs-2.9.2-6.el7] +file = fuse-libs-2.9.2-6.el7.x86_64.rpm +md5 = 7910c5b4a7d6dbde4b97c22989cc52d6 +source = repo:rhel-7-server-rpms + +[galera-25.3.5-7.el7ost] +file = galera-25.3.5-7.el7ost.x86_64.rpm +md5 = 49442b7e31648fcf7e852f8ec2558adc +source = repo:RH7-RHOS-8.0 + +[gcc-4.8.5-4.el7] +file = gcc-4.8.5-4.el7.x86_64.rpm +md5 = cc547ee7300e9e37b7faf15f1c7450ca +source = repo:rhel-7-server-rpms + +[gdb-7.6.1-80.el7] +file = gdb-7.6.1-80.el7.x86_64.rpm +md5 = 2366a1544bddf40273d0d81685171ab0 +source = repo:rhel-7-server-rpms + +[gdisk-0.8.6-5.el7] +file = gdisk-0.8.6-5.el7.x86_64.rpm +md5 = 5c355f4d685d721b88e34102e7317f4c +source = repo:rhel-7-server-rpms + +[gdk-pixbuf2-2.31.6-3.el7] +file = gdk-pixbuf2-2.31.6-3.el7.x86_64.rpm +md5 = c06f1928b2ca13b63f2eaf420cc85e1c +source = repo:rhel-7-server-rpms + +[genisoimage-1.1.11-23.el7] +file = genisoimage-1.1.11-23.el7.x86_64.rpm +md5 = 6be7e4aff7aa9e66ac49fccc4e892027 +source = repo:rhel-7-server-rpms + +[geronimo-jms-1.1.1-19.el7] +file = geronimo-jms-1.1.1-19.el7.noarch.rpm +md5 = 97b3204207f3527407072f0174c092c3 +source = repo:rhel-7-server-rpms + +[ghostscript-9.07-18.el7] +file = ghostscript-9.07-18.el7.x86_64.rpm +md5 = 61ee82eb144de88d37fa412379790a9c +source = repo:rhel-7-server-rpms + +[ghostscript-fonts-5.50-32.el7] +file = ghostscript-fonts-5.50-32.el7.noarch.rpm +md5 = 8c7e919b0eea0c060b279964cd06f209 +source = repo:rhel-7-server-rpms + +[giflib-4.1.6-9.el7] +file = giflib-4.1.6-9.el7.x86_64.rpm +md5 = e697a7ca22a4da2db558a5d6a05d2a45 +source = repo:rhel-7-server-rpms + +[glib-networking-2.42.0-1.el7] +file = glib-networking-2.42.0-1.el7.x86_64.rpm +md5 = b7f37e1f407880296dd9e696c2546af0 +source = repo:rhel-7-server-rpms + +[glib2-2.42.2-5.el7] +file = glib2-2.42.2-5.el7.x86_64.rpm +md5 = c1d9510584f741f91ba15deeeedb62e5 +source = repo:rhel-7-server-rpms + +[glibc-2.17-106.el7_2.4] +file = glibc-2.17-106.el7_2.4.x86_64.rpm +md5 = d106acd5aea41b30a16ba08e0664f5ca +source = repo:rhel-7-server-rpms + +[glibc-common-2.17-106.el7_2.4] +file = glibc-common-2.17-106.el7_2.4.x86_64.rpm +md5 = 1996a9d2d5d9f7ef333b9e4a1f48ec03 +source = repo:rhel-7-server-rpms + +[glibc-devel-2.17-106.el7_2.4] +file = glibc-devel-2.17-106.el7_2.4.x86_64.rpm +md5 = 28b178a6ce27e1f85189fba80f660d9e +source = repo:rhel-7-server-rpms + +[glibc-headers-2.17-106.el7_2.4] +file = glibc-headers-2.17-106.el7_2.4.x86_64.rpm +md5 = 0fbed8a165653b4881948f4e235cb1ae +source = repo:rhel-7-server-rpms + +[glusterfs-3.7.1-16.el7] +file = glusterfs-3.7.1-16.el7.x86_64.rpm +md5 = febf0bd696e1efbf56bd3e321e351337 +source = repo:rhel-7-server-rpms + +[glusterfs-api-3.7.1-16.el7] +file = glusterfs-api-3.7.1-16.el7.x86_64.rpm +md5 = 04efc99aca0efb8f75cc2a9c4138b23f +source = repo:rhel-7-server-rpms + +[glusterfs-client-xlators-3.7.1-16.el7] +file = glusterfs-client-xlators-3.7.1-16.el7.x86_64.rpm +md5 = 564e5b028dd6b71230b49aebbcfd735c +source = repo:rhel-7-server-rpms + +[glusterfs-libs-3.7.1-16.el7] +file = glusterfs-libs-3.7.1-16.el7.x86_64.rpm +md5 = 8fa09bacef5471880534e405613783f6 +source = repo:rhel-7-server-rpms + +[gmp-6.0.0-12.el7_1] +file = gmp-6.0.0-12.el7_1.x86_64.rpm +md5 = 369003589529401b41b15e4bd20fb405 +source = repo:rhel-7-server-rpms + +[gnutls-3.3.8-14.el7_2] +file = gnutls-3.3.8-14.el7_2.x86_64.rpm +md5 = 4b8a35a7885eb457674f31cb43873216 +source = repo:rhel-7-server-rpms + +[gnutls-dane-3.3.8-14.el7_2] +file = gnutls-dane-3.3.8-14.el7_2.x86_64.rpm +md5 = 3659ad2b8eb9d4fad231d54cd4d99e75 +source = repo:rhel-7-server-rpms + +[gnutls-utils-3.3.8-14.el7_2] +file = gnutls-utils-3.3.8-14.el7_2.x86_64.rpm +md5 = 6bb86b6fc3b9408df0164d0bf3258604 +source = repo:rhel-7-server-rpms + +[gobject-introspection-1.42.0-1.el7] +file = gobject-introspection-1.42.0-1.el7.x86_64.rpm +md5 = 1e0d51cf5ef049fadff9e6dec3ff50c6 +source = repo:rhel-7-server-rpms + +[gperftools-libs-2.4-7.el7] +file = gperftools-libs-2.4-7.el7.x86_64.rpm +md5 = d9b09d0010f0c3c564597476e58b473f +source = repo:rhel-7-server-rpms + +[graphite2-1.3.6-1.el7_2] +file = graphite2-1.3.6-1.el7_2.x86_64.rpm +md5 = c11ebb4a95df94019fcf2d08200a6764 +source = repo:rhel-7-server-rpms + +[grep-2.20-2.el7] +file = grep-2.20-2.el7.x86_64.rpm +md5 = 736a3fccbefa775f71308982cf1cde1a +source = repo:rhel-7-server-rpms + +[grub2-2.02-0.34.el7_2] +file = grub2-2.02-0.34.el7_2.x86_64.rpm +md5 = 89880aeeafc24fa5ebfe8372377ffc9d +source = repo:rhel-7-server-rpms + +[grub2-tools-2.02-0.34.el7_2] +file = grub2-tools-2.02-0.34.el7_2.x86_64.rpm +md5 = 46521c1dd56001377a23f9c49f44c9ee +source = repo:rhel-7-server-rpms + +[grubby-8.28-17.el7] +file = grubby-8.28-17.el7.x86_64.rpm +md5 = 9582e9b24685d86383ce4caaeccd4995 +source = repo:rhel-7-server-rpms + +[gsettings-desktop-schemas-3.14.2-1.el7] +file = gsettings-desktop-schemas-3.14.2-1.el7.x86_64.rpm +md5 = 5cbb509274afde4f4a5fbfcf72e5ab4d +source = repo:rhel-7-server-rpms + +[gsm-1.0.13-11.el7] +file = gsm-1.0.13-11.el7.x86_64.rpm +md5 = 8cf915e4ca4d3b1e0b1db0cfe548a442 +source = repo:rhel-7-server-rpms + +[gssproxy-0.4.1-7.el7] +file = gssproxy-0.4.1-7.el7.x86_64.rpm +md5 = 4a034d138d6c5583f53c99c7110c8477 +source = repo:rhel-7-server-rpms + +[gtk2-2.24.28-8.el7] +file = gtk2-2.24.28-8.el7.x86_64.rpm +md5 = 5670da85ffe6548c850b4d085c890c82 +source = repo:rhel-7-server-rpms + +[gzip-1.5-8.el7] +file = gzip-1.5-8.el7.x86_64.rpm +md5 = 63d5e3bdc56eb812b6d974af28c939b3 +source = repo:rhel-7-server-rpms + +[haproxy-1.5.14-3.el7] +file = haproxy-1.5.14-3.el7.x86_64.rpm +md5 = 529359e53ed656df3a955c91e6d3e080 +source = repo:rhel-7-server-rpms + +[harfbuzz-0.9.36-1.el7] +file = harfbuzz-0.9.36-1.el7.x86_64.rpm +md5 = 3a14be27b9dfafa8d1e9c66d2a092ea9 +source = repo:rhel-7-server-rpms + +[hicolor-icon-theme-0.12-7.el7] +file = hicolor-icon-theme-0.12-7.el7.noarch.rpm +md5 = 256afed6b26549eb30523affbfeea96f +source = repo:rhel-7-server-rpms + +[hivex-1.3.10-5.7.el7] +file = hivex-1.3.10-5.7.el7.x86_64.rpm +md5 = fc05fae5b3eeb277fdc7b6d3ac344a5f +source = repo:rhel-7-server-rpms + +[hwdata-0.252-8.1.el7] +file = hwdata-0.252-8.1.el7.x86_64.rpm +md5 = 10f3c10171392f9c07f5871d1ffb3872 +source = repo:rhel-7-server-rpms + +[icoutils-0.31.0-3.el7] +file = icoutils-0.31.0-3.el7.x86_64.rpm +md5 = a6e1bbeec1fda326e80422be939a3c6c +source = repo:rhel-7-server-rpms + +[initscripts-9.49.30-1.el7_2.2] +file = initscripts-9.49.30-1.el7_2.2.x86_64.rpm +md5 = 3ea5d3ce599d634d1a5aa3a283e9d380 +source = repo:rhel-7-server-rpms + +[ipmitool-1.8.15-0.1.el7ost] +file = ipmitool-1.8.15-0.1.el7ost.x86_64.rpm +md5 = b896eadeeafcb3b0181e7250a6642367 +source = repo:RH7-RHOS-8.0 + +[iproute-3.10.0-54.el7] +file = iproute-3.10.0-54.el7.x86_64.rpm +md5 = 1d35b19a05d85ca0bc54860655f7a24e +source = repo:rhel-7-server-rpms + +[iprutils-2.4.8-1.el7] +file = iprutils-2.4.8-1.el7.x86_64.rpm +md5 = 04488b3be90ed392d5241f86b2aea858 +source = repo:rhel-7-server-rpms + +[ipset-6.19-4.el7] +file = ipset-6.19-4.el7.x86_64.rpm +md5 = dbf3aca25f1e7800d35c2dd0ff154dd2 +source = repo:rhel-7-server-rpms + +[ipset-libs-6.19-4.el7] +file = ipset-libs-6.19-4.el7.x86_64.rpm +md5 = 1067a8959e95aaa879d8de4bc06b857c +source = repo:rhel-7-server-rpms + +[iptables-1.4.21-16.el7] +file = iptables-1.4.21-16.el7.x86_64.rpm +md5 = 93323a45637d55b8610caf56afe7f131 +source = repo:rhel-7-server-rpms + +[iptables-services-1.4.21-16.el7] +file = iptables-services-1.4.21-16.el7.x86_64.rpm +md5 = 44cf00660be9d1c88c84a905003985f0 +source = repo:rhel-7-server-rpms + +[iputils-20121221-7.el7] +file = iputils-20121221-7.el7.x86_64.rpm +md5 = d24858b1deafbb4aab5a4b8c2c115213 +source = repo:rhel-7-server-rpms + +[ipxe-roms-qemu-20130517-8.gitc4bce43.el7_2.1] +file = ipxe-roms-qemu-20130517-8.gitc4bce43.el7_2.1.noarch.rpm +md5 = cfc852049a58330cfcce2ce210a2da25 +source = repo:rhel-7-server-rpms + +[irqbalance-1.0.7-5.el7] +file = irqbalance-1.0.7-5.el7.x86_64.rpm +md5 = e57c2aa2d4fca21a671377f708b1ed93 +source = repo:rhel-7-server-rpms + +[iscsi-initiator-utils-6.2.0.873-32.el7] +file = iscsi-initiator-utils-6.2.0.873-32.el7.x86_64.rpm +md5 = 5884f38b6e9d5d2a9f34ecc0b7f12d6c +source = repo:rhel-7-server-rpms + +[iscsi-initiator-utils-iscsiuio-6.2.0.873-32.el7] +file = iscsi-initiator-utils-iscsiuio-6.2.0.873-32.el7.x86_64.rpm +md5 = b12b3d76c1a14c39877a3c181531854c +source = repo:rhel-7-server-rpms + +[iwl100-firmware-39.31.5.1-43.el7] +file = iwl100-firmware-39.31.5.1-43.el7.noarch.rpm +md5 = 1bf5eefb4d192ed5f3817363b2a60520 +source = repo:rhel-7-server-rpms + +[iwl1000-firmware-39.31.5.1-43.el7] +file = iwl1000-firmware-39.31.5.1-43.el7.noarch.rpm +md5 = b58a777c88413eb2c53c3f840942c997 +source = repo:rhel-7-server-rpms + +[iwl105-firmware-18.168.6.1-43.el7] +file = iwl105-firmware-18.168.6.1-43.el7.noarch.rpm +md5 = be4491151bdfcbd313264792e0178d0f +source = repo:rhel-7-server-rpms + +[iwl135-firmware-18.168.6.1-43.el7] +file = iwl135-firmware-18.168.6.1-43.el7.noarch.rpm +md5 = 01e657f2e565276f5e6412158495cb0a +source = repo:rhel-7-server-rpms + +[iwl2000-firmware-18.168.6.1-43.el7] +file = iwl2000-firmware-18.168.6.1-43.el7.noarch.rpm +md5 = 9dfd772acc6ddb6bd5e788456e1d1041 +source = repo:rhel-7-server-rpms + +[iwl2030-firmware-18.168.6.1-43.el7] +file = iwl2030-firmware-18.168.6.1-43.el7.noarch.rpm +md5 = 94b09e57715210e159b71d2c9f84a4ca +source = repo:rhel-7-server-rpms + +[iwl3160-firmware-22.0.7.0-43.el7] +file = iwl3160-firmware-22.0.7.0-43.el7.noarch.rpm +md5 = 1d2008bfbe6a21382385ed1e3fb3fe73 +source = repo:rhel-7-server-rpms + +[iwl3945-firmware-15.32.2.9-43.el7] +file = iwl3945-firmware-15.32.2.9-43.el7.noarch.rpm +md5 = 28f6bbe0920de3233308918d9617881a +source = repo:rhel-7-server-rpms + +[iwl4965-firmware-228.61.2.24-43.el7] +file = iwl4965-firmware-228.61.2.24-43.el7.noarch.rpm +md5 = 7b0c69d35f91ec25df1176ae82e67193 +source = repo:rhel-7-server-rpms + +[iwl5000-firmware-8.83.5.1_1-43.el7] +file = iwl5000-firmware-8.83.5.1_1-43.el7.noarch.rpm +md5 = c11f851b726ceb628fe1794ea6fe4f79 +source = repo:rhel-7-server-rpms + +[iwl5150-firmware-8.24.2.2-43.el7] +file = iwl5150-firmware-8.24.2.2-43.el7.noarch.rpm +md5 = 3110621a27a6cd96d6a1e33b4050f1b5 +source = repo:rhel-7-server-rpms + +[iwl6000-firmware-9.221.4.1-43.el7] +file = iwl6000-firmware-9.221.4.1-43.el7.noarch.rpm +md5 = 5512ccec1b1a40eadef3430f75610e71 +source = repo:rhel-7-server-rpms + +[iwl6000g2a-firmware-17.168.5.3-43.el7] +file = iwl6000g2a-firmware-17.168.5.3-43.el7.noarch.rpm +md5 = 0d25895a1079c1766851ce8c2e4f58fa +source = repo:rhel-7-server-rpms + +[iwl6000g2b-firmware-17.168.5.2-43.el7] +file = iwl6000g2b-firmware-17.168.5.2-43.el7.noarch.rpm +md5 = d8ed835b29d0a91a2884730802a5fce8 +source = repo:rhel-7-server-rpms + +[iwl6050-firmware-41.28.5.1-43.el7] +file = iwl6050-firmware-41.28.5.1-43.el7.noarch.rpm +md5 = 027c42db9a0cfccc5992eb5a7fcdc267 +source = repo:rhel-7-server-rpms + +[iwl7260-firmware-22.0.7.0-43.el7] +file = iwl7260-firmware-22.0.7.0-43.el7.noarch.rpm +md5 = b9e8c298a63696f9347cfe6e328561fb +source = repo:rhel-7-server-rpms + +[jasper-libs-1.900.1-29.el7] +file = jasper-libs-1.900.1-29.el7.x86_64.rpm +md5 = 483fba39701dfb54ba7b4844d211c6fd +source = repo:rhel-7-server-rpms + +[java-1.7.0-openjdk-1.7.0.99-2.6.5.0.el7_2] +file = java-1.7.0-openjdk-1.7.0.99-2.6.5.0.el7_2.x86_64.rpm +md5 = a7dbad2cc96501497263415bd7af85aa +source = repo:rhel-7-server-rpms + +[java-1.7.0-openjdk-headless-1.7.0.99-2.6.5.0.el7_2] +file = java-1.7.0-openjdk-headless-1.7.0.99-2.6.5.0.el7_2.x86_64.rpm +md5 = a6309ba9d3a2d0b25a0818c53f9e8fc1 +source = repo:rhel-7-server-rpms + +[javamail-1.4.6-8.el7] +file = javamail-1.4.6-8.el7.noarch.rpm +md5 = 83526de1a000cb13e227638eadb22eb3 +source = repo:rhel-7-server-rpms + +[javapackages-tools-3.4.1-11.el7] +file = javapackages-tools-3.4.1-11.el7.noarch.rpm +md5 = ec2bf0c243cfb038230bffa7b7e4a829 +source = repo:rhel-7-server-rpms + +[javassist-3.16.1-10.el7] +file = javassist-3.16.1-10.el7.noarch.rpm +md5 = 6d3ce91813d113b5a8f01782f818dc0e +source = repo:rhel-7-server-rpms + +[jbigkit-libs-2.0-11.el7] +file = jbigkit-libs-2.0-11.el7.x86_64.rpm +md5 = b529406534f53b01137b43aff7d17791 +source = repo:rhel-7-server-rpms + +[keepalived-1.2.13-7.el7] +file = keepalived-1.2.13-7.el7.x86_64.rpm +md5 = aa83c136da4f1c6a9e057dbb1a622ec5 +source = repo:rhel-7-server-rpms + +[kernel-3.10.0-327.10.1.el7] +file = kernel-3.10.0-327.10.1.el7.x86_64.rpm +md5 = bef1a8fd818ffee12dbbe62dcdcac9dc +source = repo:rhel-7-server-rpms + +[kernel-headers-3.10.0-327.10.1.el7] +file = kernel-headers-3.10.0-327.10.1.el7.x86_64.rpm +md5 = c08d07da805d4a3871a7c417af39720e +source = repo:rhel-7-server-rpms + +[kernel-tools-3.10.0-327.10.1.el7] +file = kernel-tools-3.10.0-327.10.1.el7.x86_64.rpm +md5 = 4438f88d14af3057e37f91ef23f4a44f +source = repo:rhel-7-server-rpms + +[kernel-tools-libs-3.10.0-327.10.1.el7] +file = kernel-tools-libs-3.10.0-327.10.1.el7.x86_64.rpm +md5 = 1d8481db2479f1ec1f7a8d6e847af4b9 +source = repo:rhel-7-server-rpms + +[kexec-tools-2.0.7-38.el7_2.1] +file = kexec-tools-2.0.7-38.el7_2.1.x86_64.rpm +md5 = 9786c0175a4bb967af50f61edd371075 +source = repo:rhel-7-server-rpms + +[keyutils-1.5.8-3.el7] +file = keyutils-1.5.8-3.el7.x86_64.rpm +md5 = 9cb1fa2fcf4fa8149183f0b592d069ee +source = repo:rhel-7-server-rpms + +[kmod-20-5.el7] +file = kmod-20-5.el7.x86_64.rpm +md5 = 0f6044c218ef6369e528dea9f1fc9727 +source = repo:rhel-7-server-rpms + +[kmod-libs-20-5.el7] +file = kmod-libs-20-5.el7.x86_64.rpm +md5 = 438de968dcd82fb369c38cf00a81edbf +source = repo:rhel-7-server-rpms + +[kpartx-0.4.9-85.el7_2.1] +file = kpartx-0.4.9-85.el7_2.1.x86_64.rpm +md5 = 3ee89d8c90474af76c2bb91b740152d3 +source = repo:rhel-7-server-rpms + +[krb5-libs-1.13.2-12.el7_2] +file = krb5-libs-1.13.2-12.el7_2.x86_64.rpm +md5 = 61eda8d784ebb380825b0879e11fb199 +source = repo:rhel-7-server-rpms + +[lcms2-2.6-2.el7] +file = lcms2-2.6-2.el7.x86_64.rpm +md5 = b9c58c2e3ab729ffa1be41b8ba6c8dcf +source = repo:rhel-7-server-rpms + +[ldns-1.6.16-7.el7] +file = ldns-1.6.16-7.el7.x86_64.rpm +md5 = d9dcde95cce860c4018ff49f9972cac8 +source = repo:rhel-7-server-rpms + +[less-458-9.el7] +file = less-458-9.el7.x86_64.rpm +md5 = 0073ed904b8d2da74ad217acc12a10f9 +source = repo:rhel-7-server-rpms + +[libICE-1.0.9-2.el7] +file = libICE-1.0.9-2.el7.x86_64.rpm +md5 = 4147bfb57311154fac26585efa8e5644 +source = repo:rhel-7-server-rpms + +[libSM-1.2.2-2.el7] +file = libSM-1.2.2-2.el7.x86_64.rpm +md5 = 1ebf25eee19dd6b3fe954bedb5f31963 +source = repo:rhel-7-server-rpms + +[libX11-1.6.3-2.el7] +file = libX11-1.6.3-2.el7.x86_64.rpm +md5 = 4ae5c43552c2cea1082bbdff7163bbfd +source = repo:rhel-7-server-rpms + +[libX11-common-1.6.3-2.el7] +file = libX11-common-1.6.3-2.el7.noarch.rpm +md5 = 7f8106843425dac9d9e6a6d3ac862b07 +source = repo:rhel-7-server-rpms + +[libXau-1.0.8-2.1.el7] +file = libXau-1.0.8-2.1.el7.x86_64.rpm +md5 = 749d78c3312431a6d4a3c1ee0eb77a16 +source = repo:rhel-7-server-rpms + +[libXcomposite-0.4.4-4.1.el7] +file = libXcomposite-0.4.4-4.1.el7.x86_64.rpm +md5 = c99b9ec0eec16336f632103f560e9c4b +source = repo:rhel-7-server-rpms + +[libXcursor-1.1.14-2.1.el7] +file = libXcursor-1.1.14-2.1.el7.x86_64.rpm +md5 = 459a2de5b86c583e3c3b8dea6cf1b9fd +source = repo:rhel-7-server-rpms + +[libXdamage-1.1.4-4.1.el7] +file = libXdamage-1.1.4-4.1.el7.x86_64.rpm +md5 = 24409d374ed5e9cf58e3be801b7934ca +source = repo:rhel-7-server-rpms + +[libXext-1.3.3-3.el7] +file = libXext-1.3.3-3.el7.x86_64.rpm +md5 = f1265f5300bbf8b7bf1fce9c8919ef6b +source = repo:rhel-7-server-rpms + +[libXfixes-5.0.1-2.1.el7] +file = libXfixes-5.0.1-2.1.el7.x86_64.rpm +md5 = 6452369a6afe30942bb513cd84b7242e +source = repo:rhel-7-server-rpms + +[libXfont-1.5.1-2.el7] +file = libXfont-1.5.1-2.el7.x86_64.rpm +md5 = 73fd8cea0e5f8384925e661fbafb36f2 +source = repo:rhel-7-server-rpms + +[libXft-2.3.2-2.el7] +file = libXft-2.3.2-2.el7.x86_64.rpm +md5 = 95876dae87abd10a315646799df70f36 +source = repo:rhel-7-server-rpms + +[libXi-1.7.4-2.el7] +file = libXi-1.7.4-2.el7.x86_64.rpm +md5 = 573cd677465458fffd56e50e5171d270 +source = repo:rhel-7-server-rpms + +[libXinerama-1.1.3-2.1.el7] +file = libXinerama-1.1.3-2.1.el7.x86_64.rpm +md5 = dae24bcc4e582259c433054b93937e2e +source = repo:rhel-7-server-rpms + +[libXrandr-1.4.2-2.el7] +file = libXrandr-1.4.2-2.el7.x86_64.rpm +md5 = aecd407e455848231064d3c12cc4ae1e +source = repo:rhel-7-server-rpms + +[libXrender-0.9.8-2.1.el7] +file = libXrender-0.9.8-2.1.el7.x86_64.rpm +md5 = 6f014ef69d0329365de4434332eb1fa5 +source = repo:rhel-7-server-rpms + +[libXt-1.1.4-6.1.el7] +file = libXt-1.1.4-6.1.el7.x86_64.rpm +md5 = 961bd9be6a16f00eb0cf26f6e19ad1a3 +source = repo:rhel-7-server-rpms + +[libXtst-1.2.2-2.1.el7] +file = libXtst-1.2.2-2.1.el7.x86_64.rpm +md5 = 28015f58faf4e73a879b4b9882fea287 +source = repo:rhel-7-server-rpms + +[libXxf86vm-1.1.3-2.1.el7] +file = libXxf86vm-1.1.3-2.1.el7.x86_64.rpm +md5 = d6b969e8a68cdd0dcb6daa4656e0eeb3 +source = repo:rhel-7-server-rpms + +[libaio-0.3.109-13.el7] +file = libaio-0.3.109-13.el7.x86_64.rpm +md5 = d23891e8c3e010b4a0203489eab98ca7 +source = repo:rhel-7-server-rpms + +[libasyncns-0.8-7.el7] +file = libasyncns-0.8-7.el7.x86_64.rpm +md5 = 7b37451f8703880fc3819d7b763d243d +source = repo:rhel-7-server-rpms + +[libbasicobjects-0.1.1-25.el7] +file = libbasicobjects-0.1.1-25.el7.x86_64.rpm +md5 = 6a014c5ed2ca119826cd4d3c4907fb46 +source = repo:rhel-7-server-rpms + +[libblkid-2.23.2-26.el7_2.2] +file = libblkid-2.23.2-26.el7_2.2.x86_64.rpm +md5 = 14be9c16ca2c6b2e458c40f6134cc947 +source = repo:rhel-7-server-rpms + +[libcap-ng-0.7.5-4.el7] +file = libcap-ng-0.7.5-4.el7.x86_64.rpm +md5 = c73efcc57cf17751b8f0ac0a45ebf050 +source = repo:rhel-7-server-rpms + +[libcgroup-0.41-8.el7] +file = libcgroup-0.41-8.el7.x86_64.rpm +md5 = e680fd0940a7dd101725498b0aed9de2 +source = repo:rhel-7-server-rpms + +[libcgroup-tools-0.41-8.el7] +file = libcgroup-tools-0.41-8.el7.x86_64.rpm +md5 = c96741ef0c778e0553108d82638d9d3e +source = repo:rhel-7-server-rpms + +[libcollection-0.6.2-25.el7] +file = libcollection-0.6.2-25.el7.x86_64.rpm +md5 = 5af3ef6624f586110ae3fe8a78e4a132 +source = repo:rhel-7-server-rpms + +[libcurl-7.29.0-25.el7] +file = libcurl-7.29.0-25.el7.x86_64.rpm +md5 = f3ffb9ad993c1bef84f13bece225a41f +source = repo:rhel-7-server-rpms + +[libdb-5.3.21-19.el7] +file = libdb-5.3.21-19.el7.x86_64.rpm +md5 = 2b70a5fe3fd12549dc7584ff9eb42a2c +source = repo:rhel-7-server-rpms + +[libdb-utils-5.3.21-19.el7] +file = libdb-utils-5.3.21-19.el7.x86_64.rpm +md5 = 49e8ff63e1458e6710b8a517b47cbf71 +source = repo:rhel-7-server-rpms + +[libdrm-2.4.60-3.el7] +file = libdrm-2.4.60-3.el7.x86_64.rpm +md5 = 1e4fdcb380eb2638f7243baf44c64b48 +source = repo:rhel-7-server-rpms + +[libev-4.15-6.el7] +file = libev-4.15-6.el7.x86_64.rpm +md5 = a5531e5a98e0bf34d67be06681035620 +source = repo:rhel-7-server-extras-rpms + +[libevent-2.0.21-4.el7] +file = libevent-2.0.21-4.el7.x86_64.rpm +md5 = e1ec4c473b22fb9d9e87a215e46b91f9 +source = repo:rhel-7-server-rpms + +[libffi-3.0.13-16.el7] +file = libffi-3.0.13-16.el7.x86_64.rpm +md5 = 356c253d306015370e57c24086e83f13 +source = repo:rhel-7-server-rpms + +[libfontenc-1.1.2-3.el7] +file = libfontenc-1.1.2-3.el7.x86_64.rpm +md5 = 07446424e159a20715859a5c7fd1dc0c +source = repo:rhel-7-server-rpms + +[libgcc-4.8.5-4.el7] +file = libgcc-4.8.5-4.el7.x86_64.rpm +md5 = 41cce038f244184f0fed91f7a7849c93 +source = repo:rhel-7-server-rpms + +[libgcrypt-1.5.3-12.el7_1.1] +file = libgcrypt-1.5.3-12.el7_1.1.x86_64.rpm +md5 = a99b4bb2f8f06bdb9d578210197a4e29 +source = repo:rhel-7-server-rpms + +[libgomp-4.8.5-4.el7] +file = libgomp-4.8.5-4.el7.x86_64.rpm +md5 = 816a5f1a9b31e5b1e90c7b2995e81278 +source = repo:rhel-7-server-rpms + +[libgudev1-219-19.el7_2.7] +file = libgudev1-219-19.el7_2.7.x86_64.rpm +md5 = 8bcb0a56c2622cddd75b3dbd0eaa8f82 +source = repo:rhel-7-server-rpms + +[libguestfs-1.28.1-1.55.el7_2.2] +file = libguestfs-1.28.1-1.55.el7_2.2.x86_64.rpm +md5 = 72fb4b1acd3757515e9f2550b28ab442 +source = repo:rhel-7-server-rpms + +[libibverbs-1.1.8-8.el7] +file = libibverbs-1.1.8-8.el7.x86_64.rpm +md5 = 53aa33f48ecb41a696283022393dbc6f +source = repo:rhel-7-server-rpms + +[libicu-50.1.2-15.el7] +file = libicu-50.1.2-15.el7.x86_64.rpm +md5 = f299acc19612897b6281cd35488a9006 +source = repo:rhel-7-server-rpms + +[libidn-1.28-4.el7] +file = libidn-1.28-4.el7.x86_64.rpm +md5 = d007d066a8eba46dd7a34257c6ead9ed +source = repo:rhel-7-server-rpms + +[libini_config-1.2.0-25.el7] +file = libini_config-1.2.0-25.el7.x86_64.rpm +md5 = 18f82f1e27d128bad380094c33b85681 +source = repo:rhel-7-server-rpms + +[libiscsi-1.9.0-6.el7] +file = libiscsi-1.9.0-6.el7.x86_64.rpm +md5 = fd7187aaffdb67544e3dad876cafff12 +source = repo:rhel-7-server-rpms + +[libjpeg-turbo-1.2.90-5.el7] +file = libjpeg-turbo-1.2.90-5.el7.x86_64.rpm +md5 = 3327473d731b30ff5a21fa142a486aa4 +source = repo:rhel-7-server-rpms + +[libmount-2.23.2-26.el7_2.2] +file = libmount-2.23.2-26.el7_2.2.x86_64.rpm +md5 = 3acefe0986e86108cf5bf1970b7c9a41 +source = repo:rhel-7-server-rpms + +[libmpc-1.0.1-3.el7] +file = libmpc-1.0.1-3.el7.x86_64.rpm +md5 = 23881c5e60c7493cc30090fd42695826 +source = repo:rhel-7-server-rpms + +[libnetfilter_cthelper-1.0.0-8.el7] +file = libnetfilter_cthelper-1.0.0-8.el7.x86_64.rpm +md5 = 8c228affa2734e949b68febec002e75d +source = repo:rhel-7-server-rpms + +[libnetfilter_cttimeout-1.0.0-6.el7] +file = libnetfilter_cttimeout-1.0.0-6.el7.x86_64.rpm +md5 = 2305a4f7da69e827b8ec8350ae0383a3 +source = repo:rhel-7-server-rpms + +[libnetfilter_queue-1.0.2-1.el7] +file = libnetfilter_queue-1.0.2-1.el7.x86_64.rpm +md5 = 2c40e8bb5e07713a4cbc04ac598121ce +source = repo:rhel-7-server-rpms + +[libnfsidmap-0.25-12.el7] +file = libnfsidmap-0.25-12.el7.x86_64.rpm +md5 = e8f563ada873cd11d233c108f85707c3 +source = repo:rhel-7-server-rpms + +[libnl3-3.2.21-10.el7] +file = libnl3-3.2.21-10.el7.x86_64.rpm +md5 = 01cc3be6182cf92d620ef20d8c9f8513 +source = repo:rhel-7-server-rpms + +[libnl3-cli-3.2.21-10.el7] +file = libnl3-cli-3.2.21-10.el7.x86_64.rpm +md5 = b2dd10ddd37606a4c4771c8b1a2269be +source = repo:rhel-7-server-rpms + +[libogg-1.3.0-7.el7] +file = libogg-1.3.0-7.el7.x86_64.rpm +md5 = 71ed6949f8f0b74b27bf70fd86c1ec15 +source = repo:rhel-7-server-rpms + +[libosinfo-0.2.12-3.el7] +file = libosinfo-0.2.12-3.el7.x86_64.rpm +md5 = cfa0b4e550ef063e7dfb58ffd9b4b227 +source = repo:rhel-7-server-rpms + +[libpath_utils-0.2.1-25.el7] +file = libpath_utils-0.2.1-25.el7.x86_64.rpm +md5 = 40c9cb186157a7a54dc94ff300fbb0d5 +source = repo:rhel-7-server-rpms + +[libpcap-1.5.3-8.el7] +file = libpcap-1.5.3-8.el7.x86_64.rpm +md5 = bcf33d45c97a1e893cfaa24791d86299 +source = repo:rhel-7-server-rpms + +[libpciaccess-0.13.4-2.el7] +file = libpciaccess-0.13.4-2.el7.x86_64.rpm +md5 = eafb9da6bc6c07829fcf9341b573b3c8 +source = repo:rhel-7-server-rpms + +[libpng-1.5.13-7.el7_2] +file = libpng-1.5.13-7.el7_2.x86_64.rpm +md5 = e93cc87dae9dc281a47c4f98188296cc +source = repo:rhel-7-server-rpms + +[libproxy-0.4.11-8.el7] +file = libproxy-0.4.11-8.el7.x86_64.rpm +md5 = 6e8fb0782c126c550531caa9c0440dd0 +source = repo:rhel-7-server-rpms + +[librabbitmq-0.5.2-1.el7] +file = librabbitmq-0.5.2-1.el7.x86_64.rpm +md5 = 0eee1d2843b46a8bb5c079079729a6ae +source = repo:rhel7-missing-pkgs + +[librados2-0.80.7-3.el7] +file = librados2-0.80.7-3.el7.x86_64.rpm +md5 = ae0641248570628451642dda1c2aa4f2 +source = repo:rhel-7-server-rpms + +[librbd1-0.80.7-3.el7] +file = librbd1-0.80.7-3.el7.x86_64.rpm +md5 = 0063a0f86bc43d1fabeca9f305aeb7ab +source = repo:rhel-7-server-rpms + +[librdmacm-1.0.21-1.el7] +file = librdmacm-1.0.21-1.el7.x86_64.rpm +md5 = bbfb5fa998af501aec5d5ddc938672d7 +source = repo:rhel-7-server-rpms + +[libref_array-0.1.5-25.el7] +file = libref_array-0.1.5-25.el7.x86_64.rpm +md5 = 657c980990106068bfdd4bc49fed5227 +source = repo:rhel-7-server-rpms + +[libreport-2.1.11-31.el7] +file = libreport-2.1.11-31.el7.x86_64.rpm +md5 = fabf24b8dfe334a5d7e830868fd841be +source = repo:rhel-7-server-rpms + +[libreport-filesystem-2.1.11-31.el7] +file = libreport-filesystem-2.1.11-31.el7.x86_64.rpm +md5 = f089218e17cdac8b9236b66732f33b1c +source = repo:rhel-7-server-rpms + +[libreport-plugin-rhtsupport-2.1.11-31.el7] +file = libreport-plugin-rhtsupport-2.1.11-31.el7.x86_64.rpm +md5 = c6833dc0a7f0d230971ae28ada88fa30 +source = repo:rhel-7-server-rpms + +[libreport-plugin-ureport-2.1.11-31.el7] +file = libreport-plugin-ureport-2.1.11-31.el7.x86_64.rpm +md5 = b0c6bde6630b1d141d241e64fc300df6 +source = repo:rhel-7-server-rpms + +[libreport-python-2.1.11-31.el7] +file = libreport-python-2.1.11-31.el7.x86_64.rpm +md5 = 24d0cb7f50fe27ab0ae4d5a5fb5c642a +source = repo:rhel-7-server-rpms + +[libreport-web-2.1.11-31.el7] +file = libreport-web-2.1.11-31.el7.x86_64.rpm +md5 = e49dac476a86166089204c43ae512036 +source = repo:rhel-7-server-rpms + +[libseccomp-2.2.1-1.el7] +file = libseccomp-2.2.1-1.el7.x86_64.rpm +md5 = fdf7bcdf4ef1b18923a3a855fa183b81 +source = repo:rhel-7-server-rpms + +[libsemanage-2.1.10-18.el7] +file = libsemanage-2.1.10-18.el7.x86_64.rpm +md5 = 065c8521be33ba87185f66080d6806cc +source = repo:rhel-7-server-rpms + +[libsemanage-python-2.1.10-18.el7] +file = libsemanage-python-2.1.10-18.el7.x86_64.rpm +md5 = d928175df7becda74880fd4411eae9b9 +source = repo:rhel-7-server-rpms + +[libsndfile-1.0.25-10.el7] +file = libsndfile-1.0.25-10.el7.x86_64.rpm +md5 = 26bbdc5e57cb99d3c92af2326fce86a1 +source = repo:rhel-7-server-rpms + +[libsoup-2.48.1-3.el7] +file = libsoup-2.48.1-3.el7.x86_64.rpm +md5 = 8598433a25b145515f38049b5def27a8 +source = repo:rhel-7-server-rpms + +[libssh2-1.4.3-10.el7_2.1] +file = libssh2-1.4.3-10.el7_2.1.x86_64.rpm +md5 = ea4a0967e84645827107c1c133d3cb1f +source = repo:rhel-7-server-rpms + +[libstdc++-4.8.5-4.el7] +file = libstdc++-4.8.5-4.el7.x86_64.rpm +md5 = 8a03b046c1ac2979afaa4afe3bea6653 +source = repo:rhel-7-server-rpms + +[libtalloc-2.1.2-1.el7] +file = libtalloc-2.1.2-1.el7.x86_64.rpm +md5 = 7361ed3eb11e21549d61e1a48403b11d +source = repo:rhel-7-server-rpms + +[libtar-1.2.11-29.el7] +file = libtar-1.2.11-29.el7.x86_64.rpm +md5 = 0f92a4991053af0e61b952a8cf954afe +source = repo:rhel-7-server-rpms + +[libteam-1.17-6.el7_2] +file = libteam-1.17-6.el7_2.x86_64.rpm +md5 = 41a5c8176d03ee95c82ebb182ab994b0 +source = repo:rhel-7-server-rpms + +[libtevent-0.9.25-1.el7] +file = libtevent-0.9.25-1.el7.x86_64.rpm +md5 = d94295901cc35bcbc072ae81cde2500f +source = repo:rhel-7-server-rpms + +[libthai-0.1.14-9.el7] +file = libthai-0.1.14-9.el7.x86_64.rpm +md5 = 1cc4c0e4a088cc1eae0b8fbe95fe600e +source = repo:rhel-7-server-rpms + +[libtiff-4.0.3-14.el7] +file = libtiff-4.0.3-14.el7.x86_64.rpm +md5 = bd8aa68e44f309435cd8829d990808b3 +source = repo:rhel-7-server-rpms + +[libtirpc-0.2.4-0.6.el7] +file = libtirpc-0.2.4-0.6.el7.x86_64.rpm +md5 = 1b8e2d7022047243e484cb94e8c027c5 +source = repo:rhel-7-server-rpms + +[libunwind-1.1-5.el7_2.2] +file = libunwind-1.1-5.el7_2.2.x86_64.rpm +md5 = 92b67a77864c86a154cae42f466d2e24 +source = repo:rhel-7-server-rpms + +[libusal-1.1.11-23.el7] +file = libusal-1.1.11-23.el7.x86_64.rpm +md5 = f1777cd82d4cf360dca6397959846cca +source = repo:rhel-7-server-rpms + +[libusbx-1.0.15-4.el7] +file = libusbx-1.0.15-4.el7.x86_64.rpm +md5 = 1587a2efa563876d9835f2e952ba79bb +source = repo:rhel-7-server-rpms + +[libuser-0.60-7.el7_1] +file = libuser-0.60-7.el7_1.x86_64.rpm +md5 = 095aec0a9860d55eda01226c414e8aa8 +source = repo:rhel-7-server-rpms + +[libuuid-2.23.2-26.el7_2.2] +file = libuuid-2.23.2-26.el7_2.2.x86_64.rpm +md5 = 41af3e49f6620353ccdd85d2ae874480 +source = repo:rhel-7-server-rpms + +[libverto-tevent-0.2.5-4.el7] +file = libverto-tevent-0.2.5-4.el7.x86_64.rpm +md5 = 59a09d3b5449fe0f524bc4f97fdae8dc +source = repo:rhel-7-server-rpms + +[libvirt-client-1.2.17-13.el7_2.4] +file = libvirt-client-1.2.17-13.el7_2.4.x86_64.rpm +md5 = c677f9229669810c441f7863850ee104 +source = repo:rhel-7-server-rpms + +[libvirt-daemon-1.2.17-13.el7_2.4] +file = libvirt-daemon-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 7749586350cb203a2e6811c2b05db0e0 +source = repo:rhel-7-server-rpms + +[libvirt-daemon-driver-interface-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-interface-1.2.17-13.el7_2.4.x86_64.rpm +md5 = d8e6080d6af5143ea48ac191ddad63c9 +source = repo:rhel-7-server-rpms + +[libvirt-daemon-driver-network-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-network-1.2.17-13.el7_2.4.x86_64.rpm +md5 = ae294ae7d877da6689b27a08cf872a92 +source = repo:rhel-7-server-rpms + +[libvirt-daemon-driver-nodedev-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-nodedev-1.2.17-13.el7_2.4.x86_64.rpm +md5 = f8ad46089bb149d6d7f6d50730ac5f60 +source = repo:rhel-7-server-rpms + +[libvirt-daemon-driver-nwfilter-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-nwfilter-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 5923bd9b8d12526ffeb0793b72791b61 +source = repo:rhel-7-server-rpms + +[libvirt-daemon-driver-qemu-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-qemu-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 67a789f2f77aa71d5d9ec939b4b3ace8 +source = repo:rhel-7-server-rpms + +[libvirt-daemon-driver-secret-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-secret-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 7c538e00d52b94066b712c6c01363fd6 +source = repo:rhel-7-server-rpms + +[libvirt-daemon-driver-storage-1.2.17-13.el7_2.4] +file = libvirt-daemon-driver-storage-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 6b1ad20e41f6341e81e880385e5b432d +source = repo:rhel-7-server-rpms + +[libvirt-daemon-kvm-1.2.17-13.el7_2.4] +file = libvirt-daemon-kvm-1.2.17-13.el7_2.4.x86_64.rpm +md5 = 94c9eaffe012e7e47360457040d3706b +source = repo:rhel-7-server-rpms + +[libvirt-python-1.2.17-2.el7] +file = libvirt-python-1.2.17-2.el7.x86_64.rpm +md5 = 9b8bfccf52a6ff77bccb1fe88548c7f1 +source = repo:rhel-7-server-rpms + +[libvorbis-1.3.3-8.el7] +file = libvorbis-1.3.3-8.el7.x86_64.rpm +md5 = 2bdd26653df0897e66f43172f2fd149a +source = repo:rhel-7-server-rpms + +[libwebp-0.3.0-3.el7] +file = libwebp-0.3.0-3.el7.x86_64.rpm +md5 = cab6a021d2d262bb11c648ac44031252 +source = repo:rhel-7-server-rpms + +[libxcb-1.11-4.el7] +file = libxcb-1.11-4.el7.x86_64.rpm +md5 = 3ae432af0717d352830d5e44bbdc6f87 +source = repo:rhel-7-server-rpms + +[libxml2-2.9.1-6.el7_2.2] +file = libxml2-2.9.1-6.el7_2.2.x86_64.rpm +md5 = 1eb66cd982f0658548a4cf5948597136 +source = repo:rhel-7-server-rpms + +[libxml2-python-2.9.1-6.el7_2.2] +file = libxml2-python-2.9.1-6.el7_2.2.x86_64.rpm +md5 = 44c8f6e50124dd14d5faa03b935dbb7a +source = repo:rhel-7-server-rpms + +[libxshmfence-1.2-1.el7] +file = libxshmfence-1.2-1.el7.x86_64.rpm +md5 = ef6d8de3a1dcf9b4271a6be19d516ae8 +source = repo:rhel-7-server-rpms + +[libxslt-python-1.1.28-5.el7] +file = libxslt-python-1.1.28-5.el7.x86_64.rpm +md5 = fad5bb3b343de06294140abb44c73a07 +source = repo:RH7-RHOS-8.0 + +[libyaml-0.1.4-11.el7_0] +file = libyaml-0.1.4-11.el7_0.x86_64.rpm +md5 = f1c2b52bf1ed4c3463b5ff5557fafc93 +source = repo:rhel-7-server-rpms + +[linux-firmware-20150904-43.git6ebf5d5.el7] +file = linux-firmware-20150904-43.git6ebf5d5.el7.noarch.rpm +md5 = d812ab3c59bbf99eb13b015c43f3ad04 +source = repo:rhel-7-server-rpms + +[lksctp-tools-1.0.13-3.el7] +file = lksctp-tools-1.0.13-3.el7.x86_64.rpm +md5 = 67441a3267ae9cd2cfa0f21a4cc5e8a4 +source = repo:rhel-7-server-rpms + +[lm_sensors-libs-3.3.4-11.el7] +file = lm_sensors-libs-3.3.4-11.el7.x86_64.rpm +md5 = e24b845214c8032df18d416f916bc521 +source = repo:rhel-7-server-rpms + +[log4j-1.2.17-15.el7] +file = log4j-1.2.17-15.el7.noarch.rpm +md5 = 1c2dcaf91435d28c7837c013ef95a8f4 +source = repo:rhel-7-server-rpms + +[logrotate-3.8.6-7.el7_2] +file = logrotate-3.8.6-7.el7_2.x86_64.rpm +md5 = 5da6c947a00b60138f5f3c008025afb3 +source = repo:rhel-7-server-rpms + +[lsof-4.87-4.el7] +file = lsof-4.87-4.el7.x86_64.rpm +md5 = 42b0726657d3b51c58064e16682d6d07 +source = repo:rhel-7-server-rpms + +[lsscsi-0.27-3.el7] +file = lsscsi-0.27-3.el7.x86_64.rpm +md5 = bdb62a06fa951044059101c4cf949f44 +source = repo:rhel-7-server-rpms + +[lvm2-2.02.130-5.el7_2.1] +file = lvm2-2.02.130-5.el7_2.1.x86_64.rpm +md5 = 52b46769249f593b0968a9457f46c4f7 +source = repo:rhel-7-server-rpms + +[lvm2-libs-2.02.130-5.el7_2.1] +file = lvm2-libs-2.02.130-5.el7_2.1.x86_64.rpm +md5 = a1c99d2446fd7005ca31e258c34903e3 +source = repo:rhel-7-server-rpms + +[lz4-r131-2.el7ost] +file = lz4-r131-2.el7ost.x86_64.rpm +md5 = 0848f8332e2781a76ef8233bc4aeee57 +source = repo:rhel-7-server-rpms + +[lzo-2.06-8.el7] +file = lzo-2.06-8.el7.x86_64.rpm +md5 = 363aafdbe35d1a7c73097feb03b51076 +source = repo:rhel-7-server-rpms + +[lzop-1.03-10.el7] +file = lzop-1.03-10.el7.x86_64.rpm +md5 = 0242ebbaa2b6f41570ae2ae12157bd60 +source = repo:rhel-7-server-rpms + +[m2crypto-0.21.1-17.el7] +file = m2crypto-0.21.1-17.el7.x86_64.rpm +md5 = d1f306480c926214bf475719ebf394b6 +source = repo:rhel-7-server-rpms + +[mailcap-2.1.41-2.el7] +file = mailcap-2.1.41-2.el7.noarch.rpm +md5 = 0bfbfdcef349b726d32ba5ee7ac5c23a +source = repo:rhel-7-server-rpms + +[mariadb-5.5.47-1.el7_2] +file = mariadb-5.5.47-1.el7_2.x86_64.rpm +md5 = 8f7e4911031362dac7534b5a97c9bcf7 +source = repo:rhel-7-server-rpms + +[mariadb-galera-common-5.5.42-1.el7ost] +file = mariadb-galera-common-5.5.42-1.el7ost.x86_64.rpm +md5 = a7a9884143618c9b45134ca4050227fa +source = repo:RH7-RHOS-8.0 + +[mariadb-galera-server-5.5.42-1.el7ost] +file = mariadb-galera-server-5.5.42-1.el7ost.x86_64.rpm +md5 = 9d704bad148d5debb5b434a19bcc0c07 +source = repo:RH7-RHOS-8.0 + +[mariadb-libs-5.5.47-1.el7_2] +file = mariadb-libs-5.5.47-1.el7_2.x86_64.rpm +md5 = aa16295870684f58274ecd685b4b4e7a +source = repo:rhel-7-server-rpms + +[mdadm-3.3.2-7.el7] +file = mdadm-3.3.2-7.el7.x86_64.rpm +md5 = ba1f92fbab8d592ab026fec8497dac36 +source = repo:rhel-7-server-rpms + +[mesa-libEGL-10.6.5-3.20150824.el7] +file = mesa-libEGL-10.6.5-3.20150824.el7.x86_64.rpm +md5 = cce6f819842b5cfa5b6e2e10f0b603e4 +source = repo:rhel-7-server-rpms + +[mesa-libGL-10.6.5-3.20150824.el7] +file = mesa-libGL-10.6.5-3.20150824.el7.x86_64.rpm +md5 = 63d80e3dc51210b45eba0074fcad4b1f +source = repo:rhel-7-server-rpms + +[mesa-libgbm-10.6.5-3.20150824.el7] +file = mesa-libgbm-10.6.5-3.20150824.el7.x86_64.rpm +md5 = 1842e911893739035bdb51a055360cbb +source = repo:rhel-7-server-rpms + +[mesa-libglapi-10.6.5-3.20150824.el7] +file = mesa-libglapi-10.6.5-3.20150824.el7.x86_64.rpm +md5 = 45d9335b5794ce169e2e3b5fc151b00c +source = repo:rhel-7-server-rpms + +[microcode_ctl-2.1-12.el7] +file = microcode_ctl-2.1-12.el7.x86_64.rpm +md5 = e4a4273f5ff8bf5ec55b2e018cdcac49 +source = repo:rhel-7-server-rpms + +[mozjs17-17.0.0-12.el7] +file = mozjs17-17.0.0-12.el7.x86_64.rpm +md5 = 9a6d9fb6199f1229f407e837c113a844 +source = repo:rhel-7-server-rpms + +[mpfr-3.1.1-4.el7] +file = mpfr-3.1.1-4.el7.x86_64.rpm +md5 = 96329ffd4bdf3d43f0239a0b5cdc2c30 +source = repo:rhel-7-server-rpms + +[mtools-4.0.18-5.el7] +file = mtools-4.0.18-5.el7.x86_64.rpm +md5 = 5b2e5a05518af4ce681f8a172a66a16b +source = repo:rhel-7-server-rpms + +[net-snmp-agent-libs-5.7.2-24.el7] +file = net-snmp-agent-libs-5.7.2-24.el7.x86_64.rpm +md5 = 738739fe0b01ce31ae85514067271c10 +source = repo:rhel-7-server-rpms + +[net-snmp-agent-libs-5.7.2-24.el7_2.1] +file = net-snmp-agent-libs-5.7.2-24.el7_2.1.x86_64.rpm +md5 = b84013da8524dde40d9a8035f0d39af1 +source = repo:rhel-7-server-rpms + +[net-snmp-agent-libs-5.7.2-24.el7_3.2] +file = net-snmp-agent-libs-5.7.2-24.el7_3.2.x86_64.rpm +md5 = f70edbd7019cf21e1db8c86f1c1637de +source = repo:rhel-7-server-rpms + +[net-snmp-libs-5.7.2-24.el7] +file = net-snmp-libs-5.7.2-24.el7.x86_64.rpm +md5 = fbe45fcbb7624ae4659854ea02a6a866 +source = repo:rhel-7-server-rpms + +[net-snmp-libs-5.7.2-24.el7_2.1] +file = net-snmp-libs-5.7.2-24.el7_2.1.x86_64.rpm +md5 = 4607fbd8e24d9df6868253bfb3fac6e4 +source = repo:rhel-7-server-rpms + +[net-snmp-libs-5.7.2-24.el7_3.2] +file = net-snmp-libs-5.7.2-24.el7_3.2.x86_64.rpm +md5 = f632a5d46a388476b7ebad80ddcfd293 +source = repo:rhel-7-server-rpms + +[net-tools-2.0-0.17.20131004git.el7] +file = net-tools-2.0-0.17.20131004git.el7.x86_64.rpm +md5 = 2841b0d94da0fa3d11f0693cd16c1cc0 +source = repo:rhel-7-server-rpms + +[netcf-libs-0.2.8-1.el7] +file = netcf-libs-0.2.8-1.el7.x86_64.rpm +md5 = c920c84b442d5d9a2b091eeb6ce6fb28 +source = repo:rhel-7-server-rpms + +[netpbm-10.61.02-9.el7] +file = netpbm-10.61.02-9.el7.x86_64.rpm +md5 = fe7b9a154f24c6397ef60e0a8e97c320 +source = repo:rhel-7-server-rpms + +[netpbm-progs-10.61.02-9.el7] +file = netpbm-progs-10.61.02-9.el7.x86_64.rpm +md5 = a508bcdb3ecbfb62e5646929f2d2b24a +source = repo:rhel-7-server-rpms + +[nfs-utils-1.3.0-0.21.el7_2] +file = nfs-utils-1.3.0-0.21.el7_2.x86_64.rpm +md5 = b3b85fe94d34cd1a0eb423d9154bbd4c +source = repo:rhel-7-server-rpms + +[nmap-ncat-6.40-7.el7] +file = nmap-ncat-6.40-7.el7.x86_64.rpm +md5 = c7a9f2155a021ceabb6040ae625767d7 +source = repo:rhel-7-server-rpms + +[nspr-4.10.8-2.el7_1] +file = nspr-4.10.8-2.el7_1.x86_64.rpm +md5 = 89b852978919349a709077df0dc14c23 +source = repo:rhel-7-server-rpms + +[nss-3.19.1-19.el7_2] +file = nss-3.19.1-19.el7_2.x86_64.rpm +md5 = d22466401f51a9751e0939dca1d070b4 +source = repo:rhel-7-server-rpms + +[nss-softokn-3.16.2.3-13.el7_1] +file = nss-softokn-3.16.2.3-13.el7_1.x86_64.rpm +md5 = 684f68243dbb7699f0148954cce7d3db +source = repo:rhel-7-server-rpms + +[nss-softokn-freebl-3.16.2.3-13.el7_1] +file = nss-softokn-freebl-3.16.2.3-13.el7_1.x86_64.rpm +md5 = 5ca7c67310d7d70138b7d9dad50ca412 +source = repo:rhel-7-server-rpms + +[nss-sysinit-3.19.1-19.el7_2] +file = nss-sysinit-3.19.1-19.el7_2.x86_64.rpm +md5 = 683d1bee4362028df8a88b817c1f0c5e +source = repo:rhel-7-server-rpms + +[nss-tools-3.19.1-19.el7_2] +file = nss-tools-3.19.1-19.el7_2.x86_64.rpm +md5 = 03ff325baec12fbf070810c47333ffac +source = repo:rhel-7-server-rpms + +[nss-util-3.19.1-9.el7_2] +file = nss-util-3.19.1-9.el7_2.x86_64.rpm +md5 = 151b9249feed13b53b7f5c5920f03301 +source = repo:rhel-7-server-rpms + +[ntp-4.2.6p5-22.el7_2.1] +file = ntp-4.2.6p5-22.el7_2.1.x86_64.rpm +md5 = ee453cd9258f713ee360ebfc7fbdaaa3 +source = repo:rhel-7-server-rpms + +[ntpdate-4.2.6p5-22.el7_2.1] +file = ntpdate-4.2.6p5-22.el7_2.1.x86_64.rpm +md5 = ca2c1709711239bd55e0f06fffe6b9e9 +source = repo:rhel-7-server-rpms + +[numactl-libs-2.0.9-6.el7_2] +file = numactl-libs-2.0.9-6.el7_2.x86_64.rpm +md5 = 513b2195000a5a1ec4c80399b777a828 +source = repo:rhel-7-server-rpms + +[numad-0.5-14.20140620git.el7] +file = numad-0.5-14.20140620git.el7.x86_64.rpm +md5 = f6d41cb6462e7253917cd7bf27ed058c +source = repo:rhel-7-server-rpms + +[openldap-2.4.40-9.el7_2] +file = openldap-2.4.40-9.el7_2.x86_64.rpm +md5 = d2be07bc39c35feacda93c1f04f7d9ec +source = repo:rhel-7-server-rpms + +[openssh-6.6.1p1-25.el7_2] +file = openssh-6.6.1p1-25.el7_2.x86_64.rpm +md5 = 4327885a311bf7d4b56f150917082e9f +source = repo:rhel-7-server-rpms + +[openssh-clients-6.6.1p1-25.el7_2] +file = openssh-clients-6.6.1p1-25.el7_2.x86_64.rpm +md5 = 4689f765dcae4ed2caff5b07ffd43ace +source = repo:rhel-7-server-rpms + +[openssh-server-6.6.1p1-25.el7_2] +file = openssh-server-6.6.1p1-25.el7_2.x86_64.rpm +md5 = c5b2e2f4354dc3a204547a71655bdd63 +source = repo:rhel-7-server-rpms + +[openssl-1.0.1e-51.el7_2.4] +file = openssl-1.0.1e-51.el7_2.4.x86_64.rpm +md5 = 85e198c740355e8ebe640658546d0042 +source = repo:rhel-7-server-rpms + +[openssl-libs-1.0.1e-51.el7_2.4] +file = openssl-libs-1.0.1e-51.el7_2.4.x86_64.rpm +md5 = bb1ead3ccb67e1aac0f8d2aad55f8a0e +source = repo:rhel-7-server-rpms + +[openstack-neutron-7.0.1-8.el7ost] +file = openstack-neutron-7.0.1-8.el7ost.noarch.rpm +md5 = 7e494ade25661e6a8033285a8f2a2374 +source = repo:RH7-RHOS-8.0 + +[openstack-neutron-common-7.0.1-8.el7ost] +file = openstack-neutron-common-7.0.1-8.el7ost.noarch.rpm +md5 = 5b62df8f2a42b10fc55cecad882683ff +source = repo:RH7-RHOS-8.0 + +[openstack-nova-common-12.0.1-1.el7ost] +file = openstack-nova-common-12.0.1-1.el7ost.noarch.rpm +md5 = 5a97fcc25ac79bbd118a99deb1e55cea +source = repo:RH7-RHOS-8.0 + +[openstack-nova-compute-12.0.1-1.el7ost] +file = openstack-nova-compute-12.0.1-1.el7ost.noarch.rpm +md5 = 829475b241d3242cdc96fb0b809f62cb +source = repo:RH7-RHOS-8.0 + +[openstack-selinux-0.6.52-1.el7ost] +file = openstack-selinux-0.6.52-1.el7ost.noarch.rpm +md5 = 76c9d74a0e884e4c403972498b35e3bc +source = repo:RH7-RHOS-8.0 + +[openstack-utils-2014.2-1.el7ost] +file = openstack-utils-2014.2-1.el7ost.noarch.rpm +md5 = 34182c5ec2151fc1d372d878299d9440 +source = repo:RH7-RHOS-8.0 + +[pam-1.1.8-12.el7_1.1] +file = pam-1.1.8-12.el7_1.1.x86_64.rpm +md5 = b3a473d743ad62acfc5163b11c1973fb +source = repo:rhel-7-server-rpms + +[pango-1.36.8-2.el7] +file = pango-1.36.8-2.el7.x86_64.rpm +md5 = e177ffc4aebd4f66d0b90b405c9f83a6 +source = repo:rhel-7-server-rpms + +[parted-3.1-23.el7] +file = parted-3.1-23.el7.x86_64.rpm +md5 = 139e5a87aa74b52b53fdb6124c45787a +source = repo:rhel-7-server-rpms + +[pciutils-3.2.1-4.el7] +file = pciutils-3.2.1-4.el7.x86_64.rpm +md5 = 8dc9bc841cd5f7c1044446ac7c1afa67 +source = repo:rhel-7-server-rpms + +[pcre-8.32-15.el7] +file = pcre-8.32-15.el7.x86_64.rpm +md5 = d43c3cb6c0bcfd5c38b8e3a9568578d8 +source = repo:rhel-7-server-rpms + +[pcsc-lite-libs-1.8.8-6.el7] +file = pcsc-lite-libs-1.8.8-6.el7.x86_64.rpm +md5 = e0f18b532a08640252e604e1bce1f94f +source = repo:rhel-7-server-rpms + +[perl-5.16.3-286.el7] +file = perl-5.16.3-286.el7.x86_64.rpm +md5 = 42c81aa5561d32e1667dc3719023b655 +source = repo:rhel-7-server-rpms + +[perl-Business-ISBN-2.06-2.el7] +file = perl-Business-ISBN-2.06-2.el7.noarch.rpm +md5 = e498681a1c0e60635fa8afeca288ccae +source = repo:rhel-7-server-rpms + +[perl-Business-ISBN-Data-20120719.001-2.el7] +file = perl-Business-ISBN-Data-20120719.001-2.el7.noarch.rpm +md5 = 28c14c6de2dda2560a062ea2278d9e75 +source = repo:rhel-7-server-rpms + +[perl-Carp-1.26-244.el7] +file = perl-Carp-1.26-244.el7.noarch.rpm +md5 = dc5c2c44880bd463b3c85f3a502d706f +source = repo:rhel-7-server-rpms + +[perl-Compress-Raw-Bzip2-2.061-3.el7] +file = perl-Compress-Raw-Bzip2-2.061-3.el7.x86_64.rpm +md5 = 58533f0442afa2848cf75c8db6c2dac5 +source = repo:rhel-7-server-rpms + +[perl-Compress-Raw-Zlib-2.061-4.el7] +file = perl-Compress-Raw-Zlib-2.061-4.el7.x86_64.rpm +md5 = ba76f04997df8c32255952e8ff244eed +source = repo:rhel-7-server-rpms + +[perl-DBD-MySQL-4.023-5.el7] +file = perl-DBD-MySQL-4.023-5.el7.x86_64.rpm +md5 = 9c77eeb68c50b14dce56226fe83ef566 +source = repo:rhel-7-server-rpms + +[perl-DBI-1.627-4.el7] +file = perl-DBI-1.627-4.el7.x86_64.rpm +md5 = 093755f6ae47f10578b63d0dd981ae83 +source = repo:rhel-7-server-rpms + +[perl-Data-Dumper-2.145-3.el7] +file = perl-Data-Dumper-2.145-3.el7.x86_64.rpm +md5 = f5d3ece5cae3fca3050df90c5956be73 +source = repo:rhel-7-server-rpms + +[perl-Digest-1.17-245.el7] +file = perl-Digest-1.17-245.el7.noarch.rpm +md5 = 3e6fdff9cbc0113455c85e7a3bfd77e8 +source = repo:rhel-7-server-rpms + +[perl-Digest-MD5-2.52-3.el7] +file = perl-Digest-MD5-2.52-3.el7.x86_64.rpm +md5 = 3e7486ef4c021a0639b0eda23d0b507e +source = repo:rhel-7-server-rpms + +[perl-Encode-2.51-7.el7] +file = perl-Encode-2.51-7.el7.x86_64.rpm +md5 = b8da1ac2931cc769491f229aa1eba5e3 +source = repo:rhel-7-server-rpms + +[perl-Encode-Locale-1.03-5.el7] +file = perl-Encode-Locale-1.03-5.el7.noarch.rpm +md5 = 67388779f8b0a9242eb3806da0d5de5c +source = repo:rhel-7-server-rpms + +[perl-Exporter-5.68-3.el7] +file = perl-Exporter-5.68-3.el7.noarch.rpm +md5 = 51582b6873cd36aaf524f16922feb4a0 +source = repo:rhel-7-server-rpms + +[perl-File-Listing-6.04-7.el7] +file = perl-File-Listing-6.04-7.el7.noarch.rpm +md5 = 3f4683ed3d089d004f9fb2bd7e3acb8a +source = repo:rhel-7-server-rpms + +[perl-File-Path-2.09-2.el7] +file = perl-File-Path-2.09-2.el7.noarch.rpm +md5 = 2243a44d0f903c913204891ec4c649d5 +source = repo:rhel-7-server-rpms + +[perl-File-Temp-0.23.01-3.el7] +file = perl-File-Temp-0.23.01-3.el7.noarch.rpm +md5 = 1ef93552d6a10965b375295c3f7126f5 +source = repo:rhel-7-server-rpms + +[perl-Filter-1.49-3.el7] +file = perl-Filter-1.49-3.el7.x86_64.rpm +md5 = 729803dfcd71843dc32788a927cbd107 +source = repo:rhel-7-server-rpms + +[perl-Getopt-Long-2.40-2.el7] +file = perl-Getopt-Long-2.40-2.el7.noarch.rpm +md5 = 94b3d965c4f6828518d4a5ff97394287 +source = repo:rhel-7-server-rpms + +[perl-HTML-Parser-3.71-4.el7] +file = perl-HTML-Parser-3.71-4.el7.x86_64.rpm +md5 = a26372863affe7580691974846f9fceb +source = repo:rhel-7-server-rpms + +[perl-HTML-Tagset-3.20-15.el7] +file = perl-HTML-Tagset-3.20-15.el7.noarch.rpm +md5 = 92d6076e50f8ec1be1213f8af9ad2cd1 +source = repo:rhel-7-server-rpms + +[perl-HTTP-Cookies-6.01-5.el7] +file = perl-HTTP-Cookies-6.01-5.el7.noarch.rpm +md5 = 0004ad59bfc8b70a84cc099807ceeb79 +source = repo:rhel-7-server-rpms + +[perl-HTTP-Daemon-6.01-5.el7] +file = perl-HTTP-Daemon-6.01-5.el7.noarch.rpm +md5 = 632b157bf08a6bfb4e4d11d25affbcbb +source = repo:rhel-7-server-rpms + +[perl-HTTP-Date-6.02-8.el7] +file = perl-HTTP-Date-6.02-8.el7.noarch.rpm +md5 = 1e723f0990a34a500c477057743658d8 +source = repo:rhel-7-server-rpms + +[perl-HTTP-Message-6.06-6.el7] +file = perl-HTTP-Message-6.06-6.el7.noarch.rpm +md5 = ede7fd9815dfab2c4290d872636598d8 +source = repo:rhel-7-server-rpms + +[perl-HTTP-Negotiate-6.01-5.el7] +file = perl-HTTP-Negotiate-6.01-5.el7.noarch.rpm +md5 = 9d079e9c80d56844a4cf8fbe4a531ba9 +source = repo:rhel-7-server-rpms + +[perl-HTTP-Tiny-0.033-3.el7] +file = perl-HTTP-Tiny-0.033-3.el7.noarch.rpm +md5 = 653a12af6574cf4b1fa33566326ad4c3 +source = repo:rhel-7-server-rpms + +[perl-IO-Compress-2.061-2.el7] +file = perl-IO-Compress-2.061-2.el7.noarch.rpm +md5 = a30f601a45e24f0f54dad614767d09a4 +source = repo:rhel-7-server-rpms + +[perl-IO-HTML-1.00-2.el7] +file = perl-IO-HTML-1.00-2.el7.noarch.rpm +md5 = 41aa34d16e682c49f23c59a78e86b651 +source = repo:rhel-7-server-rpms + +[perl-IO-Socket-IP-0.21-4.el7] +file = perl-IO-Socket-IP-0.21-4.el7.noarch.rpm +md5 = b8650805f993c3df86e1270c04af2904 +source = repo:rhel-7-server-rpms + +[perl-IO-Socket-SSL-1.94-3.el7] +file = perl-IO-Socket-SSL-1.94-3.el7.noarch.rpm +md5 = 46e1f17254a6609a528fe38a353538ab +source = repo:rhel-7-server-rpms + +[perl-LWP-MediaTypes-6.02-2.el7] +file = perl-LWP-MediaTypes-6.02-2.el7.noarch.rpm +md5 = 66e5dccda8296ebf369008e2c8252b32 +source = repo:rhel-7-server-rpms + +[perl-Net-Daemon-0.48-5.el7] +file = perl-Net-Daemon-0.48-5.el7.noarch.rpm +md5 = e1e72b38bc41aa9544cccb49eea94347 +source = repo:rhel-7-server-rpms + +[perl-Net-HTTP-6.06-2.el7] +file = perl-Net-HTTP-6.06-2.el7.noarch.rpm +md5 = 36ef2f0453b557672d2f3ac1ab9aae29 +source = repo:rhel-7-server-rpms + +[perl-Net-LibIDN-0.12-15.el7] +file = perl-Net-LibIDN-0.12-15.el7.x86_64.rpm +md5 = e99e29b263552f666b3ad57f465b667d +source = repo:rhel-7-server-rpms + +[perl-Net-SSLeay-1.55-3.el7] +file = perl-Net-SSLeay-1.55-3.el7.x86_64.rpm +md5 = ed3e737db0c810ec6996b5f0a24190b6 +source = repo:rhel-7-server-rpms + +[perl-PathTools-3.40-5.el7] +file = perl-PathTools-3.40-5.el7.x86_64.rpm +md5 = 6bbf236e306cd32dee558a1d89e4cd95 +source = repo:rhel-7-server-rpms + +[perl-PlRPC-0.2020-14.el7] +file = perl-PlRPC-0.2020-14.el7.noarch.rpm +md5 = 77cb6f0d7e9630388825e442cff279d8 +source = repo:rhel-7-server-rpms + +[perl-Pod-Escapes-1.04-286.el7] +file = perl-Pod-Escapes-1.04-286.el7.noarch.rpm +md5 = 209d79e96728a84cb901082c14979497 +source = repo:rhel-7-server-rpms + +[perl-Pod-Perldoc-3.20-4.el7] +file = perl-Pod-Perldoc-3.20-4.el7.noarch.rpm +md5 = db936a8462194b79fe5c51ab1a5858ed +source = repo:rhel-7-server-rpms + +[perl-Pod-Simple-3.28-4.el7] +file = perl-Pod-Simple-3.28-4.el7.noarch.rpm +md5 = eecb8f466b0d91644f3285c6aa62d200 +source = repo:rhel-7-server-rpms + +[perl-Pod-Usage-1.63-3.el7] +file = perl-Pod-Usage-1.63-3.el7.noarch.rpm +md5 = 6cd118fc8f26b8328439564621bb9552 +source = repo:rhel-7-server-rpms + +[perl-Scalar-List-Utils-1.27-248.el7] +file = perl-Scalar-List-Utils-1.27-248.el7.x86_64.rpm +md5 = 5999fbb48c945ea4823aea32cd4be955 +source = repo:rhel-7-server-rpms + +[perl-Socket-2.010-3.el7] +file = perl-Socket-2.010-3.el7.x86_64.rpm +md5 = a6c6376ab45f79cac3668facce5ff332 +source = repo:rhel-7-server-rpms + +[perl-Storable-2.45-3.el7] +file = perl-Storable-2.45-3.el7.x86_64.rpm +md5 = 1268c12074dec953b9ebd8d2a5b9de1c +source = repo:rhel-7-server-rpms + +[perl-Text-ParseWords-3.29-4.el7] +file = perl-Text-ParseWords-3.29-4.el7.noarch.rpm +md5 = b0d10c2189d0b5c090a39c70dc800627 +source = repo:rhel-7-server-rpms + +[perl-Time-HiRes-1.9725-3.el7] +file = perl-Time-HiRes-1.9725-3.el7.x86_64.rpm +md5 = 46486bf7b1ce9061e6ea417d1322d31b +source = repo:rhel-7-server-rpms + +[perl-Time-Local-1.2300-2.el7] +file = perl-Time-Local-1.2300-2.el7.noarch.rpm +md5 = b32cfd446d0b3e0fd258d028e2ae348d +source = repo:rhel-7-server-rpms + +[perl-TimeDate-2.30-2.el7] +file = perl-TimeDate-2.30-2.el7.noarch.rpm +md5 = 98d9c8f048b62137213916d32474fcaf +source = repo:rhel-7-server-rpms + +[perl-URI-1.60-9.el7] +file = perl-URI-1.60-9.el7.noarch.rpm +md5 = 1ca90d64c95fd14f3de1cabb8bd00314 +source = repo:rhel-7-server-rpms + +[perl-WWW-RobotRules-6.02-5.el7] +file = perl-WWW-RobotRules-6.02-5.el7.noarch.rpm +md5 = 78a3fdb101b0cbd40bce39c25d8b0dab +source = repo:rhel-7-server-rpms + +[perl-constant-1.27-2.el7] +file = perl-constant-1.27-2.el7.noarch.rpm +md5 = 26bbdebc36d19006020512823e93ed90 +source = repo:rhel-7-server-rpms + +[perl-hivex-1.3.10-5.7.el7] +file = perl-hivex-1.3.10-5.7.el7.x86_64.rpm +md5 = 25348ee79457a316ad2876c31ba76dc5 +source = repo:rhel-7-server-rpms + +[perl-libs-5.16.3-286.el7] +file = perl-libs-5.16.3-286.el7.x86_64.rpm +md5 = e8e7b75d56f2d534347b6ef5f8b4352a +source = repo:rhel-7-server-rpms + +[perl-libwww-perl-6.05-2.el7] +file = perl-libwww-perl-6.05-2.el7.noarch.rpm +md5 = 0d5cd63ea28a2734c140df323a8b6652 +source = repo:rhel-7-server-rpms + +[perl-macros-5.16.3-286.el7] +file = perl-macros-5.16.3-286.el7.x86_64.rpm +md5 = 9bfe278c57556abf129471ce2ca6e544 +source = repo:rhel-7-server-rpms + +[perl-parent-0.225-244.el7] +file = perl-parent-0.225-244.el7.noarch.rpm +md5 = 9ca9c8a66cb2d77f2670f9581e1a3b89 +source = repo:rhel-7-server-rpms + +[perl-podlators-2.5.1-3.el7] +file = perl-podlators-2.5.1-3.el7.noarch.rpm +md5 = e6b253db81d6acbf1efcc7d84d04c895 +source = repo:rhel-7-server-rpms + +[perl-threads-1.87-4.el7] +file = perl-threads-1.87-4.el7.x86_64.rpm +md5 = 766b0bf931ed7e96763a38d05cc80b10 +source = repo:rhel-7-server-rpms + +[perl-threads-shared-1.43-6.el7] +file = perl-threads-shared-1.43-6.el7.x86_64.rpm +md5 = 54810c647cedebe6243613405430ca98 +source = repo:rhel-7-server-rpms + +[pixman-0.32.6-3.el7] +file = pixman-0.32.6-3.el7.x86_64.rpm +md5 = 48b0abdef5db53b657ff97a3ee1967a2 +source = repo:rhel-7-server-rpms + +[plymouth-0.8.9-0.24.20140113.el7] +file = plymouth-0.8.9-0.24.20140113.el7.x86_64.rpm +md5 = 3c8688046395b7ec71d85e0ca3961a19 +source = repo:rhel-7-server-rpms + +[plymouth-core-libs-0.8.9-0.24.20140113.el7] +file = plymouth-core-libs-0.8.9-0.24.20140113.el7.x86_64.rpm +md5 = f17e1816117bff0e37549916008b34e3 +source = repo:rhel-7-server-rpms + +[plymouth-scripts-0.8.9-0.24.20140113.el7] +file = plymouth-scripts-0.8.9-0.24.20140113.el7.x86_64.rpm +md5 = 67488613a36b1a22985756079d203b6d +source = repo:rhel-7-server-rpms + +[policycoreutils-2.2.5-20.el7] +file = policycoreutils-2.2.5-20.el7.x86_64.rpm +md5 = 9e24a79c919e02a2c6eb0d5b74fbbfe9 +source = repo:rhel-7-server-rpms + +[policycoreutils-python-2.2.5-20.el7] +file = policycoreutils-python-2.2.5-20.el7.x86_64.rpm +md5 = 7fa63692e3571b6d190fc537efa320d9 +source = repo:rhel-7-server-rpms + +[polkit-0.112-6.el7_2] +file = polkit-0.112-6.el7_2.x86_64.rpm +md5 = ddc8c1ae52319e4037c365db38e18c8a +source = repo:rhel-7-server-rpms + +[poppler-data-0.4.6-3.el7] +file = poppler-data-0.4.6-3.el7.noarch.rpm +md5 = aab1e290d6463e5d1e8bc0e610cddf40 +source = repo:rhel-7-server-rpms + +[procps-ng-3.3.10-5.el7_2] +file = procps-ng-3.3.10-5.el7_2.x86_64.rpm +md5 = 6030eb43fdce9d0b518519f08fdac7ae +source = repo:rhel-7-server-rpms + +[psmisc-22.20-9.el7] +file = psmisc-22.20-9.el7.x86_64.rpm +md5 = 0fd393a596edf4f886a8bd8973a8525b +source = repo:rhel-7-server-rpms + +[pth-2.0.7-23.el7] +file = pth-2.0.7-23.el7.x86_64.rpm +md5 = b5237dc07e0738eab951e1865a71b618 +source = repo:rhel-7-server-rpms + +[pulseaudio-libs-6.0-7.el7] +file = pulseaudio-libs-6.0-7.el7.x86_64.rpm +md5 = 327af158316ec67a2a7af38fde86043f +source = repo:rhel-7-server-rpms + +[pygobject3-base-3.14.0-3.el7] +file = pygobject3-base-3.14.0-3.el7.x86_64.rpm +md5 = a594d0b0ee513f8e5028385a4b598620 +source = repo:rhel-7-server-rpms + +[pyparsing-2.0.3-1.el7ost] +file = pyparsing-2.0.3-1.el7ost.noarch.rpm +md5 = 23a6e2ecec6ba572c0d3aa40ca1a1934 +source = repo:RH7-RHOS-8.0 + +[python-2.7.5-34.el7] +file = python-2.7.5-34.el7.x86_64.rpm +md5 = e6348a220c5455760258db2a571381ae +source = repo:rhel-7-server-rpms + +[python-IPy-0.75-6.el7] +file = python-IPy-0.75-6.el7.noarch.rpm +md5 = 56832adef6d89fcaeaab943dfde4aaeb +source = repo:rhel-7-server-rpms + +[python-PyMySQL-0.6.7-2.2.el7ost] +file = python-PyMySQL-0.6.7-2.2.el7ost.noarch.rpm +md5 = ef9db21dca7f8152a893f450fe27688a +source = repo:RH7-RHOS-8.0 + +[python-alembic-0.8.3-1.el7ost] +file = python-alembic-0.8.3-1.el7ost.noarch.rpm +md5 = 9579c8f94a99c18fecb720f6c65917b2 +source = repo:RH7-RHOS-8.0 + +[python-amqp-1.4.6-1.el7ost] +file = python-amqp-1.4.6-1.el7ost.noarch.rpm +md5 = 6f24ba596d142f680fcb218d95e263b7 +source = repo:RH7-RHOS-8.0 + +[python-anyjson-0.3.3-7.1.el7ost] +file = python-anyjson-0.3.3-7.1.el7ost.noarch.rpm +md5 = 66aa929196910dc8473786636ec55027 +source = repo:RH7-RHOS-8.0 + +[python-augeas-0.5.0-2.el7] +file = python-augeas-0.5.0-2.el7.noarch.rpm +md5 = 4def5aef76dd2bb510277cf6b3389c30 +source = repo:rhel-7-server-rpms + +[python-babel-1.3-8.el7ost] +file = python-babel-1.3-8.el7ost.noarch.rpm +md5 = 43045f795e916a7cef5a4da7125a51c3 +source = repo:RH7-RHOS-8.0 + +[python-barbicanclient-3.3.0-1.el7ost] +file = python-barbicanclient-3.3.0-1.el7ost.noarch.rpm +md5 = 65149e5990b0ada91c7a9fddbd03ad93 +source = repo:RH7-RHOS-8.0 + +[python-backports-1.0-8.el7] +file = python-backports-1.0-8.el7.x86_64.rpm +md5 = 413be5e22f9cdfb8315e074cf3f3a077 +source = repo:rhel-7-server-rpms + +[python-backports-ssl_match_hostname-3.4.0.2-4.el7] +file = python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch.rpm +md5 = 353687bedc22b173aca38d9409d68964 +source = repo:rhel-7-server-rpms + +[python-beaker-1.5.4-10.el7] +file = python-beaker-1.5.4-10.el7.noarch.rpm +md5 = 026bf37eda9a31905f7ca7790e85f14e +source = repo:rhel-7-server-rpms + +[python-cachetools-1.1.3-1.el7ost] +file = python-cachetools-1.1.3-1.el7ost.noarch.rpm +md5 = 081e6bbd8a2878d87c0d0eeeed181fd4 +source = repo:RH7-RHOS-8.0 + +[python-cffi-1.1.2-4.el7ost] +file = python-cffi-1.1.2-4.el7ost.x86_64.rpm +md5 = df875233780c56c7609db46a8d7f0b05 +source = repo:RH7-RHOS-8.0 + +[python-chardet-2.2.1-1.el7_1] +file = python-chardet-2.2.1-1.el7_1.noarch.rpm +md5 = 60a3a0b12732fc375feb4a40ab6936fe +source = repo:rhel-7-server-rpms + +[python-cheetah-2.4.4-5.el7] +file = python-cheetah-2.4.4-5.el7.x86_64.rpm +md5 = 796f2791f7b737e61ae5f3be80fcb917 +source = repo:RH7-RHOS-8.0 + +[python-cinderclient-1.4.0-1.el7ost] +file = python-cinderclient-1.4.0-1.el7ost.noarch.rpm +md5 = 2ef1eff1ebbd8c6f2f190762e0e4429a +source = repo:RH7-RHOS-8.0 + +[python-cliff-1.15.0-1.el7ost] +file = python-cliff-1.15.0-1.el7ost.noarch.rpm +md5 = 0ab97dd0067397ecca50f8ea531fc5a2 +source = repo:RH7-RHOS-8.0 + +[python-cmd2-0.6.8-3.el7ost] +file = python-cmd2-0.6.8-3.el7ost.noarch.rpm +md5 = 7cfc27f0043e2efddd6d506a7770addc +source = repo:RH7-RHOS-8.0 + +[python-contextlib2-0.4.0-2.el7ost] +file = python-contextlib2-0.4.0-2.el7ost.noarch.rpm +md5 = 24b0bdc28a19535c50136ce97d096955 +source = repo:RH7-RHOS-8.0 + +[python-crypto-2.6.1-1.el7ost] +file = python-crypto-2.6.1-1.el7ost.x86_64.rpm +md5 = fb1f0f5db2171a9ff5ba31c37d591a9a +source = repo:RH7-RHOS-8.0 + +[python-cryptography-1.0.2-1.4.el7ost] +file = python-cryptography-1.0.2-1.4.el7ost.x86_64.rpm +md5 = 4d180e51bb99ed60ca71afc18a740aeb +source = repo:RH7-RHOS-8.0 + +[python-debtcollector-0.8.0-1.1.el7ost] +file = python-debtcollector-0.8.0-1.1.el7ost.noarch.rpm +md5 = a094ae94cb0f0e7c30e4fad8284787c1 +source = repo:RH7-RHOS-8.0 + +[python-deltarpm-3.6-3.el7] +file = python-deltarpm-3.6-3.el7.x86_64.rpm +md5 = 8bc945cf8fa0249f89759ebd8d5b8cd5 +source = repo:rhel-7-server-rpms + +[python-devel-2.7.5-34.el7] +file = python-devel-2.7.5-34.el7.x86_64.rpm +md5 = 1c9184780eebf7b2150b198cfb7f8b32 +source = repo:rhel-7-server-rpms + +[python-docker-py-1.7.2-1.el7] +file = python-docker-py-1.7.2-1.el7.noarch.rpm +md5 = 9e8ddccc988fed1bb6f776ca02d3ab99 +source = repo:rhel-7-server-extras-rpms + +[python-dogpile-cache-0.5.7-1.el7ost] +file = python-dogpile-cache-0.5.7-1.el7ost.noarch.rpm +md5 = 6e10f004dd62293e6d613c69f86e5ccc +source = repo:RH7-RHOS-8.0 + +[python-dogpile-core-0.4.1-6.1.el7ost] +file = python-dogpile-core-0.4.1-6.1.el7ost.noarch.rpm +md5 = 220db7108ccbbd6c0b2d9a9c89892dc8 +source = repo:RH7-RHOS-8.0 + +[python-ecdsa-0.11-4.el7ost] +file = python-ecdsa-0.11-4.el7ost.noarch.rpm +md5 = cabac789209c0a1a5cc05dd54bf250d9 +source = repo:RH7-RHOS-8.0 + +[python-enum34-1.0.4-1.el7] +file = python-enum34-1.0.4-1.el7.noarch.rpm +md5 = f01d1af2876b72f23129eb6a8420bb02 +source = repo:rhel-7-server-rpms + +[python-eventlet-0.17.4-4.1.el7ost] +file = python-eventlet-0.17.4-4.1.el7ost.noarch.rpm +md5 = 800b4a5f411c6fd27ad3e001fb71508b +source = repo:RH7-RHOS-8.0 + +[python-extras-0.0.3-8.el7ost] +file = python-extras-0.0.3-8.el7ost.noarch.rpm +md5 = e610c479b9a8b8d9894595b7a871e066 +source = repo:RH7-RHOS-8.0 + +[python-fasteners-0.13.0-1.el7ost] +file = python-fasteners-0.13.0-1.el7ost.noarch.rpm +md5 = 4b2f7c44e0609e4a0fce80b3f125525c +source = repo:RH7-RHOS-8.0 + +[python-fixtures-0.3.14-3.el7ost] +file = python-fixtures-0.3.14-3.el7ost.noarch.rpm +md5 = a89cca476d10f56c8662df7516b82fcf +source = repo:RH7-RHOS-8.0 + +[python-futures-3.0.3-1.el7ost] +file = python-futures-3.0.3-1.el7ost.noarch.rpm +md5 = 30a9670fd637bc57d539f0ecd71469f4 +source = repo:RH7-RHOS-8.0 + +[python-futurist-0.5.0-1.2.el7ost] +file = python-futurist-0.5.0-1.2.el7ost.noarch.rpm +md5 = ce56c5859e107e0a70b37bf155c94596 +source = repo:RH7-RHOS-8.0 + +[python-glanceclient-1.1.0-1.el7ost] +file = python-glanceclient-1.1.0-1.el7ost.noarch.rpm +md5 = f33922d97ea36296ad44aedfe2261987 +source = repo:RH7-RHOS-8.0 + +[python-greenlet-0.4.2-3.el7] +file = python-greenlet-0.4.2-3.el7.x86_64.rpm +md5 = 61f301ee5847bbae9695f19215bfffde +source = repo:rhel-7-server-extras-rpms + +[python-httplib2-0.9.1-2.1.el7ost] +file = python-httplib2-0.9.1-2.1.el7ost.noarch.rpm +md5 = 1ab341f611fed026c7913874bb18da06 +source = repo:RH7-RHOS-8.0 + +[python-idna-2.0-1.el7ost] +file = python-idna-2.0-1.el7ost.noarch.rpm +md5 = 3bd71ca29cacf80fce3cf46835bb4d3a +source = repo:RH7-RHOS-8.0 + +[python-ipaddress-1.0.7-4.el7ost] +file = python-ipaddress-1.0.7-4.el7ost.noarch.rpm +md5 = 90cb3de64cdc7e6bd26c3dedee7557f0 +source = repo:RH7-RHOS-8.0 + +[python-iso8601-0.1.10-6.1.el7ost] +file = python-iso8601-0.1.10-6.1.el7ost.noarch.rpm +md5 = cfef9b068f98a9fa45c5adbfcd20c163 +source = repo:RH7-RHOS-8.0 + +[python-javapackages-3.4.1-11.el7] +file = python-javapackages-3.4.1-11.el7.noarch.rpm +md5 = 913f5013efca8d79fe3b445fac183d96 +source = repo:rhel-7-server-rpms + +[python-jinja2-2.7.2-2.el7] +file = python-jinja2-2.7.2-2.el7.noarch.rpm +md5 = e992ae72fd86959d12d66eacd412aee9 +source = repo:rhel-7-server-extras-rpms + +[python-jsonpatch-1.2-2.el7] +file = python-jsonpatch-1.2-2.el7.noarch.rpm +md5 = a6eb3a5b0b1e050405808bc0ffd787ba +source = repo:RH7-RHOS-8.0 + +[python-jsonpointer-1.9-2.el7] +file = python-jsonpointer-1.9-2.el7.noarch.rpm +md5 = d6caa9c8a24d0a46a31ad0d56e9318f7 +source = repo:rhel-7-server-rpms + +[python-jsonschema-2.4.0-3.el7ost] +file = python-jsonschema-2.4.0-3.el7ost.noarch.rpm +md5 = a979d215916a0641e402771439eac23e +source = repo:RH7-RHOS-8.0 + +[python-keyring-5.0-3.el7ost] +file = python-keyring-5.0-3.el7ost.noarch.rpm +md5 = a833f064df0d584d2a164d05258afd33 +source = repo:RH7-RHOS-8.0 + +[python-keystone-8.0.1-1.el7ost] +file = python-keystone-8.0.1-1.el7ost.noarch.rpm +md5 = 33a53c391731ef032d5a2b9482ad9d37 +source = repo:RH7-RHOS-8.0 + +[python-keystoneauth1-1.1.0-4.el7ost] +file = python-keystoneauth1-1.1.0-4.el7ost.noarch.rpm +md5 = 814bc4c0a67c12e4b56c73d746a30272 +source = repo:RH7-RHOS-8.0 + +[python-keystoneclient-1.7.2-1.el7ost] +file = python-keystoneclient-1.7.2-1.el7ost.noarch.rpm +md5 = a527332262191dffa6b7997d7b19ace5 +source = repo:RH7-RHOS-8.0 + +[python-keystonemiddleware-2.3.1-1.el7ost] +file = python-keystonemiddleware-2.3.1-1.el7ost.noarch.rpm +md5 = 2794da43ce8a2a81f7e7bd2d21e76f59 +source = repo:RH7-RHOS-8.0 + +[python-kitchen-1.1.1-5.el7] +file = python-kitchen-1.1.1-5.el7.noarch.rpm +md5 = 59bcde88a452919ae9a2f49964344d77 +source = repo:rhel-7-server-rpms + +[python-kombu-3.0.28-1.2.el7ost] +file = python-kombu-3.0.28-1.2.el7ost.noarch.rpm +md5 = 052da9d425f61a54469e68e39c4da3ba +source = repo:RH7-RHOS-8.0 + +[python-ldap-2.4.15-2.el7] +file = python-ldap-2.4.15-2.el7.x86_64.rpm +md5 = bd8992607b5e4ed8ed167a312f2f9c14 +source = repo:rhel-7-server-rpms + +[python-ldappool-1.0-4.el7ost] +file = python-ldappool-1.0-4.el7ost.noarch.rpm +md5 = 37a4afa0fe61523f3ed8a7f51377aad4 +source = repo:RH7-RHOS-8.0 + +[python-libguestfs-1.28.1-1.55.el7_2.2] +file = python-libguestfs-1.28.1-1.55.el7_2.2.x86_64.rpm +md5 = 59f5a90e01311cb14f8cbf46e6897653 +source = repo:rhel-7-server-rpms + +[python-libs-2.7.5-34.el7] +file = python-libs-2.7.5-34.el7.x86_64.rpm +md5 = 0edfe8eb435c8ba6dc546f726f024847 +source = repo:rhel-7-server-rpms + +[python-linecache2-1.0.0-1.el7ost] +file = python-linecache2-1.0.0-1.el7ost.noarch.rpm +md5 = 37d4ee67cc3b5345fa7c81b74dbc237f +source = repo:RH7-RHOS-8.0 + +[python-logutils-0.3.3-3.el7ost] +file = python-logutils-0.3.3-3.el7ost.noarch.rpm +md5 = ff4ba51ef698e019240ea9ea43d5ec52 +source = repo:RH7-RHOS-8.0 + +[python-magic-5.11-31.el7] +file = python-magic-5.11-31.el7.noarch.rpm +md5 = 0dbbc6a2e218cc0ca9cbcadc56c2d64c +source = repo:rhel-7-server-rpms + +[python-mako-0.8.1-2.el7] +file = python-mako-0.8.1-2.el7.noarch.rpm +md5 = 359cb0254903d18d15661af70eecaf42 +source = repo:rhel-7-server-rpms + +[python-markdown-2.4.1-1.1.el7] +file = python-markdown-2.4.1-1.1.el7.noarch.rpm +md5 = 4aa205e30862b2bfdb860607a63fdf02 +source = repo:RH7-RHOS-8.0 + +[python-markupsafe-0.11-10.el7] +file = python-markupsafe-0.11-10.el7.x86_64.rpm +md5 = 2765df306e0ab0b96120331c6f99f4f6 +source = repo:rhel-7-server-rpms + +[python-memcached-1.53-3.el7ost] +file = python-memcached-1.53-3.el7ost.noarch.rpm +md5 = 0cd9ba975fdf9350749222d994f124b4 +source = repo:RH7-RHOS-8.0 + +[python-migrate-0.9.6-1.el7ost] +file = python-migrate-0.9.6-1.el7ost.noarch.rpm +md5 = 82fce37b0d96b0f117ee03ae07f4c672 +source = repo:RH7-RHOS-8.0 + +[python-mimeparse-0.1.4-6.el7ost] +file = python-mimeparse-0.1.4-6.el7ost.noarch.rpm +md5 = 3d8c19865fe1ae74996351f8fc5ad726 +source = repo:RH7-RHOS-8.0 + +[python-mock-1.0.1-7.el7ost] +file = python-mock-1.0.1-7.el7ost.noarch.rpm +md5 = 4603ffb861755a8373c3a940f87efc10 +source = repo:RH7-RHOS-8.0 + +[python-monotonic-0.3-1.el7ost] +file = python-monotonic-0.3-1.el7ost.noarch.rpm +md5 = 9e6a883915cbbf2cff981b0405cfc923 +source = repo:RH7-RHOS-8.0 + +[python-msgpack-0.4.6-3.el7ost] +file = python-msgpack-0.4.6-3.el7ost.x86_64.rpm +md5 = e978b8f6c8db43dbab006a7ad847b5f4 +source = repo:RH7-RHOS-8.0 + +[python-ncclient-0.4.2-3.el7ost] +file = python-ncclient-0.4.2-3.el7ost.noarch.rpm +md5 = 7900b2b2a2ef1cfb77cb0cf67b1b0117 +source = repo:RH7-RHOS-8.0 + +[python-netaddr-0.7.18-1.el7ost] +file = python-netaddr-0.7.18-1.el7ost.noarch.rpm +md5 = 057be3227a619adb935f24c8cea24725 +source = repo:RH7-RHOS-8.0 + +[python-netifaces-0.10.4-3.el7ost] +file = python-netifaces-0.10.4-3.el7ost.x86_64.rpm +md5 = 255c67323dc668e58802755845aff965 +source = repo:RH7-RHOS-8.0 + +[python-neutron-7.0.1-8.el7ost] +file = python-neutron-7.0.1-8.el7ost.noarch.rpm +md5 = d6a67326f93035d8be3ed4862cd9eb7e +source = repo:RH7-RHOS-8.0 + +[python-neutron-lbaas-7.0.0-2.el7ost] +file = python-neutron-lbaas-7.0.0-2.el7ost.noarch.rpm +md5 = b08013d5abaaeaaf13f823841320ba15 +source = repo:RH7-RHOS-8.0 + +[python-nova-12.0.1-1.el7ost] +file = python-nova-12.0.1-1.el7ost.noarch.rpm +md5 = 97c6858edb963c9d4a9973d0b896f38e +source = repo:RH7-RHOS-8.0 + +[python-novaclient-3.1.0-2.el7ost] +file = python-novaclient-3.1.0-2.el7ost.noarch.rpm +md5 = 32d814237ebdfc70d70dc5d45eebfb1c +source = repo:RH7-RHOS-8.0 + +[python-oauthlib-0.7.2-3.20150520git514cad7.el7ost] +file = python-oauthlib-0.7.2-3.20150520git514cad7.el7ost.noarch.rpm +md5 = ba048bd614d33fb75553ed2ed70b1e3c +source = repo:RH7-RHOS-8.0 + +[python-os-brick-0.5.0-1.4.el7ost] +file = python-os-brick-0.5.0-1.4.el7ost.noarch.rpm +md5 = c9dfad91a2b442cdb9bf45c54762c8f3 +source = repo:RH7-RHOS-8.0 + +[python-oslo-concurrency-2.6.0-1.el7ost] +file = python-oslo-concurrency-2.6.0-1.el7ost.noarch.rpm +md5 = 08b6edfee876022eac15f9bdff4e8179 +source = repo:RH7-RHOS-8.0 + +[python-oslo-config-2.4.0-1.1.el7ost] +file = python-oslo-config-2.4.0-1.1.el7ost.noarch.rpm +md5 = 248fcc5bfa84f8ba65cd95378be6cb8d +source = repo:RH7-RHOS-8.0 + +[python-oslo-context-0.6.0-3.el7ost] +file = python-oslo-context-0.6.0-3.el7ost.noarch.rpm +md5 = 4c0d63d66e06cde096e0b4e4846bcd5a +source = repo:RH7-RHOS-8.0 + +[python-oslo-db-2.6.0-3.el7ost] +file = python-oslo-db-2.6.0-3.el7ost.noarch.rpm +md5 = c5513fd880c2457a8c2df1272a2e280c +source = repo:RH7-RHOS-8.0 + +[python-oslo-i18n-2.6.0-1.1.el7ost] +file = python-oslo-i18n-2.6.0-1.1.el7ost.noarch.rpm +md5 = 340874c3c195bfd3486ddd334cc6d6db +source = repo:RH7-RHOS-8.0 + +[python-oslo-log-1.11.0-1.el7ost] +file = python-oslo-log-1.11.0-1.el7ost.noarch.rpm +md5 = e63177f59152fe500f595e3685396b40 +source = repo:RH7-RHOS-8.0 + +[python-oslo-messaging-2.5.0-1.el7ost] +file = python-oslo-messaging-2.5.0-1.el7ost.noarch.rpm +md5 = 94c88449dd5012c36ed1cd5d7aaeaac8 +source = repo:RH7-RHOS-8.0 + +[python-oslo-middleware-2.8.0-1.el7ost] +file = python-oslo-middleware-2.8.0-1.el7ost.noarch.rpm +md5 = 5b8f23c9c38d1791c47fb19d06b0b715 +source = repo:RH7-RHOS-8.0 + +[python-oslo-policy-0.11.0-1.el7ost] +file = python-oslo-policy-0.11.0-1.el7ost.noarch.rpm +md5 = a03c2d3681e2ba22386870c28b2419b9 +source = repo:RH7-RHOS-8.0 + +[python-oslo-reports-0.6.0-1.3.el7ost] +file = python-oslo-reports-0.6.0-1.3.el7ost.noarch.rpm +md5 = da3791001f937810d0dc2431ed431418 +source = repo:RH7-RHOS-8.0 + +[python-oslo-rootwrap-2.3.0-1.el7ost] +file = python-oslo-rootwrap-2.3.0-1.el7ost.noarch.rpm +md5 = 72c8e88bb10c0cef51b30deed2bfcb47 +source = repo:RH7-RHOS-8.0 + +[python-oslo-serialization-1.9.0-1.2.el7ost] +file = python-oslo-serialization-1.9.0-1.2.el7ost.noarch.rpm +md5 = 770230505ba8f9bc3de4c67de60b04e3 +source = repo:RH7-RHOS-8.0 + +[python-oslo-service-0.9.0-2.6.el7ost] +file = python-oslo-service-0.9.0-2.6.el7ost.noarch.rpm +md5 = 42e3f6d0e54f95138643e11bda822846 +source = repo:RH7-RHOS-8.0 + +[python-oslo-utils-2.5.0-1.1.el7ost] +file = python-oslo-utils-2.5.0-1.1.el7ost.noarch.rpm +md5 = 5909c53933762f137ceefcbdf95942fd +source = repo:RH7-RHOS-8.0 + +[python-oslo-versionedobjects-0.10.0-1.el7ost] +file = python-oslo-versionedobjects-0.10.0-1.el7ost.noarch.rpm +md5 = a0ffa765523197af1f7929bdccef35c6 +source = repo:RH7-RHOS-8.0 + +[python-oslo-vmware-1.21.0-1.el7ost] +file = python-oslo-vmware-1.21.0-1.el7ost.noarch.rpm +md5 = 612265a745f6b6de785b234eb4641739 +source = repo:RH7-RHOS-8.0 + +[python-paramiko-1.15.1-1.el7ost] +file = python-paramiko-1.15.1-1.el7ost.noarch.rpm +md5 = cbd9245a9a7b9d413ab3efc3e42eb74d +source = repo:RH7-RHOS-8.0 + +[python-passlib-1.6.5-1.1.el7ost] +file = python-passlib-1.6.5-1.1.el7ost.noarch.rpm +md5 = 75340deb6c5856be842d64a2ef36bf89 +source = repo:RH7-RHOS-8.0 + +[python-paste-1.7.5.1-9.20111221hg1498.el7] +file = python-paste-1.7.5.1-9.20111221hg1498.el7.noarch.rpm +md5 = e02982ad16e14f3d23b38469004b7eb0 +source = repo:rhel-7-server-rpms + +[python-paste-deploy-1.5.2-4.el7ost] +file = python-paste-deploy-1.5.2-4.el7ost.noarch.rpm +md5 = 8df56aae7433c318a1095acc3ec54359 +source = repo:RH7-RHOS-8.0 + +[python-pbr-1.8.0-1.el7ost] +file = python-pbr-1.8.0-1.el7ost.noarch.rpm +md5 = e474a7b00d4f02b825b3705d682ec2fa +source = repo:RH7-RHOS-8.0 + +[python-pecan-1.0.2-2.1.el7ost] +file = python-pecan-1.0.2-2.1.el7ost.noarch.rpm +md5 = b9787c71f93292fdf30a6568dc3afb2f +source = repo:RH7-RHOS-8.0 + +[python-perf-3.10.0-327.13.1.el7] +file = python-perf-3.10.0-327.13.1.el7.x86_64.rpm +md5 = 43cf383ee055dfcf508a375c60e2104e +source = repo:rhel-7-server-rpms + +[python-pillow-2.0.0-19.gitd1c6db8.el7] +file = python-pillow-2.0.0-19.gitd1c6db8.el7.x86_64.rpm +md5 = 3d0c3455f7615eda95f686dfc61b0d61 +source = repo:rhel-7-server-rpms + +[python-ply-3.4-10.el7] +file = python-ply-3.4-10.el7.noarch.rpm +md5 = 2c29297549e8959f94eb10c8197219cc +source = repo:rhel-7-server-rpms + +[python-posix_ipc-0.9.8-5.el7ost] +file = python-posix_ipc-0.9.8-5.el7ost.x86_64.rpm +md5 = 5d3b5b8392a8039d04568a068a1f964c +source = repo:RH7-RHOS-8.0 + +[python-prettytable-0.7.2-1.el7] +file = python-prettytable-0.7.2-1.el7.noarch.rpm +md5 = 3cfcc2d40992ed4d89760e3706ac8ff4 +source = repo:RH7-RHOS-8.0 + +[python-psutil-1.2.1-1.el7] +file = python-psutil-1.2.1-1.el7.x86_64.rpm +md5 = d06c02a7ffc6fdfa52fc3126435020df +source = repo:RH7-RHOS-8.0 + +[python-pyasn1-0.1.9-1.el7ost] +file = python-pyasn1-0.1.9-1.el7ost.noarch.rpm +md5 = 9b3fd73ae0b99413832289c7a7c89ac6 +source = repo:RH7-RHOS-8.0 + +[python-pyasn1-modules-0.1.9-1.el7ost] +file = python-pyasn1-modules-0.1.9-1.el7ost.noarch.rpm +md5 = 63dd8bf36789c1cf07119dbf65da4a0a +source = repo:RH7-RHOS-8.0 + +[python-pycadf-1.1.0-1.el7ost] +file = python-pycadf-1.1.0-1.el7ost.noarch.rpm +md5 = ebc8fb1832acc299de9c1b47175ffff4 +source = repo:RH7-RHOS-8.0 + +[python-pycparser-2.14-1.el7] +file = python-pycparser-2.14-1.el7.noarch.rpm +md5 = b1b0308dc37d19b48d61b517ef1570db +source = repo:rhel-7-server-rpms + +[python-pygments-2.0.2-2.el7ost] +file = python-pygments-2.0.2-2.el7ost.noarch.rpm +md5 = 0341221f04714be1e292ea20d332b041 +source = repo:RH7-RHOS-8.0 + +[python-pysaml2-3.0.0-1.el7ost] +file = python-pysaml2-3.0.0-1.el7ost.noarch.rpm +md5 = 4f36b94444831cd84b387eb4c880a35d +source = repo:RH7-RHOS-8.0 + +[python-pyudev-0.15-7.el7_2.1] +file = python-pyudev-0.15-7.el7_2.1.noarch.rpm +md5 = c17389c8e3402b456c69ce232c01fc9d +source = repo:rhel-7-server-rpms + +[python-qpid-0.30-6.el7] +file = python-qpid-0.30-6.el7.noarch.rpm +md5 = 70e075d4e4e3e233d0f24726770bb8e4 +source = repo:RH7-RHOS-8.0 + +[python-repoze-lru-0.4-8.el7ost] +file = python-repoze-lru-0.4-8.el7ost.noarch.rpm +md5 = 057c93df86eb466910f988223a5504c8 +source = repo:RH7-RHOS-8.0 + +[python-repoze-who-2.1-4.el7ost] +file = python-repoze-who-2.1-4.el7ost.noarch.rpm +md5 = b48b168b689b2972aafa6b5bdcc454b3 +source = repo:RH7-RHOS-8.0 + +[python-retrying-1.2.3-4.el7ost] +file = python-retrying-1.2.3-4.el7ost.noarch.rpm +md5 = 9e43fcf2b1e1c2633d031100e2734a21 +source = repo:RH7-RHOS-8.0 + +[python-rfc3986-0.2.0-1.el7ost] +file = python-rfc3986-0.2.0-1.el7ost.noarch.rpm +md5 = 729268cd159c16fe84dd08cee4794349 +source = repo:RH7-RHOS-8.0 + +[python-rhsm-1.15.4-5.el7] +file = python-rhsm-1.15.4-5.el7.x86_64.rpm +md5 = c20e9dd2a1a6407f31b05c1bfd6eb011 +source = repo:rhel-7-server-rpms + +[python-routes-1.13-2.el7ost] +file = python-routes-1.13-2.el7ost.noarch.rpm +md5 = 79655f219161a2b93740d0aa66232534 +source = repo:RH7-RHOS-8.0 + +[python-ryu-3.26-1.el7ost] +file = python-ryu-3.26-1.el7ost.noarch.rpm +md5 = d43aa921f892de2adcd4bf2948ea614a +source = repo:RH7-RHOS-8.0 + +[python-saslwrapper-0.22-5.el7] +file = python-saslwrapper-0.22-5.el7.x86_64.rpm +md5 = c513ff3ea12a443ea99ae3269890989f +source = repo:RH7-RHOS-8.0 + +[python-setuptools-0.9.8-4.el7] +file = python-setuptools-0.9.8-4.el7.noarch.rpm +md5 = d8260f86cde18ff76ed623caf1c27d09 +source = repo:rhel-7-server-rpms + +[python-simplegeneric-0.8-7.el7ost] +file = python-simplegeneric-0.8-7.el7ost.noarch.rpm +md5 = 0baa91e7ba329a3b85f42927ff311858 +source = repo:RH7-RHOS-8.0 + +[python-simplejson-3.5.3-1.el7ost] +file = python-simplejson-3.5.3-1.el7ost.x86_64.rpm +md5 = f076556ce644500e2bc864952b7aba43 +source = repo:RH7-RHOS-8.0 + +[python-singledispatch-3.4.0.3-2.1.el7ost] +file = python-singledispatch-3.4.0.3-2.1.el7ost.noarch.rpm +md5 = 9be91d4b7ec8cad830c2e124aa47ab37 +source = repo:RH7-RHOS-8.0 + +[python-six-1.9.0-2.el7] +file = python-six-1.9.0-2.el7.noarch.rpm +md5 = 579431a67d5fdbdf56eb2eae95eee700 +source = repo:rhel-7-server-rpms + +[python-sqlalchemy-1.0.8-1.el7ost] +file = python-sqlalchemy-1.0.8-1.el7ost.x86_64.rpm +md5 = add40ffccaeaef88d0974dea6c94fe04 +source = repo:RH7-RHOS-8.0 + +[python-sqlparse-0.1.16-1.1.el7ost] +file = python-sqlparse-0.1.16-1.1.el7ost.noarch.rpm +md5 = 9014233156590d8411ce339064be6769 +source = repo:RH7-RHOS-8.0 + +[python-stevedore-1.8.0-1.el7ost] +file = python-stevedore-1.8.0-1.el7ost.noarch.rpm +md5 = 807cf590d114a5a718a2e05e208a8fdb +source = repo:RH7-RHOS-8.0 + +[python-suds-0.4.1-5.el7] +file = python-suds-0.4.1-5.el7.noarch.rpm +md5 = 082b27c1bb25bd7e0454251c5f11bb13 +source = repo:rhel-7-server-rpms + +[python-tempita-0.5.1-6.el7] +file = python-tempita-0.5.1-6.el7.noarch.rpm +md5 = e95d2a2455ecf0a21678ced2411fd72b +source = repo:rhel-7-server-rpms + +[python-testtools-1.8.0-2.el7ost] +file = python-testtools-1.8.0-2.el7ost.noarch.rpm +md5 = bb48298ac680be136439c0c7fae2a6f1 +source = repo:RH7-RHOS-8.0 + +[python-traceback2-1.4.0-2.el7ost] +file = python-traceback2-1.4.0-2.el7ost.noarch.rpm +md5 = fbefac691c14c56e54d73989a918c715 +source = repo:RH7-RHOS-8.0 + +[python-unicodecsv-0.14.1-2.el7ost] +file = python-unicodecsv-0.14.1-2.el7ost.noarch.rpm +md5 = a97f7d7947489dae060abf319f5e2656 +source = repo:RH7-RHOS-8.0 + +[python-unittest2-1.0.1-1.el7ost] +file = python-unittest2-1.0.1-1.el7ost.noarch.rpm +md5 = 6e1d5569f74ec2bbca609cfe8c4e89b6 +source = repo:RH7-RHOS-8.0 + +[python-urlgrabber-3.10-7.el7] +file = python-urlgrabber-3.10-7.el7.noarch.rpm +md5 = 4e149915a74c6275ca97207bdd5d03e9 +source = repo:rhel-7-server-rpms + +[python-warlock-1.0.1-1.el7ost] +file = python-warlock-1.0.1-1.el7ost.noarch.rpm +md5 = cc54da089477dbe879a120a330814562 +source = repo:RH7-RHOS-8.0 + +[python-webob-1.4.1-2.el7ost] +file = python-webob-1.4.1-2.el7ost.noarch.rpm +md5 = 8ed1868cf5735a9198c2a4837aceed84 +source = repo:RH7-RHOS-8.0 + +[python-websocket-client-0.32.0-116.el7] +file = python-websocket-client-0.32.0-116.el7.noarch.rpm +md5 = 4c367334ea7b9dee1c10d7940bf36b36 +source = repo:rhel-7-server-extras-rpms + +[python-webtest-1.3.4-5.el7] +file = python-webtest-1.3.4-5.el7.noarch.rpm +md5 = fbbd183916d6cfb00ff7d6c5f52fe591 +source = repo:RH7-RHOS-8.0 + +[python-wrapt-1.10.5-1.el7ost] +file = python-wrapt-1.10.5-1.el7ost.x86_64.rpm +md5 = 8dc5c9138f1829cf5fb72eb84093a01d +source = repo:RH7-RHOS-8.0 + +[python-zope-interface-4.0.5-4.el7] +file = python-zope-interface-4.0.5-4.el7.x86_64.rpm +md5 = f2a43e7fc460890af5ef876a68b1183d +source = repo:RH7-RHOS-8.0 + +[pytz-2012d-5.el7] +file = pytz-2012d-5.el7.noarch.rpm +md5 = 876870a57cb1c3e197959631735edcda +source = repo:rhel-7-server-rpms + +[qemu-img-rhev-2.3.0-31.el7_2.7] +file = qemu-img-rhev-2.3.0-31.el7_2.7.x86_64.rpm +md5 = bf244a1c792ca81797525aa7de16896a +source = repo:RH7-RHOS-8.0 + +[qemu-kvm-common-rhev-2.3.0-31.el7_2.7] +file = qemu-kvm-common-rhev-2.3.0-31.el7_2.7.x86_64.rpm +md5 = 97c6e12835554503501907c143985d92 +source = repo:RH7-RHOS-8.0 + +[qemu-kvm-rhev-2.3.0-31.el7_2.7] +file = qemu-kvm-rhev-2.3.0-31.el7_2.7.x86_64.rpm +md5 = c6856c64ff34c5ce7e41afcd7a829953 +source = repo:RH7-RHOS-8.0 + +[quota-4.01-11.el7_2.1] +file = quota-4.01-11.el7_2.1.x86_64.rpm +md5 = 417a5a11ce43a5b2169c4929999c9fa8 +source = repo:rhel-7-server-rpms + +[quota-nls-4.01-11.el7_2.1] +file = quota-nls-4.01-11.el7_2.1.noarch.rpm +md5 = 675d4910125bb7d6df54c091d71e9a28 +source = repo:rhel-7-server-rpms + +[rabbitmq-server-3.3.5-15.el7ost] +file = rabbitmq-server-3.3.5-15.el7ost.noarch.rpm +md5 = 1b550e3b9c7030f6578f025e9d6ca26e +source = repo:RH7-RHOS-8.0 + +[radvd-1.9.2-9.el7] +file = radvd-1.9.2-9.el7.x86_64.rpm +md5 = f0545840c3ee3ae9dbf1ae9473f25fb5 +source = repo:rhel-7-server-rpms + +[rdma-7.2_4.1_rc6-2.el7] +file = rdma-7.2_4.1_rc6-2.el7.noarch.rpm +md5 = 0a2166f58bd4c187a2ac0fd500d7fe21 +source = repo:rhel-7-server-rpms + +[redhat-access-insights-1.0.6-0.el7] +file = redhat-access-insights-1.0.6-0.el7.noarch.rpm +md5 = 6e64a004c96988060542624cf8824ff8 +source = repo:rhel-7-server-rpms + +[redhat-release-server-7.2-9.el7] +file = redhat-release-server-7.2-9.el7.x86_64.rpm +md5 = 6007f819280a8cc22703d9f4cda8f19b +source = repo:rhel-7-server-rpms + +[redhat-support-lib-python-0.9.7-3.el7] +file = redhat-support-lib-python-0.9.7-3.el7.noarch.rpm +md5 = 04ea1c9a56463e33560757428d6d9231 +source = repo:rhel-7-server-rpms + +[redhat-support-tool-0.9.7-6.el7] +file = redhat-support-tool-0.9.7-6.el7.noarch.rpm +md5 = a92c9cf7f11ac75571b27fb4c5fe1ab9 +source = repo:rhel-7-server-rpms + +[redis-2.8.24-1.el7ost] +file = redis-2.8.24-1.el7ost.x86_64.rpm +md5 = 074fe80d17e615f2e12fff7a7d89cf23 +source = repo:RH7-RHOS-8.0 + +[rhnsd-5.0.13-5.el7] +file = rhnsd-5.0.13-5.el7.x86_64.rpm +md5 = 872da3579c151f660fdffbacf3469a39 +source = repo:rhel-7-server-rpms + +[rpcbind-0.2.0-33.el7_2] +file = rpcbind-0.2.0-33.el7_2.x86_64.rpm +md5 = ad1c36f8731586b757180bd16eaaa6d7 +source = repo:rhel-7-server-rpms + +[rpm-4.11.3-17.el7] +file = rpm-4.11.3-17.el7.x86_64.rpm +md5 = 0fd15f660e16e4cd12b0818e2eee9e22 +source = repo:rhel-7-server-rpms + +[rpm-build-libs-4.11.3-17.el7] +file = rpm-build-libs-4.11.3-17.el7.x86_64.rpm +md5 = 747215428dabb5b9ddf731cf000b6ef2 +source = repo:rhel-7-server-rpms + +[rpm-libs-4.11.3-17.el7] +file = rpm-libs-4.11.3-17.el7.x86_64.rpm +md5 = fb3ff741010845ccbd7a3d42d2deb76e +source = repo:rhel-7-server-rpms + +[rpm-python-4.11.3-17.el7] +file = rpm-python-4.11.3-17.el7.x86_64.rpm +md5 = 84e34a47e9fe0f92f598450fa4eba5cb +source = repo:rhel-7-server-rpms + +[rsync-3.0.9-17.el7] +file = rsync-3.0.9-17.el7.x86_64.rpm +md5 = 6ade484009ebe0ac5507c1be74f04e0e +source = repo:rhel-7-server-rpms + +[rsyslog-7.4.7-12.el7] +file = rsyslog-7.4.7-12.el7.x86_64.rpm +md5 = 6ef91f005862d1d40f6f6eec9ced1d38 +source = repo:rhel-7-server-rpms + +[rsyslog-mmjsonparse-7.4.7-12.el7] +file = rsyslog-mmjsonparse-7.4.7-12.el7.x86_64.rpm +md5 = 5a6af5bf860762c58a75efd50b006c60 +source = repo:rhel-7-server-rpms + +[ruby-2.0.0.598-25.el7_1] +file = ruby-2.0.0.598-25.el7_1.x86_64.rpm +md5 = a7d20d80f4930720c45fcc5feff1dd8e +source = repo:rhel-7-server-rpms + +[ruby-irb-2.0.0.598-25.el7_1] +file = ruby-irb-2.0.0.598-25.el7_1.noarch.rpm +md5 = bec44d23ef50c5e24a9c6d7ef1d8d0ca +source = repo:rhel-7-server-rpms + +[ruby-libs-2.0.0.598-25.el7_1] +file = ruby-libs-2.0.0.598-25.el7_1.x86_64.rpm +md5 = c47756b33b72e7c8ca5bbd786ac8b21a +source = repo:rhel-7-server-rpms + +[rubygem-bigdecimal-1.2.0-25.el7_1] +file = rubygem-bigdecimal-1.2.0-25.el7_1.x86_64.rpm +md5 = 4ea63d60bdd618cf3988b1ccba7a4fd8 +source = repo:rhel-7-server-rpms + +[rubygem-io-console-0.4.2-25.el7_1] +file = rubygem-io-console-0.4.2-25.el7_1.x86_64.rpm +md5 = 5fc6258bdb0b49ed3c1a83d5800bef26 +source = repo:rhel-7-server-rpms + +[rubygem-json-1.7.7-25.el7_1] +file = rubygem-json-1.7.7-25.el7_1.x86_64.rpm +md5 = 78192a2295837163dcca5bbcfcd74c92 +source = repo:rhel-7-server-rpms + +[rubygem-psych-2.0.0-25.el7_1] +file = rubygem-psych-2.0.0-25.el7_1.x86_64.rpm +md5 = 01fd631326092d1bbf231fee55b34832 +source = repo:rhel-7-server-rpms + +[rubygem-rdoc-4.0.0-25.el7_1] +file = rubygem-rdoc-4.0.0-25.el7_1.noarch.rpm +md5 = ee0ca330c4b7ee14b99aedec8b1c8a85 +source = repo:rhel-7-server-rpms + +[rubygems-2.0.14-25.el7_1] +file = rubygems-2.0.14-25.el7_1.noarch.rpm +md5 = 9596b1fadc655166013a6448ff7889fb +source = repo:rhel-7-server-rpms + +[saslwrapper-0.22-5.el7] +file = saslwrapper-0.22-5.el7.x86_64.rpm +md5 = 6054001729c0d3afe62ae774cd9e7f82 +source = repo:RH7-RHOS-8.0 + +[satyr-0.13-12.el7] +file = satyr-0.13-12.el7.x86_64.rpm +md5 = 3c6b37c6746399164d5a6c7a6daae956 +source = repo:rhel-7-server-rpms + +[scrub-2.5.2-5.el7] +file = scrub-2.5.2-5.el7.x86_64.rpm +md5 = d841d420ea819e4a35c56426839991ff +source = repo:rhel-7-server-rpms + +[seabios-bin-1.7.5-11.el7] +file = seabios-bin-1.7.5-11.el7.noarch.rpm +md5 = a3e580e579251f06e56f123e49d8405a +source = repo:rhel-7-server-rpms + +[seavgabios-bin-1.7.5-11.el7] +file = seavgabios-bin-1.7.5-11.el7.noarch.rpm +md5 = c037c294b000b22a0aa580bc80c14a3d +source = repo:rhel-7-server-rpms + +[selinux-policy-3.13.1-60.el7_2.3] +file = selinux-policy-3.13.1-60.el7_2.3.noarch.rpm +md5 = 1bf5183d8cc467d0604dae1aebb7431d +source = repo:rhel-7-server-rpms + +[selinux-policy-targeted-3.13.1-60.el7_2.3] +file = selinux-policy-targeted-3.13.1-60.el7_2.3.noarch.rpm +md5 = 87ace52af1653fe912da0b8c801eeeb1 +source = repo:rhel-7-server-rpms + +[setools-libs-3.3.7-46.el7] +file = setools-libs-3.3.7-46.el7.x86_64.rpm +md5 = 670b282da27b7d1bf5492262fba66093 +source = repo:rhel-7-server-rpms + +[setup-2.8.71-6.el7] +file = setup-2.8.71-6.el7.noarch.rpm +md5 = cb107cdd40e25e66836b3e85b4bfa63d +source = repo:rhel-7-server-rpms + +[sg3_utils-1.37-5.el7] +file = sg3_utils-1.37-5.el7.x86_64.rpm +md5 = e879cf8d05023ac1ea0deec875d16a1c +source = repo:rhel-7-server-rpms + +[sg3_utils-libs-1.37-5.el7] +file = sg3_utils-libs-1.37-5.el7.x86_64.rpm +md5 = 5d09af0e7658889c7386deca49c22077 +source = repo:rhel-7-server-rpms + +[sgabios-bin-0.20110622svn-4.el7] +file = sgabios-bin-0.20110622svn-4.el7.noarch.rpm +md5 = 7dd4a80f6e40d635dd9c4b700f8af441 +source = repo:rhel-7-server-rpms + +[shared-mime-info-1.1-9.el7] +file = shared-mime-info-1.1-9.el7.x86_64.rpm +md5 = a29bb55a53b9dec40838d77dafe5f102 +source = repo:rhel-7-server-rpms + +[slf4j-1.7.4-3.el7] +file = slf4j-1.7.4-3.el7.noarch.rpm +md5 = 31d2c429a5fc22e84bd73f3907625cf2 +source = repo:rhel-7-server-rpms + +[sos-3.2-35.el7_2.3] +file = sos-3.2-35.el7_2.3.noarch.rpm +md5 = ba6d1a4bcb3b7373492f6d612b9092e3 +source = repo:rhel-7-server-rpms + +[spice-server-0.12.4-15.el7] +file = spice-server-0.12.4-15.el7.x86_64.rpm +md5 = 3957e6385adaa8ae6d4c95d1a15d3101 +source = repo:rhel-7-server-rpms + +[sqlite-3.7.17-8.el7] +file = sqlite-3.7.17-8.el7.x86_64.rpm +md5 = 0ca40d81ee890fa2c002a522a017e9ee +source = repo:rhel-7-server-rpms + +[subscription-manager-1.15.9-15.el7] +file = subscription-manager-1.15.9-15.el7.x86_64.rpm +md5 = 7b3f6968a03c0d68fe8e1ad599b4a27b +source = repo:rhel-7-server-rpms + +[sudo-1.8.6p7-17.el7_2] +file = sudo-1.8.6p7-17.el7_2.x86_64.rpm +md5 = 2ae38d313566f9c5a4fc443975d1fcdd +source = repo:rhel-7-server-rpms + +[supermin5-5.1.10-1.2.el7] +file = supermin5-5.1.10-1.2.el7.x86_64.rpm +md5 = 7409f58bdfb7a798e329588ab57219f4 +source = repo:rhel-7-server-rpms + +[sysfsutils-2.1.0-16.el7] +file = sysfsutils-2.1.0-16.el7.x86_64.rpm +md5 = d9dc4bcf739073c583e3c42e0b199b48 +source = repo:rhel-7-server-rpms + +[syslinux-4.05-12.el7] +file = syslinux-4.05-12.el7.x86_64.rpm +md5 = 0ba98d85678eb8d35d67aaff5536a669 +source = repo:rhel-7-server-rpms + +[syslinux-extlinux-4.05-12.el7] +file = syslinux-extlinux-4.05-12.el7.x86_64.rpm +md5 = eef4467cc04f7022d3ce5b82b1054a7a +source = repo:rhel-7-server-rpms + +[systemd-219-19.el7_2.7] +file = systemd-219-19.el7_2.7.x86_64.rpm +md5 = e3a565c3f88e647e6ed4bc9b40d7c19f +source = repo:rhel-7-server-rpms + +[systemd-libs-219-19.el7_2.7] +file = systemd-libs-219-19.el7_2.7.x86_64.rpm +md5 = 3b7e35ee64ff9aab2acb50cd9faa9b07 +source = repo:rhel-7-server-rpms + +[systemd-sysv-219-19.el7_2.7] +file = systemd-sysv-219-19.el7_2.7.x86_64.rpm +md5 = 21e75be5c4fe3fa5536cb2aa9d002116 +source = repo:rhel-7-server-rpms + +[tcp_wrappers-7.6-77.el7] +file = tcp_wrappers-7.6-77.el7.x86_64.rpm +md5 = 36716904a36af40a56895f8425e61d36 +source = repo:rhel-7-server-rpms + +[teamd-1.17-6.el7_2] +file = teamd-1.17-6.el7_2.x86_64.rpm +md5 = 434255d595c9d442e1d559cf94def445 +source = repo:rhel-7-server-rpms + +[tomcat-servlet-3.0-api-7.0.54-2.el7_1] +file = tomcat-servlet-3.0-api-7.0.54-2.el7_1.noarch.rpm +md5 = 61bf7717942f30f716a24483e2cd416e +source = repo:rhel-7-server-rpms + +[trousers-0.3.13-1.el7] +file = trousers-0.3.13-1.el7.x86_64.rpm +md5 = f0dcdd8cc767f97306cc26034e16d8d0 +source = repo:rhel-7-server-rpms + +[ttmkfdir-3.0.9-42.el7] +file = ttmkfdir-3.0.9-42.el7.x86_64.rpm +md5 = 4df04f7024ccb138c91d6f793ec3783d +source = repo:rhel-7-server-rpms + +[tuned-2.5.1-4.el7_2.3] +file = tuned-2.5.1-4.el7_2.3.noarch.rpm +md5 = b27c07f436232f34763ddd775a694589 +source = repo:rhel-7-server-rpms + +[tzdata-2016c-1.el7] +file = tzdata-2016c-1.el7.noarch.rpm +md5 = 383374add8529ff8d0b69d30bcbd9d85 +source = repo:rhel-7-server-rpms + +[tzdata-java-2016c-1.el7] +file = tzdata-java-2016c-1.el7.noarch.rpm +md5 = dcc9ac2ed5fb56169f0e7b6465855071 +source = repo:rhel-7-server-rpms + +[unbound-libs-1.4.20-26.el7] +file = unbound-libs-1.4.20-26.el7.x86_64.rpm +md5 = 900bdb9257bf5ebd37853ad7bd5fa56c +source = repo:rhel-7-server-rpms + +[urw-fonts-2.4-16.el7] +file = urw-fonts-2.4-16.el7.noarch.rpm +md5 = 7751c841b34e643e632e2daf1773bd77 +source = repo:rhel-7-server-rpms + +[usbredir-0.6-7.el7] +file = usbredir-0.6-7.el7.x86_64.rpm +md5 = 5c04d6d2d1d3af47ce95e2fab2927f4b +source = repo:rhel-7-server-rpms + +[util-linux-2.23.2-26.el7_2.2] +file = util-linux-2.23.2-26.el7_2.2.x86_64.rpm +md5 = 9f7720e43d9d6e9efac4a81858a557aa +source = repo:rhel-7-server-rpms + +[virt-what-1.13-6.el7] +file = virt-what-1.13-6.el7.x86_64.rpm +md5 = f145438a6c97498c6c09d7b774491710 +source = repo:rhel-7-server-rpms + +[wpa_supplicant-2.0-17.el7_1] +file = wpa_supplicant-2.0-17.el7_1.x86_64.rpm +md5 = 46671b010374233ac60adfcc9b97c5e6 +source = repo:rhel-7-server-rpms + +[xalan-j2-2.7.1-23.el7] +file = xalan-j2-2.7.1-23.el7.noarch.rpm +md5 = b47a0d86c3414e0a421181ff8420eeef +source = repo:rhel-7-server-rpms + +[xerces-j2-2.11.0-17.el7_0] +file = xerces-j2-2.11.0-17.el7_0.noarch.rpm +md5 = 7463749f336e09189ba9ef76051d860a +source = repo:rhel-7-server-rpms + +[xfsprogs-3.2.2-2.el7] +file = xfsprogs-3.2.2-2.el7.x86_64.rpm +md5 = e10195e6f1581e30ea1e0d58022d1bd6 +source = repo:rhel-7-server-rpms + +[xml-commons-apis-1.4.01-16.el7] +file = xml-commons-apis-1.4.01-16.el7.noarch.rpm +md5 = 4a2b561477bef8d607ddee318305c637 +source = repo:rhel-7-server-rpms + +[xml-commons-resolver-1.2-15.el7] +file = xml-commons-resolver-1.2-15.el7.noarch.rpm +md5 = 6ad2e3ac8ae2a1b938ce5608b3c39966 +source = repo:rhel-7-server-rpms + +[xmlrpc-c-1.32.5-1905.svn2451.el7] +file = xmlrpc-c-1.32.5-1905.svn2451.el7.x86_64.rpm +md5 = 1d6c7535c61a1b311a4b3b3be80452ed +source = repo:rhel-7-server-rpms + +[xmlrpc-c-client-1.32.5-1905.svn2451.el7] +file = xmlrpc-c-client-1.32.5-1905.svn2451.el7.x86_64.rpm +md5 = 06e75be1937f43c08d4b7f1df7e9ed3d +source = repo:rhel-7-server-rpms + +[xorg-x11-font-utils-7.5-20.el7] +file = xorg-x11-font-utils-7.5-20.el7.x86_64.rpm +md5 = 0e68bcb675e5454a085a4fbad1e55978 +source = repo:rhel-7-server-rpms + +[xorg-x11-fonts-Type1-7.5-9.el7] +file = xorg-x11-fonts-Type1-7.5-9.el7.noarch.rpm +md5 = 7af27a9be2944d3b82b87cfb65320fd7 +source = repo:rhel-7-server-rpms + +[xz-5.1.2-12alpha.el7] +file = xz-5.1.2-12alpha.el7.x86_64.rpm +md5 = 8bbe067ea577c797bd9b669fa15e5e73 +source = repo:rhel-7-server-rpms + +[xz-libs-5.1.2-12alpha.el7] +file = xz-libs-5.1.2-12alpha.el7.x86_64.rpm +md5 = a6b0925968fc1c2c838095f77f3fa509 +source = repo:rhel-7-server-rpms + +[yajl-2.0.4-4.el7] +file = yajl-2.0.4-4.el7.x86_64.rpm +md5 = fb79cf841269e6d52efe9aa9ab960b59 +source = repo:rhel-7-server-rpms + +[yum-3.4.3-132.el7] +file = yum-3.4.3-132.el7.noarch.rpm +md5 = 08790b1f792ff3cbe27d994c8ef2b75a +source = repo:rhel-7-server-rpms + +[yum-utils-1.1.31-34.el7] +file = yum-utils-1.1.31-34.el7.noarch.rpm +md5 = 49196a26d87738732389aa68cb8a920d +source = repo:rhel-7-server-rpms + +[zlib-1.2.7-15.el7] +file = zlib-1.2.7-15.el7.x86_64.rpm +md5 = 50607e3b4f561c1592f49c4b2966c4d2 +source = repo:rhel-7-server-rpms + diff --git a/build/package_configs/ubuntu1404/icehouse/depends_contrail_dependent_packages.cfg b/build/package_configs/ubuntu1404/icehouse/depends_contrail_dependent_packages.cfg index 0ba7087b5..2f7087b87 100644 --- a/build/package_configs/ubuntu1404/icehouse/depends_contrail_dependent_packages.cfg +++ b/build/package_configs/ubuntu1404/icehouse/depends_contrail_dependent_packages.cfg @@ -851,14 +851,34 @@ md5 = 5746e3f726d3828c48de16e4b37c7b75 file = linux-headers-3.13.0-40_3.13.0-40.69_all.deb md5 = 2a60945600c4429f426dd7cadc6c73df +[linux-headers-3.13.0-83-generic_3.13.0-83.127] +file = linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 5df332a60e776a0d0e79e54bdb291707 +source = repo:trusty-security/main/ + +[linux-headers-3.13.0-83_3.13.0-83.127] +file = linux-headers-3.13.0-83_3.13.0-83.127_all.deb +md5 = 50bf914d576b43b2e28c1862c3638c82 +source = repo:trusty-security/main/ + [linux-image-3.13.0-40-generic_3.13.0-40.69] file = linux-image-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = a6ba0601c1f8662cad6604dfd9d070b0 +[linux-image-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 1488cbc687bebc497f2112f93131a727 +source = repo:trusty-security/main/ + [linux-image-extra-3.13.0-40-generic_3.13.0-40.69] file = linux-image-extra-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = 3b38dc787fcf8b8a1ccd89e60077df58 +[linux-image-extra-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-extra-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 4832e8b6a6654b8d20ae53f279ff878d +source = repo:trusty-security/main/ + [lksctp-tools_1.0.15+dfsg-1] file = lksctp-tools_1.0.15+dfsg-1_amd64.deb md5 = 39373482904f27eddebcef56b9bcf13f diff --git a/build/package_configs/ubuntu1404/icehouse/depends_contrail_thirdparty_packages.cfg b/build/package_configs/ubuntu1404/icehouse/depends_contrail_thirdparty_packages.cfg index b82c6407c..5f11ad0a6 100644 --- a/build/package_configs/ubuntu1404/icehouse/depends_contrail_thirdparty_packages.cfg +++ b/build/package_configs/ubuntu1404/icehouse/depends_contrail_thirdparty_packages.cfg @@ -39,9 +39,9 @@ md5 = 4eb0787e2b58770b69ce443e9304537f file = euca2ools_2.1.3-2_amd64.deb md5 = dbb31fc15f00847c3e9e46dc957795c5 -[kafka_2.10-0.9.0.0-SNAPSHOT-0contrail0] -file = kafka_2.10-0.9.0.0-SNAPSHOT-0contrail0_amd64.deb -md5 = 50691908d039dd33ef314c77316aeb28 +[kafka_2.11-0.9.0.1-0contrail0] +file = kafka_2.11-0.9.0.1-0contrail0_amd64.deb +md5 = 38a41e87cddd1a8b893b3c8c3c212b24 [librdkafka-dev_0.8.5-2-0contrail0.14.04] file = librdkafka-dev_0.8.5-2-0contrail0.14.04_amd64.deb @@ -63,9 +63,9 @@ md5 = d29d2a9f3ff8710e89b9a09bd26494d1 file = python-backports.ssl-match-hostname_3.4.0.2-1contrail1_all.deb md5 = 243c920a5c91d12801c525f3dcd2a6d1 -[python-certifi_1.0.1-1contrail1] -file = python-certifi_1.0.1-1contrail1_all.deb -md5 = 46ab19b4096c653c10854f5c5e735f1c +[python-certifi_2015.11.20.1-2] +file = python-certifi_2015.11.20.1-2_all.deb +md5 = 760985befd8570b30f5ae928862fa8ff [python-consistent-hash_1.0-0contrail1] file = python-consistent-hash_1.0-0contrail1_amd64.deb @@ -75,17 +75,13 @@ md5 = 6ba90f706ec78584adb3a15657f290e3 file = python-geventhttpclient_1.1.0-1contrail1_amd64.deb md5 = 1a00d30b23e355a014e90b75243f3227 -[python-kafka-python_0.9.2-0contrail0] -file = python-kafka-python_0.9.2-0contrail0_all.deb -md5 = ca72ef4061c3f6a6a1c4f3b3e1b3bc84 +[python-kafka_1.0.1-0contrail0] +file = python-kafka_1.0.1-0contrail0_amd64.deb +md5 = e8e1d6233260caa5d4478c639b04afcd -[python-kafka_0.9.3-2+syseleven1_all] -file = python-kafka_0.9.3-2+syseleven1_all.deb -md5 = d00fb946087ded001c2c89be6cfba320 - -[python-kazoo_1.3.1-1contrail2] -file = python-kazoo_1.3.1-1contrail2_all.deb -md5 = 1160ffdc6faa72bfb6f027f5e7b18bb1 +[python-kazoo_1.3.1-1contrail3] +file = python-kazoo_1.3.1-1contrail3_all.deb +md5 = 38502c6e569c1cbbae108ff110b80763 [python-ncclient_0.4.1-1contrail1] file = python-ncclient_0.4.1-1contrail1_all.deb diff --git a/build/package_configs/ubuntu1404/icehouse/depends_server_manager_packages.cfg b/build/package_configs/ubuntu1404/icehouse/depends_server_manager_packages.cfg index e448136a2..122268e75 100644 --- a/build/package_configs/ubuntu1404/icehouse/depends_server_manager_packages.cfg +++ b/build/package_configs/ubuntu1404/icehouse/depends_server_manager_packages.cfg @@ -69,8 +69,8 @@ file = supervisor_3.0r1-1_all.deb md5 = 368bfa94087bdc5eca01eae1ecc87335 [server-mgr-python-kazoo] -file = python-kazoo_1.3.1-1contrail2_all.deb -md5 = 1160ffdc6faa72bfb6f027f5e7b18bb1 +file = python-kazoo_1.3.1-1contrail3_all.deb +md5 = 38502c6e569c1cbbae108ff110b80763 [server-mgr-python-consistent-hash] file = python-consistent-hash_1.0-0contrail1_amd64.deb diff --git a/build/package_configs/ubuntu1404/juno/contrail_packages.cfg b/build/package_configs/ubuntu1404/juno/contrail_packages.cfg index 7297f4a14..d60a5f331 100644 --- a/build/package_configs/ubuntu1404/juno/contrail_packages.cfg +++ b/build/package_configs/ubuntu1404/juno/contrail_packages.cfg @@ -43,12 +43,16 @@ pkgs = contrail-analytics, contrail-config, contrail-control, contrail-lib, contrail-nova-driver, contrail-vrouter-agent, contrail-vrouter-dkms, contrail-vrouter-dpdk, contrail-vrouter-source, contrail-vrouter-utils, python-contrail, python-contrail-vrouter-api, - contrail-vrouter-3.13.0-40-generic, contrail-config-openstack, + contrail-vrouter-3.13.0-85-generic, contrail-config-openstack, contrail-dns, python-opencontrail-vrouter-netns, contrail-utils, contrail-nodemgr, contrail-docs makeloc = tools/packaging/common/debian builtloc = build/packages +[contrail-database-common-deb] +pkgs = contrail-database-common +makeloc = tools/packaging/common/debian + [contrail-heat-deb] pkgs = contrail-heat makeloc = tools/packaging/common/debian diff --git a/build/package_configs/ubuntu1404/juno/depends_contrail_dependent_packages.cfg b/build/package_configs/ubuntu1404/juno/depends_contrail_dependent_packages.cfg index dadd3f539..059e1eac3 100644 --- a/build/package_configs/ubuntu1404/juno/depends_contrail_dependent_packages.cfg +++ b/build/package_configs/ubuntu1404/juno/depends_contrail_dependent_packages.cfg @@ -19,6 +19,12 @@ # # then that package file will be packaged in # # the wrapper package contrail-dependent-packages # +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded # **************************************************************************** [DEFAULT] @@ -30,2339 +36,2402 @@ package_type = contrail-install-packages, contrail-dependent-packages [acl_2.2.52-1] file = acl_2.2.52-1_amd64.deb md5 = ac8db6aa2095dfd83758db34cf31285a -source = repo:trusty +source = repo:trusty/main/ [alembic_0.6.5+ds-1~cloud2] file = alembic_0.6.5+ds-1~cloud2_all.deb md5 = eab90f4c3e67a8f1bc6134ce9b0f38a4 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ -[apache2-bin_2.4.7-1ubuntu4.8] -file = apache2-bin_2.4.7-1ubuntu4.8_amd64.deb -md5 = f415fae084e9abbe090cfeaa2fcada2d -source = repo:trusty-updates +[apache2-bin_2.4.7-1ubuntu4.13] +file = apache2-bin_2.4.7-1ubuntu4.13_amd64.deb +md5 = 1f09b5285104ba0092e87107edb50eb8 +source = repo:trusty-updates/main/ -[apache2-data_2.4.7-1ubuntu4.8] -file = apache2-data_2.4.7-1ubuntu4.8_all.deb -md5 = 86a7531da8ded786b28b81f622b46cb6 -source = repo:trusty-updates +[apache2-data_2.4.7-1ubuntu4.13] +file = apache2-data_2.4.7-1ubuntu4.13_all.deb +md5 = a364bd616d825751ecc5d5bbaf6a7aab +source = repo:trusty-updates/main/ -[apache2_2.4.7-1ubuntu4.8] -file = apache2_2.4.7-1ubuntu4.8_amd64.deb -md5 = 80b29b3ff6f04d37e67fd4aa849997a6 -source = repo:trusty-updates +[apache2_2.4.7-1ubuntu4.13] +file = apache2_2.4.7-1ubuntu4.13_amd64.deb +md5 = de253bd50cfe1b961ff934b784095bd7 +source = repo:trusty-updates/main/ [apport-symptoms_0.20] file = apport-symptoms_0.20_all.deb md5 = 089a296892f64423dcd98987979c871e -source = repo:trusty +source = repo:trusty/main/ -[apport_2.14.1-0ubuntu3.19] -file = apport_2.14.1-0ubuntu3.19_all.deb -md5 = 3d5820d58e47fc86c1b1a9ce7f3b17f1 -source = repo:trusty-updates +[apport_2.14.1-0ubuntu3.21] +file = apport_2.14.1-0ubuntu3.21_all.deb +md5 = 9e0cac0cb024b9470d668361f7587687 +source = repo:trusty-updates/main/ [aufs-tools_1:3.2+20130722-1.1] file = aufs-tools_1%%3a3.2+20130722-1.1_amd64.deb md5 = 971d9f80df61d9398f7356e60e1c3723 -source = repo:trusty +source = repo:trusty/universe/ -[augeas-lenses_1.2.0-0ubuntu1.1] -file = augeas-lenses_1.2.0-0ubuntu1.1_all.deb -md5 = 60bb4a95db770d3bacc69df04fc6e080 -source = repo:trusty-updates +[augeas-lenses_1.2.0-0ubuntu1.2] +file = augeas-lenses_1.2.0-0ubuntu1.2_all.deb +md5 = 2a64ec1748107102185d807a8fdc493f +source = repo:trusty-updates/main/ [authbind_2.1.1] file = authbind_2.1.1_amd64.deb md5 = 970d73e2beae6852c8af26a9b3ae1794 -source = repo:trusty +source = repo:trusty/main/ -[biosdevname_0.4.1-0ubuntu6.2] -file = biosdevname_0.4.1-0ubuntu6.2_amd64.deb -md5 = 0eac8211168b04c8e86e31fbd7726921 -source = repo:trusty-updates +[biosdevname_0.4.1-0ubuntu6.3] +file = biosdevname_0.4.1-0ubuntu6.3_amd64.deb +md5 = bc837d60b1c558c6424309a446420b0d +source = repo:trusty-updates/main/ [bridge-utils_1.5-6ubuntu2] file = bridge-utils_1.5-6ubuntu2_amd64.deb md5 = 23f37038baab928f276fb1aa2fd0a6c2 -source = repo:trusty +source = repo:trusty/main/ -[btrfs-tools_3.12-1] -file = btrfs-tools_3.12-1_amd64.deb -md5 = e69af23a733d56e13072fd5b8689892d -source = repo:trusty +[btrfs-tools_3.12-1ubuntu0.1] +file = btrfs-tools_3.12-1ubuntu0.1_amd64.deb +md5 = 4a47a743970471e37b9b6e59419bf4c5 +source = repo:trusty-updates/main/ [ca-certificates-java_20130815ubuntu1] file = ca-certificates-java_20130815ubuntu1_all.deb md5 = efc4948adfc7855968db71d52b181af0 -source = repo:trusty - -[cassandra_2.0.17] -file = cassandra_2.0.17_all.deb -md5 = 0efe0697f9129037c6bfa0514d2b26d2 -source = repo:contrail-thirdparty +source = repo:trusty/main/ -[cassandra_2.1.9] -file = cassandra_2.1.9_all.deb -md5 = 4dcdf43471d6bcbef7ad3b79f63bd8b1 -source = repo:contrail-thirdparty - -[cassandra-cpp-driver_2.2.0-1] -file = cassandra-cpp-driver_2.2.0-1_amd64.deb -md5 = 3f19fb659f3233ff35d1c1168668b08d -source = repo:contrail-thirdparty +[cgmanager_0.24-0ubuntu7.5] +file = cgmanager_0.24-0ubuntu7.5_amd64.deb +md5 = a6ab4eac3831bfe50ca2b47da9e169ff +source = repo:trusty-updates/main/ [cgroup-lite_1.9] file = cgroup-lite_1.9_all.deb md5 = fe1749ba83aaf6d4f3e87ccdbc3581d4 -source = repo:trusty +source = repo:trusty/main/ + +[cloud-image-utils_0.27-0ubuntu9.2] +file = cloud-image-utils_0.27-0ubuntu9.2_all.deb +md5 = 469f63c7e762e466de62d6ee3483e0a0 +source = repo:trusty-updates/main/ [cpu-checker_0.7-0ubuntu4] file = cpu-checker_0.7-0ubuntu4_amd64.deb md5 = 4369a69e41e5b78ab7a4623405455443 -source = repo:trusty +source = repo:trusty/main/ -[crash_7.0.3-3ubuntu4.3] -file = crash_7.0.3-3ubuntu4.3_amd64.deb -md5 = 6ea6f22f82d594113c64f95838b47e01 -source = repo:trusty-updates +[crash_7.0.3-3ubuntu4.4] +file = crash_7.0.3-3ubuntu4.4_amd64.deb +md5 = 41f05464997fe498fdabc96691143b4d +source = repo:trusty-updates/main/ [crda_1.1.2-1ubuntu2] file = crda_1.1.2-1ubuntu2_amd64.deb md5 = 32deec596ebb61ddb797eea98e4ef5c3 -source = repo:trusty +source = repo:trusty/main/ + +[crudini_0.3-1] +file = crudini_0.3-1_amd64.deb +md5 = 53f6b8981076afc2fe5f545a87426cdd +source = repo:trusty/universe/ + +[debootstrap_1.0.59ubuntu0.5] +file = debootstrap_1.0.59ubuntu0.5_all.deb +md5 = 6e88e963db54505d5c66d15e573acfc0 +source = repo:trusty-updates/main/ [default-jre-headless_2:1.7-51] file = default-jre-headless_2%%3a1.7-51_amd64.deb md5 = 82babba8748dca94fddb6449c2e0c38e -source = repo:trusty +source = repo:trusty/main/ -[dkms_2.2.0.3-1.1ubuntu5.14.04.5] -file = dkms_2.2.0.3-1.1ubuntu5.14.04.5_all.deb -md5 = 2d543ccc913282f2958fe61690a92931 -source = repo:trusty-updates +[distro-info-data_0.18ubuntu0.5] +file = distro-info-data_0.18ubuntu0.5_all.deb +md5 = 808bf458a5accb5c3a577542ed987d85 +source = repo:trusty-updates/main/ + +[distro-info_0.12] +file = distro-info_0.12_amd64.deb +md5 = 9ef931be8d7d79498793d17661ecc224 +source = repo:trusty/main/ + +[dkms_2.2.0.3-1.1ubuntu5.14.04.7] +file = dkms_2.2.0.3-1.1ubuntu5.14.04.7_all.deb +md5 = fab70a6c4f896c686947a0f2380b179b +source = repo:trusty-updates/main/ [dnsmasq-base_2.68-1ubuntu0.1] file = dnsmasq-base_2.68-1ubuntu0.1_amd64.deb md5 = aaee558be8eddbbdc86bb0623152786d -source = repo:trusty-updates +source = repo:trusty-updates/main/ [docutils-common_0.11-3] file = docutils-common_0.11-3_all.deb md5 = 8fcd1b48d490c1a16bc307cf51b29e88 -source = repo:trusty +source = repo:trusty/main/ [docutils-doc_0.11-3] file = docutils-doc_0.11-3_all.deb md5 = 78df317de3c8cbcdc76ec4c78d2d5921 -source = repo:trusty +source = repo:trusty/main/ [ebtables_2.0.10.4-3ubuntu1] file = ebtables_2.0.10.4-3ubuntu1_amd64.deb md5 = f96583701c00105823f3f47dea83d916 -source = repo:trusty +source = repo:trusty/main/ [erlang-asn1_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-asn1_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 575fef7263a448cdf324913398f8ec0f -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-base_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-base_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 99b0855a597d569ddc43c0041677ca96 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-corba_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-corba_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = f29d5d35aeae497c07371e8a752e97ea -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-crypto_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-crypto_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 035e43b5d7eb117b25a28e830fc2bcbb -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-diameter_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-diameter_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 88161ebc93abeaa2b2914761e460f96c -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-edoc_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-edoc_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 1b55de3e45ceaa88f508a62d53c00fb1 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-eldap_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-eldap_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = cc629b93dd39fff38252b710469f2326 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-erl-docgen_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-erl-docgen_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 9628a630a43a2a8a4479807ae96e1f09 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-eunit_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-eunit_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 6243705eccf17e2912b6ebc083601c77 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-ic_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-ic_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 043e80620c4881143e29f7a988d4e798 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-inets_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-inets_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = f8636c11531196fe9de2be45fdfe08e1 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-mnesia_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-mnesia_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = eff8aab35c9b4801ddd5c774f1aceb90 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-nox_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-nox_1%%3a16.b.3-dfsg-1ubuntu2.1_all.deb md5 = 9dfd1c17ee88f9b72090daabe3f8e731 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-odbc_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-odbc_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = b042165d0ec717297d597f4b90bda232 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-os-mon_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-os-mon_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 53f05b6f3005de0878ce1ee92ba3e188 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-parsetools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-parsetools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 1f0c6e2cba3372c40dc6ee76ec12e7fd -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-percept_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-percept_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 15655c734c0029fab92eb868329510c0 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-public-key_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-public-key_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 7518584093a1a7f99567e7493098c611 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-runtime-tools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-runtime-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 784a09013c958b70fb1bf345c3a23c7a -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-snmp_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-snmp_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = eee18402acd25f7e8c2c31ce26a258c7 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-ssh_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-ssh_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 4e1fe0602a2faa427bac96c6f5081811 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-ssl_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-ssl_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 07531a5126d16f130b5f14d6803112b8 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-syntax-tools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-syntax-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = c0ace3059416c0ddabaea1e4dd873643 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-tools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 828f36449d9ce99a9390d70525db6ffc -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-webtool_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-webtool_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 6327bcd344ac21dfc5ab2efe79112834 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-xmerl_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-xmerl_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 46a5494bcf5589a86a65fb75f20207cb -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[euca2ools_3.0.2-1ubuntu1] +file = euca2ools_3.0.2-1ubuntu1_all.deb +md5 = c4010c39e3a5e0a490a0d038ae9f5166 +source = repo:trusty/main/ [ethtool_1:3.13-1] file = ethtool_1%%3a3.13-1_amd64.deb md5 = b23c4d504e5b13decc47276ee40927b6 -source = repo:trusty +source = repo:trusty/main/ -[fontconfig-config_2.11.0-0ubuntu4.1] -file = fontconfig-config_2.11.0-0ubuntu4.1_all.deb -md5 = cb98cb28b96d218db9df3af4538a3658 -source = repo:trusty-updates +[fontconfig-config_2.11.0-0ubuntu4.2] +file = fontconfig-config_2.11.0-0ubuntu4.2_all.deb +md5 = 0810d79c48f4cc873a73a721b6f51806 +source = repo:trusty-updates/main/ [fonts-dejavu-core_2.34-1ubuntu1] file = fonts-dejavu-core_2.34-1ubuntu1_all.deb md5 = 7167c133d8ec713c90fc64faab927994 -source = repo:trusty - -[galera_25.2.9] -file = galera-25.2.9-amd64.deb -md5 = 7602c095d5d42661019bd45221615d4a -source = repo:contrail-thirdparty +source = repo:trusty/main/ [gawk_1:4.0.1+dfsg-2.1ubuntu2] file = gawk_1%%3a4.0.1+dfsg-2.1ubuntu2_amd64.deb md5 = 799aeb4150f914136decbe942ef7de9a -source = repo:trusty - -[gcc-4.8-base_4.8.4-2ubuntu1] -file = gcc-4.8-base_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = c573cb28348168922145e6fcb8120fd9 -source = repo:trusty-updates +source = repo:trusty/main/ -[gcc-4.9-base_4.9.1-0ubuntu1] -file = gcc-4.9-base_4.9.1-0ubuntu1_amd64.deb -md5 = 8c2a769fa9c164113a8123f044588f1f -source = repo:trusty-updates +[gcc-4.9-base_4.9.3-0ubuntu4] +file = gcc-4.9-base_4.9.3-0ubuntu4_amd64.deb +md5 = 2a82562d728f4d245ca8309206c45635 +source = repo:trusty-updates/main/ [genisoimage_9:1.1.11-2ubuntu3] file = genisoimage_9%%3a1.1.11-2ubuntu3_amd64.deb md5 = 69f0b6dcc3cc655d1ab27ca2aadb32b6 -source = repo:trusty - -[git-man_1:1.9.1-1ubuntu0.1] -file = git-man_1%%3a1.9.1-1ubuntu0.1_all.deb -md5 = 9d09a4bd2306edc6a8a1009cc4030bb8 -source = repo:trusty-updates - -[git_1:1.9.1-1ubuntu0.1] -file = git_1%%3a1.9.1-1ubuntu0.1_amd64.deb -md5 = ed0787d2ce3703e92ef9d286beec9488 -source = repo:trusty-updates - -[haproxy_1.5.4-1ppa1~precise] -file = haproxy_1.5.4-1ppa1~precise_amd64.deb -md5 = 808572e56bb7d65f8e7e21a3762bc3f4 -source = repo:contrail-thirdparty - -[icedtea-6-jre-cacao_6b36-1.13.8-0ubuntu1~14.04] -file = icedtea-6-jre-cacao_6b36-1.13.8-0ubuntu1~14.04_amd64.deb -md5 = 8e87a37234da608c4b964a11ed4c4165 -source = repo:trusty-updates - -[icedtea-6-jre-jamvm_6b36-1.13.8-0ubuntu1~14.04] -file = icedtea-6-jre-jamvm_6b36-1.13.8-0ubuntu1~14.04_amd64.deb -md5 = f292321a173c34e36bd6371d091dad72 -source = repo:trusty-updates - -[ifenslave-2.6_2.4ubuntu1.1] -file = ifenslave-2.6_2.4ubuntu1.1_all.deb -md5 = 064be806c4e17427b9647dda00b8f254 -source = repo:trusty-updates - -[ifenslave_2.4ubuntu1.1] -file = ifenslave_2.4ubuntu1.1_all.deb -md5 = 7828bf7eaea6da339778b0cce9dd32c3 -source = repo:trusty-updates +source = repo:trusty/main/ + +[git-man_1:1.9.1-1ubuntu0.3] +file = git-man_1%%3a1.9.1-1ubuntu0.3_all.deb +md5 = b9614019a1917fad0ff0edc6ddd53b91 +source = repo:trusty-updates/main/ + +[git_1:1.9.1-1ubuntu0.3] +file = git_1%%3a1.9.1-1ubuntu0.3_amd64.deb +md5 = 7ae18fa4b16c33b3ed506e23e7f26779 +source = repo:trusty-updates/main/ + +[icedtea-6-jre-cacao_6b39-1.13.11-0ubuntu0.14.04.1] +file = icedtea-6-jre-cacao_6b39-1.13.11-0ubuntu0.14.04.1_amd64.deb +md5 = 2f42f21b44ce7bb07f901774d4a36589 +source = repo:trusty-updates/universe/ + +[icedtea-6-jre-jamvm_6b39-1.13.11-0ubuntu0.14.04.1] +file = icedtea-6-jre-jamvm_6b39-1.13.11-0ubuntu0.14.04.1_amd64.deb +md5 = 14d7a45c2e34fa345f0540b5d9e7d5d5 +source = repo:trusty-updates/universe/ + +[ifenslave-2.6_2.4ubuntu1.2] +file = ifenslave-2.6_2.4ubuntu1.2_all.deb +md5 = 29f633fc0e2f9dfc30e81f4d0de3c4d9 +source = repo:trusty-updates/main/ + +[ifenslave_2.4ubuntu1.2] +file = ifenslave_2.4ubuntu1.2_all.deb +md5 = b0852693180ea4acd1e67dec4f4963fe +source = repo:trusty-updates/main/ [iproute2_3.12.0-2ubuntu1] file = iproute2_3.12.0-2ubuntu1_amd64.deb md5 = f339e9a5f3885356f3f89a2c39fa5cdd -source = repo:trusty-updates +source = repo:trusty-updates/main/ [iproute_1:3.12.0-2ubuntu1] file = iproute_1%%3a3.12.0-2ubuntu1_all.deb md5 = f20fa31756530920ae3c237b337dc7bc -source = repo:trusty-updates +source = repo:trusty-updates/main/ [ipset_6.20.1-1] file = ipset_6.20.1-1_amd64.deb md5 = 83afed4179463cff8ae0d85d2be1346b -source = repo:trusty +source = repo:trusty/universe/ [ipvsadm_1:1.26-2ubuntu1] file = ipvsadm_1%%3a1.26-2ubuntu1_amd64.deb md5 = d62d75f400a4466eded2949d91c40ff8 -source = repo:trusty +source = repo:trusty/main/ [ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1.1] file = ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1.1_all.deb md5 = 2ed810c34ce0682174eb97461673c00e -source = repo:trusty-updates +source = repo:trusty-updates/main/ [iw_3.4-1] file = iw_3.4-1_amd64.deb md5 = eede6190cb718a940f22a65e93ab77ee -source = repo:trusty +source = repo:trusty/main/ [java-common_0.51] file = java-common_0.51_all.deb md5 = c8352e7908b8a260b2657f9b80c08031 -source = repo:trusty +source = repo:trusty/main/ [javascript-common_11] file = javascript-common_11_all.deb md5 = 97257c1c7151131cd487ee09bbb1b653 -source = repo:trusty +source = repo:trusty/main/ [jsvc_1.0.15-5ubuntu2] file = jsvc_1.0.15-5ubuntu2_amd64.deb md5 = 25ed60e830fa2fda6edcebc69a91c4ed -source = repo:trusty +source = repo:trusty/universe/ -[kdump-tools_1.5.5-2ubuntu1.4] -file = kdump-tools_1.5.5-2ubuntu1.4_all.deb -md5 = 4dc4bd388944a15a6301144e43e45a02 -source = repo:trusty-updates +[kdump-tools_1.5.5-2ubuntu1.5] +file = kdump-tools_1.5.5-2ubuntu1.5_all.deb +md5 = 1ace74c48059ba8641dcae07b3cd1f8c +source = repo:trusty-updates/main/ [kexec-tools_1:2.0.6-0ubuntu2.2] file = kexec-tools_1%%3a2.0.6-0ubuntu2.2_amd64.deb md5 = fb0a3d4ec4528e33d9df31e53154ca40 -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[keystone_1:2014.2.3-0ubuntu1~cloud0] -file = keystone_1%%3a2014.2.3-0ubuntu1~cloud0_all.deb -md5 = fbbe49ce449d4f53738e6a6af3beac0e -source = repo:trusty-updates-juno +[keystone_1:2014.2.4-0ubuntu1~cloud2] +file = keystone_1%%3a2014.2.4-0ubuntu1~cloud2_all.deb +md5 = 37f16d19a403218a5a56209b0f877c63 +source = repo:trusty-updates-juno/main/ -[kpartx_0.4.9-3ubuntu7.4] -file = kpartx_0.4.9-3ubuntu7.4_amd64.deb -md5 = 9f46a3aca05620c74af8043510e71677 -source = repo:trusty-updates +[keyutils_1.5.6-1] +file = keyutils_1.5.6-1_amd64.deb +md5 = a49da8cb9cc16bdaf1ef8b205bf99d2e +source = repo:trusty/main/ + +[kpartx_0.4.9-3ubuntu7.13] +file = kpartx_0.4.9-3ubuntu7.13_amd64.deb +md5 = be61034339f4d0b5c30b201075006827 +source = repo:trusty-updates/main/ [libaio1_0.3.109-4] file = libaio1_0.3.109-4_amd64.deb md5 = cd9da2f52a5d7713e5080c5ed6916a41 -source = repo:trusty +source = repo:trusty/main/ [libapache2-mod-wsgi_3.4-4ubuntu2.1.14.04.2] file = libapache2-mod-wsgi_3.4-4ubuntu2.1.14.04.2_amd64.deb md5 = 2fd6d1f0e409388c117caa7178a0f924 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libapr1_1.5.0-1] file = libapr1_1.5.0-1_amd64.deb md5 = 710311d20d36259cb9beb6473e252c9a -source = repo:trusty +source = repo:trusty/main/ [libaprutil1-dbd-sqlite3_1.5.3-1] file = libaprutil1-dbd-sqlite3_1.5.3-1_amd64.deb md5 = f9d34d338d857020a9f329fdb37692ca -source = repo:trusty +source = repo:trusty/main/ [libaprutil1-ldap_1.5.3-1] file = libaprutil1-ldap_1.5.3-1_amd64.deb md5 = 78087b008a7705b2abc8800cabfacf37 -source = repo:trusty +source = repo:trusty/main/ [libaprutil1_1.5.3-1] file = libaprutil1_1.5.3-1_amd64.deb md5 = 91d3810e9d5f5012b36e6ab06037c532 -source = repo:trusty +source = repo:trusty/main/ [libasn1-8-heimdal_1.6~git20131207+dfsg-1ubuntu1.1] file = libasn1-8-heimdal_1.6~git20131207+dfsg-1ubuntu1.1_amd64.deb md5 = 16abda33b3052eba5f621dbc2f89ae99 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libasound2-data_1.0.27.2-3ubuntu7] file = libasound2-data_1.0.27.2-3ubuntu7_all.deb md5 = 1b78d6d03ed4303e843ba2c5bae3bc53 -source = repo:trusty +source = repo:trusty/main/ [libasound2_1.0.27.2-3ubuntu7] file = libasound2_1.0.27.2-3ubuntu7_amd64.deb md5 = 68d7619e0a70770c5feef628f8296409 -source = repo:trusty +source = repo:trusty/main/ [libasyncns0_0.8-4ubuntu2] file = libasyncns0_0.8-4ubuntu2_amd64.deb md5 = bf233bc958e37dab60c0f1ab7f8c6bf0 -source = repo:trusty +source = repo:trusty/main/ -[libaugeas0_1.2.0-0ubuntu1.1] -file = libaugeas0_1.2.0-0ubuntu1.1_amd64.deb -md5 = bed4213162bca8af578fb8b9b1f34c9f -source = repo:trusty-updates +[libaugeas0_1.2.0-0ubuntu1.2] +file = libaugeas0_1.2.0-0ubuntu1.2_amd64.deb +md5 = e6d726b1b212fcbd6c82247c1c92e8bc +source = repo:trusty-updates/main/ -[libavahi-client3_0.6.31-4ubuntu1] -file = libavahi-client3_0.6.31-4ubuntu1_amd64.deb -md5 = eec45ae98569b6479800e8b00739abb4 -source = repo:trusty +[libavahi-client3_0.6.31-4ubuntu1.1] +file = libavahi-client3_0.6.31-4ubuntu1.1_amd64.deb +md5 = a768c3a502a204fca430f98fab12d676 +source = repo:trusty-updates/main/ -[libavahi-common-data_0.6.31-4ubuntu1] -file = libavahi-common-data_0.6.31-4ubuntu1_amd64.deb -md5 = a1b4378b37be0edac4eb8f4b3bd12ec6 -source = repo:trusty +[libavahi-common-data_0.6.31-4ubuntu1.1] +file = libavahi-common-data_0.6.31-4ubuntu1.1_amd64.deb +md5 = 3878bcc211212dfe7158765344638d0f +source = repo:trusty-updates/main/ -[libavahi-common3_0.6.31-4ubuntu1] -file = libavahi-common3_0.6.31-4ubuntu1_amd64.deb -md5 = d63a809ea7ad51739547232994429cbb -source = repo:trusty +[libavahi-common3_0.6.31-4ubuntu1.1] +file = libavahi-common3_0.6.31-4ubuntu1.1_amd64.deb +md5 = ddf978df5cbc75ad174cd66db0d90846 +source = repo:trusty-updates/main/ [libblas3_1.2.20110419-7] file = libblas3_1.2.20110419-7_amd64.deb md5 = 3dc4c7e9af05c17cd1539b3415d870b8 -source = repo:trusty +source = repo:trusty/main/ [libbluetooth3_4.101-0ubuntu13.1] file = libbluetooth3_4.101-0ubuntu13.1_amd64.deb md5 = 0577a4e8b377f3751b018494096df9e4 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-chrono1.54.0_1.54.0-4ubuntu3.1] file = libboost-chrono1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 6afd51c2ce1c023fc2df50e2e70b07ed -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-filesystem1.54.0_1.54.0-4ubuntu3.1] file = libboost-filesystem1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = d4c687c97e90c678a7319fafba6081c8 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-program-options1.54.0_1.54.0-4ubuntu3.1] file = libboost-program-options1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 0c4fdd70ec7b36c5ddce304565a2dd02 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-python1.54.0_1.54.0-4ubuntu3.1] file = libboost-python1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = f8383cd7711ea48eea73763043f00f19 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-regex1.54.0_1.54.0-4ubuntu3.1] file = libboost-regex1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 4351519527cbfc93d2461cdd1c528ab2 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-system1.54.0_1.54.0-4ubuntu3.1] file = libboost-system1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 2a5872be9fcc3cc0a51d9ec0d42c41a7 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-thread1.54.0_1.54.0-4ubuntu3.1] file = libboost-thread1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 2e7b4afdd0d85037864a2c3e3ef19999 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libbrlapi0.6_5.0-2ubuntu2] file = libbrlapi0.6_5.0-2ubuntu2_amd64.deb md5 = d0072983318e559dc57fea88c494ed33 -source = repo:trusty +source = repo:trusty/main/ [libcaca0_0.99.beta18-1ubuntu5] file = libcaca0_0.99.beta18-1ubuntu5_amd64.deb md5 = 2532fc55507b526751257c826e6b1b43 -source = repo:trusty +source = repo:trusty/main/ [libcgmanager0_0.24-0ubuntu7.5] file = libcgmanager0_0.24-0ubuntu7.5_amd64.deb md5 = 83260cd2ce5650bb93714e216b638407 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libcomerr2_1.42.9-3ubuntu1.3] file = libcomerr2_1.42.9-3ubuntu1.3_amd64.deb md5 = a85e068dda1e8ed04d94405bd2f3358b -source = repo:trusty-updates +source = repo:trusty-security/main/ [libcommons-codec-java_1.9-1] file = libcommons-codec-java_1.9-1_all.deb md5 = a863c457f1bf27251f574c9827240a54 -source = repo:trusty +source = repo:trusty/main/ [libcommons-daemon-java_1.0.15-5ubuntu2] file = libcommons-daemon-java_1.0.15-5ubuntu2_all.deb md5 = 5b83da9823ecd4266c11c637b7708e21 -source = repo:trusty +source = repo:trusty/universe/ [libcrypto++9_5.6.1-6+deb8u1build0.14.04.1] file = libcrypto++9_5.6.1-6+deb8u1build0.14.04.1_amd64.deb md5 = b5c65db1de0035c34ed1f140c40d79bf -source = repo:trusty-updates +source = repo:trusty-updates/universe/ -[libcups2_1.7.2-0ubuntu1.6] -file = libcups2_1.7.2-0ubuntu1.6_amd64.deb -md5 = 51d3fa9f75c28c34142717fa2dc3530c -source = repo:trusty-updates +[libcups2_1.7.2-0ubuntu1.7] +file = libcups2_1.7.2-0ubuntu1.7_amd64.deb +md5 = 44573174451bfc3da06be711c65e6de9 +source = repo:trusty-updates/main/ -[libcurl3-gnutls_7.35.0-1ubuntu2.5] -file = libcurl3-gnutls_7.35.0-1ubuntu2.5_amd64.deb -md5 = dc08d0ce72bbe929b5f22089041048ef -source = repo:trusty-updates +[libcurl3-gnutls_7.35.0-1ubuntu2.9] +file = libcurl3-gnutls_7.35.0-1ubuntu2.9_amd64.deb +md5 = e488d09073d5e80d6553577e0bdabc73 +source = repo:trusty-updates/main/ [libdbd-mysql-perl_4.025-1] file = libdbd-mysql-perl_4.025-1_amd64.deb md5 = 2409373cd5f8fb702e6c636c28eb5e2e -source = repo:trusty +source = repo:trusty/main/ [libdbi-perl_1.630-1] file = libdbi-perl_1.630-1_amd64.deb md5 = 53c59ad9793bbd09d9c8dedcdecaba1c -source = repo:trusty +source = repo:trusty/main/ [libdbus-1-3_1.6.18-0ubuntu4.3] file = libdbus-1-3_1.6.18-0ubuntu4.3_amd64.deb md5 = 91bf0e8df2b2b596fcb118c719acba1f -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[libdrm-intel1_2.4.60-2~ubuntu14.04.1] -file = libdrm-intel1_2.4.60-2~ubuntu14.04.1_amd64.deb -md5 = 00284828f6871d183710fe513fe8bc55 -source = repo:trusty-updates +[libdrm-intel1_2.4.67-1ubuntu0.14.04.1] +file = libdrm-intel1_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = cccdf9969c69298ce04728e589c8ff80 +source = repo:trusty-updates/main/ -[libdrm-nouveau2_2.4.60-2~ubuntu14.04.1] -file = libdrm-nouveau2_2.4.60-2~ubuntu14.04.1_amd64.deb -md5 = 6dcb85e4bf24a270b8b759d22f231ca5 -source = repo:trusty-updates +[libdrm-nouveau2_2.4.67-1ubuntu0.14.04.1] +file = libdrm-nouveau2_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = 34284472aa48294499654fffc5b21d8d +source = repo:trusty-updates/main/ -[libdrm-radeon1_2.4.60-2~ubuntu14.04.1] -file = libdrm-radeon1_2.4.60-2~ubuntu14.04.1_amd64.deb -md5 = 73849f7b95aa82fd268d89474d75e35d -source = repo:trusty-updates +[libdrm-radeon1_2.4.67-1ubuntu0.14.04.1] +file = libdrm-radeon1_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = c0665182f97b69f5dfa973d87c61551b +source = repo:trusty-updates/main/ -[libdrm2_2.4.60-2~ubuntu14.04.1] -file = libdrm2_2.4.60-2~ubuntu14.04.1_amd64.deb -md5 = ff7f916a87ed7b04f47e26e69c81d708 -source = repo:trusty-updates +[libdrm2_2.4.67-1ubuntu0.14.04.1] +file = libdrm2_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = aa505cf02ae2d2a5398318ed1991af6a +source = repo:trusty-updates/main/ [libdw1_0.158-0ubuntu5.2] file = libdw1_0.158-0ubuntu5.2_amd64.deb md5 = 13106fc64315d54553789cd857369557 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libelf1_0.158-0ubuntu5.2] file = libelf1_0.158-0ubuntu5.2_amd64.deb md5 = 7c622ac0bdb90b547f3cd18c8e7369b0 -source = repo:trusty-updates +source = repo:trusty-security/main [liberror-perl_0.17-1.1] file = liberror-perl_0.17-1.1_all.deb md5 = 4988e40e65eeba03317411bfdd52b76c -source = repo:trusty +source = repo:trusty/main/ [libevent-2.0-5_2.0.21-stable-1ubuntu1.14.04.1] file = libevent-2.0-5_2.0.21-stable-1ubuntu1.14.04.1_amd64.deb md5 = 66bae54dc127761b5d044d20a49c84c4 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libfdt1_1.4.0+dfsg-1] file = libfdt1_1.4.0+dfsg-1_amd64.deb md5 = 5dd80e05348eec241f62ff8dd7d2e8f2 -source = repo:trusty +source = repo:trusty/main/ [libfile-copy-recursive-perl_0.38-1] file = libfile-copy-recursive-perl_0.38-1_all.deb md5 = f9f292787835ae54426e80678737509c -source = repo:trusty +source = repo:trusty/main/ [libflac8_1.3.0-2ubuntu0.14.04.1] file = libflac8_1.3.0-2ubuntu0.14.04.1_amd64.deb md5 = bbd48c917a12d425f0e14873575bc64c -source = repo:trusty-updates - -[libfontconfig1_2.11.0-0ubuntu4.1] -file = libfontconfig1_2.11.0-0ubuntu4.1_amd64.deb -md5 = 14def8ab4304859c6aa3d371c604cc3d -source = repo:trusty-updates - -[libgcc1_1:4.9.1-0ubuntu1] -file = libgcc1_1%%3a4.9.1-0ubuntu1_amd64.deb -md5 = 53842abe5ead277b0af07291013c4af9 -source = repo:trusty-updates - -[libgcrypt11_1.5.3-2ubuntu4.2] -file = libgcrypt11_1.5.3-2ubuntu4.2_amd64.deb -md5 = 018366663cecf76facb3c7471ecca155 -source = repo:trusty-updates - -[libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2] -file = libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2_amd64.deb -md5 = 858b5302af85a3ae22ea73c142e5fd26 -source = repo:contrail-thirdparty - -[libgd3_2.1.0-3] -file = libgd3_2.1.0-3_amd64.deb -md5 = d9af97027e33e6f1aa29ed2e4ed0a52e -source = repo:trusty - -[libgfortran3_4.8.4-2ubuntu1~14.04] -file = libgfortran3_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = f6f64296b26d38c70df45eebe341289e -source = repo:trusty-updates - -[libgl1-mesa-dri_10.1.3-0ubuntu0.5] -file = libgl1-mesa-dri_10.1.3-0ubuntu0.5_amd64.deb -md5 = 1bb10d428be5d287c1c35568fb290313 -source = repo:trusty-updates - -[libgl1-mesa-glx_10.1.3-0ubuntu0.5] -file = libgl1-mesa-glx_10.1.3-0ubuntu0.5_amd64.deb -md5 = 04b60d3fefb1080fa72b004426ca156c -source = repo:trusty-updates - -[libglapi-mesa_10.1.3-0ubuntu0.5] -file = libglapi-mesa_10.1.3-0ubuntu0.5_amd64.deb -md5 = eadee7b094970f64d7b3be4efb1cb0b3 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[libfontconfig1_2.11.0-0ubuntu4.2] +file = libfontconfig1_2.11.0-0ubuntu4.2_amd64.deb +md5 = 1ca4767d44771ef7e9e5b29c27738f69 +source = repo:trusty-updates/main/ + +[libgcc1_1:4.9.3-0ubuntu4] +file = libgcc1_1%%3a4.9.3-0ubuntu4_amd64.deb +md5 = 68b8fe6758eab2ab880f6d3bf9f35dcf +source = repo:trusty-updates/main/ + +[libgcrypt11_1.5.3-2ubuntu4.4] +file = libgcrypt11_1.5.3-2ubuntu4.4_amd64.deb +md5 = ffa419347f7284b4a14701325bceed86 +source = repo:trusty-updates/main/ + +[libgd3_2.1.0-3ubuntu0.3] +file = libgd3_2.1.0-3ubuntu0.3_amd64.deb +md5 = 82f90ac540cd2e9642f2af81c6f4ea32 +source = repo:trusty-updates/main/ + +[libgfortran3_4.8.4-2ubuntu1~14.04.3] +file = libgfortran3_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 286bf45a6ee1fa4e680d11e9d397335a +source = repo:trusty-updates/main/ + +[libgl1-mesa-dri_10.1.3-0ubuntu0.6] +file = libgl1-mesa-dri_10.1.3-0ubuntu0.6_amd64.deb +md5 = f7dbf4c1e51262b970f023a3e5346c90 +source = repo:trusty-updates/main/ + +[libgl1-mesa-glx_10.1.3-0ubuntu0.6] +file = libgl1-mesa-glx_10.1.3-0ubuntu0.6_amd64.deb +md5 = 47440d679d91118f52b692795d08bc33 +source = repo:trusty-updates/main/ + +[libglapi-mesa_10.1.3-0ubuntu0.6] +file = libglapi-mesa_10.1.3-0ubuntu0.6_amd64.deb +md5 = 036734591b144bca4a1bf0191aa2e837 +source = repo:trusty-updates/main/ [libglib2.0-0_2.40.2-0ubuntu1] file = libglib2.0-0_2.40.2-0ubuntu1_amd64.deb md5 = 6ba597f557aa5c844766a940ece59c0d -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[libgnutls-openssl27_2.12.23-12ubuntu2.2] -file = libgnutls-openssl27_2.12.23-12ubuntu2.2_amd64.deb -md5 = b9dd685036da5230e9ea784507fe95f1 -source = repo:trusty-updates +[libgnutls-openssl27_2.12.23-12ubuntu2.5] +file = libgnutls-openssl27_2.12.23-12ubuntu2.5_amd64.deb +md5 = 77d399ac308dd0e9a58acc30e8959e76 +source = repo:trusty-updates/main/ -[libgnutls26_2.12.23-12ubuntu2.2] -file = libgnutls26_2.12.23-12ubuntu2.2_amd64.deb -md5 = 5cb53fc1d8fc987061c0f722631dc902 -source = repo:trusty-updates +[libgnutls26_2.12.23-12ubuntu2.5] +file = libgnutls26_2.12.23-12ubuntu2.5_amd64.deb +md5 = 9e6ad9b80855df0f9b74ec18b9fe860d +source = repo:trusty-updates/main/ [libgoogle-perftools4_2.1-2ubuntu1.1] file = libgoogle-perftools4_2.1-2ubuntu1.1_amd64.deb md5 = 675e726d2b1e39c2d2cb816b92c528f4 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libgssapi-krb5-2_1.12+dfsg-2ubuntu5.2] file = libgssapi-krb5-2_1.12+dfsg-2ubuntu5.2_amd64.deb md5 = 09384bb92a050b4be9952700c8d036b1 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[libgpm2_1.20.4-6.1] +file = libgpm2_1.20.4-6.1_amd64.deb +md5 = 373392b7277ea8d2c012ae5a3bb69403 +source = repo:trusty/main/ [libgssapi3-heimdal_1.6~git20131207+dfsg-1ubuntu1.1] file = libgssapi3-heimdal_1.6~git20131207+dfsg-1ubuntu1.1_amd64.deb md5 = f7c769e6a44a6db7e69185454637722d -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libgssglue1_0.4-2ubuntu1] file = libgssglue1_0.4-2ubuntu1_amd64.deb md5 = 08250dff6de699fceff270123f609b49 -source = repo:trusty +source = repo:trusty/main/ [libhcrypto4-heimdal_1.6~git20131207+dfsg-1ubuntu1.1] file = libhcrypto4-heimdal_1.6~git20131207+dfsg-1ubuntu1.1_amd64.deb md5 = a33efdffc7b2bbd5344b7b6f45aa2e64 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libheimbase1-heimdal_1.6~git20131207+dfsg-1ubuntu1.1] file = libheimbase1-heimdal_1.6~git20131207+dfsg-1ubuntu1.1_amd64.deb md5 = 4695d1f1d1a48569706dba56f50d3d60 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libheimntlm0-heimdal_1.6~git20131207+dfsg-1ubuntu1.1] file = libheimntlm0-heimdal_1.6~git20131207+dfsg-1ubuntu1.1_amd64.deb md5 = 97461346552b32f0069195bcfabe3d7e -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libhttpcore-java_4.3.2-2] file = libhttpcore-java_4.3.2-2_all.deb md5 = 1af4e58d152e526215d3851f64477ed8 -source = repo:trusty +source = repo:trusty/universe/ [libhx509-5-heimdal_1.6~git20131207+dfsg-1ubuntu1.1] file = libhx509-5-heimdal_1.6~git20131207+dfsg-1ubuntu1.1_amd64.deb md5 = fb53c4acbd7696589b6ee968893fb849 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libicu52_52.1-3ubuntu0.4] file = libicu52_52.1-3ubuntu0.4_amd64.deb md5 = ed4da162328dc75beb75e38ca291c959 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libipset3_6.20.1-1] file = libipset3_6.20.1-1_amd64.deb md5 = 4aac4a69aea8e9939ccfbb89dfbd4a15 -source = repo:trusty +source = repo:trusty/universe/ [libjbig0_2.0-2ubuntu4.1] file = libjbig0_2.0-2ubuntu4.1_amd64.deb md5 = 8be949a9bb46ade19b29e72ff4329a0a -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libjemalloc1_3.5.1-2] file = libjemalloc1_3.5.1-2_amd64.deb md5 = 00605dfc92f2fe7d961e543704cfb7c4 -source = repo:trusty +source = repo:trusty/universe/ [libjline-java_1.0-2] file = libjline-java_1.0-2_all.deb md5 = f4a54be4875239c80f4411f9cc45c0fd -source = repo:trusty +source = repo:trusty/main/ [libjna-java_3.2.7-4] file = libjna-java_3.2.7-4_amd64.deb md5 = 0afee0687c7e4798adfdb448fa13948f -source = repo:trusty +source = repo:trusty/universe/ [libjpeg-turbo8_1.3.0-0ubuntu2] file = libjpeg-turbo8_1.3.0-0ubuntu2_amd64.deb md5 = 9b8b32831e8332714737af0342f57b28 -source = repo:trusty +source = repo:trusty/main/ [libjpeg8_8c-2ubuntu8] file = libjpeg8_8c-2ubuntu8_amd64.deb md5 = e0f16286dd787b951ffa953987fdf6a7 -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery-hotkeys_0~20130707+git2d51e3a9+dfsg-2ubuntu1] file = libjs-jquery-hotkeys_0~20130707+git2d51e3a9+dfsg-2ubuntu1_all.deb md5 = 1dc73271d48aa240ed7ccb4cb7c2a96d -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery-isonscreen_1.2.0-1] file = libjs-jquery-isonscreen_1.2.0-1_all.deb md5 = d9eab2c09fc65416b66a70a3e9f23b4e -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery-metadata_8-2] file = libjs-jquery-metadata_8-2_all.deb md5 = f577e88c99f650547730efe2091de99a -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery-tablesorter_8-2] file = libjs-jquery-tablesorter_8-2_all.deb md5 = 51c79ab0847130decc052869cb9d25bb -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery_1.7.2+dfsg-2ubuntu1] file = libjs-jquery_1.7.2+dfsg-2ubuntu1_all.deb md5 = 08cb6ee293e5570df48cbff3b1316cb5 -source = repo:trusty +source = repo:trusty/main/ [libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1.1] file = libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1.1_all.deb md5 = e879f3796e2e62c43f79bdfab3ecdbbd -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libjs-underscore_1.4.4-2ubuntu1] file = libjs-underscore_1.4.4-2ubuntu1_all.deb md5 = 305ad423ee8697a945c3610cf10a6bdf -source = repo:trusty +source = repo:trusty/main/ [libk5crypto3_1.12+dfsg-2ubuntu5.2] file = libk5crypto3_1.12+dfsg-2ubuntu5.2_amd64.deb md5 = 7a712351aad573137742c16bbc62c551 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libkrb5-26-heimdal_1.6~git20131207+dfsg-1ubuntu1.1] file = libkrb5-26-heimdal_1.6~git20131207+dfsg-1ubuntu1.1_amd64.deb md5 = 62040027dddc6a605e819111043a87ac -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libkrb5-3_1.12+dfsg-2ubuntu5.2] file = libkrb5-3_1.12+dfsg-2ubuntu5.2_amd64.deb md5 = 945c8474a61e3476b9b3fd18781bbc62 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libkrb5support0_1.12+dfsg-2ubuntu5.2] file = libkrb5support0_1.12+dfsg-2ubuntu5.2_amd64.deb md5 = 306f38a8682e7cd9a4bd288da4813c04 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [liblapack3_3.5.0-2ubuntu1] file = liblapack3_3.5.0-2ubuntu1_amd64.deb md5 = 8cd3e8d2924872557e686a295436c19f -source = repo:trusty +source = repo:trusty/main/ -[liblcms2-2_2.5-0ubuntu4] -file = liblcms2-2_2.5-0ubuntu4_amd64.deb -md5 = 68d64d3ca6809ec5061408eb951547ab -source = repo:trusty +[liblcms2-2_2.5-0ubuntu4.1] +file = liblcms2-2_2.5-0ubuntu4.1_amd64.deb +md5 = 90a2cbf106072d361749c2750eea55b2 +source = repo:trusty-updates/main/ [libllvm3.4_1:3.4-1ubuntu3] file = libllvm3.4_1%%3a3.4-1ubuntu3_amd64.deb md5 = ce34c38ebc9452526f3710ad79456b2f -source = repo:trusty +source = repo:trusty/main/ [liblog4cplus-1.0-4_1.0.4-1ubuntu1] file = liblog4cplus-1.0-4_1.0.4-1ubuntu1_amd64.deb md5 = 9a93f6adb918003efcf59f410adeea07 -source = repo:trusty +source = repo:trusty/universe/ [liblog4j1.2-java_1.2.17-4ubuntu3] file = liblog4j1.2-java_1.2.17-4ubuntu3_all.deb md5 = e42a1c68f176e5b4b12b850afae2ec8b -source = repo:trusty +source = repo:trusty/main/ [libltdl7_2.4.2-1.7ubuntu1] file = libltdl7_2.4.2-1.7ubuntu1_amd64.deb md5 = ddeea7a0b4082abd4f746f46c8ccb48e -source = repo:trusty +source = repo:trusty/main/ [liblttng-ust-ctl2_2.4.0-4ubuntu1] file = liblttng-ust-ctl2_2.4.0-4ubuntu1_amd64.deb md5 = a22fc453b378203afe465e11b22155f4 -source = repo:trusty +source = repo:trusty/main/ [liblttng-ust0_2.4.0-4ubuntu1] file = liblttng-ust0_2.4.0-4ubuntu1_amd64.deb md5 = b9f3e554f5fbf0d6a3d62266574950e8 -source = repo:trusty +source = repo:trusty/main/ -[liblxc1_1.1.0~alpha2-0ubuntu3.3~cloud0] -file = liblxc1_1.1.0~alpha2-0ubuntu3.3~cloud0_amd64.deb -md5 = 7fb9edd9e1566a882e5d3d73314a5e95 -source = repo:trusty-updates-juno +[liblxc1_1.1.5-0ubuntu0.14.10.0~cloud0] +file = liblxc1_1.1.5-0ubuntu0.14.10.0~cloud0_amd64.deb +md5 = 84d9118f455ea3680fb3e45214e6ccd7 +source = repo:trusty-updates-juno/main/ [liblzo2-2_2.06-1.2ubuntu1.1] file = liblzo2-2_2.06-1.2ubuntu1.1_amd64.deb md5 = b3e9733843fda9b2463a0745e7306092 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libmnl0_1.0.3-3ubuntu1] file = libmnl0_1.0.3-3ubuntu1_amd64.deb md5 = 2949d1dd95caec6257bc70095e1d37cc -source = repo:trusty +source = repo:trusty/main/ -[libmysqlclient18_5.5.46-0ubuntu0.14.04.2] -file = libmysqlclient18_5.5.46-0ubuntu0.14.04.2_amd64.deb -md5 = e7a425897ef41a86294c1ba05823166d -source = repo:trusty-updates +[libmysqlclient18_5.5.50-0ubuntu0.14.04.1] +file = libmysqlclient18_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 443401d387c892efea4eabe988c2ac4a +source = repo:trusty-updates/main/ [libnetcf1_1:0.2.3-4ubuntu1] file = libnetcf1_1%%3a0.2.3-4ubuntu1_amd64.deb md5 = 8be8b7c76a08cdb30057e309b733b5b6 -source = repo:trusty +source = repo:trusty/main/ [libnetfilter-conntrack3_1.0.4-1] file = libnetfilter-conntrack3_1.0.4-1_amd64.deb md5 = fa82697b8119c7a2cbc0c7d3d1f64dc8 -source = repo:trusty +source = repo:trusty/main/ [libnetty-java_1:3.2.6.Final-2] file = libnetty-java_1%%3a3.2.6.Final-2_all.deb md5 = 8e6999001bcaf1c019d7083ff7d843f1 -source = repo:trusty +source = repo:trusty/universe/ [libnfsidmap2_0.25-5] file = libnfsidmap2_0.25-5_amd64.deb md5 = 5e06543f26481fa549a1e017eec4ef36 -source = repo:trusty - -[libnl-3-200_3.2.21-1] -file = libnl-3-200_3.2.21-1_amd64.deb -md5 = 7b2b06eee541993e9507046e0cd0a8c3 -source = repo:trusty - -[libnl-genl-3-200_3.2.21-1] -file = libnl-genl-3-200_3.2.21-1_amd64.deb -md5 = ce91efe3ddf19b68e0ce796d87c4d96d -source = repo:trusty - -[libnl-route-3-200_3.2.21-1] -file = libnl-route-3-200_3.2.21-1_amd64.deb -md5 = 61e174d65c7adbe5bc33d4ea850725f8 -source = repo:trusty - -[libnspr4_2:4.10.10-0ubuntu0.14.04.1] -file = libnspr4_2%%3a4.10.10-0ubuntu0.14.04.1_amd64.deb -md5 = bfb262e77ef709dfaa5ae037630e49ff -source = repo:trusty-updates - -[libnss3-1d_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3-1d_2%%3a3.19.2.1-0ubuntu0.14.04.1_amd64.deb -md5 = f69f624713a7d70891aaf334df684714 -source = repo:trusty-updates - -[libnss3-nssdb_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3-nssdb_2%%3a3.19.2.1-0ubuntu0.14.04.1_all.deb -md5 = 24f0c1f9fca8ea633cf64e622f024012 -source = repo:trusty-updates - -[libnss3_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3_2%%3a3.19.2.1-0ubuntu0.14.04.1_amd64.deb -md5 = 2b2dca07befc97483bbd60ada68cd9cd -source = repo:trusty-updates +source = repo:trusty/main/ + +[libnl-3-200_3.2.21-1ubuntu3] +file = libnl-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = e80a3f4c5b08821194c2cac3a00bfdf3 +source = repo:trusty-updates/main/ + +[libnl-genl-3-200_3.2.21-1ubuntu3] +file = libnl-genl-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = 9697116877182a3420e7c70099f81277 +source = repo:trusty-updates/main/ + +[libnl-route-3-200_3.2.21-1ubuntu3] +file = libnl-route-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = 6beae5555b1dd067872dab32aa624154 +source = repo:trusty-updates/main/ + +[libnspr4_2:4.12-0ubuntu0.14.04.1] +file = libnspr4_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = cff22f4863f0e8356900e6b26872a63c +source = repo:trusty-updates/main/ + +[libnss3-1d_2:3.23-0ubuntu0.14.04.1] +file = libnss3-1d_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 96170b238bc6a8ccc48418d28dce8285 +source = repo:trusty-updates/main/ + +[libnss3-nssdb_2:3.23-0ubuntu0.14.04.1] +file = libnss3-nssdb_2%%3a3.23-0ubuntu0.14.04.1_all.deb +md5 = 7b4064d8bb5f8ca3f0aec63699666564 +source = repo:trusty-updates/main/ + +[libnss3_2:3.23-0ubuntu0.14.04.1] +file = libnss3_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 915f9fd9b0b0d18bbfe66f47774daec8 +source = repo:trusty-updates/main/ [libodbc1_2.2.14p2-5ubuntu5] file = libodbc1_2.2.14p2-5ubuntu5_amd64.deb md5 = 433e8b9f8a79a80052db69ed4f02fe53 -source = repo:trusty +source = repo:trusty/main/ [libogg0_1.3.1-1ubuntu1] file = libogg0_1.3.1-1ubuntu1_amd64.deb md5 = a6411133fd6d72d08bbcb265a7f31103 -source = repo:trusty +source = repo:trusty/main/ [libopts25_1:5.18-2ubuntu2] file = libopts25_1%%3a5.18-2ubuntu2_amd64.deb md5 = eb03b85c6c136ed1fe59f84507d1f40e -source = repo:trusty +source = repo:trusty/main/ [libpaper-utils_1.1.24+nmu2ubuntu3] file = libpaper-utils_1.1.24+nmu2ubuntu3_amd64.deb md5 = c1785586284f17aff8249d186e5c6984 -source = repo:trusty +source = repo:trusty/main/ [libpaper1_1.1.24+nmu2ubuntu3] file = libpaper1_1.1.24+nmu2ubuntu3_amd64.deb md5 = 531fe052e528e0e85be967b9384701b8 -source = repo:trusty +source = repo:trusty/main/ [libpciaccess0_0.13.2-1] file = libpciaccess0_0.13.2-1_amd64.deb md5 = 79fc58d377c1501d3dab6bd75bc71911 -source = repo:trusty +source = repo:trusty/main/ -[libpcrecpp0_1:8.31-2ubuntu2.1] -file = libpcrecpp0_1%%3a8.31-2ubuntu2.1_amd64.deb -md5 = c84471d56a86d876578ed2698b13bb8f -source = repo:trusty-updates +[libpcrecpp0_1:8.31-2ubuntu2.3] +file = libpcrecpp0_1%%3a8.31-2ubuntu2.3_amd64.deb +md5 = 35bf58488d95e43bdec1ca452f2117bc +source = repo:trusty-updates/main/ [libpcsclite1_1.8.10-1ubuntu1] file = libpcsclite1_1.8.10-1ubuntu1_amd64.deb md5 = adece73e911ca3dbdd3925294c75afee -source = repo:trusty +source = repo:trusty/main/ -[libperl5.18_5.18.2-2ubuntu1] -file = libperl5.18_5.18.2-2ubuntu1_amd64.deb -md5 = fcee47bbff6a1f501cab58f1d276928a -source = repo:trusty +[libperl5.18_5.18.2-2ubuntu1.1] +file = libperl5.18_5.18.2-2ubuntu1.1_amd64.deb +md5 = 1bbe27c70dbf9d4bce15d57cc317ca3f +source = repo:trusty-updates/main/ -[libpixman-1-0_0.30.2-2ubuntu1] -file = libpixman-1-0_0.30.2-2ubuntu1_amd64.deb -md5 = 60e24d4dc3f929420ae1d4a993a68da0 -source = repo:trusty +[libpixman-1-0_0.30.2-2ubuntu1.1] +file = libpixman-1-0_0.30.2-2ubuntu1.1_amd64.deb +md5 = 2d12f5e47dad9b5f61299706413976da +source = repo:trusty-updates/main/ -[libpolkit-agent-1-0_0.105-4ubuntu2.14.04.1] -file = libpolkit-agent-1-0_0.105-4ubuntu2.14.04.1_amd64.deb -md5 = 0ff795e1cca78fd81db153d4e36ef8ca -source = repo:trusty-updates +[libpolkit-agent-1-0_0.105-4ubuntu3.14.04.1] +file = libpolkit-agent-1-0_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = ed544800dc75cef2ea3ecb112fb99b5a +source = repo:trusty-updates/main/ -[libpolkit-backend-1-0_0.105-4ubuntu2.14.04.1] -file = libpolkit-backend-1-0_0.105-4ubuntu2.14.04.1_amd64.deb -md5 = e7b59ca714bcf04076ec31a8f1bc3bcc -source = repo:trusty-updates +[libpolkit-backend-1-0_0.105-4ubuntu3.14.04.1] +file = libpolkit-backend-1-0_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = 5a8538404755408b5733ce1715e1ab9f +source = repo:trusty-updates/main/ -[libpq5_9.3.10-0ubuntu0.14.04] -file = libpq5_9.3.10-0ubuntu0.14.04_amd64.deb -md5 = 6626ddab496e79726f7575b890424072 -source = repo:trusty-updates +[libpq5_9.3.14-0ubuntu0.14.04] +file = libpq5_9.3.14-0ubuntu0.14.04_amd64.deb +md5 = 4b35bf29855eda167e866dbcc34f738a +source = repo:trusty-updates/main/ [libprotobuf8_2.5.0-9ubuntu1] file = libprotobuf8_2.5.0-9ubuntu1_amd64.deb md5 = e0ef0861f40071ed6f6606ac3b7c3742 -source = repo:trusty +source = repo:trusty/main/ [libpulse0_1:4.0-0ubuntu11.1] file = libpulse0_1%%3a4.0-0ubuntu11.1_amd64.deb md5 = 84213503252a6aec962b12cd170af23f -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libpython2.7-minimal_2.7.6-8ubuntu0.2] file = libpython2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb md5 = 48d76dcd9239d2970d3866d6082a48c6 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libpython2.7-stdlib_2.7.6-8ubuntu0.2] file = libpython2.7-stdlib_2.7.6-8ubuntu0.2_amd64.deb md5 = accc8dfb0ff3e0440e66f4c4c9589854 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libpython2.7_2.7.6-8ubuntu0.2] file = libpython2.7_2.7.6-8ubuntu0.2_amd64.deb md5 = e52bac5d993bf5c8c60ef92b9e392603 -source = repo:trusty-updates - -[librabbitmq0_0.0.1.hg216-1] -file = librabbitmq0_0.0.1.hg216-1_amd64.deb -md5 = 942635f76ab6cf1e27c6622201690bed -source = repo:contrail-thirdparty +source = repo:trusty-updates/main/ [librabbitmq1_0.4.1-1] file = librabbitmq1_0.4.1-1_amd64.deb md5 = 59f733e1342ff743039cec1d6305fc2c -source = repo:trusty +source = repo:trusty/main/ -[librados2_0.80.10-0ubuntu1.14.04.3] -file = librados2_0.80.10-0ubuntu1.14.04.3_amd64.deb -md5 = cd27590bedf4be82948b3f32045564ef -source = repo:trusty-updates +[librados2_0.80.11-0ubuntu1.14.04.1] +file = librados2_0.80.11-0ubuntu1.14.04.1_amd64.deb +md5 = 88d1b2079b7bd1a9a2d99e05fc88bf02 +source = repo:trusty-updates/main/ -[librbd1_0.80.10-0ubuntu1.14.04.3] -file = librbd1_0.80.10-0ubuntu1.14.04.3_amd64.deb -md5 = 07cf265379d268f8165cfb130f7412c4 -source = repo:trusty-updates +[librbd1_0.80.11-0ubuntu1.14.04.1] +file = librbd1_0.80.11-0ubuntu1.14.04.1_amd64.deb +md5 = 684055975b3f6d7f9cbf42afc720989d +source = repo:trusty-updates/main/ [libroken18-heimdal_1.6~git20131207+dfsg-1ubuntu1.1] file = libroken18-heimdal_1.6~git20131207+dfsg-1ubuntu1.1_amd64.deb md5 = a9ae99f9a6fc8aab92ce61e6c3c86ca9 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libsctp1_1.0.15+dfsg-1] file = libsctp1_1.0.15+dfsg-1_amd64.deb md5 = 6bc0748fae5badaa0fa7e7b22345b9c7 -source = repo:trusty +source = repo:trusty/main/ [libsdl1.2debian_1.2.15-8ubuntu1.1] file = libsdl1.2debian_1.2.15-8ubuntu1.1_amd64.deb md5 = 063b125221dda816ec3554eea53ce52e -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libseccomp2_2.1.0+dfsg-1] file = libseccomp2_2.1.0+dfsg-1_amd64.deb md5 = 235f6d21bb05f15d6b0c1e06b3a93e1d -source = repo:trusty +source = repo:trusty/main/ [libsensors4_1:3.3.4-2ubuntu1] file = libsensors4_1%%3a3.3.4-2ubuntu1_amd64.deb md5 = 042d478dd8c2f8d47fe197b2bbf2e8a1 -source = repo:trusty +source = repo:trusty/main/ [libservlet2.5-java_6.0.39-1] file = libservlet2.5-java_6.0.39-1_all.deb md5 = 1487fcc2361e1ff68528e9a79c3bdb2c -source = repo:trusty +source = repo:trusty/universe/ [libsigsegv2_2.10-2] file = libsigsegv2_2.10-2_amd64.deb md5 = 02a1d6194bd62571a9dcbcad5071d8d9 -source = repo:trusty +source = repo:trusty/main/ [libslf4j-java_1.7.5-2] file = libslf4j-java_1.7.5-2_all.deb md5 = 3666d5d622c51ad306c47c1505fe0b75 -source = repo:trusty +source = repo:trusty/universe/ [libsmi2ldbl_0.4.8+dfsg2-8ubuntu2] file = libsmi2ldbl_0.4.8+dfsg2-8ubuntu2_amd64.deb md5 = 13e50b16c61aad665ee4db241a6cf908 -source = repo:trusty +source = repo:trusty/universe/ [libsnappy1_1.1.0-1ubuntu1] file = libsnappy1_1.1.0-1ubuntu1_amd64.deb md5 = 6e75ed3aa224013957954c6671bead67 -source = repo:trusty +source = repo:trusty/main/ -[libsndfile1_1.0.25-7ubuntu2] -file = libsndfile1_1.0.25-7ubuntu2_amd64.deb -md5 = 7d1069fef8f95bc27c2f12f0d8eb4b08 -source = repo:trusty +[libsndfile1_1.0.25-7ubuntu2.1] +file = libsndfile1_1.0.25-7ubuntu2.1_amd64.deb +md5 = a01199628faa5c1ec2b97c167c25c0e9 +source = repo:trusty-updates/main/ -[libsnmp-base_5.7.2~dfsg-8.1ubuntu3.1] -file = libsnmp-base_5.7.2~dfsg-8.1ubuntu3.1_all.deb -md5 = f48eeb8004db645287ad858b4a4b8cce -source = repo:trusty-updates +[libsnmp-base_5.7.2~dfsg-8.1ubuntu3.2] +file = libsnmp-base_5.7.2~dfsg-8.1ubuntu3.2_all.deb +md5 = 895d89dabe4d3cd8ad7fc7b7c730e627 +source = repo:trusty-updates/main/ -[libsnmp30_5.7.2~dfsg-8.1ubuntu3.1] -file = libsnmp30_5.7.2~dfsg-8.1ubuntu3.1_amd64.deb -md5 = 098a58e5e0bed8a5fa71f956e0fa3142 -source = repo:trusty-updates +[libsnmp30_5.7.2~dfsg-8.1ubuntu3.2] +file = libsnmp30_5.7.2~dfsg-8.1ubuntu3.2_amd64.deb +md5 = 57dc2070a946c4e33cf8fcfe251f9868 +source = repo:trusty-updates/main/ -[libspice-server1_0.12.4-0nocelt2ubuntu1.2] -file = libspice-server1_0.12.4-0nocelt2ubuntu1.2_amd64.deb -md5 = 1961ef69c7c497fad36eaaa5ced7ae7e -source = repo:trusty-updates +[libspice-server1_0.12.4-0nocelt2ubuntu1.3] +file = libspice-server1_0.12.4-0nocelt2ubuntu1.3_amd64.deb +md5 = 60095317b5d23d0b3c39e39969f4bf44 +source = repo:trusty-updates/main/ [libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1] file = libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1_amd64.deb md5 = 67303b5e19bf90c0538564669685483e -source = repo:trusty-updates +source = repo:trusty-updates/universe/ -[libssl1.0.0_1.0.1f-1ubuntu2.15] -file = libssl1.0.0_1.0.1f-1ubuntu2.15_amd64.deb -md5 = 18a4de0045ddf7885928101b4fdd7599 -source = repo:trusty-updates +[libssl1.0.0_1.0.1f-1ubuntu2.19] +file = libssl1.0.0_1.0.1f-1ubuntu2.19_amd64.deb +md5 = 04f6ffaf9b5108c14a688b05ea996689 +source = repo:trusty-updates/main/ [libt1-5_5.1.2-3.6ubuntu1] file = libt1-5_5.1.2-3.6ubuntu1_amd64.deb md5 = 9008d07107340862975b565155479341 -source = repo:trusty +source = repo:trusty/main/ [libtbb2_4.2~20130725-1.1ubuntu1] file = libtbb2_4.2~20130725-1.1ubuntu1_amd64.deb md5 = 5113cda4c289295e7ed4b83dfa0b91d1 -source = repo:trusty +source = repo:trusty/universe/ [libtcmalloc-minimal4_2.1-2ubuntu1.1] file = libtcmalloc-minimal4_2.1-2ubuntu1.1_amd64.deb md5 = 962e0b3302ffebb3cc3fb34e80c1a143 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libterm-readkey-perl_2.31-1] file = libterm-readkey-perl_2.31-1_amd64.deb md5 = c68d9e65673823e4d60d0029cc26ea89 -source = repo:trusty +source = repo:trusty/main/ -[libtiff5_4.0.3-7ubuntu0.3] -file = libtiff5_4.0.3-7ubuntu0.3_amd64.deb -md5 = 7a5958d7bea247a996fcf74c4282c309 -source = repo:trusty-updates +[libtiff5_4.0.3-7ubuntu0.4] +file = libtiff5_4.0.3-7ubuntu0.4_amd64.deb +md5 = 1c9177bf7f922d87d4af3a54b4a107b7 +source = repo:trusty-updates/main/ [libtirpc1_0.2.2-5ubuntu2] file = libtirpc1_0.2.2-5ubuntu2_amd64.deb md5 = acc1c8e0345c8c3e53ba94a59a4729d8 -source = repo:trusty +source = repo:trusty/main/ [libtxc-dxtn-s2tc0_0~git20131104-1.1] file = libtxc-dxtn-s2tc0_0~git20131104-1.1_amd64.deb md5 = 4aca9162717cd9eb1e42f531217801f9 -source = repo:trusty +source = repo:trusty/main/ -[libudev1_204-5ubuntu20.15] -file = libudev1_204-5ubuntu20.15_amd64.deb -md5 = ca25b46fdfa49f58e6a6fa3de3831fff -source = repo:trusty-updates +[libudev1_204-5ubuntu20.19] +file = libudev1_204-5ubuntu20.19_amd64.deb +md5 = efaa66441569692a31cf0cdc3b2b1dd8 +source = repo:trusty-updates/main/ [libunwind8_1.1-2.2ubuntu3] file = libunwind8_1.1-2.2ubuntu3_amd64.deb md5 = d568b4e19959271d3f8470ff28c223f1 -source = repo:trusty +source = repo:trusty/main/ [liburcu1_0.7.12-0ubuntu2] file = liburcu1_0.7.12-0ubuntu2_amd64.deb md5 = 1172db772c3640310d85518f92ce5aa6 -source = repo:trusty +source = repo:trusty/main/ [liburcu2_0.8.5-1ubuntu1~cloud0] file = liburcu2_0.8.5-1ubuntu1~cloud0_amd64.deb md5 = 3ec964114572bcb2af6d464dffc7248b -source = repo:trusty-updates-kilo +source = repo:trusty-updates-juno/main/ [libusbredirparser1_0.6-2ubuntu1.1] file = libusbredirparser1_0.6-2ubuntu1.1_amd64.deb md5 = 60574ac64168133bd8a974d58b7e9c5e -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libuuid1_2.20.1-5.1ubuntu20.7] file = libuuid1_2.20.1-5.1ubuntu20.7_amd64.deb md5 = d44826d02f03b777448f7ab1e0efa5e3 -source = repo:trusty-updates - -[libuv_1.7.5-1] -file = libuv_1.7.5-1_amd64.deb -md5 = 76474f34e94ce80dca66f39eb2ae638b +source = repo:trusty-updates/main/ [libv8-3.14.5_3.14.5.8-5ubuntu2] file = libv8-3.14.5_3.14.5.8-5ubuntu2_amd64.deb md5 = 3937ddaf045f8c5606b6c505bf0779f8 -source = repo:trusty +source = repo:trusty/universe/ -[libvirt-bin_1.2.2-0ubuntu13.1.14] -file = libvirt-bin_1.2.2-0ubuntu13.1.14_amd64.deb -md5 = 3cf22c923be3fcb0a53d68e24224c150 -source = repo:trusty-updates +[libvirt-bin_1.2.2-0ubuntu13.1.17] +file = libvirt-bin_1.2.2-0ubuntu13.1.17_amd64.deb +md5 = cb73f7c55492723163d9a9461c915c96 +source = repo:trusty-updates/main/ -[libvirt0_1.2.2-0ubuntu13.1.14] -file = libvirt0_1.2.2-0ubuntu13.1.14_amd64.deb -md5 = a2bd395be67694e90f20d68ebafe6251 -source = repo:trusty-updates +[libvirt0_1.2.2-0ubuntu13.1.17] +file = libvirt0_1.2.2-0ubuntu13.1.17_amd64.deb +md5 = c9ced599b427a4d6e51d58b08ded2095 +source = repo:trusty-updates/main/ [libvorbis0a_1.3.2-1.3ubuntu1] file = libvorbis0a_1.3.2-1.3ubuntu1_amd64.deb md5 = e89e05f389fdaa1b834803a08c9213a4 -source = repo:trusty +source = repo:trusty/main/ [libvorbisenc2_1.3.2-1.3ubuntu1] file = libvorbisenc2_1.3.2-1.3ubuntu1_amd64.deb md5 = fbdffecfc0a3f0dc45ec2480f54ea251 -source = repo:trusty +source = repo:trusty/main/ [libvpx1_1.3.0-2] file = libvpx1_1.3.0-2_amd64.deb md5 = a163fb61078a4a67b1d705bd1ea9093b -source = repo:trusty +source = repo:trusty/main/ [libwebp5_0.4.0-4] file = libwebp5_0.4.0-4_amd64.deb md5 = b0a2f2c663d75a1df58e7150de7fff22 -source = repo:trusty +source = repo:trusty/main/ [libwebpmux1_0.4.0-4] file = libwebpmux1_0.4.0-4_amd64.deb md5 = a7d0ef2e8563058d75935225afcddcd4 -source = repo:trusty +source = repo:trusty/main/ [libwind0-heimdal_1.6~git20131207+dfsg-1ubuntu1.1] file = libwind0-heimdal_1.6~git20131207+dfsg-1ubuntu1.1_amd64.deb md5 = cebde8770337d84c4c84145c1cad4a6a -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libx11-xcb1_2:1.6.2-1ubuntu2] file = libx11-xcb1_2%%3a1.6.2-1ubuntu2_amd64.deb md5 = 883e22f0ff03018c9fad15b5c10a2fca -source = repo:trusty +source = repo:trusty/main/ [libx86-1_1.1+ds1-10] file = libx86-1_1.1+ds1-10_amd64.deb md5 = d166a4d98f6ce17e6f17787bfc8a6ef5 -source = repo:trusty +source = repo:trusty/main/ [libxcb-dri2-0_1.10-2ubuntu1] file = libxcb-dri2-0_1.10-2ubuntu1_amd64.deb md5 = 90169585d4c43e4a4da49ce3f2568384 -source = repo:trusty +source = repo:trusty/main/ [libxcb-dri3-0_1.10-2ubuntu1] file = libxcb-dri3-0_1.10-2ubuntu1_amd64.deb md5 = 310d42718a6d50f1be400e1fa774d86a -source = repo:trusty +source = repo:trusty/main/ [libxcb-glx0_1.10-2ubuntu1] file = libxcb-glx0_1.10-2ubuntu1_amd64.deb md5 = 632239048a95f7c2edd3225de98ed801 -source = repo:trusty +source = repo:trusty/main/ [libxcb-present0_1.10-2ubuntu1] file = libxcb-present0_1.10-2ubuntu1_amd64.deb md5 = e17e52f8953a544d1f0a56a156e6c7f5 -source = repo:trusty +source = repo:trusty/main/ [libxcb-sync1_1.10-2ubuntu1] file = libxcb-sync1_1.10-2ubuntu1_amd64.deb md5 = 6cdc1b75cfb4797da9d19add8646a70e -source = repo:trusty +source = repo:trusty/main/ [libxdamage1_1:1.1.4-1ubuntu1] file = libxdamage1_1%%3a1.1.4-1ubuntu1_amd64.deb md5 = c1e6ea0fc620fc3ce50ebbfee62e3f0c -source = repo:trusty +source = repo:trusty/main/ -[libxen-4.4_4.4.2-0ubuntu0.14.04.3] -file = libxen-4.4_4.4.2-0ubuntu0.14.04.3_amd64.deb -md5 = 77939f630ada2167bafa8390fbbe6414 -source = repo:trusty-updates +[libxen-4.4_4.4.2-0ubuntu0.14.04.6] +file = libxen-4.4_4.4.2-0ubuntu0.14.04.6_amd64.deb +md5 = 01902042887b57bb12591a64a45c9bd7 +source = repo:trusty-updates/main/ -[libxenstore3.0_4.4.2-0ubuntu0.14.04.3] -file = libxenstore3.0_4.4.2-0ubuntu0.14.04.3_amd64.deb -md5 = 3c41e88e249ec8d43e609c5ddd127084 -source = repo:trusty-updates +[libxenstore3.0_4.4.2-0ubuntu0.14.04.6] +file = libxenstore3.0_4.4.2-0ubuntu0.14.04.6_amd64.deb +md5 = 2dd53c140e4d4c58d57f25c82c3cc57a +source = repo:trusty-updates/main/ [libxerces2-java_2.11.0-7] file = libxerces2-java_2.11.0-7_all.deb md5 = fa8bcb033daef7c85f4636435ea2747b -source = repo:trusty +source = repo:trusty/main/ [libxfixes3_1:5.0.1-1ubuntu1.1] file = libxfixes3_1%%3a5.0.1-1ubuntu1.1_amd64.deb md5 = 9fda7ada36fbbe966cf30f474a6a4a40 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libxml-commons-external-java_1.4.01-2build1] file = libxml-commons-external-java_1.4.01-2build1_all.deb md5 = a3ba72113c451b98099d582afa64112c -source = repo:trusty +source = repo:trusty/main/ [libxml-commons-resolver1.1-java_1.2-7build1] file = libxml-commons-resolver1.1-java_1.2-7build1_all.deb md5 = b90c2054a7e0fed8ee79b582952b310b -source = repo:trusty +source = repo:trusty/main/ -[libxml2-utils_2.9.1+dfsg1-3ubuntu4.5] -file = libxml2-utils_2.9.1+dfsg1-3ubuntu4.5_amd64.deb -md5 = 6148d8a0f2ea2c7bab616a04b1eb7a37 -source = repo:trusty-updates +[libxml2-utils_2.9.1+dfsg1-3ubuntu4.8] +file = libxml2-utils_2.9.1+dfsg1-3ubuntu4.8_amd64.deb +md5 = dda408befcc3b92a0bab8916eb799f23 +source = repo:trusty-updates/main/ [libxpm4_1:3.5.10-1] file = libxpm4_1%%3a3.5.10-1_amd64.deb md5 = 4985dad7e98401b47c79b377333ae1c7 -source = repo:trusty +source = repo:trusty/main/ [libxshmfence1_1.1-2] file = libxshmfence1_1.1-2_amd64.deb md5 = 921fc248a972eb54e063759eaec9fe83 -source = repo:trusty +source = repo:trusty/main/ [libxslt1.1_1.1.28-2build1] file = libxslt1.1_1.1.28-2build1_amd64.deb md5 = 8193d46e498f445991c78e9da9b238a6 -source = repo:trusty +source = repo:trusty/main/ [libxxf86vm1_1:1.1.3-1] file = libxxf86vm1_1%%3a1.1.3-1_amd64.deb md5 = b61960ea6bd4f73ff903f63235b35c25 -source = repo:trusty +source = repo:trusty/main/ [libyajl2_2.0.4-4] file = libyajl2_2.0.4-4_amd64.deb md5 = d7241d878ea65cbed080196411ec92c2 -source = repo:trusty +source = repo:trusty/main/ [libzookeeper-java-doc_3.4.5+dfsg-1] file = libzookeeper-java-doc_3.4.5+dfsg-1_all.deb md5 = 0e425299487e2e2edf4d2adc491c20fa -source = repo:trusty +source = repo:trusty/universe/ [libzookeeper-java_3.4.5+dfsg-1] file = libzookeeper-java_3.4.5+dfsg-1_all.deb md5 = 2d2793872aa6faf93cce49dd85600b95 -source = repo:trusty +source = repo:trusty/universe/ -[linux-crashdump_3.13.0.68.74] -file = linux-crashdump_3.13.0.68.74_amd64.deb -md5 = 128f82df02b3c449cf77329922072dde -source = repo:trusty-updates +[libzookeeper-mt2_3.4.5+dfsg-1] +file = libzookeeper-mt2_3.4.5+dfsg-1_amd64.deb +md5 = 45430fcb0a6ef134390339c3d577e700 +source = repo:trusty/universe/ + +[linux-crashdump_3.13.0.95.103] +file = linux-crashdump_3.13.0.95.103_amd64.deb +md5 = 3fbffb3b99a206543bd57e41cc3750d4 +source = repo:trusty-updates/main/ [linux-headers-3.13.0-40-generic_3.13.0-40.69] file = linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = 5746e3f726d3828c48de16e4b37c7b75 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [linux-headers-3.13.0-40_3.13.0-40.69] file = linux-headers-3.13.0-40_3.13.0-40.69_all.deb md5 = 2a60945600c4429f426dd7cadc6c73df -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-83-generic_3.13.0-83.127] +file = linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 5df332a60e776a0d0e79e54bdb291707 +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-83_3.13.0-83.127] +file = linux-headers-3.13.0-83_3.13.0-83.127_all.deb +md5 = 50bf914d576b43b2e28c1862c3638c82 +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-85-generic_3.13.0-85.129] +file = linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = ea4e36e8e787115b19bddb3c74bac3cb +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-85_3.13.0-85.129] +file = linux-headers-3.13.0-85_3.13.0-85.129_all.deb +md5 = 8153507a22c943d64055df2a8490dc7d +source = repo:trusty-updates/main/ [linux-image-3.13.0-40-generic_3.13.0-40.69] file = linux-image-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = a6ba0601c1f8662cad6604dfd9d070b0 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[linux-image-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 1488cbc687bebc497f2112f93131a727 +source = repo:trusty-updates/main/ + +[linux-image-3.13.0-85-generic_3.13.0-85.129] +file = linux-image-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = fc7234f99aff2a0f0dfb1c3b1a44dacf +source = repo:trusty-updates/main/ [linux-image-extra-3.13.0-40-generic_3.13.0-40.69] file = linux-image-extra-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = 3b38dc787fcf8b8a1ccd89e60077df58 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[linux-image-extra-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-extra-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 4832e8b6a6654b8d20ae53f279ff878d +source = repo:trusty-updates/main/ + +[linux-image-extra-3.13.0-85-generic_3.13.0-85.129] +file = linux-image-extra-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = 5e660aae162edc373ecdb8668ab3d0b8 +source = repo:trusty-updates/main/ [lksctp-tools_1.0.15+dfsg-1] file = lksctp-tools_1.0.15+dfsg-1_amd64.deb md5 = 39373482904f27eddebcef56b9bcf13f -source = repo:trusty +source = repo:trusty/main/ -[lxc-docker-1.6.2] -file = lxc-docker-1.6.2_1.6.2_amd64.deb -md5 = bb24274e604d7ed3ac70de296b594cd1 -source = repo:contrail-thirdparty +[lxc-templates_1.1.5-0ubuntu0.14.10.0~cloud0] +file = lxc-templates_1.1.5-0ubuntu0.14.10.0~cloud0_amd64.deb +md5 = 48e805ac6e7967f79e250cefbd085ea6 +source = repo:trusty-updates-juno/main/ -[lxc_1.1.0~alpha2-0ubuntu3.3~cloud0] -file = lxc_1.1.0~alpha2-0ubuntu3.3~cloud0_amd64.deb -md5 = 57ade6f2a0c0217cd15189f358fd8536 -source = repo:trusty-updates-juno +[lxc_1.1.5-0ubuntu0.14.10.0~cloud0] +file = lxc_1.1.5-0ubuntu0.14.10.0~cloud0_amd64.deb +md5 = 3ae34f10dd07f15cbf48b47799aabffe +source = repo:trusty-updates-juno/main/ -[makedumpfile_1.5.5-2ubuntu1.4] -file = makedumpfile_1.5.5-2ubuntu1.4_amd64.deb -md5 = 3b948692e5771968565b1b937ac925d3 -source = repo:trusty-updates +[makedumpfile_1.5.5-2ubuntu1.5] +file = makedumpfile_1.5.5-2ubuntu1.5_amd64.deb +md5 = 1d85845e5c616fa9119db30276e1316c +source = repo:trusty-updates/main/ [memcached_1.4.14-0ubuntu9] file = memcached_1.4.14-0ubuntu9_amd64.deb md5 = 29893483844957ac4c33097d0c0108a6 -source = repo:trusty +source = repo:trusty/main/ [mongodb-clients_1:2.4.9-1ubuntu2] file = mongodb-clients_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = dfabd631c87d7001cfefba7087a38458 -source = repo:trusty +source = repo:trusty/universe/ [mongodb-server_1:2.4.9-1ubuntu2] file = mongodb-server_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = ae7913b7d32766b9743d22a957f44c45 -source = repo:trusty +source = repo:trusty/universe/ [msr-tools_1.3-2] file = msr-tools_1.3-2_amd64.deb md5 = 5ffb50c3889cfccc901b940923d89e29 -source = repo:trusty - -[mysql-client-5.5_5.5.46-0ubuntu0.14.04.2] -file = mysql-client-5.5_5.5.46-0ubuntu0.14.04.2_amd64.deb -md5 = 80433fe158b2995a258886df36cb18d7 -source = repo:trusty-updates - -[mysql-client-core-5.5_5.5.46-0ubuntu0.14.04.2] -file = mysql-client-core-5.5_5.5.46-0ubuntu0.14.04.2_amd64.deb -md5 = 1cfa42186636985c6c9794ce9741155a -source = repo:trusty-updates - -[mysql-client_5.5.46-0ubuntu0.14.04.2] -file = mysql-client_5.5.46-0ubuntu0.14.04.2_all.deb -md5 = 5792d7f019800daaff6ec38c06b23e4a -source = repo:trusty-updates - -[mysql-common_5.5.46-0ubuntu0.14.04.2] -file = mysql-common_5.5.46-0ubuntu0.14.04.2_all.deb -md5 = 10bdaee71602e5dfa8d53b1c5b8867a2 -source = repo:trusty-updates - -[mysql-server-wsrep_5.5.37-25.10] -file = mysql-server-wsrep_5.5.37-25.10_amd64.deb -md5 = ac8664b3bd2ea15149e2d5af6abac90f -source = repo:contrail-thirdparty - -[neutron-common_1:2014.2.3-0ubuntu2~cloud0] -file = neutron-common_1%%3a2014.2.3-0ubuntu2~cloud0_all.deb -md5 = 727714b977281f184967491dc52b0152 -source = repo:trusty-updates-juno - -[neutron-plugin-ml2_1:2014.2.3-0ubuntu2~cloud0] -file = neutron-plugin-ml2_1%%3a2014.2.3-0ubuntu2~cloud0_all.deb -md5 = 1d45dc44fa281d910c47e6c705b5515a -source = repo:trusty-updates-juno - -[neutron-server_1:2014.2.3-0ubuntu2~cloud0] -file = neutron-server_1%%3a2014.2.3-0ubuntu2~cloud0_all.deb -md5 = 1c6f82f1abe9c30222a08292a29ddac2 -source = repo:trusty-updates-juno +source = repo:trusty/main/ + +[mysql-client-5.5_5.5.50-0ubuntu0.14.04.1] +file = mysql-client-5.5_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 5f96432b31424f80d0a43a493314c19f +source = repo:trusty-updates/main/ + +[mysql-client-core-5.5_5.5.50-0ubuntu0.14.04.1] +file = mysql-client-core-5.5_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 8f00681717e73d23a0d4d54bf13a09d5 +source = repo:trusty-updates/main/ + +[mysql-client_5.5.50-0ubuntu0.14.04.1] +file = mysql-client_5.5.50-0ubuntu0.14.04.1_all.deb +md5 = 2db4b6fd9ac00660ca5f1bc1e4ae9d85 +source = repo:trusty-updates/main/ + +[mysql-common_5.5.50-0ubuntu0.14.04.1] +file = mysql-common_5.5.50-0ubuntu0.14.04.1_all.deb +md5 = e2de1adae6567e6c40c7171cdc6b48e5 +source = repo:trusty-updates/main/ + +[neutron-common_1:2014.2.4-0ubuntu1~cloud1] +file = neutron-common_1%%3a2014.2.4-0ubuntu1~cloud1_all.deb +md5 = 84a06dffa455a7071e975731f630fde8 +source = repo:trusty-updates-juno/main/ + +[neutron-plugin-ml2_1:2014.2.4-0ubuntu1~cloud1] +file = neutron-plugin-ml2_1%%3a2014.2.4-0ubuntu1~cloud1_all.deb +md5 = 0f45cdbd05ed51dfb48efd0fdc194727 +source = repo:trusty-updates-juno/main/ + +[neutron-server_1:2014.2.4-0ubuntu1~cloud1] +file = neutron-server_1%%3a2014.2.4-0ubuntu1~cloud1_all.deb +md5 = ee199621627268279273aa5806b47bea +source = repo:trusty-updates-juno/main/ [nfs-common_1:1.2.8-6ubuntu1.2] file = nfs-common_1%%3a1.2.8-6ubuntu1.2_amd64.deb md5 = 64d83aabb28de942a6e367181ed580ca -source = repo:trusty-updates +source = repo:trusty-updates/main/ [nfs-kernel-server_1:1.2.8-6ubuntu1.2] file = nfs-kernel-server_1%%3a1.2.8-6ubuntu1.2_amd64.deb md5 = 84e9549cb2263fe0433bbc862fb4efc7 -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[ntp_1:4.2.6.p5+dfsg-3ubuntu2.14.04.5] -file = ntp_1%%3a4.2.6.p5+dfsg-3ubuntu2.14.04.5_amd64.deb -md5 = 91112f6caf863de33c979bd373da9c6c -source = repo:trusty-updates +[ntp_1:4.2.6.p5+dfsg-3ubuntu2.14.04.8] +file = ntp_1%%3a4.2.6.p5+dfsg-3ubuntu2.14.04.8_amd64.deb +md5 = 15c71cefccbade411bad7aa82c959f4c +source = repo:trusty-updates/main/ [open-iscsi_2.0.873-3ubuntu9] file = open-iscsi_2.0.873-3ubuntu9_amd64.deb md5 = baa821890ea97d60e291c87d2dc439ae -source = repo:trusty +source = repo:trusty/main/ -[openjdk-6-jre-headless_6b36-1.13.8-0ubuntu1~14.04] -file = openjdk-6-jre-headless_6b36-1.13.8-0ubuntu1~14.04_amd64.deb -md5 = 0284faa1aab91d4df68c965fe851a132 -source = repo:trusty-updates +[openjdk-6-jre-headless_6b39-1.13.11-0ubuntu0.14.04.1] +file = openjdk-6-jre-headless_6b39-1.13.11-0ubuntu0.14.04.1_amd64.deb +md5 = f6fa782f7dbad7b17be2b32ce0b31107 +source = repo:trusty-updates/universe/ -[openjdk-6-jre-lib_6b36-1.13.8-0ubuntu1~14.04] -file = openjdk-6-jre-lib_6b36-1.13.8-0ubuntu1~14.04_all.deb -md5 = 89f0baac7b2c862d976e6e7f0c342e1b -source = repo:trusty-updates +[openjdk-6-jre-lib_6b39-1.13.11-0ubuntu0.14.04.1] +file = openjdk-6-jre-lib_6b39-1.13.11-0ubuntu0.14.04.1_all.deb +md5 = 24d157cc33ec7d3ef355a5c54768377a +source = repo:trusty-updates/universe/ -[openjdk-7-jre-headless_7u85-2.6.1-5ubuntu0.14.04.1] -file = openjdk-7-jre-headless_7u85-2.6.1-5ubuntu0.14.04.1_amd64.deb -md5 = b2d3c36849d469d4f1aa80414a6595da -source = repo:trusty-updates +[openjdk-7-jre-headless_7u111-2.6.7-0ubuntu0.14.04.3] +file = openjdk-7-jre-headless_7u111-2.6.7-0ubuntu0.14.04.3_amd64.deb +md5 = e7434bc689222bf72d080c65a40ef6f2 +source = repo:trusty-updates/main/ [pep8_1.5.6-0ubuntu1~cloud0] file = pep8_1.5.6-0ubuntu1~cloud0_all.deb md5 = dbc1cdfb21485e93d52efeac7c842cdc -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [percona-xtrabackup_2.1.8-1] file = percona-xtrabackup_2.1.8-1_amd64.deb md5 = 01758f32efe8426a44695f25f4a4117a -source = repo:trusty - -[php5-cli_5.5.9+dfsg-1ubuntu4.14] -file = php5-cli_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = 1c3dd1dc147aa8ecdadc3cdc4a8fef56 -source = repo:trusty-updates - -[php5-common_5.5.9+dfsg-1ubuntu4.14] -file = php5-common_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = bf2cc7bb8c45120dfbe78a4e33bd260c -source = repo:trusty-updates - -[php5-gd_5.5.9+dfsg-1ubuntu4.14] -file = php5-gd_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = 38639c3430238ccceee128ca7e1f6a1f -source = repo:trusty-updates +source = repo:trusty/universe/ + +[perl-base_5.18.2-2ubuntu1.1] +file = perl-base_5.18.2-2ubuntu1.1_amd64.deb +md5 = d032a8ff7c2609d93af93e02aa7cf5ba +source = repo:trusty-updates/main/ + +[perl-modules_5.18.2-2ubuntu1.1] +file = perl-modules_5.18.2-2ubuntu1.1_all.deb +md5 = 75bfbc6a0725be5533d5920d031bb121 +source = repo:trusty-updates/main/ + +[perl_5.18.2-2ubuntu1.1] +file = perl_5.18.2-2ubuntu1.1_amd64.deb +md5 = c923b93fb9aa7f1ff97fcea2539bd8b9 +source = repo:trusty-updates/main/ + +[php5-cli_5.5.9+dfsg-1ubuntu4.19] +file = php5-cli_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = f7cfa14e9c0ea097d23d9638647a223d +source = repo:trusty-updates/main/ + +[php5-common_5.5.9+dfsg-1ubuntu4.19] +file = php5-common_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 3f18d7b759d9e2f7a7cb9d98b58caf2d +source = repo:trusty-updates/main/ + +[php5-gd_5.5.9+dfsg-1ubuntu4.19] +file = php5-gd_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 57b5a59d6aaefe19a7a286de230c58a1 +source = repo:trusty-updates/main/ [php5-json_1.3.2-2build1] file = php5-json_1.3.2-2build1_amd64.deb md5 = 9d2445c670f4148ce72a0edb73f4ede0 -source = repo:trusty +source = repo:trusty/main/ -[php5-mysql_5.5.9+dfsg-1ubuntu4.14] -file = php5-mysql_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = 609764fddf2b629fa0f2dcf3e84c5795 -source = repo:trusty-updates +[php5-mysql_5.5.9+dfsg-1ubuntu4.19] +file = php5-mysql_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = ca5a49303bf3f422159947aeaf4bcff9 +source = repo:trusty-updates/main/ -[php5-readline_5.5.9+dfsg-1ubuntu4.14] -file = php5-readline_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = c1224b2ecada87091417f1ff6580813b -source = repo:trusty-updates +[php5-readline_5.5.9+dfsg-1ubuntu4.19] +file = php5-readline_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 9819ddabc784adcf6b1bc03c02bc3006 +source = repo:trusty-updates/main/ -[pm-utils_1.4.1-13ubuntu0.1] -file = pm-utils_1.4.1-13ubuntu0.1_all.deb -md5 = f8948fc2d2a7016841047f689b311863 -source = repo:trusty-updates +[pm-utils_1.4.1-13ubuntu0.2] +file = pm-utils_1.4.1-13ubuntu0.2_all.deb +md5 = 03a8612ffee21b5bf66e8251c0584414 +source = repo:trusty-updates/main/ -[policykit-1_0.105-4ubuntu2.14.04.1] -file = policykit-1_0.105-4ubuntu2.14.04.1_amd64.deb -md5 = 5f6da9330f707d5204f4cce6ca8bc3b6 -source = repo:trusty-updates +[policykit-1_0.105-4ubuntu3.14.04.1] +file = policykit-1_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = 5ab9c109043f9f50851441ab6b0babf3 +source = repo:trusty-updates/main/ [pyflakes_0.8.1-1] file = pyflakes_0.8.1-1_all.deb md5 = 1e2c9fc899d2af03575911b6ffbf0ab1 -source = repo:trusty +source = repo:trusty/main/ [python-alembic_0.6.5+ds-1~cloud2] file = python-alembic_0.6.5+ds-1~cloud2_all.deb md5 = f5b988160c4f583c4e38d309b2737f0e -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-amqp_1.4.5-1ubuntu1~cloud0] file = python-amqp_1.4.5-1ubuntu1~cloud0_all.deb md5 = 1df091f934254728dc5acd3972ad317e -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-amqplib_1.0.2-1] file = python-amqplib_1.0.2-1_all.deb md5 = c5fbd5a52f7b755bc35866748d34a327 -source = repo:trusty +source = repo:trusty/main/ [python-anyjson_0.3.3-1build1] file = python-anyjson_0.3.3-1build1_all.deb md5 = 12fd230b8619d75b80d63b154b2b94d0 -source = repo:trusty +source = repo:trusty/main/ [python-appconf_0.5-2build1] file = python-appconf_0.5-2build1_all.deb md5 = 8733edb63cd4c860b360735aa5677f2b -source = repo:trusty +source = repo:trusty/main/ [python-babel-localedata_1.3+dfsg.1-2ubuntu2] file = python-babel-localedata_1.3+dfsg.1-2ubuntu2_all.deb md5 = 04b563190593c2cfbb03c684db356bcf -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-babel_1.3+dfsg.1-2ubuntu2] file = python-babel_1.3+dfsg.1-2ubuntu2_all.deb md5 = af3cd914d55062d4e165dc7b1e536507 -source = repo:trusty-updates - -[python-bitstring_3.1.3-2] -file = python-bitstring_3.1.3-2_all.deb -md5 = b54d9fbcacba9dfa8b61569ab65938cc +source = repo:trusty-updates/main/ [python-barbicanclient_2.2.1-1~cloud0] file = python-barbicanclient_2.2.1-1~cloud0_all.deb md5 = fca0948a2ed760090d6e0e8702124a4a -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-bottle_0.12.0-1] file = python-bottle_0.12.0-1_all.deb md5 = 1a4e42bfa1b06f6ec20c39f5b493f3d6 -source = repo:trusty +source = repo:trusty/universe/ [python-bs4_4.2.1-1ubuntu2] file = python-bs4_4.2.1-1ubuntu2_all.deb md5 = 88cdf603cfadcea1434107d4ffe454bd -source = repo:trusty +source = repo:trusty/main/ [python-bson-ext_2.6.3-1build1] file = python-bson-ext_2.6.3-1build1_amd64.deb md5 = 9e482b83b8a324c98553a4b9ca4fd4f1 -source = repo:trusty +source = repo:trusty/main/ [python-bson_2.6.3-1build1] file = python-bson_2.6.3-1build1_amd64.deb md5 = 8c6b1fd703e40aac4f4c08a12f0fc2c6 -source = repo:trusty +source = repo:trusty/main/ [python-cliff-doc_1.7.0-0ubuntu3~cloud0] file = python-cliff-doc_1.7.0-0ubuntu3~cloud0_all.deb md5 = 43bb09e0bc340af642f3eb636be8680e -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-cliff_1.7.0-0ubuntu3~cloud0] file = python-cliff_1.7.0-0ubuntu3~cloud0_all.deb md5 = 163d2a3120406678bc69e8e28a82ae7e -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-cmd2_0.6.7-2fakesync1build1] file = python-cmd2_0.6.7-2fakesync1build1_all.deb md5 = 9b2fea5232b418bee0ae8144aee42e6b -source = repo:trusty +source = repo:trusty/main/ [python-compressor_1.3-1ubuntu3] file = python-compressor_1.3-1ubuntu3_all.deb md5 = 20f4b4477a68e5e6c78598a2338cf2c1 -source = repo:trusty +source = repo:trusty/main/ [python-concurrent.futures_2.1.6-3] file = python-concurrent.futures_2.1.6-3_all.deb md5 = be8dfea9cff116aafc7c25491d304ead -source = repo:trusty +source = repo:trusty/main/ [python-coverage_3.7.1+dfsg.1-1ubuntu2] file = python-coverage_3.7.1+dfsg.1-1ubuntu2_amd64.deb md5 = 6e41e84dd8eaa881da49cf12414f2353 -source = repo:trusty +source = repo:trusty/main/ [python-croniter_0.3.4-0ubuntu1] file = python-croniter_0.3.4-0ubuntu1_all.deb md5 = cad5235306fd0714cc630eef59836bba -source = repo:trusty +source = repo:trusty/main/ [python-dateutil_1.5+dfsg-1ubuntu1] file = python-dateutil_1.5+dfsg-1ubuntu1_all.deb md5 = c2660e35f490a79c779f952cb2089339 -source = repo:trusty +source = repo:trusty/main/ [python-decorator_3.4.0-2build1] file = python-decorator_3.4.0-2build1_all.deb md5 = 14b3d2529bbf2ba7ea46553586ce24ed -source = repo:trusty +source = repo:trusty/main/ + +[python-distro-info_0.12] +file = python-distro-info_0.12_all.deb +md5 = 2cd49d3a5b11d44dfe84ac2fa383e8b5 +source = repo:trusty/main/ [python-django-pyscss_1.0.3-0ubuntu1~cloud0] file = python-django-pyscss_1.0.3-0ubuntu1~cloud0_all.deb md5 = 8b3da7ea5a5503731e7cd5ea35aca1bb -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ -[python-django_1.6.1-2ubuntu0.10] -file = python-django_1.6.1-2ubuntu0.10_all.deb -md5 = 696430e466e4006ed642a053270b018b -source = repo:trusty-updates +[python-django_1.6.1-2ubuntu0.14] +file = python-django_1.6.1-2ubuntu0.14_all.deb +md5 = 190ba06a033b7ddc582d154a178f8114 +source = repo:trusty-updates/main/ [python-dns_2.3.6-3] file = python-dns_2.3.6-3_all.deb md5 = 34c7f050754596bd1bf406934623f6ff -source = repo:trusty - -[python-docker-py_0.6.1-dev] -file = python-docker-py_0.6.1-dev_all.deb -md5 = ff9daafe11d7f904032f5c830f67941a -source = repo:contrail-thirdparty +source = repo:trusty/main/ [python-docutils_0.11-3] file = python-docutils_0.11-3_all.deb md5 = 7cf66803c3d8edaf1b491b84c56c80b4 -source = repo:trusty +source = repo:trusty/main/ [python-dogpile.cache_0.5.4-1ubuntu2~cloud0] file = python-dogpile.cache_0.5.4-1ubuntu2~cloud0_all.deb md5 = cfb290eb33088c5484c6d9fb507fea51 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-dogpile.core_0.4.1+dfsg1-2~cloud0] file = python-dogpile.core_0.4.1+dfsg1-2~cloud0_all.deb md5 = 35e401fbb2ddce1bcb0e0f6e2133caaa -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-egenix-mxdatetime_3.2.7-1build1] file = python-egenix-mxdatetime_3.2.7-1build1_amd64.deb md5 = 4e21c0f87adf7e84f81c3a4dc2530d01 -source = repo:trusty +source = repo:trusty/main/ [python-egenix-mxtools_3.2.7-1build1] file = python-egenix-mxtools_3.2.7-1build1_amd64.deb md5 = b9698c57bd43531159ffc6a0c1e7a958 -source = repo:trusty +source = repo:trusty/main/ [python-eventlet_0.13.0-1ubuntu3.3~cloud0] file = python-eventlet_0.13.0-1ubuntu3.3~cloud0_all.deb md5 = f6d083a0b162a5c372fc8baafefd7a78 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-extras_0.0.3-2ubuntu1] file = python-extras_0.0.3-2ubuntu1_all.deb md5 = a0f3242f6ef4e8143fa584e0aa887efe -source = repo:trusty +source = repo:trusty/main/ [python-fixtures_0.3.14-1.1ubuntu1~cloud0] file = python-fixtures_0.3.14-1.1ubuntu1~cloud0_all.deb md5 = 1df57a7d4c06b4d33e867d53f2507e15 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-flake8_2.1.0-1ubuntu1] file = python-flake8_2.1.0-1ubuntu1_amd64.deb md5 = d05ff0bbf62f3f866c7b43c30d2b4f5f -source = repo:trusty +source = repo:trusty/universe/ [python-formencode_1.2.6-1ubuntu1] file = python-formencode_1.2.6-1ubuntu1_all.deb md5 = d33916fa01b79f40d3f7956cb0b84875 -source = repo:trusty +source = repo:trusty/main/ -[python-gevent_1.0-1ubuntu1] -file = python-gevent_1.0-1ubuntu1_amd64.deb -md5 = 7a0e277b556505bd5d663986ba8df167 -source = repo:trusty +[python-gevent_1.0-1ubuntu1.1] +file = python-gevent_1.0-1ubuntu1.1_amd64.deb +md5 = 009938f1686163b0d2746e0649aa3366 +source = repo:trusty-updates/main/ [python-greenlet_0.4.2-1ubuntu0.1] file = python-greenlet_0.4.2-1ubuntu0.1_amd64.deb md5 = d60b17fe3c82ecdfc16fe2da075f3ee8 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-gridfs_2.6.3-1build1] file = python-gridfs_2.6.3-1build1_all.deb md5 = 5bda8eff55d7a642fa348163ddc239fc -source = repo:trusty +source = repo:trusty/main/ [python-hacking_0.9.2-0ubuntu3~cloud0] file = python-hacking_0.9.2-0ubuntu3~cloud0_all.deb md5 = 27ca38f35e11cec48ab6b5f87814afa0 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-happybase_0.8-0ubuntu1] file = python-happybase_0.8-0ubuntu1_all.deb md5 = 9a55b2ab63f80395a11d6b9854f710e5 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-httplib2_0.8-2build1] file = python-httplib2_0.8-2build1_all.deb md5 = f89336424e43d4c425427218fe78ca7f -source = repo:trusty +source = repo:trusty/main/ [python-iniparse_0.4-2.1build1] file = python-iniparse_0.4-2.1build1_all.deb md5 = 3d81a65e52f0d19ad3c19ce67c522dfd -source = repo:trusty +source = repo:trusty/universe/ [python-ipaddr_2.1.10-1] file = python-ipaddr_2.1.10-1_all.deb md5 = dd68b2b72af833f9d6ae8c783bddec96 -source = repo:trusty +source = repo:trusty/main/ [python-iso8601_0.1.10-0ubuntu1] file = python-iso8601_0.1.10-0ubuntu1_all.deb md5 = cf96e81ac68c98ba7dccab09b29e7a1b -source = repo:trusty +source = repo:trusty/main/ [python-jinja2_2.7.2-2] file = python-jinja2_2.7.2-2_all.deb md5 = 9cd2578120e51095678dce07fe22a7ad -source = repo:trusty +source = repo:trusty/main/ [python-json-patch_1.3-4] file = python-json-patch_1.3-4_all.deb md5 = 5b8a855cfd49edad79d3432f227d42c0 -source = repo:trusty +source = repo:trusty/main/ [python-json-pointer_1.0-2build1] file = python-json-pointer_1.0-2build1_all.deb md5 = b0762e2a2192458adcbf70e6be02172d -source = repo:trusty +source = repo:trusty/main/ [python-jsonpatch_1.3-4] file = python-jsonpatch_1.3-4_all.deb md5 = d1521e9621c4c751d164a6d979705a12 -source = repo:trusty +source = repo:trusty/main/ [python-jsonpath-rw_1.2.0-1build1] file = python-jsonpath-rw_1.2.0-1build1_all.deb md5 = 7e40b1562d3f18032e6236b1ada10cb6 -source = repo:trusty +source = repo:trusty/main/ [python-jsonpickle_0.6.1-1] file = python-jsonpickle_0.6.1-1_all.deb md5 = db9b413b399c262c53a547fb3e6e7342 -source = repo:trusty +source = repo:trusty/universe/ [python-jsonrpclib_0.1.3-1build1] file = python-jsonrpclib_0.1.3-1build1_all.deb md5 = 0277bea4326378576c341221acc648c2 -source = repo:trusty +source = repo:trusty/main/ [python-jsonschema_2.3.0-1build1] file = python-jsonschema_2.3.0-1build1_all.deb md5 = f24f78b639a2aed323e456bd8df4b099 -source = repo:trusty +source = repo:trusty/main/ + +[python-kazoo_1.3.1-1ubuntu1~cloud0] +file = python-kazoo_1.3.1-1ubuntu1~cloud0_all.deb +md5 = aab0657daa0628c3992a5ac8e492169e +source = repo:trusty-updates-juno/main/ -[python-keystone_1:2014.2.3-0ubuntu1~cloud0] -file = python-keystone_1%%3a2014.2.3-0ubuntu1~cloud0_all.deb -md5 = c2096ceec87281285ed86ac28a7f047f -source = repo:trusty-updates-juno +[python-keystone_1:2014.2.4-0ubuntu1~cloud2] +file = python-keystone_1%%3a2014.2.4-0ubuntu1~cloud2_all.deb +md5 = ed1751ba0f354abf966b781d040c7544 +source = repo:trusty-updates-juno/main/ [python-keystoneclient_1:0.10.1-0ubuntu1.2~cloud0] file = python-keystoneclient_1%%3a0.10.1-0ubuntu1.2~cloud0_all.deb md5 = ffc76ae60d85944f2e7db3757514fb42 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-keystonemiddleware_1.0.0-1ubuntu0.14.10.3~cloud0] file = python-keystonemiddleware_1.0.0-1ubuntu0.14.10.3~cloud0_all.deb md5 = 345a47485a109f44f96a97af8be90dc7 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-kombu_3.0.7-1ubuntu1] file = python-kombu_3.0.7-1ubuntu1_all.deb md5 = be47130b5d6eaa5e5e889e86d68dbbd7 -source = repo:trusty +source = repo:trusty/main/ [python-ldap_2.4.10-1build1] file = python-ldap_2.4.10-1build1_amd64.deb md5 = 36ab6c8b74d3f2ac5959a605a20d0882 -source = repo:trusty +source = repo:trusty/main/ [python-ldappool_1.0-1ubuntu1~cloud0] file = python-ldappool_1.0-1ubuntu1~cloud0_all.deb md5 = 68e342f323fcfbeb2a9bd3b1d18422d5 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-librabbitmq_1.0.3-0ubuntu1] file = python-librabbitmq_1.0.3-0ubuntu1_amd64.deb md5 = 04d44a37219a864fcc78060099b62b5e -source = repo:trusty +source = repo:trusty/main/ [python-libvirt_1.2.2-0ubuntu2] file = python-libvirt_1.2.2-0ubuntu2_amd64.deb md5 = dddb4e142fa81e77e6414ed1794f01f9 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-lockfile_1:0.8-2ubuntu2] file = python-lockfile_1%%3a0.8-2ubuntu2_all.deb md5 = 0b3a1c9d495cacbc645ee45ec84e2ff5 -source = repo:trusty +source = repo:trusty/main/ [python-logutils_0.3.3-1] file = python-logutils_0.3.3-1_all.deb md5 = eab1885a8d7289f8145cc8fa35cde3e0 -source = repo:trusty +source = repo:trusty/universe/ [python-lxc_0.1-0ubuntu3~cloud1] file = python-lxc_0.1-0ubuntu3~cloud1_amd64.deb md5 = b2cdc20c2fbb18ab85378f52339e5e70 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ + +[python-lxml_3.3.3-1ubuntu0.1] +file = python-lxml_3.3.3-1ubuntu0.1_amd64.deb +md5 = d1c5b5a5a64e196f73d9e2c9dc7b7ce5 +source = repo:trusty-updates/main/ [python-m2crypto_0.21.1-3ubuntu5] file = python-m2crypto_0.21.1-3ubuntu5_amd64.deb md5 = 4e14c4078c358c09b45462ca2270155a -source = repo:trusty +source = repo:trusty/main/ [python-mako_0.9.1-1] file = python-mako_0.9.1-1_all.deb md5 = 78c42602a68f81f6e49034fbeea117a5 -source = repo:trusty +source = repo:trusty/main/ [python-markupsafe_0.18-1build2] file = python-markupsafe_0.18-1build2_amd64.deb md5 = 710ec5c745dcd9994e049c3da8ecef7e -source = repo:trusty +source = repo:trusty/main/ [python-mccabe_0.2.1-1] file = python-mccabe_0.2.1-1_all.deb md5 = 8842a7a092348653c882db244b43ab3b -source = repo:trusty +source = repo:trusty/universe/ [python-meld3_0.6.10-1] file = python-meld3_0.6.10-1_amd64.deb md5 = e29f37ebfa28bb3ddebc91df3c339b47 -source = repo:trusty +source = repo:trusty/universe/ [python-memcache_1.53-1build1] file = python-memcache_1.53-1build1_all.deb md5 = f571071e73b7d12586bba80a5fb77d9c -source = repo:trusty +source = repo:trusty/main/ [python-migrate_0.9.1-1ubuntu1~cloud2] file = python-migrate_0.9.1-1ubuntu1~cloud2_all.deb md5 = 59e0be3696990cf0a57b461a072a54c9 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-mimeparse_0.1.4-1build1] file = python-mimeparse_0.1.4-1build1_all.deb md5 = 35001c4d6be265d6040285d96bb04fa5 -source = repo:trusty +source = repo:trusty/main/ [python-mock_1.0.1-3] file = python-mock_1.0.1-3_all.deb md5 = 322bef0632cb2bfa8dc51844703a46a5 -source = repo:trusty +source = repo:trusty/main/ [python-msgpack_0.4.2-1~cloud0] file = python-msgpack_0.4.2-1~cloud0_amd64.deb md5 = 5849f792e59147428b29a3c3440416df -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-mysqldb_1.2.3-2ubuntu1] file = python-mysqldb_1.2.3-2ubuntu1_amd64.deb md5 = f9afbad9900ea523db8e77a9b13e147b -source = repo:trusty +source = repo:trusty/main/ [python-netifaces_0.8-3build1] file = python-netifaces_0.8-3build1_amd64.deb md5 = 40fb4a22bd2fe83f69c796a8d6979b78 -source = repo:trusty +source = repo:trusty/main/ -[python-netsnmp_5.7.2~dfsg-8.1ubuntu3.1] -file = python-netsnmp_5.7.2~dfsg-8.1ubuntu3.1_amd64.deb -md5 = c76998643a6f038bdde475d21e9e6337 -source = repo:trusty-updates +[python-netsnmp_5.7.2~dfsg-8.1ubuntu3.2] +file = python-netsnmp_5.7.2~dfsg-8.1ubuntu3.2_amd64.deb +md5 = 377f172050ff6236dc0c8624e241b246 +source = repo:trusty-updates/universe/ [python-networkx_1.8.1-0ubuntu3] file = python-networkx_1.8.1-0ubuntu3_all.deb md5 = e56789bcfefec7b730a35c983670346b -source = repo:trusty +source = repo:trusty/main/ -[python-neutron_1:2014.2.3-0ubuntu2~cloud0] -file = python-neutron_1%%3a2014.2.3-0ubuntu2~cloud0_all.deb -md5 = b8a34eae9a6392eec35eab41d3d8bd80 -source = repo:trusty-updates-juno +[python-neutron_1:2014.2.4-0ubuntu1~cloud1] +file = python-neutron_1%%3a2014.2.4-0ubuntu1~cloud1_all.deb +md5 = 3833cf9399f986b990b909d8b19d8c38 +source = repo:trusty-updates-juno/main/ [python-numpy_1:1.8.2-0ubuntu0.1] file = python-numpy_1%%3a1.8.2-0ubuntu0.1_amd64.deb md5 = 00c0681a5a332a86999a5fbc02455844 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-oauthlib_0.6.1-1] file = python-oauthlib_0.6.1-1_all.deb md5 = c9d6b2599b97bf3a4b95339b441da10d -source = repo:trusty +source = repo:trusty/main/ [python-openid_2.2.5-3ubuntu1] file = python-openid_2.2.5-3ubuntu1_all.deb md5 = 18f10f480ec0e16fab9c27e361148ade -source = repo:trusty +source = repo:trusty/main/ [python-openssl_0.13-2ubuntu6] file = python-openssl_0.13-2ubuntu6_amd64.deb md5 = c8f4a14fb0469dadcbe379db48a7061f -source = repo:trusty +source = repo:trusty/main/ [python-oslo.config_1:1.4.0.0-0ubuntu1~cloud0] file = python-oslo.config_1%%3a1.4.0.0-0ubuntu1~cloud0_all.deb md5 = e6aa17f840a5a8ce440cce5ce7090020 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-oslo.db_1.0.0-0ubuntu1~cloud0] file = python-oslo.db_1.0.0-0ubuntu1~cloud0_all.deb md5 = bac03b2a6036f020d262c2686aa67c09 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-oslo.i18n_1.0.0-0ubuntu1~cloud0] file = python-oslo.i18n_1.0.0-0ubuntu1~cloud0_all.deb md5 = 27505a3ac54b3f90126b1a6baf169441 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ -[python-oslo.messaging] -file = python-oslo.messaging_1.4.1-0ubuntu1-2contrail1_all.deb -md5 = 4a165aa7dfa6b97246ee579350e163e9 -source = repo:contrail-thirdparty +[python-oslo.messaging_1.4.1-0ubuntu1.2~cloud1] +file = python-oslo.messaging_1.4.1-0ubuntu1.2~cloud1_all.deb +md5 = a1929ecfbf801cbf19f8136ea6b67a70 +source = repo:trusty-updates-juno/main/ [python-oslo.rootwrap_1.3.0.0-0ubuntu1~cloud0] file = python-oslo.rootwrap_1.3.0.0-0ubuntu1~cloud0_all.deb md5 = 911f992791fb8a3f6c925b42e7d36b6c -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-oslo.serialization_1.0.0-0ubuntu1~cloud0] file = python-oslo.serialization_1.0.0-0ubuntu1~cloud0_all.deb md5 = 8d30b608d0e4b0bf9d0c4b560e6709a6 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-oslo.utils_1.0.0-0ubuntu1~cloud0] file = python-oslo.utils_1.0.0-0ubuntu1~cloud0_all.deb md5 = cb60275cc086c831701d871e0f2b2128 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-oslo.vmware_0.6.0-1ubuntu2~cloud0] file = python-oslo.vmware_0.6.0-1ubuntu2~cloud0_all.deb md5 = b0e1b7c6e962e6288b5b9e37f1e9998b -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-oslosphinx_2.2.0.0~a3-1~cloud0] file = python-oslosphinx_2.2.0.0~a3-1~cloud0_all.deb md5 = 31df52d8f2650dd897466d04e46837c8 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-osprofiler_0.3.0-0ubuntu1~cloud0] file = python-osprofiler_0.3.0-0ubuntu1~cloud0_all.deb md5 = d7b7aea5d7e09c7c6e906eb5558dd7d7 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-pam_0.4.2-13.1ubuntu3] file = python-pam_0.4.2-13.1ubuntu3_amd64.deb md5 = e518dde3fdb06254f7d383fa289ff049 -source = repo:trusty +source = repo:trusty/main/ [python-passlib_1.5.3-0ubuntu3] file = python-passlib_1.5.3-0ubuntu3_all.deb md5 = 148af17ab6f32a5dc65e7c1a5829ec92 -source = repo:trusty +source = repo:trusty/main/ [python-paste_1.7.5.1-6ubuntu3] file = python-paste_1.7.5.1-6ubuntu3_all.deb md5 = 087a0e6d604920077dba2eb699fee451 -source = repo:trusty +source = repo:trusty/main/ [python-pastedeploy-tpl_1.5.2-1] file = python-pastedeploy-tpl_1.5.2-1_all.deb md5 = 026875f9ea63f46eb1c7271f48563ce4 -source = repo:trusty +source = repo:trusty/main/ [python-pastedeploy_1.5.2-1] file = python-pastedeploy_1.5.2-1_all.deb md5 = 3c0587c8218a420b1718ab9b5f01b42f -source = repo:trusty +source = repo:trusty/main/ [python-pastescript_1.7.5-3build1] file = python-pastescript_1.7.5-3build1_all.deb md5 = efbe8811182fd40546ff68cd99ab0df7 -source = repo:trusty +source = repo:trusty/main/ [python-pbr_0.10.0-0ubuntu1~cloud0] file = python-pbr_0.10.0-0ubuntu1~cloud0_all.deb md5 = ede339727e1946ab874a82b56e7a68bf -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-pecan_0.6.1-2~cloud0] file = python-pecan_0.6.1-2~cloud0_all.deb md5 = 984b6412cab27e0c0154361d193211af -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-pil_2.3.0-1ubuntu3] file = python-pil_2.3.0-1ubuntu3_amd64.deb md5 = ccdcf48f9807dd1124134f77dc31afe3 -source = repo:trusty +source = repo:trusty/main/ [python-ply_3.4-3ubuntu2] file = python-ply_3.4-3ubuntu2_all.deb md5 = 780d4d20630869b23007bd41bd5dc98e -source = repo:trusty +source = repo:trusty/main/ [python-posix-ipc_0.9.8-2~cloud0] file = python-posix-ipc_0.9.8-2~cloud0_amd64.deb md5 = d398aa456c51ff507e5518b8232cf00c -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-prettytable_0.7.2-2ubuntu2] file = python-prettytable_0.7.2-2ubuntu2_all.deb md5 = 1532d286ecad16204509eca1e97b8c37 -source = repo:trusty +source = repo:trusty/main/ [python-psutil_1.2.1-1ubuntu2] file = python-psutil_1.2.1-1ubuntu2_amd64.deb md5 = d2bcb47170d171e72068dad186d9f6cd -source = repo:trusty +source = repo:trusty/main/ [python-psycopg2_2.4.5-1build5] file = python-psycopg2_2.4.5-1build5_amd64.deb md5 = 6894f277ac048b7f0e0c4263c6a5b7b9 -source = repo:trusty +source = repo:trusty/main/ [python-pyasn1_0.1.7-1ubuntu2] file = python-pyasn1_0.1.7-1ubuntu2_all.deb md5 = 34840f47ca2ea766262d8759cfa54d79 -source = repo:trusty +source = repo:trusty/main/ [python-pycadf_0.6.0-0ubuntu1~cloud0] file = python-pycadf_0.6.0-0ubuntu1~cloud0_all.deb md5 = b3ebe7a140442c94a16af77bd6717b25 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ + +[python-pycurl_7.19.3-0ubuntu3] +file = python-pycurl_7.19.3-0ubuntu3_amd64.deb +md5 = ec3c7bd4aca6d62d35177f9f940f3032 +source = repo:trusty/main/ -[python-pygments_1.6+dfsg-1ubuntu1] -file = python-pygments_1.6+dfsg-1ubuntu1_all.deb -md5 = 30fe5926501152cd9f334676175e701e -source = repo:trusty +[python-pygments_1.6+dfsg-1ubuntu1.1] +file = python-pygments_1.6+dfsg-1ubuntu1.1_all.deb +md5 = 3f20014203df9c69eb47462029f8f4f0 +source = repo:trusty-updates/main/ [python-pymemcache_1.2.4-2~cloud0] file = python-pymemcache_1.2.4-2~cloud0_all.deb md5 = ccd16d2fdf1f95ffdb90b722dc72a0a6 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-pymongo-ext_2.6.3-1build1] file = python-pymongo-ext_2.6.3-1build1_amd64.deb md5 = 6c4a0a73e79d07b83bb9d909db2e46f0 -source = repo:trusty +source = repo:trusty/main/ [python-pymongo_2.6.3-1build1] file = python-pymongo_2.6.3-1build1_amd64.deb md5 = 774d0f0d9dc52a42591d1efab4d1826a -source = repo:trusty +source = repo:trusty/main/ [python-pyparsing_2.0.1+dfsg1-1build1] file = python-pyparsing_2.0.1+dfsg1-1build1_all.deb md5 = 33831b0b33cd23bd2266f6f19dac2817 -source = repo:trusty - -[python-pyvmomi_5.5.0-2014.1.1-1] -file = python-pyvmomi_5.5.0-2014.1.1-1_all.deb -md5 = cdcdad00e07a88920b931215a2499a36 +source = repo:trusty/main/ [python-pyscss_1.2.1-0ubuntu2~cloud0] file = python-pyscss_1.2.1-0ubuntu2~cloud0_amd64.deb md5 = f0c86da85c21b173e2015580b59f061b -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-pysnmp4-apps_0.3.2-1] file = python-pysnmp4-apps_0.3.2-1_all.deb md5 = f2fc5a8741cc9a4c8bdae969929bfc5a -source = repo:trusty +source = repo:trusty/universe/ [python-pysnmp4-mibs_0.1.3-1] file = python-pysnmp4-mibs_0.1.3-1_all.deb md5 = a09eef881df5cc7bcaa07273dce27695 -source = repo:trusty +source = repo:trusty/universe/ [python-pysnmp4_4.2.5-1] file = python-pysnmp4_4.2.5-1_all.deb md5 = 395c65aa72adea6bdbb71294f4cde922 -source = repo:trusty +source = repo:trusty/universe/ [python-qpid_0.22+dfsg-1] file = python-qpid_0.22+dfsg-1_all.deb md5 = 647e9851d3fb2db8c92c4bcd98a11970 -source = repo:trusty +source = repo:trusty/universe/ [python-repoze.lru_0.6-4] file = python-repoze.lru_0.6-4_all.deb md5 = ec42d32ed67499bf97f2843b4b667b7e -source = repo:trusty +source = repo:trusty/main/ [python-requestbuilder_0.1.0~beta2-1build1] file = python-requestbuilder_0.1.0~beta2-1build1_all.deb md5 = 4f995a3bea20ed1fc3d71ba56be31773 -source = repo:trusty +source = repo:trusty/main/ [python-requests_2.3.0-1ubuntu0.1~cloud0] file = python-requests_2.3.0-1ubuntu0.1~cloud0_all.deb md5 = eece9be69f3b39738ac88d529768fba5 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-retrying_1.2.3-1ubuntu1~cloud0] file = python-retrying_1.2.3-1ubuntu1~cloud0_all.deb md5 = dc73b84e9ca7c0f30cf7a106c5f418c7 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-rfc3986_0.2.0-2~cloud0] file = python-rfc3986_0.2.0-2~cloud0_all.deb md5 = 76a1c18ab4716f144568768782068768 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-roman_2.0.0-1] file = python-roman_2.0.0-1_all.deb md5 = 42ddb3020c581af10d1d608d66d4c3e6 -source = repo:trusty +source = repo:trusty/main/ [python-routes_2.0-1build1] file = python-routes_2.0-1build1_all.deb md5 = 93a7d9dd3af53796899a461c4cb2261e -source = repo:trusty +source = repo:trusty/main/ [python-scgi_1.13-1.1build1] file = python-scgi_1.13-1.1build1_amd64.deb md5 = cf245a8f89a68cef75d45d943bcbe8e3 -source = repo:trusty +source = repo:trusty/main/ [python-serial_2.6-1build1] file = python-serial_2.6-1build1_all.deb md5 = 815adaf14f9c402d2d0507b1d99e7d71 -source = repo:trusty +source = repo:trusty/main/ [python-simplegeneric_0.8.1-1] file = python-simplegeneric_0.8.1-1_all.deb md5 = fc5b6db5f33a90082b89507dab83dd20 -source = repo:trusty +source = repo:trusty/main/ [python-simplejson_3.3.1-1ubuntu6] file = python-simplejson_3.3.1-1ubuntu6_amd64.deb md5 = 9dfdf538974081a2e1c8ff0ac57f872b -source = repo:trusty +source = repo:trusty/main/ [python-singledispatch_3.4.0.2-1] file = python-singledispatch_3.4.0.2-1_all.deb md5 = e2fca1472153b1c89b6b5d72913ba245 -source = repo:trusty +source = repo:trusty/universe/ [python-six_1.7.3-2~cloud0] file = python-six_1.7.3-2~cloud0_all.deb md5 = 3366f7110b8d30b62a0912ec65da2216 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ -[python-software-properties_0.92.37.6] -file = python-software-properties_0.92.37.6_all.deb -md5 = be60b49550d4747a00da74572d5acca8 -source = repo:trusty-updates +[python-software-properties_0.92.37.7] +file = python-software-properties_0.92.37.7_all.deb +md5 = cc9326a3fe5391cabff304b21c6b2741 +source = repo:trusty-updates/universe/ [python-sphinx_1.2.2+dfsg-1ubuntu1.1] file = python-sphinx_1.2.2+dfsg-1ubuntu1.1_all.deb md5 = 0c8682a0f4fa77d103cba93f601542e4 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-sqlalchemy-ext_0.9.7-1~cloud0] file = python-sqlalchemy-ext_0.9.7-1~cloud0_amd64.deb md5 = bc0a9f868911b09e35c2276b8924f71e -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-sqlalchemy_0.9.7-1~cloud0] file = python-sqlalchemy_0.9.7-1~cloud0_all.deb md5 = 7ddebd7cefd03041293447eab0139b3c -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-stevedore_1.0.0.0-0ubuntu1~cloud0] file = python-stevedore_1.0.0.0-0ubuntu1~cloud0_all.deb md5 = 6296567d2186373306d115d3d6900dab -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-suds_0.4.1-11ubuntu0.1] file = python-suds_0.4.1-11ubuntu0.1_all.deb md5 = 0f222270b439e25c2ae3e850d6dbc8b2 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-support_1.0.15] file = python-support_1.0.15_all.deb md5 = 0d45e460d9fb2de50444bf59de240a6f -source = repo:trusty +source = repo:trusty/universe/ [python-tempita_0.5.2-1build1] file = python-tempita_0.5.2-1build1_all.deb md5 = fa4fd67b02d761715923b71375fd6f08 -source = repo:trusty +source = repo:trusty/main/ [python-testtools_0.9.35-0ubuntu1] file = python-testtools_0.9.35-0ubuntu1_all.deb md5 = 02712b24a895979d852fa23df1940d82 -source = repo:trusty +source = repo:trusty/main/ [python-thrift_0.9.0-1build1] file = python-thrift_0.9.0-1build1_amd64.deb md5 = 8c575c6f55b81fb07c8b03c14c2be2fb -source = repo:trusty +source = repo:trusty/main/ [python-tooz_0.3+repack-0ubuntu1~cloud0] file = python-tooz_0.3+repack-0ubuntu1~cloud0_all.deb md5 = 5426a580061086e084fcfa21e2063920 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-twisted-bin_13.2.0-1ubuntu1] file = python-twisted-bin_13.2.0-1ubuntu1_amd64.deb md5 = 39a949056036e466cade398174562691 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-conch_1:13.2.0-1ubuntu1] file = python-twisted-conch_1%%3a13.2.0-1ubuntu1_all.deb md5 = b56ec1fca44c035778c468c934dad468 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-core_13.2.0-1ubuntu1] file = python-twisted-core_13.2.0-1ubuntu1_all.deb md5 = 9131bf286ce0473f29cfa8f3ccbaaf4e -source = repo:trusty +source = repo:trusty/main/ [python-twisted-lore_13.2.0-1ubuntu1] file = python-twisted-lore_13.2.0-1ubuntu1_all.deb md5 = fe1fb2faf26113f56cfe3f08c1409d24 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-mail_13.2.0-1ubuntu1] file = python-twisted-mail_13.2.0-1ubuntu1_all.deb md5 = 418831134dcef7e7cc5eb89a8e6072c3 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-names_13.2.0-1ubuntu1] file = python-twisted-names_13.2.0-1ubuntu1_all.deb md5 = e90b94dc1d359145a935fc5185e6a927 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-news_13.2.0-1ubuntu1] file = python-twisted-news_13.2.0-1ubuntu1_all.deb md5 = f902221c471866d3b669fdfc7003e8e3 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-runner_13.2.0-1ubuntu1] file = python-twisted-runner_13.2.0-1ubuntu1_amd64.deb md5 = 17b308323ceae618c2c45a98ab202fb5 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-web_13.2.0-1ubuntu1] file = python-twisted-web_13.2.0-1ubuntu1_all.deb md5 = 5143e752b56f1e0d31a4d544506af263 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-words_13.2.0-1ubuntu1] file = python-twisted-words_13.2.0-1ubuntu1_all.deb md5 = 63af9f9ccdbcce16975d9704a89d9746 -source = repo:trusty +source = repo:trusty/main/ [python-twisted_13.2.0-1ubuntu1] file = python-twisted_13.2.0-1ubuntu1_all.deb md5 = 95d58118ed009eb63f45615787cb8375 -source = repo:trusty +source = repo:trusty/main/ [python-tz_2012c-1ubuntu0.1] file = python-tz_2012c-1ubuntu0.1_all.deb md5 = e46015b7b7daf5473e9afb5415bf2112 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-urllib3_1.7.1-1ubuntu4] file = python-urllib3_1.7.1-1ubuntu4_all.deb @@ -2372,249 +2441,245 @@ source = repo:trusty-updates [python-waitress_0.8.8-1ubuntu3] file = python-waitress_0.8.8-1ubuntu3_all.deb md5 = 684a0b7c8d8fa234c4fc289afc8914f6 -source = repo:trusty +source = repo:trusty/main/ [python-warlock_1.1.0-0ubuntu2] file = python-warlock_1.1.0-0ubuntu2_all.deb md5 = b21f1f41e9e0ff96112656890c98f314 -source = repo:trusty +source = repo:trusty/main/ [python-webob_1.3.1-1] file = python-webob_1.3.1-1_all.deb md5 = 703bfe383914afa08877b2a861b15508 -source = repo:trusty +source = repo:trusty/main/ [python-websocket_0.12.0-1ubuntu2] file = python-websocket_0.12.0-1ubuntu2_all.deb md5 = d5aa805d654c76f3ee51f0c08b7638fe -source = repo:trusty +source = repo:trusty/universe/ [python-webtest_2.0.14-1ubuntu1] file = python-webtest_2.0.14-1ubuntu1_all.deb md5 = 4291bf89503e270abfed8a8850a8210f -source = repo:trusty +source = repo:trusty/main/ [python-wsme_0.6-0ubuntu1] file = python-wsme_0.6-0ubuntu1_all.deb md5 = 400b5bf513f6c7754e56fad1ec833b4b -source = repo:trusty +source = repo:trusty/main/ [python-zope.interface_4.0.5-1ubuntu4] file = python-zope.interface_4.0.5-1ubuntu4_amd64.deb md5 = 74638361153d4f40914cdfb23a2d1523 -source = repo:trusty +source = repo:trusty/main/ [python2.7-minimal_2.7.6-8ubuntu0.2] file = python2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb md5 = cb8b7f9637e05f64482f6657ef4df02f -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python2.7_2.7.6-8ubuntu0.2] file = python2.7_2.7.6-8ubuntu0.2_amd64.deb md5 = fb63cafe276fd18b231ae3d1d695157e -source = repo:trusty-updates - -[python3-apport_2.14.1-0ubuntu3.19] -file = python3-apport_2.14.1-0ubuntu3.19_all.deb -md5 = 9b2b1a10057042920d9cded35f3ba33c -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[python3-lxc_1.1.0~alpha2-0ubuntu3.3~cloud0] -file = python3-lxc_1.1.0~alpha2-0ubuntu3.3~cloud0_amd64.deb -md5 = afae1942ff4ddc566055f65a95225065 -source = repo:trusty-updates-juno +[python3-apport_2.14.1-0ubuntu3.21] +file = python3-apport_2.14.1-0ubuntu3.21_all.deb +md5 = c647ddd76cd9cb5a531ce175e81746a6 +source = repo:trusty-updates/main/ -[python3-pkg-resources_3.3-1ubuntu2] -file = python3-pkg-resources_3.3-1ubuntu2_all.deb -md5 = e44cbc2a92ab2c53d01c7d54a79020f0 -source = repo:trusty-updates +[python3-lxc_1.1.5-0ubuntu0.14.10.0~cloud0] +file = python3-lxc_1.1.5-0ubuntu0.14.10.0~cloud0_amd64.deb +md5 = 09c1ec0fef9917565423348c2785d0b6 +source = repo:trusty-updates-juno/main/ -[python3-problem-report_2.14.1-0ubuntu3.19] -file = python3-problem-report_2.14.1-0ubuntu3.19_all.deb -md5 = 328e0066fe51762028434d99cb60266f -source = repo:trusty-updates +[python3-problem-report_2.14.1-0ubuntu3.21] +file = python3-problem-report_2.14.1-0ubuntu3.21_all.deb +md5 = be1c2b9746879df60c815d561d42d4c8 +source = repo:trusty-updates/main/ [python3-pycurl_7.19.3-0ubuntu3] file = python3-pycurl_7.19.3-0ubuntu3_amd64.deb md5 = 4a8692a3639a46f0c512f5d77f42ff16 -source = repo:trusty - -[python3-software-properties_0.92.37.6] -file = python3-software-properties_0.92.37.6_all.deb -md5 = 64d63a664b59f54751946c8056df0673 -source = repo:trusty-updates - -[qemu-keymaps_2.0.0+dfsg-2ubuntu1.19] -file = qemu-keymaps_2.0.0+dfsg-2ubuntu1.19_all.deb -md5 = fb1da4991c978234583f3cba64bf2bf3 -source = repo:trusty-updates - -[qemu-system-arm_2.0.0+dfsg-2ubuntu1.19] -file = qemu-system-arm_2.0.0+dfsg-2ubuntu1.19_amd64.deb -md5 = 43c67bc5600ea163a133971d685855ff -source = repo:trusty-updates - -[qemu-system-common_2.0.0+dfsg-2ubuntu1.19] -file = qemu-system-common_2.0.0+dfsg-2ubuntu1.19_amd64.deb -md5 = cc3420ca741618186c0f5eb9af780fa6 -source = repo:trusty-updates - -[qemu-system-mips_2.0.0+dfsg-2ubuntu1.19] -file = qemu-system-mips_2.0.0+dfsg-2ubuntu1.19_amd64.deb -md5 = 2564733f7765f3b8d5907d7249b78055 -source = repo:trusty-updates - -[qemu-system-misc_2.0.0+dfsg-2ubuntu1.19] -file = qemu-system-misc_2.0.0+dfsg-2ubuntu1.19_amd64.deb -md5 = 48b3d1df980abb4c0cb657cffa2ba5ec -source = repo:trusty-updates - -[qemu-system-ppc_2.0.0+dfsg-2ubuntu1.19] -file = qemu-system-ppc_2.0.0+dfsg-2ubuntu1.19_amd64.deb -md5 = dfc3a6e808479cfc4424f4f7732d9b97 -source = repo:trusty-updates - -[qemu-system-sparc_2.0.0+dfsg-2ubuntu1.19] -file = qemu-system-sparc_2.0.0+dfsg-2ubuntu1.19_amd64.deb -md5 = 7c2da8380754b57eb89507cbe19964c7 -source = repo:trusty-updates - -[qemu-system-x86_2.0.0+dfsg-2ubuntu1.19] -file = qemu-system-x86_2.0.0+dfsg-2ubuntu1.19_amd64.deb -md5 = eb8eef058b4a2d5e9e2a7a8c906108fd -source = repo:trusty-updates - -[qemu-system_2.0.0+dfsg-2ubuntu1.19] -file = qemu-system_2.0.0+dfsg-2ubuntu1.19_amd64.deb -md5 = 2feafb512177ed596f8620ccf325f202 -source = repo:trusty-updates - -[qemu-utils_2.0.0+dfsg-2ubuntu1.19] -file = qemu-utils_2.0.0+dfsg-2ubuntu1.19_amd64.deb -md5 = a7dc2f2e774bb839d8c1f4702d8fb606 -source = repo:trusty-updates +source = repo:trusty/main/ + +[python3-software-properties_0.92.37.7] +file = python3-software-properties_0.92.37.7_all.deb +md5 = 00da7ba0cac32440cdd8c2137ca9771e +source = repo:trusty-updates/main/ + +[qemu-keymaps_2.0.0+dfsg-2ubuntu1.27] +file = qemu-keymaps_2.0.0+dfsg-2ubuntu1.27_all.deb +md5 = 0d3118527144e377794d57240570b68d +source = repo:trusty-updates/main/ + +[qemu-system-arm_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-arm_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = e09bac8b84f29d956c05eb6616de05da +source = repo:trusty-updates/main/ + +[qemu-system-common_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-common_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = d343a07c98da6b94a54154e9a41c434e +source = repo:trusty-updates/main/ + +[qemu-system-mips_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-mips_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = afc42bb59455f142122d3ae4dc3471b7 +source = repo:trusty-updates/main/ + +[qemu-system-misc_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-misc_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = 5a1b3461d8fcbdba46b42622d3250370 +source = repo:trusty-updates/main/ + +[qemu-system-ppc_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-ppc_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = c949a65bfcdb4461ae7b0994ef991ff9 +source = repo:trusty-updates/main/ + +[qemu-system-sparc_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-sparc_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = 5e56aebcb3d012432c671ae1b43235f8 +source = repo:trusty-updates/main/ + +[qemu-system-x86_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-x86_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = 3cbefef023ecdd0ef24d3c74e0df6ccf +source = repo:trusty-updates/main/ + +[qemu-system_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = c706f9444c66e27729170b99435e6202 +source = repo:trusty-updates/main/ + +[qemu-utils_2.0.0+dfsg-2ubuntu1.27] +file = qemu-utils_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = 1c26d8bfbf5e73755e59b1c5d09348bd +source = repo:trusty-updates/main/ [redis-server_2:2.8.4-2] file = redis-server_2%%3a2.8.4-2_amd64.deb md5 = 066f3ce93331b876b691df69d11b7e36 -source = repo:trusty +source = repo:trusty/universe/ [redis-tools_2:2.8.4-2] file = redis-tools_2%%3a2.8.4-2_amd64.deb md5 = 14b24b44ae06d6a46022189296e0777c -source = repo:trusty +source = repo:trusty/universe/ [rpcbind_0.2.1-2ubuntu2.2] file = rpcbind_0.2.1-2ubuntu2.2_amd64.deb md5 = 279a20e0acfea4036bce808ee12db789 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [seabios_1.7.4-4ubuntu1] file = seabios_1.7.4-4ubuntu1_all.deb md5 = c4beee0ed9baf674583742cccaf3640b -source = repo:trusty-updates +source = repo:trusty-updates/main/ [sharutils_1:4.14-1ubuntu1] file = sharutils_1%%3a4.14-1ubuntu1_amd64.deb md5 = 021cd2f95dd7fa1b4218d1caf50c882e -source = repo:trusty +source = repo:trusty/main/ [smitools_0.4.8+dfsg2-8ubuntu2] file = smitools_0.4.8+dfsg2-8ubuntu2_amd64.deb md5 = 275282c46c804b85014f83eb482711a2 -source = repo:trusty +source = repo:trusty/universe/ -[software-properties-common_0.92.37.6] -file = software-properties-common_0.92.37.6_all.deb -md5 = 62cff73fec96cf1972772f35e7fbc0e8 -source = repo:trusty-updates +[software-properties-common_0.92.37.7] +file = software-properties-common_0.92.37.7_all.deb +md5 = 195890432324c90ea6a0e1c332f953d6 +source = repo:trusty-updates/main/ [sphinx-common_1.2.2+dfsg-1ubuntu1.1] file = sphinx-common_1.2.2+dfsg-1ubuntu1.1_all.deb md5 = 5828c78b2e322b2fa0b3cbc4f690d3cc -source = repo:trusty-updates +source = repo:trusty-updates/main/ [sphinx-doc_1.2.2+dfsg-1ubuntu1.1] file = sphinx-doc_1.2.2+dfsg-1ubuntu1.1_all.deb md5 = 8a3819b9976a42780fd4b102f690c158 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [ssl-cert_1.0.33] file = ssl-cert_1.0.33_all.deb md5 = bb2d2f616d7b4da9b76caa98002657eb -source = repo:trusty +source = repo:trusty/main/ [ttf-dejavu-core_2.34-1ubuntu1] file = ttf-dejavu-core_2.34-1ubuntu1_all.deb md5 = 9a1638907f97e9374172634e274f71fb -source = repo:trusty +source = repo:trusty/main/ -[tzdata-java_2015g-0ubuntu0.14.04] -file = tzdata-java_2015g-0ubuntu0.14.04_all.deb -md5 = 1aeed033ab69e10dd6b21a2d5f7d5ebf -source = repo:trusty-updates +[tzdata-java_2016f-0ubuntu0.14.04] +file = tzdata-java_2016f-0ubuntu0.14.04_all.deb +md5 = 5620efdbb515981213d76b01d5a1c6b0 +source = repo:trusty-updates/main/ -[tzdata_2015g-0ubuntu0.14.04] -file = tzdata_2015g-0ubuntu0.14.04_all.deb -md5 = 5474d9feb700f6b4c2895e79d37cba86 -source = repo:trusty-updates +[tzdata_2016f-0ubuntu0.14.04] +file = tzdata_2016f-0ubuntu0.14.04_all.deb +md5 = 8853ac8e274c495758674be2ca67aa0d +source = repo:trusty-updates/main/ -[udev_204-5ubuntu20.15] -file = udev_204-5ubuntu20.15_amd64.deb -md5 = d6a3841a337ed51a47d0da88d71f834e -source = repo:trusty-updates +[udev_204-5ubuntu20.19] +file = udev_204-5ubuntu20.19_amd64.deb +md5 = f90937775fbbbe862974abe0332b6cb5 +source = repo:trusty-updates/main/ -[unattended-upgrades_0.82.1ubuntu2.3] -file = unattended-upgrades_0.82.1ubuntu2.3_all.deb -md5 = bdea6c95a3247fa735d73307bcebd31e -source = repo:trusty-updates +[uidmap_1:4.1.5.1-1ubuntu9.2] +file = uidmap_1%%3a4.1.5.1-1ubuntu9.2_amd64.deb +md5 = bf31a997f5fe75bebfb591d91e112668 +source = repo:trusty-updates/main/ + +[unattended-upgrades_0.82.1ubuntu2.4] +file = unattended-upgrades_0.82.1ubuntu2.4_all.deb +md5 = c635e645c9d91eb2d4d182d97098150a +source = repo:trusty-updates/main/ [update-inetd_4.43] file = update-inetd_4.43_all.deb md5 = 6e166b2422a7dff8154cdd3fdf1e0af7 -source = repo:trusty +source = repo:trusty/main/ [vbetool_1.1-3] file = vbetool_1.1-3_amd64.deb md5 = e5487da0e86050f4ce7804dc8f822256 -source = repo:trusty +source = repo:trusty/main/ [vim-runtime_2:7.4.052-1ubuntu3] file = vim-runtime_2%%3a7.4.052-1ubuntu3_all.deb md5 = 63b364396cbd681098b8cf5c6b9865c8 -source = repo:trusty +source = repo:trusty/main/ [vim_2:7.4.052-1ubuntu3] file = vim_2%%3a7.4.052-1ubuntu3_amd64.deb md5 = f870bba8885a240acb21977e22503c73 -source = repo:trusty +source = repo:trusty/main/ [vlan_1.9-3ubuntu10] file = vlan_1.9-3ubuntu10_amd64.deb md5 = c542a1bacbad438f028c8da3afa30295 -source = repo:trusty +source = repo:trusty/main/ [websockify_0.6.0+dfsg1-1~cloud0] file = websockify_0.6.0+dfsg1-1~cloud0_amd64.deb md5 = abedf8ee1408cfa76a8b231ec397b36c -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [wireless-regdb_2013.02.13-1ubuntu1] file = wireless-regdb_2013.02.13-1ubuntu1_all.deb md5 = 46e0e91934caea23180f1c83b6d99a81 -source = repo:trusty +source = repo:trusty/main/ [xinetd_1:2.3.15-3ubuntu1] file = xinetd_1%%3a2.3.15-3ubuntu1_amd64.deb md5 = 1b7626e4edab8164b11f74b323a4413f -source = repo:trusty +source = repo:trusty/main/ [zookeeper_3.4.5+dfsg-1] file = zookeeper_3.4.5+dfsg-1_all.deb md5 = 59083991e535cb097e9db55714b78589 -source = repo:trusty +source = repo:trusty/universe/ -[keyutils_1.5.6] -file = keyutils_1.5.6-1_amd64.deb -md5 = a49da8cb9cc16bdaf1ef8b205bf99d2e -source = repo:trusty diff --git a/build/package_configs/ubuntu1404/juno/depends_contrail_installer_packages.cfg b/build/package_configs/ubuntu1404/juno/depends_contrail_installer_packages.cfg index a243c0b79..b178a9f73 100644 --- a/build/package_configs/ubuntu1404/juno/depends_contrail_installer_packages.cfg +++ b/build/package_configs/ubuntu1404/juno/depends_contrail_installer_packages.cfg @@ -19,6 +19,12 @@ # # then that package file will be packaged in # # the wrapper package contrail-dependent-packages # +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded # **************************************************************************** [DEFAULT] @@ -27,248 +33,323 @@ md5 = location = package_type = contrail-install-packages, contrail-dependent-packages, contrail-installer-packages -[binutils_2.24-5ubuntu14] -file = binutils_2.24-5ubuntu14_amd64.deb -md5 = acc66ab441dec5bcf46c2e261b1de31d -source = repo:trusty-updates +[binutils_2.24-5ubuntu14.1] +file = binutils_2.24-5ubuntu14.1_amd64.deb +md5 = 85dd95077b946a274f9814639eba4d06 +source = repo:trusty-updates/main/ [build-essential_11.6ubuntu6] file = build-essential_11.6ubuntu6_amd64.deb md5 = 6fa3d082885a7440d512236685cd24fd -source = repo:trusty +source = repo:trusty/main/ -[cpp-4.8_4.8.4-2ubuntu1~14.04] -file = cpp-4.8_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 50653591beb6c73b2a41703ccd0bf0d7 -source = repo:trusty-updates +[cpp-4.8_4.8.4-2ubuntu1~14.04.3] +file = cpp-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c87a404428865790862aeb6195811066 +source = repo:trusty-updates/main/ [cpp_4:4.8.2-1ubuntu6] file = cpp_4%%3a4.8.2-1ubuntu6_amd64.deb md5 = 2ced23b24cf068b16b5a69222506fd79 -source = repo:trusty +source = repo:trusty/main/ -[curl_7.35.0-1ubuntu2.5] -file = curl_7.35.0-1ubuntu2.5_amd64.deb -md5 = 180863ae8fa9003164506da97f95a89e -source = repo:trusty-updates +[curl_7.35.0-1ubuntu2.9] +file = curl_7.35.0-1ubuntu2.9_amd64.deb +md5 = a2384903f4693ad7dc74b59360741c14 +source = repo:trusty-updates/main/ -[dpkg-dev_1.17.5ubuntu5.4] -file = dpkg-dev_1.17.5ubuntu5.4_all.deb -md5 = 64bb3c20f3579a51dab71ec7e7114dd9 -source = repo:trusty-updates +[dpkg-dev_1.17.5ubuntu5.7] +file = dpkg-dev_1.17.5ubuntu5.7_all.deb +md5 = c1d73ee78c457f5f557c0cd4340fd5d3 +source = repo:trusty-updates/main/ [fakeroot_1.20-3ubuntu2] file = fakeroot_1.20-3ubuntu2_amd64.deb md5 = fad29881d632a463f5235f399fa65a14 -source = repo:trusty +source = repo:trusty/main/ -[g++-4.8_4.8.4-2ubuntu1~14.04] -file = g++-4.8_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 1b07f3789e1e951b15549d6eb2f9f4e3 -source = repo:trusty-updates +[g++-4.8_4.8.4-2ubuntu1~14.04.3] +file = g++-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ffc4c3bc3fe036fd18e79399caea1586 +source = repo:trusty-updates/main/ [g++_4:4.8.2-1ubuntu6] file = g++_4%%3a4.8.2-1ubuntu6_amd64.deb md5 = 7332a4e9116b821e167a3d0236ca413a -source = repo:trusty +source = repo:trusty/main/ -[gcc-4.8_4.8.4-2ubuntu1~14.04] -file = gcc-4.8_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 4ec6a901872393ced4beb3873e2dfb85 -source = repo:trusty-updates +[gcc-4.8-base_4.8.4-2ubuntu1~14.04.3] +file = gcc-4.8-base_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 691b4cb367c62b79511541a3cee41fda +source = repo:trusty-updates/main/ + +[gcc-4.8_4.8.4-2ubuntu1~14.04.3] +file = gcc-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c53635e53f577687409b4c3c93f4da80 +source = repo:trusty-updates/main/ [gcc_4:4.8.2-1ubuntu6] file = gcc_4%%3a4.8.2-1ubuntu6_amd64.deb md5 = 83b25d71df6df1c47a4b983596896f0b -source = repo:trusty +source = repo:trusty/main/ [ieee-data_20131224.1] file = ieee-data_20131224.1_all.deb md5 = 1bc31412dad4d90a6ea1ee42eaac5192 -source = repo:trusty - -[libasan0_4.8.4-2ubuntu1~14.04] -file = libasan0_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 5b2df53671e849a1f9d3fe6356818165 -source = repo:trusty-updates - -[libatomic1_4.8.4-2ubuntu1~14.04] -file = libatomic1_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 8a6c26c437b43c85333e456e06741ae7 -source = repo:trusty-updates - -[libc-dev-bin_2.19-0ubuntu6.6] -file = libc-dev-bin_2.19-0ubuntu6.6_amd64.deb -md5 = 9cdab0e5888b421dc89a7a94331b04fe -source = repo:trusty-updates - -[libc6-dev_2.19-0ubuntu6.6] -file = libc6-dev_2.19-0ubuntu6.6_amd64.deb -md5 = cc13115c3843d4e27b43796b94d1aa6e -source = repo:trusty-updates - -[libc6_2.19-0ubuntu6.6] -file = libc6_2.19-0ubuntu6.6_amd64.deb -md5 = f57ca4c76bdf2af3117e51d63eb81004 -source = repo:trusty-updates +source = repo:trusty/universe/ + +[libalgorithm-diff-perl_1.19.02-3] +file = libalgorithm-diff-perl_1.19.02-3_all.deb +md5 = 7462f70e9e9b691ca4a4657371d6ba8e +source = repo:trusty/main/ + +[libalgorithm-diff-xs-perl_0.04-2build4] +file = libalgorithm-diff-xs-perl_0.04-2build4_amd64.deb +md5 = a1bd654bf2b8f30d464a6f95225a0744 +source = repo:trusty/main/ + +[libalgorithm-merge-perl_0.08-2] +file = libalgorithm-merge-perl_0.08-2_all.deb +md5 = bf1355aea7ab249fcd344cf0c692bc6c +source = repo:trusty/main/ + +[libasan0_4.8.4-2ubuntu1~14.04.3] +file = libasan0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ff04bb046aeec86af2bb90c5d90a166c +source = repo:trusty-updates/main/ + +[libatomic1_4.8.4-2ubuntu1~14.04.3] +file = libatomic1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ec6ce0fb6e66e8b8c95534ab9e77a67e +source = repo:trusty-updates/main/ + +[libc-dev-bin_2.19-0ubuntu6.9] +file = libc-dev-bin_2.19-0ubuntu6.9_amd64.deb +md5 = aa72bd06ea171705087d6f090a2cc8a6 +source = repo:trusty-updates/main/ + +[libc6-dev_2.19-0ubuntu6.9] +file = libc6-dev_2.19-0ubuntu6.9_amd64.deb +md5 = f4971e129e81195e8445a4a5f1bb1123 +source = repo:trusty-updates/main/ + +[libc6_2.19-0ubuntu6.9] +file = libc6_2.19-0ubuntu6.9_amd64.deb +md5 = 422dff6f1563aa40a0ab3ea2a9509025 +source = repo:trusty-updates/main/ [libcloog-isl4_0.18.2-1] file = libcloog-isl4_0.18.2-1_amd64.deb md5 = da71de63b0e24eb02afb817c0b285d6a -source = repo:trusty +source = repo:trusty/main/ -[libcurl3_7.35.0-1ubuntu2.5] -file = libcurl3_7.35.0-1ubuntu2.5_amd64.deb -md5 = b3396e79e61f04a1fef0785bb9f3b5f7 -source = repo:trusty-updates +[libcurl3_7.35.0-1ubuntu2.9] +file = libcurl3_7.35.0-1ubuntu2.9_amd64.deb +md5 = ab4d32b4d76c2f2c8cd5069b66b08a91 +source = repo:trusty-updates/main/ -[libdpkg-perl_1.17.5ubuntu5.4] -file = libdpkg-perl_1.17.5ubuntu5.4_all.deb -md5 = e18222ac6f6912521bdcf96fdade214d -source = repo:trusty-updates +[libdpkg-perl_1.17.5ubuntu5.7] +file = libdpkg-perl_1.17.5ubuntu5.7_all.deb +md5 = 7f0c96b6386a43c1caa731d15f1f5fe4 +source = repo:trusty-updates/main/ [libfakeroot_1.20-3ubuntu2] file = libfakeroot_1.20-3ubuntu2_amd64.deb md5 = 856c7401d7d5a63ea231f706c18d9261 -source = repo:trusty +source = repo:trusty/main/ + +[libfile-fcntllock-perl_0.14-2build1] +file = libfile-fcntllock-perl_0.14-2build1_amd64.deb +md5 = 18813758778ece61bcdf84018218fc1d +source = repo:trusty/main/ -[libgcc-4.8-dev_4.8.4-2ubuntu1~14.04] -file = libgcc-4.8-dev_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 750675946c8c27520c089c5107c10f2e -source = repo:trusty-updates +[libgcc-4.8-dev_4.8.4-2ubuntu1~14.04.3] +file = libgcc-4.8-dev_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 69ff74311eecda1487d0f96b14af0b7c +source = repo:trusty-updates/main/ [libgmp10_2:5.1.3+dfsg-1ubuntu1] file = libgmp10_2%%3a5.1.3+dfsg-1ubuntu1_amd64.deb md5 = 5a25bb81aa2e0ca83e2d349d58b435d5 -source = repo:trusty +source = repo:trusty/main/ -[libgomp1_4.8.4-2ubuntu1~14.04] -file = libgomp1_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 0aafd999af2178536eb55577c5781d95 -source = repo:trusty-updates +[libgomp1_4.8.4-2ubuntu1~14.04.3] +file = libgomp1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 8f95195693e2cbb56825fd9b2b9ffca0 +source = repo:trusty-updates/main/ [libisl10_0.12.2-1] file = libisl10_0.12.2-1_amd64.deb md5 = b9756a5cce1ecd2d56652779d9e3b757 -source = repo:trusty +source = repo:trusty/main/ -[libitm1_4.8.4-2ubuntu1~14.04] -file = libitm1_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 67211089609f24430fee9ef632429e9d -source = repo:trusty-updates +[libitm1_4.8.4-2ubuntu1~14.04.3] +file = libitm1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 52e717ed8662a3986997412f42abc297 +source = repo:trusty-updates/main/ [libmpc3_1.0.1-1ubuntu1] file = libmpc3_1.0.1-1ubuntu1_amd64.deb md5 = c5749c5428040f492bc9d00b0101b8a8 -source = repo:trusty +source = repo:trusty/main/ [libmpfr4_3.1.2-1] file = libmpfr4_3.1.2-1_amd64.deb md5 = 3ff03e231bf643436f087da42faaad6d -source = repo:trusty +source = repo:trusty/main/ -[libquadmath0_4.8.4-2ubuntu1~14.04] -file = libquadmath0_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = c92513d87d98bad964756278c4e3adc1 -source = repo:trusty-updates +[libquadmath0_4.8.4-2ubuntu1~14.04.3] +file = libquadmath0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = f541cc61c3feaa74098bdb9970ed12b6 +source = repo:trusty-updates/main/ -[libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04] -file = libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 9e3dd7fc9327de0a6b06c4ec017aa8cb -source = repo:trusty-updates +[libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04.3] +file = libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 7657e54922455ae36c7b2f7228427aec +source = repo:trusty-updates/main/ -[libstdc++6_4.8.4-2ubuntu1~14.04] -file = libstdc++6_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = bfe435106e74f02e4b5377753ce8d920 -source = repo:trusty-updates +[libstdc++6_4.8.4-2ubuntu1~14.04.3] +file = libstdc++6_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 3fe9099e0064fa8030f047ff38e075c2 +source = repo:trusty-updates/main/ -[libtsan0_4.8.4-2ubuntu1~14.04] -file = libtsan0_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 19083483a508ab09f6173a29d9984b4c -source = repo:trusty-updates +[libtsan0_4.8.4-2ubuntu1~14.04.3] +file = libtsan0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c4232ca2be66b95d74e8823a9868a9b4 +source = repo:trusty-updates/main/ [libyaml-0-2_0.1.4-3ubuntu3.1] file = libyaml-0-2_0.1.4-3ubuntu3.1_amd64.deb md5 = 4dcc359331403252136be3490c923fc9 -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[linux-libc-dev_3.13.0-68.111] -file = linux-libc-dev_3.13.0-68.111_amd64.deb -md5 = ac5595b89ffc06502e6ab57fa4db9aa1 -source = repo:trusty-updates +[linux-libc-dev_3.13.0-95.142] +file = linux-libc-dev_3.13.0-95.142_amd64.deb +md5 = 4ba5f7a29d5f021c13bdffa248dbd521 +source = repo:trusty-updates/main/ [make_3.81-8.2ubuntu3] file = make_3.81-8.2ubuntu3_amd64.deb md5 = 6442fbef4450fc977fb1ab6297cf7797 -source = repo:trusty +source = repo:trusty/main/ [manpages-dev_3.54-1ubuntu1] file = manpages-dev_3.54-1ubuntu1_all.deb md5 = 8b108211126e2798112fbd55292e5690 -source = repo:trusty +source = repo:trusty/main/ [patch_2.7.1-4ubuntu2.3] file = patch_2.7.1-4ubuntu2.3_amd64.deb md5 = 4f07a01b36e3a60a34c3bcef647894ae -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[python-chardet-whl_2.2.1-2~ubuntu1] +file = python-chardet-whl_2.2.1-2~ubuntu1_all.deb +md5 = d882e156f6af98454a96cae30ae58784 +source = repo:trusty-updates/universe/ + +[python-colorama-whl_0.2.5-0.1ubuntu2] +file = python-colorama-whl_0.2.5-0.1ubuntu2_all.deb +md5 = 2c4ecb5b3fc49ae20510d3aac886b66a +source = repo:trusty-updates/universe/ [python-colorama_0.2.5-0.1ubuntu2] file = python-colorama_0.2.5-0.1ubuntu2_all.deb md5 = b06bc963962c3f3c97f5d1da53a56f3f -source = repo:trusty-updates +source = repo:trusty-updates/universe/ [python-crypto_2.6.1-4build1] file = python-crypto_2.6.1-4build1_amd64.deb md5 = 14de358cc59ab40ee9c90f3582591f79 -source = repo:trusty +source = repo:trusty/main/ + +[python-distlib-whl_0.1.8-1ubuntu1] +file = python-distlib-whl_0.1.8-1ubuntu1_all.deb +md5 = 93792a4c21365ded4316fdb5bc895dd5 +source = repo:trusty-updates/universe/ [python-distlib_0.1.8-1ubuntu1] file = python-distlib_0.1.8-1ubuntu1_all.deb md5 = b3288d6d230096c11d69ebe18c44ed83 -source = repo:trusty-updates +source = repo:trusty-updates/universe/ [python-ecdsa_0.11-1~cloud0] file = python-ecdsa_0.11-1~cloud0_all.deb md5 = 36b0f4b99c1e047d8069321c63a1f305 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ + +[python-html5lib-whl_0.999-3~ubuntu1] +file = python-html5lib-whl_0.999-3~ubuntu1_all.deb +md5 = bc6bd5baa70ace380513925f749857fa +source = repo:trusty-updates/main/ [python-html5lib_0.999-3~ubuntu1] file = python-html5lib_0.999-3~ubuntu1_all.deb md5 = 93c4140d32e1addb8231a3e0be557c93 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-netaddr_0.7.12-1~cloud0] file = python-netaddr_0.7.12-1~cloud0_all.deb md5 = 8a4c4a0cebf3664d43212574f7783ed5 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-paramiko_1.15.1-1~cloud0] file = python-paramiko_1.15.1-1~cloud0_all.deb md5 = 9bdddb479976f8b284b4d612994532df -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ -[python-pip_1.5.4-1ubuntu1] -file = python-pip_1.5.4-1ubuntu1_all.deb -md5 = bee834c024b253193dab55ae31f9791d -source = repo:trusty-updates +[python-pip-whl_1.5.4-1ubuntu4] +file = python-pip-whl_1.5.4-1ubuntu4_all.deb +md5 = 45dd75216ca01ef0758e98b89d88093f +source = repo:trusty-updates/universe/ + +[python-pip_1.5.4-1ubuntu4] +file = python-pip_1.5.4-1ubuntu4_all.deb +md5 = 2f9893e68cba11320605bbc554000b2f +source = repo:trusty-updates/universe/ [python-pkg-resources_3.3-1ubuntu2] file = python-pkg-resources_3.3-1ubuntu2_all.deb md5 = d12cb222f33ac215006d472c63d3aeb8 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[python-requests-whl_2.3.0-1ubuntu0.1~cloud0] +file = python-requests-whl_2.3.0-1ubuntu0.1~cloud0_all.deb +md5 = acdd2d1798cc59fb66a29865569111c9 +source = repo:trusty-updates-juno/main/ + +[python-setuptools-whl_3.3-1ubuntu2] +file = python-setuptools-whl_3.3-1ubuntu2_all.deb +md5 = bed8daea8be2938af22a1bc7fdc0d9f1 +source = repo:trusty-updates/main/ [python-setuptools_3.3-1ubuntu2] file = python-setuptools_3.3-1ubuntu2_all.deb md5 = 095838ab2e8028796486463d62e5b88b -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[python-six-whl_1.7.3-2~cloud0] +file = python-six-whl_1.7.3-2~cloud0_all.deb +md5 = b63b5a5280ac87a4e3c7ef15b46cf565 +source = repo:trusty-updates-juno/main/ + +[python-urllib3-whl_1.7.1-1ubuntu4] +file = python-urllib3-whl_1.7.1-1ubuntu4_all.deb +md5 = 5614ad88debd4c93441cc119f5a478a1 +source = repo:trusty-updates/main/ [python-wheel_0.24.0-1~ubuntu1] file = python-wheel_0.24.0-1~ubuntu1_all.deb md5 = a1f3817d6dc2aa707d1ac2a075fabf37 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-yaml_3.10-4ubuntu0.1] file = python-yaml_3.10-4ubuntu0.1_amd64.deb md5 = 3bbc120de69a86a8f0b996d722437fd4 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[python3-pkg-resources_3.3-1ubuntu2] +file = python3-pkg-resources_3.3-1ubuntu2_all.deb +md5 = e44cbc2a92ab2c53d01c7d54a79020f0 +source = repo:trusty-updates/main/ diff --git a/build/package_configs/ubuntu1404/juno/depends_contrail_openstack_packages.cfg b/build/package_configs/ubuntu1404/juno/depends_contrail_openstack_packages.cfg index 4347961bd..43adafd7f 100644 --- a/build/package_configs/ubuntu1404/juno/depends_contrail_openstack_packages.cfg +++ b/build/package_configs/ubuntu1404/juno/depends_contrail_openstack_packages.cfg @@ -19,219 +19,215 @@ # # then that package file will be packaged in # # the wrapper package contrail-dependent-packages # +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded # **************************************************************************** [DEFAULT] file = md5 = location = -package_type = contrail-install-packages, contrail-openstack-packages +package_type = contrail-install-packages, contrail-openstack-packages -[ceilometer-agent-central_2014.2.2-0ubuntu2~cloud0] -file = ceilometer-agent-central_2014.2.2-0ubuntu2~cloud0_all.deb -md5 = bd64596daba99245574f60270511e10e -source = repo:trusty-updates-juno +[ceilometer-agent-central_2014.2.4-0ubuntu1~cloud2] +file = ceilometer-agent-central_2014.2.4-0ubuntu1~cloud2_all.deb +md5 = c411e43a0db377254f9d5f19845271f9 +source = repo:trusty-updates-juno/main/ -[ceilometer-agent-compute_2014.2.2-0ubuntu2~cloud0] -file = ceilometer-agent-compute_2014.2.2-0ubuntu2~cloud0_all.deb -md5 = 6636c7863b00ec27eea90edc97680e2f +[ceilometer-agent-compute_2014.2.4-0ubuntu1~cloud2] +file = ceilometer-agent-compute_2014.2.4-0ubuntu1~cloud2_all.deb +md5 = 90f476568cc03a15c76e33d021c8e5d7 +source = repo:trusty-updates-juno/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -source = repo:trusty-updates-juno - -[ceilometer-agent-notification_2014.2.2-0ubuntu2~cloud0] -file = ceilometer-agent-notification_2014.2.2-0ubuntu2~cloud0_all.deb -md5 = 7b7bf1dc4883aefc2254aff3bb414650 -source = repo:trusty-updates-juno - -[ceilometer-alarm-evaluator_2014.2.2-0ubuntu2~cloud0] -file = ceilometer-alarm-evaluator_2014.2.2-0ubuntu2~cloud0_all.deb -md5 = 8b6c326003891d794d46e34ff8138d15 -source = repo:trusty-updates-juno - -[ceilometer-alarm-notifier_2014.2.2-0ubuntu2~cloud0] -file = ceilometer-alarm-notifier_2014.2.2-0ubuntu2~cloud0_all.deb -md5 = 697e53593b0ae2a4ec5cd5d5f40a4843 -source = repo:trusty-updates-juno - -[ceilometer-api_2014.2.2-0ubuntu2~cloud0] -file = ceilometer-api_2014.2.2-0ubuntu2~cloud0_all.deb -md5 = ea352ed72f9417b65946d2b8823a6d16 -source = repo:trusty-updates-juno - -[ceilometer-collector_2014.2.2-0ubuntu2~cloud0] -file = ceilometer-collector_2014.2.2-0ubuntu2~cloud0_all.deb -md5 = 227ea583d663a93904be5677898435b0 -source = repo:trusty-updates-juno - -[ceilometer-common_2014.2.2-0ubuntu2~cloud0] -file = ceilometer-common_2014.2.2-0ubuntu2~cloud0_all.deb -md5 = 62aeb520894ca1c2aaffc85e8be702d7 + +[ceilometer-agent-notification_2014.2.4-0ubuntu1~cloud2] +file = ceilometer-agent-notification_2014.2.4-0ubuntu1~cloud2_all.deb +md5 = 50e335235780b7e3887aef2676916860 +source = repo:trusty-updates-juno/main/ + +[ceilometer-alarm-evaluator_2014.2.4-0ubuntu1~cloud2] +file = ceilometer-alarm-evaluator_2014.2.4-0ubuntu1~cloud2_all.deb +md5 = 651bc30c0942a82e41abdb1ebf13bd4b +source = repo:trusty-updates-juno/main/ + +[ceilometer-alarm-notifier_2014.2.4-0ubuntu1~cloud2] +file = ceilometer-alarm-notifier_2014.2.4-0ubuntu1~cloud2_all.deb +md5 = cdfbdbd18b55b42f019935a7b9915ecf +source = repo:trusty-updates-juno/main/ + +[ceilometer-api_2014.2.4-0ubuntu1~cloud2] +file = ceilometer-api_2014.2.4-0ubuntu1~cloud2_all.deb +md5 = 62fa533cb6cc4567dd8c972e9d35ce8c +source = repo:trusty-updates-juno/main/ + +[ceilometer-collector_2014.2.4-0ubuntu1~cloud2] +file = ceilometer-collector_2014.2.4-0ubuntu1~cloud2_all.deb +md5 = 7499ee498cb276e683f5ea0680239aec +source = repo:trusty-updates-juno/main/ + +[ceilometer-common_2014.2.4-0ubuntu1~cloud2] +file = ceilometer-common_2014.2.4-0ubuntu1~cloud2_all.deb +md5 = 881e30e7f4884a93140e508e4e0789f5 +source = repo:trusty-updates-juno/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -source = repo:trusty-updates-juno - -[cinder-api_1:2014.2.3-0ubuntu1.1~cloud0] -file = cinder-api_1%%3a2014.2.3-0ubuntu1.1~cloud0_all.deb -md5 = 7c043890652ebf848a16d0dba95da05e -source = repo:trusty-updates-juno - -[cinder-common_1:2014.2.3-0ubuntu1.1~cloud0] -file = cinder-common_1%%3a2014.2.3-0ubuntu1.1~cloud0_all.deb -md5 = bce7c81c38683d527c79e7f1ff680412 -source = repo:trusty-updates-juno - -[cinder-scheduler_1:2014.2.3-0ubuntu1.1~cloud0] -file = cinder-scheduler_1%%3a2014.2.3-0ubuntu1.1~cloud0_all.deb -md5 = 119bdd4ba9015628560e4d6156962583 -source = repo:trusty-updates-juno - -[glance-api_1:2014.2.3-0ubuntu1~cloud1] -file = glance-api_1%%3a2014.2.3-0ubuntu1~cloud1_all.deb -md5 = 61a0cfba53db52a3f009b972a6424f33 -source = repo:trusty-updates-juno - -[glance-common_1:2014.2.3-0ubuntu1~cloud1] -file = glance-common_1%%3a2014.2.3-0ubuntu1~cloud1_all.deb -md5 = 8c33602e5cb4b60157b68fbcec3385f6 -source = repo:trusty-updates-juno - -[glance-registry_1:2014.2.3-0ubuntu1~cloud1] -file = glance-registry_1%%3a2014.2.3-0ubuntu1~cloud1_all.deb -md5 = 190228e833c73392c48e58bc8e577c94 -source = repo:trusty-updates-juno - -[glance_1:2014.2.3-0ubuntu1~cloud1] -file = glance_1%%3a2014.2.3-0ubuntu1~cloud1_all.deb -md5 = 6aa9e483370c7fee5657a6ab71e68f67 -source = repo:trusty-updates-juno - -[heat-api-cfn_2014.2.3-0ubuntu1~cloud0] -file = heat-api-cfn_2014.2.3-0ubuntu1~cloud0_all.deb -md5 = efd73ccad9c8626765de508bf4972727 -source = repo:trusty-updates-juno - -[heat-api_2014.2.3-0ubuntu1~cloud0] -file = heat-api_2014.2.3-0ubuntu1~cloud0_all.deb -md5 = 9de5a56517d9a9ba17a11861f7813ca4 -source = repo:trusty-updates-juno - -[heat-common_2014.2.3-0ubuntu1~cloud0] -file = heat-common_2014.2.3-0ubuntu1~cloud0_all.deb -md5 = d2761edcd8c98d77c977e8f16faff1f6 -source = repo:trusty-updates-juno - -[heat-engine_2014.2.3-0ubuntu1~cloud0] -file = heat-engine_2014.2.3-0ubuntu1~cloud0_all.deb -md5 = 1fd0997755ed16997f255757213e9862 -source = repo:trusty-updates-juno + +[cinder-api_1:2014.2.4-0ubuntu1~cloud2] +file = cinder-api_1%%3a2014.2.4-0ubuntu1~cloud2_all.deb +md5 = ea4c15cf50f92cf45ef22b47e1e79c78 +source = repo:trusty-updates-juno/main/ + +[cinder-common_1:2014.2.4-0ubuntu1~cloud2] +file = cinder-common_1%%3a2014.2.4-0ubuntu1~cloud2_all.deb +md5 = 2c5e91de76d474db275d3c8f1fed6a13 +source = repo:trusty-updates-juno/main/ + +[cinder-scheduler_1:2014.2.4-0ubuntu1~cloud2] +file = cinder-scheduler_1%%3a2014.2.4-0ubuntu1~cloud2_all.deb +md5 = c0924ec7b3f395ce6f60a7b675e347df +source = repo:trusty-updates-juno/main/ + +[glance-api_1:2014.2.4-0ubuntu1~cloud3] +file = glance-api_1%%3a2014.2.4-0ubuntu1~cloud3_all.deb +md5 = c7b1c207601b6324223e0db53e5b9ee0 +source = repo:trusty-updates-juno/main/ + +[glance-common_1:2014.2.4-0ubuntu1~cloud3] +file = glance-common_1%%3a2014.2.4-0ubuntu1~cloud3_all.deb +md5 = cd140fb2d9ac6604037e2244eaf28ca1 +source = repo:trusty-updates-juno/main/ + +[glance-registry_1:2014.2.4-0ubuntu1~cloud3] +file = glance-registry_1%%3a2014.2.4-0ubuntu1~cloud3_all.deb +md5 = 8527bce9bc37f60c421e9d0d008e9032 +source = repo:trusty-updates-juno/main/ + +[glance_1:2014.2.4-0ubuntu1~cloud3] +file = glance_1%%3a2014.2.4-0ubuntu1~cloud3_all.deb +md5 = e9bd50295254d79b61ec9bcabcdc5455 +source = repo:trusty-updates-juno/main/ + +[heat-api-cfn_2014.2.4-0ubuntu1~cloud1] +file = heat-api-cfn_2014.2.4-0ubuntu1~cloud1_all.deb +md5 = 1c7c1f9417a4136307c0eb05ca594056 +source = repo:trusty-updates-juno/main/ + +[heat-api_2014.2.4-0ubuntu1~cloud1] +file = heat-api_2014.2.4-0ubuntu1~cloud1_all.deb +md5 = 8ffde6a8c27fe8eff6f1f138f3a9f056 +source = repo:trusty-updates-juno/main/ + +[heat-common_2014.2.4-0ubuntu1~cloud1] +file = heat-common_2014.2.4-0ubuntu1~cloud1_all.deb +md5 = 129f2229763bc1c889b26cddf7f093e3 +source = repo:trusty-updates-juno/main/ + +[heat-engine_2014.2.4-0ubuntu1~cloud1] +file = heat-engine_2014.2.4-0ubuntu1~cloud1_all.deb +md5 = 7450d8139187bd25036f19756d216a1a +source = repo:trusty-updates-juno/main/ [libjs-swfobject_2.2+dfsg-1] file = libjs-swfobject_2.2+dfsg-1_all.deb md5 = 754241570e03dd0c8d412d3b9e7590d1 -source = repo:trusty +source = repo:trusty/universe/ [novnc_1:0.4+dfsg+1+20131010+gitf68af8af3d-2] file = novnc_1%%3a0.4+dfsg+1+20131010+gitf68af8af3d-2_all.deb md5 = fae80db8696627b14491879893901708 -source = repo:trusty +source = repo:trusty/universe/ -[openstack-dashboard-ubuntu-theme_2014.2.2-0ubuntu1] -file = openstack-dashboard-ubuntu-theme_2014.2.2-0ubuntu1-2contrail1_all.deb -md5 = a8ace7d379ef6ffedd9fc1c4c760ad3c -source = repo:contrail-thirdparty +[python-boto_2.20.1-2ubuntu2] +file = python-boto_2.20.1-2ubuntu2_all.deb +md5 = dea56cd0b6d15986d8d950c12a711cb7 +source = repo:trusty/main/ -[openstack-dashboard_2014.2.2-0ubuntu1] -file = openstack-dashboard_2014.2.2-0ubuntu1-2contrail1_all.deb -md5 = cc8b45e5efdc0ba069355e997ae009f2 -source = repo:contrail-thirdparty - -[python-ceilometer_2014.2.2-0ubuntu2~cloud0] -file = python-ceilometer_2014.2.2-0ubuntu2~cloud0_all.deb -md5 = e1b7f26a285fe47e82ba8e1ff221b292 +[python-ceilometer_2014.2.4-0ubuntu1~cloud2] +file = python-ceilometer_2014.2.4-0ubuntu1~cloud2_all.deb +md5 = 3bce165c6120269988961c49459d0865 +source = repo:trusty-updates-juno/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -source = repo:trusty-updates-juno [python-ceilometerclient_1.0.10-0ubuntu1~cloud0] file = python-ceilometerclient_1.0.10-0ubuntu1~cloud0_all.deb md5 = caa7788a12651186c41c568695e968c4 +source = repo:trusty-updates-juno/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -source = repo:trusty-updates-juno -[python-cinder_1:2014.2.3-0ubuntu1.1~cloud0] -file = python-cinder_1%%3a2014.2.3-0ubuntu1.1~cloud0_all.deb -md5 = b3b4955a63e82293eb7acee5e7e2787a -source = repo:trusty-updates-juno +[python-cinder_1:2014.2.4-0ubuntu1~cloud2] +file = python-cinder_1%%3a2014.2.4-0ubuntu1~cloud2_all.deb +md5 = caf80e9f8290ba5c19eb96e51d370447 +source = repo:trusty-updates-juno/main/ [python-cinderclient_1:1.1.0-0ubuntu1~cloud0] file = python-cinderclient_1%%3a1.1.0-0ubuntu1~cloud0_all.deb md5 = 973c3926c050aae5f2fc9f4e796af746 +source = repo:trusty-updates-juno/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -source = repo:trusty-updates-juno - -[python-django-horizon_2014.2.2-0ubuntu1] -file = python-django-horizon_2014.2.2-0ubuntu1-2contrail1_all.deb -md5 = 9f259e867494f57d94d0e268543e7c50 -source = repo:contrail-thirdparty [python-glance-store_0.1.8-1ubuntu2~cloud0] file = python-glance-store_0.1.8-1ubuntu2~cloud0_all.deb md5 = 1a6bd83cfa9537bea8bb46d57b7decf4 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ -[python-glance_1:2014.2.3-0ubuntu1~cloud1] -file = python-glance_1%%3a2014.2.3-0ubuntu1~cloud1_all.deb -md5 = ce1b76cc381d8ca824a84b9a2dfae519 -source = repo:trusty-updates-juno +[python-glance_1:2014.2.4-0ubuntu1~cloud3] +file = python-glance_1%%3a2014.2.4-0ubuntu1~cloud3_all.deb +md5 = d3da3cbf7a15151dd3f0021ba504caf3 +source = repo:trusty-updates-juno/main/ -[python-glanceclient_1:0.14.0-0ubuntu1~cloud0] -file = python-glanceclient_1%%3a0.14.0-0ubuntu1~cloud0_all.deb -md5 = 18ef02ac2736f3befc86f7f7ebf8646d +[python-glanceclient_1:0.14.0-0ubuntu1~cloud1] +file = python-glanceclient_1%%3a0.14.0-0ubuntu1~cloud1_all.deb +md5 = 8cb680cc9a365826ccc54b2efbc00f9a +source = repo:trusty-updates-juno/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -source = repo:trusty-updates-juno -[python-heat_2014.2.3-0ubuntu1~cloud0] -file = python-heat_2014.2.3-0ubuntu1~cloud0_all.deb -md5 = d36707ce84173ed6c101044332392c47 -source = repo:trusty-updates-juno +[python-heat_2014.2.4-0ubuntu1~cloud1] +file = python-heat_2014.2.4-0ubuntu1~cloud1_all.deb +md5 = 863f97acd7569fdb1df7799c11b9e3e4 +source = repo:trusty-updates-juno/main/ [python-heatclient_0.2.10-0ubuntu1~cloud0] file = python-heatclient_0.2.10-0ubuntu1~cloud0_all.deb md5 = 2a67f7aef04515fe733e29a43dc8e2e4 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-novaclient_1:2.19.0-0ubuntu1~cloud0] file = python-novaclient_1%%3a2.19.0-0ubuntu1~cloud0_all.deb md5 = c88aa04c80b0d1a2bb27bf9e75939cef +source = repo:trusty-updates-juno/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra, cfgm-openstack-extra -source = repo:trusty-updates-juno [python-novnc_1:0.4+dfsg+1+20131010+gitf68af8af3d-2] file = python-novnc_1%%3a0.4+dfsg+1+20131010+gitf68af8af3d-2_all.deb md5 = 88b3c3af0d2fe9339c37dae213af0d4a -source = repo:trusty +source = repo:trusty/universe/ [python-openstack-auth_1.1.7-1~cloud0] file = python-openstack-auth_1.1.7-1~cloud0_all.deb md5 = dce8bd438a3f0b29c520605b734e14dc -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-saharaclient_0.7.3-1~cloud0] file = python-saharaclient_0.7.3-1~cloud0_all.deb md5 = 3973e31b86d8da43a4f3e184a49e01ab -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-swiftclient_1:2.3.0-0ubuntu1~cloud0] file = python-swiftclient_1%%3a2.3.0-0ubuntu1~cloud0_all.deb md5 = 6343008b0d4199f7b5476cca650fed98 +source = repo:trusty-updates-juno/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -source = repo:trusty-updates-juno [python-taskflow_0.3.21-0ubuntu6~cloud0] file = python-taskflow_0.3.21-0ubuntu6~cloud0_all.deb md5 = 2f83f949997616131f855c08af31d354 -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ [python-troveclient_1:1.0.5-0ubuntu2~cloud0] file = python-troveclient_1%%3a1.0.5-0ubuntu2~cloud0_all.deb md5 = 215474c9240105de94a1a6a0066b3cba -source = repo:trusty-updates-juno +source = repo:trusty-updates-juno/main/ diff --git a/build/package_configs/ubuntu1404/juno/depends_contrail_thirdparty_packages.cfg b/build/package_configs/ubuntu1404/juno/depends_contrail_thirdparty_packages.cfg index b8098ca36..abbc91663 100644 --- a/build/package_configs/ubuntu1404/juno/depends_contrail_thirdparty_packages.cfg +++ b/build/package_configs/ubuntu1404/juno/depends_contrail_thirdparty_packages.cfg @@ -32,18 +32,18 @@ file = consistent-hash_1.0-0contrail0_amd64.deb md5 = 933c16a083d329fcb449670fb2e931d7 source = repo:contrail-thirdparty -[dpdk-depends-packages_14.04-contrail5] -file = dpdk-depends-packages_14.04-contrail5_amd64.deb -md5 = 26881eabd887df27629ec15317099024 +[dpdk-depends-packages_14.04-contrail6] +file = dpdk-depends-packages_14.04-contrail6_amd64.deb +md5 = 7740d91aaf564d93c473e90a6b540346 [euca2ools_1:2.1.3-2] file = euca2ools_2.1.3-2_amd64.deb md5 = dbb31fc15f00847c3e9e46dc957795c5 source = repo:contrail-thirdparty -[kafka_2.10-0.9.0.0-SNAPSHOT-0contrail0] -file = kafka_2.10-0.9.0.0-SNAPSHOT-0contrail0_amd64.deb -md5 = 50691908d039dd33ef314c77316aeb28 +[kafka_2.11-0.9.0.1-0contrail0] +file = kafka_2.11-0.9.0.1-0contrail0_amd64.deb +md5 = 38a41e87cddd1a8b893b3c8c3c212b24 source = repo:contrail-thirdparty [librdkafka-dev_0.8.5-2-0contrail0.14.04] @@ -66,6 +66,16 @@ file = nova-docker_0.0.0.post161-0contrail0_all.deb md5 = 171fb7bdd1bf4c5fd5766af3cda62411 source = repo:contrail-thirdparty +[openstack-dashboard-ubuntu-theme_2014.2.2-0ubuntu1] +file = openstack-dashboard-ubuntu-theme_2014.2.2-0ubuntu1-2contrail1_all.deb +md5 = a8ace7d379ef6ffedd9fc1c4c760ad3c +source = repo:contrail-thirdparty + +[openstack-dashboard_2014.2.2-0ubuntu1] +file = openstack-dashboard_2014.2.2-0ubuntu1-2contrail1_all.deb +md5 = cc8b45e5efdc0ba069355e997ae009f2 +source = repo:contrail-thirdparty + [python-backports.ssl-match-hostname_3.4.0.2-1contrail1] file = python-backports.ssl-match-hostname_3.4.0.2-1contrail1_all.deb md5 = 243c920a5c91d12801c525f3dcd2a6d1 @@ -81,33 +91,34 @@ file = python-cassandra-driver_3.0.0-0contrail3_amd64.deb md5 = dbedcd22c6dd20436b56e8fdb0b3983f source = repo:contrail-thirdparty -[python-certifi_1.0.1-1contrail1] -file = python-certifi_1.0.1-1contrail1_all.deb -md5 = 46ab19b4096c653c10854f5c5e735f1c -source = repo:contrail-thirdparty +[python-certifi_2015.11.20.1-2] +file = python-certifi_2015.11.20.1-2_all.deb +md5 = 760985befd8570b30f5ae928862fa8ff +source = repo:xenial [python-consistent-hash_1.0-0contrail1] file = python-consistent-hash_1.0-0contrail1_amd64.deb md5 = 6ba90f706ec78584adb3a15657f290e3 source = repo:contrail-thirdparty +[python-django-horizon_2014.2.2-0ubuntu1] +file = python-django-horizon_2014.2.2-0ubuntu1-2contrail1_all.deb +md5 = 9f259e867494f57d94d0e268543e7c50 +source = repo:contrail-thirdparty + [python-geventhttpclient_1.1.0-1contrail1] file = python-geventhttpclient_1.1.0-1contrail1_amd64.deb md5 = 1a00d30b23e355a014e90b75243f3227 source = repo:contrail-thirdparty -[python-kafka-python_0.9.2-0contrail0] -file = python-kafka-python_0.9.2-0contrail0_all.deb -md5 = ca72ef4061c3f6a6a1c4f3b3e1b3bc84 +[python-kafka_1.0.1-0contrail0] +file = python-kafka_1.0.1-0contrail0_amd64.deb +md5 = e8e1d6233260caa5d4478c639b04afcd source = repo:contrail-thirdparty -[python-kafka_0.9.3-2+syseleven1_all] -file = python-kafka_0.9.3-2+syseleven1_all.deb -md5 = d00fb946087ded001c2c89be6cfba320 - -[python-kazoo_1.3.1-1contrail2] -file = python-kazoo_1.3.1-1contrail2_all.deb -md5 = 1160ffdc6faa72bfb6f027f5e7b18bb1 +[python-kazoo_1.3.1-1contrail3] +file = python-kazoo_1.3.1-1contrail3_all.deb +md5 = 38502c6e569c1cbbae108ff110b80763 source = repo:contrail-thirdparty [python-lxml_3.3.1-1contrail1] @@ -135,6 +146,11 @@ file = python-redis_2.8.0-1contrail1_all.deb md5 = a2c82a2b974ed10471570c09aef0673d source = repo:contrail-thirdparty +[python-sseclient_0.0.11-0contrail0] +file = python-sseclient_0.0.11-0contrail0_amd64.deb +md5 = f34ba0eb5ba204c33ce91ad0f3e86ada +source = repo:contrail-thirdparty + [python-xmltodict_0.9.0-1contrail1] file = python-xmltodict_0.9.0-1contrail1_all.deb md5 = 49ad578daa539e8965bbcaaac9a8045e @@ -159,3 +175,183 @@ source = repo:contrail-thirdparty file = python-boto_2.12.0_amd64.deb md5 = a2d26bd052eb9a37ad703adcf5b6d417 source = repo:contrail-thirdparty + +[cassandra_2.0.17] +file = cassandra_2.0.17_all.deb +md5 = 0efe0697f9129037c6bfa0514d2b26d2 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[cassandra_2.1.13] +file = cassandra_2.1.13_all.deb +md5 = 1853e9b48d656094fec8af8e88e1b901 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[cassandra-cpp-driver_2.2.0-1] +file = cassandra-cpp-driver_2.2.0-1_amd64.deb +md5 = 3f19fb659f3233ff35d1c1168668b08d +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[galera_25.2.9] +file = galera-25.2.9-amd64.deb +md5 = 7602c095d5d42661019bd45221615d4a +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[haproxy_1.5.4-1ppa1~precise] +file = haproxy_1.5.4-1ppa1~precise_amd64.deb +md5 = 808572e56bb7d65f8e7e21a3762bc3f4 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2] +file = libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2_amd64.deb +md5 = 858b5302af85a3ae22ea73c142e5fd26 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[librabbitmq0_0.0.1.hg216-1] +file = librabbitmq0_0.0.1.hg216-1_amd64.deb +md5 = 942635f76ab6cf1e27c6622201690bed +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[lxc-docker-1.6.2] +file = lxc-docker-1.6.2_1.6.2_amd64.deb +md5 = bb24274e604d7ed3ac70de296b594cd1 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[mysql-server-wsrep_5.5.37-25.10] +file = mysql-server-wsrep_5.5.37-25.10_amd64.deb +md5 = ac8664b3bd2ea15149e2d5af6abac90f +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[python-docker-py_0.6.1-dev] +file = python-docker-py_0.6.1-dev_all.deb +md5 = ff9daafe11d7f904032f5c830f67941a +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[python-oslo.messaging] +file = python-oslo.messaging_1.4.1-0ubuntu1-2contrail1_all.deb +md5 = 4a165aa7dfa6b97246ee579350e163e9 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[python-bitstring_3.1.3-2] +file = python-bitstring_3.1.3-2_all.deb +md5 = b54d9fbcacba9dfa8b61569ab65938cc +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[python-pyvmomi_5.5.0-2014.1.1-1] +file = python-pyvmomi_5.5.0-2014.1.1-1_all.deb +md5 = cdcdad00e07a88920b931215a2499a36 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[libuv_1.7.5-1] +file = libuv_1.7.5-1_amd64.deb +md5 = 76474f34e94ce80dca66f39eb2ae638b +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[storage-ceph-common_0.94.6-1contrail3] +file = ceph-common_0.94.6-1contrail3_amd64.deb +md5 = a5d7c6b059fb3e8dd9d35de2621855ed +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-ceph-fs-common_0.94.6-1contrail3] +file = ceph-fs-common_0.94.6-1contrail3_amd64.deb +md5 = 5ac1571d444a5de5f1aa8b01e65b1c8c +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-ceph-fuse_0.94.6-1contrail3] +file = ceph-fuse_0.94.6-1contrail3_amd64.deb +md5 = 958389b6bbfec13ace9667ef4daea968 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-ceph-mds_0.94.6-1contrail3] +file = ceph-mds_0.94.6-1contrail3_amd64.deb +md5 = a365eebb366919e646203d6c9c4a5d48 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-ceph_0.94.6-1contrail3] +file = ceph_0.94.6-1contrail3_amd64.deb +md5 = b45a7365dbb0d3c743c337dc2a855ebc +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-libcephfs1_0.94.6-1contrail3] +file = libcephfs1_0.94.6-1contrail3_amd64.deb +md5 = 397f6f342ed65fff4c288fca281b13ac +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-librados2_0.94.6-1contrail3] +file = librados2_0.94.6-1contrail3_amd64.deb +md5 = 66427b13fd41cd647bf3e4df4595998b +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-libradosstriper1_0.94.6-1contrail3] +file = libradosstriper1_0.94.6-1contrail3_amd64.deb +md5 = 0d239000f08dd8dd7e0d7b93b4c33880 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-librbd1_0.94.6-1contrail3] +file = librbd1_0.94.6-1contrail3_amd64.deb +md5 = 0f10fb265f48a3e9c9e39031c80c46bb +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-python-ceph_0.94.6-1contrail3] +file = python-ceph_0.94.6-1contrail3_amd64.deb +md5 = 7c92195f063b16dff1911febb92ef0de +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-python-cephfs_0.94.6-1contrail3] +file = python-cephfs_0.94.6-1contrail3_amd64.deb +md5 = d7182c036ca478072ee08e098bd6b9f5 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-python-rados_0.94.6-1contrail3] +file = python-rados_0.94.6-1contrail3_amd64.deb +md5 = 461df36e99270e5929b46e654e28bd34 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-python-rbd_0.94.6-1contrail3] +file = python-rbd_0.94.6-1contrail3_amd64.deb +md5 = 2d21b0da941a4aec377ee46f0e840acc +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-radosgw_0.94.6-1contrail3] +file = radosgw_0.94.6-1contrail3_amd64.deb +md5 = a7c135a7344e998bb2a812d538dcc237 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-rbd-fuse_0.94.6-1contrail3] +file = rbd-fuse_0.94.6-1contrail3_amd64.deb +md5 = f9a0d817a1b99c3dcc51250080cfd510 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[storage-sas2ircu_16.00.00.00-1contrail1] +file = sas2ircu_16.00.00.00-1contrail1_amd64.deb +md5 = 1e8d0288700a0e416231b88f2fd35674 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages diff --git a/build/package_configs/ubuntu1404/juno/depends_server_manager_packages.cfg b/build/package_configs/ubuntu1404/juno/depends_server_manager_packages.cfg index ee8a49e8e..890c9e1b1 100644 --- a/build/package_configs/ubuntu1404/juno/depends_server_manager_packages.cfg +++ b/build/package_configs/ubuntu1404/juno/depends_server_manager_packages.cfg @@ -1,64 +1,89 @@ -# **************************************************************** -# CAUTION: ANY CHANGES TO DEFAULT APPLIES TO ALL SECTIONS +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS # IF NOT OVERWRITTEN LOCALLY -# **************************************************************** +# **************************************************************************** # Usage: # [package name] -# file = # name of the package -# location = # location where the package file is available -# md5 = # md5 check sum of the package file +# file = # file name of the package # -# ***************************************************************** +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# **************************************************************************** [DEFAULT] -md5 = file = +md5 = location = package_type = contrail-server-manager-installer -[server-mgr-python-gevent_1.0-1ubuntu1] -file = python-gevent_1.0-1ubuntu1_amd64.deb -md5 = 7a0e277b556505bd5d663986ba8df167 +[server-mgr-python-bottle_0.12.0-1] +file = python-bottle_0.12.0-1_all.deb +md5 = 1a4e42bfa1b06f6ec20c39f5b493f3d6 +source = repo:trusty -[server-mgr-python-geventhttpclient] -file = python-geventhttpclient_1.1.0-1contrail1_amd64.deb -md5 = 1a00d30b23e355a014e90b75243f3227 +[server-mgr-python-gevent_1.0-1ubuntu1.1] +file = python-gevent_1.0-1ubuntu1.1_amd64.deb +md5 = 009938f1686163b0d2746e0649aa3366 +source = repo:trusty-updates + +[server-mgr-python-requests_2.3.0-1ubuntu0.1~cloud0] +file = python-requests_2.3.0-1ubuntu0.1~cloud0_all.deb +md5 = eece9be69f3b39738ac88d529768fba5 +source = repo:trusty-updates-juno + +[server-mgr-python-six_1.7.3-2~cloud0] +file = python-six_1.7.3-2~cloud0_all.deb +md5 = 3366f7110b8d30b62a0912ec65da2216 +source = repo:trusty-updates-juno [server-mgr-python-thrift_0.9.0-1build1] -file = python-thrift_0.9.0-1build1_amd64.deb -md5 = 8c575c6f55b81fb07c8b03c14c2be2fb +file = python-thrift_0.9.0-1build1_amd64.deb +md5 = 8c575c6f55b81fb07c8b03c14c2be2fb +source = repo:trusty -[server-mgr-python-urllib3] -file = python-urllib3_1.7.1-1ubuntu4_all.deb -md5 = 333c6809153491d85dfce3723c5ae2e7 +[server-mgr-python-urllib3_1.7.1-1ubuntu4] +file = python-urllib3_1.7.1-1ubuntu4_all.deb +md5 = 333c6809153491d85dfce3723c5ae2e7 +source = repo:trusty-updates -[server-mgr-python-certifi] -file = python-certifi_1.0.1-1contrail1_all.deb -md5 = 46ab19b4096c653c10854f5c5e735f1c +[server-mgr-python-greenlet_0.4.2-1build1] +file = python-greenlet_0.4.2-1build1_amd64.deb +md5 = 6bf204746bad67ae81d81229dfebe3b3 -[server-mgr-python-backports.ssl-match-hostname] -file = python-backports.ssl-match-hostname_3.4.0.2-1contrail1_all.deb -md5 = 243c920a5c91d12801c525f3dcd2a6d1 +[server-mgr-python-kazoo] +file = python-kazoo_1.3.1-1contrail3_all.deb +md5 = 38502c6e569c1cbbae108ff110b80763 -[server-mgr-python-bottle_0.12.0-1] -file = python-bottle_0.12.0-1_all.deb -md5 = 1a4e42bfa1b06f6ec20c39f5b493f3d6 +[server-mgr-python-consistent-hash] +file = python-consistent-hash_1.0-0contrail1_amd64.deb +md5 = 6ba90f706ec78584adb3a15657f290e3 + +[server-mgr-python-xmltodict] +file = python-xmltodict_0.9.0-1contrail1_all.deb +md5 = 49ad578daa539e8965bbcaaac9a8045e [server-mgr-python-pycassa] file = python-pycassa_1.11.0-1contrail2_all.deb md5 = 251c53af490a46086da56c9286b403e2 -[server-mgr-python-requests] -file = python-requests_2.3.0-1~cloud0_all.deb -md5 = 3087f6d1f64a607ef0c843c24ddec390 - -[server-mgr-python-six] -file = python-six_1.7.3-2~cloud0_all.deb -md5 = 3366f7110b8d30b62a0912ec65da2216 +[server-mgr-python-geventhttpclient] +file = python-geventhttpclient_1.1.0-1contrail1_amd64.deb +md5 = 1a00d30b23e355a014e90b75243f3227 -[server-mgr-python-greenlet_0.4.2-1build1] -file = python-greenlet_0.4.2-1build1_amd64.deb -md5 = 6bf204746bad67ae81d81229dfebe3b3 +[server-mgr-python-backports.ssl-match-hostname] +file = python-backports.ssl-match-hostname_3.4.0.2-1contrail1_all.deb +md5 = 243c920a5c91d12801c525f3dcd2a6d1 [server-mgr-nodejs] file = nodejs_0.10.35-1contrail1_amd64.deb @@ -68,14 +93,6 @@ md5 = fbbf1969783bc15291039263bc88bb39 file = supervisor_3.0r1-1_all.deb md5 = 368bfa94087bdc5eca01eae1ecc87335 -[server-mgr-python-kazoo] -file = python-kazoo_1.3.1-1contrail2_all.deb -md5 = 1160ffdc6faa72bfb6f027f5e7b18bb1 - -[server-mgr-python-consistent-hash] -file = python-consistent-hash_1.0-0contrail1_amd64.deb -md5 = 6ba90f706ec78584adb3a15657f290e3 - -[server-mgr-python-xmltodict] -file = python-xmltodict_0.9.0-1contrail1_all.deb -md5 = 49ad578daa539e8965bbcaaac9a8045e +[server-mgr-python-certifi] +file = python-certifi_1.0.1-1contrail1_all.deb +md5 = 46ab19b4096c653c10854f5c5e735f1c diff --git a/build/package_configs/ubuntu1404/juno/depends_storage_packages.cfg b/build/package_configs/ubuntu1404/juno/depends_storage_packages.cfg index 2b936307f..1c923fe04 100644 --- a/build/package_configs/ubuntu1404/juno/depends_storage_packages.cfg +++ b/build/package_configs/ubuntu1404/juno/depends_storage_packages.cfg @@ -27,318 +27,268 @@ md5 = location = package_type = contrail-storage-packages -[storage-ceph-common_0.94.3-1contrail2] -file = ceph-common_0.94.3-1contrail2_amd64.deb -md5 = 10e341b3089bc708b803ab84894e8872 -source = repo:contrail-thirdparty +[storage-btrfs-tools_3.12-1ubuntu0.1] +file = btrfs-tools_3.12-1ubuntu0.1_amd64.deb +md5 = 4a47a743970471e37b9b6e59419bf4c5 +source = repo:trusty-updates [storage-ceph-deploy_1.4.0-0ubuntu1] file = ceph-deploy_1.4.0-0ubuntu1_all.deb md5 = 106ff343c0df2c8e7d0245d0482269ab -source = repo:trusty/universe +source = repo:trusty -[storage-ceph-fs-common_0.94.3-1contrail2] -file = ceph-fs-common_0.94.3-1contrail2_amd64.deb -md5 = 62dec47e84ba95c08f526e47dc113fc5 -source = repo:contrail-thirdparty - -[storage-ceph-fuse_0.94.3-1contrail2] -file = ceph-fuse_0.94.3-1contrail2_amd64.deb -md5 = 00506bce0997184bb47611d788758065 -source = repo:contrail-thirdparty - -[storage-ceph-mds_0.94.3-1contrail2] -file = ceph-mds_0.94.3-1contrail2_amd64.deb -md5 = 1fe61de80ffd766e333168be1ad089ac -source = repo:contrail-thirdparty - -[storage-ceph_0.94.3-1contrail2] -file = ceph_0.94.3-1contrail2_amd64.deb -md5 = 48da333273979870e3257f1499736632 -source = repo:contrail-thirdparty - -[storage-cinder-volume_1:2014.2.3-0ubuntu1.1~cloud0] -file = cinder-volume_1%%3a2014.2.3-0ubuntu1.1~cloud0_all.deb -md5 = 55fe39375d289538b69b587364b3cfa2 -source = repo:trusty-updates-juno/main +[storage-cinder-volume_1:2014.2.4-0ubuntu1~cloud2] +file = cinder-volume_1%%3a2014.2.4-0ubuntu1~cloud2_all.deb +md5 = a2f2ad3d6f9ddab6ce96d3aad4239a3f +source = repo:trusty-updates-juno [storage-cryptsetup-bin_2:1.6.1-1ubuntu1] file = cryptsetup-bin_2%%3a1.6.1-1ubuntu1_amd64.deb md5 = ae4ee141c87d2248af97a79c39ace7de -source = repo:trusty/main +source = repo:trusty [storage-cryptsetup_2:1.6.1-1ubuntu1] file = cryptsetup_2%%3a1.6.1-1ubuntu1_amd64.deb md5 = c9b3ea50aa7243de4db7b739c42b5211 -source = repo:trusty/main +source = repo:trusty [storage-gdisk_0.8.8-1ubuntu0.1] file = gdisk_0.8.8-1ubuntu0.1_amd64.deb md5 = 6e9ed16eaca8d87dc22cf4918f95cb2c -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-guile-2.0-libs_2.0.9+1-1ubuntu1] file = guile-2.0-libs_2.0.9+1-1ubuntu1_amd64.deb md5 = 040cc4de4acdd5c233c841a437a4ec06 -source = repo:trusty/main +source = repo:trusty [storage-heirloom-mailx_12.5-2+deb7u1build0.14.04.1] file = heirloom-mailx_12.5-2+deb7u1build0.14.04.1_amd64.deb md5 = 9e8badc74dfbfe379e3520f343ac93a0 -source = repo:trusty-updates/universe - -[storage-libcephfs1_0.94.3-1contrail2] -file = libcephfs1_0.94.3-1contrail2_amd64.deb -md5 = 8ba277867d37b4ec3b386948e052b4d8 -source = repo:contrail-thirdparty +source = repo:trusty-updates [storage-libconfig-general-perl_2.52-1] file = libconfig-general-perl_2.52-1_all.deb md5 = 42dd64a2e8c1dd19c1f0efd52da3af41 -source = repo:trusty/main +source = repo:trusty [storage-libcryptsetup4_2:1.6.1-1ubuntu1] file = libcryptsetup4_2%%3a1.6.1-1ubuntu1_amd64.deb md5 = 989de0f231fdea8da9fbb9b8e8945940 -source = repo:trusty/main +source = repo:trusty [storage-libdevmapper-event1.02.1_2:1.02.77-6ubuntu2] file = libdevmapper-event1.02.1_2%%3a1.02.77-6ubuntu2_amd64.deb md5 = 094eb17d3fb1a5498f56536831d6417a -source = repo:trusty/main +source = repo:trusty [storage-libgc1c2_1:7.2d-5ubuntu2] file = libgc1c2_1%%3a7.2d-5ubuntu2_amd64.deb md5 = 77b7d6c1e799ff3f449999f48c62193b -source = repo:trusty/main +source = repo:trusty [storage-libgsasl7_1.8.0-2ubuntu2] file = libgsasl7_1.8.0-2ubuntu2_amd64.deb md5 = 48d78fbc403d8687ce7aacea453dd600 -source = repo:trusty/universe +source = repo:trusty [storage-libibverbs1_1.1.7-1ubuntu1.1] file = libibverbs1_1.1.7-1ubuntu1.1_amd64.deb md5 = 2eac0b5dabf90781eee802bfa8bd0a45 -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-libicu52_52.1-3ubuntu0.4] file = libicu52_52.1-3ubuntu0.4_amd64.deb md5 = ed4da162328dc75beb75e38ca291c959 -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-libjemalloc-dev_3.5.1-2] file = libjemalloc-dev_3.5.1-2_amd64.deb md5 = 7995c3bac6ca04c5642ea10a131cc157 -source = repo:trusty/universe +source = repo:trusty [storage-libkyotocabinet16_1.2.76-4] file = libkyotocabinet16_1.2.76-4_amd64.deb md5 = a5ef4290a55fbab39090e0c629569bef -source = repo:trusty/universe +source = repo:trusty [storage-libleveldb1_1.15.0-2] file = libleveldb1_1.15.0-2_amd64.deb md5 = c031f369fc9122ca93f0f690b1f250da -source = repo:trusty/main +source = repo:trusty + +[storage-liblzo2-2_2.06-1.2ubuntu1.1] +file = liblzo2-2_2.06-1.2ubuntu1.1_amd64.deb +md5 = b3e9733843fda9b2463a0745e7306092 +source = repo:trusty-updates [storage-libmailutils4_1:2.99.98-1.1] file = libmailutils4_1%%3a2.99.98-1.1_amd64.deb md5 = a6755462a0efb1c3f9217d9a10c459e0 -source = repo:trusty/universe +source = repo:trusty + +[storage-libnspr4-0d_2:4.12-0ubuntu0.14.04.1] +file = libnspr4-0d_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = 95d161ab098588452a90d9cf5be8d7e7 +source = repo:trusty-updates -[storage-libnspr4-0d_2:4.10.10-0ubuntu0.14.04.1] -file = libnspr4-0d_2%%3a4.10.10-0ubuntu0.14.04.1_amd64.deb -md5 = 7a77d9d7e6625c36c80b36b1017f6845 -source = repo:trusty-updates/universe +[storage-libnspr4_2:4.12-0ubuntu0.14.04.1] +file = libnspr4_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = cff22f4863f0e8356900e6b26872a63c +source = repo:trusty-updates -[storage-libnss3-1d_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3-1d_2%%3a3.19.2.1-0ubuntu0.14.04.1_amd64.deb -md5 = f69f624713a7d70891aaf334df684714 -source = repo:trusty-updates/main +[storage-libnss3-1d_2:3.23-0ubuntu0.14.04.1] +file = libnss3-1d_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 96170b238bc6a8ccc48418d28dce8285 +source = repo:trusty-updates -[storage-libnss3-nssdb_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3-nssdb_2%%3a3.19.2.1-0ubuntu0.14.04.1_all.deb -md5 = 24f0c1f9fca8ea633cf64e622f024012 -source = repo:trusty-updates/main +[storage-libnss3-nssdb_2:3.23-0ubuntu0.14.04.1] +file = libnss3-nssdb_2%%3a3.23-0ubuntu0.14.04.1_all.deb +md5 = 7b4064d8bb5f8ca3f0aec63699666564 +source = repo:trusty-updates -[storage-libnss3_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3_2%%3a3.19.2.1-0ubuntu0.14.04.1_amd64.deb -md5 = 2b2dca07befc97483bbd60ada68cd9cd -source = repo:trusty-updates/main +[storage-libnss3_2:3.23-0ubuntu0.14.04.1] +file = libnss3_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 915f9fd9b0b0d18bbfe66f47774daec8 +source = repo:trusty-updates [storage-libntlm0_1.4-1] file = libntlm0_1.4-1_amd64.deb md5 = 494a0ba5d16fe739b2ca575e7177604a -source = repo:trusty/universe - -[storage-librados2_0.94.3-1contrail2] -file = librados2_0.94.3-1contrail2_amd64.deb -md5 = b0c8edeaa07ec8593228bfc0197612e1 -source = repo:contrail-thirdparty - -[storage-librbd1_0.94.3-1contrail2] -file = librbd1_0.94.3-1contrail2_amd64.deb -md5 = 72c9408b09aacd955b193d3608b6162c -source = repo:contrail-thirdparty +source = repo:trusty [storage-librdmacm1_1.0.16-1] file = librdmacm1_1.0.16-1_amd64.deb md5 = e48ede8d81ea578c585655eef431b858 -source = repo:trusty/main +source = repo:trusty [storage-libreadline5_5.2+dfsg-2] file = libreadline5_5.2+dfsg-2_amd64.deb md5 = 105690417cc22d06a1c4a66069ec8a91 -source = repo:trusty/main +source = repo:trusty [storage-libsgutils2-2_1.36-1ubuntu1] file = libsgutils2-2_1.36-1ubuntu1_amd64.deb md5 = f0252042b785ce828cfee62b9390f9c1 -source = repo:trusty/main +source = repo:trusty [storage-libsysfs2_2.1.0+repack-3ubuntu1] file = libsysfs2_2.1.0+repack-3ubuntu1_amd64.deb md5 = 366df7440d6e399c2c775cf81fa508b5 -source = repo:trusty/main +source = repo:trusty [storage-libtinfo5_5.9+20140118-1ubuntu1] file = libtinfo5_5.9+20140118-1ubuntu1_amd64.deb md5 = 72a3233b08faf65664a6235b05924f38 -source = repo:trusty/main +source = repo:trusty [storage-libunistring0_0.9.3-5ubuntu3] file = libunistring0_0.9.3-5ubuntu3_amd64.deb md5 = 256e18209ad74bc9e6752290f2a5444f -source = repo:trusty/main +source = repo:trusty + +[storage-libuuid1_2.20.1-5.1ubuntu20.7] +file = libuuid1_2.20.1-5.1ubuntu20.7_amd64.deb +md5 = d44826d02f03b777448f7ab1e0efa5e3 +source = repo:trusty-updates [storage-lvm2_2.02.98-6ubuntu2] file = lvm2_2.02.98-6ubuntu2_amd64.deb md5 = 76d72b5259b958b9802845e6123e4431 -source = repo:trusty/main +source = repo:trusty [storage-mailutils-common_1:2.99.98-1.1] file = mailutils-common_1%%3a2.99.98-1.1_all.deb md5 = b282e598a53a970b055e6e1c8b45fa95 -source = repo:trusty/universe +source = repo:trusty [storage-mailutils_1:2.99.98-1.1] file = mailutils_1%%3a2.99.98-1.1_amd64.deb md5 = a59bcdab76b5399b6e393a9a48189c8f -source = repo:trusty/universe +source = repo:trusty [storage-postfix_2.11.0-1ubuntu1] file = postfix_2.11.0-1ubuntu1_amd64.deb md5 = 676483e59b2785704d298800fb893595 -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-python-blinker_1.3.dfsg1-1ubuntu2] file = python-blinker_1.3.dfsg1-1ubuntu2_all.deb md5 = 1084d75f917fed1cd00fe11edd5695e6 -source = repo:trusty/main - -[storage-python-ceph_0.94.3-1contrail2] -file = python-ceph_0.94.3-1contrail2_amd64.deb -md5 = 2735079b2d05461307733be9a6319b2b -source = repo:contrail-thirdparty - -[storage-python-cephfs_0.94.3-1contrail2] -file = python-cephfs_0.94.3-1contrail2_amd64.deb -md5 = 2ea0fed7128da9d62aa18b51d44fdea2 -source = repo:contrail-thirdparty +source = repo:trusty [storage-python-flask_0.10.1-2build1] file = python-flask_0.10.1-2build1_all.deb md5 = ddee0a62d486a6cc2f86028f08369505 -source = repo:trusty/main +source = repo:trusty [storage-python-itsdangerous_0.22+dfsg1-1build1] file = python-itsdangerous_0.22+dfsg1-1build1_all.deb md5 = 41f85eb2b23f50761d2914f34e28fd52 -source = repo:trusty/main +source = repo:trusty [storage-python-pushy_0.5.3-1] file = python-pushy_0.5.3-1_amd64.deb md5 = 9211c7c8c46ce30537c4c227259a0c10 -source = repo:trusty/universe +source = repo:trusty [storage-python-pyinotify_0.9.4-1build1] file = python-pyinotify_0.9.4-1build1_all.deb md5 = e8769aea55a94fe0562f7c5fc160f883 -source = repo:trusty/main - -[storage-python-rados_0.94.3-1contrail2] -file = python-rados_0.94.3-1contrail2_amd64.deb -md5 = 5b481f7b712c098672a191cb43fd5a2b -source = repo:contrail-thirdparty - -[storage-python-rbd_0.94.3-1contrail2] -file = python-rbd_0.94.3-1contrail2_amd64.deb -md5 = 8b058b2398da59a1dc4f39fe95b5b2d2 -source = repo:contrail-thirdparty +source = repo:trusty [storage-python-werkzeug_0.9.4+dfsg-1.1ubuntu2] file = python-werkzeug_0.9.4+dfsg-1.1ubuntu2_all.deb md5 = 0b840568dce7365757d1146c8570466c -source = repo:trusty-updates/main - -[storage-radosgw_0.94.3-1contrail2] -file = radosgw_0.94.3-1contrail2_amd64.deb -md5 = feaa72dbc1f1818ed3115ebb925ad6bc -source = repo:contrail-thirdparty - -[storage-rbd-fuse_0.94.3-1contrail2] -file = rbd-fuse_0.94.3-1contrail2_amd64.deb -md5 = 7e3fbf8ca8d3fa53d1b672b3953be908 -source = repo:contrail-thirdparty +source = repo:trusty-updates [storage-readline-common_6.3-4ubuntu2] file = readline-common_6.3-4ubuntu2_all.deb md5 = d658036aeedbb56055420a216a45f613 -source = repo:trusty/main +source = repo:trusty + +[storage-rpcbind_0.2.1-2ubuntu2.2] +file = rpcbind_0.2.1-2ubuntu2.2_amd64.deb +md5 = 279a20e0acfea4036bce808ee12db789 +source = repo:trusty-updates [storage-ruby-json_1.8.0-1build1] file = ruby-json_1.8.0-1build1_amd64.deb md5 = 8a5577a328816da78d573bb5ae490924 -source = repo:trusty/main - -[storage-sas2ircu_16.00.00.00-1contrail1] -file = sas2ircu_16.00.00.00-1contrail1_amd64.deb -md5 = 1e8d0288700a0e416231b88f2fd35674 -source = repo:contrail-thirdparty +source = repo:trusty [storage-sg3-utils_1.36-1ubuntu1] file = sg3-utils_1.36-1ubuntu1_amd64.deb md5 = 1ba42c6c32502350e3cf80994a9d59be -source = repo:trusty/main +source = repo:trusty [storage-smartmontools_6.2+svn3841-1.2] file = smartmontools_6.2+svn3841-1.2_amd64.deb md5 = d03f917eac4a51f138ea47e1bdfc10d5 -source = repo:trusty/main +source = repo:trusty [storage-sysfsutils_2.1.0+repack-3ubuntu1] file = sysfsutils_2.1.0+repack-3ubuntu1_amd64.deb md5 = 641ba8cee477cdcf99f3e6b13cbd7c3d -source = repo:trusty/universe +source = repo:trusty [storage-sysstat_10.2.0-1] file = sysstat_10.2.0-1_amd64.deb md5 = c85d3d8c3d3162c4d6b2efe1b963e0d2 -source = repo:trusty/main +source = repo:trusty -[storage-tgt_1:1.0.43-0ubuntu4.1~14.04.2] -file = tgt_1%%3a1.0.43-0ubuntu4.1~14.04.2_amd64.deb -md5 = 3fee716804c6dd4452b40d3084e67696 -source = repo:trusty-updates/main +[storage-tgt_1:1.0.43-0ubuntu4.1~14.04.3] +file = tgt_1%%3a1.0.43-0ubuntu4.1~14.04.3_amd64.deb +md5 = e662be318b3244b46bf8ab360add5b2e +source = repo:trusty-updates [storage-watershed_7] file = watershed_7_amd64.deb md5 = b1b5d2c6f51e224123e13ea79661913d -source = repo:trusty/main +source = repo:trusty [storage-xfsprogs_3.1.9ubuntu2] file = xfsprogs_3.1.9ubuntu2_amd64.deb md5 = cd7af43d46ad3eca3839ded13f2a0129 -source = repo:trusty/main +source = repo:trusty diff --git a/build/package_configs/ubuntu1404/kilo/contrail_packages.cfg b/build/package_configs/ubuntu1404/kilo/contrail_packages.cfg index 3cd7e96af..fb155b71a 100644 --- a/build/package_configs/ubuntu1404/kilo/contrail_packages.cfg +++ b/build/package_configs/ubuntu1404/kilo/contrail_packages.cfg @@ -42,12 +42,16 @@ pkgs = contrail-analytics, contrail-config, contrail-control, contrail-lib, contrail-nova-driver, contrail-vrouter-agent, contrail-vrouter-dkms, contrail-vrouter-dpdk, contrail-vrouter-source, contrail-vrouter-utils, python-contrail, python-contrail-vrouter-api, - contrail-vrouter-3.13.0-40-generic, contrail-config-openstack, + contrail-vrouter-3.13.0-85-generic, contrail-config-openstack, contrail-dns, python-opencontrail-vrouter-netns, contrail-utils, contrail-nodemgr, contrail-docs makeloc = tools/packaging/common/debian builtloc = build/packages +[contrail-database-common-deb] +pkgs = contrail-database-common +makeloc = tools/packaging/common/debian + [contrail-heat-deb] pkgs = contrail-heat makeloc = tools/packaging/common/debian diff --git a/build/package_configs/ubuntu1404/kilo/depends_contrail_dependent_packages.cfg b/build/package_configs/ubuntu1404/kilo/depends_contrail_dependent_packages.cfg index bf9a651a4..533390702 100644 --- a/build/package_configs/ubuntu1404/kilo/depends_contrail_dependent_packages.cfg +++ b/build/package_configs/ubuntu1404/kilo/depends_contrail_dependent_packages.cfg @@ -19,6 +19,12 @@ # # then that package file will be packaged in # # the wrapper package contrail-dependent-packages # +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded # **************************************************************************** [DEFAULT] @@ -30,606 +36,542 @@ package_type = contrail-install-packages, contrail-dependent-packages [acl_2.2.52-1] file = acl_2.2.52-1_amd64.deb md5 = ac8db6aa2095dfd83758db34cf31285a -source = repo:trusty +source = repo:trusty/main/ [alembic_0.7.2+ds-0ubuntu1~cloud0] file = alembic_0.7.2+ds-0ubuntu1~cloud0_all.deb md5 = cc708f363043b5c630ed3e690c12b6c9 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[apache2-bin_2.4.7-1ubuntu4.8] -file = apache2-bin_2.4.7-1ubuntu4.8_amd64.deb -md5 = f415fae084e9abbe090cfeaa2fcada2d -source = repo:trusty-updates +[apache2-bin_2.4.7-1ubuntu4.13] +file = apache2-bin_2.4.7-1ubuntu4.13_amd64.deb +md5 = 1f09b5285104ba0092e87107edb50eb8 +source = repo:trusty-updates/main/ -[apache2-data_2.4.7-1ubuntu4.8] -file = apache2-data_2.4.7-1ubuntu4.8_all.deb -md5 = 86a7531da8ded786b28b81f622b46cb6 -source = repo:trusty-updates +[apache2-data_2.4.7-1ubuntu4.13] +file = apache2-data_2.4.7-1ubuntu4.13_all.deb +md5 = a364bd616d825751ecc5d5bbaf6a7aab +source = repo:trusty-updates/main/ -[apache2_2.4.7-1ubuntu4.8] -file = apache2_2.4.7-1ubuntu4.8_amd64.deb -md5 = 80b29b3ff6f04d37e67fd4aa849997a6 -source = repo:trusty-updates +[apache2_2.4.7-1ubuntu4.13] +file = apache2_2.4.7-1ubuntu4.13_amd64.deb +md5 = de253bd50cfe1b961ff934b784095bd7 +source = repo:trusty-updates/main/ [apport-symptoms_0.20] file = apport-symptoms_0.20_all.deb md5 = 089a296892f64423dcd98987979c871e -source = repo:trusty +source = repo:trusty/main/ -[apport_2.14.1-0ubuntu3.19] -file = apport_2.14.1-0ubuntu3.19_all.deb -md5 = 3d5820d58e47fc86c1b1a9ce7f3b17f1 -source = repo:trusty-updates +[apport_2.14.1-0ubuntu3.21] +file = apport_2.14.1-0ubuntu3.21_all.deb +md5 = 9e0cac0cb024b9470d668361f7587687 +source = repo:trusty-updates/main/ -[augeas-lenses_1.2.0-0ubuntu1.1] -file = augeas-lenses_1.2.0-0ubuntu1.1_all.deb -md5 = 60bb4a95db770d3bacc69df04fc6e080 -source = repo:trusty-updates +[augeas-lenses_1.2.0-0ubuntu1.2] +file = augeas-lenses_1.2.0-0ubuntu1.2_all.deb +md5 = 2a64ec1748107102185d807a8fdc493f +source = repo:trusty-updates/main/ [authbind_2.1.1] file = authbind_2.1.1_amd64.deb md5 = 970d73e2beae6852c8af26a9b3ae1794 -source = repo:trusty +source = repo:trusty/main/ [bridge-utils_1.5-6ubuntu2] file = bridge-utils_1.5-6ubuntu2_amd64.deb md5 = 23f37038baab928f276fb1aa2fd0a6c2 -source = repo:trusty - -[build-essential_11.6ubuntu6] -file = build-essential_11.6ubuntu6_amd64.deb -md5 = 6fa3d082885a7440d512236685cd24fd -source = repo:trusty +source = repo:trusty/main/ [ca-certificates-java_20130815ubuntu1] file = ca-certificates-java_20130815ubuntu1_all.deb md5 = efc4948adfc7855968db71d52b181af0 -source = repo:trusty - -[cassandra-cpp-driver_2.2.0-1] -file = cassandra-cpp-driver_2.2.0-1_amd64.deb -md5 = 3f19fb659f3233ff35d1c1168668b08d -source = repo:contrail-thirdparty - -[cassandra_2.0.17] -file = cassandra_2.0.17_all.deb -md5 = 0efe0697f9129037c6bfa0514d2b26d2 -source = repo:contrail-thirdparty +source = repo:trusty/main/ -[cassandra_2.1.9] -file = cassandra_2.1.9_all.deb -md5 = 4dcdf43471d6bcbef7ad3b79f63bd8b1 -source = repo:contrail-thirdparty +[cgmanager_0.24-0ubuntu7.5] +file = cgmanager_0.24-0ubuntu7.5_amd64.deb +md5 = a6ab4eac3831bfe50ca2b47da9e169ff +source = repo:trusty-updates/main/ [cgroup-lite_1.9] file = cgroup-lite_1.9_all.deb md5 = fe1749ba83aaf6d4f3e87ccdbc3581d4 -source = repo:trusty - -[cpp-4.8_4.8.4-2ubuntu1~14.04] -file = cpp-4.8_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 50653591beb6c73b2a41703ccd0bf0d7 -source = repo:trusty-updates - -[cpp_4:4.8.2-1ubuntu6] -file = cpp_4%%3a4.8.2-1ubuntu6_amd64.deb -md5 = 2ced23b24cf068b16b5a69222506fd79 -source = repo:trusty +source = repo:trusty/main/ [cpu-checker_0.7-0ubuntu4] file = cpu-checker_0.7-0ubuntu4_amd64.deb md5 = 4369a69e41e5b78ab7a4623405455443 -source = repo:trusty +source = repo:trusty/main/ -[crash_7.0.3-3ubuntu4.3] -file = crash_7.0.3-3ubuntu4.3_amd64.deb -md5 = 6ea6f22f82d594113c64f95838b47e01 -source = repo:trusty-updates +[crash_7.0.3-3ubuntu4.4] +file = crash_7.0.3-3ubuntu4.4_amd64.deb +md5 = 41f05464997fe498fdabc96691143b4d +source = repo:trusty-updates/main/ + +[crudini_0.3-1] +file = crudini_0.3-1_amd64.deb +md5 = 53f6b8981076afc2fe5f545a87426cdd +source = repo:trusty/universe/ [default-jre-headless_2:1.7-51] file = default-jre-headless_2%%3a1.7-51_amd64.deb md5 = 82babba8748dca94fddb6449c2e0c38e -source = repo:trusty +source = repo:trusty/main/ -[dkms_2.2.0.3-1.1ubuntu5.14.04.5] -file = dkms_2.2.0.3-1.1ubuntu5.14.04.5_all.deb -md5 = 2d543ccc913282f2958fe61690a92931 -source = repo:trusty-updates +[dkms_2.2.0.3-1.1ubuntu5.14.04.7] +file = dkms_2.2.0.3-1.1ubuntu5.14.04.7_all.deb +md5 = fab70a6c4f896c686947a0f2380b179b +source = repo:trusty-updates/main/ [dnsmasq-base_2.68-1ubuntu0.1] file = dnsmasq-base_2.68-1ubuntu0.1_amd64.deb md5 = aaee558be8eddbbdc86bb0623152786d -source = repo:trusty-updates +source = repo:trusty-updates/main/ [docutils-common_0.11-3] file = docutils-common_0.11-3_all.deb md5 = 8fcd1b48d490c1a16bc307cf51b29e88 -source = repo:trusty +source = repo:trusty/main/ [docutils-doc_0.11-3] file = docutils-doc_0.11-3_all.deb md5 = 78df317de3c8cbcdc76ec4c78d2d5921 -source = repo:trusty - -[dpdk-depends-packages_14.04-contrail5] -file = dpdk-depends-packages_14.04-contrail5_amd64.deb -md5 = 26881eabd887df27629ec15317099024 +source = repo:trusty/main/ [ebtables_2.0.10.4-3ubuntu1] file = ebtables_2.0.10.4-3ubuntu1_amd64.deb md5 = f96583701c00105823f3f47dea83d916 -source = repo:trusty +source = repo:trusty/main/ [erlang-asn1_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-asn1_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 575fef7263a448cdf324913398f8ec0f -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-base_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-base_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 99b0855a597d569ddc43c0041677ca96 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-corba_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-corba_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = f29d5d35aeae497c07371e8a752e97ea -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-crypto_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-crypto_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 035e43b5d7eb117b25a28e830fc2bcbb -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-diameter_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-diameter_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 88161ebc93abeaa2b2914761e460f96c -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-edoc_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-edoc_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 1b55de3e45ceaa88f508a62d53c00fb1 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-eldap_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-eldap_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = cc629b93dd39fff38252b710469f2326 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-erl-docgen_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-erl-docgen_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 9628a630a43a2a8a4479807ae96e1f09 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-eunit_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-eunit_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 6243705eccf17e2912b6ebc083601c77 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-ic_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-ic_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 043e80620c4881143e29f7a988d4e798 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-inets_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-inets_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = f8636c11531196fe9de2be45fdfe08e1 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-mnesia_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-mnesia_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = eff8aab35c9b4801ddd5c774f1aceb90 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-nox_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-nox_1%%3a16.b.3-dfsg-1ubuntu2.1_all.deb md5 = 9dfd1c17ee88f9b72090daabe3f8e731 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-odbc_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-odbc_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = b042165d0ec717297d597f4b90bda232 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-os-mon_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-os-mon_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 53f05b6f3005de0878ce1ee92ba3e188 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-parsetools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-parsetools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 1f0c6e2cba3372c40dc6ee76ec12e7fd -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-percept_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-percept_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 15655c734c0029fab92eb868329510c0 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-public-key_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-public-key_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 7518584093a1a7f99567e7493098c611 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-runtime-tools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-runtime-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 784a09013c958b70fb1bf345c3a23c7a -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-snmp_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-snmp_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = eee18402acd25f7e8c2c31ce26a258c7 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-ssh_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-ssh_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 4e1fe0602a2faa427bac96c6f5081811 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-ssl_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-ssl_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 07531a5126d16f130b5f14d6803112b8 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-syntax-tools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-syntax-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = c0ace3059416c0ddabaea1e4dd873643 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-tools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 828f36449d9ce99a9390d70525db6ffc -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-webtool_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-webtool_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 6327bcd344ac21dfc5ab2efe79112834 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [erlang-xmerl_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-xmerl_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 46a5494bcf5589a86a65fb75f20207cb -source = repo:trusty-updates +source = repo:trusty-updates/main/ [ethtool_1:3.13-1] file = ethtool_1%%3a3.13-1_amd64.deb md5 = b23c4d504e5b13decc47276ee40927b6 source = repo:trusty -[fakeroot_1.20-3ubuntu2] -file = fakeroot_1.20-3ubuntu2_amd64.deb -md5 = fad29881d632a463f5235f399fa65a14 -source = repo:trusty - -[fontconfig-config_2.11.0-0ubuntu4.1] -file = fontconfig-config_2.11.0-0ubuntu4.1_all.deb -md5 = cb98cb28b96d218db9df3af4538a3658 -source = repo:trusty-updates +[fontconfig-config_2.11.0-0ubuntu4.2] +file = fontconfig-config_2.11.0-0ubuntu4.2_all.deb +md5 = 0810d79c48f4cc873a73a721b6f51806 +source = repo:trusty-updates/main/ [fonts-dejavu-core_2.34-1ubuntu1] file = fonts-dejavu-core_2.34-1ubuntu1_all.deb md5 = 7167c133d8ec713c90fc64faab927994 -source = repo:trusty - -[g++-4.8_4.8.4-2ubuntu1~14.04] -file = g++-4.8_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 1b07f3789e1e951b15549d6eb2f9f4e3 -source = repo:trusty-updates - -[g++_4:4.8.2-1ubuntu6] -file = g++_4%%3a4.8.2-1ubuntu6_amd64.deb -md5 = 7332a4e9116b821e167a3d0236ca413a -source = repo:trusty +source = repo:trusty/main/ [gawk_1:4.0.1+dfsg-2.1ubuntu2] file = gawk_1%%3a4.0.1+dfsg-2.1ubuntu2_amd64.deb md5 = 799aeb4150f914136decbe942ef7de9a -source = repo:trusty - -[gcc-4.8_4.8.4-2ubuntu1~14.04] -file = gcc-4.8_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 4ec6a901872393ced4beb3873e2dfb85 -source = repo:trusty-updates - -[gcc_4:4.8.2-1ubuntu6] -file = gcc_4%%3a4.8.2-1ubuntu6_amd64.deb -md5 = 83b25d71df6df1c47a4b983596896f0b -source = repo:trusty +source = repo:trusty/main/ [genisoimage_9:1.1.11-2ubuntu3] file = genisoimage_9%%3a1.1.11-2ubuntu3_amd64.deb md5 = 69f0b6dcc3cc655d1ab27ca2aadb32b6 -source = repo:trusty +source = repo:trusty/main/ -[ifenslave-2.6_2.4ubuntu1.1] -file = ifenslave-2.6_2.4ubuntu1.1_all.deb -md5 = 064be806c4e17427b9647dda00b8f254 -source = repo:trusty-updates +[icedtea-6-jre-cacao_6b39-1.13.11-0ubuntu0.14.04.1] +file = icedtea-6-jre-cacao_6b39-1.13.11-0ubuntu0.14.04.1_amd64.deb +md5 = 2f42f21b44ce7bb07f901774d4a36589 +source = repo:trusty-updates/universe/ + +[icedtea-6-jre-jamvm_6b39-1.13.11-0ubuntu0.14.04.1] +file = icedtea-6-jre-jamvm_6b39-1.13.11-0ubuntu0.14.04.1_amd64.deb +md5 = 14d7a45c2e34fa345f0540b5d9e7d5d5 +source = repo:trusty-updates/universe/ + +[ifenslave-2.6_2.4ubuntu1.2] +file = ifenslave-2.6_2.4ubuntu1.2_all.deb +md5 = 29f633fc0e2f9dfc30e81f4d0de3c4d9 +source = repo:trusty-updates/main/ + +[ifenslave_2.4ubuntu1.2] +file = ifenslave_2.4ubuntu1.2_all.deb +md5 = b0852693180ea4acd1e67dec4f4963fe +source = repo:trusty-updates/main/ [iproute_1:3.12.0-2ubuntu1] file = iproute_1%%3a3.12.0-2ubuntu1_all.deb md5 = f20fa31756530920ae3c237b337dc7bc -source = repo:trusty-updates +source = repo:trusty-updates/main/ [ipset_6.20.1-1] file = ipset_6.20.1-1_amd64.deb md5 = 83afed4179463cff8ae0d85d2be1346b -source = repo:trusty +source = repo:trusty/universe/ [ipvsadm_1:1.26-2ubuntu1] file = ipvsadm_1%%3a1.26-2ubuntu1_amd64.deb md5 = d62d75f400a4466eded2949d91c40ff8 -source = repo:trusty +source = repo:trusty/main/ [ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1.1] file = ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1.1_all.deb md5 = 2ed810c34ce0682174eb97461673c00e -source = repo:trusty-updates +source = repo:trusty-updates/main/ [java-common_0.51] file = java-common_0.51_all.deb md5 = c8352e7908b8a260b2657f9b80c08031 -source = repo:trusty +source = repo:trusty/main/ [javascript-common_11] file = javascript-common_11_all.deb md5 = 97257c1c7151131cd487ee09bbb1b653 -source = repo:trusty +source = repo:trusty/main/ [jsvc_1.0.15-5ubuntu2] file = jsvc_1.0.15-5ubuntu2_amd64.deb md5 = 25ed60e830fa2fda6edcebc69a91c4ed -source = repo:trusty +source = repo:trusty/universe/ -[kdump-tools_1.5.5-2ubuntu1.4] -file = kdump-tools_1.5.5-2ubuntu1.4_all.deb -md5 = 4dc4bd388944a15a6301144e43e45a02 -source = repo:trusty-updates +[kdump-tools_1.5.5-2ubuntu1.5] +file = kdump-tools_1.5.5-2ubuntu1.5_all.deb +md5 = 1ace74c48059ba8641dcae07b3cd1f8c +source = repo:trusty-updates/main/ [kexec-tools_1:2.0.6-0ubuntu2.2] file = kexec-tools_1%%3a2.0.6-0ubuntu2.2_amd64.deb md5 = fb0a3d4ec4528e33d9df31e53154ca40 -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[keystone_1:2015.1.2-0ubuntu2~cloud0] -file = keystone_1%%3a2015.1.2-0ubuntu2~cloud0_all.deb -md5 = 79c151a36e3f0b061906ba136aa5aa08 -source = repo:trusty-updates-kilo +[keystone_1:2015.1.4-0ubuntu1] +file = keystone_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 007370ffc21d1f04dc5b50f0bae12027 +source = repo:trusty-updates-kilo/main/ -[kpartx_0.4.9-3ubuntu7.4] -file = kpartx_0.4.9-3ubuntu7.4_amd64.deb -md5 = 9f46a3aca05620c74af8043510e71677 -source = repo:trusty-updates +[keyutils_1.5.6-1] +file = keyutils_1.5.6-1_amd64.deb +md5 = a49da8cb9cc16bdaf1ef8b205bf99d2e +source = repo:trusty/main/ + +[kpartx_0.4.9-3ubuntu7.13] +file = kpartx_0.4.9-3ubuntu7.13_amd64.deb +md5 = be61034339f4d0b5c30b201075006827 +source = repo:trusty-updates/main/ [libaio1_0.3.109-4] file = libaio1_0.3.109-4_amd64.deb md5 = cd9da2f52a5d7713e5080c5ed6916a41 -source = repo:trusty +source = repo:trusty/main/ [libapache2-mod-wsgi_3.4-4ubuntu2.1.14.04.2] file = libapache2-mod-wsgi_3.4-4ubuntu2.1.14.04.2_amd64.deb md5 = 2fd6d1f0e409388c117caa7178a0f924 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libapr1_1.5.0-1] file = libapr1_1.5.0-1_amd64.deb md5 = 710311d20d36259cb9beb6473e252c9a -source = repo:trusty +source = repo:trusty/main/ [libaprutil1-dbd-sqlite3_1.5.3-1] file = libaprutil1-dbd-sqlite3_1.5.3-1_amd64.deb md5 = f9d34d338d857020a9f329fdb37692ca -source = repo:trusty +source = repo:trusty/main/ [libaprutil1-ldap_1.5.3-1] file = libaprutil1-ldap_1.5.3-1_amd64.deb md5 = 78087b008a7705b2abc8800cabfacf37 -source = repo:trusty +source = repo:trusty/main/ [libaprutil1_1.5.3-1] file = libaprutil1_1.5.3-1_amd64.deb md5 = 91d3810e9d5f5012b36e6ab06037c532 -source = repo:trusty - -[libasan0_4.8.4-2ubuntu1~14.04] -file = libasan0_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 5b2df53671e849a1f9d3fe6356818165 -source = repo:trusty-updates +source = repo:trusty/main/ [libasound2-data_1.0.27.2-3ubuntu7] file = libasound2-data_1.0.27.2-3ubuntu7_all.deb md5 = 1b78d6d03ed4303e843ba2c5bae3bc53 -source = repo:trusty +source = repo:trusty/main/ [libasound2_1.0.27.2-3ubuntu7] file = libasound2_1.0.27.2-3ubuntu7_amd64.deb md5 = 68d7619e0a70770c5feef628f8296409 -source = repo:trusty +source = repo:trusty/main/ [libasyncns0_0.8-4ubuntu2] file = libasyncns0_0.8-4ubuntu2_amd64.deb md5 = bf233bc958e37dab60c0f1ab7f8c6bf0 -source = repo:trusty - -[libatomic1_4.8.4-2ubuntu1~14.04] -file = libatomic1_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 8a6c26c437b43c85333e456e06741ae7 -source = repo:trusty-updates +source = repo:trusty/main/ -[libaugeas0_1.2.0-0ubuntu1.1] -file = libaugeas0_1.2.0-0ubuntu1.1_amd64.deb -md5 = bed4213162bca8af578fb8b9b1f34c9f -source = repo:trusty-updates +[libaugeas0_1.2.0-0ubuntu1.2] +file = libaugeas0_1.2.0-0ubuntu1.2_amd64.deb +md5 = e6d726b1b212fcbd6c82247c1c92e8bc +source = repo:trusty-updates/main/ -[libavahi-client3_0.6.31-4ubuntu1] -file = libavahi-client3_0.6.31-4ubuntu1_amd64.deb -md5 = eec45ae98569b6479800e8b00739abb4 -source = repo:trusty +[libavahi-client3_0.6.31-4ubuntu1.1] +file = libavahi-client3_0.6.31-4ubuntu1.1_amd64.deb +md5 = a768c3a502a204fca430f98fab12d676 +source = repo:trusty-updates/main/ -[libavahi-common-data_0.6.31-4ubuntu1] -file = libavahi-common-data_0.6.31-4ubuntu1_amd64.deb -md5 = a1b4378b37be0edac4eb8f4b3bd12ec6 -source = repo:trusty +[libavahi-common-data_0.6.31-4ubuntu1.1] +file = libavahi-common-data_0.6.31-4ubuntu1.1_amd64.deb +md5 = 3878bcc211212dfe7158765344638d0f +source = repo:trusty-updates/main/ -[libavahi-common3_0.6.31-4ubuntu1] -file = libavahi-common3_0.6.31-4ubuntu1_amd64.deb -md5 = d63a809ea7ad51739547232994429cbb -source = repo:trusty +[libavahi-common3_0.6.31-4ubuntu1.1] +file = libavahi-common3_0.6.31-4ubuntu1.1_amd64.deb +md5 = ddf978df5cbc75ad174cd66db0d90846 +source = repo:trusty-updates/main/ [libblas3_1.2.20110419-7] file = libblas3_1.2.20110419-7_amd64.deb md5 = 3dc4c7e9af05c17cd1539b3415d870b8 -source = repo:trusty +source = repo:trusty/main/ [libbluetooth3_4.101-0ubuntu13.1] file = libbluetooth3_4.101-0ubuntu13.1_amd64.deb md5 = 0577a4e8b377f3751b018494096df9e4 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-chrono1.54.0_1.54.0-4ubuntu3.1] file = libboost-chrono1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 6afd51c2ce1c023fc2df50e2e70b07ed -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-dev_1.54.0.1ubuntu1] file = libboost-dev_1.54.0.1ubuntu1_amd64.deb md5 = baf6382cbbb1c5939b0a4655491c0db7 -source = repo:trusty +source = repo:trusty/main/ [libboost-filesystem1.54.0_1.54.0-4ubuntu3.1] file = libboost-filesystem1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = d4c687c97e90c678a7319fafba6081c8 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-program-options1.54.0_1.54.0-4ubuntu3.1] file = libboost-program-options1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 0c4fdd70ec7b36c5ddce304565a2dd02 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-python1.54.0_1.54.0-4ubuntu3.1] file = libboost-python1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = f8383cd7711ea48eea73763043f00f19 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-regex1.54.0_1.54.0-4ubuntu3.1] file = libboost-regex1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 4351519527cbfc93d2461cdd1c528ab2 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-system1.54.0_1.54.0-4ubuntu3.1] file = libboost-system1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 2a5872be9fcc3cc0a51d9ec0d42c41a7 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost-thread1.54.0_1.54.0-4ubuntu3.1] file = libboost-thread1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 2e7b4afdd0d85037864a2c3e3ef19999 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libboost1.54-dev_1.54.0-4ubuntu3.1] file = libboost1.54-dev_1.54.0-4ubuntu3.1_amd64.deb md5 = 8ccf0eb7b383ab5e3742861c5bf082fc -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libbrlapi0.6_5.0-2ubuntu2] file = libbrlapi0.6_5.0-2ubuntu2_amd64.deb md5 = d0072983318e559dc57fea88c494ed33 -source = repo:trusty - -[libc-dev-bin_2.19-0ubuntu6.6] -file = libc-dev-bin_2.19-0ubuntu6.6_amd64.deb -md5 = 9cdab0e5888b421dc89a7a94331b04fe -source = repo:trusty-updates - -[libc6-dev_2.19-0ubuntu6.6] -file = libc6-dev_2.19-0ubuntu6.6_amd64.deb -md5 = cc13115c3843d4e27b43796b94d1aa6e -source = repo:trusty-updates - -[libc6_2.19-0ubuntu6.6] -file = libc6_2.19-0ubuntu6.6_amd64.deb -md5 = f57ca4c76bdf2af3117e51d63eb81004 -source = repo:trusty-updates +source = repo:trusty/main/ [libcaca0_0.99.beta18-1ubuntu5] file = libcaca0_0.99.beta18-1ubuntu5_amd64.deb md5 = 2532fc55507b526751257c826e6b1b43 -source = repo:trusty - -[libcloog-isl4_0.18.2-1] -file = libcloog-isl4_0.18.2-1_amd64.deb -md5 = da71de63b0e24eb02afb817c0b285d6a -source = repo:trusty +source = repo:trusty/main/ [libcommons-codec-java_1.9-1] file = libcommons-codec-java_1.9-1_all.deb md5 = a863c457f1bf27251f574c9827240a54 -source = repo:trusty +source = repo:trusty/main/ [libcommons-daemon-java_1.0.15-5ubuntu2] file = libcommons-daemon-java_1.0.15-5ubuntu2_all.deb md5 = 5b83da9823ecd4266c11c637b7708e21 -source = repo:trusty +source = repo:trusty/universe/ [libcrypto++9_5.6.1-6+deb8u1build0.14.04.1] file = libcrypto++9_5.6.1-6+deb8u1build0.14.04.1_amd64.deb md5 = b5c65db1de0035c34ed1f140c40d79bf -source = repo:trusty-updates +source = repo:trusty-updates/universe/ -[libcups2_1.7.2-0ubuntu1.6] -file = libcups2_1.7.2-0ubuntu1.6_amd64.deb -md5 = 51d3fa9f75c28c34142717fa2dc3530c -source = repo:trusty-updates +[libcups2_1.7.2-0ubuntu1.7] +file = libcups2_1.7.2-0ubuntu1.7_amd64.deb +md5 = 44573174451bfc3da06be711c65e6de9 +source = repo:trusty-updates/main/ [libdbd-mysql-perl_4.025-1] file = libdbd-mysql-perl_4.025-1_amd64.deb md5 = 2409373cd5f8fb702e6c636c28eb5e2e -source = repo:trusty +source = repo:trusty/main/ [libdbi-perl_1.630-1] file = libdbi-perl_1.630-1_amd64.deb md5 = 53c59ad9793bbd09d9c8dedcdecaba1c -source = repo:trusty +source = repo:trusty/main/ -[libdrm-intel1_2.4.60-2~ubuntu14.04.1] -file = libdrm-intel1_2.4.60-2~ubuntu14.04.1_amd64.deb -md5 = 00284828f6871d183710fe513fe8bc55 -source = repo:trusty-updates +[libdrm-intel1_2.4.67-1ubuntu0.14.04.1] +file = libdrm-intel1_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = cccdf9969c69298ce04728e589c8ff80 +source = repo:trusty-updates/main/ -[libdrm-nouveau2_2.4.60-2~ubuntu14.04.1] -file = libdrm-nouveau2_2.4.60-2~ubuntu14.04.1_amd64.deb -md5 = 6dcb85e4bf24a270b8b759d22f231ca5 -source = repo:trusty-updates +[libdrm-nouveau2_2.4.67-1ubuntu0.14.04.1] +file = libdrm-nouveau2_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = 34284472aa48294499654fffc5b21d8d +source = repo:trusty-updates/main/ -[libdrm-radeon1_2.4.60-2~ubuntu14.04.1] -file = libdrm-radeon1_2.4.60-2~ubuntu14.04.1_amd64.deb -md5 = 73849f7b95aa82fd268d89474d75e35d -source = repo:trusty-updates +[libdrm-radeon1_2.4.67-1ubuntu0.14.04.1] +file = libdrm-radeon1_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = c0665182f97b69f5dfa973d87c61551b +source = repo:trusty-updates/main/ [libdw1_0.158-0ubuntu5.2] file = libdw1_0.158-0ubuntu5.2_amd64.deb md5 = 13106fc64315d54553789cd857369557 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libelf1_0.158-0ubuntu5.2] file = libelf1_0.158-0ubuntu5.2_amd64.deb md5 = 7c622ac0bdb90b547f3cd18c8e7369b0 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libevent-2.0-5_2.0.21-stable-1ubuntu1.14.04.1] file = libevent-2.0-5_2.0.21-stable-1ubuntu1.14.04.1_amd64.deb md5 = 66bae54dc127761b5d044d20a49c84c4 -source = repo:trusty-updates - -[libfakeroot_1.20-3ubuntu2] -file = libfakeroot_1.20-3ubuntu2_amd64.deb -md5 = 856c7401d7d5a63ea231f706c18d9261 -source = repo:trusty +source = repo:trusty-updates/main/ [libfdt1_1.4.0+dfsg-1] file = libfdt1_1.4.0+dfsg-1_amd64.deb md5 = 5dd80e05348eec241f62ff8dd7d2e8f2 -source = repo:trusty +source = repo:trusty/main/ [libfile-copy-recursive-perl_0.38-1] file = libfile-copy-recursive-perl_0.38-1_all.deb @@ -639,262 +581,242 @@ source = repo:trusty/main/ [libflac8_1.3.0-2ubuntu0.14.04.1] file = libflac8_1.3.0-2ubuntu0.14.04.1_amd64.deb md5 = bbd48c917a12d425f0e14873575bc64c -source = repo:trusty-updates - -[libfontconfig1_2.11.0-0ubuntu4.1] -file = libfontconfig1_2.11.0-0ubuntu4.1_amd64.deb -md5 = 14def8ab4304859c6aa3d371c604cc3d -source = repo:trusty-updates - -[libgcc-4.8-dev_4.8.4-2ubuntu1~14.04] -file = libgcc-4.8-dev_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 750675946c8c27520c089c5107c10f2e -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[libgd3_2.1.0-3] -file = libgd3_2.1.0-3_amd64.deb -md5 = d9af97027e33e6f1aa29ed2e4ed0a52e -source = repo:trusty/main/ +[libfontconfig1_2.11.0-0ubuntu4.2] +file = libfontconfig1_2.11.0-0ubuntu4.2_amd64.deb +md5 = 1ca4767d44771ef7e9e5b29c27738f69 +source = repo:trusty-updates/main/ -[libgfortran3_4.8.4-2ubuntu1~14.04] -file = libgfortran3_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = f6f64296b26d38c70df45eebe341289e -source = repo:trusty-updates +[libgd3_2.1.0-3ubuntu0.3] +file = libgd3_2.1.0-3ubuntu0.3_amd64.deb +md5 = 82f90ac540cd2e9642f2af81c6f4ea32 +source = repo:trusty-updates/main/ -[libgl1-mesa-dri_10.1.3-0ubuntu0.5] -file = libgl1-mesa-dri_10.1.3-0ubuntu0.5_amd64.deb -md5 = 1bb10d428be5d287c1c35568fb290313 -source = repo:trusty-updates +[libgfortran3_4.8.4-2ubuntu1~14.04.3] +file = libgfortran3_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 286bf45a6ee1fa4e680d11e9d397335a +source = repo:trusty-updates/main/ -[libgl1-mesa-glx_10.1.3-0ubuntu0.5] -file = libgl1-mesa-glx_10.1.3-0ubuntu0.5_amd64.deb -md5 = 04b60d3fefb1080fa72b004426ca156c -source = repo:trusty-updates +[libgl1-mesa-dri_10.1.3-0ubuntu0.6] +file = libgl1-mesa-dri_10.1.3-0ubuntu0.6_amd64.deb +md5 = f7dbf4c1e51262b970f023a3e5346c90 +source = repo:trusty-updates/main/ -[libglapi-mesa_10.1.3-0ubuntu0.5] -file = libglapi-mesa_10.1.3-0ubuntu0.5_amd64.deb -md5 = eadee7b094970f64d7b3be4efb1cb0b3 -source = repo:trusty-updates +[libgl1-mesa-glx_10.1.3-0ubuntu0.6] +file = libgl1-mesa-glx_10.1.3-0ubuntu0.6_amd64.deb +md5 = 47440d679d91118f52b692795d08bc33 +source = repo:trusty-updates/main/ -[libgomp1_4.8.4-2ubuntu1~14.04] -file = libgomp1_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 0aafd999af2178536eb55577c5781d95 -source = repo:trusty-updates +[libglapi-mesa_10.1.3-0ubuntu0.6] +file = libglapi-mesa_10.1.3-0ubuntu0.6_amd64.deb +md5 = 036734591b144bca4a1bf0191aa2e837 +source = repo:trusty-updates/main/ [libgoogle-perftools4_2.2.1-0.2~cloud0] file = libgoogle-perftools4_2.2.1-0.2~cloud0_amd64.deb md5 = 7545c5afc0c61b997882810a7f0ad9e9 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [libgssglue1_0.4-2ubuntu1] file = libgssglue1_0.4-2ubuntu1_amd64.deb md5 = 08250dff6de699fceff270123f609b49 -source = repo:trusty +source = repo:trusty/main/ [libhttpcore-java_4.3.2-2] file = libhttpcore-java_4.3.2-2_all.deb md5 = 1af4e58d152e526215d3851f64477ed8 -source = repo:trusty +source = repo:trusty/universe/ [libicu52_52.1-3ubuntu0.4] file = libicu52_52.1-3ubuntu0.4_amd64.deb md5 = ed4da162328dc75beb75e38ca291c959 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libipset3_6.20.1-1] file = libipset3_6.20.1-1_amd64.deb md5 = 4aac4a69aea8e9939ccfbb89dfbd4a15 -source = repo:trusty - -[libisl10_0.12.2-1] -file = libisl10_0.12.2-1_amd64.deb -md5 = b9756a5cce1ecd2d56652779d9e3b757 -source = repo:trusty - -[libitm1_4.8.4-2ubuntu1~14.04] -file = libitm1_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 67211089609f24430fee9ef632429e9d -source = repo:trusty-updates +source = repo:trusty/universe/ [libjbig0_2.0-2ubuntu4.1] file = libjbig0_2.0-2ubuntu4.1_amd64.deb md5 = 8be949a9bb46ade19b29e72ff4329a0a -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libjemalloc1_3.5.1-2] file = libjemalloc1_3.5.1-2_amd64.deb md5 = 00605dfc92f2fe7d961e543704cfb7c4 -source = repo:trusty +source = repo:trusty/universe/ [libjline-java_1.0-2] file = libjline-java_1.0-2_all.deb md5 = f4a54be4875239c80f4411f9cc45c0fd -source = repo:trusty +source = repo:trusty/main/ [libjna-java_3.2.7-4] file = libjna-java_3.2.7-4_amd64.deb md5 = 0afee0687c7e4798adfdb448fa13948f -source = repo:trusty +source = repo:trusty/universe/ [libjpeg-turbo8_1.3.0-0ubuntu2] file = libjpeg-turbo8_1.3.0-0ubuntu2_amd64.deb md5 = 9b8b32831e8332714737af0342f57b28 -source = repo:trusty +source = repo:trusty/main/ [libjpeg8_8c-2ubuntu8] file = libjpeg8_8c-2ubuntu8_amd64.deb md5 = e0f16286dd787b951ffa953987fdf6a7 -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery-hotkeys_0~20130707+git2d51e3a9+dfsg-2ubuntu1] file = libjs-jquery-hotkeys_0~20130707+git2d51e3a9+dfsg-2ubuntu1_all.deb md5 = 1dc73271d48aa240ed7ccb4cb7c2a96d -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery-isonscreen_1.2.0-1] file = libjs-jquery-isonscreen_1.2.0-1_all.deb md5 = d9eab2c09fc65416b66a70a3e9f23b4e -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery-metadata_8-2] file = libjs-jquery-metadata_8-2_all.deb md5 = f577e88c99f650547730efe2091de99a -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery-tablesorter_8-2] file = libjs-jquery-tablesorter_8-2_all.deb md5 = 51c79ab0847130decc052869cb9d25bb -source = repo:trusty +source = repo:trusty/main/ [libjs-jquery_1.7.2+dfsg-2ubuntu1] file = libjs-jquery_1.7.2+dfsg-2ubuntu1_all.deb md5 = 08cb6ee293e5570df48cbff3b1316cb5 -source = repo:trusty +source = repo:trusty/main/ [libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1.1] file = libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1.1_all.deb md5 = e879f3796e2e62c43f79bdfab3ecdbbd -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libjs-underscore_1.4.4-2ubuntu1] file = libjs-underscore_1.4.4-2ubuntu1_all.deb md5 = 305ad423ee8697a945c3610cf10a6bdf -source = repo:trusty +source = repo:trusty/main/ [liblapack3_3.5.0-2ubuntu1] file = liblapack3_3.5.0-2ubuntu1_amd64.deb md5 = 8cd3e8d2924872557e686a295436c19f -source = repo:trusty +source = repo:trusty/main/ -[liblcms2-2_2.5-0ubuntu4] -file = liblcms2-2_2.5-0ubuntu4_amd64.deb -md5 = 68d64d3ca6809ec5061408eb951547ab -source = repo:trusty +[liblcms2-2_2.5-0ubuntu4.1] +file = liblcms2-2_2.5-0ubuntu4.1_amd64.deb +md5 = 90a2cbf106072d361749c2750eea55b2 +source = repo:trusty-updates/main/ [libllvm3.4_1:3.4-1ubuntu3] file = libllvm3.4_1%%3a3.4-1ubuntu3_amd64.deb md5 = ce34c38ebc9452526f3710ad79456b2f -source = repo:trusty +source = repo:trusty/main/ [liblog4cplus-1.0-4_1.0.4-1ubuntu1] file = liblog4cplus-1.0-4_1.0.4-1ubuntu1_amd64.deb md5 = 9a93f6adb918003efcf59f410adeea07 -source = repo:trusty +source = repo:trusty/universe/ [liblog4j1.2-java_1.2.17-4ubuntu3] file = liblog4j1.2-java_1.2.17-4ubuntu3_all.deb md5 = e42a1c68f176e5b4b12b850afae2ec8b -source = repo:trusty +source = repo:trusty/main/ [libltdl7_2.4.2-1.7ubuntu1] file = libltdl7_2.4.2-1.7ubuntu1_amd64.deb md5 = ddeea7a0b4082abd4f746f46c8ccb48e -source = repo:trusty +source = repo:trusty/main/ [liblttng-ust-ctl2_2.5.1-1ubuntu2~cloud0] file = liblttng-ust-ctl2_2.5.1-1ubuntu2~cloud0_amd64.deb md5 = 9a586de523833062990f57e3530c7792 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [liblttng-ust0_2.5.1-1ubuntu2~cloud0] file = liblttng-ust0_2.5.1-1ubuntu2~cloud0_amd64.deb md5 = f8055cdf19974a47200ab8dd7ad197e5 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [libmnl0_1.0.3-3ubuntu1] file = libmnl0_1.0.3-3ubuntu1_amd64.deb md5 = 2949d1dd95caec6257bc70095e1d37cc -source = repo:trusty - -[libmpc3_1.0.1-1ubuntu1] -file = libmpc3_1.0.1-1ubuntu1_amd64.deb -md5 = c5749c5428040f492bc9d00b0101b8a8 -source = repo:trusty - -[libmpfr4_3.1.2-1] -file = libmpfr4_3.1.2-1_amd64.deb -md5 = 3ff03e231bf643436f087da42faaad6d -source = repo:trusty +source = repo:trusty/main/ -[libmysqlclient18_5.5.46-0ubuntu0.14.04.2] -file = libmysqlclient18_5.5.46-0ubuntu0.14.04.2_amd64.deb -md5 = e7a425897ef41a86294c1ba05823166d -source = repo:trusty-updates +[libmysqlclient18_5.5.50-0ubuntu0.14.04.1] +file = libmysqlclient18_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 443401d387c892efea4eabe988c2ac4a +source = repo:trusty-updates/main/ [libnetcf1_1:0.2.3-4ubuntu1] file = libnetcf1_1%%3a0.2.3-4ubuntu1_amd64.deb md5 = 8be8b7c76a08cdb30057e309b733b5b6 -source = repo:trusty +source = repo:trusty/main/ [libnetfilter-conntrack3_1.0.4-1] file = libnetfilter-conntrack3_1.0.4-1_amd64.deb md5 = fa82697b8119c7a2cbc0c7d3d1f64dc8 -source = repo:trusty +source = repo:trusty/main/ [libnetty-java_1:3.2.6.Final-2] file = libnetty-java_1%%3a3.2.6.Final-2_all.deb md5 = 8e6999001bcaf1c019d7083ff7d843f1 -source = repo:trusty +source = repo:trusty/universe/ [libnfsidmap2_0.25-5] file = libnfsidmap2_0.25-5_amd64.deb md5 = 5e06543f26481fa549a1e017eec4ef36 -source = repo:trusty +source = repo:trusty/main/ -[libnl-route-3-200_3.2.21-1] -file = libnl-route-3-200_3.2.21-1_amd64.deb -md5 = 61e174d65c7adbe5bc33d4ea850725f8 -source = repo:trusty +[libnl-3-200_3.2.21-1ubuntu3] +file = libnl-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = e80a3f4c5b08821194c2cac3a00bfdf3 +source = repo:trusty-updates/main/ -[libnspr4_2:4.10.10-0ubuntu0.14.04.1] -file = libnspr4_2%%3a4.10.10-0ubuntu0.14.04.1_amd64.deb -md5 = bfb262e77ef709dfaa5ae037630e49ff -source = repo:trusty-updates +[libnl-genl-3-200_3.2.21-1ubuntu3] +file = libnl-genl-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = 9697116877182a3420e7c70099f81277 +source = repo:trusty-updates/main/ -[libnss3-1d_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3-1d_2%%3a3.19.2.1-0ubuntu0.14.04.1_amd64.deb -md5 = f69f624713a7d70891aaf334df684714 -source = repo:trusty-updates +[libnl-route-3-200_3.2.21-1ubuntu3] +file = libnl-route-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = 6beae5555b1dd067872dab32aa624154 +source = repo:trusty-updates/main/ -[libnss3-nssdb_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3-nssdb_2%%3a3.19.2.1-0ubuntu0.14.04.1_all.deb -md5 = 24f0c1f9fca8ea633cf64e622f024012 -source = repo:trusty-updates +[libnspr4_2:4.12-0ubuntu0.14.04.1] +file = libnspr4_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = cff22f4863f0e8356900e6b26872a63c +source = repo:trusty-updates/main/ -[libnss3_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3_2%%3a3.19.2.1-0ubuntu0.14.04.1_amd64.deb -md5 = 2b2dca07befc97483bbd60ada68cd9cd -source = repo:trusty-updates +[libnss3-1d_2:3.23-0ubuntu0.14.04.1] +file = libnss3-1d_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 96170b238bc6a8ccc48418d28dce8285 +source = repo:trusty-updates/main/ + +[libnss3-nssdb_2:3.23-0ubuntu0.14.04.1] +file = libnss3-nssdb_2%%3a3.23-0ubuntu0.14.04.1_all.deb +md5 = 7b4064d8bb5f8ca3f0aec63699666564 +source = repo:trusty-updates/main/ + +[libnss3_2:3.23-0ubuntu0.14.04.1] +file = libnss3_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 915f9fd9b0b0d18bbfe66f47774daec8 +source = repo:trusty-updates/main/ [libodbc1_2.2.14p2-5ubuntu5] file = libodbc1_2.2.14p2-5ubuntu5_amd64.deb md5 = 433e8b9f8a79a80052db69ed4f02fe53 -source = repo:trusty +source = repo:trusty/main/ [libogg0_1.3.1-1ubuntu1] file = libogg0_1.3.1-1ubuntu1_amd64.deb md5 = a6411133fd6d72d08bbcb265a7f31103 -source = repo:trusty +source = repo:trusty/main/ [libopts25_1:5.18-2ubuntu2] file = libopts25_1%%3a5.18-2ubuntu2_amd64.deb @@ -904,157 +826,157 @@ source = repo:trusty [libpaper-utils_1.1.24+nmu2ubuntu3] file = libpaper-utils_1.1.24+nmu2ubuntu3_amd64.deb md5 = c1785586284f17aff8249d186e5c6984 -source = repo:trusty +source = repo:trusty/main/ [libpaper1_1.1.24+nmu2ubuntu3] file = libpaper1_1.1.24+nmu2ubuntu3_amd64.deb md5 = 531fe052e528e0e85be967b9384701b8 -source = repo:trusty +source = repo:trusty/main/ [libpciaccess0_0.13.2-1] file = libpciaccess0_0.13.2-1_amd64.deb md5 = 79fc58d377c1501d3dab6bd75bc71911 -source = repo:trusty +source = repo:trusty/main/ -[libpcrecpp0_1:8.31-2ubuntu2.1] -file = libpcrecpp0_1%%3a8.31-2ubuntu2.1_amd64.deb -md5 = c84471d56a86d876578ed2698b13bb8f -source = repo:trusty-updates +[libpcrecpp0_1:8.31-2ubuntu2.3] +file = libpcrecpp0_1%%3a8.31-2ubuntu2.3_amd64.deb +md5 = 35bf58488d95e43bdec1ca452f2117bc +source = repo:trusty-updates/main/ [libpcsclite1_1.8.10-1ubuntu1] file = libpcsclite1_1.8.10-1ubuntu1_amd64.deb md5 = adece73e911ca3dbdd3925294c75afee -source = repo:trusty +source = repo:trusty/main/ -[libperl5.18_5.18.2-2ubuntu1] -file = libperl5.18_5.18.2-2ubuntu1_amd64.deb -md5 = fcee47bbff6a1f501cab58f1d276928a -source = repo:trusty +[libperl5.18_5.18.2-2ubuntu1.1] +file = libperl5.18_5.18.2-2ubuntu1.1_amd64.deb +md5 = 1bbe27c70dbf9d4bce15d57cc317ca3f +source = repo:trusty-updates/main/ -[libpixman-1-0_0.30.2-2ubuntu1] -file = libpixman-1-0_0.30.2-2ubuntu1_amd64.deb -md5 = 60e24d4dc3f929420ae1d4a993a68da0 -source = repo:trusty +[libpixman-1-0_0.30.2-2ubuntu1.1] +file = libpixman-1-0_0.30.2-2ubuntu1.1_amd64.deb +md5 = 2d12f5e47dad9b5f61299706413976da +source = repo:trusty-updates/main/ -[libpolkit-agent-1-0_0.105-4ubuntu2.14.04.1] -file = libpolkit-agent-1-0_0.105-4ubuntu2.14.04.1_amd64.deb -md5 = 0ff795e1cca78fd81db153d4e36ef8ca -source = repo:trusty-updates +[libpolkit-agent-1-0_0.105-4ubuntu3.14.04.1] +file = libpolkit-agent-1-0_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = ed544800dc75cef2ea3ecb112fb99b5a +source = repo:trusty-updates/main/ -[libpolkit-backend-1-0_0.105-4ubuntu2.14.04.1] -file = libpolkit-backend-1-0_0.105-4ubuntu2.14.04.1_amd64.deb -md5 = e7b59ca714bcf04076ec31a8f1bc3bcc -source = repo:trusty-updates +[libpolkit-backend-1-0_0.105-4ubuntu3.14.04.1] +file = libpolkit-backend-1-0_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = 5a8538404755408b5733ce1715e1ab9f +source = repo:trusty-updates/main/ -[libpq5_9.3.10-0ubuntu0.14.04] -file = libpq5_9.3.10-0ubuntu0.14.04_amd64.deb -md5 = 6626ddab496e79726f7575b890424072 -source = repo:trusty-updates +[libpq5_9.3.14-0ubuntu0.14.04] +file = libpq5_9.3.14-0ubuntu0.14.04_amd64.deb +md5 = 4b35bf29855eda167e866dbcc34f738a +source = repo:trusty-updates/main/ [libprotobuf8_2.5.0-9ubuntu1] file = libprotobuf8_2.5.0-9ubuntu1_amd64.deb md5 = e0ef0861f40071ed6f6606ac3b7c3742 -source = repo:trusty +source = repo:trusty/main/ [libpulse0_1:4.0-0ubuntu11.1] file = libpulse0_1%%3a4.0-0ubuntu11.1_amd64.deb md5 = 84213503252a6aec962b12cd170af23f -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[libpython2.7-minimal_2.7.6-8ubuntu0.2] +file = libpython2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb +md5 = 48d76dcd9239d2970d3866d6082a48c6 +source = repo:trusty-updates/main/ + +[libpython2.7-stdlib_2.7.6-8ubuntu0.2] +file = libpython2.7-stdlib_2.7.6-8ubuntu0.2_amd64.deb +md5 = accc8dfb0ff3e0440e66f4c4c9589854 +source = repo:trusty-updates/main/ [libpython2.7_2.7.6-8ubuntu0.2] file = libpython2.7_2.7.6-8ubuntu0.2_amd64.deb md5 = e52bac5d993bf5c8c60ef92b9e392603 -source = repo:trusty-updates - -[libquadmath0_4.8.4-2ubuntu1~14.04] -file = libquadmath0_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = c92513d87d98bad964756278c4e3adc1 -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[librados2_0.94.3-0ubuntu0.15.04.1~cloud0] -file = librados2_0.94.3-0ubuntu0.15.04.1~cloud0_amd64.deb -md5 = 804680157ef6c374de57681cd4049a85 -source = repo:trusty-updates-kilo +[librados2_0.94.7-0ubuntu0.15.04.1~cloud0] +file = librados2_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 9a7d7de2ea72c39077ff438250b44b00 +source = repo:trusty-updates-kilo/main/ -[librbd1_0.94.3-0ubuntu0.15.04.1~cloud0] -file = librbd1_0.94.3-0ubuntu0.15.04.1~cloud0_amd64.deb -md5 = 6ddbabd4e89ba3857a47ab6ac000bf78 -source = repo:trusty-updates-kilo +[librbd1_0.94.7-0ubuntu0.15.04.1~cloud0] +file = librbd1_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 65a30f244ce6f7df8f9de0afb134f54e +source = repo:trusty-updates-kilo/main/ [libsctp1_1.0.15+dfsg-1] file = libsctp1_1.0.15+dfsg-1_amd64.deb md5 = 6bc0748fae5badaa0fa7e7b22345b9c7 -source = repo:trusty +source = repo:trusty/main/ [libsdl1.2debian_1.2.15-8ubuntu1.1] file = libsdl1.2debian_1.2.15-8ubuntu1.1_amd64.deb md5 = 063b125221dda816ec3554eea53ce52e -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libseccomp2_2.1.1-1ubuntu1~vivid2~cloud0] file = libseccomp2_2.1.1-1ubuntu1~vivid2~cloud0_amd64.deb md5 = 2dde48b239a09c5b35da1d15ea0c0137 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [libsensors4_1:3.3.4-2ubuntu1] file = libsensors4_1%%3a3.3.4-2ubuntu1_amd64.deb md5 = 042d478dd8c2f8d47fe197b2bbf2e8a1 -source = repo:trusty +source = repo:trusty/main/ [libservlet2.5-java_6.0.39-1] file = libservlet2.5-java_6.0.39-1_all.deb md5 = 1487fcc2361e1ff68528e9a79c3bdb2c -source = repo:trusty +source = repo:trusty/universe/ [libsigsegv2_2.10-2] file = libsigsegv2_2.10-2_amd64.deb md5 = 02a1d6194bd62571a9dcbcad5071d8d9 -source = repo:trusty +source = repo:trusty/main/ [libslf4j-java_1.7.5-2] file = libslf4j-java_1.7.5-2_all.deb md5 = 3666d5d622c51ad306c47c1505fe0b75 -source = repo:trusty +source = repo:trusty/universe/ [libsmi2ldbl_0.4.8+dfsg2-8ubuntu2] file = libsmi2ldbl_0.4.8+dfsg2-8ubuntu2_amd64.deb md5 = 13e50b16c61aad665ee4db241a6cf908 -source = repo:trusty +source = repo:trusty/universe/ [libsnappy1_1.1.0-1ubuntu1] file = libsnappy1_1.1.0-1ubuntu1_amd64.deb md5 = 6e75ed3aa224013957954c6671bead67 -source = repo:trusty +source = repo:trusty/main/ -[libsndfile1_1.0.25-7ubuntu2] -file = libsndfile1_1.0.25-7ubuntu2_amd64.deb -md5 = 7d1069fef8f95bc27c2f12f0d8eb4b08 -source = repo:trusty +[libsndfile1_1.0.25-7ubuntu2.1] +file = libsndfile1_1.0.25-7ubuntu2.1_amd64.deb +md5 = a01199628faa5c1ec2b97c167c25c0e9 +source = repo:trusty-updates/main/ -[libsnmp-base_5.7.2~dfsg-8.1ubuntu3.1] -file = libsnmp-base_5.7.2~dfsg-8.1ubuntu3.1_all.deb -md5 = f48eeb8004db645287ad858b4a4b8cce -source = repo:trusty-updates +[libsnmp-base_5.7.2~dfsg-8.1ubuntu3.2] +file = libsnmp-base_5.7.2~dfsg-8.1ubuntu3.2_all.deb +md5 = 895d89dabe4d3cd8ad7fc7b7c730e627 +source = repo:trusty-updates/main/ -[libsnmp30_5.7.2~dfsg-8.1ubuntu3.1] -file = libsnmp30_5.7.2~dfsg-8.1ubuntu3.1_amd64.deb -md5 = 098a58e5e0bed8a5fa71f956e0fa3142 -source = repo:trusty-updates +[libsnmp30_5.7.2~dfsg-8.1ubuntu3.2] +file = libsnmp30_5.7.2~dfsg-8.1ubuntu3.2_amd64.deb +md5 = 57dc2070a946c4e33cf8fcfe251f9868 +source = repo:trusty-updates/main/ -[libspice-server1_0.12.4-0nocelt2ubuntu1.2] -file = libspice-server1_0.12.4-0nocelt2ubuntu1.2_amd64.deb -md5 = 1961ef69c7c497fad36eaaa5ced7ae7e -source = repo:trusty-updates +[libspice-server1_0.12.4-0nocelt2ubuntu1.3] +file = libspice-server1_0.12.4-0nocelt2ubuntu1.3_amd64.deb +md5 = 60095317b5d23d0b3c39e39969f4bf44 +source = repo:trusty-updates/main/ [libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1] file = libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1_amd64.deb md5 = 67303b5e19bf90c0538564669685483e -source = repo:trusty-updates - -[libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04] -file = libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 9e3dd7fc9327de0a6b06c4ec017aa8cb -source = repo:trusty-updates +source = repo:trusty-updates/universe/ [libt1-5_5.1.2-3.6ubuntu1] file = libt1-5_5.1.2-3.6ubuntu1_amd64.deb @@ -1064,82 +986,77 @@ source = repo:trusty/main/ [libtbb2_4.2~20130725-1.1ubuntu1] file = libtbb2_4.2~20130725-1.1ubuntu1_amd64.deb md5 = 5113cda4c289295e7ed4b83dfa0b91d1 -source = repo:trusty +source = repo:trusty/universe/ [libtcmalloc-minimal4_2.2.1-0.2~cloud0] file = libtcmalloc-minimal4_2.2.1-0.2~cloud0_amd64.deb md5 = ba30453ca5d05d701e1fa87591288683 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [libterm-readkey-perl_2.31-1] file = libterm-readkey-perl_2.31-1_amd64.deb md5 = c68d9e65673823e4d60d0029cc26ea89 -source = repo:trusty +source = repo:trusty/main/ -[libtiff5_4.0.3-7ubuntu0.3] -file = libtiff5_4.0.3-7ubuntu0.3_amd64.deb -md5 = 7a5958d7bea247a996fcf74c4282c309 -source = repo:trusty-updates +[libtiff5_4.0.3-7ubuntu0.4] +file = libtiff5_4.0.3-7ubuntu0.4_amd64.deb +md5 = 1c9177bf7f922d87d4af3a54b4a107b7 +source = repo:trusty-updates/main/ [libtirpc1_0.2.2-5ubuntu2] file = libtirpc1_0.2.2-5ubuntu2_amd64.deb md5 = acc1c8e0345c8c3e53ba94a59a4729d8 -source = repo:trusty - -[libtsan0_4.8.4-2ubuntu1~14.04] -file = libtsan0_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = 19083483a508ab09f6173a29d9984b4c -source = repo:trusty-updates +source = repo:trusty/main/ [libtxc-dxtn-s2tc0_0~git20131104-1.1] file = libtxc-dxtn-s2tc0_0~git20131104-1.1_amd64.deb md5 = 4aca9162717cd9eb1e42f531217801f9 -source = repo:trusty +source = repo:trusty/main/ [libunwind8_1.1-2.2ubuntu3] file = libunwind8_1.1-2.2ubuntu3_amd64.deb md5 = d568b4e19959271d3f8470ff28c223f1 -source = repo:trusty +source = repo:trusty/main/ [liburcu1_0.7.12-0ubuntu2] file = liburcu1_0.7.12-0ubuntu2_amd64.deb md5 = 1172db772c3640310d85518f92ce5aa6 -source = repo:trusty +source = repo:trusty/main/ [liburcu2_0.8.5-1ubuntu1~cloud0] file = liburcu2_0.8.5-1ubuntu1~cloud0_amd64.deb md5 = 3ec964114572bcb2af6d464dffc7248b -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [libusbredirparser1_0.6-2ubuntu1.1] file = libusbredirparser1_0.6-2ubuntu1.1_amd64.deb md5 = 60574ac64168133bd8a974d58b7e9c5e -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libv8-3.14.5_3.14.5.8-5ubuntu2] file = libv8-3.14.5_3.14.5.8-5ubuntu2_amd64.deb md5 = 3937ddaf045f8c5606b6c505bf0779f8 -source = repo:trusty +source = repo:trusty/universe/ -[libvirt-bin_1.2.12-0ubuntu14.2~cloud0] -file = libvirt-bin_1.2.12-0ubuntu14.2~cloud0_amd64.deb -md5 = afdacc68e2c07448acc1dfc422cb0e54 -source = repo:trusty-updates-kilo +[libvirt-bin_1.2.12-0ubuntu14.4~cloud1] +file = libvirt-bin_1.2.12-0ubuntu14.4~cloud1_amd64.deb +md5 = 632df942c515d6ae9e00ea0aad41e15d +source = repo:trusty-updates-kilo/main/ -[libvirt0_1.2.12-0ubuntu14.2~cloud0] -file = libvirt0_1.2.12-0ubuntu14.2~cloud0_amd64.deb -md5 = 7514fb024ae78128ada7b358a5cdd43e -source = repo:trusty-updates-kilo +[libvirt0_1.2.12-0ubuntu14.4~cloud1] +file = libvirt0_1.2.12-0ubuntu14.4~cloud1_amd64.deb +md5 = 85fcfada69239406f4ca73c2376ac6da +source = repo:trusty-updates-kilo/main/ [libvorbis0a_1.3.2-1.3ubuntu1] file = libvorbis0a_1.3.2-1.3ubuntu1_amd64.deb md5 = e89e05f389fdaa1b834803a08c9213a4 -source = repo:trusty +source = repo:trusty/main/ [libvorbisenc2_1.3.2-1.3ubuntu1] file = libvorbisenc2_1.3.2-1.3ubuntu1_amd64.deb md5 = fbdffecfc0a3f0dc45ec2480f54ea251 -source = repo:trusty +source = repo:trusty/main/ [libvpx1_1.3.0-2] file = libvpx1_1.3.0-2_amd64.deb @@ -1149,97 +1066,97 @@ source = repo:trusty/main/ [libwebp5_0.4.0-4] file = libwebp5_0.4.0-4_amd64.deb md5 = b0a2f2c663d75a1df58e7150de7fff22 -source = repo:trusty +source = repo:trusty/main/ [libwebpmux1_0.4.0-4] file = libwebpmux1_0.4.0-4_amd64.deb md5 = a7d0ef2e8563058d75935225afcddcd4 -source = repo:trusty +source = repo:trusty/main/ [libx11-xcb1_2:1.6.2-1ubuntu2] file = libx11-xcb1_2%%3a1.6.2-1ubuntu2_amd64.deb md5 = 883e22f0ff03018c9fad15b5c10a2fca -source = repo:trusty +source = repo:trusty/main/ [libx86-1_1.1+ds1-10] file = libx86-1_1.1+ds1-10_amd64.deb md5 = d166a4d98f6ce17e6f17787bfc8a6ef5 -source = repo:trusty +source = repo:trusty/main/ [libxcb-dri2-0_1.10-2ubuntu1] file = libxcb-dri2-0_1.10-2ubuntu1_amd64.deb md5 = 90169585d4c43e4a4da49ce3f2568384 -source = repo:trusty +source = repo:trusty/main/ [libxcb-dri3-0_1.10-2ubuntu1] file = libxcb-dri3-0_1.10-2ubuntu1_amd64.deb md5 = 310d42718a6d50f1be400e1fa774d86a -source = repo:trusty +source = repo:trusty/main/ [libxcb-glx0_1.10-2ubuntu1] file = libxcb-glx0_1.10-2ubuntu1_amd64.deb md5 = 632239048a95f7c2edd3225de98ed801 -source = repo:trusty +source = repo:trusty/main/ [libxcb-present0_1.10-2ubuntu1] file = libxcb-present0_1.10-2ubuntu1_amd64.deb md5 = e17e52f8953a544d1f0a56a156e6c7f5 -source = repo:trusty +source = repo:trusty/main/ [libxcb-sync1_1.10-2ubuntu1] file = libxcb-sync1_1.10-2ubuntu1_amd64.deb md5 = 6cdc1b75cfb4797da9d19add8646a70e -source = repo:trusty +source = repo:trusty/main/ [libxdamage1_1:1.1.4-1ubuntu1] file = libxdamage1_1%%3a1.1.4-1ubuntu1_amd64.deb md5 = c1e6ea0fc620fc3ce50ebbfee62e3f0c -source = repo:trusty +source = repo:trusty/main/ -[libxen-4.4_4.4.2-0ubuntu0.14.04.3] -file = libxen-4.4_4.4.2-0ubuntu0.14.04.3_amd64.deb -md5 = 77939f630ada2167bafa8390fbbe6414 -source = repo:trusty-updates +[libxen-4.4_4.4.2-0ubuntu0.14.04.6] +file = libxen-4.4_4.4.2-0ubuntu0.14.04.6_amd64.deb +md5 = 01902042887b57bb12591a64a45c9bd7 +source = repo:trusty-updates/main/ -[libxenstore3.0_4.4.2-0ubuntu0.14.04.3] -file = libxenstore3.0_4.4.2-0ubuntu0.14.04.3_amd64.deb -md5 = 3c41e88e249ec8d43e609c5ddd127084 -source = repo:trusty-updates +[libxenstore3.0_4.4.2-0ubuntu0.14.04.6] +file = libxenstore3.0_4.4.2-0ubuntu0.14.04.6_amd64.deb +md5 = 2dd53c140e4d4c58d57f25c82c3cc57a +source = repo:trusty-updates/main/ [libxerces2-java_2.11.0-7] file = libxerces2-java_2.11.0-7_all.deb md5 = fa8bcb033daef7c85f4636435ea2747b -source = repo:trusty +source = repo:trusty/main/ [libxfixes3_1:5.0.1-1ubuntu1.1] file = libxfixes3_1%%3a5.0.1-1ubuntu1.1_amd64.deb md5 = 9fda7ada36fbbe966cf30f474a6a4a40 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [libxml-commons-external-java_1.4.01-2build1] file = libxml-commons-external-java_1.4.01-2build1_all.deb md5 = a3ba72113c451b98099d582afa64112c -source = repo:trusty +source = repo:trusty/main/ [libxml-commons-resolver1.1-java_1.2-7build1] file = libxml-commons-resolver1.1-java_1.2-7build1_all.deb md5 = b90c2054a7e0fed8ee79b582952b310b -source = repo:trusty +source = repo:trusty/main/ -[libxml2-utils_2.9.1+dfsg1-3ubuntu4.5] -file = libxml2-utils_2.9.1+dfsg1-3ubuntu4.5_amd64.deb -md5 = 6148d8a0f2ea2c7bab616a04b1eb7a37 -source = repo:trusty-updates +[libxml2-utils_2.9.1+dfsg1-3ubuntu4.8] +file = libxml2-utils_2.9.1+dfsg1-3ubuntu4.8_amd64.deb +md5 = dda408befcc3b92a0bab8916eb799f23 +source = repo:trusty-updates/main/ [libxmlsec1-openssl_1.2.18-2ubuntu1] file = libxmlsec1-openssl_1.2.18-2ubuntu1_amd64.deb md5 = b389871df7c5c1bfab522ab1769a983c -source = repo:trusty +source = repo:trusty/universe/ [libxmlsec1_1.2.18-2ubuntu1] file = libxmlsec1_1.2.18-2ubuntu1_amd64.deb md5 = 86bd246c9f2ee4e8179b202fc4b12e47 -source = repo:trusty +source = repo:trusty/universe/ [libxpm4_1:3.5.10-1] file = libxpm4_1%%3a3.5.10-1_amd64.deb @@ -1249,241 +1166,281 @@ source = repo:trusty/main/ [libxshmfence1_1.1-2] file = libxshmfence1_1.1-2_amd64.deb md5 = 921fc248a972eb54e063759eaec9fe83 -source = repo:trusty +source = repo:trusty/main/ [libxslt1.1_1.1.28-2build1] file = libxslt1.1_1.1.28-2build1_amd64.deb md5 = 8193d46e498f445991c78e9da9b238a6 -source = repo:trusty +source = repo:trusty/main/ [libxxf86vm1_1:1.1.3-1] file = libxxf86vm1_1%%3a1.1.3-1_amd64.deb md5 = b61960ea6bd4f73ff903f63235b35c25 -source = repo:trusty +source = repo:trusty/main/ [libyajl2_2.0.4-4] file = libyajl2_2.0.4-4_amd64.deb md5 = d7241d878ea65cbed080196411ec92c2 -source = repo:trusty +source = repo:trusty/main/ [libzookeeper-java-doc_3.4.5+dfsg-1] file = libzookeeper-java-doc_3.4.5+dfsg-1_all.deb md5 = 0e425299487e2e2edf4d2adc491c20fa -source = repo:trusty +source = repo:trusty/universe/ [libzookeeper-java_3.4.5+dfsg-1] file = libzookeeper-java_3.4.5+dfsg-1_all.deb md5 = 2d2793872aa6faf93cce49dd85600b95 -source = repo:trusty +source = repo:trusty/universe/ -[linux-crashdump_3.13.0.68.74] -file = linux-crashdump_3.13.0.68.74_amd64.deb -md5 = 128f82df02b3c449cf77329922072dde -source = repo:trusty-updates +[libzookeeper-mt2_3.4.5+dfsg-1] +file = libzookeeper-mt2_3.4.5+dfsg-1_amd64.deb +md5 = 45430fcb0a6ef134390339c3d577e700 +source = repo:trusty/universe/ + +[linux-crashdump_3.13.0.95.103] +file = linux-crashdump_3.13.0.95.103_amd64.deb +md5 = 3fbffb3b99a206543bd57e41cc3750d4 +source = repo:trusty-updates/main/ [linux-headers-3.13.0-35-generic_3.13.0-35.62] file = linux-headers-3.13.0-35-generic_3.13.0-35.62_amd64.deb md5 = fbc0e49817795b68926500cf87b4a369 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [linux-headers-3.13.0-35_3.13.0-35.62] file = linux-headers-3.13.0-35_3.13.0-35.62_all.deb md5 = 81c5dcb216425ffd622d0d4f252c911b -source = repo:trusty-updates +source = repo:trusty-updates/main/ [linux-headers-3.13.0-40-generic_3.13.0-40.69] file = linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = 5746e3f726d3828c48de16e4b37c7b75 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [linux-headers-3.13.0-40_3.13.0-40.69] file = linux-headers-3.13.0-40_3.13.0-40.69_all.deb md5 = 2a60945600c4429f426dd7cadc6c73df -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-83-generic_3.13.0-83.127] +file = linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 5df332a60e776a0d0e79e54bdb291707 +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-83_3.13.0-83.127] +file = linux-headers-3.13.0-83_3.13.0-83.127_all.deb +md5 = 50bf914d576b43b2e28c1862c3638c82 +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-85-generic_3.13.0-85.129] +file = linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = ea4e36e8e787115b19bddb3c74bac3cb +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-85_3.13.0-85.129] +file = linux-headers-3.13.0-85_3.13.0-85.129_all.deb +md5 = 8153507a22c943d64055df2a8490dc7d +source = repo:trusty-updates/main/ [linux-image-3.13.0-34-generic_3.13.0-34.60] file = linux-image-3.13.0-34-generic_3.13.0-34.60_amd64.deb md5 = 860eee967a5f0b1e20d422839db84f7d -source = repo:trusty-updates +source = repo:trusty-updates/main/ [linux-image-3.13.0-35-generic_3.13.0-35.62] file = linux-image-3.13.0-35-generic_3.13.0-35.62_amd64.deb md5 = 54f3eeb6b0c20113554ae078a56baf09 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [linux-image-3.13.0-40-generic_3.13.0-40.69] file = linux-image-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = a6ba0601c1f8662cad6604dfd9d070b0 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[linux-image-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 1488cbc687bebc497f2112f93131a727 +source = repo:trusty-updates/main/ + +[linux-image-3.13.0-85-generic_3.13.0-85.129] +file = linux-image-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = fc7234f99aff2a0f0dfb1c3b1a44dacf +source = repo:trusty-updates/main/ [linux-image-extra-3.13.0-34-generic_3.13.0-34.60] file = linux-image-extra-3.13.0-34-generic_3.13.0-34.60_amd64.deb md5 = e4c9fce04b06f0cfafcd0c0d1a494e40 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [linux-image-extra-3.13.0-35-generic_3.13.0-35.62] file = linux-image-extra-3.13.0-35-generic_3.13.0-35.62_amd64.deb md5 = 6bafd670194512a012f70fbd9c67eb0a -source = repo:trusty-updates +source = repo:trusty-updates/main/ [linux-image-extra-3.13.0-40-generic_3.13.0-40.69] file = linux-image-extra-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = 3b38dc787fcf8b8a1ccd89e60077df58 -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[linux-libc-dev_3.13.0-68.111] -file = linux-libc-dev_3.13.0-68.111_amd64.deb -md5 = ac5595b89ffc06502e6ab57fa4db9aa1 -source = repo:trusty-updates +[linux-image-extra-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-extra-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 4832e8b6a6654b8d20ae53f279ff878d +source = repo:trusty-updates/main/ + +[linux-image-extra-3.13.0-85-generic_3.13.0-85.129] +file = linux-image-extra-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = 5e660aae162edc373ecdb8668ab3d0b8 +source = repo:trusty-updates/main/ [lksctp-tools_1.0.15+dfsg-1] file = lksctp-tools_1.0.15+dfsg-1_amd64.deb md5 = 39373482904f27eddebcef56b9bcf13f -source = repo:trusty - -[lxc-docker-1.6.2] -file = lxc-docker-1.6.2_1.6.2_amd64.deb -md5 = bb24274e604d7ed3ac70de296b594cd1 -source = repo:contrail-thirdparty - -[makedumpfile_1.5.5-2ubuntu1.4] -file = makedumpfile_1.5.5-2ubuntu1.4_amd64.deb -md5 = 3b948692e5771968565b1b937ac925d3 -source = repo:trusty-updates +source = repo:trusty/main/ -[manpages-dev_3.54-1ubuntu1] -file = manpages-dev_3.54-1ubuntu1_all.deb -md5 = 8b108211126e2798112fbd55292e5690 -source = repo:trusty +[makedumpfile_1.5.5-2ubuntu1.5] +file = makedumpfile_1.5.5-2ubuntu1.5_amd64.deb +md5 = 1d85845e5c616fa9119db30276e1316c +source = repo:trusty-updates/main/ [memcached_1.4.14-0ubuntu9] file = memcached_1.4.14-0ubuntu9_amd64.deb md5 = 29893483844957ac4c33097d0c0108a6 -source = repo:trusty +source = repo:trusty/main/ [mongodb-clients_1:2.4.9-1ubuntu2] file = mongodb-clients_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = dfabd631c87d7001cfefba7087a38458 -source = repo:trusty +source = repo:trusty/universe/ [mongodb-dev_1:2.4.9-1ubuntu2] file = mongodb-dev_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = 583139498d262d85ba7822479a3d549b -source = repo:trusty +source = repo:trusty/universe/ [mongodb-server_1:2.4.9-1ubuntu2] file = mongodb-server_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = ae7913b7d32766b9743d22a957f44c45 -source = repo:trusty +source = repo:trusty/universe/ [mongodb_1:2.4.9-1ubuntu2] file = mongodb_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = b8121909d295d51a26b53b082f71eb73 -source = repo:trusty +source = repo:trusty/universe/ [msr-tools_1.3-2] file = msr-tools_1.3-2_amd64.deb md5 = 5ffb50c3889cfccc901b940923d89e29 -source = repo:trusty - -[mysql-client-5.5_5.5.46-0ubuntu0.14.04.2] -file = mysql-client-5.5_5.5.46-0ubuntu0.14.04.2_amd64.deb -md5 = 80433fe158b2995a258886df36cb18d7 -source = repo:trusty-updates +source = repo:trusty/main/ -[mysql-client-core-5.5_5.5.46-0ubuntu0.14.04.2] -file = mysql-client-core-5.5_5.5.46-0ubuntu0.14.04.2_amd64.deb -md5 = 1cfa42186636985c6c9794ce9741155a -source = repo:trusty-updates +[mysql-client-5.5_5.5.50-0ubuntu0.14.04.1] +file = mysql-client-5.5_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 5f96432b31424f80d0a43a493314c19f +source = repo:trusty-updates/main/ -[mysql-client_5.5.46-0ubuntu0.14.04.2] -file = mysql-client_5.5.46-0ubuntu0.14.04.2_all.deb -md5 = 5792d7f019800daaff6ec38c06b23e4a -source = repo:trusty-updates +[mysql-client-core-5.5_5.5.50-0ubuntu0.14.04.1] +file = mysql-client-core-5.5_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 8f00681717e73d23a0d4d54bf13a09d5 +source = repo:trusty-updates/main/ -[mysql-common_5.5.46-0ubuntu0.14.04.2] -file = mysql-common_5.5.46-0ubuntu0.14.04.2_all.deb -md5 = 10bdaee71602e5dfa8d53b1c5b8867a2 -source = repo:trusty-updates +[mysql-client_5.5.50-0ubuntu0.14.04.1] +file = mysql-client_5.5.50-0ubuntu0.14.04.1_all.deb +md5 = 2db4b6fd9ac00660ca5f1bc1e4ae9d85 +source = repo:trusty-updates/main/ -[mysql-server-wsrep_5.5.37-25.10] -file = mysql-server-wsrep-5.5.37-25.10-amd64.deb -md5 = ac8664b3bd2ea15149e2d5af6abac90f -source = repo:contrail-thirdparty +[mysql-common_5.5.50-0ubuntu0.14.04.1] +file = mysql-common_5.5.50-0ubuntu0.14.04.1_all.deb +md5 = e2de1adae6567e6c40c7171cdc6b48e5 +source = repo:trusty-updates/main/ -[neutron-common_1:2015.1.2-0ubuntu1~cloud0] -file = neutron-common_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = ac9a195ebc737dddbed9a2a78d100f0b -source = repo:trusty-updates-kilo +[neutron-common_1:2015.1.4-0ubuntu1] +file = neutron-common_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = dd17ce66d139b05d2efd3f80db2e783a +source = repo:trusty-updates-kilo/main/ -[neutron-plugin-ml2_1:2015.1.2-0ubuntu1~cloud0] -file = neutron-plugin-ml2_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 0c070be7be0c20ba46da921f0d2004a7 -source = repo:trusty-updates-kilo +[neutron-plugin-ml2_1:2015.1.4-0ubuntu1] +file = neutron-plugin-ml2_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 14c46809a3b63c8ab93b76017b75c727 +source = repo:trusty-updates-kilo/main/ -[neutron-server_1:2015.1.2-0ubuntu1~cloud0] -file = neutron-server_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 188296aebc3a7cac4c85344ace61f51b -source = repo:trusty-updates-kilo +[neutron-server_1:2015.1.4-0ubuntu1] +file = neutron-server_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 613ba7206a4b7cb97aa67436ea452652 +source = repo:trusty-updates-kilo/main/ [nfs-common_1:1.2.8-6ubuntu1.2] file = nfs-common_1%%3a1.2.8-6ubuntu1.2_amd64.deb md5 = 64d83aabb28de942a6e367181ed580ca -source = repo:trusty-updates +source = repo:trusty-updates/main/ [nfs-kernel-server_1:1.2.8-6ubuntu1.2] file = nfs-kernel-server_1%%3a1.2.8-6ubuntu1.2_amd64.deb md5 = 84e9549cb2263fe0433bbc862fb4efc7 -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[ntp_1:4.2.6.p5+dfsg-3ubuntu2.14.04.5] -file = ntp_1%%3a4.2.6.p5+dfsg-3ubuntu2.14.04.5_amd64.deb -md5 = 91112f6caf863de33c979bd373da9c6c +[ntp_1:4.2.6.p5+dfsg-3ubuntu2.14.04.8] +file = ntp_1%%3a4.2.6.p5+dfsg-3ubuntu2.14.04.8_amd64.deb +md5 = 15c71cefccbade411bad7aa82c959f4c source = repo:trusty-updates [open-iscsi_2.0.873-3ubuntu9] file = open-iscsi_2.0.873-3ubuntu9_amd64.deb md5 = baa821890ea97d60e291c87d2dc439ae -source = repo:trusty +source = repo:trusty/main/ -[openjdk-6-jre-headless_6b36-1.13.8-0ubuntu1~14.04] -file = openjdk-6-jre-headless_6b36-1.13.8-0ubuntu1~14.04_amd64.deb -md5 = 0284faa1aab91d4df68c965fe851a132 -source = repo:trusty-updates +[openjdk-6-jre-headless_6b39-1.13.11-0ubuntu0.14.04.1] +file = openjdk-6-jre-headless_6b39-1.13.11-0ubuntu0.14.04.1_amd64.deb +md5 = f6fa782f7dbad7b17be2b32ce0b31107 +source = repo:trusty-updates/universe/ -[openjdk-6-jre-lib_6b36-1.13.8-0ubuntu1~14.04] -file = openjdk-6-jre-lib_6b36-1.13.8-0ubuntu1~14.04_all.deb -md5 = 89f0baac7b2c862d976e6e7f0c342e1b -source = repo:trusty-updates +[openjdk-6-jre-lib_6b39-1.13.11-0ubuntu0.14.04.1] +file = openjdk-6-jre-lib_6b39-1.13.11-0ubuntu0.14.04.1_all.deb +md5 = 24d157cc33ec7d3ef355a5c54768377a +source = repo:trusty-updates/universe/ -[openjdk-7-jre-headless_7u85-2.6.1-5ubuntu0.14.04.1] -file = openjdk-7-jre-headless_7u85-2.6.1-5ubuntu0.14.04.1_amd64.deb -md5 = b2d3c36849d469d4f1aa80414a6595da -source = repo:trusty-updates +[openjdk-7-jre-headless_7u111-2.6.7-0ubuntu0.14.04.3] +file = openjdk-7-jre-headless_7u111-2.6.7-0ubuntu0.14.04.3_amd64.deb +md5 = e7434bc689222bf72d080c65a40ef6f2 +source = repo:trusty-updates/main/ [pep8_1.5.7-2~cloud0] file = pep8_1.5.7-2~cloud0_all.deb md5 = 5b2bf6c1c18c06574dcbce9cb759fe26 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [percona-xtrabackup_2.1.8-1] file = percona-xtrabackup_2.1.8-1_amd64.deb md5 = 01758f32efe8426a44695f25f4a4117a source = repo:trusty/universe/ -[php5-cli_5.5.9+dfsg-1ubuntu4.14] -file = php5-cli_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = 1c3dd1dc147aa8ecdadc3cdc4a8fef56 +[perl-base_5.18.2-2ubuntu1.1] +file = perl-base_5.18.2-2ubuntu1.1_amd64.deb +md5 = d032a8ff7c2609d93af93e02aa7cf5ba +source = repo:trusty-updates/main/ + +[perl-modules_5.18.2-2ubuntu1.1] +file = perl-modules_5.18.2-2ubuntu1.1_all.deb +md5 = 75bfbc6a0725be5533d5920d031bb121 +source = repo:trusty-updates/main/ + +[perl_5.18.2-2ubuntu1.1] +file = perl_5.18.2-2ubuntu1.1_amd64.deb +md5 = c923b93fb9aa7f1ff97fcea2539bd8b9 +source = repo:trusty-updates/main/ + +[php5-cli_5.5.9+dfsg-1ubuntu4.19] +file = php5-cli_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = f7cfa14e9c0ea097d23d9638647a223d source = repo:trusty-updates/main/ -[php5-common_5.5.9+dfsg-1ubuntu4.14] -file = php5-common_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = bf2cc7bb8c45120dfbe78a4e33bd260c +[php5-common_5.5.9+dfsg-1ubuntu4.19] +file = php5-common_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 3f18d7b759d9e2f7a7cb9d98b58caf2d source = repo:trusty-updates/main/ -[php5-gd_5.5.9+dfsg-1ubuntu4.14] -file = php5-gd_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = 38639c3430238ccceee128ca7e1f6a1f +[php5-gd_5.5.9+dfsg-1ubuntu4.19] +file = php5-gd_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 57b5a59d6aaefe19a7a286de230c58a1 source = repo:trusty-updates/main/ [php5-json_1.3.2-2build1] @@ -1491,1090 +1448,1100 @@ file = php5-json_1.3.2-2build1_amd64.deb md5 = 9d2445c670f4148ce72a0edb73f4ede0 source = repo:trusty/main/ -[php5-mysql_5.5.9+dfsg-1ubuntu4.14] -file = php5-mysql_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = 609764fddf2b629fa0f2dcf3e84c5795 +[php5-mysql_5.5.9+dfsg-1ubuntu4.19] +file = php5-mysql_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = ca5a49303bf3f422159947aeaf4bcff9 source = repo:trusty-updates/main/ -[php5-readline_5.5.9+dfsg-1ubuntu4.14] -file = php5-readline_5.5.9+dfsg-1ubuntu4.14_amd64.deb -md5 = c1224b2ecada87091417f1ff6580813b +[php5-readline_5.5.9+dfsg-1ubuntu4.19] +file = php5-readline_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 9819ddabc784adcf6b1bc03c02bc3006 source = repo:trusty-updates/main/ -[pm-utils_1.4.1-13ubuntu0.1] -file = pm-utils_1.4.1-13ubuntu0.1_all.deb -md5 = f8948fc2d2a7016841047f689b311863 -source = repo:trusty-updates +[pm-utils_1.4.1-13ubuntu0.2] +file = pm-utils_1.4.1-13ubuntu0.2_all.deb +md5 = 03a8612ffee21b5bf66e8251c0584414 +source = repo:trusty-updates/main/ -[policykit-1_0.105-4ubuntu2.14.04.1] -file = policykit-1_0.105-4ubuntu2.14.04.1_amd64.deb -md5 = 5f6da9330f707d5204f4cce6ca8bc3b6 -source = repo:trusty-updates +[policykit-1_0.105-4ubuntu3.14.04.1] +file = policykit-1_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = 5ab9c109043f9f50851441ab6b0babf3 +source = repo:trusty-updates/main/ [pyflakes_0.8.1-1] file = pyflakes_0.8.1-1_all.deb md5 = 1e2c9fc899d2af03575911b6ffbf0ab1 -source = repo:trusty +source = repo:trusty/main/ [python-alembic_0.7.2+ds-0ubuntu1~cloud0] file = python-alembic_0.7.2+ds-0ubuntu1~cloud0_all.deb md5 = 4be45f9daae56a02cf734e9762b326e2 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-amqp_1.4.6-0ubuntu1~cloud1] file = python-amqp_1.4.6-0ubuntu1~cloud1_all.deb md5 = 2294fed94c08f0126f362fa6172975a8 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-amqplib_1.0.2-1] file = python-amqplib_1.0.2-1_all.deb md5 = c5fbd5a52f7b755bc35866748d34a327 -source = repo:trusty +source = repo:trusty/main/ [python-anyjson_0.3.3-1build1] file = python-anyjson_0.3.3-1build1_all.deb md5 = 12fd230b8619d75b80d63b154b2b94d0 -source = repo:trusty +source = repo:trusty/main/ [python-appconf_0.5-2build1] file = python-appconf_0.5-2build1_all.deb md5 = 8733edb63cd4c860b360735aa5677f2b -source = repo:trusty +source = repo:trusty/main/ [python-babel-localedata_1.3+dfsg.1-2ubuntu2] file = python-babel-localedata_1.3+dfsg.1-2ubuntu2_all.deb md5 = 04b563190593c2cfbb03c684db356bcf -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-babel_1.3+dfsg.1-2ubuntu2] file = python-babel_1.3+dfsg.1-2ubuntu2_all.deb md5 = af3cd914d55062d4e165dc7b1e536507 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-barbicanclient_3.0.2-0ubuntu2~cloud0] file = python-barbicanclient_3.0.2-0ubuntu2~cloud0_all.deb md5 = c15b9a2f295ae470733f8007d402453d -source = repo:trusty-updates-kilo - -[python-bitstring_3.1.3-2] -file = python-bitstring_3.1.3-2_all.deb -md5 = b54d9fbcacba9dfa8b61569ab65938cc -source = repo:contrail-thirdparty +source = repo:trusty-updates-kilo/main/ [python-bottle_0.12.0-1] file = python-bottle_0.12.0-1_all.deb md5 = 1a4e42bfa1b06f6ec20c39f5b493f3d6 -source = repo:trusty +source = repo:trusty/universe/ [python-bs4_4.2.1-1ubuntu2] file = python-bs4_4.2.1-1ubuntu2_all.deb md5 = 88cdf603cfadcea1434107d4ffe454bd -source = repo:trusty +source = repo:trusty/main/ [python-bson-ext_2.6.3-1build1] file = python-bson-ext_2.6.3-1build1_amd64.deb md5 = 9e482b83b8a324c98553a4b9ca4fd4f1 -source = repo:trusty +source = repo:trusty/main/ [python-bson_2.6.3-1build1] file = python-bson_2.6.3-1build1_amd64.deb md5 = 8c6b1fd703e40aac4f4c08a12f0fc2c6 -source = repo:trusty +source = repo:trusty/main/ [python-cffi_0.8.2-0ubuntu1] file = python-cffi_0.8.2-0ubuntu1_amd64.deb md5 = 951f7844628c9a16ed44ec233a5ac84a -source = repo:trusty +source = repo:trusty/universe/ [python-cliff-doc_1.10.1-0ubuntu1~cloud0] file = python-cliff-doc_1.10.1-0ubuntu1~cloud0_all.deb md5 = e9bb5d47e75f14b0a980ea35f202404a -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-cliff_1.10.1-0ubuntu1~cloud0] file = python-cliff_1.10.1-0ubuntu1~cloud0_all.deb md5 = 4d04aef4b18b45dcc8f1569107f266be -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-cmd2_0.6.7-2fakesync1build1] file = python-cmd2_0.6.7-2fakesync1build1_all.deb md5 = 9b2fea5232b418bee0ae8144aee42e6b -source = repo:trusty +source = repo:trusty/main/ [python-compressor_1.4-2ubuntu3~cloud0] file = python-compressor_1.4-2ubuntu3~cloud0_all.deb md5 = 2285ab3deae171ce9a21eed60b24c52c -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-concurrent.futures_2.1.6-3] file = python-concurrent.futures_2.1.6-3_all.deb md5 = be8dfea9cff116aafc7c25491d304ead -source = repo:trusty +source = repo:trusty/main/ [python-coverage_3.7.1+dfsg.1-1ubuntu2] file = python-coverage_3.7.1+dfsg.1-1ubuntu2_amd64.deb md5 = 6e41e84dd8eaa881da49cf12414f2353 -source = repo:trusty +source = repo:trusty/main/ [python-croniter_0.3.4-0ubuntu1] file = python-croniter_0.3.4-0ubuntu1_all.deb md5 = cad5235306fd0714cc630eef59836bba -source = repo:trusty +source = repo:trusty/main/ [python-cryptography_0.8-1ubuntu2~cloud0] file = python-cryptography_0.8-1ubuntu2~cloud0_amd64.deb md5 = 20806939f637e055afc5e1f6bf43ab48 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-dateutil_1.5+dfsg-1ubuntu1] file = python-dateutil_1.5+dfsg-1ubuntu1_all.deb md5 = c2660e35f490a79c779f952cb2089339 -source = repo:trusty +source = repo:trusty/main/ [python-decorator_3.4.0-2build1] file = python-decorator_3.4.0-2build1_all.deb md5 = 14b3d2529bbf2ba7ea46553586ce24ed -source = repo:trusty +source = repo:trusty/main/ + +[python-django-common_1.7.6-1ubuntu2.3~cloud0] +file = python-django-common_1.7.6-1ubuntu2.3~cloud0_all.deb +md5 = cec74c264134e875c8e1829bb051e7f5 +source = repo:trusty-updates-kilo/main/ [python-django-pyscss_1.0.3-3ubuntu1~cloud0] file = python-django-pyscss_1.0.3-3ubuntu1~cloud0_all.deb md5 = 427a0ad2acf27344960ac74a47c0d6f8 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[python-django_1.7.6-1ubuntu2.2~cloud0] -file = python-django_1.7.6-1ubuntu2.2~cloud0_all.deb -md5 = e1e977772a48e53540510f9ad34c9227 -source = repo:trusty-updates-kilo +[python-django_1.7.6-1ubuntu2.3~cloud0] +file = python-django_1.7.6-1ubuntu2.3~cloud0_all.deb +md5 = 47caad8eb6ec5b99b97d553fa86974b1 +source = repo:trusty-updates-kilo/main/ [python-dns_2.3.6-3] file = python-dns_2.3.6-3_all.deb md5 = 34c7f050754596bd1bf406934623f6ff -source = repo:trusty +source = repo:trusty/main/ [python-docutils_0.11-3] file = python-docutils_0.11-3_all.deb md5 = 7cf66803c3d8edaf1b491b84c56c80b4 -source = repo:trusty +source = repo:trusty/main/ [python-dogpile.cache_0.5.4-1ubuntu2~cloud0] file = python-dogpile.cache_0.5.4-1ubuntu2~cloud0_all.deb md5 = cfb290eb33088c5484c6d9fb507fea51 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-dogpile.core_0.4.1+dfsg1-2~cloud0] file = python-dogpile.core_0.4.1+dfsg1-2~cloud0_all.deb md5 = 35e401fbb2ddce1bcb0e0f6e2133caaa -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-egenix-mxdatetime_3.2.7-1build1] file = python-egenix-mxdatetime_3.2.7-1build1_amd64.deb md5 = 4e21c0f87adf7e84f81c3a4dc2530d01 -source = repo:trusty +source = repo:trusty/main/ [python-egenix-mxtools_3.2.7-1build1] file = python-egenix-mxtools_3.2.7-1build1_amd64.deb md5 = b9698c57bd43531159ffc6a0c1e7a958 -source = repo:trusty +source = repo:trusty/main/ [python-enum34_1.0.3-1~cloud0] file = python-enum34_1.0.3-1~cloud0_all.deb md5 = 39218bbc2865e0b5993e389f81a3b75a -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-eventlet_0.16.1-0ubuntu1.1~cloud0] file = python-eventlet_0.16.1-0ubuntu1.1~cloud0_all.deb md5 = 126cfc7f20cd6a1fd1ebb012b6ffecb2 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-extras_0.0.3-2ubuntu1] file = python-extras_0.0.3-2ubuntu1_all.deb md5 = a0f3242f6ef4e8143fa584e0aa887efe -source = repo:trusty +source = repo:trusty/main/ [python-fixtures_1.0.0-01ubuntu1~cloud0] file = python-fixtures_1.0.0-01ubuntu1~cloud0_all.deb md5 = 127840d4b0c32d0b5d3c86b994ec3359 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-flake8_2.2.2-1ubuntu1~cloud0] file = python-flake8_2.2.2-1ubuntu1~cloud0_all.deb md5 = 5f0f659a1b49ddcbfd73d49f0db71648 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-formencode_1.2.6-1ubuntu1] file = python-formencode_1.2.6-1ubuntu1_all.deb md5 = d33916fa01b79f40d3f7956cb0b84875 -source = repo:trusty +source = repo:trusty/main/ -[python-gevent_1.0-1ubuntu1] -file = python-gevent_1.0-1ubuntu1_amd64.deb -md5 = 7a0e277b556505bd5d663986ba8df167 -source = repo:trusty +[python-gevent_1.0-1ubuntu1.1] +file = python-gevent_1.0-1ubuntu1.1_amd64.deb +md5 = 009938f1686163b0d2746e0649aa3366 +source = repo:trusty-updates/main/ [python-greenlet_0.4.2-1ubuntu0.1] file = python-greenlet_0.4.2-1ubuntu0.1_amd64.deb md5 = d60b17fe3c82ecdfc16fe2da075f3ee8 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-gridfs_2.6.3-1build1] file = python-gridfs_2.6.3-1build1_all.deb md5 = 5bda8eff55d7a642fa348163ddc239fc -source = repo:trusty +source = repo:trusty/main/ [python-hacking_0.10.1-0ubuntu1~cloud0] file = python-hacking_0.10.1-0ubuntu1~cloud0_all.deb md5 = 28730f34bfcb3450ac65ab315b143d75 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-httplib2_0.8-2build1] file = python-httplib2_0.8-2build1_all.deb md5 = f89336424e43d4c425427218fe78ca7f -source = repo:trusty +source = repo:trusty/main/ [python-iniparse_0.4-2.1build1] file = python-iniparse_0.4-2.1build1_all.deb md5 = 3d81a65e52f0d19ad3c19ce67c522dfd -source = repo:trusty +source = repo:trusty/universe/ [python-ipaddr_2.1.10-1] file = python-ipaddr_2.1.10-1_all.deb md5 = dd68b2b72af833f9d6ae8c783bddec96 -source = repo:trusty +source = repo:trusty/main/ [python-iso8601_0.1.10-0ubuntu1] file = python-iso8601_0.1.10-0ubuntu1_all.deb md5 = cf96e81ac68c98ba7dccab09b29e7a1b -source = repo:trusty +source = repo:trusty/main/ [python-jinja2_2.7.2-2] file = python-jinja2_2.7.2-2_all.deb md5 = 9cd2578120e51095678dce07fe22a7ad -source = repo:trusty +source = repo:trusty/main/ [python-json-patch_1.3-4] file = python-json-patch_1.3-4_all.deb md5 = 5b8a855cfd49edad79d3432f227d42c0 -source = repo:trusty +source = repo:trusty/main/ [python-json-pointer_1.0-2build1] file = python-json-pointer_1.0-2build1_all.deb md5 = b0762e2a2192458adcbf70e6be02172d -source = repo:trusty +source = repo:trusty/main/ [python-jsonpatch_1.3-4] file = python-jsonpatch_1.3-4_all.deb md5 = d1521e9621c4c751d164a6d979705a12 -source = repo:trusty +source = repo:trusty/main/ [python-jsonpath-rw_1.2.0-1build1] file = python-jsonpath-rw_1.2.0-1build1_all.deb md5 = 7e40b1562d3f18032e6236b1ada10cb6 -source = repo:trusty +source = repo:trusty/main/ [python-jsonpickle_0.6.1-1] file = python-jsonpickle_0.6.1-1_all.deb md5 = db9b413b399c262c53a547fb3e6e7342 -source = repo:trusty +source = repo:trusty/universe/ [python-jsonrpclib_0.1.3-1build1] file = python-jsonrpclib_0.1.3-1build1_all.deb md5 = 0277bea4326378576c341221acc648c2 -source = repo:trusty +source = repo:trusty/main/ [python-jsonschema_2.3.0-1build1] file = python-jsonschema_2.3.0-1build1_all.deb md5 = f24f78b639a2aed323e456bd8df4b099 -source = repo:trusty +source = repo:trusty/main/ + +[python-kazoo_1.3.1-1ubuntu1~cloud0] +file = python-kazoo_1.3.1-1ubuntu1~cloud0_all.deb +md5 = aab0657daa0628c3992a5ac8e492169e +source = repo:trusty-updates-kilo/main/ -[python-keystone_1:2015.1.2-0ubuntu2~cloud0] -file = python-keystone_1%%3a2015.1.2-0ubuntu2~cloud0_all.deb -md5 = 2b14ba68e154da6788c6ec53427629f1 -source = repo:trusty-updates-kilo +[python-keystone_1:2015.1.4-0ubuntu1] +file = python-keystone_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 89fea1685a178d5d6459208ec7188f52 +source = repo:trusty-updates-kilo/main/ [python-keystoneclient_1:1.2.0-0ubuntu1.2~cloud0] file = python-keystoneclient_1%%3a1.2.0-0ubuntu1.2~cloud0_all.deb md5 = 56991e5ecf5a3733983b902201ba1b5e -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-keystonemiddleware_1.5.0-0ubuntu1.1~cloud0] file = python-keystonemiddleware_1.5.0-0ubuntu1.1~cloud0_all.deb md5 = 08b3d70beb6c032e569000ccadae7253 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-kombu_3.0.24-0ubuntu2~cloud0] file = python-kombu_3.0.24-0ubuntu2~cloud0_all.deb md5 = 81af04e108b4a99ec883bb5dda17f121 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-ldap_2.4.10-1build1] file = python-ldap_2.4.10-1build1_amd64.deb md5 = 36ab6c8b74d3f2ac5959a605a20d0882 -source = repo:trusty +source = repo:trusty/main/ [python-ldappool_1.0-1ubuntu1~cloud0] file = python-ldappool_1.0-1ubuntu1~cloud0_all.deb md5 = 68e342f323fcfbeb2a9bd3b1d18422d5 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[python-libvirt_1.2.2-0ubuntu2] -file = python-libvirt_1.2.2-0ubuntu2_amd64.deb -md5 = dddb4e142fa81e77e6414ed1794f01f9 -source = repo:trusty-updates +[python-libvirt_1.2.12-0ubuntu1~cloud0] +file = python-libvirt_1.2.12-0ubuntu1~cloud0_amd64.deb +md5 = 5a9482e221bb16ed9c783a28a87c3ac9 +source = repo:trusty-updates-kilo/main/ [python-lockfile_1:0.8-2ubuntu2] file = python-lockfile_1%%3a0.8-2ubuntu2_all.deb md5 = 0b3a1c9d495cacbc645ee45ec84e2ff5 -source = repo:trusty +source = repo:trusty/main/ [python-logutils_0.3.3-1] file = python-logutils_0.3.3-1_all.deb md5 = eab1885a8d7289f8145cc8fa35cde3e0 -source = repo:trusty +source = repo:trusty/universe/ [python-m2crypto_0.21.1-3ubuntu5] file = python-m2crypto_0.21.1-3ubuntu5_amd64.deb md5 = 4e14c4078c358c09b45462ca2270155a -source = repo:trusty +source = repo:trusty/main/ [python-mako_0.9.1-1] file = python-mako_0.9.1-1_all.deb md5 = 78c42602a68f81f6e49034fbeea117a5 -source = repo:trusty +source = repo:trusty/main/ [python-markupsafe_0.18-1build2] file = python-markupsafe_0.18-1build2_amd64.deb md5 = 710ec5c745dcd9994e049c3da8ecef7e -source = repo:trusty +source = repo:trusty/main/ [python-mccabe_0.2.1-1] file = python-mccabe_0.2.1-1_all.deb md5 = 8842a7a092348653c882db244b43ab3b -source = repo:trusty +source = repo:trusty/universe/ [python-meld3_0.6.10-1] file = python-meld3_0.6.10-1_amd64.deb md5 = e29f37ebfa28bb3ddebc91df3c339b47 -source = repo:trusty +source = repo:trusty/universe/ [python-memcache_1.53-1build1] file = python-memcache_1.53-1build1_all.deb md5 = f571071e73b7d12586bba80a5fb77d9c -source = repo:trusty +source = repo:trusty/main/ [python-migrate_0.9.5-0ubuntu1~cloud0] file = python-migrate_0.9.5-0ubuntu1~cloud0_all.deb md5 = 2d9c055814c14f86410eccdec516144d -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-mimeparse_0.1.4-1build1] file = python-mimeparse_0.1.4-1build1_all.deb md5 = 35001c4d6be265d6040285d96bb04fa5 -source = repo:trusty +source = repo:trusty/main/ [python-mock_1.0.1-3] file = python-mock_1.0.1-3_all.deb md5 = 322bef0632cb2bfa8dc51844703a46a5 -source = repo:trusty +source = repo:trusty/main/ [python-msgpack_0.4.2-1~cloud1] file = python-msgpack_0.4.2-1~cloud1_amd64.deb md5 = d76547fb528789fe2981d4add0747c8a -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-mysqldb_1.2.3-2ubuntu1] file = python-mysqldb_1.2.3-2ubuntu1_amd64.deb md5 = f9afbad9900ea523db8e77a9b13e147b -source = repo:trusty +source = repo:trusty/main/ [python-netifaces_0.10.4-0.1~cloud0] file = python-netifaces_0.10.4-0.1~cloud0_amd64.deb md5 = 7681fa3b0b2e6d73fa854b4979d41e31 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[python-netsnmp_5.7.2~dfsg-8.1ubuntu3.1] -file = python-netsnmp_5.7.2~dfsg-8.1ubuntu3.1_amd64.deb -md5 = c76998643a6f038bdde475d21e9e6337 -source = repo:trusty-updates +[python-netsnmp_5.7.2~dfsg-8.1ubuntu3.2] +file = python-netsnmp_5.7.2~dfsg-8.1ubuntu3.2_amd64.deb +md5 = 377f172050ff6236dc0c8624e241b246 +source = repo:trusty-updates/universe/ [python-networkx_1.8.1-0ubuntu3] file = python-networkx_1.8.1-0ubuntu3_all.deb md5 = e56789bcfefec7b730a35c983670346b -source = repo:trusty +source = repo:trusty/main/ [python-neutron-fwaas_2015.1.2-0ubuntu2~cloud0] file = python-neutron-fwaas_2015.1.2-0ubuntu2~cloud0_all.deb md5 = 965d837a09ee1696ace9852ca6e7b6e1 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[python-neutron-lbaas_1:2015.1.2-0ubuntu1~cloud0] -file = python-neutron-lbaas_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = a4e2fc998d62e2ed7496d45359c1f267 -source = repo:trusty-updates-kilo +[python-neutron-lbaas_1:2015.1.4-0ubuntu2] +file = python-neutron-lbaas_1%%3a2015.1.4-0ubuntu2_all.deb +md5 = 67cae76b6d358dd23312cccaaa63149f +source = repo:trusty-updates-kilo/main/ -[python-neutron_1:2015.1.2-0ubuntu1~cloud0] -file = python-neutron_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 0868838ce790f6395118a1ea27704654 -source = repo:trusty-updates-kilo +[python-neutron_1:2015.1.4-0ubuntu1] +file = python-neutron_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 56148da0b78f6402826cc790a2f88877 +source = repo:trusty-updates-kilo/main/ [python-numpy_1:1.8.2-0ubuntu0.1] file = python-numpy_1%%3a1.8.2-0ubuntu0.1_amd64.deb md5 = 00c0681a5a332a86999a5fbc02455844 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-oauthlib_0.6.1-1] file = python-oauthlib_0.6.1-1_all.deb md5 = c9d6b2599b97bf3a4b95339b441da10d -source = repo:trusty +source = repo:trusty/main/ [python-openid_2.2.5-3ubuntu1] file = python-openid_2.2.5-3ubuntu1_all.deb md5 = 18f10f480ec0e16fab9c27e361148ade -source = repo:trusty +source = repo:trusty/main/ [python-openssl_0.13-2ubuntu6] file = python-openssl_0.13-2ubuntu6_amd64.deb md5 = c8f4a14fb0469dadcbe379db48a7061f -source = repo:trusty +source = repo:trusty/main/ + +[python-oslo-concurrency_1.8.2-0ubuntu0.15.04.1~cloud2] +file = python-oslo-concurrency_1.8.2-0ubuntu0.15.04.1~cloud2_all.deb +md5 = 26c0a29092c2e71ac17e9c6030caf43b +source = repo:trusty-updates-kilo/main/ [python-oslo-config_1:1.9.3-0ubuntu1~cloud0] file = python-oslo-config_1%%3a1.9.3-0ubuntu1~cloud0_all.deb md5 = 1fb517fd9c203e7adc03c286fa19d2a5 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-context_0.2.0-0ubuntu1~cloud0] file = python-oslo-context_0.2.0-0ubuntu1~cloud0_all.deb md5 = 973c0e3abb424a7d5b52e13506620ccc -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-db_1.7.1-0ubuntu2~cloud0] file = python-oslo-db_1.7.1-0ubuntu2~cloud0_all.deb md5 = f11c1aad389ff6310e200954fbb2b04f -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-i18n_1.5.0-0ubuntu1~cloud0] file = python-oslo-i18n_1.5.0-0ubuntu1~cloud0_all.deb md5 = 7652dc415d0e3205fe403c5acdee8424 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-log_1.0.0-0ubuntu1~cloud0] file = python-oslo-log_1.0.0-0ubuntu1~cloud0_all.deb md5 = b5bb63bf5090ea5bb5906408da8ad8ac -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[python-oslo-messaging_1.8.3-0ubuntu0.15.04.2~cloud0] -file = python-oslo-messaging_1.8.3-0ubuntu0.15.04.2~cloud0_all.deb -md5 = f7481e4490413da832761de067b9bd92 -source = repo:trusty-updates-kilo +[python-oslo-messaging_1.8.3-0ubuntu0.15.04.2~cloud1] +file = python-oslo-messaging_1.8.3-0ubuntu0.15.04.2~cloud1_all.deb +md5 = 383535830b0196ada34f796197ed7c6f +source = repo:trusty-updates-kilo/main/ [python-oslo-middleware_1.0.0-0ubuntu2~cloud0] file = python-oslo-middleware_1.0.0-0ubuntu2~cloud0_all.deb md5 = 2f71c0ceeaa67d65ec229e8a3a707337 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-policy_0.3.1-0ubuntu1~cloud0] file = python-oslo-policy_0.3.1-0ubuntu1~cloud0_all.deb md5 = f16664d0052ee5b92cabbfa1578d129f -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-rootwrap_1.6.0-0ubuntu1~cloud0] file = python-oslo-rootwrap_1.6.0-0ubuntu1~cloud0_all.deb md5 = 11f7bfb96ed7feba3bb38f8eaa15f3f7 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-serialization_1.4.0-0ubuntu1~cloud0] file = python-oslo-serialization_1.4.0-0ubuntu1~cloud0_all.deb md5 = 2fd5a846834d714b87d632b32ba30b80 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-utils_1.4.0-0ubuntu1~cloud0] file = python-oslo-utils_1.4.0-0ubuntu1~cloud0_all.deb md5 = 5e682e224bff4f5edc8746e4e22dfa6a -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-versionedobjects_0.1.1-0ubuntu1~cloud0] file = python-oslo-versionedobjects_0.1.1-0ubuntu1~cloud0_all.deb md5 = 52ea1ae10fdd28dd4678e304cf39708f -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo-vmware_0.11.1-0ubuntu1~cloud0] file = python-oslo-vmware_0.11.1-0ubuntu1~cloud0_all.deb md5 = 20fdc6935df18b2a624ac9d03c061f31 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo.config_1:1.9.3-0ubuntu1~cloud0] file = python-oslo.config_1%%3a1.9.3-0ubuntu1~cloud0_all.deb md5 = 2b55ff9ad5ac4e67ee3c8ff3ab1c660c -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo.i18n_1.5.0-0ubuntu1~cloud0] file = python-oslo.i18n_1.5.0-0ubuntu1~cloud0_all.deb md5 = 43993e33881af02caca508aaed87b97f -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo.serialization_1.4.0-0ubuntu1~cloud0] file = python-oslo.serialization_1.4.0-0ubuntu1~cloud0_all.deb md5 = 1e1e9b9c927cf2b052de21d052e3732a -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslo.utils_1.4.0-0ubuntu1~cloud0] file = python-oslo.utils_1.4.0-0ubuntu1~cloud0_all.deb md5 = f28f99f3b158b82dcbcb6c540ca9e82d -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-oslosphinx_2.3.0-0ubuntu1~cloud0] file = python-oslosphinx_2.3.0-0ubuntu1~cloud0_all.deb md5 = 995e7475f1ad5b13f1a5daa1fd8255c2 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-osprofiler_0.3.0-1~cloud1] file = python-osprofiler_0.3.0-1~cloud1_all.deb md5 = 1ff3280f07da4c4828cd8d3d3d6a43aa -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-pam_0.4.2-13.1ubuntu3] file = python-pam_0.4.2-13.1ubuntu3_amd64.deb md5 = e518dde3fdb06254f7d383fa289ff049 -source = repo:trusty +source = repo:trusty/main/ [python-passlib_1.5.3-0ubuntu3] file = python-passlib_1.5.3-0ubuntu3_all.deb md5 = 148af17ab6f32a5dc65e7c1a5829ec92 -source = repo:trusty +source = repo:trusty/main/ [python-paste_1.7.5.1-6ubuntu3] file = python-paste_1.7.5.1-6ubuntu3_all.deb md5 = 087a0e6d604920077dba2eb699fee451 -source = repo:trusty +source = repo:trusty/main/ [python-pastedeploy-tpl_1.5.2-1] file = python-pastedeploy-tpl_1.5.2-1_all.deb md5 = 026875f9ea63f46eb1c7271f48563ce4 -source = repo:trusty +source = repo:trusty/main/ [python-pastedeploy_1.5.2-1] file = python-pastedeploy_1.5.2-1_all.deb md5 = 3c0587c8218a420b1718ab9b5f01b42f -source = repo:trusty +source = repo:trusty/main/ [python-pastescript_1.7.5-3build1] file = python-pastescript_1.7.5-3build1_all.deb md5 = efbe8811182fd40546ff68cd99ab0df7 -source = repo:trusty +source = repo:trusty/main/ [python-pbr_0.10.0-0ubuntu1~cloud0] file = python-pbr_0.10.0-0ubuntu1~cloud0_all.deb md5 = ede339727e1946ab874a82b56e7a68bf -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-pecan_0.8.2-0ubuntu1~cloud0] file = python-pecan_0.8.2-0ubuntu1~cloud0_all.deb md5 = 6e0314eb39b386430de7181f864e0815 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-pil_2.3.0-1ubuntu3] file = python-pil_2.3.0-1ubuntu3_amd64.deb md5 = ccdcf48f9807dd1124134f77dc31afe3 -source = repo:trusty +source = repo:trusty/main/ [python-pint_0.6-0ubuntu1~cloud0] file = python-pint_0.6-0ubuntu1~cloud0_all.deb md5 = 5dc9ac94c318469d00f25ab0c11f8daa -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-ply_3.4-3ubuntu2] file = python-ply_3.4-3ubuntu2_all.deb md5 = 780d4d20630869b23007bd41bd5dc98e -source = repo:trusty +source = repo:trusty/main/ [python-posix-ipc_0.9.8-2~cloud1] file = python-posix-ipc_0.9.8-2~cloud1_amd64.deb md5 = 04207427702fca66b5008027d6c46164 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-prettytable_0.7.2-2ubuntu2] file = python-prettytable_0.7.2-2ubuntu2_all.deb md5 = 1532d286ecad16204509eca1e97b8c37 -source = repo:trusty +source = repo:trusty/main/ [python-psutil_1.2.1-1ubuntu2] file = python-psutil_1.2.1-1ubuntu2_amd64.deb md5 = d2bcb47170d171e72068dad186d9f6cd -source = repo:trusty +source = repo:trusty/main/ [python-psycopg2_2.4.5-1build5] file = python-psycopg2_2.4.5-1build5_amd64.deb md5 = 6894f277ac048b7f0e0c4263c6a5b7b9 -source = repo:trusty +source = repo:trusty/main/ [python-pyasn1-modules_0.0.3-1] file = python-pyasn1-modules_0.0.3-1_all.deb md5 = b9cc8295b02e62590d5d870ef7d0ef49 -source = repo:trusty +source = repo:trusty/universe/ [python-pyasn1_0.1.7-1ubuntu2] file = python-pyasn1_0.1.7-1ubuntu2_all.deb md5 = 34840f47ca2ea766262d8759cfa54d79 -source = repo:trusty +source = repo:trusty/main/ [python-pycadf_0.8.0-0ubuntu1~cloud0] file = python-pycadf_0.8.0-0ubuntu1~cloud0_all.deb md5 = 9e69042690b542110bb73c999acd6687 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-pycparser_2.10+dfsg-1ubuntu2] file = python-pycparser_2.10+dfsg-1ubuntu2_all.deb md5 = 1766f7c2db0611cf118f2f1c1dfeff2d -source = repo:trusty +source = repo:trusty/universe/ -[python-pygments_1.6+dfsg-1ubuntu1] -file = python-pygments_1.6+dfsg-1ubuntu1_all.deb -md5 = 30fe5926501152cd9f334676175e701e -source = repo:trusty +[python-pygments_1.6+dfsg-1ubuntu1.1] +file = python-pygments_1.6+dfsg-1ubuntu1.1_all.deb +md5 = 3f20014203df9c69eb47462029f8f4f0 +source = repo:trusty-updates/main/ [python-pyinotify_0.9.4-1build1] file = python-pyinotify_0.9.4-1build1_all.deb md5 = e8769aea55a94fe0562f7c5fc160f883 -source = repo:trusty +source = repo:trusty/main/ [python-pymemcache_1.2.4-2~cloud0] file = python-pymemcache_1.2.4-2~cloud0_all.deb md5 = ccd16d2fdf1f95ffdb90b722dc72a0a6 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-pymongo-ext_2.6.3-1build1] file = python-pymongo-ext_2.6.3-1build1_amd64.deb md5 = 6c4a0a73e79d07b83bb9d909db2e46f0 -source = repo:trusty +source = repo:trusty/main/ [python-pymongo_2.6.3-1build1] file = python-pymongo_2.6.3-1build1_amd64.deb md5 = 774d0f0d9dc52a42591d1efab4d1826a -source = repo:trusty +source = repo:trusty/main/ [python-pyparsing_2.0.1+dfsg1-1build1] file = python-pyparsing_2.0.1+dfsg1-1build1_all.deb md5 = 33831b0b33cd23bd2266f6f19dac2817 -source = repo:trusty +source = repo:trusty/main/ [python-pysaml2_2.4.0-0ubuntu1~cloud0] file = python-pysaml2_2.4.0-0ubuntu1~cloud0_all.deb md5 = d1e27fda2ad1939a382e2d4f4888510d -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-pyscss_1.2.1-0ubuntu2~cloud1] file = python-pyscss_1.2.1-0ubuntu2~cloud1_amd64.deb md5 = b66f5e37f311983656e304abc4a1be80 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-pysnmp4-apps_0.3.2-1] file = python-pysnmp4-apps_0.3.2-1_all.deb md5 = f2fc5a8741cc9a4c8bdae969929bfc5a -source = repo:trusty +source = repo:trusty/universe/ [python-pysnmp4-mibs_0.1.3-1] file = python-pysnmp4-mibs_0.1.3-1_all.deb md5 = a09eef881df5cc7bcaa07273dce27695 -source = repo:trusty +source = repo:trusty/universe/ [python-pysnmp4_4.2.5-1] file = python-pysnmp4_4.2.5-1_all.deb md5 = 395c65aa72adea6bdbb71294f4cde922 -source = repo:trusty - -[python-pyvmomi_5.5.0-2014.1.1-1] -file = python-pyvmomi_5.5.0-2014.1.1-1_all.deb -md5 = cdcdad00e07a88920b931215a2499a36 -source = repo:contrail-thirdparty +source = repo:trusty/universe/ [python-qpid_0.22+dfsg-1] file = python-qpid_0.22+dfsg-1_all.deb md5 = 647e9851d3fb2db8c92c4bcd98a11970 -source = repo:trusty +source = repo:trusty/universe/ [python-repoze.lru_0.6-4] file = python-repoze.lru_0.6-4_all.deb md5 = ec42d32ed67499bf97f2843b4b667b7e -source = repo:trusty +source = repo:trusty/main/ [python-retrying_1.2.3-2~cloud0] file = python-retrying_1.2.3-2~cloud0_all.deb md5 = 3ccb0343784e7f3f92f92bd487d765a8 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-rfc3986_0.2.0-2~cloud0] file = python-rfc3986_0.2.0-2~cloud0_all.deb md5 = 76a1c18ab4716f144568768782068768 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-roman_2.0.0-1] file = python-roman_2.0.0-1_all.deb md5 = 42ddb3020c581af10d1d608d66d4c3e6 -source = repo:trusty +source = repo:trusty/main/ [python-routes_2.0-1build1] file = python-routes_2.0-1build1_all.deb md5 = 93a7d9dd3af53796899a461c4cb2261e -source = repo:trusty +source = repo:trusty/main/ [python-scgi_1.13-1.1build1] file = python-scgi_1.13-1.1build1_amd64.deb md5 = cf245a8f89a68cef75d45d943bcbe8e3 -source = repo:trusty +source = repo:trusty/main/ [python-semantic-version_2.3.1-1~cloud0] file = python-semantic-version_2.3.1-1~cloud0_all.deb md5 = f6bc35b14386ad274e3e536d0689b21d -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-serial_2.6-1build1] file = python-serial_2.6-1build1_all.deb md5 = 815adaf14f9c402d2d0507b1d99e7d71 -source = repo:trusty +source = repo:trusty/main/ [python-simplegeneric_0.8.1-1] file = python-simplegeneric_0.8.1-1_all.deb md5 = fc5b6db5f33a90082b89507dab83dd20 -source = repo:trusty +source = repo:trusty/main/ [python-simplejson_3.3.1-1ubuntu6] file = python-simplejson_3.3.1-1ubuntu6_amd64.deb md5 = 9dfdf538974081a2e1c8ff0ac57f872b -source = repo:trusty +source = repo:trusty/main/ [python-singledispatch_3.4.0.2-1] file = python-singledispatch_3.4.0.2-1_all.deb md5 = e2fca1472153b1c89b6b5d72913ba245 -source = repo:trusty +source = repo:trusty/universe/ [python-six_1.9.0-1~cloud0] file = python-six_1.9.0-1~cloud0_all.deb md5 = c0cf8d4f8c56427b0fee8e28dafce723 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-sphinx_1.2.2+dfsg-1ubuntu1.1] file = python-sphinx_1.2.2+dfsg-1ubuntu1.1_all.deb md5 = 0c8682a0f4fa77d103cba93f601542e4 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-sqlalchemy-ext_0.9.8+dfsg-0.1~cloud0] file = python-sqlalchemy-ext_0.9.8+dfsg-0.1~cloud0_amd64.deb md5 = c7e11b559dd87c4747dadea99eef29a4 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-sqlalchemy_0.9.8+dfsg-0.1~cloud0] file = python-sqlalchemy_0.9.8+dfsg-0.1~cloud0_all.deb md5 = b08dc7dcd705820a946d8bbe5dcbf1b2 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-sqlparse_0.1.10-1] file = python-sqlparse_0.1.10-1_all.deb md5 = 5d5e2d3f31599669331d2deadbede74f -source = repo:trusty +source = repo:trusty/universe/ [python-stevedore_1.3.0-0ubuntu1.1~cloud0] file = python-stevedore_1.3.0-0ubuntu1.1~cloud0_all.deb md5 = 078266951bf8d22cb8423dbbd7196c4d -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-suds_0.4.1-11ubuntu0.1] file = python-suds_0.4.1-11ubuntu0.1_all.deb md5 = 0f222270b439e25c2ae3e850d6dbc8b2 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-support_1.0.15] file = python-support_1.0.15_all.deb md5 = 0d45e460d9fb2de50444bf59de240a6f -source = repo:trusty +source = repo:trusty/universe/ [python-tempita_0.5.2-1build1] file = python-tempita_0.5.2-1build1_all.deb md5 = fa4fd67b02d761715923b71375fd6f08 -source = repo:trusty +source = repo:trusty/main/ [python-testresources_0.2.7-1ubuntu2] file = python-testresources_0.2.7-1ubuntu2_all.deb md5 = a4f093d3064d8839cc930af365c60547 -source = repo:trusty +source = repo:trusty/main/ [python-testscenarios_0.4-2ubuntu2] file = python-testscenarios_0.4-2ubuntu2_all.deb md5 = e6686084709fc63c00943d1f343c6541 -source = repo:trusty +source = repo:trusty/main/ [python-testtools_0.9.39-1~cloud0] file = python-testtools_0.9.39-1~cloud0_all.deb md5 = b08783ab9a50d4a157234e5785da559f -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-thrift_0.9.0-1build1] file = python-thrift_0.9.0-1build1_amd64.deb md5 = 8c575c6f55b81fb07c8b03c14c2be2fb -source = repo:trusty +source = repo:trusty/main/ [python-tooz_0.13.1-1ubuntu1~cloud0] file = python-tooz_0.13.1-1ubuntu1~cloud0_all.deb md5 = 9980cbda0844fee8fe058f8dd67aaaf2 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-twisted-bin_13.2.0-1ubuntu1] file = python-twisted-bin_13.2.0-1ubuntu1_amd64.deb md5 = 39a949056036e466cade398174562691 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-conch_1:13.2.0-1ubuntu1] file = python-twisted-conch_1%%3a13.2.0-1ubuntu1_all.deb md5 = b56ec1fca44c035778c468c934dad468 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-core_13.2.0-1ubuntu1] file = python-twisted-core_13.2.0-1ubuntu1_all.deb md5 = 9131bf286ce0473f29cfa8f3ccbaaf4e -source = repo:trusty +source = repo:trusty/main/ [python-twisted-lore_13.2.0-1ubuntu1] file = python-twisted-lore_13.2.0-1ubuntu1_all.deb md5 = fe1fb2faf26113f56cfe3f08c1409d24 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-mail_13.2.0-1ubuntu1] file = python-twisted-mail_13.2.0-1ubuntu1_all.deb md5 = 418831134dcef7e7cc5eb89a8e6072c3 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-names_13.2.0-1ubuntu1] file = python-twisted-names_13.2.0-1ubuntu1_all.deb md5 = e90b94dc1d359145a935fc5185e6a927 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-news_13.2.0-1ubuntu1] file = python-twisted-news_13.2.0-1ubuntu1_all.deb md5 = f902221c471866d3b669fdfc7003e8e3 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-runner_13.2.0-1ubuntu1] file = python-twisted-runner_13.2.0-1ubuntu1_amd64.deb md5 = 17b308323ceae618c2c45a98ab202fb5 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-web_13.2.0-1ubuntu1] file = python-twisted-web_13.2.0-1ubuntu1_all.deb md5 = 5143e752b56f1e0d31a4d544506af263 -source = repo:trusty +source = repo:trusty/main/ [python-twisted-words_13.2.0-1ubuntu1] file = python-twisted-words_13.2.0-1ubuntu1_all.deb md5 = 63af9f9ccdbcce16975d9704a89d9746 -source = repo:trusty +source = repo:trusty/main/ [python-twisted_13.2.0-1ubuntu1] file = python-twisted_13.2.0-1ubuntu1_all.deb md5 = 95d58118ed009eb63f45615787cb8375 -source = repo:trusty +source = repo:trusty/main/ [python-tz_2014.10~dfsg1-0ubuntu2~15.04.0~cloud0] file = python-tz_2014.10~dfsg1-0ubuntu2~15.04.0~cloud0_all.deb md5 = e03825d3bc3628ee78e59f03b5deb467 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[python-urllib3_1.9.1-3~cloud0_all.deb] +[python-urllib3_1.9.1-3~cloud0] file = python-urllib3_1.9.1-3~cloud0_all.deb md5 = 2de0f455d3d83cf764617e7501c7b84b -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-waitress_0.8.8-1ubuntu3] file = python-waitress_0.8.8-1ubuntu3_all.deb md5 = 684a0b7c8d8fa234c4fc289afc8914f6 -source = repo:trusty +source = repo:trusty/main/ [python-warlock_1.1.0-0ubuntu2] file = python-warlock_1.1.0-0ubuntu2_all.deb md5 = b21f1f41e9e0ff96112656890c98f314 -source = repo:trusty +source = repo:trusty/main/ [python-webob_1.3.1-1] file = python-webob_1.3.1-1_all.deb md5 = 703bfe383914afa08877b2a861b15508 -source = repo:trusty +source = repo:trusty/main/ [python-websocket_0.12.0-1ubuntu2] file = python-websocket_0.12.0-1ubuntu2_all.deb md5 = d5aa805d654c76f3ee51f0c08b7638fe -source = repo:trusty +source = repo:trusty/universe/ [python-webtest_2.0.14-1ubuntu1] file = python-webtest_2.0.14-1ubuntu1_all.deb md5 = 4291bf89503e270abfed8a8850a8210f -source = repo:trusty +source = repo:trusty/main/ [python-werkzeug_0.9.4+dfsg-1.1ubuntu2] file = python-werkzeug_0.9.4+dfsg-1.1ubuntu2_all.deb md5 = 0b840568dce7365757d1146c8570466c -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-wsme_0.6.4-0ubuntu1~cloud0] file = python-wsme_0.6.4-0ubuntu1~cloud0_all.deb md5 = 438b75c7784317e55167798702736545 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-zake_0.1.6-1~cloud0] file = python-zake_0.1.6-1~cloud0_all.deb md5 = c4cd5d66fb9dd2e39d42d8cc3f9110cc -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-zope.interface_4.0.5-1ubuntu4] file = python-zope.interface_4.0.5-1ubuntu4_amd64.deb md5 = 74638361153d4f40914cdfb23a2d1523 -source = repo:trusty +source = repo:trusty/main/ -[python3-apport_2.14.1-0ubuntu3.19] -file = python3-apport_2.14.1-0ubuntu3.19_all.deb -md5 = 9b2b1a10057042920d9cded35f3ba33c -source = repo:trusty-updates +[python2.7-minimal_2.7.6-8ubuntu0.2] +file = python2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb +md5 = cb8b7f9637e05f64482f6657ef4df02f +source = repo:trusty-updates/main -[python3-pkg-resources_3.3-1ubuntu2] -file = python3-pkg-resources_3.3-1ubuntu2_all.deb -md5 = e44cbc2a92ab2c53d01c7d54a79020f0 -source = repo:trusty-updates +[python2.7_2.7.6-8ubuntu0.2] +file = python2.7_2.7.6-8ubuntu0.2_amd64.deb +md5 = fb63cafe276fd18b231ae3d1d695157e +source = repo:trusty-updates/main -[python3-problem-report_2.14.1-0ubuntu3.19] -file = python3-problem-report_2.14.1-0ubuntu3.19_all.deb -md5 = 328e0066fe51762028434d99cb60266f -source = repo:trusty-updates +[python3-apport_2.14.1-0ubuntu3.21] +file = python3-apport_2.14.1-0ubuntu3.21_all.deb +md5 = c647ddd76cd9cb5a531ce175e81746a6 +source = repo:trusty-updates/main/ + +[python3-problem-report_2.14.1-0ubuntu3.21] +file = python3-problem-report_2.14.1-0ubuntu3.21_all.deb +md5 = be1c2b9746879df60c815d561d42d4c8 +source = repo:trusty-updates/main/ [python3-pycurl_7.19.3-0ubuntu3] file = python3-pycurl_7.19.3-0ubuntu3_amd64.deb md5 = 4a8692a3639a46f0c512f5d77f42ff16 -source = repo:trusty +source = repo:trusty/main/ -[python3-software-properties_0.92.37.6] -file = python3-software-properties_0.92.37.6_all.deb -md5 = 64d63a664b59f54751946c8056df0673 -source = repo:trusty-updates +[python3-software-properties_0.92.37.7] +file = python3-software-properties_0.92.37.7_all.deb +md5 = 00da7ba0cac32440cdd8c2137ca9771e +source = repo:trusty-updates/main/ [qemu-slof_20140630+dfsg-1ubuntu1~14.04] file = qemu-slof_20140630+dfsg-1ubuntu1~14.04_all.deb md5 = 9253268d9c35dcdbdbfe2cdd966eac42 -source = repo:trusty-updates +source = repo:trusty-updates/main/ -[qemu-system-arm_1:2.2+dfsg-5expubuntu9.3~cloud0] -file = qemu-system-arm_1%%3a2.2+dfsg-5expubuntu9.3~cloud0_amd64.deb -md5 = f3746eb8a188892fd68896dd55080ddf -source = repo:trusty-updates-kilo - -[qemu-system-common_1:2.2+dfsg-5expubuntu9.3~cloud0] -file = qemu-system-common_1%%3a2.2+dfsg-5expubuntu9.3~cloud0_amd64.deb -md5 = 573bf712372edb04041603a1a88a750c -source = repo:trusty-updates-kilo - -[qemu-system-mips_1:2.2+dfsg-5expubuntu9.3~cloud0] -file = qemu-system-mips_1%%3a2.2+dfsg-5expubuntu9.3~cloud0_amd64.deb -md5 = be0e1417742f60fd7cb318f9bf27adcc -source = repo:trusty-updates-kilo - -[qemu-system-misc_1:2.2+dfsg-5expubuntu9.3~cloud0] -file = qemu-system-misc_1%%3a2.2+dfsg-5expubuntu9.3~cloud0_amd64.deb -md5 = 0fdd6f12913de9559b29aa3c0f940157 -source = repo:trusty-updates-kilo - -[qemu-system-ppc_1:2.2+dfsg-5expubuntu9.3~cloud0] -file = qemu-system-ppc_1%%3a2.2+dfsg-5expubuntu9.3~cloud0_amd64.deb -md5 = 1ce552c5ad0740604313f28bc496f17c -source = repo:trusty-updates-kilo - -[qemu-system-sparc_1:2.2+dfsg-5expubuntu9.3~cloud0] -file = qemu-system-sparc_1%%3a2.2+dfsg-5expubuntu9.3~cloud0_amd64.deb -md5 = 86b792128005e58801c1e1c3f275c5b8 -source = repo:trusty-updates-kilo - -[qemu-system-x86_1:2.2+dfsg-5expubuntu9.3~cloud0] -file = qemu-system-x86_1%%3a2.2+dfsg-5expubuntu9.3~cloud0_amd64.deb -md5 = 41091c578777dd747bd593900d5363b5 -source = repo:trusty-updates-kilo - -[qemu-system_1:2.2+dfsg-5expubuntu9.3~cloud0] -file = qemu-system_1%%3a2.2+dfsg-5expubuntu9.3~cloud0_amd64.deb -md5 = 93cf6aa3b80f9309c899135fc300b9f1 -source = repo:trusty-updates-kilo - -[qemu-utils_1:2.2+dfsg-5expubuntu9.3~cloud0] -file = qemu-utils_1%%3a2.2+dfsg-5expubuntu9.3~cloud0_amd64.deb -md5 = 2059643085c4776112ef0e2f67e2104d -source = repo:trusty-updates-kilo +[qemu-system-arm_1:2.2+dfsg-5expubuntu9.7~cloud5] +file = qemu-system-arm_1%%3a2.2+dfsg-5expubuntu9.7~cloud5_amd64.deb +md5 = 9d5fdbc4e0c2f972e10dd40f06b01516 +source = repo:trusty-updates-kilo/main/ + +[qemu-system-common_1:2.2+dfsg-5expubuntu9.7~cloud5] +file = qemu-system-common_1%%3a2.2+dfsg-5expubuntu9.7~cloud5_amd64.deb +md5 = 303c7377b96cb2c9e807138ec26e7921 +source = repo:trusty-updates-kilo/main/ + +[qemu-system-mips_1:2.2+dfsg-5expubuntu9.7~cloud5] +file = qemu-system-mips_1%%3a2.2+dfsg-5expubuntu9.7~cloud5_amd64.deb +md5 = c7c1c6cdfc5d21de9ddb1000400cca67 +source = repo:trusty-updates-kilo/main/ + +[qemu-system-misc_1:2.2+dfsg-5expubuntu9.7~cloud5] +file = qemu-system-misc_1%%3a2.2+dfsg-5expubuntu9.7~cloud5_amd64.deb +md5 = a3272fe0baa791c275e654fe40c36d27 +source = repo:trusty-updates-kilo/main/ + +[qemu-system-ppc_1:2.2+dfsg-5expubuntu9.7~cloud5] +file = qemu-system-ppc_1%%3a2.2+dfsg-5expubuntu9.7~cloud5_amd64.deb +md5 = 005560efa11a4c99c525da07a955d523 +source = repo:trusty-updates-kilo/main/ + +[qemu-system-sparc_1:2.2+dfsg-5expubuntu9.7~cloud5] +file = qemu-system-sparc_1%%3a2.2+dfsg-5expubuntu9.7~cloud5_amd64.deb +md5 = ed8417d11645e54c57eb3e6575c3bc13 +source = repo:trusty-updates-kilo/main/ + +[qemu-system-x86_1:2.2+dfsg-5expubuntu9.7~cloud5] +file = qemu-system-x86_1%%3a2.2+dfsg-5expubuntu9.7~cloud5_amd64.deb +md5 = 2c94042cecde9e40373f1598ffe7634a +source = repo:trusty-updates-kilo/main/ + +[qemu-system_1:2.2+dfsg-5expubuntu9.7~cloud5] +file = qemu-system_1%%3a2.2+dfsg-5expubuntu9.7~cloud5_amd64.deb +md5 = 953d57216806f89ba742e373edd77444 +source = repo:trusty-updates-kilo/main/ + +[qemu-utils_1:2.2+dfsg-5expubuntu9.7~cloud5] +file = qemu-utils_1%%3a2.2+dfsg-5expubuntu9.7~cloud5_amd64.deb +md5 = 48a30b9f692d5ab479bb8b8413a175df +source = repo:trusty-updates-kilo/main/ [redis-server_2:2.8.4-2] file = redis-server_2%%3a2.8.4-2_amd64.deb md5 = 066f3ce93331b876b691df69d11b7e36 -source = repo:trusty +source = repo:trusty/universe/ [redis-tools_2:2.8.4-2] file = redis-tools_2%%3a2.8.4-2_amd64.deb md5 = 14b24b44ae06d6a46022189296e0777c -source = repo:trusty +source = repo:trusty/universe/ [rpcbind_0.2.1-2ubuntu2.2] file = rpcbind_0.2.1-2ubuntu2.2_amd64.deb md5 = 279a20e0acfea4036bce808ee12db789 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [seabios_1.7.5-1ubuntu1~cloud0] file = seabios_1.7.5-1ubuntu1~cloud0_all.deb md5 = 6189867104886cb4958a072a637004e7 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [sharutils_1:4.14-1ubuntu1] file = sharutils_1%%3a4.14-1ubuntu1_amd64.deb md5 = 021cd2f95dd7fa1b4218d1caf50c882e -source = repo:trusty +source = repo:trusty/main/ [smitools_0.4.8+dfsg2-8ubuntu2] file = smitools_0.4.8+dfsg2-8ubuntu2_amd64.deb md5 = 275282c46c804b85014f83eb482711a2 -source = repo:trusty +source = repo:trusty/universe/ -[software-properties-common_0.92.37.6] -file = software-properties-common_0.92.37.6_all.deb -md5 = 62cff73fec96cf1972772f35e7fbc0e8 -source = repo:trusty-updates +[software-properties-common_0.92.37.7] +file = software-properties-common_0.92.37.7_all.deb +md5 = 195890432324c90ea6a0e1c332f953d6 +source = repo:trusty-updates/main/ [sphinx-common_1.2.2+dfsg-1ubuntu1.1] file = sphinx-common_1.2.2+dfsg-1ubuntu1.1_all.deb md5 = 5828c78b2e322b2fa0b3cbc4f690d3cc -source = repo:trusty-updates +source = repo:trusty-updates/main/ [sphinx-doc_1.2.2+dfsg-1ubuntu1.1] file = sphinx-doc_1.2.2+dfsg-1ubuntu1.1_all.deb md5 = 8a3819b9976a42780fd4b102f690c158 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [ssl-cert_1.0.33] file = ssl-cert_1.0.33_all.deb md5 = bb2d2f616d7b4da9b76caa98002657eb -source = repo:trusty +source = repo:trusty/main/ [traceroute_1:2.0.20-0ubuntu0.1] file = traceroute_1%%3a2.0.20-0ubuntu0.1_amd64.deb md5 = 93a8bd9e60f84d8155b60c56f39c6aa2 -source = repo:trusty-updates +source = repo:trusty-updates/universe/ [ttf-dejavu-core_2.34-1ubuntu1] file = ttf-dejavu-core_2.34-1ubuntu1_all.deb md5 = 9a1638907f97e9374172634e274f71fb -source = repo:trusty-updates/main/ +source = repo:trusty/main/ -[tzdata-java_2015g-0ubuntu0.14.04] -file = tzdata-java_2015g-0ubuntu0.14.04_all.deb -md5 = 1aeed033ab69e10dd6b21a2d5f7d5ebf -source = repo:trusty-updates +[tzdata-java_2016f-0ubuntu0.14.04] +file = tzdata-java_2016f-0ubuntu0.14.04_all.deb +md5 = 5620efdbb515981213d76b01d5a1c6b0 +source = repo:trusty-updates/main/ -[tzdata_2015g-0ubuntu0.14.04] -file = tzdata_2015g-0ubuntu0.14.04_all.deb -md5 = 5474d9feb700f6b4c2895e79d37cba86 -source = repo:trusty-updates +[tzdata_2016f-0ubuntu0.14.04] +file = tzdata_2016f-0ubuntu0.14.04_all.deb +md5 = 8853ac8e274c495758674be2ca67aa0d +source = repo:trusty-updates/main/ -[unattended-upgrades_0.82.1ubuntu2.3] -file = unattended-upgrades_0.82.1ubuntu2.3_all.deb -md5 = bdea6c95a3247fa735d73307bcebd31e -source = repo:trusty-updates +[unattended-upgrades_0.82.1ubuntu2.4] +file = unattended-upgrades_0.82.1ubuntu2.4_all.deb +md5 = c635e645c9d91eb2d4d182d97098150a +source = repo:trusty-updates/main/ [update-inetd_4.43] file = update-inetd_4.43_all.deb @@ -2584,17 +2551,17 @@ source = repo:trusty/main/ [vbetool_1.1-3] file = vbetool_1.1-3_amd64.deb md5 = e5487da0e86050f4ce7804dc8f822256 -source = repo:trusty +source = repo:trusty/main/ [vlan_1.9-3ubuntu10] file = vlan_1.9-3ubuntu10_amd64.deb md5 = c542a1bacbad438f028c8da3afa30295 -source = repo:trusty +source = repo:trusty/main/ [websockify_0.6.0+dfsg1-1~cloud1] file = websockify_0.6.0+dfsg1-1~cloud1_amd64.deb md5 = 406682f8b0d3eaa36df6a541c9e77700 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [xinetd_1:2.3.15-3ubuntu1] file = xinetd_1%%3a2.3.15-3ubuntu1_amd64.deb @@ -2604,44 +2571,24 @@ source = repo:trusty/main/ [xmlsec1_1.2.18-2ubuntu1] file = xmlsec1_1.2.18-2ubuntu1_amd64.deb md5 = d12fe050398d9f63d7a3be0be656c3bb -source = repo:trusty +source = repo:trusty/universe/ [zookeeper_3.4.5+dfsg-1] file = zookeeper_3.4.5+dfsg-1_all.deb md5 = 59083991e535cb097e9db55714b78589 -source = repo:trusty - -[gcc-4.8-base] -file = gcc-4.8-base_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = c573cb28348168922145e6fcb8120fd9 -source = repo:trusty-updates - -[keyutils_1.5.6-1] -file = keyutils_1.5.6-1_amd64.deb -md5 = a49da8cb9cc16bdaf1ef8b205bf99d2e -source = repo:trusty - -[libstdc++6_4.8.4-2ubuntu1] -file = libstdc++6_4.8.4-2ubuntu1~14.04_amd64.deb -md5 = bfe435106e74f02e4b5377753ce8d920 -source = repo:trusty-updates - -[libpython2.7-minimal_2.7.6-8ubuntu0.2] -file = libpython2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb -md5 = 48d76dcd9239d2970d3866d6082a48c6 -source = repo:trusty-updates +source = repo:trusty/universe/ -[libpython2.7-stdlib_2.7.6-8ubuntu0.2] -file = libpython2.7-stdlib_2.7.6-8ubuntu0.2_amd64.deb -md5 = accc8dfb0ff3e0440e66f4c4c9589854 -source = repo:trusty-updates +[libpython2.7-dev_2.7.6-8ubuntu0.2] +file = libpython2.7-dev_2.7.6-8ubuntu0.2_amd64.deb +md5 = 8d59685b68713072a86e278b6b5b22ab +source = repo:trusty-updates/main/ -[python2.7_2.7.6-8ubuntu0.2] -file = python2.7_2.7.6-8ubuntu0.2_amd64.deb -md5 = fb63cafe276fd18b231ae3d1d695157e -source = repo:trusty-updates +[python-dev_2.7.5-5ubuntu3] +file = python-dev_2.7.5-5ubuntu3_amd64.deb +md5 = 0fb9dbd4067f94dc4cd894cefc50fe47 +source = repo:trusty/main/ -[python2.7-minimal_2.7.6-8ubuntu0.2] -file = python2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb -md5 = cb8b7f9637e05f64482f6657ef4df02f -source = repo:trusty-updates +[python2.7-dev_2.7.6-8ubuntu0.2] +file = python2.7-dev_2.7.6-8ubuntu0.2_amd64.deb +md5 = b329c89de034410c49eb9525597c11c6 +source = repo:trusty-updates/main/ diff --git a/build/package_configs/ubuntu1404/kilo/depends_contrail_installer_packages.cfg b/build/package_configs/ubuntu1404/kilo/depends_contrail_installer_packages.cfg index 8d01fd18b..bcd11f260 100644 --- a/build/package_configs/ubuntu1404/kilo/depends_contrail_installer_packages.cfg +++ b/build/package_configs/ubuntu1404/kilo/depends_contrail_installer_packages.cfg @@ -19,6 +19,12 @@ # # then that package file will be packaged in # # the wrapper package contrail-dependent-packages # +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded # **************************************************************************** [DEFAULT] @@ -27,108 +33,323 @@ md5 = location = package_type = contrail-install-packages, contrail-dependent-packages, contrail-installer-packages -[binutils_2.24-5ubuntu14] -file = binutils_2.24-5ubuntu14_amd64.deb -md5 = acc66ab441dec5bcf46c2e261b1de31d -source = repo:trusty-updates +[binutils_2.24-5ubuntu14.1] +file = binutils_2.24-5ubuntu14.1_amd64.deb +md5 = 85dd95077b946a274f9814639eba4d06 +source = repo:trusty-updates/main/ -[curl_7.35.0-1ubuntu2.5] -file = curl_7.35.0-1ubuntu2.5_amd64.deb -md5 = 180863ae8fa9003164506da97f95a89e -source = repo:trusty-updates +[build-essential_11.6ubuntu6] +file = build-essential_11.6ubuntu6_amd64.deb +md5 = 6fa3d082885a7440d512236685cd24fd +source = repo:trusty/main/ -[dpkg-dev_1.17.5ubuntu5.4] -file = dpkg-dev_1.17.5ubuntu5.4_all.deb -md5 = 64bb3c20f3579a51dab71ec7e7114dd9 -source = repo:trusty-updates +[cpp-4.8_4.8.4-2ubuntu1~14.04.3] +file = cpp-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c87a404428865790862aeb6195811066 +source = repo:trusty-updates/main/ + +[cpp_4:4.8.2-1ubuntu6] +file = cpp_4%%3a4.8.2-1ubuntu6_amd64.deb +md5 = 2ced23b24cf068b16b5a69222506fd79 +source = repo:trusty/main/ + +[curl_7.35.0-1ubuntu2.9] +file = curl_7.35.0-1ubuntu2.9_amd64.deb +md5 = a2384903f4693ad7dc74b59360741c14 +source = repo:trusty-updates/main/ + +[dpkg-dev_1.17.5ubuntu5.7] +file = dpkg-dev_1.17.5ubuntu5.7_all.deb +md5 = c1d73ee78c457f5f557c0cd4340fd5d3 +source = repo:trusty-updates/main/ + +[fakeroot_1.20-3ubuntu2] +file = fakeroot_1.20-3ubuntu2_amd64.deb +md5 = fad29881d632a463f5235f399fa65a14 +source = repo:trusty/main/ + +[g++-4.8_4.8.4-2ubuntu1~14.04.3] +file = g++-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ffc4c3bc3fe036fd18e79399caea1586 +source = repo:trusty-updates/main/ + +[g++_4:4.8.2-1ubuntu6] +file = g++_4%%3a4.8.2-1ubuntu6_amd64.deb +md5 = 7332a4e9116b821e167a3d0236ca413a +source = repo:trusty/main/ + +[gcc-4.8-base_4.8.4-2ubuntu1~14.04.3] +file = gcc-4.8-base_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 691b4cb367c62b79511541a3cee41fda +source = repo:trusty-updates/main/ + +[gcc-4.8_4.8.4-2ubuntu1~14.04.3] +file = gcc-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c53635e53f577687409b4c3c93f4da80 +source = repo:trusty-updates/main/ + +[gcc_4:4.8.2-1ubuntu6] +file = gcc_4%%3a4.8.2-1ubuntu6_amd64.deb +md5 = 83b25d71df6df1c47a4b983596896f0b +source = repo:trusty/main/ [ieee-data_20131224.1] file = ieee-data_20131224.1_all.deb md5 = 1bc31412dad4d90a6ea1ee42eaac5192 -source = repo:trusty +source = repo:trusty/universe/ + +[libalgorithm-diff-perl_1.19.02-3] +file = libalgorithm-diff-perl_1.19.02-3_all.deb +md5 = 7462f70e9e9b691ca4a4657371d6ba8e +source = repo:trusty/main/ + +[libalgorithm-diff-xs-perl_0.04-2build4] +file = libalgorithm-diff-xs-perl_0.04-2build4_amd64.deb +md5 = a1bd654bf2b8f30d464a6f95225a0744 +source = repo:trusty/main/ -[libcurl3_7.35.0-1ubuntu2.5] -file = libcurl3_7.35.0-1ubuntu2.5_amd64.deb -md5 = b3396e79e61f04a1fef0785bb9f3b5f7 -source = repo:trusty-updates +[libalgorithm-merge-perl_0.08-2] +file = libalgorithm-merge-perl_0.08-2_all.deb +md5 = bf1355aea7ab249fcd344cf0c692bc6c +source = repo:trusty/main/ -[libdpkg-perl_1.17.5ubuntu5.4] -file = libdpkg-perl_1.17.5ubuntu5.4_all.deb -md5 = e18222ac6f6912521bdcf96fdade214d -source = repo:trusty-updates +[libasan0_4.8.4-2ubuntu1~14.04.3] +file = libasan0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ff04bb046aeec86af2bb90c5d90a166c +source = repo:trusty-updates/main/ + +[libatomic1_4.8.4-2ubuntu1~14.04.3] +file = libatomic1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ec6ce0fb6e66e8b8c95534ab9e77a67e +source = repo:trusty-updates/main/ + +[libc-dev-bin_2.19-0ubuntu6.9] +file = libc-dev-bin_2.19-0ubuntu6.9_amd64.deb +md5 = aa72bd06ea171705087d6f090a2cc8a6 +source = repo:trusty-updates/main/ + +[libc6-dev_2.19-0ubuntu6.9] +file = libc6-dev_2.19-0ubuntu6.9_amd64.deb +md5 = f4971e129e81195e8445a4a5f1bb1123 +source = repo:trusty-updates/main/ + +[libc6_2.19-0ubuntu6.9] +file = libc6_2.19-0ubuntu6.9_amd64.deb +md5 = 422dff6f1563aa40a0ab3ea2a9509025 +source = repo:trusty-updates/main/ + +[libcloog-isl4_0.18.2-1] +file = libcloog-isl4_0.18.2-1_amd64.deb +md5 = da71de63b0e24eb02afb817c0b285d6a +source = repo:trusty/main/ + +[libcurl3_7.35.0-1ubuntu2.9] +file = libcurl3_7.35.0-1ubuntu2.9_amd64.deb +md5 = ab4d32b4d76c2f2c8cd5069b66b08a91 +source = repo:trusty-updates/main/ + +[libdpkg-perl_1.17.5ubuntu5.7] +file = libdpkg-perl_1.17.5ubuntu5.7_all.deb +md5 = 7f0c96b6386a43c1caa731d15f1f5fe4 +source = repo:trusty-updates/main/ + +[libfakeroot_1.20-3ubuntu2] +file = libfakeroot_1.20-3ubuntu2_amd64.deb +md5 = 856c7401d7d5a63ea231f706c18d9261 +source = repo:trusty/main/ + +[libfile-fcntllock-perl_0.14-2build1] +file = libfile-fcntllock-perl_0.14-2build1_amd64.deb +md5 = 18813758778ece61bcdf84018218fc1d +source = repo:trusty/main/ + +[libgcc-4.8-dev_4.8.4-2ubuntu1~14.04.3] +file = libgcc-4.8-dev_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 69ff74311eecda1487d0f96b14af0b7c +source = repo:trusty-updates/main/ [libgmp10_2:5.1.3+dfsg-1ubuntu1] file = libgmp10_2%%3a5.1.3+dfsg-1ubuntu1_amd64.deb md5 = 5a25bb81aa2e0ca83e2d349d58b435d5 -source = repo:trusty +source = repo:trusty/main/ + +[libgomp1_4.8.4-2ubuntu1~14.04.3] +file = libgomp1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 8f95195693e2cbb56825fd9b2b9ffca0 +source = repo:trusty-updates/main/ + +[libisl10_0.12.2-1] +file = libisl10_0.12.2-1_amd64.deb +md5 = b9756a5cce1ecd2d56652779d9e3b757 +source = repo:trusty/main/ + +[libitm1_4.8.4-2ubuntu1~14.04.3] +file = libitm1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 52e717ed8662a3986997412f42abc297 +source = repo:trusty-updates/main/ + +[libmpc3_1.0.1-1ubuntu1] +file = libmpc3_1.0.1-1ubuntu1_amd64.deb +md5 = c5749c5428040f492bc9d00b0101b8a8 +source = repo:trusty/main/ + +[libmpfr4_3.1.2-1] +file = libmpfr4_3.1.2-1_amd64.deb +md5 = 3ff03e231bf643436f087da42faaad6d +source = repo:trusty/main/ + +[libquadmath0_4.8.4-2ubuntu1~14.04.3] +file = libquadmath0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = f541cc61c3feaa74098bdb9970ed12b6 +source = repo:trusty-updates/main/ + +[libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04.3] +file = libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 7657e54922455ae36c7b2f7228427aec +source = repo:trusty-updates/main/ + +[libstdc++6_4.8.4-2ubuntu1~14.04.3] +file = libstdc++6_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 3fe9099e0064fa8030f047ff38e075c2 +source = repo:trusty-updates/main/ + +[libtsan0_4.8.4-2ubuntu1~14.04.3] +file = libtsan0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c4232ca2be66b95d74e8823a9868a9b4 +source = repo:trusty-updates/main/ [libyaml-0-2_0.1.4-3ubuntu3.1] file = libyaml-0-2_0.1.4-3ubuntu3.1_amd64.deb md5 = 4dcc359331403252136be3490c923fc9 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[linux-libc-dev_3.13.0-95.142] +file = linux-libc-dev_3.13.0-95.142_amd64.deb +md5 = 4ba5f7a29d5f021c13bdffa248dbd521 +source = repo:trusty-updates/main/ [make_3.81-8.2ubuntu3] file = make_3.81-8.2ubuntu3_amd64.deb md5 = 6442fbef4450fc977fb1ab6297cf7797 -source = repo:trusty +source = repo:trusty/main/ + +[manpages-dev_3.54-1ubuntu1] +file = manpages-dev_3.54-1ubuntu1_all.deb +md5 = 8b108211126e2798112fbd55292e5690 +source = repo:trusty/main/ [patch_2.7.1-4ubuntu2.3] file = patch_2.7.1-4ubuntu2.3_amd64.deb md5 = 4f07a01b36e3a60a34c3bcef647894ae -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[python-chardet-whl_2.2.1-2~ubuntu1] +file = python-chardet-whl_2.2.1-2~ubuntu1_all.deb +md5 = d882e156f6af98454a96cae30ae58784 +source = repo:trusty-updates/universe/ + +[python-colorama-whl_0.2.5-0.1ubuntu2] +file = python-colorama-whl_0.2.5-0.1ubuntu2_all.deb +md5 = 2c4ecb5b3fc49ae20510d3aac886b66a +source = repo:trusty-updates/universe/ [python-colorama_0.2.5-0.1ubuntu2] file = python-colorama_0.2.5-0.1ubuntu2_all.deb md5 = b06bc963962c3f3c97f5d1da53a56f3f -source = repo:trusty-updates +source = repo:trusty-updates/universe/ [python-crypto_2.6.1-4build1] file = python-crypto_2.6.1-4build1_amd64.deb md5 = 14de358cc59ab40ee9c90f3582591f79 -source = repo:trusty +source = repo:trusty/main/ + +[python-distlib-whl_0.1.8-1ubuntu1] +file = python-distlib-whl_0.1.8-1ubuntu1_all.deb +md5 = 93792a4c21365ded4316fdb5bc895dd5 +source = repo:trusty-updates/universe/ [python-distlib_0.1.8-1ubuntu1] file = python-distlib_0.1.8-1ubuntu1_all.deb md5 = b3288d6d230096c11d69ebe18c44ed83 -source = repo:trusty-updates +source = repo:trusty-updates/universe/ [python-ecdsa_0.11-1~cloud0] file = python-ecdsa_0.11-1~cloud0_all.deb md5 = 36b0f4b99c1e047d8069321c63a1f305 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ + +[python-html5lib-whl_0.999-3~ubuntu1] +file = python-html5lib-whl_0.999-3~ubuntu1_all.deb +md5 = bc6bd5baa70ace380513925f749857fa +source = repo:trusty-updates/main/ [python-html5lib_0.999-3~ubuntu1] file = python-html5lib_0.999-3~ubuntu1_all.deb md5 = 93c4140d32e1addb8231a3e0be557c93 -source = repo:trusty-updates +source = repo:trusty-updates/main/ [python-netaddr_0.7.12-2~cloud0] file = python-netaddr_0.7.12-2~cloud0_all.deb md5 = 7c234b9f7f0c8fc6e22b7adeb054b0be -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-paramiko_1.15.1-1~cloud0] file = python-paramiko_1.15.1-1~cloud0_all.deb md5 = 9bdddb479976f8b284b4d612994532df -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[python-pip_1.5.4-1ubuntu1] -file = python-pip_1.5.4-1ubuntu1_all.deb -md5 = bee834c024b253193dab55ae31f9791d -source = repo:trusty-updates +[python-pip-whl_1.5.4-1ubuntu4] +file = python-pip-whl_1.5.4-1ubuntu4_all.deb +md5 = 45dd75216ca01ef0758e98b89d88093f +source = repo:trusty-updates/universe/ + +[python-pip_1.5.4-1ubuntu4] +file = python-pip_1.5.4-1ubuntu4_all.deb +md5 = 2f9893e68cba11320605bbc554000b2f +source = repo:trusty-updates/universe/ [python-pkg-resources_3.3-1ubuntu2] file = python-pkg-resources_3.3-1ubuntu2_all.deb md5 = d12cb222f33ac215006d472c63d3aeb8 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[python-requests-whl_2.4.3-6~cloud0] +file = python-requests-whl_2.4.3-6~cloud0_all.deb +md5 = 9dcdf9026fcd1a9f5e53314f191dd36c +source = repo:trusty-updates-kilo/main/ + +[python-setuptools-whl_3.3-1ubuntu2] +file = python-setuptools-whl_3.3-1ubuntu2_all.deb +md5 = bed8daea8be2938af22a1bc7fdc0d9f1 +source = repo:trusty-updates/main/ [python-setuptools_3.3-1ubuntu2] file = python-setuptools_3.3-1ubuntu2_all.deb md5 = 095838ab2e8028796486463d62e5b88b -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[python-six-whl_1.9.0-1~cloud0] +file = python-six-whl_1.9.0-1~cloud0_all.deb +md5 = fbe158bd2e0418562f21c1cb38105781 +source = repo:trusty-updates-kilo/main/ + +[python-urllib3-whl_1.9.1-3~cloud0] +file = python-urllib3-whl_1.9.1-3~cloud0_all.deb +md5 = 753d61dbd9edf95fd26e2eee9f420b3a +source = repo:trusty-updates-kilo/main/ + +[python-wheel_0.24.0-1~ubuntu1] +file = python-wheel_0.24.0-1~ubuntu1_all.deb +md5 = a1f3817d6dc2aa707d1ac2a075fabf37 +source = repo:trusty-updates/main/ [python-yaml_3.10-4ubuntu0.1] file = python-yaml_3.10-4ubuntu0.1_amd64.deb md5 = 3bbc120de69a86a8f0b996d722437fd4 -source = repo:trusty-updates +source = repo:trusty-updates/main/ + +[python3-pkg-resources_3.3-1ubuntu2] +file = python3-pkg-resources_3.3-1ubuntu2_all.deb +md5 = e44cbc2a92ab2c53d01c7d54a79020f0 +source = repo:trusty-updates/main/ diff --git a/build/package_configs/ubuntu1404/kilo/depends_contrail_openstack_packages.cfg b/build/package_configs/ubuntu1404/kilo/depends_contrail_openstack_packages.cfg index d7d52e0dc..541c73aaf 100644 --- a/build/package_configs/ubuntu1404/kilo/depends_contrail_openstack_packages.cfg +++ b/build/package_configs/ubuntu1404/kilo/depends_contrail_openstack_packages.cfg @@ -19,224 +19,220 @@ # # then that package file will be packaged in # # the wrapper package contrail-dependent-packages # +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded # **************************************************************************** [DEFAULT] file = md5 = location = -package_type = contrail-install-packages, contrail-openstack-packages +package_type = contrail-install-packages, contrail-openstack-packages -[ceilometer-agent-central_2015.1.2-0ubuntu1~cloud0] -file = ceilometer-agent-central_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 80f7477c37dc990f3a325a9e120047e7 -source = repo:trusty-updates-kilo +[ceilometer-agent-central_2015.1.4-0ubuntu1] +file = ceilometer-agent-central_2015.1.4-0ubuntu1_all.deb +md5 = 34e19c29ce367082c5163d7a19dba6fd +source = repo:trusty-updates-kilo/main/ -[ceilometer-agent-compute_2015.1.2-0ubuntu1~cloud0] -file = ceilometer-agent-compute_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 46ac99ccef4e064404f1c21c3a73295f -source = repo:trusty-updates-kilo +[ceilometer-agent-compute_2015.1.4-0ubuntu1] +file = ceilometer-agent-compute_2015.1.4-0ubuntu1_all.deb +md5 = 8791b00c515d22bdacdcc35c3f6726f8 +source = repo:trusty-updates-kilo/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -[ceilometer-agent-notification_2015.1.2-0ubuntu1~cloud0] -file = ceilometer-agent-notification_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 7a2a775c996e431304dcbfd106faaca3 -source = repo:trusty-updates-kilo - -[ceilometer-alarm-evaluator_2015.1.2-0ubuntu1~cloud0] -file = ceilometer-alarm-evaluator_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 000df2673697890412dfa64d7540d891 -source = repo:trusty-updates-kilo - -[ceilometer-alarm-notifier_2015.1.2-0ubuntu1~cloud0] -file = ceilometer-alarm-notifier_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 762104e24f05ce46fd76b029bd690db2 -source = repo:trusty-updates-kilo - -[ceilometer-api_2015.1.2-0ubuntu1~cloud0] -file = ceilometer-api_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 05e7dedce56a7854252163e7e24d66e2 -source = repo:trusty-updates-kilo - -[ceilometer-collector_2015.1.2-0ubuntu1~cloud0] -file = ceilometer-collector_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 392583bf43dcfeabba9a2d2d5b75633b -source = repo:trusty-updates-kilo - -[ceilometer-common_2015.1.2-0ubuntu1~cloud0] -file = ceilometer-common_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 4b104745e860414d5c3b37422f1e0cf2 -source = repo:trusty-updates-kilo +[ceilometer-agent-notification_2015.1.4-0ubuntu1] +file = ceilometer-agent-notification_2015.1.4-0ubuntu1_all.deb +md5 = 42fe98a24e8a6e1d51159676710f55b5 +source = repo:trusty-updates-kilo/main/ + +[ceilometer-alarm-evaluator_2015.1.4-0ubuntu1] +file = ceilometer-alarm-evaluator_2015.1.4-0ubuntu1_all.deb +md5 = 509eb68cdc6076e4eeb657aee3d2d902 +source = repo:trusty-updates-kilo/main/ + +[ceilometer-alarm-notifier_2015.1.4-0ubuntu1] +file = ceilometer-alarm-notifier_2015.1.4-0ubuntu1_all.deb +md5 = c8d71b09b29f3d2c0531718f20a91b22 +source = repo:trusty-updates-kilo/main/ + +[ceilometer-api_2015.1.4-0ubuntu1] +file = ceilometer-api_2015.1.4-0ubuntu1_all.deb +md5 = ca6c1c53051c92d7511f38507818e6c2 +source = repo:trusty-updates-kilo/main/ + +[ceilometer-collector_2015.1.4-0ubuntu1] +file = ceilometer-collector_2015.1.4-0ubuntu1_all.deb +md5 = 4f9d2b849c7619739d88d13f14642c84 +source = repo:trusty-updates-kilo/main/ + +[ceilometer-common_2015.1.4-0ubuntu1] +file = ceilometer-common_2015.1.4-0ubuntu1_all.deb +md5 = ae10a549f5256c2a5944aa79b0ecd20a +source = repo:trusty-updates-kilo/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -[cinder-api_1:2015.1.2-0ubuntu1~cloud0] -file = cinder-api_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 681960891c07ab08f9871f6a35b13a54 -source = repo:trusty-updates-kilo - -[cinder-common_1:2015.1.2-0ubuntu1~cloud0] -file = cinder-common_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 551d2591a4d300056e7a02922d998806 -source = repo:trusty-updates-kilo - -[cinder-scheduler_1:2015.1.2-0ubuntu1~cloud0] -file = cinder-scheduler_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = b40e2dbf11e2858f154b0b65be771250 -source = repo:trusty-updates-kilo - -[glance-api_1:2015.1.2-0ubuntu1~cloud0] -file = glance-api_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 3354ce811bed6d0162f6a4769c1bf8d7 -source = repo:trusty-updates-kilo - -[glance-common_1:2015.1.2-0ubuntu1~cloud0] -file = glance-common_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 8f7e986198b92d33df25cdee5dbd2d1c -source = repo:trusty-updates-kilo - -[glance-registry_1:2015.1.2-0ubuntu1~cloud0] -file = glance-registry_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 78c480bd6181bde156d65f2dcc83e81c -source = repo:trusty-updates-kilo - -[glance_1:2015.1.2-0ubuntu1~cloud0] -file = glance_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = d9dc8c3d5300b5b244512d14acafa3df -source = repo:trusty-updates-kilo - -[heat-api-cfn_2015.1.2-0ubuntu1~cloud0] -file = heat-api-cfn_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 2e1d95d8c3d032726b248aa19379c563 -source = repo:trusty-updates-kilo - -[heat-api_2015.1.2-0ubuntu1~cloud0] -file = heat-api_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = a753fdce84b802c70a104e432ed7e083 -source = repo:trusty-updates-kilo - -[heat-common_2015.1.2-0ubuntu1~cloud0] -file = heat-common_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = f1244402ad7a8cee5ca22a3d7588d50c -source = repo:trusty-updates-kilo - -[heat-engine_2015.1.2-0ubuntu1~cloud0] -file = heat-engine_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = a270f8d2cec341d4e49110e8e5a6979e -source = repo:trusty-updates-kilo +[cinder-api_1:2015.1.4-0ubuntu1] +file = cinder-api_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 4fc9ed87db4e76c955195c23f20048c3 +source = repo:trusty-updates-kilo/main/ + +[cinder-common_1:2015.1.4-0ubuntu1] +file = cinder-common_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 3a8c6289b7f88213b5c335278528a91c +source = repo:trusty-updates-kilo/main/ + +[cinder-scheduler_1:2015.1.4-0ubuntu1] +file = cinder-scheduler_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = ee93a1e1bb7806257358e858015c3bf0 +source = repo:trusty-updates-kilo/main/ + +[glance-api_1:2015.1.4-0ubuntu1] +file = glance-api_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 782aa41b4624e1d8434745e73c056f02 +source = repo:trusty-updates-kilo/main/ + +[glance-common_1:2015.1.4-0ubuntu1] +file = glance-common_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = c70b22dd02c9b425cb7edc5b49ad82e0 +source = repo:trusty-updates-kilo/main/ + +[glance-registry_1:2015.1.4-0ubuntu1] +file = glance-registry_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 8a90df1bfac2944b27ad5b8b9e92e6ab +source = repo:trusty-updates-kilo/main/ + +[glance_1:2015.1.4-0ubuntu1] +file = glance_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = d33669e6a8497954a92da28da0b74114 +source = repo:trusty-updates-kilo/main/ + +[heat-api-cfn_2015.1.4-0ubuntu1] +file = heat-api-cfn_2015.1.4-0ubuntu1_all.deb +md5 = 06ed3e9e7c4ac4b7183cf7ab127ec137 +source = repo:trusty-updates-kilo/main/ + +[heat-api_2015.1.4-0ubuntu1] +file = heat-api_2015.1.4-0ubuntu1_all.deb +md5 = 361a6ac6e524ec1757ac354be9c1bb22 +source = repo:trusty-updates-kilo/main/ + +[heat-common_2015.1.4-0ubuntu1] +file = heat-common_2015.1.4-0ubuntu1_all.deb +md5 = 5f647d55c16856612ca6e14798711af5 +source = repo:trusty-updates-kilo/main/ + +[heat-engine_2015.1.4-0ubuntu1] +file = heat-engine_2015.1.4-0ubuntu1_all.deb +md5 = d1c091fbc5040148d3cf9aebbfc2ae85 +source = repo:trusty-updates-kilo/main/ [libjs-swfobject_2.2+dfsg-1] file = libjs-swfobject_2.2+dfsg-1_all.deb md5 = 754241570e03dd0c8d412d3b9e7590d1 -source = repo:trusty +source = repo:trusty/universe [novnc_1:0.4+dfsg+1+20131010+gitf68af8af3d-2] file = novnc_1%%3a0.4+dfsg+1+20131010+gitf68af8af3d-2_all.deb md5 = fae80db8696627b14491879893901708 -source = repo:trusty - -[openstack-dashboard-ubuntu-theme_2015.1.2-0ubuntu1~cloud0.1contrail1] -file = openstack-dashboard-ubuntu-theme_2015.1.2-0ubuntu1~cloud0.1contrail1_all.deb -md5 = 52eaecf79ab3ab8648df2dc6b9c404ec -source = repo:contrail-thirdparty - -[openstack-dashboard_2015.1.2-0ubuntu1~cloud0.1contrail1_all] -file = openstack-dashboard_2015.1.2-0ubuntu1~cloud0.1contrail1_all.deb -md5 = 9baac4cb200800637f9760dd87a953b9 -source = repo:contrail-thirdparty - -[python-ceilometer_2015.1.2-0ubuntu1~cloud0] -file = python-ceilometer_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 796d066c5f301647bbbabe15f77fc1d1 -source = repo:trusty-updates-kilo +source = repo:trusty/universe + +[python-boto_2.34.0-2ubuntu1~cloud0] +file = python-boto_2.34.0-2ubuntu1~cloud0_all.deb +md5 = 229846a5be141da665598ee66bcd462f +source = repo:trusty-updates-kilo/main/ + +[python-ceilometer_2015.1.4-0ubuntu1] +file = python-ceilometer_2015.1.4-0ubuntu1_all.deb +md5 = 8f83084761be43f2b02e0f90f5773a45 +source = repo:trusty-updates-kilo/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra [python-ceilometerclient_1.0.13-0ubuntu1~cloud0] file = python-ceilometerclient_1.0.13-0ubuntu1~cloud0_all.deb md5 = 7eb07fc66b1254af7c09d5b5729a51d2 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -[python-cinder_1:2015.1.2-0ubuntu1~cloud0] -file = python-cinder_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 647d799ad9dd976531baee1a1dd11860 -source = repo:trusty-updates-kilo +[python-cinder_1:2015.1.4-0ubuntu1] +file = python-cinder_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 8988aa74fcad3757f166a52052e5fe9f +source = repo:trusty-updates-kilo/main/ [python-cinderclient_1:1.1.1-0ubuntu1~cloud0] file = python-cinderclient_1%%3a1.1.1-0ubuntu1~cloud0_all.deb md5 = f7cb7184e5464a1bda87a9c8b2f0f1ba -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -[python-django-common_1.7.6-1ubuntu2.2~cloud0] -file = python-django-common_1.7.6-1ubuntu2.2~cloud0_all.deb -md5 = 00c76effa21eee9275e57e3d4592515a -source = repo:trusty-updates-kilo - -[python-django-horizon_2015.1.2-0ubuntu1~cloud0.1contrail1] -file = python-django-horizon_2015.1.2-0ubuntu1~cloud0.1contrail1_all.deb -md5 = 3d5d6ad29d49816dad65ab197a9bdd8b -source = repo:contrail-thirdparty - [python-glance-store_0.4.0-0ubuntu1~cloud0] file = python-glance-store_0.4.0-0ubuntu1~cloud0_all.deb md5 = c62a146832e212e32554873346a09106 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[python-glance_1:2015.1.2-0ubuntu1~cloud0] -file = python-glance_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = ffc967a6fab1b67fa5fd9a98e98ffbb4 -source = repo:trusty-updates-kilo +[python-glance_1:2015.1.4-0ubuntu1] +file = python-glance_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 90741ca22b16590bd18e4b10fbfaf7a0 +source = repo:trusty-updates-kilo/main/ [python-glanceclient_1:0.15.0-0ubuntu1~cloud0] file = python-glanceclient_1%%3a0.15.0-0ubuntu1~cloud0_all.deb md5 = 9107a7bcb81b9188bf0792973bd5057b -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra -[python-heat_2015.1.2-0ubuntu1~cloud0] -file = python-heat_2015.1.2-0ubuntu1~cloud0_all.deb -md5 = 79a0cd9a1b0a850b3a84a19c82adfa89 -source = repo:trusty-updates-kilo +[python-heat_2015.1.4-0ubuntu1] +file = python-heat_2015.1.4-0ubuntu1_all.deb +md5 = 3dbe7a8437a90a859d337c43b77d4d27 +source = repo:trusty-updates-kilo/main/ [python-heatclient_0.3.0-0ubuntu1~cloud0] file = python-heatclient_0.3.0-0ubuntu1~cloud0_all.deb md5 = 41e9160c22d6e7922ccb8404f557bc1a -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ -[python-novaclient_1:2.22.0-0ubuntu1~cloud0] -file = python-novaclient_1%%3a2.22.0-0ubuntu1~cloud0_all.deb -md5 = 2470184c9ed002637ee4ed9e0746493a -source = repo:trusty-updates-kilo -package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra, cfgm-openstack-extra +[python-lxml_3.3.3-1ubuntu0.1] +file = python-lxml_3.3.3-1ubuntu0.1_amd64.deb +md5 = d1c5b5a5a64e196f73d9e2c9dc7b7ce5 +source = repo:trusty-updates/main/ [python-novnc_1:0.4+dfsg+1+20131010+gitf68af8af3d-2] file = python-novnc_1%%3a0.4+dfsg+1+20131010+gitf68af8af3d-2_all.deb md5 = 88b3c3af0d2fe9339c37dae213af0d4a -source = repo:trusty +source = repo:trusty/universe + +[python-novaclient_1:2.22.0-0ubuntu2~cloud0] +file = python-novaclient_1%%3a2.22.0-0ubuntu2~cloud0_all.deb +md5 = 17dde9f94180dc6ddc1d34625571f5c7 +source = repo:trusty-updates-kilo/main/ +package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra, cfgm-openstack-extra -[python-openstack-auth_1.1.7-1~cloud0] -file = python-openstack-auth_1.1.7-1~cloud0_all.deb -md5 = dce8bd438a3f0b29c520605b734e14dc -source = repo:trusty-updates-kilo +[python-openstack-auth_1.1.9-0ubuntu0.15.04.1~cloud0] +file = python-openstack-auth_1.1.9-0ubuntu0.15.04.1~cloud0_all.deb +md5 = 3a22ebcc0f6d3a05d49d21810cc13369 +source = repo:trusty-updates-kilo/main/ [python-saharaclient_0.8.0-0ubuntu1~cloud0] file = python-saharaclient_0.8.0-0ubuntu1~cloud0_all.deb md5 = 7d713c3a005a31f782089db47c4ec085 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-swiftclient_1:2.3.1-0ubuntu1~cloud0] file = python-swiftclient_1%%3a2.3.1-0ubuntu1~cloud0_all.deb md5 = 951f783df51134ff2535f43d80d73717 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra [python-taskflow_0.7.1-0ubuntu1~cloud0] file = python-taskflow_0.7.1-0ubuntu1~cloud0_all.deb md5 = 837622261539d827e52e2d7dc6edb640 -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ [python-troveclient_1:1.0.9-0ubuntu1~cloud0] file = python-troveclient_1%%3a1.0.9-0ubuntu1~cloud0_all.deb md5 = b3ed7bde73c927208da45cde970a001a -source = repo:trusty-updates-kilo +source = repo:trusty-updates-kilo/main/ diff --git a/build/package_configs/ubuntu1404/kilo/depends_contrail_thirdparty_packages.cfg b/build/package_configs/ubuntu1404/kilo/depends_contrail_thirdparty_packages.cfg index 0ff32a2f0..2a19f3f4d 100644 --- a/build/package_configs/ubuntu1404/kilo/depends_contrail_thirdparty_packages.cfg +++ b/build/package_configs/ubuntu1404/kilo/depends_contrail_thirdparty_packages.cfg @@ -42,9 +42,9 @@ file = galera-25.2.9-amd64.deb md5 = 7602c095d5d42661019bd45221615d4a source = repo:contrail-thirdparty -[kafka_2.10-0.9.0.0-SNAPSHOT-0contrail0] -file = kafka_2.10-0.9.0.0-SNAPSHOT-0contrail0_amd64.deb -md5 = 50691908d039dd33ef314c77316aeb28 +[kafka_2.11-0.9.0.1-0contrail0] +file = kafka_2.11-0.9.0.1-0contrail0_amd64.deb +md5 = 38a41e87cddd1a8b893b3c8c3c212b24 source = repo:contrail-thirdparty [libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2] @@ -67,9 +67,19 @@ file = nodejs_0.10.35-1contrail1_amd64.deb md5 = fbbf1969783bc15291039263bc88bb39 source = repo:contrail-thirdparty -[nova-docker_0.0.0.post190-0contrail0_all.deb] -file = nova-docker_0.0.0.post190-0contrail0_all.deb -md5 = 94ae8df6cf3de041835aa034eb823479 +[nova-docker_0.0.0.post196-0contrail0] +file = nova-docker_0.0.0.post196-0contrail0_all.deb +md5 = eabd2dac1c3e3d1c8a5582c1b4d8c821 +source = repo:contrail-thirdparty + +[openstack-dashboard-ubuntu-theme_2015.1.2-0ubuntu1~cloud0.1contrail1] +file = openstack-dashboard-ubuntu-theme_2015.1.2-0ubuntu1~cloud0.1contrail1_all.deb +md5 = 52eaecf79ab3ab8648df2dc6b9c404ec +source = repo:contrail-thirdparty + +[openstack-dashboard_2015.1.2-0ubuntu1~cloud0.1contrail1_all] +file = openstack-dashboard_2015.1.2-0ubuntu1~cloud0.1contrail1_all.deb +md5 = 9baac4cb200800637f9760dd87a953b9 source = repo:contrail-thirdparty [python-backports.ssl-match-hostname_3.4.0.2-1contrail1] @@ -92,34 +102,34 @@ file = python-cassandra-driver_3.0.0-0contrail3_amd64.deb md5 = dbedcd22c6dd20436b56e8fdb0b3983f source = repo:contrail-thirdparty -[python-certifi_1.0.1-1contrail1] -file = python-certifi_1.0.1-1contrail1_all.deb -md5 = 46ab19b4096c653c10854f5c5e735f1c -source = repo:contrail-thirdparty +[python-certifi_2015.11.20.1-2] +file = python-certifi_2015.11.20.1-2_all.deb +md5 = 760985befd8570b30f5ae928862fa8ff +source = repo:xenial [python-consistent-hash_1.0-0contrail1] file = python-consistent-hash_1.0-0contrail1_amd64.deb md5 = 6ba90f706ec78584adb3a15657f290e3 source = repo:contrail-thirdparty +[python-django-horizon_2015.1.2-0ubuntu1~cloud0.1contrail1] +file = python-django-horizon_2015.1.2-0ubuntu1~cloud0.1contrail1_all.deb +md5 = 3d5d6ad29d49816dad65ab197a9bdd8b +source = repo:contrail-thirdparty + [python-geventhttpclient_1.1.0-1contrail1] file = python-geventhttpclient_1.1.0-1contrail1_amd64.deb md5 = 1a00d30b23e355a014e90b75243f3227 source = repo:contrail-thirdparty -[python-kafka-python_0.9.2-0contrail0] -file = python-kafka-python_0.9.2-0contrail0_all.deb -md5 = ca72ef4061c3f6a6a1c4f3b3e1b3bc84 +[python-kafka_1.0.1-0contrail0] +file = python-kafka_1.0.1-0contrail0_amd64.deb +md5 = e8e1d6233260caa5d4478c639b04afcd source = repo:contrail-thirdparty -[python-kafka_0.9.3-2+syseleven1] -file = python-kafka_0.9.3-2+syseleven1_all.deb -md5 = d00fb946087ded001c2c89be6cfba320 -source = repo:contrail-thirdparty - -[python-kazoo_1.3.1-1contrail2] -file = python-kazoo_1.3.1-1contrail2_all.deb -md5 = 1160ffdc6faa72bfb6f027f5e7b18bb1 +[python-kazoo_1.3.1-1contrail3] +file = python-kazoo_1.3.1-1contrail3_all.deb +md5 = 38502c6e569c1cbbae108ff110b80763 source = repo:contrail-thirdparty [python-lxml_3.3.1-1contrail1] @@ -142,6 +152,11 @@ file = python-redis_2.8.0-1contrail1_all.deb md5 = a2c82a2b974ed10471570c09aef0673d source = repo:contrail-thirdparty +[python-sseclient_0.0.11-0contrail0] +file = python-sseclient_0.0.11-0contrail0_amd64.deb +md5 = f34ba0eb5ba204c33ce91ad0f3e86ada +source = repo:contrail-thirdparty + [python-xmltodict_0.9.0-1contrail1] file = python-xmltodict_0.9.0-1contrail1_all.deb md5 = 49ad578daa539e8965bbcaaac9a8045e @@ -191,3 +206,56 @@ source = repo:contrail-thirdparty file = python-oslo-concurrency_1.8.2-0ubuntu0.15.04.1_all.deb md5 = 3a5c98fed30a022f195140f19566dfb7 source = repo:contrail-thirdparty + +[cassandra-cpp-driver_2.2.0-1] +file = cassandra-cpp-driver_2.2.0-1_amd64.deb +md5 = 3f19fb659f3233ff35d1c1168668b08d +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[cassandra_2.0.17] +file = cassandra_2.0.17_all.deb +md5 = 0efe0697f9129037c6bfa0514d2b26d2 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[cassandra_2.1.13] +file = cassandra_2.1.13_all.deb +md5 = 1853e9b48d656094fec8af8e88e1b901 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[lxc-docker-1.6.2] +file = lxc-docker-1.6.2_1.6.2_amd64.deb +md5 = bb24274e604d7ed3ac70de296b594cd1 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[mysql-server-wsrep_5.5.37-25.10] +file = mysql-server-wsrep-5.5.37-25.10-amd64.deb +md5 = ac8664b3bd2ea15149e2d5af6abac90f +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[python-bitstring_3.1.3-2] +file = python-bitstring_3.1.3-2_all.deb +md5 = b54d9fbcacba9dfa8b61569ab65938cc +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[python-pyvmomi_5.5.0-2014.1.1-1] +file = python-pyvmomi_5.5.0-2014.1.1-1_all.deb +md5 = cdcdad00e07a88920b931215a2499a36 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[storage-sas2ircu_16.00.00.00-1contrail1] +file = sas2ircu_16.00.00.00-1contrail1_amd64.deb +md5 = 1e8d0288700a0e416231b88f2fd35674 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[dpdk-depends-packages_14.04-kilo1] +file = dpdk-depends-packages_14.04-kilo1_amd64.deb +md5 = 22f8a984c9deec669a078bab78abd3a8 +package_type = contrail-install-packages, contrail-dependent-packages diff --git a/build/package_configs/ubuntu1404/kilo/depends_server_manager_packages.cfg b/build/package_configs/ubuntu1404/kilo/depends_server_manager_packages.cfg index 86d211a31..24547b6c4 100644 --- a/build/package_configs/ubuntu1404/kilo/depends_server_manager_packages.cfg +++ b/build/package_configs/ubuntu1404/kilo/depends_server_manager_packages.cfg @@ -1,36 +1,65 @@ -# **************************************************************** -# CAUTION: ANY CHANGES TO DEFAULT APPLIES TO ALL SECTIONS +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS # IF NOT OVERWRITTEN LOCALLY -# **************************************************************** +# **************************************************************************** # Usage: -# [package name] -# file = # name of the package -# location = # location where the package file is available -# md5 = # md5 check sum of the package file +# [server-mgr-package name] +# file = # file name of the package # -# ***************************************************************** +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# **************************************************************************** [DEFAULT] -md5 = file = +md5 = location = package_type = contrail-server-manager-installer -[server-mgr-python-gevent_1.0-1ubuntu1] -file = python-gevent_1.0-1ubuntu1_amd64.deb -md5 = 7a0e277b556505bd5d663986ba8df167 +[server-mgr-python-bottle_0.12.0-1] +file = python-bottle_0.12.0-1_all.deb +md5 = 1a4e42bfa1b06f6ec20c39f5b493f3d6 +source = repo:trusty -[server-mgr-python-geventhttpclient] -file = python-geventhttpclient_1.1.0-1contrail1_amd64.deb -md5 = 1a00d30b23e355a014e90b75243f3227 +[server-mgr-python-gevent_1.0-1ubuntu1.1] +file = python-gevent_1.0-1ubuntu1.1_amd64.deb +md5 = 009938f1686163b0d2746e0649aa3366 +source = repo:trusty-updates + +[server-mgr-python-requests_2.4.3-6~cloud0] +file = python-requests_2.4.3-6~cloud0_all.deb +md5 = 3abd699422087c987639ef87937a0b01 +source = repo:trusty-updates-kilo + +[server-mgr-python-six_1.9.0-1~cloud0] +file = python-six_1.9.0-1~cloud0_all.deb +md5 = c0cf8d4f8c56427b0fee8e28dafce723 +source = repo:trusty-updates-kilo [server-mgr-python-thrift_0.9.0-1build1] -file = python-thrift_0.9.0-1build1_amd64.deb -md5 = 8c575c6f55b81fb07c8b03c14c2be2fb +file = python-thrift_0.9.0-1build1_amd64.deb +md5 = 8c575c6f55b81fb07c8b03c14c2be2fb +source = repo:trusty + +[server-mgr-python-urllib3_1.9.1-3~cloud0] +file = python-urllib3_1.9.1-3~cloud0_all.deb +md5 = 2de0f455d3d83cf764617e7501c7b84b +source = repo:trusty-updates-kilo -[server-mgr-python-urllib3] -file = python-urllib3_1.7.1-1ubuntu4_all.deb -md5 = 333c6809153491d85dfce3723c5ae2e7 +[server-mgr-python-geventhttpclient] +file = python-geventhttpclient_1.1.0-1contrail1_amd64.deb +md5 = 1a00d30b23e355a014e90b75243f3227 [server-mgr-python-certifi] file = python-certifi_1.0.1-1contrail1_all.deb @@ -40,22 +69,10 @@ md5 = 46ab19b4096c653c10854f5c5e735f1c file = python-backports.ssl-match-hostname_3.4.0.2-1contrail1_all.deb md5 = 243c920a5c91d12801c525f3dcd2a6d1 -[server-mgr-python-bottle_0.12.0-1] -file = python-bottle_0.12.0-1_all.deb -md5 = 1a4e42bfa1b06f6ec20c39f5b493f3d6 - [server-mgr-python-pycassa] file = python-pycassa_1.11.0-1contrail2_all.deb md5 = 251c53af490a46086da56c9286b403e2 -[server-mgr-python-requests] -file = python-requests_2.3.0-1~cloud0_all.deb -md5 = 3087f6d1f64a607ef0c843c24ddec390 - -[server-mgr-python-six] -file = python-six_1.9.0-1~cloud0_all.deb -md5 = 582061ba13a122242fc4507cddabd2f6 - [server-mgr-python-greenlet_0.4.2-1build1] file = python-greenlet_0.4.2-1build1_amd64.deb md5 = 6bf204746bad67ae81d81229dfebe3b3 @@ -69,8 +86,8 @@ file = supervisor_3.0r1-1_all.deb md5 = 368bfa94087bdc5eca01eae1ecc87335 [server-mgr-python-kazoo] -file = python-kazoo_1.3.1-1contrail2_all.deb -md5 = 1160ffdc6faa72bfb6f027f5e7b18bb1 +file = python-kazoo_1.3.1-1contrail3_all.deb +md5 = 38502c6e569c1cbbae108ff110b80763 [server-mgr-python-consistent-hash] file = python-consistent-hash_1.0-0contrail1_amd64.deb diff --git a/build/package_configs/ubuntu1404/kilo/depends_storage_packages.cfg b/build/package_configs/ubuntu1404/kilo/depends_storage_packages.cfg index c77ceba90..be3544d1f 100644 --- a/build/package_configs/ubuntu1404/kilo/depends_storage_packages.cfg +++ b/build/package_configs/ubuntu1404/kilo/depends_storage_packages.cfg @@ -25,335 +25,340 @@ file = md5 = location = -package_type = contrail-storage-packages +package_type = contrail-storage-packages -[storage-btrfs-tools_3.12-1] -file = btrfs-tools_3.12-1_amd64.deb -md5 = e69af23a733d56e13072fd5b8689892d -source = repo:trusty/main +[storage-btrfs-tools_3.12-1ubuntu0.1] +file = btrfs-tools_3.12-1ubuntu0.1_amd64.deb +md5 = 4a47a743970471e37b9b6e59419bf4c5 +source = repo:trusty-updates -[storage-ceph-common_0.94.3-1contrail2] -file = ceph-common_0.94.3-1contrail2_amd64.deb -md5 = 10e341b3089bc708b803ab84894e8872 -source = repo:contrail-thirdparty +[storage-ceph-common_0.94.7-0ubuntu0.15.04.1~cloud0] +file = ceph-common_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 4e86a8fccbd6f6d4993e261e1ebcc999 +source = repo:trusty-updates-kilo [storage-ceph-deploy_1.4.0-0ubuntu1] file = ceph-deploy_1.4.0-0ubuntu1_all.deb md5 = 106ff343c0df2c8e7d0245d0482269ab -source = repo:trusty/universe - -[storage-ceph-fs-common_0.94.3-1contrail2] -file = ceph-fs-common_0.94.3-1contrail2_amd64.deb -md5 = 62dec47e84ba95c08f526e47dc113fc5 -source = repo:contrail-thirdparty - -[storage-ceph-fuse_0.94.3-1contrail2] -file = ceph-fuse_0.94.3-1contrail2_amd64.deb -md5 = 00506bce0997184bb47611d788758065 -source = repo:contrail-thirdparty - -[storage-ceph-mds_0.94.3-1contrail2] -file = ceph-mds_0.94.3-1contrail2_amd64.deb -md5 = 1fe61de80ffd766e333168be1ad089ac -source = repo:contrail-thirdparty - -[storage-ceph_0.94.3-1contrail2] -file = ceph_0.94.3-1contrail2_amd64.deb -md5 = 48da333273979870e3257f1499736632 -source = repo:contrail-thirdparty - -[storage-cinder-backup_1:2015.1.2-0ubuntu1~cloud0] -file = cinder-backup_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = a6f6b7f475bfa67d91abec7b22a75d45 -source = repo:trusty-updates-kilo/main - -[storage-cinder-volume_1:2015.1.2-0ubuntu1~cloud0] -file = cinder-volume_1%%3a2015.1.2-0ubuntu1~cloud0_all.deb -md5 = b7c2748ea4d43077b84ee3a6c86c0175 -source = repo:trusty-updates-kilo/main +source = repo:trusty + +[storage-ceph-fs-common_0.94.7-0ubuntu0.15.04.1~cloud0] +file = ceph-fs-common_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = a8158b7f728224c728165feb85c4213a +source = repo:trusty-updates-kilo + +[storage-ceph-fuse_0.94.7-0ubuntu0.15.04.1~cloud0] +file = ceph-fuse_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = ccfd4faef6df2fe4acb27e42a59e9061 +source = repo:trusty-updates-kilo + +[storage-ceph-mds_0.94.7-0ubuntu0.15.04.1~cloud0] +file = ceph-mds_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = b07bfd5ff63dadf99ef384bbab37eed9 +source = repo:trusty-updates-kilo + +[storage-ceph_0.94.7-0ubuntu0.15.04.1~cloud0] +file = ceph_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = cb3dd4735b00db585799164e9d2293fb +source = repo:trusty-updates-kilo + +[storage-cinder-backup_1:2015.1.4-0ubuntu1] +file = cinder-backup_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = 00ed3127123b53ad28ce7a00ec615d18 +source = repo:trusty-updates-kilo + +[storage-cinder-volume_1:2015.1.4-0ubuntu1] +file = cinder-volume_1%%3a2015.1.4-0ubuntu1_all.deb +md5 = d16f06f43c4aa369425010fccf7e6750 +source = repo:trusty-updates-kilo [storage-cryptsetup-bin_2:1.6.1-1ubuntu1] file = cryptsetup-bin_2%%3a1.6.1-1ubuntu1_amd64.deb md5 = ae4ee141c87d2248af97a79c39ace7de -source = repo:trusty/main +source = repo:trusty [storage-cryptsetup_2:1.6.1-1ubuntu1] file = cryptsetup_2%%3a1.6.1-1ubuntu1_amd64.deb md5 = c9b3ea50aa7243de4db7b739c42b5211 -source = repo:trusty/main +source = repo:trusty [storage-gdisk_0.8.8-1ubuntu0.1] file = gdisk_0.8.8-1ubuntu0.1_amd64.deb md5 = 6e9ed16eaca8d87dc22cf4918f95cb2c -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-guile-2.0-libs_2.0.9+1-1ubuntu1] file = guile-2.0-libs_2.0.9+1-1ubuntu1_amd64.deb md5 = 040cc4de4acdd5c233c841a437a4ec06 -source = repo:trusty/main +source = repo:trusty [storage-heirloom-mailx_12.5-2+deb7u1build0.14.04.1] file = heirloom-mailx_12.5-2+deb7u1build0.14.04.1_amd64.deb md5 = 9e8badc74dfbfe379e3520f343ac93a0 -source = repo:trusty-updates/universe +source = repo:trusty-updates -[storage-libcephfs1_0.94.3-1contrail2] -file = libcephfs1_0.94.3-1contrail2_amd64.deb -md5 = 8ba277867d37b4ec3b386948e052b4d8 -source = repo:contrail-thirdparty +[storage-libcephfs1_0.94.7-0ubuntu0.15.04.1~cloud0] +file = libcephfs1_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 2f8f9ae754a914dfde3acdeafd9e92c1 +source = repo:trusty-updates-kilo [storage-libconfig-general-perl_2.52-1] file = libconfig-general-perl_2.52-1_all.deb md5 = 42dd64a2e8c1dd19c1f0efd52da3af41 -source = repo:trusty/main +source = repo:trusty [storage-libcryptsetup4_2:1.6.1-1ubuntu1] file = libcryptsetup4_2%%3a1.6.1-1ubuntu1_amd64.deb md5 = 989de0f231fdea8da9fbb9b8e8945940 -source = repo:trusty/main +source = repo:trusty [storage-libdevmapper-event1.02.1_2:1.02.77-6ubuntu2] file = libdevmapper-event1.02.1_2%%3a1.02.77-6ubuntu2_amd64.deb md5 = 094eb17d3fb1a5498f56536831d6417a -source = repo:trusty/main +source = repo:trusty [storage-libgc1c2_1:7.2d-5ubuntu2] file = libgc1c2_1%%3a7.2d-5ubuntu2_amd64.deb md5 = 77b7d6c1e799ff3f449999f48c62193b -source = repo:trusty/main +source = repo:trusty [storage-libgsasl7_1.8.0-2ubuntu2] file = libgsasl7_1.8.0-2ubuntu2_amd64.deb md5 = 48d78fbc403d8687ce7aacea453dd600 -source = repo:trusty/universe +source = repo:trusty [storage-libibverbs1_1.1.7-1ubuntu1.1] file = libibverbs1_1.1.7-1ubuntu1.1_amd64.deb md5 = 2eac0b5dabf90781eee802bfa8bd0a45 -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-libicu52_52.1-3ubuntu0.4] file = libicu52_52.1-3ubuntu0.4_amd64.deb md5 = ed4da162328dc75beb75e38ca291c959 -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-libjemalloc-dev_3.5.1-2] file = libjemalloc-dev_3.5.1-2_amd64.deb md5 = 7995c3bac6ca04c5642ea10a131cc157 -source = repo:trusty/universe +source = repo:trusty [storage-libkyotocabinet16_1.2.76-4] file = libkyotocabinet16_1.2.76-4_amd64.deb md5 = a5ef4290a55fbab39090e0c629569bef -source = repo:trusty/universe +source = repo:trusty [storage-libleveldb1_1.15.0-2] file = libleveldb1_1.15.0-2_amd64.deb md5 = c031f369fc9122ca93f0f690b1f250da -source = repo:trusty/main +source = repo:trusty [storage-liblzo2-2_2.06-1.2ubuntu1.1] file = liblzo2-2_2.06-1.2ubuntu1.1_amd64.deb md5 = b3e9733843fda9b2463a0745e7306092 -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-libmailutils4_1:2.99.98-1.1] file = libmailutils4_1%%3a2.99.98-1.1_amd64.deb md5 = a6755462a0efb1c3f9217d9a10c459e0 -source = repo:trusty/universe +source = repo:trusty -[storage-libnspr4-0d_2:4.10.10-0ubuntu0.14.04.1] -file = libnspr4-0d_2%%3a4.10.10-0ubuntu0.14.04.1_amd64.deb -md5 = 7a77d9d7e6625c36c80b36b1017f6845 -source = repo:trusty-updates/universe +[storage-libnspr4-0d_2:4.12-0ubuntu0.14.04.1] +file = libnspr4-0d_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = 95d161ab098588452a90d9cf5be8d7e7 +source = repo:trusty-updates -[storage-libnspr4_2:4.10.10-0ubuntu0.14.04.1] -file = libnspr4_2%%3a4.10.10-0ubuntu0.14.04.1_amd64.deb -md5 = bfb262e77ef709dfaa5ae037630e49ff -source = repo:trusty-updates/main +[storage-libnspr4_2:4.12-0ubuntu0.14.04.1] +file = libnspr4_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = cff22f4863f0e8356900e6b26872a63c +source = repo:trusty-updates -[storage-libnss3-1d_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3-1d_2%%3a3.19.2.1-0ubuntu0.14.04.1_amd64.deb -md5 = f69f624713a7d70891aaf334df684714 -source = repo:trusty-updates/main +[storage-libnss3-1d_2:3.23-0ubuntu0.14.04.1] +file = libnss3-1d_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 96170b238bc6a8ccc48418d28dce8285 +source = repo:trusty-updates -[storage-libnss3-nssdb_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3-nssdb_2%%3a3.19.2.1-0ubuntu0.14.04.1_all.deb -md5 = 24f0c1f9fca8ea633cf64e622f024012 -source = repo:trusty-updates/main +[storage-libnss3-nssdb_2:3.23-0ubuntu0.14.04.1] +file = libnss3-nssdb_2%%3a3.23-0ubuntu0.14.04.1_all.deb +md5 = 7b4064d8bb5f8ca3f0aec63699666564 +source = repo:trusty-updates -[storage-libnss3_2:3.19.2.1-0ubuntu0.14.04.1] -file = libnss3_2%%3a3.19.2.1-0ubuntu0.14.04.1_amd64.deb -md5 = 2b2dca07befc97483bbd60ada68cd9cd -source = repo:trusty-updates/main +[storage-libnss3_2:3.23-0ubuntu0.14.04.1] +file = libnss3_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 915f9fd9b0b0d18bbfe66f47774daec8 +source = repo:trusty-updates [storage-libntlm0_1.4-1] file = libntlm0_1.4-1_amd64.deb md5 = 494a0ba5d16fe739b2ca575e7177604a -source = repo:trusty/universe +source = repo:trusty -[storage-librados2_0.94.3-1contrail2] -file = librados2_0.94.3-1contrail2_amd64.deb -md5 = b0c8edeaa07ec8593228bfc0197612e1 -source = repo:contrail-thirdparty +[storage-librados2_0.94.7-0ubuntu0.15.04.1~cloud0] +file = librados2_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 9a7d7de2ea72c39077ff438250b44b00 +source = repo:trusty-updates-kilo -[storage-librbd1_0.94.3-1contrail2] -file = librbd1_0.94.3-1contrail2_amd64.deb -md5 = 72c9408b09aacd955b193d3608b6162c -source = repo:contrail-thirdparty +[storage-libradosstriper1_0.94.7-0ubuntu0.15.04.1~cloud0] +file = libradosstriper1_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 17163d16322b926acdd3e3494c606c75 +source = repo:trusty-updates-kilo + +[storage-librbd1_0.94.7-0ubuntu0.15.04.1~cloud0] +file = librbd1_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 65a30f244ce6f7df8f9de0afb134f54e +source = repo:trusty-updates-kilo [storage-librdmacm1_1.0.16-1] file = librdmacm1_1.0.16-1_amd64.deb md5 = e48ede8d81ea578c585655eef431b858 -source = repo:trusty/main +source = repo:trusty [storage-libreadline5_5.2+dfsg-2] file = libreadline5_5.2+dfsg-2_amd64.deb md5 = 105690417cc22d06a1c4a66069ec8a91 -source = repo:trusty/main +source = repo:trusty [storage-libsgutils2-2_1.36-1ubuntu1] file = libsgutils2-2_1.36-1ubuntu1_amd64.deb md5 = f0252042b785ce828cfee62b9390f9c1 -source = repo:trusty/main +source = repo:trusty [storage-libsysfs2_2.1.0+repack-3ubuntu1] file = libsysfs2_2.1.0+repack-3ubuntu1_amd64.deb md5 = 366df7440d6e399c2c775cf81fa508b5 -source = repo:trusty/main +source = repo:trusty [storage-libtinfo5_5.9+20140118-1ubuntu1] file = libtinfo5_5.9+20140118-1ubuntu1_amd64.deb md5 = 72a3233b08faf65664a6235b05924f38 -source = repo:trusty/main +source = repo:trusty [storage-libunistring0_0.9.3-5ubuntu3] file = libunistring0_0.9.3-5ubuntu3_amd64.deb md5 = 256e18209ad74bc9e6752290f2a5444f -source = repo:trusty/main +source = repo:trusty [storage-libuuid1_2.20.1-5.1ubuntu20.7] file = libuuid1_2.20.1-5.1ubuntu20.7_amd64.deb md5 = d44826d02f03b777448f7ab1e0efa5e3 -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-lvm2_2.02.98-6ubuntu2] file = lvm2_2.02.98-6ubuntu2_amd64.deb md5 = 76d72b5259b958b9802845e6123e4431 -source = repo:trusty/main +source = repo:trusty [storage-mailutils-common_1:2.99.98-1.1] file = mailutils-common_1%%3a2.99.98-1.1_all.deb md5 = b282e598a53a970b055e6e1c8b45fa95 -source = repo:trusty/universe +source = repo:trusty [storage-mailutils_1:2.99.98-1.1] file = mailutils_1%%3a2.99.98-1.1_amd64.deb md5 = a59bcdab76b5399b6e393a9a48189c8f -source = repo:trusty/universe +source = repo:trusty [storage-postfix_2.11.0-1ubuntu1] file = postfix_2.11.0-1ubuntu1_amd64.deb md5 = 676483e59b2785704d298800fb893595 -source = repo:trusty-updates/main +source = repo:trusty-updates + +[storage-python-blinker_1.3.dfsg1-1ubuntu2] +file = python-blinker_1.3.dfsg1-1ubuntu2_all.deb +md5 = 1084d75f917fed1cd00fe11edd5695e6 +source = repo:trusty -[storage-python-ceph_0.94.3-1contrail2] -file = python-ceph_0.94.3-1contrail2_amd64.deb -md5 = 2735079b2d05461307733be9a6319b2b -source = repo:contrail-thirdparty +[storage-python-ceph_0.94.7-0ubuntu0.15.04.1~cloud0] +file = python-ceph_0.94.7-0ubuntu0.15.04.1~cloud0_all.deb +md5 = 97022558d1af8deae49123de4dbd6c46 +source = repo:trusty-updates-kilo -[storage-python-cephfs_0.94.3-1contrail2] -file = python-cephfs_0.94.3-1contrail2_amd64.deb -md5 = 2ea0fed7128da9d62aa18b51d44fdea2 -source = repo:contrail-thirdparty +[storage-python-cephfs_0.94.7-0ubuntu0.15.04.1~cloud0] +file = python-cephfs_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 002f8dcc70ffc8ca1741b90fa4fff03d +source = repo:trusty-updates-kilo [storage-python-flask_0.10.1-2build1] file = python-flask_0.10.1-2build1_all.deb md5 = ddee0a62d486a6cc2f86028f08369505 -source = repo:trusty/main +source = repo:trusty [storage-python-itsdangerous_0.22+dfsg1-1build1] file = python-itsdangerous_0.22+dfsg1-1build1_all.deb md5 = 41f85eb2b23f50761d2914f34e28fd52 -source = repo:trusty/main +source = repo:trusty [storage-python-pushy_0.5.3-1] file = python-pushy_0.5.3-1_amd64.deb md5 = 9211c7c8c46ce30537c4c227259a0c10 -source = repo:trusty/universe +source = repo:trusty -[storage-python-rados_0.94.3-1contrail2] -file = python-rados_0.94.3-1contrail2_amd64.deb -md5 = 5b481f7b712c098672a191cb43fd5a2b -source = repo:contrail-thirdparty +[storage-python-rados_0.94.7-0ubuntu0.15.04.1~cloud0] +file = python-rados_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 54065dae32fe20e53380ea76f3d8c714 +source = repo:trusty-updates-kilo -[storage-python-rbd_0.94.3-1contrail2] -file = python-rbd_0.94.3-1contrail2_amd64.deb -md5 = 8b058b2398da59a1dc4f39fe95b5b2d2 -source = repo:contrail-thirdparty +[storage-python-rbd_0.94.7-0ubuntu0.15.04.1~cloud0] +file = python-rbd_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 781a820bcffd3ae254bb3946306664a1 +source = repo:trusty-updates-kilo -[storage-radosgw_0.94.3-1contrail2] -file = radosgw_0.94.3-1contrail2_amd64.deb -md5 = feaa72dbc1f1818ed3115ebb925ad6bc -source = repo:contrail-thirdparty +[storage-radosgw_0.94.7-0ubuntu0.15.04.1~cloud0] +file = radosgw_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = e09eb7ab7db5e5f70ce9a450105b616b +source = repo:trusty-updates-kilo -[storage-rbd-fuse_0.94.3-1contrail2] -file = rbd-fuse_0.94.3-1contrail2_amd64.deb -md5 = 7e3fbf8ca8d3fa53d1b672b3953be908 -source = repo:contrail-thirdparty +[storage-rbd-fuse_0.94.7-0ubuntu0.15.04.1~cloud0] +file = rbd-fuse_0.94.7-0ubuntu0.15.04.1~cloud0_amd64.deb +md5 = 278c9b1b4c0dd5a9eeb964c307f6036c +source = repo:trusty-updates-kilo [storage-readline-common_6.3-4ubuntu2] file = readline-common_6.3-4ubuntu2_all.deb md5 = d658036aeedbb56055420a216a45f613 -source = repo:trusty/main +source = repo:trusty [storage-rpcbind_0.2.1-2ubuntu2.2] file = rpcbind_0.2.1-2ubuntu2.2_amd64.deb md5 = 279a20e0acfea4036bce808ee12db789 -source = repo:trusty-updates/main +source = repo:trusty-updates [storage-ruby-json_1.8.0-1build1] file = ruby-json_1.8.0-1build1_amd64.deb md5 = 8a5577a328816da78d573bb5ae490924 -source = repo:trusty/main - -[storage-sas2ircu_16.00.00.00-1contrail1] -file = sas2ircu_16.00.00.00-1contrail1_amd64.deb -md5 = 1e8d0288700a0e416231b88f2fd35674 -source = repo:contrail-thirdparty +source = repo:trusty [storage-sg3-utils_1.36-1ubuntu1] file = sg3-utils_1.36-1ubuntu1_amd64.deb md5 = 1ba42c6c32502350e3cf80994a9d59be -source = repo:trusty/main +source = repo:trusty [storage-smartmontools_6.2+svn3841-1.2] file = smartmontools_6.2+svn3841-1.2_amd64.deb md5 = d03f917eac4a51f138ea47e1bdfc10d5 -source = repo:trusty/main +source = repo:trusty [storage-sysfsutils_2.1.0+repack-3ubuntu1] file = sysfsutils_2.1.0+repack-3ubuntu1_amd64.deb md5 = 641ba8cee477cdcf99f3e6b13cbd7c3d -source = repo:trusty/universe +source = repo:trusty [storage-sysstat_10.2.0-1] file = sysstat_10.2.0-1_amd64.deb md5 = c85d3d8c3d3162c4d6b2efe1b963e0d2 -source = repo:trusty/main +source = repo:trusty -[storage-tgt_1:1.0.43-0ubuntu4.1~14.04.2] -file = tgt_1%%3a1.0.43-0ubuntu4.1~14.04.2_amd64.deb -md5 = 3fee716804c6dd4452b40d3084e67696 -source = repo:trusty-updates/main +[storage-tgt_1:1.0.43-0ubuntu4.1~14.04.3] +file = tgt_1%%3a1.0.43-0ubuntu4.1~14.04.3_amd64.deb +md5 = e662be318b3244b46bf8ab360add5b2e +source = repo:trusty-updates [storage-watershed_7] file = watershed_7_amd64.deb md5 = b1b5d2c6f51e224123e13ea79661913d -source = repo:trusty/main +source = repo:trusty [storage-xfsprogs_3.1.9ubuntu2] file = xfsprogs_3.1.9ubuntu2_amd64.deb md5 = cd7af43d46ad3eca3839ded13f2a0129 -source = repo:trusty/main +source = repo:trusty diff --git a/build/package_configs/ubuntu1404/liberty/base_packages.cfg b/build/package_configs/ubuntu1404/liberty/base_packages.cfg new file mode 100644 index 000000000..2ceabec0d --- /dev/null +++ b/build/package_configs/ubuntu1404/liberty/base_packages.cfg @@ -0,0 +1,11 @@ +# **************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************** +# Usage: +# [package name] +# file = # name of the package +# location = # location where the package file is available +# md5 = # md5 check sum of the package file +# +# ***************************************************************** \ No newline at end of file diff --git a/build/package_configs/ubuntu1404/liberty/contrail_packages.cfg b/build/package_configs/ubuntu1404/liberty/contrail_packages.cfg new file mode 100644 index 000000000..deed5bb01 --- /dev/null +++ b/build/package_configs/ubuntu1404/liberty/contrail_packages.cfg @@ -0,0 +1,259 @@ +# **************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************** +# Usage: +# [build target name] +# pkgs = # list of packages generated by the make target +# # multiple packages are comma separated or with +# # new lines +# +# pkg_pattern = # pattern to match packages. would be used +# # packager to pick packages from given directory +# +# builtloc = # location where packages are copied after built +# # these path are taken relative to sandbox +# +# makeloc = # location where make command has to issued +# # these path are taken relative to git local repo +# Note: +# Sections are grouped as Individual targets, default targets and +# wrapper package. Place your new targets appropriately. +# ***************************************************************** + +############################################################################## +# Default Section +# Values defined in default section applies to variables in all sections +# unless they're are overriden in the section + +[DEFAULT] +pkgs = +pkg_pattern = {pkg}_[0-9]*.deb +builtloc = build/debian/ +target = %(__name__)s +makeloc = +package_type = contrail-install-packages, contrail-packages + +############################################################################### +# Individual target sections + +[contrail] +pkgs = contrail-analytics, contrail-config, contrail-control, contrail-lib, + contrail-nova-driver, contrail-vrouter-agent, contrail-vrouter-dkms, + contrail-vrouter-dpdk, contrail-vrouter-source, + contrail-vrouter-utils, python-contrail, python-contrail-vrouter-api, + contrail-vrouter-3.13.0-85-generic, contrail-config-openstack, + contrail-dns, python-opencontrail-vrouter-netns, contrail-utils, + contrail-nodemgr, contrail-docs +makeloc = tools/packaging/common/debian +builtloc = build/packages + +[contrail-database-common-deb] +pkgs = contrail-database-common +makeloc = tools/packaging/common/debian + +[contrail-heat-deb] +pkgs = contrail-heat +makeloc = tools/packaging/common/debian +builtloc = build/debian/ + +[contrail-vrouter-init-deb] +pkgs = contrail-vrouter-init +makeloc = tools/packaging/common/debian + +[contrail-vrouter-common-deb] +pkgs = contrail-vrouter-common +makeloc = tools/packaging/common/debian + +[contrail-vrouter-dpdk-init-deb] +pkgs = contrail-vrouter-dpdk-init +makeloc = tools/packaging/common/debian + +[contrail-web-core-deb] +pkgs = contrail-web-core +makeloc = tools/packaging/common/debian + +[contrail-web-controller-deb] +pkgs = contrail-web-controller +makeloc = tools/packaging/common/debian + +[contrail-vmware-utils-deb] +pkgs = contrail-vmware-utils +makeloc = tools/packaging/common/debian + +[contrail-nova-vif-deb] +pkgs = contrail-nova-vif +makeloc = tools/packaging/common/debian + +[contrail-nova-networkapi-deb] +pkgs = contrail-nova-networkapi +makeloc = tools/packaging/common/debian + +[contrail-setup-deb] +pkgs = contrail-setup +makeloc = tools/packaging/common/debian + +[contrail-fabric-utils-deb] +pkgs = contrail-fabric-utils +makeloc = tools/packaging/common/debian +package_type = contrail-install-packages, contrail-packages, contrail-installer-packages + +[contrail-openstack-deb] +pkgs = contrail-openstack +makeloc = tools/packaging/common/debian + +[contrail-openstack-analytics-deb] +pkgs = contrail-openstack-analytics +makeloc = tools/packaging/common/debian + +[contrail-openstack-config-deb] +pkgs = contrail-openstack-config +makeloc = tools/packaging/common/debian + +[contrail-openstack-control-deb] +pkgs = contrail-openstack-control +makeloc = tools/packaging/common/debian + +[contrail-openstack-database-deb] +pkgs = contrail-openstack-database +makeloc = tools/packaging/common/debian + +[contrail-openstack-vrouter-deb] +pkgs = contrail-openstack-vrouter +makeloc = tools/packaging/common/debian + +[contrail-openstack-webui-deb] +pkgs = contrail-openstack-webui +makeloc = tools/packaging/common/debian + +[ifmap-server] +pkgs = ifmap-server +makeloc = tools/packaging/common/debian +builtloc = build/packages + +[ifmap-python-client] +pkgs = ifmap-python-client +makeloc = tools/packaging/common/debian +builtloc = build/packages + +[contrail-openstack-dashboard-deb] +pkgs = contrail-openstack-dashboard +makeloc = tools/packaging/common/debian + +#[contrail-ostack-dashboard-deb] +#pkgs = openstack-dashboard +#makeloc = tools/packaging/common/debian + +[openstack-python-neutronclient-deb] +pkgs = python-neutronclient +makeloc = tools/packaging/openstack/debian +builtloc = build/openstack/ + +[neutron-plugin-contrail-deb] +pkgs = neutron-plugin-contrail +makeloc = tools/packaging/openstack/debian +builtloc = build/debian/ + +[ceilometer-plugin-contrail-deb] +pkgs = ceilometer-plugin-contrail +makeloc = tools/packaging/common/debian +builtloc = build/debian/ + +# Virtual Target; Just picks up already built packages +[vrouter-openstack-extra] +pkgs = nova-common, nova-compute, nova-compute-kvm, + nova-compute-libvirt, python-nova +package_type = vrouter-openstack-extra +builtloc = build/openstack +target = + +[contrail-cloud] +pkgs = +package_type = contrail-cloud +builtloc = build/ +target = +sub_package_type = contrail-packages, contrail-openstack-packages, + contrail-thirdparty-packages, contrail-dependent-packages + +[contrail-networking] +pkgs = +package_type = contrail-networking +builtloc = build/ +target = +sub_package_type = contrail-packages, vrouter-openstack-extra, cfgm-openstack-extra, + contrail-thirdparty-packages, contrail-dependent-packages + +[openstack-nova-deb] +pkgs = nova-api, nova-cells, nova-common, nova-compute, + nova-compute-kvm, nova-conductor, nova-console, + nova-consoleauth, nova-novncproxy, nova-objectstore, + nova-scheduler, nova-compute-libvirt, python-nova +makeloc = tools/packaging/openstack/debian +builtloc = build/openstack +package_type = contrail-install-packages, contrail-openstack-packages + +[contrail-openstack-ha-deb] +pkgs = contrail-openstack-ha +makeloc = tools/packaging/common/debian + +[contrail-f5-deb] +pkgs = contrail-f5 +makeloc = tools/packaging/common/debian +builtloc = build/debian + +[contrail-puppet] +pkgs = contrail-puppet +makeloc = tools/packaging/common/debian + +############################################################################### +# Wrapper Package Sections + +[contrail-installer-packages] +pkgs = contrail-installer-packages +makeloc = tools/packaging/common/debian +package_type = contrail-installer-packages + +[contrail-install-packages] +pkgs = contrail-install-packages +makeloc = tools/packaging/common/debian +target = contrail-install-packages-deb +package_type = contrail-install-packages + +[contrail-packages] +pkgs = contrail-packages +makeloc = tools/packaging/common/debian +package_type = contrail-packages +sub_package_type = vrouter-openstack-extra, cfgm-openstack-extra + +[contrail-thirdparty-packages] +pkgs = contrail-thirdparty-packages +makeloc = tools/packaging/common/debian +package_type = contrail-thirdparty-packages + +[contrail-dependent-packages] +pkgs = contrail-dependent-packages +makeloc = tools/packaging/common/debian +package_type = contrail-dependent-packages + +[contrail-openstack-packages] +pkgs = contrail-openstack-packages +makeloc = tools/packaging/common/debian +package_type = contrail-openstack-packages +sub_package_type = vrouter-openstack-extra, cfgm-openstack-extra + +############################################################################### +# Default target sections + +[openstack-default-target] +pkgs = +makeloc = tools/packaging/openstack/debian +target = all +builtloc = build/openstack/ +package_type = contrail-install-packages + +[contrail-default-target] +pkgs = +makeloc = tools/packaging/common/debian/ +target = all +builtloc = build/debian/ +package_type = contrail-install-packages diff --git a/build/package_configs/ubuntu1404/liberty/contrail_storage_packages.cfg b/build/package_configs/ubuntu1404/liberty/contrail_storage_packages.cfg new file mode 100644 index 000000000..083b76443 --- /dev/null +++ b/build/package_configs/ubuntu1404/liberty/contrail_storage_packages.cfg @@ -0,0 +1,44 @@ +# **************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************** +# Usage: +# [build target name] +# pkgs = # list of packages generated by the make target +# +# pkg_pattern = # pattern to match packages. would be used +# # packager to pick packages from given directory +# +# builtloc = # location where packages are copied after built +# +# makeloc = # location where make command has to issued +# # these path are taken relative to git local repo +# ***************************************************************** +[DEFAULT] +pkgs = +pkg_pattern = {pkg}_[0-9]*.deb +builtloc = build/debian/ +target = %(__name__)s +makeloc = +package_type = contrail-storage-packages + +[contrail-storage] +pkgs = contrail-storage +makeloc = tools/packaging/storage/debian +target = contrail-storage-deb + +[contrail-storage-packages] +pkgs = contrail-storage-packages +makeloc = tools/packaging/storage/debian +target = contrail-storage-packages-deb + +[contrail-web-storage-deb] +pkgs = contrail-web-storage +makeloc = tools/packaging/storage/debian +target = contrail-web-storage-deb + +[storage-default-target] +pkgs = +makeloc = tools/packaging/storage/debian/ +target = all +builtloc = build/debian/ diff --git a/build/package_configs/ubuntu1404/liberty/depends_contrail_dependent_packages.cfg b/build/package_configs/ubuntu1404/liberty/depends_contrail_dependent_packages.cfg new file mode 100644 index 000000000..bc8a7892d --- /dev/null +++ b/build/package_configs/ubuntu1404/liberty/depends_contrail_dependent_packages.cfg @@ -0,0 +1,1710 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-install-packages, contrail-dependent-packages + +[acl_2.2.52-1] +file = acl_2.2.52-1_amd64.deb +md5 = ac8db6aa2095dfd83758db34cf31285a +source = repo:trusty/main/ + +[alembic_0.8.2-2ubuntu2~cloud0] +file = alembic_0.8.2-2ubuntu2~cloud0_all.deb +md5 = 59234ab3773edc41987da4c87299b8ed +source = repo:trusty-updates-liberty/main/ + +[apport-symptoms_0.20] +file = apport-symptoms_0.20_all.deb +md5 = 089a296892f64423dcd98987979c871e +source = repo:trusty/main/ + +[apport_2.14.1-0ubuntu3.21] +file = apport_2.14.1-0ubuntu3.21_all.deb +md5 = 9e0cac0cb024b9470d668361f7587687 +source = repo:trusty-updates/main + +[aufs-tools_1:3.2+20130722-1.1] +file = aufs-tools_1%%3a3.2+20130722-1.1_amd64.deb +md5 = 971d9f80df61d9398f7356e60e1c3723 +source = repo:trusty/universe/ + +[augeas-lenses_1.2.0-0ubuntu1.2] +file = augeas-lenses_1.2.0-0ubuntu1.2_all.deb +md5 = 2a64ec1748107102185d807a8fdc493f +source = repo:trusty-updates/main + +[authbind_2.1.1] +file = authbind_2.1.1_amd64.deb +md5 = 970d73e2beae6852c8af26a9b3ae1794 +source = repo:trusty/main/ + +[bridge-utils_1.5-6ubuntu2] +file = bridge-utils_1.5-6ubuntu2_amd64.deb +md5 = 23f37038baab928f276fb1aa2fd0a6c2 +source = repo:trusty/main/ + +[ca-certificates-java_20130815ubuntu1] +file = ca-certificates-java_20130815ubuntu1_all.deb +md5 = efc4948adfc7855968db71d52b181af0 +source = repo:trusty/main/ + +[cgmanager_0.24-0ubuntu7.5] +file = cgmanager_0.24-0ubuntu7.5_amd64.deb +md5 = a6ab4eac3831bfe50ca2b47da9e169ff +source = repo:trusty-updates/main + +[cgroup-lite_1.9] +file = cgroup-lite_1.9_all.deb +md5 = fe1749ba83aaf6d4f3e87ccdbc3581d4 +source = repo:trusty/main/ + +[cpu-checker_0.7-0ubuntu4] +file = cpu-checker_0.7-0ubuntu4_amd64.deb +md5 = 4369a69e41e5b78ab7a4623405455443 +source = repo:trusty/main/ + +[crash_7.0.3-3ubuntu4.4] +file = crash_7.0.3-3ubuntu4.4_amd64.deb +md5 = 41f05464997fe498fdabc96691143b4d +source = repo:trusty-updates/main + +[crudini_0.3-1] +file = crudini_0.3-1_amd64.deb +md5 = 53f6b8981076afc2fe5f545a87426cdd +source = repo:trusty/universe/ + +[default-jre-headless_2:1.7-51] +file = default-jre-headless_2%%3a1.7-51_amd64.deb +md5 = 82babba8748dca94fddb6449c2e0c38e +source = repo:trusty/main/ + +[dkms_2.2.0.3-1.1ubuntu5.14.04.7] +file = dkms_2.2.0.3-1.1ubuntu5.14.04.7_all.deb +md5 = fab70a6c4f896c686947a0f2380b179b +source = repo:trusty-updates/main + +[dnsmasq-base_2.68-1ubuntu0.1] +file = dnsmasq-base_2.68-1ubuntu0.1_amd64.deb +md5 = aaee558be8eddbbdc86bb0623152786d +source = repo:trusty-updates/main + +[ebtables_2.0.10.4-3ubuntu1] +file = ebtables_2.0.10.4-3ubuntu1_amd64.deb +md5 = f96583701c00105823f3f47dea83d916 +source = repo:trusty/main/ + +[fakeroot_1.20-3ubuntu2] +file = fakeroot_1.20-3ubuntu2_amd64.deb +md5 = fad29881d632a463f5235f399fa65a14 +source = repo:trusty/main/ + +[fontconfig-config_2.11.0-0ubuntu4.2] +file = fontconfig-config_2.11.0-0ubuntu4.2_all.deb +md5 = 0810d79c48f4cc873a73a721b6f51806 +source = repo:trusty-updates/main + +[fonts-dejavu-core_2.34-1ubuntu1] +file = fonts-dejavu-core_2.34-1ubuntu1_all.deb +md5 = 7167c133d8ec713c90fc64faab927994 +source = repo:trusty/main/ + +[gawk_1:4.0.1+dfsg-2.1ubuntu2] +file = gawk_1%%3a4.0.1+dfsg-2.1ubuntu2_amd64.deb +md5 = 799aeb4150f914136decbe942ef7de9a +source = repo:trusty/main/ + +[genisoimage_9:1.1.11-2ubuntu3] +file = genisoimage_9%%3a1.1.11-2ubuntu3_amd64.deb +md5 = 69f0b6dcc3cc655d1ab27ca2aadb32b6 +source = repo:trusty/main/ + +[git-man_1:1.9.1-1ubuntu0.3] +file = git-man_1%%3a1.9.1-1ubuntu0.3_all.deb +md5 = b9614019a1917fad0ff0edc6ddd53b91 +source = repo:trusty-updates/main + +[git_1:1.9.1-1ubuntu0.3] +file = git_1%%3a1.9.1-1ubuntu0.3_amd64.deb +md5 = 7ae18fa4b16c33b3ed506e23e7f26779 +source = repo:trusty-updates/main + +[iproute_1:3.12.0-2ubuntu1] +file = iproute_1%%3a3.12.0-2ubuntu1_all.deb +md5 = f20fa31756530920ae3c237b337dc7bc +source = repo:trusty-updates/main + +[ipset_6.20.1-1] +file = ipset_6.20.1-1_amd64.deb +md5 = 83afed4179463cff8ae0d85d2be1346b +source = repo:trusty/universe/ + +[ipvsadm_1:1.26-2ubuntu1] +file = ipvsadm_1%%3a1.26-2ubuntu1_amd64.deb +md5 = d62d75f400a4466eded2949d91c40ff8 +source = repo:trusty/main/ + +[ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1.1] +file = ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1.1_all.deb +md5 = 2ed810c34ce0682174eb97461673c00e +source = repo:trusty-updates/main + +[java-common_0.51] +file = java-common_0.51_all.deb +md5 = c8352e7908b8a260b2657f9b80c08031 +source = repo:trusty/main/ + +[kdump-tools_1.5.5-2ubuntu1.5] +file = kdump-tools_1.5.5-2ubuntu1.5_all.deb +md5 = 1ace74c48059ba8641dcae07b3cd1f8c +source = repo:trusty-updates/main + +[kexec-tools_1:2.0.6-0ubuntu2.2] +file = kexec-tools_1%%3a2.0.6-0ubuntu2.2_amd64.deb +md5 = fb0a3d4ec4528e33d9df31e53154ca40 +source = repo:trusty-updates/main + +[keyutils_1.5.6-1] +file = keyutils_1.5.6-1_amd64.deb +md5 = a49da8cb9cc16bdaf1ef8b205bf99d2e +source = repo:trusty/main/ + +[kpartx_0.4.9-3ubuntu7.13] +file = kpartx_0.4.9-3ubuntu7.13_amd64.deb +md5 = be61034339f4d0b5c30b201075006827 +source = repo:trusty-updates/main + +[libaio1_0.3.109-4] +file = libaio1_0.3.109-4_amd64.deb +md5 = cd9da2f52a5d7713e5080c5ed6916a41 +source = repo:trusty/main/ + +[libasound2-data_1.0.27.2-3ubuntu7] +file = libasound2-data_1.0.27.2-3ubuntu7_all.deb +md5 = 1b78d6d03ed4303e843ba2c5bae3bc53 +source = repo:trusty/main/ + +[libasound2_1.0.27.2-3ubuntu7] +file = libasound2_1.0.27.2-3ubuntu7_amd64.deb +md5 = 68d7619e0a70770c5feef628f8296409 +source = repo:trusty/main/ + +[libasyncns0_0.8-4ubuntu2] +file = libasyncns0_0.8-4ubuntu2_amd64.deb +md5 = bf233bc958e37dab60c0f1ab7f8c6bf0 +source = repo:trusty/main/ + +[libaugeas0_1.2.0-0ubuntu1.2] +file = libaugeas0_1.2.0-0ubuntu1.2_amd64.deb +md5 = e6d726b1b212fcbd6c82247c1c92e8bc +source = repo:trusty-updates/main + +[libavahi-client3_0.6.31-4ubuntu1.1] +file = libavahi-client3_0.6.31-4ubuntu1.1_amd64.deb +md5 = a768c3a502a204fca430f98fab12d676 +source = repo:trusty-updates/main + +[libavahi-common-data_0.6.31-4ubuntu1.1] +file = libavahi-common-data_0.6.31-4ubuntu1.1_amd64.deb +md5 = 3878bcc211212dfe7158765344638d0f +source = repo:trusty-updates/main + +[libavahi-common3_0.6.31-4ubuntu1.1] +file = libavahi-common3_0.6.31-4ubuntu1.1_amd64.deb +md5 = ddf978df5cbc75ad174cd66db0d90846 +source = repo:trusty-updates/main + +[libbluetooth3_4.101-0ubuntu13.1] +file = libbluetooth3_4.101-0ubuntu13.1_amd64.deb +md5 = 0577a4e8b377f3751b018494096df9e4 +source = repo:trusty-updates/main + +[libboost-chrono1.54.0_1.54.0-4ubuntu3.1] +file = libboost-chrono1.54.0_1.54.0-4ubuntu3.1_amd64.deb +md5 = 6afd51c2ce1c023fc2df50e2e70b07ed +source = repo:trusty-updates/main + +[libboost-filesystem1.54.0_1.54.0-4ubuntu3.1] +file = libboost-filesystem1.54.0_1.54.0-4ubuntu3.1_amd64.deb +md5 = d4c687c97e90c678a7319fafba6081c8 +source = repo:trusty-updates/main + +[libboost-program-options1.54.0_1.54.0-4ubuntu3.1] +file = libboost-program-options1.54.0_1.54.0-4ubuntu3.1_amd64.deb +md5 = 0c4fdd70ec7b36c5ddce304565a2dd02 +source = repo:trusty-updates/main + +[libboost-python1.54.0_1.54.0-4ubuntu3.1] +file = libboost-python1.54.0_1.54.0-4ubuntu3.1_amd64.deb +md5 = f8383cd7711ea48eea73763043f00f19 +source = repo:trusty-updates/main + +[libboost-regex1.54.0_1.54.0-4ubuntu3.1] +file = libboost-regex1.54.0_1.54.0-4ubuntu3.1_amd64.deb +md5 = 4351519527cbfc93d2461cdd1c528ab2 +source = repo:trusty-updates/main + +[libboost-system1.54.0_1.54.0-4ubuntu3.1] +file = libboost-system1.54.0_1.54.0-4ubuntu3.1_amd64.deb +md5 = 2a5872be9fcc3cc0a51d9ec0d42c41a7 +source = repo:trusty-updates/main + +[libboost-thread1.54.0_1.54.0-4ubuntu3.1] +file = libboost-thread1.54.0_1.54.0-4ubuntu3.1_amd64.deb +md5 = 2e7b4afdd0d85037864a2c3e3ef19999 +source = repo:trusty-updates/main + +[libbrlapi0.6_5.0-2ubuntu2] +file = libbrlapi0.6_5.0-2ubuntu2_amd64.deb +md5 = d0072983318e559dc57fea88c494ed33 +source = repo:trusty/main/ + +[libcaca0_0.99.beta18-1ubuntu5] +file = libcaca0_0.99.beta18-1ubuntu5_amd64.deb +md5 = 2532fc55507b526751257c826e6b1b43 +source = repo:trusty/main/ + +[libcommons-codec-java_1.9-1] +file = libcommons-codec-java_1.9-1_all.deb +md5 = a863c457f1bf27251f574c9827240a54 +source = repo:trusty/main/ + +[libcups2_1.7.2-0ubuntu1.7] +file = libcups2_1.7.2-0ubuntu1.7_amd64.deb +md5 = 44573174451bfc3da06be711c65e6de9 +source = repo:trusty-updates/main + +[libdbd-mysql-perl_4.025-1] +file = libdbd-mysql-perl_4.025-1_amd64.deb +md5 = 2409373cd5f8fb702e6c636c28eb5e2e +source = repo:trusty/main/ + +[libdbi-perl_1.630-1] +file = libdbi-perl_1.630-1_amd64.deb +md5 = 53c59ad9793bbd09d9c8dedcdecaba1c +source = repo:trusty/main/ + +[libdrm-intel1_2.4.67-1ubuntu0.14.04.1] +file = libdrm-intel1_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = cccdf9969c69298ce04728e589c8ff80 +source = repo:trusty-updates/main + +[libdrm-nouveau2_2.4.67-1ubuntu0.14.04.1] +file = libdrm-nouveau2_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = 34284472aa48294499654fffc5b21d8d +source = repo:trusty-updates/main + +[libdrm-radeon1_2.4.67-1ubuntu0.14.04.1] +file = libdrm-radeon1_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = c0665182f97b69f5dfa973d87c61551b +source = repo:trusty-updates/main + +[libdw1_0.158-0ubuntu5.2] +file = libdw1_0.158-0ubuntu5.2_amd64.deb +md5 = 13106fc64315d54553789cd857369557 +source = repo:trusty-updates/main + +[libelf1_0.158-0ubuntu5.2] +file = libelf1_0.158-0ubuntu5.2_amd64.deb +md5 = 7c622ac0bdb90b547f3cd18c8e7369b0 +source = repo:trusty-updates/main/ + +[liberror-perl_0.17-1.1] +file = liberror-perl_0.17-1.1_all.deb +md5 = 4988e40e65eeba03317411bfdd52b76c +source = repo:trusty/main/ + +[libevent-2.0-5_2.0.21-stable-1ubuntu1.14.04.1] +file = libevent-2.0-5_2.0.21-stable-1ubuntu1.14.04.1_amd64.deb +md5 = 66bae54dc127761b5d044d20a49c84c4 +source = repo:trusty-updates/main + +[libfakeroot_1.20-3ubuntu2] +file = libfakeroot_1.20-3ubuntu2_amd64.deb +md5 = 856c7401d7d5a63ea231f706c18d9261 +source = repo:trusty/main/ + +[libfdt1_1.4.0+dfsg-1] +file = libfdt1_1.4.0+dfsg-1_amd64.deb +md5 = 5dd80e05348eec241f62ff8dd7d2e8f2 +source = repo:trusty/main/ + +[libfile-copy-recursive-perl_0.38-1] +file = libfile-copy-recursive-perl_0.38-1_all.deb +md5 = f9f292787835ae54426e80678737509c +source = repo:trusty/main/ + +[libflac8_1.3.0-2ubuntu0.14.04.1] +file = libflac8_1.3.0-2ubuntu0.14.04.1_amd64.deb +md5 = bbd48c917a12d425f0e14873575bc64c +source = repo:trusty-updates/main + +[libfontconfig1_2.11.0-0ubuntu4.2] +file = libfontconfig1_2.11.0-0ubuntu4.2_amd64.deb +md5 = 1ca4767d44771ef7e9e5b29c27738f69 +source = repo:trusty-updates/main + +[libgd3_2.1.0-3ubuntu0.3] +file = libgd3_2.1.0-3ubuntu0.3_amd64.deb +md5 = 82f90ac540cd2e9642f2af81c6f4ea32 +source = repo:trusty-updates/main + +[libgl1-mesa-dri_10.1.3-0ubuntu0.6] +file = libgl1-mesa-dri_10.1.3-0ubuntu0.6_amd64.deb +md5 = f7dbf4c1e51262b970f023a3e5346c90 +source = repo:trusty-updates/main + +[libgl1-mesa-glx_10.1.3-0ubuntu0.6] +file = libgl1-mesa-glx_10.1.3-0ubuntu0.6_amd64.deb +md5 = 47440d679d91118f52b692795d08bc33 +source = repo:trusty-updates/main + +[libglapi-mesa_10.1.3-0ubuntu0.6] +file = libglapi-mesa_10.1.3-0ubuntu0.6_amd64.deb +md5 = 036734591b144bca4a1bf0191aa2e837 +source = repo:trusty-updates/main + +[libgssglue1_0.4-2ubuntu1] +file = libgssglue1_0.4-2ubuntu1_amd64.deb +md5 = 08250dff6de699fceff270123f609b49 +source = repo:trusty/main/ + +[libhttpcore-java_4.3.2-2] +file = libhttpcore-java_4.3.2-2_all.deb +md5 = 1af4e58d152e526215d3851f64477ed8 +source = repo:trusty/universe/ + +[libicu52_52.1-3ubuntu0.4] +file = libicu52_52.1-3ubuntu0.4_amd64.deb +md5 = ed4da162328dc75beb75e38ca291c959 +source = repo:trusty-updates/main + +[libipset3_6.20.1-1] +file = libipset3_6.20.1-1_amd64.deb +md5 = 4aac4a69aea8e9939ccfbb89dfbd4a15 +source = repo:trusty/universe/ + +[libjbig0_2.0-2ubuntu4.1] +file = libjbig0_2.0-2ubuntu4.1_amd64.deb +md5 = 8be949a9bb46ade19b29e72ff4329a0a +source = repo:trusty-updates/main + +[libjemalloc1_3.5.1-2] +file = libjemalloc1_3.5.1-2_amd64.deb +md5 = 00605dfc92f2fe7d961e543704cfb7c4 +source = repo:trusty/universe/ + +[libjline-java_1.0-2] +file = libjline-java_1.0-2_all.deb +md5 = f4a54be4875239c80f4411f9cc45c0fd +source = repo:trusty/main/ + +[libjpeg-turbo8_1.3.0-0ubuntu2] +file = libjpeg-turbo8_1.3.0-0ubuntu2_amd64.deb +md5 = 9b8b32831e8332714737af0342f57b28 +source = repo:trusty/main/ + +[libjpeg8_8c-2ubuntu8] +file = libjpeg8_8c-2ubuntu8_amd64.deb +md5 = e0f16286dd787b951ffa953987fdf6a7 +source = repo:trusty/main/ + +[libjs-jquery_1.7.2+dfsg-2ubuntu1] +file = libjs-jquery_1.7.2+dfsg-2ubuntu1_all.deb +md5 = 08cb6ee293e5570df48cbff3b1316cb5 +source = repo:trusty/main/ + +[libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1.1] +file = libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1.1_all.deb +md5 = e879f3796e2e62c43f79bdfab3ecdbbd +source = repo:trusty-updates/main + +[libjs-underscore_1.4.4-2ubuntu1] +file = libjs-underscore_1.4.4-2ubuntu1_all.deb +md5 = 305ad423ee8697a945c3610cf10a6bdf +source = repo:trusty/main/ + +[liblcms2-2_2.5-0ubuntu4.1] +file = liblcms2-2_2.5-0ubuntu4.1_amd64.deb +md5 = 90a2cbf106072d361749c2750eea55b2 +source = repo:trusty-updates/main + +[libllvm3.4_1:3.4-1ubuntu3] +file = libllvm3.4_1%%3a3.4-1ubuntu3_amd64.deb +md5 = ce34c38ebc9452526f3710ad79456b2f +source = repo:trusty/main/ + +[liblog4cplus-1.0-4_1.0.4-1ubuntu1] +file = liblog4cplus-1.0-4_1.0.4-1ubuntu1_amd64.deb +md5 = 9a93f6adb918003efcf59f410adeea07 +source = repo:trusty/universe/ + +[liblog4j1.2-java_1.2.17-4ubuntu3] +file = liblog4j1.2-java_1.2.17-4ubuntu3_all.deb +md5 = e42a1c68f176e5b4b12b850afae2ec8b +source = repo:trusty/main/ + +[libmnl0_1.0.3-3ubuntu1] +file = libmnl0_1.0.3-3ubuntu1_amd64.deb +md5 = 2949d1dd95caec6257bc70095e1d37cc +source = repo:trusty/main/ + +[libmysqlclient18_5.5.50-0ubuntu0.14.04.1] +file = libmysqlclient18_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 443401d387c892efea4eabe988c2ac4a +source = repo:trusty-updates/main + +[libnetcf1_1:0.2.3-4ubuntu1] +file = libnetcf1_1%%3a0.2.3-4ubuntu1_amd64.deb +md5 = 8be8b7c76a08cdb30057e309b733b5b6 +source = repo:trusty/main/ + +[libnetfilter-conntrack3_1.0.4-1] +file = libnetfilter-conntrack3_1.0.4-1_amd64.deb +md5 = fa82697b8119c7a2cbc0c7d3d1f64dc8 +source = repo:trusty/main/ + +[libnetty-java_1:3.2.6.Final-2] +file = libnetty-java_1%%3a3.2.6.Final-2_all.deb +md5 = 8e6999001bcaf1c019d7083ff7d843f1 +source = repo:trusty/universe/ + +[libnfsidmap2_0.25-5] +file = libnfsidmap2_0.25-5_amd64.deb +md5 = 5e06543f26481fa549a1e017eec4ef36 +source = repo:trusty/main/ + +[libnl-3-200_3.2.21-1ubuntu3] +file = libnl-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = e80a3f4c5b08821194c2cac3a00bfdf3 +source = repo:trusty-updates/main + +[libnl-genl-3-200_3.2.21-1ubuntu3] +file = libnl-genl-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = 9697116877182a3420e7c70099f81277 +source = repo:trusty-updates/main + +[libnl-route-3-200_3.2.21-1ubuntu3] +file = libnl-route-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = 6beae5555b1dd067872dab32aa624154 +source = repo:trusty-updates/main + +[libnspr4_2:4.12-0ubuntu0.14.04.1] +file = libnspr4_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = cff22f4863f0e8356900e6b26872a63c +source = repo:trusty-updates/main + +[libnss3-nssdb_2:3.23-0ubuntu0.14.04.1] +file = libnss3-nssdb_2%%3a3.23-0ubuntu0.14.04.1_all.deb +md5 = 7b4064d8bb5f8ca3f0aec63699666564 +source = repo:trusty-updates/main + +[libnss3_2:3.23-0ubuntu0.14.04.1] +file = libnss3_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 915f9fd9b0b0d18bbfe66f47774daec8 +source = repo:trusty-updates/main + +[libogg0_1.3.1-1ubuntu1] +file = libogg0_1.3.1-1ubuntu1_amd64.deb +md5 = a6411133fd6d72d08bbcb265a7f31103 +source = repo:trusty/main/ + +[libpciaccess0_0.13.2-1] +file = libpciaccess0_0.13.2-1_amd64.deb +md5 = 79fc58d377c1501d3dab6bd75bc71911 +source = repo:trusty/main/ + +[libpcsclite1_1.8.10-1ubuntu1] +file = libpcsclite1_1.8.10-1ubuntu1_amd64.deb +md5 = adece73e911ca3dbdd3925294c75afee +source = repo:trusty/main/ + +[libperl5.18_5.18.2-2ubuntu1.1] +file = libperl5.18_5.18.2-2ubuntu1.1_amd64.deb +md5 = 1bbe27c70dbf9d4bce15d57cc317ca3f +source = repo:trusty-updates/main + +[libpixman-1-0_0.30.2-2ubuntu1.1] +file = libpixman-1-0_0.30.2-2ubuntu1.1_amd64.deb +md5 = 2d12f5e47dad9b5f61299706413976da +source = repo:trusty-updates/main + +[libpolkit-agent-1-0_0.105-4ubuntu3.14.04.1] +file = libpolkit-agent-1-0_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = ed544800dc75cef2ea3ecb112fb99b5a +source = repo:trusty-updates/main + +[libpolkit-backend-1-0_0.105-4ubuntu3.14.04.1] +file = libpolkit-backend-1-0_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = 5a8538404755408b5733ce1715e1ab9f +source = repo:trusty-updates/main + +[libprotobuf8_2.5.0-9ubuntu1] +file = libprotobuf8_2.5.0-9ubuntu1_amd64.deb +md5 = e0ef0861f40071ed6f6606ac3b7c3742 +source = repo:trusty/main/ + +[libpulse0_1:4.0-0ubuntu11.1] +file = libpulse0_1%%3a4.0-0ubuntu11.1_amd64.deb +md5 = 84213503252a6aec962b12cd170af23f +source = repo:trusty-updates/main + +[librados2_0.94.7-0ubuntu0.15.10.1~cloud0] +file = librados2_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = bccf40a480970a513538aefce6de4137 +source = repo:trusty-updates-liberty/main/ + +[librbd1_0.94.7-0ubuntu0.15.10.1~cloud0] +file = librbd1_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 4251231671f86bd06224da0f0658c6f5 +source = repo:trusty-updates-liberty/main/ + +[libsctp1_1.0.15+dfsg-1] +file = libsctp1_1.0.15+dfsg-1_amd64.deb +md5 = 6bc0748fae5badaa0fa7e7b22345b9c7 +source = repo:trusty/main/ + +[libsdl1.2debian_1.2.15-8ubuntu1.1] +file = libsdl1.2debian_1.2.15-8ubuntu1.1_amd64.deb +md5 = 063b125221dda816ec3554eea53ce52e +source = repo:trusty-updates/main + +[libseccomp2_2.2.3-2ubuntu1~cloud0] +file = libseccomp2_2.2.3-2ubuntu1~cloud0_amd64.deb +md5 = 782d19fe731c8d94d4bc84d528133560 +source = repo:trusty-updates-liberty/main/ + +[libsensors4_1:3.3.4-2ubuntu1] +file = libsensors4_1%%3a3.3.4-2ubuntu1_amd64.deb +md5 = 042d478dd8c2f8d47fe197b2bbf2e8a1 +source = repo:trusty/main/ + +[libservlet2.5-java_6.0.39-1] +file = libservlet2.5-java_6.0.39-1_all.deb +md5 = 1487fcc2361e1ff68528e9a79c3bdb2c +source = repo:trusty/universe/ + +[libsigsegv2_2.10-2] +file = libsigsegv2_2.10-2_amd64.deb +md5 = 02a1d6194bd62571a9dcbcad5071d8d9 +source = repo:trusty/main/ + +[libslf4j-java_1.7.5-2] +file = libslf4j-java_1.7.5-2_all.deb +md5 = 3666d5d622c51ad306c47c1505fe0b75 +source = repo:trusty/universe/ + +[libsndfile1_1.0.25-7ubuntu2.1] +file = libsndfile1_1.0.25-7ubuntu2.1_amd64.deb +md5 = a01199628faa5c1ec2b97c167c25c0e9 +source = repo:trusty-updates/main + +[libsnmp-base_5.7.2~dfsg-8.1ubuntu3.2] +file = libsnmp-base_5.7.2~dfsg-8.1ubuntu3.2_all.deb +md5 = 895d89dabe4d3cd8ad7fc7b7c730e627 +source = repo:trusty-updates/main + +[libsnmp30_5.7.2~dfsg-8.1ubuntu3.2] +file = libsnmp30_5.7.2~dfsg-8.1ubuntu3.2_amd64.deb +md5 = 57dc2070a946c4e33cf8fcfe251f9868 +source = repo:trusty-updates/main + +[libspice-server1_0.12.4-0nocelt2ubuntu1.3] +file = libspice-server1_0.12.4-0nocelt2ubuntu1.3_amd64.deb +md5 = 60095317b5d23d0b3c39e39969f4bf44 +source = repo:trusty-updates/main + +[libt1-5_5.1.2-3.6ubuntu1] +file = libt1-5_5.1.2-3.6ubuntu1_amd64.deb +md5 = 9008d07107340862975b565155479341 +source = repo:trusty/main/ + +[libtbb2_4.2~20130725-1.1ubuntu1] +file = libtbb2_4.2~20130725-1.1ubuntu1_amd64.deb +md5 = 5113cda4c289295e7ed4b83dfa0b91d1 +source = repo:trusty/universe/ + +[libtiff5_4.0.3-7ubuntu0.4] +file = libtiff5_4.0.3-7ubuntu0.4_amd64.deb +md5 = 1c9177bf7f922d87d4af3a54b4a107b7 +source = repo:trusty-updates/main + +[libtirpc1_0.2.2-5ubuntu2] +file = libtirpc1_0.2.2-5ubuntu2_amd64.deb +md5 = acc1c8e0345c8c3e53ba94a59a4729d8 +source = repo:trusty/main/ + +[libtxc-dxtn-s2tc0_0~git20131104-1.1] +file = libtxc-dxtn-s2tc0_0~git20131104-1.1_amd64.deb +md5 = 4aca9162717cd9eb1e42f531217801f9 +source = repo:trusty/main/ + +[liburcu2_0.8.7-2~cloud2] +file = liburcu2_0.8.7-2~cloud2_amd64.deb +md5 = b42cd89fcfd0b4bbf84bd38c3f3ea2ef +source = repo:trusty-updates-liberty/main/ + +[libusbredirparser1_0.6-2ubuntu1.1] +file = libusbredirparser1_0.6-2ubuntu1.1_amd64.deb +md5 = 60574ac64168133bd8a974d58b7e9c5e +source = repo:trusty-updates/main + +[libvirt-bin_1.2.16-2ubuntu11.15.10.4~cloud0+contrail1_amd64.deb] +file = libvirt-bin_1.2.16-2ubuntu11.15.10.4~cloud0+contrail1_amd64.deb +md5 = 2292ca3c4c99c2f8f6a51fae5f648e37 +source = repo:contrail-thirdparty + +[libvirt0_1.2.16-2ubuntu11.15.10.4~cloud0+contrail1_amd64.deb] +file = libvirt0_1.2.16-2ubuntu11.15.10.4~cloud0+contrail1_amd64.deb +md5 = 27d93c14aaefdadf0d5c2f3f7b19cd0f +source = repo:contrail-thirdparty + +[libvorbis0a_1.3.2-1.3ubuntu1] +file = libvorbis0a_1.3.2-1.3ubuntu1_amd64.deb +md5 = e89e05f389fdaa1b834803a08c9213a4 +source = repo:trusty/main/ + +[libvorbisenc2_1.3.2-1.3ubuntu1] +file = libvorbisenc2_1.3.2-1.3ubuntu1_amd64.deb +md5 = fbdffecfc0a3f0dc45ec2480f54ea251 +source = repo:trusty/main/ + +[libvpx1_1.3.0-2] +file = libvpx1_1.3.0-2_amd64.deb +md5 = a163fb61078a4a67b1d705bd1ea9093b +source = repo:trusty/main/ + +[libx11-xcb1_2:1.6.2-1ubuntu2] +file = libx11-xcb1_2%%3a1.6.2-1ubuntu2_amd64.deb +md5 = 883e22f0ff03018c9fad15b5c10a2fca +source = repo:trusty/main/ + +[libx86-1_1.1+ds1-10] +file = libx86-1_1.1+ds1-10_amd64.deb +md5 = d166a4d98f6ce17e6f17787bfc8a6ef5 +source = repo:trusty/main/ + +[libxcb-dri2-0_1.10-2ubuntu1] +file = libxcb-dri2-0_1.10-2ubuntu1_amd64.deb +md5 = 90169585d4c43e4a4da49ce3f2568384 +source = repo:trusty/main/ + +[libxcb-dri3-0_1.10-2ubuntu1] +file = libxcb-dri3-0_1.10-2ubuntu1_amd64.deb +md5 = 310d42718a6d50f1be400e1fa774d86a +source = repo:trusty/main/ + +[libxcb-glx0_1.10-2ubuntu1] +file = libxcb-glx0_1.10-2ubuntu1_amd64.deb +md5 = 632239048a95f7c2edd3225de98ed801 +source = repo:trusty/main/ + +[libxcb-present0_1.10-2ubuntu1] +file = libxcb-present0_1.10-2ubuntu1_amd64.deb +md5 = e17e52f8953a544d1f0a56a156e6c7f5 +source = repo:trusty/main/ + +[libxcb-sync1_1.10-2ubuntu1] +file = libxcb-sync1_1.10-2ubuntu1_amd64.deb +md5 = 6cdc1b75cfb4797da9d19add8646a70e +source = repo:trusty/main/ + +[libxdamage1_1:1.1.4-1ubuntu1] +file = libxdamage1_1%%3a1.1.4-1ubuntu1_amd64.deb +md5 = c1e6ea0fc620fc3ce50ebbfee62e3f0c +source = repo:trusty/main/ + +[libxen-4.4_4.4.2-0ubuntu0.14.04.6] +file = libxen-4.4_4.4.2-0ubuntu0.14.04.6_amd64.deb +md5 = 01902042887b57bb12591a64a45c9bd7 +source = repo:trusty-updates/main + +[libxenstore3.0_4.4.2-0ubuntu0.14.04.6] +file = libxenstore3.0_4.4.2-0ubuntu0.14.04.6_amd64.deb +md5 = 2dd53c140e4d4c58d57f25c82c3cc57a +source = repo:trusty-updates/main + +[libxerces2-java_2.11.0-7] +file = libxerces2-java_2.11.0-7_all.deb +md5 = fa8bcb033daef7c85f4636435ea2747b +source = repo:trusty/main/ + +[libxfixes3_1:5.0.1-1ubuntu1.1] +file = libxfixes3_1%%3a5.0.1-1ubuntu1.1_amd64.deb +md5 = 9fda7ada36fbbe966cf30f474a6a4a40 +source = repo:trusty-updates/main + +[libxml-commons-external-java_1.4.01-2build1] +file = libxml-commons-external-java_1.4.01-2build1_all.deb +md5 = a3ba72113c451b98099d582afa64112c +source = repo:trusty/main/ + +[libxml-commons-resolver1.1-java_1.2-7build1] +file = libxml-commons-resolver1.1-java_1.2-7build1_all.deb +md5 = b90c2054a7e0fed8ee79b582952b310b +source = repo:trusty/main/ + +[libxml2-utils_2.9.1+dfsg1-3ubuntu4.8] +file = libxml2-utils_2.9.1+dfsg1-3ubuntu4.8_amd64.deb +md5 = dda408befcc3b92a0bab8916eb799f23 +source = repo:trusty-updates/main + +[libxpm4_1:3.5.10-1] +file = libxpm4_1%%3a3.5.10-1_amd64.deb +md5 = 4985dad7e98401b47c79b377333ae1c7 +source = repo:trusty/main/ + +[libxshmfence1_1.1-2] +file = libxshmfence1_1.1-2_amd64.deb +md5 = 921fc248a972eb54e063759eaec9fe83 +source = repo:trusty/main/ + +[libxslt1.1_1.1.28-2build1] +file = libxslt1.1_1.1.28-2build1_amd64.deb +md5 = 8193d46e498f445991c78e9da9b238a6 +source = repo:trusty/main/ + +[libxxf86vm1_1:1.1.3-1] +file = libxxf86vm1_1%%3a1.1.3-1_amd64.deb +md5 = b61960ea6bd4f73ff903f63235b35c25 +source = repo:trusty/main/ + +[libyajl2_2.0.4-4] +file = libyajl2_2.0.4-4_amd64.deb +md5 = d7241d878ea65cbed080196411ec92c2 +source = repo:trusty/main/ + +[libzookeeper-java-doc_3.4.5+dfsg-1] +file = libzookeeper-java-doc_3.4.5+dfsg-1_all.deb +md5 = 0e425299487e2e2edf4d2adc491c20fa +source = repo:trusty/universe/ + +[libzookeeper-java_3.4.5+dfsg-1] +file = libzookeeper-java_3.4.5+dfsg-1_all.deb +md5 = 2d2793872aa6faf93cce49dd85600b95 +source = repo:trusty/universe/ + +[libzookeeper-mt2_3.4.5+dfsg-1] +file = libzookeeper-mt2_3.4.5+dfsg-1_amd64.deb +md5 = 45430fcb0a6ef134390339c3d577e700 +source = repo:trusty/universe/ + +[linux-crashdump_3.13.0.95.103] +file = linux-crashdump_3.13.0.95.103_amd64.deb +md5 = 3fbffb3b99a206543bd57e41cc3750d4 +source = repo:trusty-updates/main + +[linux-headers-3.13.0-40-generic_3.13.0-40.69] +file = linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb +md5 = 5746e3f726d3828c48de16e4b37c7b75 +source = repo:trusty-updates/main + +[linux-headers-3.13.0-40_3.13.0-40.69] +file = linux-headers-3.13.0-40_3.13.0-40.69_all.deb +md5 = 2a60945600c4429f426dd7cadc6c73df +source = repo:trusty-updates/main + +[linux-headers-3.13.0-83-generic_3.13.0-83.127] +file = linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 5df332a60e776a0d0e79e54bdb291707 +source = repo:trusty-updates/main + +[linux-headers-3.13.0-83_3.13.0-83.127] +file = linux-headers-3.13.0-83_3.13.0-83.127_all.deb +md5 = 50bf914d576b43b2e28c1862c3638c82 +source = repo:trusty-updates/main + +[linux-headers-3.13.0-85-generic_3.13.0-85.129] +file = linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = ea4e36e8e787115b19bddb3c74bac3cb +source = repo:trusty-updates/main + +[linux-headers-3.13.0-85_3.13.0-85.129] +file = linux-headers-3.13.0-85_3.13.0-85.129_all.deb +md5 = 8153507a22c943d64055df2a8490dc7d +source = repo:trusty-updates/main + +[linux-image-3.13.0-40-generic_3.13.0-40.69] +file = linux-image-3.13.0-40-generic_3.13.0-40.69_amd64.deb +md5 = a6ba0601c1f8662cad6604dfd9d070b0 +source = repo:trusty-updates/main + +[linux-image-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 1488cbc687bebc497f2112f93131a727 +source = repo:trusty-updates/main + +[linux-image-3.13.0-85-generic_3.13.0-85.129] +file = linux-image-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = fc7234f99aff2a0f0dfb1c3b1a44dacf +source = repo:trusty-updates/main + +[linux-image-extra-3.13.0-40-generic_3.13.0-40.69] +file = linux-image-extra-3.13.0-40-generic_3.13.0-40.69_amd64.deb +md5 = 3b38dc787fcf8b8a1ccd89e60077df58 +source = repo:trusty-updates/main + +[linux-image-extra-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-extra-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 4832e8b6a6654b8d20ae53f279ff878d +source = repo:trusty-updates/main + +[linux-image-extra-3.13.0-85-generic_3.13.0-85.129] +file = linux-image-extra-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = 5e660aae162edc373ecdb8668ab3d0b8 +source = repo:trusty-updates/main + +[lksctp-tools_1.0.15+dfsg-1] +file = lksctp-tools_1.0.15+dfsg-1_amd64.deb +md5 = 39373482904f27eddebcef56b9bcf13f +source = repo:trusty/main/ + +[makedumpfile_1.5.5-2ubuntu1.5] +file = makedumpfile_1.5.5-2ubuntu1.5_amd64.deb +md5 = 1d85845e5c616fa9119db30276e1316c +source = repo:trusty-updates/main + +[msr-tools_1.3-2] +file = msr-tools_1.3-2_amd64.deb +md5 = 5ffb50c3889cfccc901b940923d89e29 +source = repo:trusty/main/ + +[mysql-common_5.5.50-0ubuntu0.14.04.1] +file = mysql-common_5.5.50-0ubuntu0.14.04.1_all.deb +md5 = e2de1adae6567e6c40c7171cdc6b48e5 +source = repo:trusty-updates/main + +[neutron-common_2:7.1.1-0ubuntu1~cloud0] +file = neutron-common_2%%3a7.1.1-0ubuntu1~cloud0_all.deb +md5 = c5f29c558112200324744f09f4962210 +source = repo:trusty-updates-liberty/main/ + +[neutron-plugin-ml2_2:7.1.1-0ubuntu1~cloud0] +file = neutron-plugin-ml2_2%%3a7.1.1-0ubuntu1~cloud0_all.deb +md5 = 2e6db2fa82bcc8ebbb6de794aa3533e3 +source = repo:trusty-updates-liberty/main/ + +[neutron-server_2:7.1.1-0ubuntu1~cloud0] +file = neutron-server_2%%3a7.1.1-0ubuntu1~cloud0_all.deb +md5 = 9e49c9bce6d55afee11f0970af17242b +source = repo:trusty-updates-liberty/main/ + +[nfs-common_1:1.2.8-6ubuntu1.2] +file = nfs-common_1%%3a1.2.8-6ubuntu1.2_amd64.deb +md5 = 64d83aabb28de942a6e367181ed580ca +source = repo:trusty-updates/main + +[nfs-kernel-server_1:1.2.8-6ubuntu1.2] +file = nfs-kernel-server_1%%3a1.2.8-6ubuntu1.2_amd64.deb +md5 = 84e9549cb2263fe0433bbc862fb4efc7 +source = repo:trusty-updates/main + +[open-iscsi_2.0.873-3ubuntu9] +file = open-iscsi_2.0.873-3ubuntu9_amd64.deb +md5 = baa821890ea97d60e291c87d2dc439ae +source = repo:trusty/main/ + +[openjdk-7-jre-headless_7u111-2.6.7-0ubuntu0.14.04.3] +file = openjdk-7-jre-headless_7u111-2.6.7-0ubuntu0.14.04.3_amd64.deb +md5 = e7434bc689222bf72d080c65a40ef6f2 +source = repo:trusty-updates/main + +[percona-xtrabackup_2.1.8-1] +file = percona-xtrabackup_2.1.8-1_amd64.deb +md5 = 01758f32efe8426a44695f25f4a4117a +source = repo:trusty/universe/ + +[perl-base_5.18.2-2ubuntu1.1] +file = perl-base_5.18.2-2ubuntu1.1_amd64.deb +md5 = d032a8ff7c2609d93af93e02aa7cf5ba +source = repo:trusty-updates/main + +[perl-modules_5.18.2-2ubuntu1.1] +file = perl-modules_5.18.2-2ubuntu1.1_all.deb +md5 = 75bfbc6a0725be5533d5920d031bb121 +source = repo:trusty-updates/main + +[perl_5.18.2-2ubuntu1.1] +file = perl_5.18.2-2ubuntu1.1_amd64.deb +md5 = c923b93fb9aa7f1ff97fcea2539bd8b9 +source = repo:trusty-updates/main + +[php5-cli_5.5.9+dfsg-1ubuntu4.19] +file = php5-cli_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = f7cfa14e9c0ea097d23d9638647a223d +source = repo:trusty-updates/main + +[php5-common_5.5.9+dfsg-1ubuntu4.19] +file = php5-common_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 3f18d7b759d9e2f7a7cb9d98b58caf2d +source = repo:trusty-updates/main + +[php5-gd_5.5.9+dfsg-1ubuntu4.19] +file = php5-gd_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 57b5a59d6aaefe19a7a286de230c58a1 +source = repo:trusty-updates/main + +[php5-json_1.3.2-2build1] +file = php5-json_1.3.2-2build1_amd64.deb +md5 = 9d2445c670f4148ce72a0edb73f4ede0 +source = repo:trusty/main/ + +[php5-mysql_5.5.9+dfsg-1ubuntu4.19] +file = php5-mysql_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = ca5a49303bf3f422159947aeaf4bcff9 +source = repo:trusty-updates/main + +[php5-readline_5.5.9+dfsg-1ubuntu4.19] +file = php5-readline_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 9819ddabc784adcf6b1bc03c02bc3006 +source = repo:trusty-updates/main + +[pm-utils_1.4.1-13ubuntu0.2] +file = pm-utils_1.4.1-13ubuntu0.2_all.deb +md5 = 03a8612ffee21b5bf66e8251c0584414 +source = repo:trusty-updates/main + +[policykit-1_0.105-4ubuntu3.14.04.1] +file = policykit-1_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = 5ab9c109043f9f50851441ab6b0babf3 +source = repo:trusty-updates/main + +[python-alembic_0.8.2-2ubuntu2~cloud0] +file = python-alembic_0.8.2-2ubuntu2~cloud0_all.deb +md5 = 3f13f91552859507bc19e7c26710e676 +source = repo:trusty-updates-liberty/main/ + +[python-amqp_1.4.6-3~cloud0] +file = python-amqp_1.4.6-3~cloud0_all.deb +md5 = d4e0f49cf7b5e335b1f917e157fca201 +source = repo:trusty-updates-liberty/main/ + +[python-anyjson_0.3.3-1build1] +file = python-anyjson_0.3.3-1build1_all.deb +md5 = 12fd230b8619d75b80d63b154b2b94d0 +source = repo:trusty/main/ + +[python-babel-localedata_1.3+dfsg.1-2ubuntu2] +file = python-babel-localedata_1.3+dfsg.1-2ubuntu2_all.deb +md5 = 04b563190593c2cfbb03c684db356bcf +source = repo:trusty-updates/main + +[python-babel_1.3+dfsg.1-2ubuntu2] +file = python-babel_1.3+dfsg.1-2ubuntu2_all.deb +md5 = af3cd914d55062d4e165dc7b1e536507 +source = repo:trusty-updates/main + +[python-barbicanclient_3.3.0-2~cloud0] +file = python-barbicanclient_3.3.0-2~cloud0_all.deb +md5 = 6a64332f8133b3387f9a9d0b83fb061d +source = repo:trusty-updates-liberty/main/ + +[python-bottle_0.12.0-1] +file = python-bottle_0.12.0-1_all.deb +md5 = 1a4e42bfa1b06f6ec20c39f5b493f3d6 +source = repo:trusty/universe/ + +[python-bs4_4.2.1-1ubuntu2] +file = python-bs4_4.2.1-1ubuntu2_all.deb +md5 = 88cdf603cfadcea1434107d4ffe454bd +source = repo:trusty/main/ + +[python-cachetools_1.0.3-1~cloud0] +file = python-cachetools_1.0.3-1~cloud0_all.deb +md5 = 7fd8b5a42a3a997887a4c9faa172af57 +source = repo:trusty-updates-liberty/main/ + +[python-cffi-backend_1.1.2-1ubuntu2~cloud2] +file = python-cffi-backend_1.1.2-1ubuntu2~cloud2_amd64.deb +md5 = a6eeddae3e72c4f810436ae731820531 +source = repo:trusty-updates-liberty/main/ + +[python-cffi_1.1.2-1ubuntu2~cloud2] +file = python-cffi_1.1.2-1ubuntu2~cloud2_all.deb +md5 = 82708403df72df837e73d8512d53500a +source = repo:trusty-updates-liberty/main/ + +[python-cliff_1.14.0-1ubuntu1~cloud0] +file = python-cliff_1.14.0-1ubuntu1~cloud0_all.deb +md5 = b94ae36564ad1c3f4b9b833c05e805a6 +source = repo:trusty-updates-liberty/main/ + +[python-cmd2_0.6.7-2fakesync1build1] +file = python-cmd2_0.6.7-2fakesync1build1_all.deb +md5 = 9b2fea5232b418bee0ae8144aee42e6b +source = repo:trusty/main/ + +[python-concurrent.futures_3.0.3-1~cloud0] +file = python-concurrent.futures_3.0.3-1~cloud0_all.deb +md5 = 6c6dd433b7f263c5553954e16f49a08c +source = repo:trusty-updates-liberty/main/ + +[python-contextlib2_0.4.0-2.1~cloud0] +file = python-contextlib2_0.4.0-2.1~cloud0_all.deb +md5 = 520b1a5e8562819288b9743b713dd3af +source = repo:trusty-updates-liberty/main/ + +[python-cryptography_1.0.1-1ubuntu1~cloud1] +file = python-cryptography_1.0.1-1ubuntu1~cloud1_amd64.deb +md5 = e4296f05db1a70ee1a7910148c1904e0 +source = repo:trusty-updates-liberty/main/ + +[python-dbus-dev_1.2.0-2build2] +file = python-dbus-dev_1.2.0-2build2_all.deb +md5 = 85d5d7dde8f70301fab9c9722d5dcbce +source = repo:trusty/main/ + +[python-dbus_1.2.0-2build2] +file = python-dbus_1.2.0-2build2_amd64.deb +md5 = be870be93e3576e45d2243e3c812e99e +source = repo:trusty/main/ + +[python-debtcollector_0.8.0-1~cloud0] +file = python-debtcollector_0.8.0-1~cloud0_all.deb +md5 = 2730e98af2d6e278cd4ae0b99952dc3c +source = repo:trusty-updates-liberty/main/ + +[python-decorator_3.4.0-2build1] +file = python-decorator_3.4.0-2build1_all.deb +md5 = 14b3d2529bbf2ba7ea46553586ce24ed +source = repo:trusty/main/ + +[python-dns_2.3.6-3] +file = python-dns_2.3.6-3_all.deb +md5 = 34c7f050754596bd1bf406934623f6ff +source = repo:trusty/main/ + +[python-enum34_1.0.4-2~cloud0] +file = python-enum34_1.0.4-2~cloud0_all.deb +md5 = 6c8bc315b1a549ad57afaa6a0627435a +source = repo:trusty-updates-liberty/main/ + +[python-eventlet_0.17.4-2ubuntu1~cloud0] +file = python-eventlet_0.17.4-2ubuntu1~cloud0_all.deb +md5 = b42d80907317e5d448ef2147782d115d +source = repo:trusty-updates-liberty/main/ + +[python-extras_0.0.3-2ubuntu1] +file = python-extras_0.0.3-2ubuntu1_all.deb +md5 = a0f3242f6ef4e8143fa584e0aa887efe +source = repo:trusty/main/ + +[python-fasteners_0.12.0-1ubuntu1~cloud0] +file = python-fasteners_0.12.0-1ubuntu1~cloud0_all.deb +md5 = 8c1ff0dd7ebc08a05c3fd465be084a4d +source = repo:trusty-updates-liberty/main/ + +[python-fixtures_1.3.1-0ubuntu1~cloud0] +file = python-fixtures_1.3.1-0ubuntu1~cloud0_all.deb +md5 = 98ffc29d08a3a82d192c2721cf826cb3 +source = repo:trusty-updates-liberty/main/ + +[python-formencode_1.2.6-1ubuntu1] +file = python-formencode_1.2.6-1ubuntu1_all.deb +md5 = d33916fa01b79f40d3f7956cb0b84875 +source = repo:trusty/main/ + +[python-futurist_0.5.0-1~cloud0] +file = python-futurist_0.5.0-1~cloud0_all.deb +md5 = 15abd9b3d662d546eee2172063056342 +source = repo:trusty-updates-liberty/main/ + +[python-gevent_1.0-1ubuntu1.1] +file = python-gevent_1.0-1ubuntu1.1_amd64.deb +md5 = 009938f1686163b0d2746e0649aa3366 +source = repo:trusty-updates/main + +[python-gi_3.12.0-1ubuntu1] +file = python-gi_3.12.0-1ubuntu1_amd64.deb +md5 = dda91b6444f7e7e1a6d579711084784e +source = repo:trusty-updates/main + +[python-greenlet_0.4.2-1ubuntu0.1] +file = python-greenlet_0.4.2-1ubuntu0.1_amd64.deb +md5 = d60b17fe3c82ecdfc16fe2da075f3ee8 +source = repo:trusty-updates/main + +[python-httplib2_0.8-2build1] +file = python-httplib2_0.8-2build1_all.deb +md5 = f89336424e43d4c425427218fe78ca7f +source = repo:trusty/main/ + +[python-idna_2.0-3~cloud0] +file = python-idna_2.0-3~cloud0_all.deb +md5 = fec3805671c637d95f757df1ef9665ce +source = repo:trusty-updates-liberty/main/ + +[python-ipaddress_1.0.14-2~cloud0] +file = python-ipaddress_1.0.14-2~cloud0_all.deb +md5 = ce5ad346289ad8c90687d2e706727096 +source = repo:trusty-updates-liberty/main/ + +[python-iso8601_0.1.10-0ubuntu1] +file = python-iso8601_0.1.10-0ubuntu1_all.deb +md5 = cf96e81ac68c98ba7dccab09b29e7a1b +source = repo:trusty/main/ + +[python-jinja2_2.7.2-2] +file = python-jinja2_2.7.2-2_all.deb +md5 = 9cd2578120e51095678dce07fe22a7ad +source = repo:trusty/main/ + +[python-jsonpickle_0.6.1-1] +file = python-jsonpickle_0.6.1-1_all.deb +md5 = db9b413b399c262c53a547fb3e6e7342 +source = repo:trusty/universe/ + +[python-keyring_3.5-1] +file = python-keyring_3.5-1_all.deb +md5 = 33e304163689ded4658db93ffe62be55 +source = repo:trusty/main/ + +[python-keystoneclient_1:1.7.1-1ubuntu3~cloud0] +file = python-keystoneclient_1%%3a1.7.1-1ubuntu3~cloud0_all.deb +md5 = 64d823bc3482f492bfdbf7d908a7dd1c +source = repo:trusty-updates-liberty/main/ + +[python-keystonemiddleware_2.3.0-1~cloud0] +file = python-keystonemiddleware_2.3.0-1~cloud0_all.deb +md5 = 65a92c7b1e9aa8d34be2cb1c3ffaab0b +source = repo:trusty-updates-liberty/main/ + +[python-kombu_3.0.26-1ubuntu2~cloud0] +file = python-kombu_3.0.26-1ubuntu2~cloud0_all.deb +md5 = 81ea6bd41d8abeefbb7d1352de851f76 +source = repo:trusty-updates-liberty/main/ + +[python-libvirt_1.2.15-0ubuntu1~cloud0] +file = python-libvirt_1.2.15-0ubuntu1~cloud0_amd64.deb +md5 = fdd7fa53f75255da2319450e6351bf15 +source = repo:trusty-updates-liberty/main/ + +[python-linecache2_1.0.0-2~cloud0] +file = python-linecache2_1.0.0-2~cloud0_all.deb +md5 = 54f265aca3c5d326ae9765a2e4d5b654 +source = repo:trusty-updates-liberty/main/ + +[python-logutils_0.3.3-1] +file = python-logutils_0.3.3-1_all.deb +md5 = eab1885a8d7289f8145cc8fa35cde3e0 +source = repo:trusty/universe/ + +[python-mako_0.9.1-1] +file = python-mako_0.9.1-1_all.deb +md5 = 78c42602a68f81f6e49034fbeea117a5 +source = repo:trusty/main/ + +[python-markupsafe_0.18-1build2] +file = python-markupsafe_0.18-1build2_amd64.deb +md5 = 710ec5c745dcd9994e049c3da8ecef7e +source = repo:trusty/main/ + +[python-meld3_0.6.10-1] +file = python-meld3_0.6.10-1_amd64.deb +md5 = e29f37ebfa28bb3ddebc91df3c339b47 +source = repo:trusty/universe/ + +[python-migrate_0.9.7-1ubuntu1~cloud0] +file = python-migrate_0.9.7-1ubuntu1~cloud0_all.deb +md5 = e646efffa25ede82e95c69420a28e594 +source = repo:trusty-updates-liberty/main/ + +[python-mimeparse_0.1.4-1build1] +file = python-mimeparse_0.1.4-1build1_all.deb +md5 = 35001c4d6be265d6040285d96bb04fa5 +source = repo:trusty/main/ + +[python-monotonic_0.3-1~cloud0] +file = python-monotonic_0.3-1~cloud0_all.deb +md5 = 38416784c040cb5659739fac48df6e2e +source = repo:trusty-updates-liberty/main/ + +[python-msgpack_0.4.2-1build1~cloud0] +file = python-msgpack_0.4.2-1build1~cloud0_amd64.deb +md5 = f5a384717a72a27bf27faa883c476b69 +source = repo:trusty-updates-liberty/main/ + +[python-netsnmp_5.7.2~dfsg-8.1ubuntu3.2] +file = python-netsnmp_5.7.2~dfsg-8.1ubuntu3.2_amd64.deb +md5 = 377f172050ff6236dc0c8624e241b246 +source = repo:trusty-updates/universe/ + +[python-neutron-fwaas_1:7.1.1-0ubuntu1~cloud0] +file = python-neutron-fwaas_1%%3a7.1.1-0ubuntu1~cloud0_all.deb +md5 = 2c1b0cd87075220c311c9872ef3d494e +source = repo:trusty-updates-liberty/main/ + +[python-neutron-lbaas_2:7.1.1-0ubuntu1~cloud0] +file = python-neutron-lbaas_2%%3a7.1.1-0ubuntu1~cloud0_all.deb +md5 = de9dc30836d77220c2faf1c3d72acdcb +source = repo:trusty-updates-liberty/main/ + +[python-neutron_2:7.1.1-0ubuntu1~cloud0] +file = python-neutron_2%%3a7.1.1-0ubuntu1~cloud0_all.deb +md5 = 3e90efdb83f137b3c7c52866db5f482f +source = repo:trusty-updates-liberty/main/ + +[python-openid_2.2.5-3ubuntu1] +file = python-openid_2.2.5-3ubuntu1_all.deb +md5 = 18f10f480ec0e16fab9c27e361148ade +source = repo:trusty/main/ + +[python-openssl_0.15.1-2build1~cloud0] +file = python-openssl_0.15.1-2build1~cloud0_all.deb +md5 = a14ac242d9f384f9b896bee7f8208bbd +source = repo:trusty-updates-liberty/main/ + +[python-oslo.concurrency_2.6.1-0ubuntu1~cloud0] +file = python-oslo.concurrency_2.6.1-0ubuntu1~cloud0_all.deb +md5 = 90b82c3789c2146808de9e2c4a172987 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.config_1:2.4.0-1~cloud0] +file = python-oslo.config_1%%3a2.4.0-1~cloud0_all.deb +md5 = 4850241d95a54f5b929e69bc86d07fe7 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.context_0.6.0-1~cloud0] +file = python-oslo.context_0.6.0-1~cloud0_all.deb +md5 = e288c4cdfbe2987f6b1da8b94d65b806 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.db_2.6.0-1~cloud0] +file = python-oslo.db_2.6.0-1~cloud0_all.deb +md5 = 025858f1c5b9d676975fab808f6f7719 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.i18n_2.6.0-1~cloud0] +file = python-oslo.i18n_2.6.0-1~cloud0_all.deb +md5 = 265f1cc02ac693f47f5d596b03de4156 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.log_1.11.0-1ubuntu0~cloud0] +file = python-oslo.log_1.11.0-1ubuntu0~cloud0_all.deb +md5 = 9b43eddfa08a6b71a975dabd8ac5730b +source = repo:trusty-updates-liberty/main/ + +[python-oslo.messaging_2.5.0-1ubuntu2~cloud0] +file = python-oslo.messaging_2.5.0-1ubuntu2~cloud0_all.deb +md5 = 9eaeeb3e9ffd7975624cedd3de027a84 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.middleware_2.8.0-1~cloud0] +file = python-oslo.middleware_2.8.0-1~cloud0_all.deb +md5 = fdad19589c67b5d402547cc9cae20675 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.policy_0.11.0-1~cloud0] +file = python-oslo.policy_0.11.0-1~cloud0_all.deb +md5 = c11bd052dc71a99fac36db66b8935632 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.rootwrap_2.3.0-1~cloud0] +file = python-oslo.rootwrap_2.3.0-1~cloud0_all.deb +md5 = d54825467db16a68d57eb1f141610037 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.serialization_1.9.0-1~cloud0] +file = python-oslo.serialization_1.9.0-1~cloud0_all.deb +md5 = ca56a18b716152c550979eab68690ae0 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.service_0.9.0-1~cloud0] +file = python-oslo.service_0.9.0-1~cloud0_all.deb +md5 = d2494c0640e16ddb90f88a794fe4c822 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.utils_2.5.0-1ubuntu1~cloud0] +file = python-oslo.utils_2.5.0-1ubuntu1~cloud0_all.deb +md5 = 577ac1f5d717782b6a8577d190048349 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.versionedobjects_0.10.0-1~cloud0] +file = python-oslo.versionedobjects_0.10.0-1~cloud0_all.deb +md5 = 6d13fcb9aa8df2deb87c0df4b73680f1 +source = repo:trusty-updates-liberty/main/ + +[python-paste_1.7.5.1-6ubuntu3] +file = python-paste_1.7.5.1-6ubuntu3_all.deb +md5 = 087a0e6d604920077dba2eb699fee451 +source = repo:trusty/main/ + +[python-pastedeploy-tpl_1.5.2-1] +file = python-pastedeploy-tpl_1.5.2-1_all.deb +md5 = 026875f9ea63f46eb1c7271f48563ce4 +source = repo:trusty/main/ + +[python-pastedeploy_1.5.2-1] +file = python-pastedeploy_1.5.2-1_all.deb +md5 = 3c0587c8218a420b1718ab9b5f01b42f +source = repo:trusty/main/ + +[python-pastescript_1.7.5-3build1] +file = python-pastescript_1.7.5-3build1_all.deb +md5 = efbe8811182fd40546ff68cd99ab0df7 +source = repo:trusty/main/ + +[python-pbr_1.8.0-2ubuntu1~cloud0] +file = python-pbr_1.8.0-2ubuntu1~cloud0_all.deb +md5 = ab89a95aa5916054cb27fd005d959f51 +source = repo:trusty-updates-liberty/main/ + +[python-pecan_1.0.2-1ubuntu1~cloud0] +file = python-pecan_1.0.2-1ubuntu1~cloud0_all.deb +md5 = 28d69c96e89161574dc8e7591be80a24 +source = repo:trusty-updates-liberty/main/ + +[python-ply_3.4-3ubuntu2] +file = python-ply_3.4-3ubuntu2_all.deb +md5 = 780d4d20630869b23007bd41bd5dc98e +source = repo:trusty/main/ + +[python-posix-ipc_0.9.8-2build1~cloud0] +file = python-posix-ipc_0.9.8-2build1~cloud0_amd64.deb +md5 = fac251e5cfa706454bd0eca40f2ed93c +source = repo:trusty-updates-liberty/main/ + +[python-prettytable_0.7.2-2ubuntu2] +file = python-prettytable_0.7.2-2ubuntu2_all.deb +md5 = 1532d286ecad16204509eca1e97b8c37 +source = repo:trusty/main/ + +[python-psutil_1.2.1-1ubuntu2] +file = python-psutil_1.2.1-1ubuntu2_amd64.deb +md5 = d2bcb47170d171e72068dad186d9f6cd +source = repo:trusty/main/ + +[python-pyasn1-modules_0.0.3-1] +file = python-pyasn1-modules_0.0.3-1_all.deb +md5 = b9cc8295b02e62590d5d870ef7d0ef49 +source = repo:trusty/universe/ + +[python-pyasn1_0.1.8-2~cloud0] +file = python-pyasn1_0.1.8-2~cloud0_all.deb +md5 = 58c260ca929c7d3931e64a8c9e3f4cd7 +source = repo:trusty-updates-liberty/main/ + +[python-pycadf_1.1.0-0ubuntu1~cloud0] +file = python-pycadf_1.1.0-0ubuntu1~cloud0_all.deb +md5 = 2d7ad4567c9c7416d6efc2b909cdf6c3 +source = repo:trusty-updates-liberty/main/ + +[python-pycparser_2.10+dfsg-1ubuntu2] +file = python-pycparser_2.10+dfsg-1ubuntu2_all.deb +md5 = 1766f7c2db0611cf118f2f1c1dfeff2d +source = repo:trusty/universe/ + +[python-pymysql_0.6.2-2~cloud0] +file = python-pymysql_0.6.2-2~cloud0_all.deb +md5 = 21b56bb533deabc1eb2c73065f37d2c2 +source = repo:trusty-updates-liberty/main/ + +[python-pyparsing_2.0.1+dfsg1-1build1] +file = python-pyparsing_2.0.1+dfsg1-1build1_all.deb +md5 = 33831b0b33cd23bd2266f6f19dac2817 +source = repo:trusty/main/ + +[python-repoze.lru_0.6-4] +file = python-repoze.lru_0.6-4_all.deb +md5 = ec42d32ed67499bf97f2843b4b667b7e +source = repo:trusty/main/ + +[python-requests_2.7.0-3~cloud0] +file = python-requests_2.7.0-3~cloud0_all.deb +md5 = 588b7b23396655f01818689f60dba9d7 +source = repo:trusty-updates-liberty/main/ + +[python-retrying_1.3.3-1~cloud0] +file = python-retrying_1.3.3-1~cloud0_all.deb +md5 = 56aca16e2fdd6eda5304e8ed810fc11b +source = repo:trusty-updates-liberty/main/ + +[python-routes_2.2-1ubuntu1~cloud0] +file = python-routes_2.2-1ubuntu1~cloud0_all.deb +md5 = 7baba71e3aaa7e625f9b0af3d3812993 +source = repo:trusty-updates-liberty/main/ + +[python-scgi_1.13-1.1build1] +file = python-scgi_1.13-1.1build1_amd64.deb +md5 = cf245a8f89a68cef75d45d943bcbe8e3 +source = repo:trusty/main/ + +[python-secretstorage_2.0.0-1ubuntu1.1] +file = python-secretstorage_2.0.0-1ubuntu1.1_all.deb +md5 = 8fcd73649c96d8056b87ada01ff702de +source = repo:trusty-updates/main + +[python-simplegeneric_0.8.1-1] +file = python-simplegeneric_0.8.1-1_all.deb +md5 = fc5b6db5f33a90082b89507dab83dd20 +source = repo:trusty/main/ + +[python-simplejson_3.3.1-1ubuntu6] +file = python-simplejson_3.3.1-1ubuntu6_amd64.deb +md5 = 9dfdf538974081a2e1c8ff0ac57f872b +source = repo:trusty/main/ + +[python-singledispatch_3.4.0.2-1] +file = python-singledispatch_3.4.0.2-1_all.deb +md5 = e2fca1472153b1c89b6b5d72913ba245 +source = repo:trusty/universe/ + +[python-six_1.9.0-5~cloud0] +file = python-six_1.9.0-5~cloud0_all.deb +md5 = 3b0bcaea6f14a65bea6b03cc33440d6a +source = repo:trusty-updates-liberty/main/ + +[python-sqlalchemy-ext_1.0.8+ds1-1ubuntu5~cloud0] +file = python-sqlalchemy-ext_1.0.8+ds1-1ubuntu5~cloud0_amd64.deb +md5 = 2ad5f9b9928b8cacb5ccc56eb50cf7e7 +source = repo:trusty-updates-liberty/main/ + +[python-sqlalchemy_1.0.8+ds1-1ubuntu5~cloud0] +file = python-sqlalchemy_1.0.8+ds1-1ubuntu5~cloud0_all.deb +md5 = 93c5066786c76e73b6569b9f32b898a3 +source = repo:trusty-updates-liberty/main/ + +[python-sqlparse_0.1.10-1] +file = python-sqlparse_0.1.10-1_all.deb +md5 = 5d5e2d3f31599669331d2deadbede74f +source = repo:trusty/universe/ + +[python-stevedore_1.5.0-1~cloud0] +file = python-stevedore_1.5.0-1~cloud0_all.deb +md5 = dea1936267f6c6d93f11324cda92636c +source = repo:trusty-updates-liberty/main/ + +[python-tempita_0.5.2-1build1] +file = python-tempita_0.5.2-1build1_all.deb +md5 = fa4fd67b02d761715923b71375fd6f08 +source = repo:trusty/main/ + +[python-testresources_0.2.7-1ubuntu2] +file = python-testresources_0.2.7-1ubuntu2_all.deb +md5 = a4f093d3064d8839cc930af365c60547 +source = repo:trusty/main/ + +[python-testscenarios_0.4-2ubuntu2] +file = python-testscenarios_0.4-2ubuntu2_all.deb +md5 = e6686084709fc63c00943d1f343c6541 +source = repo:trusty/main/ + +[python-testtools_1.4.0-0ubuntu2~cloud0] +file = python-testtools_1.4.0-0ubuntu2~cloud0_all.deb +md5 = 3ae8777731033edef21395c807236fcc +source = repo:trusty-updates-liberty/main/ + +[python-thrift_0.9.0-1build1] +file = python-thrift_0.9.0-1build1_amd64.deb +md5 = 8c575c6f55b81fb07c8b03c14c2be2fb +source = repo:trusty/main/ + +[python-traceback2_1.4.0-3~cloud0] +file = python-traceback2_1.4.0-3~cloud0_all.deb +md5 = 1e0324342f4b6a091ca92162d9c492b5 +source = repo:trusty-updates-liberty/main/ + +[python-tz_2014.10~dfsg1-0ubuntu2~cloud0] +file = python-tz_2014.10~dfsg1-0ubuntu2~cloud0_all.deb +md5 = 6034dbb020acb120aad38b478fb22808 +source = repo:trusty-updates-liberty/main/ + +[python-unicodecsv_0.13.0-2~cloud0] +file = python-unicodecsv_0.13.0-2~cloud0_all.deb +md5 = bcc01d0bbdb454cbc56500e301ccdf23 +source = repo:trusty-updates-liberty/main/ + +[python-unittest2_1.1.0-5ubuntu1~cloud0] +file = python-unittest2_1.1.0-5ubuntu1~cloud0_all.deb +md5 = 10df81489dd397d52fc7d64f636b40e8 +source = repo:trusty-updates-liberty/main/ + +[python-urllib3_1.11-1~cloud1] +file = python-urllib3_1.11-1~cloud1_all.deb +md5 = 8177c026a39f7e81d728f60a4402873c +source = repo:trusty-updates-liberty/main/ + +[python-waitress_0.8.8-1ubuntu3] +file = python-waitress_0.8.8-1ubuntu3_all.deb +md5 = 684a0b7c8d8fa234c4fc289afc8914f6 +source = repo:trusty/main/ + +[python-webob_1.4.1-1~cloud0] +file = python-webob_1.4.1-1~cloud0_all.deb +md5 = d4cbd14e72516ef8ead0e41d2dd7376b +source = repo:trusty-updates-liberty/main/ + +[python-websocket_0.12.0-1ubuntu2] +file = python-websocket_0.12.0-1ubuntu2_all.deb +md5 = d5aa805d654c76f3ee51f0c08b7638fe +source = repo:trusty/universe/ + +[python-webtest_2.0.14-1ubuntu1] +file = python-webtest_2.0.14-1ubuntu1_all.deb +md5 = 4291bf89503e270abfed8a8850a8210f +source = repo:trusty/main/ + +[python-wrapt_1.8.0-5build1~cloud0] +file = python-wrapt_1.8.0-5build1~cloud0_amd64.deb +md5 = f46cde2d53b8e42b1ec2cb2aee6f44aa +source = repo:trusty-updates-liberty/main/ + +[python-zope.interface_4.0.5-1ubuntu4] +file = python-zope.interface_4.0.5-1ubuntu4_amd64.deb +md5 = 74638361153d4f40914cdfb23a2d1523 +source = repo:trusty/main/ + +[python3-apport_2.14.1-0ubuntu3.21] +file = python3-apport_2.14.1-0ubuntu3.21_all.deb +md5 = c647ddd76cd9cb5a531ce175e81746a6 +source = repo:trusty-updates/main + +[python3-problem-report_2.14.1-0ubuntu3.21] +file = python3-problem-report_2.14.1-0ubuntu3.21_all.deb +md5 = be1c2b9746879df60c815d561d42d4c8 +source = repo:trusty-updates/main + +[qemu-block-extra_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-block-extra_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = 69fcb304f15e1cc386d488ebbe9a5c28 +source = repo:trusty-updates-liberty/main/ + +[qemu-slof_20140630+dfsg-1ubuntu1~14.04] +file = qemu-slof_20140630+dfsg-1ubuntu1~14.04_all.deb +md5 = 9253268d9c35dcdbdbfe2cdd966eac42 +source = repo:trusty-updates/main + +[qemu-system-arm_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-system-arm_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = c53e027c50237c159e55af0f0dcbc473 +source = repo:trusty-updates-liberty/main/ + +[qemu-system-common_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-system-common_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = 878ebf9d62cb202cf5ee4aafa5e5172d +source = repo:trusty-updates-liberty/main/ + +[qemu-system-mips_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-system-mips_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = 4f8a2432d2af3055967e5ade6f1c945a +source = repo:trusty-updates-liberty/main/ + +[qemu-system-misc_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-system-misc_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = 2a51c17d8b26a42f2338d341f9ea4cb8 +source = repo:trusty-updates-liberty/main/ + +[qemu-system-ppc_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-system-ppc_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = ad1edd8062df6304c30b790e2d3a3d0a +source = repo:trusty-updates-liberty/main/ + +[qemu-system-sparc_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-system-sparc_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = 9a5edbeba3e6f73969a010fbc064368d +source = repo:trusty-updates-liberty/main/ + +[qemu-system-x86_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-system-x86_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = ed19f22877256bf8437045ed9f9a7133 +source = repo:trusty-updates-liberty/main/ + +[qemu-system_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-system_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = 2f8e301d765a513f6b5105bcc554ef81 +source = repo:trusty-updates-liberty/main/ + +[qemu-utils_1:2.3+dfsg-5ubuntu9.4~cloud1] +file = qemu-utils_1%%3a2.3+dfsg-5ubuntu9.4~cloud1_amd64.deb +md5 = 50e21754528723fc6a628e8f729b5d94 +source = repo:trusty-updates-liberty/main/ + +[redis-server_2:2.8.4-2] +file = redis-server_2%%3a2.8.4-2_amd64.deb +md5 = 066f3ce93331b876b691df69d11b7e36 +source = repo:trusty/universe/ + +[redis-tools_2:2.8.4-2] +file = redis-tools_2%%3a2.8.4-2_amd64.deb +md5 = 14b24b44ae06d6a46022189296e0777c +source = repo:trusty/universe/ + +[rpcbind_0.2.1-2ubuntu2.2] +file = rpcbind_0.2.1-2ubuntu2.2_amd64.deb +md5 = 279a20e0acfea4036bce808ee12db789 +source = repo:trusty-updates/main + +[seabios_1.8.2-1ubuntu1~cloud0] +file = seabios_1.8.2-1ubuntu1~cloud0_all.deb +md5 = bccb7691db3a099daf54ee27429b312a +source = repo:trusty-updates-liberty/main/ + +[sharutils_1:4.14-1ubuntu1] +file = sharutils_1%%3a4.14-1ubuntu1_amd64.deb +md5 = 021cd2f95dd7fa1b4218d1caf50c882e +source = repo:trusty/main/ + +[ttf-dejavu-core_2.34-1ubuntu1] +file = ttf-dejavu-core_2.34-1ubuntu1_all.deb +md5 = 9a1638907f97e9374172634e274f71fb +source = repo:trusty/main/ + +[tzdata-java_2016f-0ubuntu0.14.04] +file = tzdata-java_2016f-0ubuntu0.14.04_all.deb +md5 = 5620efdbb515981213d76b01d5a1c6b0 +source = repo:trusty-updates/main + +[tzdata_2016f-0ubuntu0.14.04] +file = tzdata_2016f-0ubuntu0.14.04_all.deb +md5 = 8853ac8e274c495758674be2ca67aa0d +source = repo:trusty-updates/main + +[update-inetd_4.43] +file = update-inetd_4.43_all.deb +md5 = 6e166b2422a7dff8154cdd3fdf1e0af7 +source = repo:trusty/main/ + +[vbetool_1.1-3] +file = vbetool_1.1-3_amd64.deb +md5 = e5487da0e86050f4ce7804dc8f822256 +source = repo:trusty/main/ + +[xinetd_1:2.3.15-3ubuntu1] +file = xinetd_1%%3a2.3.15-3ubuntu1_amd64.deb +md5 = 1b7626e4edab8164b11f74b323a4413f +source = repo:trusty/main/ + +[zookeeper_3.4.5+dfsg-1] +file = zookeeper_3.4.5+dfsg-1_all.deb +md5 = 59083991e535cb097e9db55714b78589 +source = repo:trusty/universe/ + diff --git a/build/package_configs/ubuntu1404/liberty/depends_contrail_installer_packages.cfg b/build/package_configs/ubuntu1404/liberty/depends_contrail_installer_packages.cfg new file mode 100644 index 000000000..b4e946012 --- /dev/null +++ b/build/package_configs/ubuntu1404/liberty/depends_contrail_installer_packages.cfg @@ -0,0 +1,375 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-install-packages, contrail-dependent-packages, contrail-installer-packages + +[binutils_2.24-5ubuntu14.1] +file = binutils_2.24-5ubuntu14.1_amd64.deb +md5 = 85dd95077b946a274f9814639eba4d06 +source = repo:trusty-updates/main/ + +[build-essential_11.6ubuntu6] +file = build-essential_11.6ubuntu6_amd64.deb +md5 = 6fa3d082885a7440d512236685cd24fd +source = repo:trusty/main/ + +[cpp-4.8_4.8.4-2ubuntu1~14.04.3] +file = cpp-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c87a404428865790862aeb6195811066 +source = repo:trusty-updates/main/ + +[cpp_4:4.8.2-1ubuntu6] +file = cpp_4%%3a4.8.2-1ubuntu6_amd64.deb +md5 = 2ced23b24cf068b16b5a69222506fd79 +source = repo:trusty/main/ + +[curl_7.35.0-1ubuntu2.9] +file = curl_7.35.0-1ubuntu2.9_amd64.deb +md5 = a2384903f4693ad7dc74b59360741c14 +source = repo:trusty-updates/main/ + +[dpkg-dev_1.17.5ubuntu5.7] +file = dpkg-dev_1.17.5ubuntu5.7_all.deb +md5 = c1d73ee78c457f5f557c0cd4340fd5d3 +source = repo:trusty-updates/main/ + +[g++-4.8_4.8.4-2ubuntu1~14.04.3] +file = g++-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ffc4c3bc3fe036fd18e79399caea1586 +source = repo:trusty-updates/main/ + +[g++_4:4.8.2-1ubuntu6] +file = g++_4%%3a4.8.2-1ubuntu6_amd64.deb +md5 = 7332a4e9116b821e167a3d0236ca413a +source = repo:trusty/main/ + +[gcc-4.8-base_4.8.4-2ubuntu1~14.04.3] +file = gcc-4.8-base_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 691b4cb367c62b79511541a3cee41fda +source = repo:trusty-updates/main/ + +[gcc-4.8_4.8.4-2ubuntu1~14.04.3] +file = gcc-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c53635e53f577687409b4c3c93f4da80 +source = repo:trusty-updates/main/ + +[gcc_4:4.8.2-1ubuntu6] +file = gcc_4%%3a4.8.2-1ubuntu6_amd64.deb +md5 = 83b25d71df6df1c47a4b983596896f0b +source = repo:trusty/main/ + +[ieee-data_20131224.1] +file = ieee-data_20131224.1_all.deb +md5 = 1bc31412dad4d90a6ea1ee42eaac5192 +source = repo:trusty/universe/ + +[ifenslave-2.6_2.4ubuntu1.2] +file = ifenslave-2.6_2.4ubuntu1.2_all.deb +md5 = 29f633fc0e2f9dfc30e81f4d0de3c4d9 +source = repo:trusty-updates/main/ + +[ifenslave_2.4ubuntu1.2] +file = ifenslave_2.4ubuntu1.2_all.deb +md5 = b0852693180ea4acd1e67dec4f4963fe +source = repo:trusty-updates/main/ + +[libalgorithm-diff-perl_1.19.02-3] +file = libalgorithm-diff-perl_1.19.02-3_all.deb +md5 = 7462f70e9e9b691ca4a4657371d6ba8e +source = repo:trusty/main/ + +[libalgorithm-diff-xs-perl_0.04-2build4] +file = libalgorithm-diff-xs-perl_0.04-2build4_amd64.deb +md5 = a1bd654bf2b8f30d464a6f95225a0744 +source = repo:trusty/main/ + +[libalgorithm-merge-perl_0.08-2] +file = libalgorithm-merge-perl_0.08-2_all.deb +md5 = bf1355aea7ab249fcd344cf0c692bc6c +source = repo:trusty/main/ + +[libasan0_4.8.4-2ubuntu1~14.04.3] +file = libasan0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ff04bb046aeec86af2bb90c5d90a166c +source = repo:trusty-updates/main/ + +[libatomic1_4.8.4-2ubuntu1~14.04.3] +file = libatomic1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ec6ce0fb6e66e8b8c95534ab9e77a67e +source = repo:trusty-updates/main/ + +[libc-dev-bin_2.19-0ubuntu6.9] +file = libc-dev-bin_2.19-0ubuntu6.9_amd64.deb +md5 = aa72bd06ea171705087d6f090a2cc8a6 +source = repo:trusty-updates/main/ + +[libc6-dev_2.19-0ubuntu6.9] +file = libc6-dev_2.19-0ubuntu6.9_amd64.deb +md5 = f4971e129e81195e8445a4a5f1bb1123 +source = repo:trusty-updates/main/ + +[libc6_2.19-0ubuntu6.9] +file = libc6_2.19-0ubuntu6.9_amd64.deb +md5 = 422dff6f1563aa40a0ab3ea2a9509025 +source = repo:trusty-updates/main/ + +[libcloog-isl4_0.18.2-1] +file = libcloog-isl4_0.18.2-1_amd64.deb +md5 = da71de63b0e24eb02afb817c0b285d6a +source = repo:trusty/main/ + +[libcurl3_7.35.0-1ubuntu2.9] +file = libcurl3_7.35.0-1ubuntu2.9_amd64.deb +md5 = ab4d32b4d76c2f2c8cd5069b66b08a91 +source = repo:trusty-updates/main/ + +[libdpkg-perl_1.17.5ubuntu5.7] +file = libdpkg-perl_1.17.5ubuntu5.7_all.deb +md5 = 7f0c96b6386a43c1caa731d15f1f5fe4 +source = repo:trusty-updates/main/ + +[libfile-fcntllock-perl_0.14-2build1] +file = libfile-fcntllock-perl_0.14-2build1_amd64.deb +md5 = 18813758778ece61bcdf84018218fc1d +source = repo:trusty/main/ + +[libgcc-4.8-dev_4.8.4-2ubuntu1~14.04.3] +file = libgcc-4.8-dev_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 69ff74311eecda1487d0f96b14af0b7c +source = repo:trusty-updates/main/ + +[libgmp10_2:5.1.3+dfsg-1ubuntu1] +file = libgmp10_2%%3a5.1.3+dfsg-1ubuntu1_amd64.deb +md5 = 5a25bb81aa2e0ca83e2d349d58b435d5 +source = repo:trusty/main/ + +[libgomp1_4.8.4-2ubuntu1~14.04.3] +file = libgomp1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 8f95195693e2cbb56825fd9b2b9ffca0 +source = repo:trusty-updates/main/ + +[libisl10_0.12.2-1] +file = libisl10_0.12.2-1_amd64.deb +md5 = b9756a5cce1ecd2d56652779d9e3b757 +source = repo:trusty/main/ + +[libitm1_4.8.4-2ubuntu1~14.04.3] +file = libitm1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 52e717ed8662a3986997412f42abc297 +source = repo:trusty-updates/main/ + +[libmpc3_1.0.1-1ubuntu1] +file = libmpc3_1.0.1-1ubuntu1_amd64.deb +md5 = c5749c5428040f492bc9d00b0101b8a8 +source = repo:trusty/main/ + +[libmpfr4_3.1.2-1] +file = libmpfr4_3.1.2-1_amd64.deb +md5 = 3ff03e231bf643436f087da42faaad6d +source = repo:trusty/main/ + +[libquadmath0_4.8.4-2ubuntu1~14.04.3] +file = libquadmath0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = f541cc61c3feaa74098bdb9970ed12b6 +source = repo:trusty-updates/main/ + +[libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04.3] +file = libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 7657e54922455ae36c7b2f7228427aec +source = repo:trusty-updates/main/ + +[libstdc++6_4.8.4-2ubuntu1~14.04.3] +file = libstdc++6_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 3fe9099e0064fa8030f047ff38e075c2 +source = repo:trusty-updates/main/ + +[libtsan0_4.8.4-2ubuntu1~14.04.3] +file = libtsan0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c4232ca2be66b95d74e8823a9868a9b4 +source = repo:trusty-updates/main/ + +[libyaml-0-2_0.1.4-3ubuntu3.1] +file = libyaml-0-2_0.1.4-3ubuntu3.1_amd64.deb +md5 = 4dcc359331403252136be3490c923fc9 +source = repo:trusty-updates/main/ + +[linux-libc-dev_3.13.0-95.142] +file = linux-libc-dev_3.13.0-95.142_amd64.deb +md5 = 4ba5f7a29d5f021c13bdffa248dbd521 +source = repo:trusty-updates/main/ + +[make_3.81-8.2ubuntu3] +file = make_3.81-8.2ubuntu3_amd64.deb +md5 = 6442fbef4450fc977fb1ab6297cf7797 +source = repo:trusty/main/ + +[manpages-dev_3.54-1ubuntu1] +file = manpages-dev_3.54-1ubuntu1_all.deb +md5 = 8b108211126e2798112fbd55292e5690 +source = repo:trusty/main/ + +[patch_2.7.1-4ubuntu2.3] +file = patch_2.7.1-4ubuntu2.3_amd64.deb +md5 = 4f07a01b36e3a60a34c3bcef647894ae +source = repo:trusty-updates/main/ + +[python-chardet-whl_2.2.1-2~ubuntu1] +file = python-chardet-whl_2.2.1-2~ubuntu1_all.deb +md5 = d882e156f6af98454a96cae30ae58784 +source = repo:trusty-updates/universe/ + +[python-colorama-whl_0.2.5-0.1ubuntu2] +file = python-colorama-whl_0.2.5-0.1ubuntu2_all.deb +md5 = 2c4ecb5b3fc49ae20510d3aac886b66a +source = repo:trusty-updates/universe/ + +[python-colorama_0.2.5-0.1ubuntu2] +file = python-colorama_0.2.5-0.1ubuntu2_all.deb +md5 = b06bc963962c3f3c97f5d1da53a56f3f +source = repo:trusty-updates/universe/ + +[python-crypto_2.6.1-4build1] +file = python-crypto_2.6.1-4build1_amd64.deb +md5 = 14de358cc59ab40ee9c90f3582591f79 +source = repo:trusty/main/ + +[python-distlib-whl_0.1.8-1ubuntu1] +file = python-distlib-whl_0.1.8-1ubuntu1_all.deb +md5 = 93792a4c21365ded4316fdb5bc895dd5 +source = repo:trusty-updates/universe/ + +[python-distlib_0.1.8-1ubuntu1] +file = python-distlib_0.1.8-1ubuntu1_all.deb +md5 = b3288d6d230096c11d69ebe18c44ed83 +source = repo:trusty-updates/universe/ + +[python-ecdsa_0.13-2~cloud0] +file = python-ecdsa_0.13-2~cloud0_all.deb +md5 = 81aec17545f08352acc3b44192e257a0 +source = repo:trusty-updates-liberty/main/ + +[python-html5lib-whl_0.999-3~ubuntu1] +file = python-html5lib-whl_0.999-3~ubuntu1_all.deb +md5 = bc6bd5baa70ace380513925f749857fa +source = repo:trusty-updates/main/ + +[python-html5lib_0.999-3~ubuntu1] +file = python-html5lib_0.999-3~ubuntu1_all.deb +md5 = 93c4140d32e1addb8231a3e0be557c93 +source = repo:trusty-updates/main/ + +[python-iniparse_0.4-2.1build1] +file = python-iniparse_0.4-2.1build1_all.deb +md5 = 3d81a65e52f0d19ad3c19ce67c522dfd +source = repo:trusty/universe/ + +[python-netaddr_0.7.17-1~cloud0] +file = python-netaddr_0.7.17-1~cloud0_all.deb +md5 = 80abc9af08c566f577601181892733a2 +source = repo:trusty-updates-liberty/main/ + +[python-netifaces_0.10.4-0.1build1~cloud0] +file = python-netifaces_0.10.4-0.1build1~cloud0_amd64.deb +md5 = 4f413bf65bd8f56768a160ef931f244d +source = repo:trusty-updates-liberty/main/ + +[python-paramiko_1.15.2-1~cloud0] +file = python-paramiko_1.15.2-1~cloud0_all.deb +md5 = b1a47b6af244e27420e1dad6f7c0ac2e +source = repo:trusty-updates-liberty/main/ + +[python-pip-whl_1.5.4-1ubuntu4] +file = python-pip-whl_1.5.4-1ubuntu4_all.deb +md5 = 45dd75216ca01ef0758e98b89d88093f +source = repo:trusty-updates/universe/ + +[python-pip_1.5.4-1ubuntu4] +file = python-pip_1.5.4-1ubuntu4_all.deb +md5 = 2f9893e68cba11320605bbc554000b2f +source = repo:trusty-updates/universe/ + +[python-pkg-resources_18.4-1~cloud0] +file = python-pkg-resources_18.4-1~cloud0_all.deb +md5 = 0bec36a1a3cb4eb7243309d86288d95a +source = repo:trusty-updates-liberty/main/ + +[python-requests-whl_2.7.0-3~cloud0] +file = python-requests-whl_2.7.0-3~cloud0_all.deb +md5 = a2bbee02231237e74835422bba28137a +source = repo:trusty-updates-liberty/main/ + +[python-setuptools-whl_18.4-1~cloud0] +file = python-setuptools-whl_18.4-1~cloud0_all.deb +md5 = efa24bc631ce5fdadd5a33a032c49cda +source = repo:trusty-updates-liberty/main/ + +[python-setuptools_18.4-1~cloud0] +file = python-setuptools_18.4-1~cloud0_all.deb +md5 = 2d30be2d1a9b092bb1433f9f8fa93566 +source = repo:trusty-updates-liberty/main/ + +[python-six-whl_1.9.0-5~cloud0] +file = python-six-whl_1.9.0-5~cloud0_all.deb +md5 = 3ea8822d167b2964a5c682afa0c8610e +source = repo:trusty-updates-liberty/main/ + +[python-support_1.0.15] +file = python-support_1.0.15_all.deb +md5 = 0d45e460d9fb2de50444bf59de240a6f +source = repo:trusty/universe/ + +[python-urllib3-whl_1.11-1~cloud1] +file = python-urllib3-whl_1.11-1~cloud1_all.deb +md5 = 69755530185a5311e9a4bc7f87ba77d5 +source = repo:trusty-updates-liberty/main/ + +[python-wheel_0.26.0-1~cloud0] +file = python-wheel_0.26.0-1~cloud0_all.deb +md5 = e4e67781ea278ac94666693bb0936dad +source = repo:trusty-updates-liberty/main/ + +[python-yaml_3.10-4ubuntu0.1] +file = python-yaml_3.10-4ubuntu0.1_amd64.deb +md5 = 3bbc120de69a86a8f0b996d722437fd4 +source = repo:trusty-updates/main/ + +[python3-pkg-resources_18.4-1~cloud0] +file = python3-pkg-resources_18.4-1~cloud0_all.deb +md5 = a8e42454d920c8f8ca9c893705c004ac +source = repo:trusty-updates-liberty/main/ + +[vlan_1.9-3ubuntu10] +file = vlan_1.9-3ubuntu10_amd64.deb +md5 = c542a1bacbad438f028c8da3afa30295 +source = repo:trusty/main/ + diff --git a/build/package_configs/ubuntu1404/liberty/depends_contrail_openstack_packages.cfg b/build/package_configs/ubuntu1404/liberty/depends_contrail_openstack_packages.cfg new file mode 100644 index 000000000..9bf3a3d4f --- /dev/null +++ b/build/package_configs/ubuntu1404/liberty/depends_contrail_openstack_packages.cfg @@ -0,0 +1,1077 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-install-packages, contrail-openstack-packages + +[apache2-bin_2.4.7-1ubuntu4.13] +file = apache2-bin_2.4.7-1ubuntu4.13_amd64.deb +md5 = 1f09b5285104ba0092e87107edb50eb8 +source = repo:trusty-updates/main/ + +[apache2-data_2.4.7-1ubuntu4.13] +file = apache2-data_2.4.7-1ubuntu4.13_all.deb +md5 = a364bd616d825751ecc5d5bbaf6a7aab +source = repo:trusty-updates/main/ + +[apache2_2.4.7-1ubuntu4.13] +file = apache2_2.4.7-1ubuntu4.13_amd64.deb +md5 = de253bd50cfe1b961ff934b784095bd7 +source = repo:trusty-updates/main/ + +[barbican-api_1:1.0.0-0ubuntu1.1~cloud0] +file = barbican-api_1%%3a1.0.0-0ubuntu1.1~cloud0_all.deb +md5 = 0aad85a0b86d49662d2d4e571c939be6 +source = repo:trusty-updates-liberty/main/ + +[barbican-common_1:1.0.0-0ubuntu1.1~cloud0] +file = barbican-common_1%%3a1.0.0-0ubuntu1.1~cloud0_all.deb +md5 = efd523d566bfb4d809e6e2a963ae5cbf +source = repo:trusty-updates-liberty/main/ + +[barbican-doc_1:1.0.0-0ubuntu1.1~cloud0] +file = barbican-doc_1%%3a1.0.0-0ubuntu1.1~cloud0_all.deb +md5 = 9f2ba856b4a0f9733366ee100b0421ab +source = repo:trusty-updates-liberty/main/ + +[barbican-keystone-listener_1:1.0.0-0ubuntu1.1~cloud0] +file = barbican-keystone-listener_1%%3a1.0.0-0ubuntu1.1~cloud0_all.deb +md5 = f7e9ed2f6e30f8b726a5341f6846b224 +source = repo:trusty-updates-liberty/main/ + +[barbican-worker_1:1.0.0-0ubuntu1.1~cloud0] +file = barbican-worker_1%%3a1.0.0-0ubuntu1.1~cloud0_all.deb +md5 = ea2dc3f8821b7c39aac13cd13613d810 +source = repo:trusty-updates-liberty/main/ + +[ceilometer-agent-central_1:5.0.3-0ubuntu1~cloud0] +file = ceilometer-agent-central_1%%3a5.0.3-0ubuntu1~cloud0_all.deb +md5 = fce103c96113ce9b34002bcbd7fa841b +source = repo:trusty-updates-liberty/main/ + +[ceilometer-agent-compute_1:5.0.3-0ubuntu1~cloud0] +file = ceilometer-agent-compute_1%%3a5.0.3-0ubuntu1~cloud0_all.deb +md5 = 84dfc874ff61125d6b1e8bfc55ae010b +source = repo:trusty-updates-liberty/main/ +package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra + +[ceilometer-agent-notification_1:5.0.3-0ubuntu1~cloud0] +file = ceilometer-agent-notification_1%%3a5.0.3-0ubuntu1~cloud0_all.deb +md5 = 261f1c6e54cb18f1a0ffa8dd7d9d569b +source = repo:trusty-updates-liberty/main/ + +[ceilometer-alarm-evaluator_1:5.0.3-0ubuntu1~cloud0] +file = ceilometer-alarm-evaluator_1%%3a5.0.3-0ubuntu1~cloud0_all.deb +md5 = 7ba21ddff7ac73bbca1d5850d5b18fe4 +source = repo:trusty-updates-liberty/main/ + +[ceilometer-alarm-notifier_1:5.0.3-0ubuntu1~cloud0] +file = ceilometer-alarm-notifier_1%%3a5.0.3-0ubuntu1~cloud0_all.deb +md5 = c4cd8d7a0f37c5c363e8fd1e73697cd0 +source = repo:trusty-updates-liberty/main/ + +[ceilometer-api_1:5.0.3-0ubuntu1~cloud0] +file = ceilometer-api_1%%3a5.0.3-0ubuntu1~cloud0_all.deb +md5 = 0b984f0cccaeca47e7c4729fe7dbc09c +source = repo:trusty-updates-liberty/main/ + +[ceilometer-collector_1:5.0.3-0ubuntu1~cloud0] +file = ceilometer-collector_1%%3a5.0.3-0ubuntu1~cloud0_all.deb +md5 = 0c64fd62ba6efa625bdcc29d8eff1281 +source = repo:trusty-updates-liberty/main/ + +[ceilometer-common_1:5.0.3-0ubuntu1~cloud0] +file = ceilometer-common_1%%3a5.0.3-0ubuntu1~cloud0_all.deb +md5 = 4be5bcfbf78bfe0d0a9114a5931080b5 +source = repo:trusty-updates-liberty/main/ +package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra + +[cinder-api_2:7.0.2-0ubuntu1~cloud0] +file = cinder-api_2%%3a7.0.2-0ubuntu1~cloud0_all.deb +md5 = 3a02e34db6e8aa94d879fbf8f26a8613 +source = repo:trusty-updates-liberty/main/ + +[cinder-common_2:7.0.2-0ubuntu1~cloud0] +file = cinder-common_2%%3a7.0.2-0ubuntu1~cloud0_all.deb +md5 = 61820a930ef3e7609c9676cbeb8d6926 +source = repo:trusty-updates-liberty/main/ + +[cinder-scheduler_2:7.0.2-0ubuntu1~cloud0] +file = cinder-scheduler_2%%3a7.0.2-0ubuntu1~cloud0_all.deb +md5 = 85e11329a1d37c4fdf103c01792cece7 +source = repo:trusty-updates-liberty/main/ + +[cliff-tablib_1.1-1] +file = cliff-tablib_1.1-1_all.deb +md5 = 38b40e8358506f6922dd4cb907b36ed2 +source = repo:trusty/main/ + +[dbconfig-common_1.8.47+nmu1] +file = dbconfig-common_1.8.47+nmu1_all.deb +md5 = 5193d53a4fa411be8f40f2e4d4d134c4 +source = repo:trusty/main/ + +[erlang-asn1_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-asn1_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 575fef7263a448cdf324913398f8ec0f +source = repo:trusty-updates/main/ + +[erlang-base_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-base_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 99b0855a597d569ddc43c0041677ca96 +source = repo:trusty-updates/main/ + +[erlang-corba_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-corba_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = f29d5d35aeae497c07371e8a752e97ea +source = repo:trusty-updates/main/ + +[erlang-crypto_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-crypto_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 035e43b5d7eb117b25a28e830fc2bcbb +source = repo:trusty-updates/main/ + +[erlang-diameter_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-diameter_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 88161ebc93abeaa2b2914761e460f96c +source = repo:trusty-updates/main/ + +[erlang-edoc_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-edoc_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 1b55de3e45ceaa88f508a62d53c00fb1 +source = repo:trusty-updates/main/ + +[erlang-eldap_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-eldap_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = cc629b93dd39fff38252b710469f2326 +source = repo:trusty-updates/main/ + +[erlang-erl-docgen_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-erl-docgen_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 9628a630a43a2a8a4479807ae96e1f09 +source = repo:trusty-updates/main/ + +[erlang-eunit_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-eunit_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 6243705eccf17e2912b6ebc083601c77 +source = repo:trusty-updates/main/ + +[erlang-ic_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-ic_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 043e80620c4881143e29f7a988d4e798 +source = repo:trusty-updates/main/ + +[erlang-inets_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-inets_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = f8636c11531196fe9de2be45fdfe08e1 +source = repo:trusty-updates/main/ + +[erlang-mnesia_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-mnesia_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = eff8aab35c9b4801ddd5c774f1aceb90 +source = repo:trusty-updates/main/ + +[erlang-nox_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-nox_1%%3a16.b.3-dfsg-1ubuntu2.1_all.deb +md5 = 9dfd1c17ee88f9b72090daabe3f8e731 +source = repo:trusty-updates/main/ + +[erlang-odbc_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-odbc_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = b042165d0ec717297d597f4b90bda232 +source = repo:trusty-updates/main/ + +[erlang-os-mon_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-os-mon_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 53f05b6f3005de0878ce1ee92ba3e188 +source = repo:trusty-updates/main/ + +[erlang-parsetools_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-parsetools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 1f0c6e2cba3372c40dc6ee76ec12e7fd +source = repo:trusty-updates/main/ + +[erlang-percept_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-percept_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 15655c734c0029fab92eb868329510c0 +source = repo:trusty-updates/main/ + +[erlang-public-key_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-public-key_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 7518584093a1a7f99567e7493098c611 +source = repo:trusty-updates/main/ + +[erlang-runtime-tools_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-runtime-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 784a09013c958b70fb1bf345c3a23c7a +source = repo:trusty-updates/main/ + +[erlang-snmp_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-snmp_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = eee18402acd25f7e8c2c31ce26a258c7 +source = repo:trusty-updates/main/ + +[erlang-ssh_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-ssh_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 4e1fe0602a2faa427bac96c6f5081811 +source = repo:trusty-updates/main/ + +[erlang-ssl_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-ssl_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 07531a5126d16f130b5f14d6803112b8 +source = repo:trusty-updates/main/ + +[erlang-syntax-tools_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-syntax-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = c0ace3059416c0ddabaea1e4dd873643 +source = repo:trusty-updates/main/ + +[erlang-tools_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 828f36449d9ce99a9390d70525db6ffc +source = repo:trusty-updates/main/ + +[erlang-webtool_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-webtool_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 6327bcd344ac21dfc5ab2efe79112834 +source = repo:trusty-updates/main/ + +[erlang-xmerl_1:16.b.3-dfsg-1ubuntu2.1] +file = erlang-xmerl_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb +md5 = 46a5494bcf5589a86a65fb75f20207cb +source = repo:trusty-updates/main/ + +[glance-api_2:11.0.1-0ubuntu1~cloud0] +file = glance-api_2%%3a11.0.1-0ubuntu1~cloud0_all.deb +md5 = 6f7a65fa97224f5049e7042e71bd3422 +source = repo:trusty-updates-liberty/main/ + +[glance-common_2:11.0.1-0ubuntu1~cloud0] +file = glance-common_2%%3a11.0.1-0ubuntu1~cloud0_all.deb +md5 = 82233f762d2cf0baf4686e6b040a22a7 +source = repo:trusty-updates-liberty/main/ + +[glance-registry_2:11.0.1-0ubuntu1~cloud0] +file = glance-registry_2%%3a11.0.1-0ubuntu1~cloud0_all.deb +md5 = 5076b9eb62b8f2e991e48e0bada5da7c +source = repo:trusty-updates-liberty/main/ + +[glance_2:11.0.1-0ubuntu1~cloud0] +file = glance_2%%3a11.0.1-0ubuntu1~cloud0_all.deb +md5 = a26172b647317e3173453dd84fbda94c +source = repo:trusty-updates-liberty/main/ + +[heat-api-cfn_1:5.0.1-0ubuntu3.1~cloud0] +file = heat-api-cfn_1%%3a5.0.1-0ubuntu3.1~cloud0_all.deb +md5 = 8b92bf58cc3983fbc1d4b308bfb8fb29 +source = repo:trusty-updates-liberty/main/ + +[heat-api_1:5.0.1-0ubuntu3.1~cloud0] +file = heat-api_1%%3a5.0.1-0ubuntu3.1~cloud0_all.deb +md5 = 9a2e1904253566b906940bf1a1dddc8c +source = repo:trusty-updates-liberty/main/ + +[heat-common_1:5.0.1-0ubuntu3.1~cloud0] +file = heat-common_1%%3a5.0.1-0ubuntu3.1~cloud0_all.deb +md5 = 5f78bf711e9c59b4cc48c79badcc598b +source = repo:trusty-updates-liberty/main/ + +[heat-engine_1:5.0.1-0ubuntu3.1~cloud0] +file = heat-engine_1%%3a5.0.1-0ubuntu3.1~cloud0_all.deb +md5 = a4e59c539810aa68e864f92e50756124 +source = repo:trusty-updates-liberty/main/ + +[keystone_2:8.1.2-0ubuntu1~cloud0] +file = keystone_2%%3a8.1.2-0ubuntu1~cloud0_all.deb +md5 = c1299973a519f7f9ec7d8409029efe12 +source = repo:trusty-updates-liberty/main/ + +[libapache2-mod-wsgi_3.4-4ubuntu2.1.14.04.2] +file = libapache2-mod-wsgi_3.4-4ubuntu2.1.14.04.2_amd64.deb +md5 = 2fd6d1f0e409388c117caa7178a0f924 +source = repo:trusty-updates/main/ + +[libapr1_1.5.0-1] +file = libapr1_1.5.0-1_amd64.deb +md5 = 710311d20d36259cb9beb6473e252c9a +source = repo:trusty/main/ + +[libaprutil1-dbd-sqlite3_1.5.3-1] +file = libaprutil1-dbd-sqlite3_1.5.3-1_amd64.deb +md5 = f9d34d338d857020a9f329fdb37692ca +source = repo:trusty/main/ + +[libaprutil1-ldap_1.5.3-1] +file = libaprutil1-ldap_1.5.3-1_amd64.deb +md5 = 78087b008a7705b2abc8800cabfacf37 +source = repo:trusty/main/ + +[libaprutil1_1.5.3-1] +file = libaprutil1_1.5.3-1_amd64.deb +md5 = 91d3810e9d5f5012b36e6ab06037c532 +source = repo:trusty/main/ + +[libblas3_1.2.20110419-7] +file = libblas3_1.2.20110419-7_amd64.deb +md5 = 3dc4c7e9af05c17cd1539b3415d870b8 +source = repo:trusty/main/ + +[libgfortran3_4.8.4-2ubuntu1~14.04.3] +file = libgfortran3_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 286bf45a6ee1fa4e680d11e9d397335a +source = repo:trusty-updates/main/ + +[libgoogle-perftools4_2.4-0ubuntu4~cloud0] +file = libgoogle-perftools4_2.4-0ubuntu4~cloud0_amd64.deb +md5 = c4ed29534b90e4a81ffd8dc8744a1d4e +source = repo:trusty-updates-liberty/main/ + +[libjansson4_2.5-2] +file = libjansson4_2.5-2_amd64.deb +md5 = 7aca37bf83dbcb9c5240133842dcf421 +source = repo:trusty/universe/ + +[libjs-swfobject_2.2+dfsg-1] +file = libjs-swfobject_2.2+dfsg-1_all.deb +md5 = 754241570e03dd0c8d412d3b9e7590d1 +source = repo:trusty/universe/ + +[liblapack3_3.5.0-2ubuntu1] +file = liblapack3_3.5.0-2ubuntu1_amd64.deb +md5 = 8cd3e8d2924872557e686a295436c19f +source = repo:trusty/main/ + +[libltdl7_2.4.2-1.7ubuntu1] +file = libltdl7_2.4.2-1.7ubuntu1_amd64.deb +md5 = ddeea7a0b4082abd4f746f46c8ccb48e +source = repo:trusty/main/ + +[libodbc1_2.2.14p2-5ubuntu5] +file = libodbc1_2.2.14p2-5ubuntu5_amd64.deb +md5 = 433e8b9f8a79a80052db69ed4f02fe53 +source = repo:trusty/main/ + +[libpcrecpp0_1:8.31-2ubuntu2.3] +file = libpcrecpp0_1%%3a8.31-2ubuntu2.3_amd64.deb +md5 = 35bf58488d95e43bdec1ca452f2117bc +source = repo:trusty-updates/main/ + +[libpgm-5.1-0_5.1.118-1~dfsg-0.1ubuntu3] +file = libpgm-5.1-0_5.1.118-1~dfsg-0.1ubuntu3_amd64.deb +md5 = dd0286ad741615a8e31d60efe224d110 +source = repo:trusty/universe/ + +[libpq5_9.3.14-0ubuntu0.14.04] +file = libpq5_9.3.14-0ubuntu0.14.04_amd64.deb +md5 = 4b35bf29855eda167e866dbcc34f738a +source = repo:trusty-updates/main/ + +[libpython2.7_2.7.6-8ubuntu0.2] +file = libpython2.7_2.7.6-8ubuntu0.2_amd64.deb +md5 = e52bac5d993bf5c8c60ef92b9e392603 +source = repo:trusty-updates/main/ + +[libpython2.7-minimal_2.7.6-8ubuntu0.2] +file = libpython2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb +md5 = 48d76dcd9239d2970d3866d6082a48c6 +source = repo:trusty-updates/main/ + +[libpython2.7-stdlib_2.7.6-8ubuntu0.2] +file = libpython2.7-stdlib_2.7.6-8ubuntu0.2_amd64.deb +md5 = accc8dfb0ff3e0440e66f4c4c9589854 +source = repo:trusty-updates/main/ + +[libsmi2ldbl_0.4.8+dfsg2-8ubuntu2] +file = libsmi2ldbl_0.4.8+dfsg2-8ubuntu2_amd64.deb +md5 = 13e50b16c61aad665ee4db241a6cf908 +source = repo:trusty/universe/ + +[libsnappy1_1.1.0-1ubuntu1] +file = libsnappy1_1.1.0-1ubuntu1_amd64.deb +md5 = 6e75ed3aa224013957954c6671bead67 +source = repo:trusty/main/ + +[libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1] +file = libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1_amd64.deb +md5 = 67303b5e19bf90c0538564669685483e +source = repo:trusty-updates/universe/ + +[libtcmalloc-minimal4_2.4-0ubuntu4~cloud0] +file = libtcmalloc-minimal4_2.4-0ubuntu4~cloud0_amd64.deb +md5 = 20ebfba23702b1011fe484d04bc174c8 +source = repo:trusty-updates-liberty/main/ + +[libterm-readkey-perl_2.31-1] +file = libterm-readkey-perl_2.31-1_amd64.deb +md5 = c68d9e65673823e4d60d0029cc26ea89 +source = repo:trusty/main/ + +[libunwind8_1.1-2.2ubuntu3] +file = libunwind8_1.1-2.2ubuntu3_amd64.deb +md5 = d568b4e19959271d3f8470ff28c223f1 +source = repo:trusty/main/ + +[libv8-3.14.5_3.14.5.8-5ubuntu2] +file = libv8-3.14.5_3.14.5.8-5ubuntu2_amd64.deb +md5 = 3937ddaf045f8c5606b6c505bf0779f8 +source = repo:trusty/universe/ + +[libxmlsec1-openssl_1.2.18-2ubuntu1] +file = libxmlsec1-openssl_1.2.18-2ubuntu1_amd64.deb +md5 = b389871df7c5c1bfab522ab1769a983c +source = repo:trusty/universe/ + +[libxmlsec1_1.2.18-2ubuntu1] +file = libxmlsec1_1.2.18-2ubuntu1_amd64.deb +md5 = 86bd246c9f2ee4e8179b202fc4b12e47 +source = repo:trusty/universe/ + +[libzmq3_4.0.4+dfsg-2] +file = libzmq3_4.0.4+dfsg-2_amd64.deb +md5 = ebd2f2c4ee920bb89e3481eca46a28d9 +source = repo:trusty/universe/ + +[memcached_1.4.14-0ubuntu9] +file = memcached_1.4.14-0ubuntu9_amd64.deb +md5 = 29893483844957ac4c33097d0c0108a6 +source = repo:trusty/main/ + +[mongodb-clients_1:2.4.9-1ubuntu2] +file = mongodb-clients_1%%3a2.4.9-1ubuntu2_amd64.deb +md5 = dfabd631c87d7001cfefba7087a38458 +source = repo:trusty/universe/ + +[mongodb-server_1:2.4.9-1ubuntu2] +file = mongodb-server_1%%3a2.4.9-1ubuntu2_amd64.deb +md5 = ae7913b7d32766b9743d22a957f44c45 +source = repo:trusty/universe/ + +[mysql-client-5.5_5.5.50-0ubuntu0.14.04.1] +file = mysql-client-5.5_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 5f96432b31424f80d0a43a493314c19f +source = repo:trusty-updates/main/ + +[mysql-client-core-5.5_5.5.50-0ubuntu0.14.04.1] +file = mysql-client-core-5.5_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 8f00681717e73d23a0d4d54bf13a09d5 +source = repo:trusty-updates/main/ + +[mysql-client_5.5.50-0ubuntu0.14.04.1] +file = mysql-client_5.5.50-0ubuntu0.14.04.1_all.deb +md5 = 2db4b6fd9ac00660ca5f1bc1e4ae9d85 +source = repo:trusty-updates/main/ + +[novnc_1:0.4+dfsg+1+20131010+gitf68af8af3d-2] +file = novnc_1%%3a0.4+dfsg+1+20131010+gitf68af8af3d-2_all.deb +md5 = fae80db8696627b14491879893901708 +source = repo:trusty/universe/ + +[os-brick-common_0.5.0-0ubuntu4~cloud0] +file = os-brick-common_0.5.0-0ubuntu4~cloud0_all.deb +md5 = 78f280980ae51dcecb276c28c2ccd5c9 +source = repo:trusty-updates-liberty/main/ + +[python2.7-minimal_2.7.6-8ubuntu0.2] +file = python2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb +md5 = cb8b7f9637e05f64482f6657ef4df02f +source = repo:trusty-updates/main/ + +[python2.7_2.7.6-8ubuntu0.2] +file = python2.7_2.7.6-8ubuntu0.2_amd64.deb +md5 = fb63cafe276fd18b231ae3d1d695157e +source = repo:trusty-updates/main/ + +[python-appconf_0.5-4~cloud0] +file = python-appconf_0.5-4~cloud0_all.deb +md5 = c82336629eda5f7ac0a5027431551b18 +source = repo:trusty-updates-liberty/main/ + +[python-appdirs_1.4.0-2~cloud0] +file = python-appdirs_1.4.0-2~cloud0_all.deb +md5 = 0bd966c74f04947f965d38e21e9368ac +source = repo:trusty-updates-liberty/main/ + +[python-automaton_0.7.0-1~cloud0] +file = python-automaton_0.7.0-1~cloud0_all.deb +md5 = c98f69a5a8364187ce62a3694c2ba337 +source = repo:trusty-updates-liberty/main/ + +[python-barbican_1:1.0.0-0ubuntu1.1~cloud0] +file = python-barbican_1%%3a1.0.0-0ubuntu1.1~cloud0_all.deb +md5 = 29874e0fc3e05b5e9ca50024134e2813 +source = repo:trusty-updates-liberty/main/ + +[python-boto_2.38.0-1ubuntu1~cloud0] +file = python-boto_2.38.0-1ubuntu1~cloud0_all.deb +md5 = f77c9ab1ec8530b177582f15e1b6c1e9 +source = repo:trusty-updates-liberty/main/ + +[python-bson-ext_3.0.3-1~cloud0] +file = python-bson-ext_3.0.3-1~cloud0_amd64.deb +md5 = e6f647e79e718e30e4bef438a1dce7f9 +source = repo:trusty-updates-liberty/main/ + +[python-bson_3.0.3-1~cloud0] +file = python-bson_3.0.3-1~cloud0_amd64.deb +md5 = eda2a62d4f94619b8ffbac45fcf377a2 +source = repo:trusty-updates-liberty/main/ + +[python-castellan_0.2.1-0ubuntu1~cloud0] +file = python-castellan_0.2.1-0ubuntu1~cloud0_all.deb +md5 = 2fde90c917e01f16977f1436ce334c60 +source = repo:trusty-updates-liberty/main/ + +[python-ceilometer_1:5.0.3-0ubuntu1~cloud0] +file = python-ceilometer_1%%3a5.0.3-0ubuntu1~cloud0_all.deb +md5 = 275b6fa89867bf788cce15d1d0eb2665 +source = repo:trusty-updates-liberty/main/ +package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra + +[python-ceilometerclient_1.5.0-1~cloud0] +file = python-ceilometerclient_1.5.0-1~cloud0_all.deb +md5 = 67590bfe834d4ab532d736fdb2603222 +source = repo:trusty-updates-liberty/main/ +package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra + +[python-cinder_2:7.0.2-0ubuntu1~cloud0] +file = python-cinder_2%%3a7.0.2-0ubuntu1~cloud0_all.deb +md5 = d7f8eeb433f4751a4d1f97750db96011 +source = repo:trusty-updates-liberty/main/ + +[python-cinderclient_1:1.4.0-2~cloud0] +file = python-cinderclient_1%%3a1.4.0-2~cloud0_all.deb +md5 = adc89632692659f58f1a494b1ced379c +source = repo:trusty-updates-liberty/main/ +package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra + +[python-compressor_1.5-1ubuntu2~cloud0] +file = python-compressor_1.5-1ubuntu2~cloud0_all.deb +md5 = 71844e0bc7576ec810afcfb703e42e68 +source = repo:trusty-updates-liberty/main/ + +[python-croniter_0.3.4-0ubuntu1] +file = python-croniter_0.3.4-0ubuntu1_all.deb +md5 = cad5235306fd0714cc630eef59836bba +source = repo:trusty/main/ + +[python-dateutil_2.2-2~cloud0] +file = python-dateutil_2.2-2~cloud0_all.deb +md5 = 5653f2078f27e1af96143110dfdf709a +source = repo:trusty-updates-liberty/main/ + +[python-designateclient_1.5.0-1~cloud0] +file = python-designateclient_1.5.0-1~cloud0_all.deb +md5 = 5f4963d12edc7614706f2cd54d9e5aa4 +source = repo:trusty-updates-liberty/main/ + +[python-django-common_1.7.9-1ubuntu5.4~cloud0] +file = python-django-common_1.7.9-1ubuntu5.4~cloud0_all.deb +md5 = 7dc666229302c6df64e0a27cfaf0980d +source = repo:trusty-updates-liberty/main/ + +[python-django-pyscss_2.0.2-0ubuntu1~cloud0] +file = python-django-pyscss_2.0.2-0ubuntu1~cloud0_all.deb +md5 = 134d60b3959e15aaed7e40b8e609d8de +source = repo:trusty-updates-liberty/main/ + +[python-django_1.7.9-1ubuntu5.4~cloud0] +file = python-django_1.7.9-1ubuntu5.4~cloud0_all.deb +md5 = 59df993ce4e7d8c23fdf8b836ea89daf +source = repo:trusty-updates-liberty/main/ + +[python-dogpile.cache_0.5.4-1ubuntu2~cloud0] +file = python-dogpile.cache_0.5.4-1ubuntu2~cloud0_all.deb +md5 = cfb290eb33088c5484c6d9fb507fea51 +source = repo:trusty-updates-liberty/main/ + +[python-dogpile.core_0.4.1+dfsg1-2~cloud0] +file = python-dogpile.core_0.4.1+dfsg1-2~cloud0_all.deb +md5 = 35e401fbb2ddce1bcb0e0f6e2133caaa +source = repo:trusty-updates-liberty/main/ + +[python-egenix-mxdatetime_3.2.7-1build1] +file = python-egenix-mxdatetime_3.2.7-1build1_amd64.deb +md5 = 4e21c0f87adf7e84f81c3a4dc2530d01 +source = repo:trusty/main/ + +[python-egenix-mxtools_3.2.7-1build1] +file = python-egenix-mxtools_3.2.7-1build1_amd64.deb +md5 = b9698c57bd43531159ffc6a0c1e7a958 +source = repo:trusty/main/ + +[python-funcsigs_0.4-1~cloud0] +file = python-funcsigs_0.4-1~cloud0_all.deb +md5 = ae3f3584ef518f9988254803f4362553 +source = repo:trusty-updates-liberty/main/ + +[python-glance-store_0.9.2-0ubuntu1~cloud0] +file = python-glance-store_0.9.2-0ubuntu1~cloud0_all.deb +md5 = 9db6f766ce8c5c5d0f2debe0c33a3151 +source = repo:trusty-updates-liberty/main/ + +[python-glance_2:11.0.1-0ubuntu1~cloud0] +file = python-glance_2%%3a11.0.1-0ubuntu1~cloud0_all.deb +md5 = 071208c362c12ddbac5d5e1e69b29d47 +source = repo:trusty-updates-liberty/main/ + +[python-glanceclient_1:1.1.0-0ubuntu1~cloud0] +file = python-glanceclient_1%%3a1.1.0-0ubuntu1~cloud0_all.deb +md5 = 9ed4c8dd2ed9419113d3b0a1da08ced9 +source = repo:trusty-updates-liberty/main/ +package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra + +[python-gridfs_3.0.3-1~cloud0] +file = python-gridfs_3.0.3-1~cloud0_all.deb +md5 = aa677188877b70e26f01107b59b8bb06 +source = repo:trusty-updates-liberty/main/ + +[python-heat_1:5.0.1-0ubuntu3.1~cloud0] +file = python-heat_1%%3a5.0.1-0ubuntu3.1~cloud0_all.deb +md5 = 6c0e189da8193e86338b96fa6c562ac7 +source = repo:trusty-updates-liberty/main/ + +[python-heatclient_0.8.0-1~cloud0] +file = python-heatclient_0.8.0-1~cloud0_all.deb +md5 = ba832643e3e05b001c8bb0438001827c +source = repo:trusty-updates-liberty/main/ + +[python-ipaddr_2.1.10-1] +file = python-ipaddr_2.1.10-1_all.deb +md5 = dd68b2b72af833f9d6ae8c783bddec96 +source = repo:trusty/main/ + +[python-json-patch_1.3-4] +file = python-json-patch_1.3-4_all.deb +md5 = 5b8a855cfd49edad79d3432f227d42c0 +source = repo:trusty/main/ + +[python-json-pointer_1.0-2build1] +file = python-json-pointer_1.0-2build1_all.deb +md5 = b0762e2a2192458adcbf70e6be02172d +source = repo:trusty/main/ + +[python-jsonpatch_1.3-4] +file = python-jsonpatch_1.3-4_all.deb +md5 = d1521e9621c4c751d164a6d979705a12 +source = repo:trusty/main/ + +[python-jsonpath-rw-ext_0.1.7-1~cloud0] +file = python-jsonpath-rw-ext_0.1.7-1~cloud0_all.deb +md5 = dc5dbae84391b6b3ac6fec600d235971 +source = repo:trusty-updates-liberty/main/ + +[python-jsonpath-rw_1.2.0-1build1] +file = python-jsonpath-rw_1.2.0-1build1_all.deb +md5 = 7e40b1562d3f18032e6236b1ada10cb6 +source = repo:trusty/main/ + +[python-jsonschema_2.4.0-1~cloud0] +file = python-jsonschema_2.4.0-1~cloud0_all.deb +md5 = 113b1fcc5dc6562a65c4c7a6eed1f221 +source = repo:trusty-updates-liberty/main/ + +[python-kazoo_2.2.1-1ubuntu1~cloud0] +file = python-kazoo_2.2.1-1ubuntu1~cloud0_all.deb +md5 = 7d06d4b92fd53797d9b6adf443bdbb6a +source = repo:trusty-updates-liberty/main/ + +[python-keystone_2:8.1.2-0ubuntu1~cloud0] +file = python-keystone_2%%3a8.1.2-0ubuntu1~cloud0_all.deb +md5 = ec8e73e2cd232e0239d9f3b0b2cc94e6 +source = repo:trusty-updates-liberty/main/ + +[python-ldap3_0.9.8.8-1ubuntu1~cloud0] +file = python-ldap3_0.9.8.8-1ubuntu1~cloud0_all.deb +md5 = e82236d9b576feaa4e35f395f6bef347 +source = repo:trusty-updates-liberty/main/ + +[python-lxml_3.3.3-1ubuntu0.1] +file = python-lxml_3.3.3-1ubuntu0.1_amd64.deb +md5 = d1c5b5a5a64e196f73d9e2c9dc7b7ce5 +source = repo:trusty-updates/main/ + +[python-m2crypto_0.21.1-3ubuntu5] +file = python-m2crypto_0.21.1-3ubuntu5_amd64.deb +md5 = 4e14c4078c358c09b45462ca2270155a +source = repo:trusty/main/ + +[python-magnumclient_0.2.1-0ubuntu3~cloud0] +file = python-magnumclient_0.2.1-0ubuntu3~cloud0_all.deb +md5 = f76359659149dd8eba2a860391523289 +source = repo:trusty-updates-liberty/main/ + +[python-manilaclient_1.4.0-1~cloud0] +file = python-manilaclient_1.4.0-1~cloud0_all.deb +md5 = 574442ca60eaa074cdecf63faed138ba +source = repo:trusty-updates-liberty/main/ + +[python-memcache_1.56-1~cloud0] +file = python-memcache_1.56-1~cloud0_all.deb +md5 = dd41e7d17b85c09eb56824010addd1e3 +source = repo:trusty-updates-liberty/main/ + +[python-mistralclient_1:1.1.0-2~cloud0] +file = python-mistralclient_1%%3a1.1.0-2~cloud0_all.deb +md5 = dca13924847c576a9d14aac3f34b410d +source = repo:trusty-updates-liberty/main/ + +[python-mock_1.3.0-2.1ubuntu1~cloud0] +file = python-mock_1.3.0-2.1ubuntu1~cloud0_all.deb +md5 = 9a2c6369265a66a06368cd9cfecfff99 +source = repo:trusty-updates-liberty/main/ + +[python-networkx_1.8.1-0ubuntu3] +file = python-networkx_1.8.1-0ubuntu3_all.deb +md5 = e56789bcfefec7b730a35c983670346b +source = repo:trusty/main/ + +[python-novaclient_2:2.30.1-1~cloud0] +file = python-novaclient_2%%3a2.30.1-1~cloud0_all.deb +md5 = d0929f4e439596eee163421b95dc4f1c +source = repo:trusty-updates-liberty/main/ +package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra, cfgm-openstack-extra + +[python-novnc_1:0.4+dfsg+1+20131010+gitf68af8af3d-2] +file = python-novnc_1%%3a0.4+dfsg+1+20131010+gitf68af8af3d-2_all.deb +md5 = 88b3c3af0d2fe9339c37dae213af0d4a +source = repo:trusty/universe/ + +[python-numpy_1:1.8.2-0ubuntu0.1] +file = python-numpy_1%%3a1.8.2-0ubuntu0.1_amd64.deb +md5 = 00c0681a5a332a86999a5fbc02455844 +source = repo:trusty-updates/main/ + +[python-oauthlib_0.6.1-1] +file = python-oauthlib_0.6.1-1_all.deb +md5 = c9d6b2599b97bf3a4b95339b441da10d +source = repo:trusty/main/ + +[python-openstack-auth_2.0.0-1~cloud0] +file = python-openstack-auth_2.0.0-1~cloud0_all.deb +md5 = 2e7ddf43cd1b9c1ef5a701eacef756dd +source = repo:trusty-updates-liberty/main/ + +[python-openstackclient_1.7.0-1~cloud0] +file = python-openstackclient_1.7.0-1~cloud0_all.deb +md5 = ebe91bf4a55492e53f69c74450cd75e8 +source = repo:trusty-updates-liberty/main/ + +[python-os-brick_0.5.0-0ubuntu4~cloud0] +file = python-os-brick_0.5.0-0ubuntu4~cloud0_all.deb +md5 = 8d7f543034d672ef9d23b4703ef08f58 +source = repo:trusty-updates-liberty/main/ + +[python-os-client-config_1.6.1-0ubuntu1~cloud0] +file = python-os-client-config_1.6.1-0ubuntu1~cloud0_all.deb +md5 = d3c8ce8a6ac27c978eedc1d8ff4136f4 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.cache_0.7.0-1~cloud0] +file = python-oslo.cache_0.7.0-1~cloud0_all.deb +md5 = 2f20948fc0edc5ae5605b51328467d37 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.reports_0.5.0-1~cloud0] +file = python-oslo.reports_0.5.0-1~cloud0_all.deb +md5 = a302c5d824993d5aa0ffad8b66aee0a9 +source = repo:trusty-updates-liberty/main/ + +[python-oslo.vmware_1.21.0-1~cloud0] +file = python-oslo.vmware_1.21.0-1~cloud0_all.deb +md5 = edd76c7f48fe0b571c5c7e3540945bbb +source = repo:trusty-updates-liberty/main/ + +[python-osprofiler_0.3.0-2~cloud1] +file = python-osprofiler_0.3.0-2~cloud1_all.deb +md5 = a810c25e60a84b7a2c0bb34a1a006292 +source = repo:trusty-updates-liberty/main/ + +[python-pam_0.4.2-13.1ubuntu3] +file = python-pam_0.4.2-13.1ubuntu3_amd64.deb +md5 = e518dde3fdb06254f7d383fa289ff049 +source = repo:trusty/main/ + +[python-passlib_1.6.5-1~cloud0] +file = python-passlib_1.6.5-1~cloud0_all.deb +md5 = ea037dffe0719beebf3cf9990e13202b +source = repo:trusty-updates-liberty/main/ + +[python-pathlib_1.0.1-2~cloud0] +file = python-pathlib_1.0.1-2~cloud0_all.deb +md5 = 2327b3eb149fc6d1a3dec08e6995a4cc +source = repo:trusty-updates-liberty/main/ + +[python-pint_0.6-1~cloud0] +file = python-pint_0.6-1~cloud0_all.deb +md5 = b91788507d2acfc1ab78e859721d6330 +source = repo:trusty-updates-liberty/main/ + +[python-psycopg2_2.6.1-1build1~cloud0] +file = python-psycopg2_2.6.1-1build1~cloud0_amd64.deb +md5 = d85127c0c8d7fbbd36c846368bdeb52c +source = repo:trusty-updates-liberty/main/ + +[python-pyinotify_0.9.4-1build1] +file = python-pyinotify_0.9.4-1build1_all.deb +md5 = e8769aea55a94fe0562f7c5fc160f883 +source = repo:trusty/main/ + +[python-pymemcache_1.3.2-1ubuntu1~cloud0] +file = python-pymemcache_1.3.2-1ubuntu1~cloud0_all.deb +md5 = 9cdecd311aeca5f5a9de800df9fd9119 +source = repo:trusty-updates-liberty/main/ + +[python-pymongo-ext_3.0.3-1~cloud0] +file = python-pymongo-ext_3.0.3-1~cloud0_amd64.deb +md5 = c141ea7760d153b826a69249ff06b69f +source = repo:trusty-updates-liberty/main/ + +[python-pymongo_3.0.3-1~cloud0] +file = python-pymongo_3.0.3-1~cloud0_amd64.deb +md5 = df7ed1b94310692d44d020fdee617717 +source = repo:trusty-updates-liberty/main/ + +[python-pysaml2_2.4.0-0ubuntu2~cloud0] +file = python-pysaml2_2.4.0-0ubuntu2~cloud0_all.deb +md5 = 7e53c6dba090d0f73b4fe47a82a68c1e +source = repo:trusty-updates-liberty/main/ + +[python-pyscss_1.3.4-4~cloud0] +file = python-pyscss_1.3.4-4~cloud0_amd64.deb +md5 = 58163eba41b535a11c595ec76bf40c2b +source = repo:trusty-updates-liberty/main/ + +[python-pysnmp4-apps_0.3.2-1] +file = python-pysnmp4-apps_0.3.2-1_all.deb +md5 = f2fc5a8741cc9a4c8bdae969929bfc5a +source = repo:trusty/universe/ + +[python-pysnmp4-mibs_0.1.3-1] +file = python-pysnmp4-mibs_0.1.3-1_all.deb +md5 = a09eef881df5cc7bcaa07273dce27695 +source = repo:trusty/universe/ + +[python-pysnmp4_4.2.5-1] +file = python-pysnmp4_4.2.5-1_all.deb +md5 = 395c65aa72adea6bdbb71294f4cde922 +source = repo:trusty/universe/ + +[python-pysqlite2_2.6.3-3] +file = python-pysqlite2_2.6.3-3_amd64.deb +md5 = 5e0688b6bfc28aa090be45c538e037a5 +source = repo:trusty/universe/ + +[python-qpid_0.22+dfsg-1] +file = python-qpid_0.22+dfsg-1_all.deb +md5 = 647e9851d3fb2db8c92c4bcd98a11970 +source = repo:trusty/universe/ + +[python-redis_2.10.3-3ubuntu1~cloud0] +file = python-redis_2.10.3-3ubuntu1~cloud0_all.deb +md5 = 5fcbc89a034d7acf62b47b06c4cdf8a7 +source = repo:trusty-updates-liberty/main/ + +[python-rfc3986_0.2.0-2~cloud0] +file = python-rfc3986_0.2.0-2~cloud0_all.deb +md5 = 76a1c18ab4716f144568768782068768 +source = repo:trusty-updates-liberty/main/ + +[python-saharaclient_0.11.0-1ubuntu1~cloud0] +file = python-saharaclient_0.11.0-1ubuntu1~cloud0_all.deb +md5 = 66c3ba6e4e4e3fe27b6c92b0544813b7 +source = repo:trusty-updates-liberty/main/ + +[python-semantic-version_2.3.1-1~cloud0] +file = python-semantic-version_2.3.1-1~cloud0_all.deb +md5 = f6bc35b14386ad274e3e536d0689b21d +source = repo:trusty-updates-liberty/main/ + +[python-serial_2.6-1build1] +file = python-serial_2.6-1build1_all.deb +md5 = 815adaf14f9c402d2d0507b1d99e7d71 +source = repo:trusty/main/ + +[python-suds_0.4.1-11ubuntu0.1] +file = python-suds_0.4.1-11ubuntu0.1_all.deb +md5 = 0f222270b439e25c2ae3e850d6dbc8b2 +source = repo:trusty-updates/main/ + +[python-swiftclient_1:2.6.0-1ubuntu1~cloud0] +file = python-swiftclient_1%%3a2.6.0-1ubuntu1~cloud0_all.deb +md5 = c8ab0c74c29746c8c7523c48d7b938f7 +source = repo:trusty-updates-liberty/main/ +package_type = contrail-install-packages, contrail-openstack-packages, vrouter-openstack-extra + +[python-tablib_0.9.11-2build1] +file = python-tablib_0.9.11-2build1_all.deb +md5 = 7e7d805942a32175fe2b8b3d0fd5054e +source = repo:trusty/main/ + +[python-taskflow_1.17.0-1ubuntu1~cloud0] +file = python-taskflow_1.17.0-1ubuntu1~cloud0_all.deb +md5 = 270b33a5903e5d563a8b443f07714b80 +source = repo:trusty-updates-liberty/main/ + +[python-tooz_1.21.0-1ubuntu1~cloud0] +file = python-tooz_1.21.0-1ubuntu1~cloud0_all.deb +md5 = eedabd838bc9d52a68c32e281b7f6a28 +source = repo:trusty-updates-liberty/main/ + +[python-troveclient_1:1.3.0-1~cloud0] +file = python-troveclient_1%%3a1.3.0-1~cloud0_all.deb +md5 = bf7d2f82f73c09d1448626d668de8d52 +source = repo:trusty-updates-liberty/main/ + +[python-twisted-bin_13.2.0-1ubuntu1] +file = python-twisted-bin_13.2.0-1ubuntu1_amd64.deb +md5 = 39a949056036e466cade398174562691 +source = repo:trusty/main/ + +[python-twisted-conch_1:13.2.0-1ubuntu1] +file = python-twisted-conch_1%%3a13.2.0-1ubuntu1_all.deb +md5 = b56ec1fca44c035778c468c934dad468 +source = repo:trusty/main/ + +[python-twisted-core_13.2.0-1ubuntu1] +file = python-twisted-core_13.2.0-1ubuntu1_all.deb +md5 = 9131bf286ce0473f29cfa8f3ccbaaf4e +source = repo:trusty/main/ + +[python-twisted-lore_13.2.0-1ubuntu1] +file = python-twisted-lore_13.2.0-1ubuntu1_all.deb +md5 = fe1fb2faf26113f56cfe3f08c1409d24 +source = repo:trusty/main/ + +[python-twisted-mail_13.2.0-1ubuntu1] +file = python-twisted-mail_13.2.0-1ubuntu1_all.deb +md5 = 418831134dcef7e7cc5eb89a8e6072c3 +source = repo:trusty/main/ + +[python-twisted-names_13.2.0-1ubuntu1] +file = python-twisted-names_13.2.0-1ubuntu1_all.deb +md5 = e90b94dc1d359145a935fc5185e6a927 +source = repo:trusty/main/ + +[python-twisted-news_13.2.0-1ubuntu1] +file = python-twisted-news_13.2.0-1ubuntu1_all.deb +md5 = f902221c471866d3b669fdfc7003e8e3 +source = repo:trusty/main/ + +[python-twisted-runner_13.2.0-1ubuntu1] +file = python-twisted-runner_13.2.0-1ubuntu1_amd64.deb +md5 = 17b308323ceae618c2c45a98ab202fb5 +source = repo:trusty/main/ + +[python-twisted-web_13.2.0-1ubuntu1] +file = python-twisted-web_13.2.0-1ubuntu1_all.deb +md5 = 5143e752b56f1e0d31a4d544506af263 +source = repo:trusty/main/ + +[python-twisted-words_13.2.0-1ubuntu1] +file = python-twisted-words_13.2.0-1ubuntu1_all.deb +md5 = 63af9f9ccdbcce16975d9704a89d9746 +source = repo:trusty/main/ + +[python-twisted_13.2.0-1ubuntu1] +file = python-twisted_13.2.0-1ubuntu1_all.deb +md5 = 95d58118ed009eb63f45615787cb8375 +source = repo:trusty/main/ + +[python-warlock_1.1.0-0ubuntu2] +file = python-warlock_1.1.0-0ubuntu2_all.deb +md5 = b21f1f41e9e0ff96112656890c98f314 +source = repo:trusty/main/ + +[python-werkzeug_0.9.4+dfsg-1.1ubuntu2] +file = python-werkzeug_0.9.4+dfsg-1.1ubuntu2_all.deb +md5 = 0b840568dce7365757d1146c8570466c +source = repo:trusty-updates/main/ + +[python-wsme_0.8.0-1ubuntu1~cloud0] +file = python-wsme_0.8.0-1ubuntu1~cloud0_all.deb +md5 = 66fff81145bf3fede1886edfdf207057 +source = repo:trusty-updates-liberty/main/ + +[python-zake_0.1.6-1~cloud0] +file = python-zake_0.1.6-1~cloud0_all.deb +md5 = c4cd5d66fb9dd2e39d42d8cc3f9110cc +source = repo:trusty-updates-liberty/main/ + +[python-zaqarclient_0.2.0-1~cloud0] +file = python-zaqarclient_0.2.0-1~cloud0_all.deb +md5 = ecc0210d3b33c213e21ae336de16ca18 +source = repo:trusty-updates-liberty/main/ + +[smitools_0.4.8+dfsg2-8ubuntu2] +file = smitools_0.4.8+dfsg2-8ubuntu2_amd64.deb +md5 = 275282c46c804b85014f83eb482711a2 +source = repo:trusty/universe/ + +[ssl-cert_1.0.33] +file = ssl-cert_1.0.33_all.deb +md5 = bb2d2f616d7b4da9b76caa98002657eb +source = repo:trusty/main/ + +[uwsgi-core_1.9.17.1-5build5] +file = uwsgi-core_1.9.17.1-5build5_amd64.deb +md5 = dc03207b7b8a0d25bed1658b4b0df940 +source = repo:trusty/universe/ + +[uwsgi-plugin-python_1.9.17.1-5build5] +file = uwsgi-plugin-python_1.9.17.1-5build5_amd64.deb +md5 = 9586e9de6efdd237656579fb9b6bfde4 +source = repo:trusty/universe/ + +[websockify_0.6.1+dfsg1-1~cloud1] +file = websockify_0.6.1+dfsg1-1~cloud1_amd64.deb +md5 = ebb0f33941253b8612fd57432541d8a6 +source = repo:trusty-updates-liberty/main/ + +[xmlsec1_1.2.18-2ubuntu1] +file = xmlsec1_1.2.18-2ubuntu1_amd64.deb +md5 = d12fe050398d9f63d7a3be0be656c3bb +source = repo:trusty/universe/ + +[libpython2.7-dev_2.7.6-8ubuntu0.2] +file = libpython2.7-dev_2.7.6-8ubuntu0.2_amd64.deb +md5 = 8d59685b68713072a86e278b6b5b22ab +source = repo:trusty-updates/main/ + +[python-dev_2.7.5-5ubuntu3] +file = python-dev_2.7.5-5ubuntu3_amd64.deb +md5 = 0fb9dbd4067f94dc4cd894cefc50fe47 +source = repo:trusty/main/ + +[python2.7-dev_2.7.6-8ubuntu0.2] +file = python2.7-dev_2.7.6-8ubuntu0.2_amd64.deb +md5 = b329c89de034410c49eb9525597c11c6 +source = repo:trusty-updates/main/ diff --git a/build/package_configs/ubuntu1404/liberty/depends_contrail_thirdparty_packages.cfg b/build/package_configs/ubuntu1404/liberty/depends_contrail_thirdparty_packages.cfg new file mode 100644 index 000000000..51c9771a1 --- /dev/null +++ b/build/package_configs/ubuntu1404/liberty/depends_contrail_thirdparty_packages.cfg @@ -0,0 +1,246 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-install-packages, contrail-thirdparty-packages + +[consistent-hash_1.0-0contrail0] +file = consistent-hash_1.0-0contrail0_amd64.deb +md5 = 933c16a083d329fcb449670fb2e931d7 +source = repo:contrail-thirdparty + +[euca2ools_1:2.1.3-2] +file = euca2ools_2.1.3-2_amd64.deb +md5 = dbb31fc15f00847c3e9e46dc957795c5 +source = repo:contrail-thirdparty + +[galera_25.2.9] +file = galera-25.2.9-amd64.deb +md5 = 7602c095d5d42661019bd45221615d4a +source = repo:contrail-thirdparty + +[kafka_2.11-0.9.0.1-0contrail0] +file = kafka_2.11-0.9.0.1-0contrail0_amd64.deb +md5 = 38a41e87cddd1a8b893b3c8c3c212b24 +source = repo:contrail-thirdparty + +[libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2] +file = libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2_amd64.deb +md5 = 858b5302af85a3ae22ea73c142e5fd26 +source = repo:contrail-thirdparty + +[librdkafka-dev_0.8.5-2-0contrail0.14.04] +file = librdkafka-dev_0.8.5-2-0contrail0.14.04_amd64.deb +md5 = b2b7f430a3638eb9c3a3a3cddfa8a664 +source = repo:contrail-thirdparty + +[librdkafka1_0.8.5-2-0contrail0.14.04] +file = librdkafka1_0.8.5-2-0contrail0.14.04_amd64.deb +md5 = 0f8a72ecdc35e176eae4429df102f903 +source = repo:contrail-thirdparty + +[lxc-docker-1.6.2] +file = lxc-docker-1.6.2_1.6.2_amd64.deb +md5 = bb24274e604d7ed3ac70de296b594cd1 +source = repo:contrail-thirdparty + +[nodejs_0.10.35-1contrail1] +file = nodejs_0.10.35-1contrail1_amd64.deb +md5 = fbbf1969783bc15291039263bc88bb39 +source = repo:contrail-thirdparty + +[nova-docker_0.0.1.dev241-0contrail0] +file = nova-docker_0.0.1.dev241-0contrail0_all.deb +md5 = b9f35cdb1ec20f127a4b8bf639512f89 +source = repo:contrail-thirdparty + +[python-backports.ssl-match-hostname_3.4.0.2-1contrail1] +file = python-backports.ssl-match-hostname_3.4.0.2-1contrail1_all.deb +md5 = 243c920a5c91d12801c525f3dcd2a6d1 +source = repo:contrail-thirdparty + +[python-bitarray_0.8.0-2contrail1] +file = python-bitarray_0.8.0-2contrail1_amd64.deb +md5 = 00e657063f69a9122b6eaff7bacd75c8 +source = repo:contrail-thirdparty + +[python-boto_1:2.12.0] +file = python-boto_2.12.0_amd64.deb +md5 = a2d26bd052eb9a37ad703adcf5b6d417 +source = repo:contrail-thirdparty + +[python-cassandra-driver_3.0.0-0contrail1] +file = python-cassandra-driver_3.0.0-0contrail1_amd64.deb +md5 = 70a9176db6b07f0f7f93a24fff1fa6dc +source = repo:contrail-thirdparty + +[python-certifi_2015.11.20.1-2] +file = python-certifi_2015.11.20.1-2_all.deb +md5 = 760985befd8570b30f5ae928862fa8ff +source = repo:xenial + +[python-consistent-hash_1.0-0contrail1] +file = python-consistent-hash_1.0-0contrail1_amd64.deb +md5 = 6ba90f706ec78584adb3a15657f290e3 +source = repo:contrail-thirdparty + +[python-geventhttpclient_1.1.0-1contrail1] +file = python-geventhttpclient_1.1.0-1contrail1_amd64.deb +md5 = 1a00d30b23e355a014e90b75243f3227 +source = repo:contrail-thirdparty + +[python-kafka_1.0.1-0contrail0] +file = python-kafka_1.0.1-0contrail0_amd64.deb +md5 = e8e1d6233260caa5d4478c639b04afcd +source = repo:contrail-thirdparty + +[python-lxml_3.3.1-1contrail1] +file = python-lxml_3.3.1-1contrail1_amd64.deb +md5 = 7c3cff6ae352621381d11bd43ab7e399 +source = repo:contrail-thirdparty + +[python-ncclient_0.4.1-1contrail1] +file = python-ncclient_0.4.1-1contrail1_all.deb +md5 = fbf835d94c89850e07c5d4c64390691b +source = repo:contrail-thirdparty + +[python-pycassa_1.11.0-1contrail2] +file = python-pycassa_1.11.0-1contrail2_all.deb +md5 = 251c53af490a46086da56c9286b403e2 +source = repo:contrail-thirdparty + +[python-redis_2.8.0-1contrail1] +file = python-redis_2.8.0-1contrail1_all.deb +md5 = a2c82a2b974ed10471570c09aef0673d +source = repo:contrail-thirdparty + +[python-sseclient_0.0.11-0contrail0] +file = python-sseclient_0.0.11-0contrail0_amd64.deb +md5 = f34ba0eb5ba204c33ce91ad0f3e86ada +source = repo:contrail-thirdparty + +[python-xmltodict_0.9.0-1contrail1] +file = python-xmltodict_0.9.0-1contrail1_all.deb +md5 = 49ad578daa539e8965bbcaaac9a8045e +source = repo:contrail-thirdparty + +[keepalived_1.2.13-0~276~ubuntu14.04.1] +file = keepalived_1.2.13-0~276~ubuntu14.04.1_amd64.deb +md5 = 4ccce433d4a0a5b3e8170ec077c709f7 +source = repo:contrail-thirdparty + +[rabbitmq-server_3.5.0-1] +file = rabbitmq-server_3.5.0-1_all.deb +md5 = 69cab00b49bf49a2031762514d045735 +source = repo:contrail-thirdparty + +[supervisor_3.0r1-1] +file = supervisor_3.0r1-1_all.deb +md5 = 368bfa94087bdc5eca01eae1ecc87335 +source = repo:contrail-thirdparty + +[haproxy_1.5.4-1ppa1~precise] +file = haproxy_1.5.4-1ppa1~precise_amd64.deb +md5 = 808572e56bb7d65f8e7e21a3762bc3f4 +source = repo:contrail-thirdparty + +[librabbitmq0_0.0.1.hg216-1] +file = librabbitmq0_0.0.1.hg216-1_amd64.deb +md5 = 942635f76ab6cf1e27c6622201690bed +source = repo:contrail-thirdparty + +[libsnmp-python_5.4.3~dfsg-2.4ubuntu1] +file = libsnmp-python_5.4.3~dfsg-2.4ubuntu1_amd64.deb +md5 = 0edfb606e1c4cb5080bf8870b73420a1 +source = repo:contrail-thirdparty + +[libuv_1.7.5-1] +file = libuv_1.7.5-1_amd64.deb +md5 = 76474f34e94ce80dca66f39eb2ae638b +source = repo:contrail-thirdparty + +[python-docker-py_1.3.0-1contrail1] +file = python-docker-py_1.3.0-1contrail1_all.deb +md5 = c4e1491f5272d800823bc98b74ff0d62 +source = repo:contrail-thirdparty + +[python-oslo-concurrency_1.8.2-0ubuntu0.15.04.1] +file = python-oslo-concurrency_1.8.2-0ubuntu0.15.04.1_all.deb +md5 = 3a5c98fed30a022f195140f19566dfb7 +source = repo:contrail-thirdparty + +[storage-sas2ircu_16.00.00.00-1contrail1] +file = sas2ircu_16.00.00.00-1contrail1_amd64.deb +md5 = 1e8d0288700a0e416231b88f2fd35674 +source = repo:contrail-thirdparty +package_type = contrail-storage-packages + +[openstack-dashboard_8.0.1-0ubuntu1~cloud0.1contrail1] +file = openstack-dashboard_8.0.1-0ubuntu1~cloud0.1contrail1_all.deb +md5 = e6ce7a73c11a600a5cfee7cfa0c26c2a +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-openstack-packages + +[openstack-dashboard-ubuntu-theme_8.0.1-0ubuntu1~cloud0.1contrail1] +file = openstack-dashboard-ubuntu-theme_8.0.1-0ubuntu1~cloud0.1contrail1_all.deb +md5 = 21f348ad15c1d59e437ca593a7b97bca +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-openstack-packages + +[python-django-horizon_8.0.1-0ubuntu1~cloud0.1contrail1] +file = python-django-horizon_8.0.1-0ubuntu1~cloud0.1contrail1_all.deb +md5 = 8b1133758ac474fd5fde438c557ca9b1 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-openstack-packages + +[cassandra_2.0.17] +file = cassandra_2.0.17_all.deb +md5 = 0efe0697f9129037c6bfa0514d2b26d2 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[cassandra_2.1.13] +file = cassandra_2.1.13_all.deb +md5 = 1853e9b48d656094fec8af8e88e1b901 +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[cassandra-cpp-driver_2.2.0-1] +file = cassandra-cpp-driver_2.2.0-1_amd64.deb +md5 = 3f19fb659f3233ff35d1c1168668b08d +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[mysql-server-wsrep_5.5.37-25.10] +file = mysql-server-wsrep-5.5.37-25.10-amd64.deb +md5 = ac8664b3bd2ea15149e2d5af6abac90f +source = repo:contrail-thirdparty +package_type = contrail-install-packages, contrail-dependent-packages + +[dpdk-depends-packages_14.04-liberty1] +file = dpdk-depends-packages_14.04-liberty1_amd64.deb +md5 = fcc36fe1a0c5527843010c4bcaf2da80 +package_type = contrail-install-packages, contrail-dependent-packages diff --git a/build/package_configs/ubuntu1404/liberty/depends_storage_packages.cfg b/build/package_configs/ubuntu1404/liberty/depends_storage_packages.cfg new file mode 100644 index 000000000..619bdf521 --- /dev/null +++ b/build/package_configs/ubuntu1404/liberty/depends_storage_packages.cfg @@ -0,0 +1,409 @@ +# **************************************************************************** +# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS +# IF NOT OVERWRITTEN LOCALLY +# **************************************************************************** +# Usage: +# [package name] +# file = # file name of the package +# +# location = # location where the package file is available. +# # If location is empty, default value is applied +# # Default value = /// and +# # its sub directories +# +# md5 = # md5 check sum of the package file +# +# package_type = # wrapper package name in which this package will be +# # packaged +# # eg. If a section has package_type - contrail-dependent-packages +# # then that package file will be packaged in +# # the wrapper package contrail-dependent-packages +# +# **************************************************************************** + +[DEFAULT] +file = +md5 = +location = +package_type = contrail-storage-packages + +[storage-augeas-lenses_1.2.0-0ubuntu1.2] +file = augeas-lenses_1.2.0-0ubuntu1.2_all.deb +md5 = 2a64ec1748107102185d807a8fdc493f +source = repo:trusty-updates + +[storage-btrfs-tools_3.12-1ubuntu0.1] +file = btrfs-tools_3.12-1ubuntu0.1_amd64.deb +md5 = 4a47a743970471e37b9b6e59419bf4c5 +source = repo:trusty-updates + +[storage-ceph-common_0.94.7-0ubuntu0.15.10.1~cloud0] +file = ceph-common_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 2bdd2e605e89e6907251f305e6599f2e +source = repo:trusty-updates-liberty + +[storage-ceph-deploy_1.4.0-0ubuntu1] +file = ceph-deploy_1.4.0-0ubuntu1_all.deb +md5 = 106ff343c0df2c8e7d0245d0482269ab +source = repo:trusty + +[storage-ceph-fs-common_0.94.7-0ubuntu0.15.10.1~cloud0] +file = ceph-fs-common_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = c2d1d6e35d443c2d7c187ad0f07c8bec +source = repo:trusty-updates-liberty + +[storage-ceph-fuse_0.94.7-0ubuntu0.15.10.1~cloud0] +file = ceph-fuse_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = e989980c38d0907473c3bcdb6490f24a +source = repo:trusty-updates-liberty + +[storage-ceph-mds_0.94.7-0ubuntu0.15.10.1~cloud0] +file = ceph-mds_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = b9493d3f44bf460cd0f1c45e038a4038 +source = repo:trusty-updates-liberty + +[storage-ceph_0.94.7-0ubuntu0.15.10.1~cloud0] +file = ceph_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 9f01158cd67a6018a57d0adc19f0a08e +source = repo:trusty-updates-liberty + +[storage-cinder-backup_2:7.0.2-0ubuntu1~cloud0] +file = cinder-backup_2%%3a7.0.2-0ubuntu1~cloud0_all.deb +md5 = 5f2df42fab725973497a34ba8d978158 +source = repo:trusty-updates-liberty + +[storage-cinder-volume_2:7.0.2-0ubuntu1~cloud0] +file = cinder-volume_2%%3a7.0.2-0ubuntu1~cloud0_all.deb +md5 = 481758efc43212d7853f4957e41f0513 +source = repo:trusty-updates-liberty + +[storage-cryptsetup-bin_2:1.6.1-1ubuntu1] +file = cryptsetup-bin_2%%3a1.6.1-1ubuntu1_amd64.deb +md5 = ae4ee141c87d2248af97a79c39ace7de +source = repo:trusty + +[storage-cryptsetup_2:1.6.1-1ubuntu1] +file = cryptsetup_2%%3a1.6.1-1ubuntu1_amd64.deb +md5 = c9b3ea50aa7243de4db7b739c42b5211 +source = repo:trusty + +[storage-gdisk_0.8.8-1ubuntu0.1] +file = gdisk_0.8.8-1ubuntu0.1_amd64.deb +md5 = 6e9ed16eaca8d87dc22cf4918f95cb2c +source = repo:trusty-updates + +[storage-guile-2.0-libs_2.0.9+1-1ubuntu1] +file = guile-2.0-libs_2.0.9+1-1ubuntu1_amd64.deb +md5 = 040cc4de4acdd5c233c841a437a4ec06 +source = repo:trusty + +[storage-heirloom-mailx_12.5-2+deb7u1build0.14.04.1] +file = heirloom-mailx_12.5-2+deb7u1build0.14.04.1_amd64.deb +md5 = 9e8badc74dfbfe379e3520f343ac93a0 +source = repo:trusty-updates + +[storage-libaugeas0_1.2.0-0ubuntu1.2] +file = libaugeas0_1.2.0-0ubuntu1.2_amd64.deb +md5 = e6d726b1b212fcbd6c82247c1c92e8bc +source = repo:trusty-updates + +[storage-libcephfs1_0.94.7-0ubuntu0.15.10.1~cloud0] +file = libcephfs1_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 21f30a822aff72efb4a46f674cc623f6 +source = repo:trusty-updates-liberty + +[storage-libconfig-general-perl_2.52-1] +file = libconfig-general-perl_2.52-1_all.deb +md5 = 42dd64a2e8c1dd19c1f0efd52da3af41 +source = repo:trusty + +[storage-libcryptsetup4_2:1.6.1-1ubuntu1] +file = libcryptsetup4_2%%3a1.6.1-1ubuntu1_amd64.deb +md5 = 989de0f231fdea8da9fbb9b8e8945940 +source = repo:trusty + +[storage-libdevmapper-event1.02.1_2:1.02.77-6ubuntu2] +file = libdevmapper-event1.02.1_2%%3a1.02.77-6ubuntu2_amd64.deb +md5 = 094eb17d3fb1a5498f56536831d6417a +source = repo:trusty + +[storage-libgc1c2_1:7.2d-5ubuntu2] +file = libgc1c2_1%%3a7.2d-5ubuntu2_amd64.deb +md5 = 77b7d6c1e799ff3f449999f48c62193b +source = repo:trusty + +[storage-libgoogle-perftools4_2.4-0ubuntu4~cloud0] +file = libgoogle-perftools4_2.4-0ubuntu4~cloud0_amd64.deb +md5 = c4ed29534b90e4a81ffd8dc8744a1d4e +source = repo:trusty-updates-liberty + +[storage-libgsasl7_1.8.0-2ubuntu2] +file = libgsasl7_1.8.0-2ubuntu2_amd64.deb +md5 = 48d78fbc403d8687ce7aacea453dd600 +source = repo:trusty + +[storage-libibverbs1_1.1.7-1ubuntu1.1] +file = libibverbs1_1.1.7-1ubuntu1.1_amd64.deb +md5 = 2eac0b5dabf90781eee802bfa8bd0a45 +source = repo:trusty-updates + +[storage-libicu52_52.1-3ubuntu0.4] +file = libicu52_52.1-3ubuntu0.4_amd64.deb +md5 = ed4da162328dc75beb75e38ca291c959 +source = repo:trusty-updates + +[storage-libjemalloc-dev_3.5.1-2] +file = libjemalloc-dev_3.5.1-2_amd64.deb +md5 = 7995c3bac6ca04c5642ea10a131cc157 +source = repo:trusty + +[storage-libkyotocabinet16_1.2.76-4] +file = libkyotocabinet16_1.2.76-4_amd64.deb +md5 = a5ef4290a55fbab39090e0c629569bef +source = repo:trusty + +[storage-libleveldb1_1.15.0-2] +file = libleveldb1_1.15.0-2_amd64.deb +md5 = c031f369fc9122ca93f0f690b1f250da +source = repo:trusty + +[storage-liblzo2-2_2.06-1.2ubuntu1.1] +file = liblzo2-2_2.06-1.2ubuntu1.1_amd64.deb +md5 = b3e9733843fda9b2463a0745e7306092 +source = repo:trusty-updates + +[storage-libmailutils4_1:2.99.98-1.1] +file = libmailutils4_1%%3a2.99.98-1.1_amd64.deb +md5 = a6755462a0efb1c3f9217d9a10c459e0 +source = repo:trusty + +[storage-libnspr4-0d_2:4.12-0ubuntu0.14.04.1] +file = libnspr4-0d_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = 95d161ab098588452a90d9cf5be8d7e7 +source = repo:trusty-updates + +[storage-libnspr4_2:4.12-0ubuntu0.14.04.1] +file = libnspr4_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = cff22f4863f0e8356900e6b26872a63c +source = repo:trusty-updates + +[storage-libnss3-1d_2:3.23-0ubuntu0.14.04.1] +file = libnss3-1d_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 96170b238bc6a8ccc48418d28dce8285 +source = repo:trusty-updates + +[storage-libnss3-nssdb_2:3.23-0ubuntu0.14.04.1] +file = libnss3-nssdb_2%%3a3.23-0ubuntu0.14.04.1_all.deb +md5 = 7b4064d8bb5f8ca3f0aec63699666564 +source = repo:trusty-updates + +[storage-libnss3_2:3.23-0ubuntu0.14.04.1] +file = libnss3_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 915f9fd9b0b0d18bbfe66f47774daec8 +source = repo:trusty-updates + +[storage-libntlm0_1.4-1] +file = libntlm0_1.4-1_amd64.deb +md5 = 494a0ba5d16fe739b2ca575e7177604a +source = repo:trusty + +[storage-librados2_0.94.7-0ubuntu0.15.10.1~cloud0] +file = librados2_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = bccf40a480970a513538aefce6de4137 +source = repo:trusty-updates-liberty + +[storage-libradosstriper1_0.94.7-0ubuntu0.15.10.1~cloud0] +file = libradosstriper1_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 5e93e33470c1c1a5cfd1af75653e02fb +source = repo:trusty-updates-liberty + +[storage-librbd1_0.94.7-0ubuntu0.15.10.1~cloud0] +file = librbd1_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 4251231671f86bd06224da0f0658c6f5 +source = repo:trusty-updates-liberty + +[storage-librdmacm1_1.0.16-1] +file = librdmacm1_1.0.16-1_amd64.deb +md5 = e48ede8d81ea578c585655eef431b858 +source = repo:trusty + +[storage-libreadline5_5.2+dfsg-2] +file = libreadline5_5.2+dfsg-2_amd64.deb +md5 = 105690417cc22d06a1c4a66069ec8a91 +source = repo:trusty + +[storage-libsensors4_1:3.3.4-2ubuntu1] +file = libsensors4_1%%3a3.3.4-2ubuntu1_amd64.deb +md5 = 042d478dd8c2f8d47fe197b2bbf2e8a1 +source = repo:trusty + +[storage-libsgutils2-2_1.36-1ubuntu1] +file = libsgutils2-2_1.36-1ubuntu1_amd64.deb +md5 = f0252042b785ce828cfee62b9390f9c1 +source = repo:trusty + +[storage-libsnappy1_1.1.0-1ubuntu1] +file = libsnappy1_1.1.0-1ubuntu1_amd64.deb +md5 = 6e75ed3aa224013957954c6671bead67 +source = repo:trusty + +[storage-libsysfs2_2.1.0+repack-3ubuntu1] +file = libsysfs2_2.1.0+repack-3ubuntu1_amd64.deb +md5 = 366df7440d6e399c2c775cf81fa508b5 +source = repo:trusty + +[storage-libtcmalloc-minimal4_2.4-0ubuntu4~cloud0] +file = libtcmalloc-minimal4_2.4-0ubuntu4~cloud0_amd64.deb +md5 = 20ebfba23702b1011fe484d04bc174c8 +source = repo:trusty-updates-liberty + +[storage-libtinfo5_5.9+20140118-1ubuntu1] +file = libtinfo5_5.9+20140118-1ubuntu1_amd64.deb +md5 = 72a3233b08faf65664a6235b05924f38 +source = repo:trusty + +[storage-libunistring0_0.9.3-5ubuntu3] +file = libunistring0_0.9.3-5ubuntu3_amd64.deb +md5 = 256e18209ad74bc9e6752290f2a5444f +source = repo:trusty + +[storage-libunwind8_1.1-2.2ubuntu3] +file = libunwind8_1.1-2.2ubuntu3_amd64.deb +md5 = d568b4e19959271d3f8470ff28c223f1 +source = repo:trusty + +[storage-libuuid1_2.20.1-5.1ubuntu20.7] +file = libuuid1_2.20.1-5.1ubuntu20.7_amd64.deb +md5 = d44826d02f03b777448f7ab1e0efa5e3 +source = repo:trusty-updates + +[storage-lvm2_2.02.98-6ubuntu2] +file = lvm2_2.02.98-6ubuntu2_amd64.deb +md5 = 76d72b5259b958b9802845e6123e4431 +source = repo:trusty + +[storage-mailutils-common_1:2.99.98-1.1] +file = mailutils-common_1%%3a2.99.98-1.1_all.deb +md5 = b282e598a53a970b055e6e1c8b45fa95 +source = repo:trusty + +[storage-mailutils_1:2.99.98-1.1] +file = mailutils_1%%3a2.99.98-1.1_amd64.deb +md5 = a59bcdab76b5399b6e393a9a48189c8f +source = repo:trusty + +[storage-postfix_2.11.0-1ubuntu1] +file = postfix_2.11.0-1ubuntu1_amd64.deb +md5 = 676483e59b2785704d298800fb893595 +source = repo:trusty-updates + +[storage-python-blinker_1.3.dfsg1-1ubuntu2] +file = python-blinker_1.3.dfsg1-1ubuntu2_all.deb +md5 = 1084d75f917fed1cd00fe11edd5695e6 +source = repo:trusty + +[storage-python-ceph_0.94.7-0ubuntu0.15.10.1~cloud0] +file = python-ceph_0.94.7-0ubuntu0.15.10.1~cloud0_all.deb +md5 = e82b6e697c885a5bb98b9f536d038301 +source = repo:trusty-updates-liberty + +[storage-python-cephfs_0.94.7-0ubuntu0.15.10.1~cloud0] +file = python-cephfs_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 113b3e36032cf88911c82d0d8bdb6bb0 +source = repo:trusty-updates-liberty + +[storage-python-flask_0.10.1-2build1] +file = python-flask_0.10.1-2build1_all.deb +md5 = ddee0a62d486a6cc2f86028f08369505 +source = repo:trusty + +[storage-python-itsdangerous_0.22+dfsg1-1build1] +file = python-itsdangerous_0.22+dfsg1-1build1_all.deb +md5 = 41f85eb2b23f50761d2914f34e28fd52 +source = repo:trusty + +[storage-python-pushy_0.5.3-1] +file = python-pushy_0.5.3-1_amd64.deb +md5 = 9211c7c8c46ce30537c4c227259a0c10 +source = repo:trusty + +[storage-python-pyinotify_0.9.4-1build1] +file = python-pyinotify_0.9.4-1build1_all.deb +md5 = e8769aea55a94fe0562f7c5fc160f883 +source = repo:trusty + +[storage-python-rados_0.94.7-0ubuntu0.15.10.1~cloud0] +file = python-rados_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 063b132230169efc5383a39b1c515694 +source = repo:trusty-updates-liberty + +[storage-python-rbd_0.94.7-0ubuntu0.15.10.1~cloud0] +file = python-rbd_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 8ef83ddabe562586ddde9d8703ee6f49 +source = repo:trusty-updates-liberty + +[storage-python-werkzeug_0.9.4+dfsg-1.1ubuntu2] +file = python-werkzeug_0.9.4+dfsg-1.1ubuntu2_all.deb +md5 = 0b840568dce7365757d1146c8570466c +source = repo:trusty-updates + +[storage-radosgw_0.94.7-0ubuntu0.15.10.1~cloud0] +file = radosgw_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = 608c661f9a2bf7c4673bb79b18555052 +source = repo:trusty-updates-liberty + +[storage-rbd-fuse_0.94.7-0ubuntu0.15.10.1~cloud0] +file = rbd-fuse_0.94.7-0ubuntu0.15.10.1~cloud0_amd64.deb +md5 = ef0340c06e45a8ac1ff3851cf3a6baf1 +source = repo:trusty-updates-liberty + +[storage-readline-common_6.3-4ubuntu2] +file = readline-common_6.3-4ubuntu2_all.deb +md5 = d658036aeedbb56055420a216a45f613 +source = repo:trusty + +[storage-rpcbind_0.2.1-2ubuntu2.2] +file = rpcbind_0.2.1-2ubuntu2.2_amd64.deb +md5 = 279a20e0acfea4036bce808ee12db789 +source = repo:trusty-updates + +[storage-ruby-json_1.8.0-1build1] +file = ruby-json_1.8.0-1build1_amd64.deb +md5 = 8a5577a328816da78d573bb5ae490924 +source = repo:trusty + +[storage-sg3-utils_1.36-1ubuntu1] +file = sg3-utils_1.36-1ubuntu1_amd64.deb +md5 = 1ba42c6c32502350e3cf80994a9d59be +source = repo:trusty + +[storage-smartmontools_6.2+svn3841-1.2] +file = smartmontools_6.2+svn3841-1.2_amd64.deb +md5 = d03f917eac4a51f138ea47e1bdfc10d5 +source = repo:trusty + +[storage-sysfsutils_2.1.0+repack-3ubuntu1] +file = sysfsutils_2.1.0+repack-3ubuntu1_amd64.deb +md5 = 641ba8cee477cdcf99f3e6b13cbd7c3d +source = repo:trusty + +[storage-sysstat_10.2.0-1] +file = sysstat_10.2.0-1_amd64.deb +md5 = c85d3d8c3d3162c4d6b2efe1b963e0d2 +source = repo:trusty + +[storage-tgt_1:1.0.43-0ubuntu4.1~14.04.3] +file = tgt_1%%3a1.0.43-0ubuntu4.1~14.04.3_amd64.deb +md5 = e662be318b3244b46bf8ab360add5b2e +source = repo:trusty-updates + +[storage-watershed_7] +file = watershed_7_amd64.deb +md5 = b1b5d2c6f51e224123e13ea79661913d +source = repo:trusty + +[storage-xfsprogs_3.1.9ubuntu2] +file = xfsprogs_3.1.9ubuntu2_amd64.deb +md5 = cd7af43d46ad3eca3839ded13f2a0129 +source = repo:trusty + diff --git a/build/package_configs/ubuntu1404/vcenter/contrail_packages.cfg b/build/package_configs/ubuntu1404/vcenter/contrail_packages.cfg index 73229eb66..f1b0502bd 100644 --- a/build/package_configs/ubuntu1404/vcenter/contrail_packages.cfg +++ b/build/package_configs/ubuntu1404/vcenter/contrail_packages.cfg @@ -29,10 +29,14 @@ pkgs = contrail-analytics, contrail-config, contrail-control, contrail-lib, contrail-vrouter-source, contrail-vrouter-utils, python-contrail, python-contrail-vrouter-api, contrail-dns, python-opencontrail-vrouter-netns, contrail-utils, - contrail-vrouter-3.13.0-40-generic, contrail-nodemgr, contrail-docs + contrail-vrouter-3.13.0-85-generic, contrail-nodemgr, contrail-docs makeloc = tools/packaging/common/debian builtloc = build/packages +[contrail-database-common-deb] +pkgs = contrail-database-common +makeloc = tools/packaging/common/debian + [contrail-vrouter-init-deb] pkgs = contrail-vrouter-init makeloc = tools/packaging/common/debian diff --git a/build/package_configs/ubuntu1404/vcenter/depends_contrail_dependent_packages.cfg b/build/package_configs/ubuntu1404/vcenter/depends_contrail_dependent_packages.cfg index 95283a61b..3a0909a54 100644 --- a/build/package_configs/ubuntu1404/vcenter/depends_contrail_dependent_packages.cfg +++ b/build/package_configs/ubuntu1404/vcenter/depends_contrail_dependent_packages.cfg @@ -19,421 +19,547 @@ # # then that package file will be packaged in # # the wrapper package contrail-dependent-packages # +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded # **************************************************************************** [DEFAULT] file = md5 = location = -package_type = contrail-install-packages, contrail-dependent-packages +package_type = contrail-install-packages, contrail-dependent-packages [acl_2.2.52-1] file = acl_2.2.52-1_amd64.deb md5 = ac8db6aa2095dfd83758db34cf31285a +source = repo:trusty/main/ [alembic_0.6.2+ds-1] file = alembic_0.6.2+ds-1_all.deb md5 = 5a3d3c0db358b45dc688cd10fac14a66 +source = repo:trusty/main/ + +[apache2-bin_2.4.7-1ubuntu4.13] +file = apache2-bin_2.4.7-1ubuntu4.13_amd64.deb +md5 = 1f09b5285104ba0092e87107edb50eb8 +source = repo:trusty-updates/main/ + +[apache2-data_2.4.7-1ubuntu4.13] +file = apache2-data_2.4.7-1ubuntu4.13_all.deb +md5 = a364bd616d825751ecc5d5bbaf6a7aab +source = repo:trusty-updates/main/ + +[apache2_2.4.7-1ubuntu4.13] +file = apache2_2.4.7-1ubuntu4.13_amd64.deb +md5 = de253bd50cfe1b961ff934b784095bd7 +source = repo:trusty-updates/main/ [apport-symptoms_0.20] file = apport-symptoms_0.20_all.deb md5 = 089a296892f64423dcd98987979c871e +source = repo:trusty/main/ + +[apport_2.14.1-0ubuntu3.21] +file = apport_2.14.1-0ubuntu3.21_all.deb +md5 = 9e0cac0cb024b9470d668361f7587687 +source = repo:trusty-updates/main/ [aufs-tools_1:3.2+20130722-1.1] file = aufs-tools_1%%3a3.2+20130722-1.1_amd64.deb md5 = 971d9f80df61d9398f7356e60e1c3723 +source = repo:trusty/universe/ -[augeas-lenses_1.2.0-0ubuntu1.1] -file = augeas-lenses_1.2.0-0ubuntu1.1_all.deb -md5 = 60bb4a95db770d3bacc69df04fc6e080 +[augeas-lenses_1.2.0-0ubuntu1.2] +file = augeas-lenses_1.2.0-0ubuntu1.2_all.deb +md5 = 2a64ec1748107102185d807a8fdc493f +source = repo:trusty-updates/main/ [authbind_2.1.1] file = authbind_2.1.1_amd64.deb md5 = 970d73e2beae6852c8af26a9b3ae1794 +source = repo:trusty/main/ -[biosdevname_0.4.1-0ubuntu6.1] -file = biosdevname_0.4.1-0ubuntu6.1_amd64.deb -md5 = 29af831d64f94163cf06d6dfc8397452 +[biosdevname_0.4.1-0ubuntu6.3] +file = biosdevname_0.4.1-0ubuntu6.3_amd64.deb +md5 = bc837d60b1c558c6424309a446420b0d +source = repo:trusty-updates/main/ [bridge-utils_1.5-6ubuntu2] file = bridge-utils_1.5-6ubuntu2_amd64.deb md5 = 23f37038baab928f276fb1aa2fd0a6c2 +source = repo:trusty/main/ [ca-certificates-java_20130815ubuntu1] file = ca-certificates-java_20130815ubuntu1_all.deb md5 = efc4948adfc7855968db71d52b181af0 - -[cassandra_2.0.17] -file = cassandra_2.0.17_all.deb -md5 = 0efe0697f9129037c6bfa0514d2b26d2 - -[cassandra_2.1.9] -file = cassandra_2.1.9_all.deb -md5 = 4dcdf43471d6bcbef7ad3b79f63bd8b1 - -[cassandra-cpp-driver_2.2.0-1] -file = cassandra-cpp-driver_2.2.0-1_amd64.deb -md5 = 3f19fb659f3233ff35d1c1168668b08d +source = repo:trusty/main/ [cgroup-lite_1.9] file = cgroup-lite_1.9_all.deb md5 = fe1749ba83aaf6d4f3e87ccdbc3581d4 +source = repo:trusty/main/ [cpu-checker_0.7-0ubuntu4] file = cpu-checker_0.7-0ubuntu4_amd64.deb md5 = 4369a69e41e5b78ab7a4623405455443 +source = repo:trusty/main/ -[crash_7.0.3-3ubuntu4] -file = crash_7.0.3-3ubuntu4_amd64.deb -md5 = 4232f2e94a0281df90ca618c9ebb9ce2 +[crash_7.0.3-3ubuntu4.4] +file = crash_7.0.3-3ubuntu4.4_amd64.deb +md5 = 41f05464997fe498fdabc96691143b4d +source = repo:trusty-updates/main/ [crda_1.1.2-1ubuntu2] file = crda_1.1.2-1ubuntu2_amd64.deb md5 = 32deec596ebb61ddb797eea98e4ef5c3 +[crudini_0.3-1] +file = crudini_0.3-1_amd64.deb +md5 = 53f6b8981076afc2fe5f545a87426cdd +source = repo:trusty/universe/ + [default-jre-headless_2:1.7-51] file = default-jre-headless_2%%3a1.7-51_amd64.deb md5 = 82babba8748dca94fddb6449c2e0c38e +source = repo:trusty/main/ + +[dkms_2.2.0.3-1.1ubuntu5.14.04.7] +file = dkms_2.2.0.3-1.1ubuntu5.14.04.7_all.deb +md5 = fab70a6c4f896c686947a0f2380b179b +source = repo:trusty-updates/main/ -[dkms_2.2.0.3-1.1ubuntu5.14.04] -file = dkms_2.2.0.3-1.1ubuntu5.14.04_all.deb -md5 = 1f3c0d0ef8f2fe886efba92d8c8a72db +[dnsmasq-base_2.68-1ubuntu0.1] +file = dnsmasq-base_2.68-1ubuntu0.1_amd64.deb +md5 = aaee558be8eddbbdc86bb0623152786d +source = repo:trusty-updates/main/ [ebtables_2.0.10.4-3ubuntu1] file = ebtables_2.0.10.4-3ubuntu1_amd64.deb md5 = f96583701c00105823f3f47dea83d916 +source = repo:trusty/main/ [erlang-asn1_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-asn1_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 575fef7263a448cdf324913398f8ec0f +source = repo:trusty-updates/main/ [erlang-base_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-base_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 99b0855a597d569ddc43c0041677ca96 +source = repo:trusty-updates/main/ [erlang-corba_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-corba_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = f29d5d35aeae497c07371e8a752e97ea +source = repo:trusty-updates/main/ [erlang-crypto_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-crypto_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 035e43b5d7eb117b25a28e830fc2bcbb +source = repo:trusty-updates/main/ [erlang-diameter_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-diameter_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 88161ebc93abeaa2b2914761e460f96c +source = repo:trusty-updates/main/ [erlang-edoc_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-edoc_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 1b55de3e45ceaa88f508a62d53c00fb1 +source = repo:trusty-updates/main/ [erlang-eldap_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-eldap_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = cc629b93dd39fff38252b710469f2326 +source = repo:trusty-updates/main/ [erlang-erl-docgen_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-erl-docgen_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 9628a630a43a2a8a4479807ae96e1f09 +source = repo:trusty-updates/main/ [erlang-eunit_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-eunit_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 6243705eccf17e2912b6ebc083601c77 +source = repo:trusty-updates/main/ [erlang-ic_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-ic_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 043e80620c4881143e29f7a988d4e798 +source = repo:trusty-updates/main/ [erlang-inets_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-inets_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = f8636c11531196fe9de2be45fdfe08e1 +source = repo:trusty-updates/main/ [erlang-mnesia_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-mnesia_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = eff8aab35c9b4801ddd5c774f1aceb90 +source = repo:trusty-updates/main/ [erlang-nox_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-nox_1%%3a16.b.3-dfsg-1ubuntu2.1_all.deb md5 = 9dfd1c17ee88f9b72090daabe3f8e731 +source = repo:trusty-updates/main/ [erlang-odbc_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-odbc_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = b042165d0ec717297d597f4b90bda232 +source = repo:trusty-updates/main/ [erlang-os-mon_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-os-mon_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 53f05b6f3005de0878ce1ee92ba3e188 +source = repo:trusty-updates/main/ [erlang-parsetools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-parsetools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 1f0c6e2cba3372c40dc6ee76ec12e7fd +source = repo:trusty-updates/main/ [erlang-percept_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-percept_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 15655c734c0029fab92eb868329510c0 +source = repo:trusty-updates/main/ [erlang-public-key_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-public-key_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 7518584093a1a7f99567e7493098c611 +source = repo:trusty-updates/main/ [erlang-runtime-tools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-runtime-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 784a09013c958b70fb1bf345c3a23c7a +source = repo:trusty-updates/main/ [erlang-snmp_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-snmp_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = eee18402acd25f7e8c2c31ce26a258c7 +source = repo:trusty-updates/main/ [erlang-ssh_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-ssh_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 4e1fe0602a2faa427bac96c6f5081811 +source = repo:trusty-updates/main/ [erlang-ssl_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-ssl_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 07531a5126d16f130b5f14d6803112b8 +source = repo:trusty-updates/main/ [erlang-syntax-tools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-syntax-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = c0ace3059416c0ddabaea1e4dd873643 +source = repo:trusty-updates/main/ [erlang-tools_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-tools_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 828f36449d9ce99a9390d70525db6ffc +source = repo:trusty-updates/main/ [erlang-webtool_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-webtool_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 6327bcd344ac21dfc5ab2efe79112834 +source = repo:trusty-updates/main/ [erlang-xmerl_1:16.b.3-dfsg-1ubuntu2.1] file = erlang-xmerl_1%%3a16.b.3-dfsg-1ubuntu2.1_amd64.deb md5 = 46a5494bcf5589a86a65fb75f20207cb +source = repo:trusty-updates/main/ [ethtool_1:3.13-1] file = ethtool_1%%3a3.13-1_amd64.deb md5 = b23c4d504e5b13decc47276ee40927b6 -[fakeroot_1.20-3ubuntu2] -file = fakeroot_1.20-3ubuntu2_amd64.deb -md5 = fad29881d632a463f5235f399fa65a14 - -[fontconfig-config_2.11.0-0ubuntu4.1] -file = fontconfig-config_2.11.0-0ubuntu4.1_all.deb -md5 = cb98cb28b96d218db9df3af4538a3658 +[fontconfig-config_2.11.0-0ubuntu4.2] +file = fontconfig-config_2.11.0-0ubuntu4.2_all.deb +md5 = 0810d79c48f4cc873a73a721b6f51806 +source = repo:trusty-updates/main/ [fonts-dejavu-core_2.34-1ubuntu1] file = fonts-dejavu-core_2.34-1ubuntu1_all.deb md5 = 7167c133d8ec713c90fc64faab927994 - -[galera_25.2.9] -file = galera-25.2.9-amd64.deb -md5 = 7602c095d5d42661019bd45221615d4a +source = repo:trusty/main/ [gawk_1:4.0.1+dfsg-2.1ubuntu2] file = gawk_1%%3a4.0.1+dfsg-2.1ubuntu2_amd64.deb md5 = 799aeb4150f914136decbe942ef7de9a +source = repo:trusty/main/ [genisoimage_9:1.1.11-2ubuntu3] file = genisoimage_9%%3a1.1.11-2ubuntu3_amd64.deb md5 = 69f0b6dcc3cc655d1ab27ca2aadb32b6 - -[git-man_1:1.9.1-1ubuntu0.1] -file = git-man_1%%3a1.9.1-1ubuntu0.1_all.deb -md5 = 9d09a4bd2306edc6a8a1009cc4030bb8 - -[git_1:1.9.1-1ubuntu0.1] -file = git_1%%3a1.9.1-1ubuntu0.1_amd64.deb -md5 = ed0787d2ce3703e92ef9d286beec9488 - -[haproxy_1.5.4-1ppa1~precise] -file = haproxy_1.5.4-1ppa1~precise_amd64.deb -md5 = 808572e56bb7d65f8e7e21a3762bc3f4 - -[ifenslave-2.6_2.4ubuntu1] -file = ifenslave-2.6_2.4ubuntu1_all.deb -md5 = 38759149a444c81e9f8261540c0dcf30 - -[ifenslave_2.4ubuntu1] -file = ifenslave_2.4ubuntu1_all.deb -md5 = 939a6c5c389757ace752bb01d0467064 - -[iproute_1:3.12.0-2] -file = iproute_1%%3a3.12.0-2_all.deb -md5 = 0c0e23538c05211f3459d5a565de2dc1 +source = repo:trusty/main/ + +[git-man_1:1.9.1-1ubuntu0.3] +file = git-man_1%%3a1.9.1-1ubuntu0.3_all.deb +md5 = b9614019a1917fad0ff0edc6ddd53b91 +source = repo:trusty-updates/main/ + +[git_1:1.9.1-1ubuntu0.3] +file = git_1%%3a1.9.1-1ubuntu0.3_amd64.deb +md5 = 7ae18fa4b16c33b3ed506e23e7f26779 +source = repo:trusty-updates/main/ + +[icedtea-6-jre-cacao_6b39-1.13.11-0ubuntu0.14.04.1] +file = icedtea-6-jre-cacao_6b39-1.13.11-0ubuntu0.14.04.1_amd64.deb +md5 = 2f42f21b44ce7bb07f901774d4a36589 +source = repo:trusty-updates/universe/ + +[icedtea-6-jre-jamvm_6b39-1.13.11-0ubuntu0.14.04.1] +file = icedtea-6-jre-jamvm_6b39-1.13.11-0ubuntu0.14.04.1_amd64.deb +md5 = 14d7a45c2e34fa345f0540b5d9e7d5d5 +source = repo:trusty-updates/universe/ + +[ifenslave-2.6_2.4ubuntu1.2] +file = ifenslave-2.6_2.4ubuntu1.2_all.deb +md5 = 29f633fc0e2f9dfc30e81f4d0de3c4d9 +source = repo:trusty-updates/main/ + +[ifenslave_2.4ubuntu1.2] +file = ifenslave_2.4ubuntu1.2_all.deb +md5 = b0852693180ea4acd1e67dec4f4963fe +source = repo:trusty-updates/main/ + +[iproute_1:3.12.0-2ubuntu1] +file = iproute_1%%3a3.12.0-2ubuntu1_all.deb +md5 = f20fa31756530920ae3c237b337dc7bc +source = repo:trusty-updates/main/ [ipvsadm_1:1.26-2ubuntu1] file = ipvsadm_1%%3a1.26-2ubuntu1_amd64.deb md5 = d62d75f400a4466eded2949d91c40ff8 +source = repo:trusty/main/ [ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1.1] file = ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1.1_all.deb md5 = 2ed810c34ce0682174eb97461673c00e +source = repo:trusty-updates/main/ [iw_3.4-1] file = iw_3.4-1_amd64.deb md5 = eede6190cb718a940f22a65e93ab77ee +source = repo:trusty/main/ [java-common_0.51] file = java-common_0.51_all.deb md5 = c8352e7908b8a260b2657f9b80c08031 +source = repo:trusty/main/ [jsvc_1.0.15-5ubuntu2] file = jsvc_1.0.15-5ubuntu2_amd64.deb md5 = 25ed60e830fa2fda6edcebc69a91c4ed +source = repo:trusty/universe/ -[kdump-tools_1.5.5-2ubuntu1.1] -file = kdump-tools_1.5.5-2ubuntu1.1_all.deb -md5 = 692976ea78e13e86b623fb668376e307 +[kdump-tools_1.5.5-2ubuntu1.5] +file = kdump-tools_1.5.5-2ubuntu1.5_all.deb +md5 = 1ace74c48059ba8641dcae07b3cd1f8c +source = repo:trusty-updates/main/ -[keepalived_1.2.13-0] -file = keepalived_1.2.13-0~276~ubuntu14.04.1_amd64.deb -md5 = 4ccce433d4a0a5b3e8170ec077c709f7 +[kexec-tools_1:2.0.6-0ubuntu2.2] +file = kexec-tools_1%%3a2.0.6-0ubuntu2.2_amd64.deb +md5 = fb0a3d4ec4528e33d9df31e53154ca40 +source = repo:trusty-updates/main/ -[kexec-tools_1:2.0.6-0ubuntu2.1] -file = kexec-tools_1%%3a2.0.6-0ubuntu2.1_amd64.deb -md5 = 040a93f4583d5f1cfe12c4de0e7c78dd +[keystone_1:2014.1.5-0ubuntu1] +file = keystone_1%%3a2014.1.5-0ubuntu1_all.deb +md5 = ce768e616cbd34657d8405843cb9da91 +source = repo:trusty-updates/main/ -[keystone_1:2014.1.4-0ubuntu2] -file = keystone_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = e75dd427d162fdd527400b78d452fd4b +[keyutils_1.5.6-1] +file = keyutils_1.5.6-1_amd64.deb +md5 = a49da8cb9cc16bdaf1ef8b205bf99d2e +source = repo:trusty/main/ -[kpartx_0.4.9-3ubuntu7.2] -file = kpartx_0.4.9-3ubuntu7.2_amd64.deb -md5 = d79e7ede14a8e354c1b60d6e8b1a0d46 +[kpartx_0.4.9-3ubuntu7.13] +file = kpartx_0.4.9-3ubuntu7.13_amd64.deb +md5 = be61034339f4d0b5c30b201075006827 +source = repo:trusty-updates/main/ [libaio1_0.3.109-4] file = libaio1_0.3.109-4_amd64.deb md5 = cd9da2f52a5d7713e5080c5ed6916a41 +source = repo:trusty/main/ [libapache2-mod-wsgi_3.4-4ubuntu2.1.14.04.2] file = libapache2-mod-wsgi_3.4-4ubuntu2.1.14.04.2_amd64.deb md5 = 2fd6d1f0e409388c117caa7178a0f924 +source = repo:trusty-updates/main/ [libapr1_1.5.0-1] file = libapr1_1.5.0-1_amd64.deb md5 = 710311d20d36259cb9beb6473e252c9a +source = repo:trusty/main/ [libaprutil1-dbd-sqlite3_1.5.3-1] file = libaprutil1-dbd-sqlite3_1.5.3-1_amd64.deb md5 = f9d34d338d857020a9f329fdb37692ca +source = repo:trusty/main/ [libaprutil1-ldap_1.5.3-1] file = libaprutil1-ldap_1.5.3-1_amd64.deb md5 = 78087b008a7705b2abc8800cabfacf37 +source = repo:trusty/main/ [libaprutil1_1.5.3-1] file = libaprutil1_1.5.3-1_amd64.deb md5 = 91d3810e9d5f5012b36e6ab06037c532 +source = repo:trusty/main/ [libasound2-data_1.0.27.2-3ubuntu7] file = libasound2-data_1.0.27.2-3ubuntu7_all.deb md5 = 1b78d6d03ed4303e843ba2c5bae3bc53 +source = repo:trusty/main/ [libasound2_1.0.27.2-3ubuntu7] file = libasound2_1.0.27.2-3ubuntu7_amd64.deb md5 = 68d7619e0a70770c5feef628f8296409 +source = repo:trusty/main/ [libasyncns0_0.8-4ubuntu2] file = libasyncns0_0.8-4ubuntu2_amd64.deb md5 = bf233bc958e37dab60c0f1ab7f8c6bf0 +source = repo:trusty/main/ -[libaugeas0_1.2.0-0ubuntu1.1] -file = libaugeas0_1.2.0-0ubuntu1.1_amd64.deb -md5 = bed4213162bca8af578fb8b9b1f34c9f +[libaugeas0_1.2.0-0ubuntu1.2] +file = libaugeas0_1.2.0-0ubuntu1.2_amd64.deb +md5 = e6d726b1b212fcbd6c82247c1c92e8bc +source = repo:trusty-updates/main/ -[libavahi-client3_0.6.31-4ubuntu1] -file = libavahi-client3_0.6.31-4ubuntu1_amd64.deb -md5 = eec45ae98569b6479800e8b00739abb4 +[libavahi-client3_0.6.31-4ubuntu1.1] +file = libavahi-client3_0.6.31-4ubuntu1.1_amd64.deb +md5 = a768c3a502a204fca430f98fab12d676 +source = repo:trusty-updates/main/ -[libavahi-common-data_0.6.31-4ubuntu1] -file = libavahi-common-data_0.6.31-4ubuntu1_amd64.deb -md5 = a1b4378b37be0edac4eb8f4b3bd12ec6 +[libavahi-common-data_0.6.31-4ubuntu1.1] +file = libavahi-common-data_0.6.31-4ubuntu1.1_amd64.deb +md5 = 3878bcc211212dfe7158765344638d0f +source = repo:trusty-updates/main/ -[libavahi-common3_0.6.31-4ubuntu1] -file = libavahi-common3_0.6.31-4ubuntu1_amd64.deb -md5 = d63a809ea7ad51739547232994429cbb +[libavahi-common3_0.6.31-4ubuntu1.1] +file = libavahi-common3_0.6.31-4ubuntu1.1_amd64.deb +md5 = ddf978df5cbc75ad174cd66db0d90846 +source = repo:trusty-updates/main/ [libblas3_1.2.20110419-7] file = libblas3_1.2.20110419-7_amd64.deb md5 = 3dc4c7e9af05c17cd1539b3415d870b8 +source = repo:trusty/main/ [libbluetooth3_4.101-0ubuntu13.1] file = libbluetooth3_4.101-0ubuntu13.1_amd64.deb md5 = 0577a4e8b377f3751b018494096df9e4 +source = repo:trusty-updates/main/ [libboost-chrono1.54.0_1.54.0-4ubuntu3.1] file = libboost-chrono1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 6afd51c2ce1c023fc2df50e2e70b07ed +source = repo:trusty-updates/main/ [libboost-dev_1.54.0.1ubuntu1] file = libboost-dev_1.54.0.1ubuntu1_amd64.deb md5 = baf6382cbbb1c5939b0a4655491c0db7 +source = repo:trusty/main/ [libboost-filesystem1.54.0_1.54.0-4ubuntu3.1] file = libboost-filesystem1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = d4c687c97e90c678a7319fafba6081c8 +source = repo:trusty-updates/main/ [libboost-program-options1.54.0_1.54.0-4ubuntu3.1] file = libboost-program-options1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 0c4fdd70ec7b36c5ddce304565a2dd02 +source = repo:trusty-updates/main/ [libboost-python1.54.0_1.54.0-4ubuntu3.1] file = libboost-python1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = f8383cd7711ea48eea73763043f00f19 +source = repo:trusty-updates/main/ [libboost-regex1.54.0_1.54.0-4ubuntu3.1] file = libboost-regex1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 4351519527cbfc93d2461cdd1c528ab2 +source = repo:trusty-updates/main/ [libboost-system1.54.0_1.54.0-4ubuntu3.1] file = libboost-system1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 2a5872be9fcc3cc0a51d9ec0d42c41a7 +source = repo:trusty-updates/main/ [libboost-thread1.54.0_1.54.0-4ubuntu3.1] file = libboost-thread1.54.0_1.54.0-4ubuntu3.1_amd64.deb md5 = 2e7b4afdd0d85037864a2c3e3ef19999 +source = repo:trusty-updates/main/ [libboost1.54-dev_1.54.0-4ubuntu3.1] file = libboost1.54-dev_1.54.0-4ubuntu3.1_amd64.deb md5 = 8ccf0eb7b383ab5e3742861c5bf082fc +source = repo:trusty-updates/main/ [libbrlapi0.6_5.0-2ubuntu2] file = libbrlapi0.6_5.0-2ubuntu2_amd64.deb md5 = d0072983318e559dc57fea88c494ed33 +source = repo:trusty/main/ [libcaca0_0.99.beta18-1ubuntu5] file = libcaca0_0.99.beta18-1ubuntu5_amd64.deb md5 = 2532fc55507b526751257c826e6b1b43 +source = repo:trusty/main/ [libcommons-codec-java_1.9-1] file = libcommons-codec-java_1.9-1_all.deb md5 = a863c457f1bf27251f574c9827240a54 +source = repo:trusty/main/ [libcommons-daemon-java_1.0.15-5ubuntu2] file = libcommons-daemon-java_1.0.15-5ubuntu2_all.deb md5 = 5b83da9823ecd4266c11c637b7708e21 +source = repo:trusty/universe/ + +[libcrypto++9_5.6.1-6+deb8u1build0.14.04.1] +file = libcrypto++9_5.6.1-6+deb8u1build0.14.04.1_amd64.deb +md5 = b5c65db1de0035c34ed1f140c40d79bf +source = repo:trusty-updates/universe/ + +[libcups2_1.7.2-0ubuntu1.7] +file = libcups2_1.7.2-0ubuntu1.7_amd64.deb +md5 = 44573174451bfc3da06be711c65e6de9 +source = repo:trusty-updates/main/ [libdbd-mysql-perl_4.025-1] file = libdbd-mysql-perl_4.025-1_amd64.deb md5 = 2409373cd5f8fb702e6c636c28eb5e2e +source = repo:trusty/main/ [libdbi-perl_1.630-1] file = libdbi-perl_1.630-1_amd64.deb md5 = 53c59ad9793bbd09d9c8dedcdecaba1c +source = repo:trusty/main/ -[libdrm-intel1_2.4.56-1~ubuntu2] -file = libdrm-intel1_2.4.56-1~ubuntu2_amd64.deb -md5 = 563bd4876e53f9b771583e68a240bc09 +[libdrm-intel1_2.4.67-1ubuntu0.14.04.1] +file = libdrm-intel1_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = cccdf9969c69298ce04728e589c8ff80 +source = repo:trusty-updates/main/ -[libdrm-nouveau2_2.4.56-1~ubuntu2] -file = libdrm-nouveau2_2.4.56-1~ubuntu2_amd64.deb -md5 = 0bb43fa5d5e20350d3fb462aa044bfe3 +[libdrm-nouveau2_2.4.67-1ubuntu0.14.04.1] +file = libdrm-nouveau2_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = 34284472aa48294499654fffc5b21d8d +source = repo:trusty-updates/main/ -[libdrm-radeon1_2.4.56-1~ubuntu2] -file = libdrm-radeon1_2.4.56-1~ubuntu2_amd64.deb -md5 = aae613a89bde8318930d9079c86d8105 +[libdrm-radeon1_2.4.67-1ubuntu0.14.04.1] +file = libdrm-radeon1_2.4.67-1ubuntu0.14.04.1_amd64.deb +md5 = c0665182f97b69f5dfa973d87c61551b +source = repo:trusty-updates/main/ [libdw1_0.158-0ubuntu5.2] file = libdw1_0.158-0ubuntu5.2_amd64.deb md5 = 13106fc64315d54553789cd857369557 +source = repo:trusty-updates/main/ [libelf1_0.158-0ubuntu5.2] file = libelf1_0.158-0ubuntu5.2_amd64.deb @@ -442,178 +568,232 @@ md5 = 7c622ac0bdb90b547f3cd18c8e7369b0 [liberror-perl_0.17-1.1] file = liberror-perl_0.17-1.1_all.deb md5 = 4988e40e65eeba03317411bfdd52b76c +source = repo:trusty/main/ [libevent-2.0-5_2.0.21-stable-1ubuntu1.14.04.1] file = libevent-2.0-5_2.0.21-stable-1ubuntu1.14.04.1_amd64.deb md5 = 66bae54dc127761b5d044d20a49c84c4 - -[libfakeroot_1.20-3ubuntu2] -file = libfakeroot_1.20-3ubuntu2_amd64.deb -md5 = 856c7401d7d5a63ea231f706c18d9261 +source = repo:trusty-updates/main/ [libfdt1_1.4.0+dfsg-1] file = libfdt1_1.4.0+dfsg-1_amd64.deb md5 = 5dd80e05348eec241f62ff8dd7d2e8f2 +source = repo:trusty/main/ [libfile-copy-recursive-perl_0.38-1] file = libfile-copy-recursive-perl_0.38-1_all.deb md5 = f9f292787835ae54426e80678737509c +source = repo:trusty/main/ [libflac8_1.3.0-2ubuntu0.14.04.1] file = libflac8_1.3.0-2ubuntu0.14.04.1_amd64.deb md5 = bbd48c917a12d425f0e14873575bc64c - -[libfontconfig1_2.11.0-0ubuntu4.1] -file = libfontconfig1_2.11.0-0ubuntu4.1_amd64.deb -md5 = 14def8ab4304859c6aa3d371c604cc3d - -[libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2] -file = libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2_amd64.deb -md5 = 858b5302af85a3ae22ea73c142e5fd26 - -[libgd3_2.1.0-3] -file = libgd3_2.1.0-3_amd64.deb -md5 = d9af97027e33e6f1aa29ed2e4ed0a52e - -[libgfortran3_4.8.2-19ubuntu1] -file = libgfortran3_4.8.2-19ubuntu1_amd64.deb -md5 = e176a202ded90694642eeeaa80653118 - -[libgl1-mesa-dri_10.1.3-0ubuntu0.4] -file = libgl1-mesa-dri_10.1.3-0ubuntu0.4_amd64.deb -md5 = 9813aa788be4e5179e9af51c0fec7fc2 - -[libgl1-mesa-glx_10.1.3-0ubuntu0.4] -file = libgl1-mesa-glx_10.1.3-0ubuntu0.4_amd64.deb -md5 = a60ebe9c33566a739968e84f5af64fd1 - -[libglapi-mesa_10.1.3-0ubuntu0.4] -file = libglapi-mesa_10.1.3-0ubuntu0.4_amd64.deb -md5 = eab24e1fb176345de0c61f847701cb2d - -[libgoogle-perftools4_2.1-2ubuntu1] -file = libgoogle-perftools4_2.1-2ubuntu1_amd64.deb -md5 = 9d9ea08b8a231ecd9845e9d59b27d13a +source = repo:trusty-updates/main/ + +[libfontconfig1_2.11.0-0ubuntu4.2] +file = libfontconfig1_2.11.0-0ubuntu4.2_amd64.deb +md5 = 1ca4767d44771ef7e9e5b29c27738f69 +source = repo:trusty-updates/main/ + +[libgd3_2.1.0-3ubuntu0.3] +file = libgd3_2.1.0-3ubuntu0.3_amd64.deb +md5 = 82f90ac540cd2e9642f2af81c6f4ea32 +source = repo:trusty-updates/main/ + +[libgfortran3_4.8.4-2ubuntu1~14.04.3] +file = libgfortran3_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 286bf45a6ee1fa4e680d11e9d397335a +source = repo:trusty-updates/main/ + +[libgl1-mesa-dri_10.1.3-0ubuntu0.6] +file = libgl1-mesa-dri_10.1.3-0ubuntu0.6_amd64.deb +md5 = f7dbf4c1e51262b970f023a3e5346c90 +source = repo:trusty-updates/main/ + +[libgl1-mesa-glx_10.1.3-0ubuntu0.6] +file = libgl1-mesa-glx_10.1.3-0ubuntu0.6_amd64.deb +md5 = 47440d679d91118f52b692795d08bc33 +source = repo:trusty-updates/main/ + +[libglapi-mesa_10.1.3-0ubuntu0.6] +file = libglapi-mesa_10.1.3-0ubuntu0.6_amd64.deb +md5 = 036734591b144bca4a1bf0191aa2e837 +source = repo:trusty-updates/main/ + +[libgoogle-perftools4_2.1-2ubuntu1.1] +file = libgoogle-perftools4_2.1-2ubuntu1.1_amd64.deb +md5 = 675e726d2b1e39c2d2cb816b92c528f4 +source = repo:trusty-updates/main/ [libgssglue1_0.4-2ubuntu1] file = libgssglue1_0.4-2ubuntu1_amd64.deb md5 = 08250dff6de699fceff270123f609b49 +source = repo:trusty/main/ [libhttpcore-java_4.3.2-2] file = libhttpcore-java_4.3.2-2_all.deb md5 = 1af4e58d152e526215d3851f64477ed8 +source = repo:trusty/universe/ + +[libicu52_52.1-3ubuntu0.4] +file = libicu52_52.1-3ubuntu0.4_amd64.deb +md5 = ed4da162328dc75beb75e38ca291c959 +source = repo:trusty-updates/main/ [libjbig0_2.0-2ubuntu4.1] file = libjbig0_2.0-2ubuntu4.1_amd64.deb md5 = 8be949a9bb46ade19b29e72ff4329a0a +source = repo:trusty-updates/main/ [libjemalloc1_3.5.1-2] file = libjemalloc1_3.5.1-2_amd64.deb md5 = 00605dfc92f2fe7d961e543704cfb7c4 +source = repo:trusty/universe/ [libjline-java_1.0-2] file = libjline-java_1.0-2_all.deb md5 = f4a54be4875239c80f4411f9cc45c0fd +source = repo:trusty/main/ [libjna-java_3.2.7-4] file = libjna-java_3.2.7-4_amd64.deb md5 = 0afee0687c7e4798adfdb448fa13948f +source = repo:trusty/universe/ [libjpeg-turbo8_1.3.0-0ubuntu2] file = libjpeg-turbo8_1.3.0-0ubuntu2_amd64.deb md5 = 9b8b32831e8332714737af0342f57b28 +source = repo:trusty/main/ [libjpeg8_8c-2ubuntu8] file = libjpeg8_8c-2ubuntu8_amd64.deb md5 = e0f16286dd787b951ffa953987fdf6a7 +source = repo:trusty/main/ [libjs-jquery_1.7.2+dfsg-2ubuntu1] file = libjs-jquery_1.7.2+dfsg-2ubuntu1_all.deb md5 = 08cb6ee293e5570df48cbff3b1316cb5 +source = repo:trusty/main/ [libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1.1] file = libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1.1_all.deb md5 = e879f3796e2e62c43f79bdfab3ecdbbd +source = repo:trusty-updates/main/ [libjs-underscore_1.4.4-2ubuntu1] file = libjs-underscore_1.4.4-2ubuntu1_all.deb md5 = 305ad423ee8697a945c3610cf10a6bdf +source = repo:trusty/main/ [liblapack3_3.5.0-2ubuntu1] file = liblapack3_3.5.0-2ubuntu1_amd64.deb md5 = 8cd3e8d2924872557e686a295436c19f +source = repo:trusty/main/ -[liblcms2-2_2.5-0ubuntu4] -file = liblcms2-2_2.5-0ubuntu4_amd64.deb -md5 = 68d64d3ca6809ec5061408eb951547ab +[liblcms2-2_2.5-0ubuntu4.1] +file = liblcms2-2_2.5-0ubuntu4.1_amd64.deb +md5 = 90a2cbf106072d361749c2750eea55b2 +source = repo:trusty-updates/main/ [libllvm3.4_1:3.4-1ubuntu3] file = libllvm3.4_1%%3a3.4-1ubuntu3_amd64.deb md5 = ce34c38ebc9452526f3710ad79456b2f +source = repo:trusty/main/ [liblog4cplus-1.0-4_1.0.4-1ubuntu1] file = liblog4cplus-1.0-4_1.0.4-1ubuntu1_amd64.deb md5 = 9a93f6adb918003efcf59f410adeea07 +source = repo:trusty/universe/ [liblog4j1.2-java_1.2.17-4ubuntu3] file = liblog4j1.2-java_1.2.17-4ubuntu3_all.deb md5 = e42a1c68f176e5b4b12b850afae2ec8b +source = repo:trusty/main/ [libltdl7_2.4.2-1.7ubuntu1] file = libltdl7_2.4.2-1.7ubuntu1_amd64.deb md5 = ddeea7a0b4082abd4f746f46c8ccb48e +source = repo:trusty/main/ [liblttng-ust-ctl2_2.4.0-4ubuntu1] file = liblttng-ust-ctl2_2.4.0-4ubuntu1_amd64.deb md5 = a22fc453b378203afe465e11b22155f4 +source = repo:trusty/main/ [liblttng-ust0_2.4.0-4ubuntu1] file = liblttng-ust0_2.4.0-4ubuntu1_amd64.deb md5 = b9f3e554f5fbf0d6a3d62266574950e8 +source = repo:trusty/main/ [libmnl0_1.0.3-3ubuntu1] file = libmnl0_1.0.3-3ubuntu1_amd64.deb md5 = 2949d1dd95caec6257bc70095e1d37cc +source = repo:trusty/main/ + +[libmysqlclient18_5.5.50-0ubuntu0.14.04.1] +file = libmysqlclient18_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 443401d387c892efea4eabe988c2ac4a +source = repo:trusty-updates/main/ [libnetcf1_1:0.2.3-4ubuntu1] file = libnetcf1_1%%3a0.2.3-4ubuntu1_amd64.deb md5 = 8be8b7c76a08cdb30057e309b733b5b6 +source = repo:trusty/main/ [libnetfilter-conntrack3_1.0.4-1] file = libnetfilter-conntrack3_1.0.4-1_amd64.deb md5 = fa82697b8119c7a2cbc0c7d3d1f64dc8 +source = repo:trusty/main/ [libnetty-java_1:3.2.6.Final-2] file = libnetty-java_1%%3a3.2.6.Final-2_all.deb md5 = 8e6999001bcaf1c019d7083ff7d843f1 +source = repo:trusty/universe/ [libnfsidmap2_0.25-5] file = libnfsidmap2_0.25-5_amd64.deb md5 = 5e06543f26481fa549a1e017eec4ef36 - -[libnl-3-200_3.2.21-1] -file = libnl-3-200_3.2.21-1_amd64.deb -md5 = 7b2b06eee541993e9507046e0cd0a8c3 - -[libnl-genl-3-200_3.2.21-1] -file = libnl-genl-3-200_3.2.21-1_amd64.deb -md5 = ce91efe3ddf19b68e0ce796d87c4d96d - -[libnl-route-3-200_3.2.21-1] -file = libnl-route-3-200_3.2.21-1_amd64.deb -md5 = 61e174d65c7adbe5bc33d4ea850725f8 - -[libnspr4_2:4.10.7-0ubuntu0.14.04.1] -file = libnspr4_2%%3a4.10.7-0ubuntu0.14.04.1_amd64.deb -md5 = 11d1647e5b8b13194fa9d3cac67268c5 +source = repo:trusty/main/ + +[libnl-3-200_3.2.21-1ubuntu3] +file = libnl-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = e80a3f4c5b08821194c2cac3a00bfdf3 +source = repo:trusty-updates/main/ + +[libnl-genl-3-200_3.2.21-1ubuntu3] +file = libnl-genl-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = 9697116877182a3420e7c70099f81277 +source = repo:trusty-updates/main/ + +[libnl-route-3-200_3.2.21-1ubuntu3] +file = libnl-route-3-200_3.2.21-1ubuntu3_amd64.deb +md5 = 6beae5555b1dd067872dab32aa624154 +source = repo:trusty-updates/main/ + +[libnspr4_2:4.12-0ubuntu0.14.04.1] +file = libnspr4_2%%3a4.12-0ubuntu0.14.04.1_amd64.deb +md5 = cff22f4863f0e8356900e6b26872a63c +source = repo:trusty-updates/main/ + +[libnss3-nssdb_2:3.23-0ubuntu0.14.04.1] +file = libnss3-nssdb_2%%3a3.23-0ubuntu0.14.04.1_all.deb +md5 = 7b4064d8bb5f8ca3f0aec63699666564 +source = repo:trusty-updates/main/ + +[libnss3_2:3.23-0ubuntu0.14.04.1] +file = libnss3_2%%3a3.23-0ubuntu0.14.04.1_amd64.deb +md5 = 915f9fd9b0b0d18bbfe66f47774daec8 +source = repo:trusty-updates/main/ [libodbc1_2.2.14p2-5ubuntu5] file = libodbc1_2.2.14p2-5ubuntu5_amd64.deb md5 = 433e8b9f8a79a80052db69ed4f02fe53 +source = repo:trusty/main/ [libogg0_1.3.1-1ubuntu1] file = libogg0_1.3.1-1ubuntu1_amd64.deb md5 = a6411133fd6d72d08bbcb265a7f31103 +source = repo:trusty/main/ [libopts25_1:5.18-2ubuntu2] file = libopts25_1%%3a5.18-2ubuntu2_amd64.deb @@ -622,62 +802,92 @@ md5 = eb03b85c6c136ed1fe59f84507d1f40e [libpciaccess0_0.13.2-1] file = libpciaccess0_0.13.2-1_amd64.deb md5 = 79fc58d377c1501d3dab6bd75bc71911 +source = repo:trusty/main/ + +[libpcrecpp0_1:8.31-2ubuntu2.3] +file = libpcrecpp0_1%%3a8.31-2ubuntu2.3_amd64.deb +md5 = 35bf58488d95e43bdec1ca452f2117bc +source = repo:trusty-updates/main/ [libpcsclite1_1.8.10-1ubuntu1] file = libpcsclite1_1.8.10-1ubuntu1_amd64.deb md5 = adece73e911ca3dbdd3925294c75afee +source = repo:trusty/main/ -[libperl5.18_5.18.2-2ubuntu1] -file = libperl5.18_5.18.2-2ubuntu1_amd64.deb -md5 = fcee47bbff6a1f501cab58f1d276928a +[libperl5.18_5.18.2-2ubuntu1.1] +file = libperl5.18_5.18.2-2ubuntu1.1_amd64.deb +md5 = 1bbe27c70dbf9d4bce15d57cc317ca3f +source = repo:trusty-updates/main/ -[libpixman-1-0_0.30.2-2ubuntu1] -file = libpixman-1-0_0.30.2-2ubuntu1_amd64.deb -md5 = 60e24d4dc3f929420ae1d4a993a68da0 +[libpixman-1-0_0.30.2-2ubuntu1.1] +file = libpixman-1-0_0.30.2-2ubuntu1.1_amd64.deb +md5 = 2d12f5e47dad9b5f61299706413976da +source = repo:trusty-updates/main/ -[libpolkit-agent-1-0_0.105-4ubuntu2.14.04.1] -file = libpolkit-agent-1-0_0.105-4ubuntu2.14.04.1_amd64.deb -md5 = 0ff795e1cca78fd81db153d4e36ef8ca +[libpolkit-agent-1-0_0.105-4ubuntu3.14.04.1] +file = libpolkit-agent-1-0_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = ed544800dc75cef2ea3ecb112fb99b5a +source = repo:trusty-updates/main/ -[libpolkit-backend-1-0_0.105-4ubuntu2.14.04.1] -file = libpolkit-backend-1-0_0.105-4ubuntu2.14.04.1_amd64.deb -md5 = e7b59ca714bcf04076ec31a8f1bc3bcc +[libpolkit-backend-1-0_0.105-4ubuntu3.14.04.1] +file = libpolkit-backend-1-0_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = 5a8538404755408b5733ce1715e1ab9f +source = repo:trusty-updates/main/ [libprotobuf8_2.5.0-9ubuntu1] file = libprotobuf8_2.5.0-9ubuntu1_amd64.deb md5 = e0ef0861f40071ed6f6606ac3b7c3742 +source = repo:trusty/main/ [libpulse0_1:4.0-0ubuntu11.1] file = libpulse0_1%%3a4.0-0ubuntu11.1_amd64.deb md5 = 84213503252a6aec962b12cd170af23f +source = repo:trusty-updates/main/ -[librabbitmq0_0.0.1.hg216-1] -file = librabbitmq0_0.0.1.hg216-1_amd64.deb -md5 = 942635f76ab6cf1e27c6622201690bed +[libpython2.7_2.7.6-8ubuntu0.2] +file = libpython2.7_2.7.6-8ubuntu0.2_amd64.deb +md5 = e52bac5d993bf5c8c60ef92b9e392603 +source = repo:trusty-updates/main/ + +[libpython2.7-minimal_2.7.6-8ubuntu0.2] +file = libpython2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb +md5 = 48d76dcd9239d2970d3866d6082a48c6 +source = repo:trusty-updates/main/ + +[libpython2.7-stdlib_2.7.6-8ubuntu0.2] +file = libpython2.7-stdlib_2.7.6-8ubuntu0.2_amd64.deb +md5 = accc8dfb0ff3e0440e66f4c4c9589854 +source = repo:trusty-updates/main/ [librabbitmq1_0.4.1-1] file = librabbitmq1_0.4.1-1_amd64.deb md5 = 59f733e1342ff743039cec1d6305fc2c +source = repo:trusty/main/ -[librados2_0.87.2-1] -file = librados2_0.87.2-1_amd64.deb -md5 = 64edb9970d7dd94e5b14fbd05c5f1cfb +[librados2_0.80.11-0ubuntu1.14.04.1] +file = librados2_0.80.11-0ubuntu1.14.04.1_amd64.deb +md5 = 88d1b2079b7bd1a9a2d99e05fc88bf02 +source = repo:trusty-updates/main/ -[librbd1_0.87.2-1] -file = librbd1_0.87.2-1_amd64.deb -md5 = af3cd4feb3b8dc6ed5d54d00eca93762 +[librbd1_0.80.11-0ubuntu1.14.04.1] +file = librbd1_0.80.11-0ubuntu1.14.04.1_amd64.deb +md5 = 684055975b3f6d7f9cbf42afc720989d +source = repo:trusty-updates/main/ [libsctp1_1.0.15+dfsg-1] file = libsctp1_1.0.15+dfsg-1_amd64.deb md5 = 6bc0748fae5badaa0fa7e7b22345b9c7 +source = repo:trusty/main/ [libsdl1.2debian_1.2.15-8ubuntu1.1] file = libsdl1.2debian_1.2.15-8ubuntu1.1_amd64.deb md5 = 063b125221dda816ec3554eea53ce52e +source = repo:trusty-updates/main/ [libseccomp2_2.1.0+dfsg-1] file = libseccomp2_2.1.0+dfsg-1_amd64.deb md5 = 235f6d21bb05f15d6b0c1e06b3a93e1d +source = repo:trusty/main/ [libsensors4_1:3.3.4-2ubuntu1] file = libsensors4_1%%3a3.3.4-2ubuntu1_amd64.deb @@ -686,690 +896,1017 @@ md5 = 042d478dd8c2f8d47fe197b2bbf2e8a1 [libservlet2.5-java_6.0.39-1] file = libservlet2.5-java_6.0.39-1_all.deb md5 = 1487fcc2361e1ff68528e9a79c3bdb2c +source = repo:trusty/universe/ [libsigsegv2_2.10-2] file = libsigsegv2_2.10-2_amd64.deb md5 = 02a1d6194bd62571a9dcbcad5071d8d9 +source = repo:trusty/main/ [libslf4j-java_1.7.5-2] file = libslf4j-java_1.7.5-2_all.deb md5 = 3666d5d622c51ad306c47c1505fe0b75 +source = repo:trusty/universe/ [libsnappy1_1.1.0-1ubuntu1] file = libsnappy1_1.1.0-1ubuntu1_amd64.deb md5 = 6e75ed3aa224013957954c6671bead67 +source = repo:trusty/main/ -[libsndfile1_1.0.25-7ubuntu2] -file = libsndfile1_1.0.25-7ubuntu2_amd64.deb -md5 = 7d1069fef8f95bc27c2f12f0d8eb4b08 +[libsndfile1_1.0.25-7ubuntu2.1] +file = libsndfile1_1.0.25-7ubuntu2.1_amd64.deb +md5 = a01199628faa5c1ec2b97c167c25c0e9 +source = repo:trusty-updates/main/ -[libspice-server1_0.12.4-0nocelt2] -file = libspice-server1_0.12.4-0nocelt2_amd64.deb -md5 = c926826585305a9d2fa9defd4cfe5410 +[libsnmp-base_5.7.2~dfsg-8.1ubuntu3.2] +file = libsnmp-base_5.7.2~dfsg-8.1ubuntu3.2_all.deb +md5 = 895d89dabe4d3cd8ad7fc7b7c730e627 +source = repo:trusty-updates/main/ + +[libsnmp30_5.7.2~dfsg-8.1ubuntu3.2] +file = libsnmp30_5.7.2~dfsg-8.1ubuntu3.2_amd64.deb +md5 = 57dc2070a946c4e33cf8fcfe251f9868 +source = repo:trusty-updates/main/ + +[libspice-server1_0.12.4-0nocelt2ubuntu1.3] +file = libspice-server1_0.12.4-0nocelt2ubuntu1.3_amd64.deb +md5 = 60095317b5d23d0b3c39e39969f4bf44 +source = repo:trusty-updates/main/ + +[libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1] +file = libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1_amd64.deb +md5 = 67303b5e19bf90c0538564669685483e +source = repo:trusty-updates/universe/ + +[libssl1.0.0_1.0.1f-1ubuntu2.19] +file = libssl1.0.0_1.0.1f-1ubuntu2.19_amd64.deb +md5 = 04f6ffaf9b5108c14a688b05ea996689 +source = repo:trusty-updates/main/ [libt1-5_5.1.2-3.6ubuntu1] file = libt1-5_5.1.2-3.6ubuntu1_amd64.deb md5 = 9008d07107340862975b565155479341 +source = repo:trusty/main/ [libtbb2_4.2~20130725-1.1ubuntu1] file = libtbb2_4.2~20130725-1.1ubuntu1_amd64.deb md5 = 5113cda4c289295e7ed4b83dfa0b91d1 +source = repo:trusty/universe/ -[libtcmalloc-minimal4_2.1-2ubuntu1] -file = libtcmalloc-minimal4_2.1-2ubuntu1_amd64.deb -md5 = 8884f09ce6af46fe1620383a7e66d146 +[libtcmalloc-minimal4_2.1-2ubuntu1.1] +file = libtcmalloc-minimal4_2.1-2ubuntu1.1_amd64.deb +md5 = 962e0b3302ffebb3cc3fb34e80c1a143 +source = repo:trusty-updates/main/ [libterm-readkey-perl_2.31-1] file = libterm-readkey-perl_2.31-1_amd64.deb md5 = c68d9e65673823e4d60d0029cc26ea89 +source = repo:trusty/main/ -[libtiff5_4.0.3-7ubuntu0.3] -file = libtiff5_4.0.3-7ubuntu0.3_amd64.deb -md5 = 7a5958d7bea247a996fcf74c4282c309 +[libtiff5_4.0.3-7ubuntu0.4] +file = libtiff5_4.0.3-7ubuntu0.4_amd64.deb +md5 = 1c9177bf7f922d87d4af3a54b4a107b7 +source = repo:trusty-updates/main/ [libtirpc1_0.2.2-5ubuntu2] file = libtirpc1_0.2.2-5ubuntu2_amd64.deb md5 = acc1c8e0345c8c3e53ba94a59a4729d8 +source = repo:trusty/main/ [libtxc-dxtn-s2tc0_0~git20131104-1.1] file = libtxc-dxtn-s2tc0_0~git20131104-1.1_amd64.deb md5 = 4aca9162717cd9eb1e42f531217801f9 +source = repo:trusty/main/ [libunwind8_1.1-2.2ubuntu3] file = libunwind8_1.1-2.2ubuntu3_amd64.deb md5 = d568b4e19959271d3f8470ff28c223f1 +source = repo:trusty/main/ [liburcu1_0.7.12-0ubuntu2] file = liburcu1_0.7.12-0ubuntu2_amd64.deb md5 = 1172db772c3640310d85518f92ce5aa6 +source = repo:trusty/main/ -[libusbredirparser1_0.6-2ubuntu1] -file = libusbredirparser1_0.6-2ubuntu1_amd64.deb -md5 = 6ac0ae466c649cb8b7021a26c76188cd - -[libuv_1.7.5-1] -file = libuv_1.7.5-1_amd64.deb -md5 = 76474f34e94ce80dca66f39eb2ae638b +[libusbredirparser1_0.6-2ubuntu1.1] +file = libusbredirparser1_0.6-2ubuntu1.1_amd64.deb +md5 = 60574ac64168133bd8a974d58b7e9c5e +source = repo:trusty-updates/main/ [libv8-3.14.5_3.14.5.8-5ubuntu2] file = libv8-3.14.5_3.14.5.8-5ubuntu2_amd64.deb md5 = 3937ddaf045f8c5606b6c505bf0779f8 +source = repo:trusty/universe/ -[libvirt-bin_1.2.2-0ubuntu13.1.10] -file = libvirt-bin_1.2.2-0ubuntu13.1.10_amd64.deb -md5 = ca0dd7fa64083dd21bf9d921c2da734b +[libvirt-bin_1.2.2-0ubuntu13.1.17] +file = libvirt-bin_1.2.2-0ubuntu13.1.17_amd64.deb +md5 = cb73f7c55492723163d9a9461c915c96 +source = repo:trusty-updates/main/ -[libvirt0_1.2.2-0ubuntu13.1.10] -file = libvirt0_1.2.2-0ubuntu13.1.10_amd64.deb -md5 = 86b3fae7564e0ed434ecb44baa62d2ae +[libvirt0_1.2.2-0ubuntu13.1.17] +file = libvirt0_1.2.2-0ubuntu13.1.17_amd64.deb +md5 = c9ced599b427a4d6e51d58b08ded2095 +source = repo:trusty-updates/main/ [libvorbis0a_1.3.2-1.3ubuntu1] file = libvorbis0a_1.3.2-1.3ubuntu1_amd64.deb md5 = e89e05f389fdaa1b834803a08c9213a4 +source = repo:trusty/main/ [libvorbisenc2_1.3.2-1.3ubuntu1] file = libvorbisenc2_1.3.2-1.3ubuntu1_amd64.deb md5 = fbdffecfc0a3f0dc45ec2480f54ea251 +source = repo:trusty/main/ [libvpx1_1.3.0-2] file = libvpx1_1.3.0-2_amd64.deb md5 = a163fb61078a4a67b1d705bd1ea9093b +source = repo:trusty/main/ [libx11-xcb1_2:1.6.2-1ubuntu2] file = libx11-xcb1_2%%3a1.6.2-1ubuntu2_amd64.deb md5 = 883e22f0ff03018c9fad15b5c10a2fca +source = repo:trusty/main/ [libx86-1_1.1+ds1-10] file = libx86-1_1.1+ds1-10_amd64.deb md5 = d166a4d98f6ce17e6f17787bfc8a6ef5 +source = repo:trusty/main/ [libxcb-dri2-0_1.10-2ubuntu1] file = libxcb-dri2-0_1.10-2ubuntu1_amd64.deb md5 = 90169585d4c43e4a4da49ce3f2568384 +source = repo:trusty/main/ [libxcb-dri3-0_1.10-2ubuntu1] file = libxcb-dri3-0_1.10-2ubuntu1_amd64.deb md5 = 310d42718a6d50f1be400e1fa774d86a +source = repo:trusty/main/ [libxcb-glx0_1.10-2ubuntu1] file = libxcb-glx0_1.10-2ubuntu1_amd64.deb md5 = 632239048a95f7c2edd3225de98ed801 +source = repo:trusty/main/ [libxcb-present0_1.10-2ubuntu1] file = libxcb-present0_1.10-2ubuntu1_amd64.deb md5 = e17e52f8953a544d1f0a56a156e6c7f5 +source = repo:trusty/main/ [libxcb-sync1_1.10-2ubuntu1] file = libxcb-sync1_1.10-2ubuntu1_amd64.deb md5 = 6cdc1b75cfb4797da9d19add8646a70e +source = repo:trusty/main/ [libxdamage1_1:1.1.4-1ubuntu1] file = libxdamage1_1%%3a1.1.4-1ubuntu1_amd64.deb md5 = c1e6ea0fc620fc3ce50ebbfee62e3f0c +source = repo:trusty/main/ + +[libxen-4.4_4.4.2-0ubuntu0.14.04.6] +file = libxen-4.4_4.4.2-0ubuntu0.14.04.6_amd64.deb +md5 = 01902042887b57bb12591a64a45c9bd7 +source = repo:trusty-updates/main/ + +[libxenstore3.0_4.4.2-0ubuntu0.14.04.6] +file = libxenstore3.0_4.4.2-0ubuntu0.14.04.6_amd64.deb +md5 = 2dd53c140e4d4c58d57f25c82c3cc57a +source = repo:trusty-updates/main/ [libxerces2-java_2.11.0-7] file = libxerces2-java_2.11.0-7_all.deb md5 = fa8bcb033daef7c85f4636435ea2747b +source = repo:trusty/main/ [libxfixes3_1:5.0.1-1ubuntu1.1] file = libxfixes3_1%%3a5.0.1-1ubuntu1.1_amd64.deb md5 = 9fda7ada36fbbe966cf30f474a6a4a40 +source = repo:trusty-updates/main/ [libxml-commons-external-java_1.4.01-2build1] file = libxml-commons-external-java_1.4.01-2build1_all.deb md5 = a3ba72113c451b98099d582afa64112c +source = repo:trusty/main/ [libxml-commons-resolver1.1-java_1.2-7build1] file = libxml-commons-resolver1.1-java_1.2-7build1_all.deb md5 = b90c2054a7e0fed8ee79b582952b310b +source = repo:trusty/main/ -[libxml2-utils_2.9.1+dfsg1-3ubuntu4.4] -file = libxml2-utils_2.9.1+dfsg1-3ubuntu4.4_amd64.deb -md5 = 31b3dcb6d76c16b20d6527890c2f452a +[libxml2-utils_2.9.1+dfsg1-3ubuntu4.8] +file = libxml2-utils_2.9.1+dfsg1-3ubuntu4.8_amd64.deb +md5 = dda408befcc3b92a0bab8916eb799f23 +source = repo:trusty-updates/main/ [libxpm4_1:3.5.10-1] file = libxpm4_1%%3a3.5.10-1_amd64.deb md5 = 4985dad7e98401b47c79b377333ae1c7 +source = repo:trusty/main/ [libxshmfence1_1.1-2] file = libxshmfence1_1.1-2_amd64.deb md5 = 921fc248a972eb54e063759eaec9fe83 +source = repo:trusty/main/ [libxslt1.1_1.1.28-2build1] file = libxslt1.1_1.1.28-2build1_amd64.deb md5 = 8193d46e498f445991c78e9da9b238a6 +source = repo:trusty/main/ [libxxf86vm1_1:1.1.3-1] file = libxxf86vm1_1%%3a1.1.3-1_amd64.deb md5 = b61960ea6bd4f73ff903f63235b35c25 +source = repo:trusty/main/ [libyajl2_2.0.4-4] file = libyajl2_2.0.4-4_amd64.deb md5 = d7241d878ea65cbed080196411ec92c2 +source = repo:trusty/main/ [libzookeeper-java-doc_3.4.5+dfsg-1] file = libzookeeper-java-doc_3.4.5+dfsg-1_all.deb md5 = 0e425299487e2e2edf4d2adc491c20fa +source = repo:trusty/universe/ [libzookeeper-java_3.4.5+dfsg-1] file = libzookeeper-java_3.4.5+dfsg-1_all.deb md5 = 2d2793872aa6faf93cce49dd85600b95 +source = repo:trusty/universe/ + +[libzookeeper-mt2_3.4.5+dfsg-1] +file = libzookeeper-mt2_3.4.5+dfsg-1_amd64.deb +md5 = 45430fcb0a6ef134390339c3d577e700 +source = repo:trusty/universe/ + +[linux-crashdump_3.13.0.95.103] +file = linux-crashdump_3.13.0.95.103_amd64.deb +md5 = 3fbffb3b99a206543bd57e41cc3750d4 +source = repo:trusty-updates/main/ [linux-headers-3.13.0-40-generic_3.13.0-40.69] file = linux-headers-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = 5746e3f726d3828c48de16e4b37c7b75 +source = repo:trusty-updates/main/ [linux-headers-3.13.0-40_3.13.0-40.69] file = linux-headers-3.13.0-40_3.13.0-40.69_all.deb md5 = 2a60945600c4429f426dd7cadc6c73df +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-83-generic_3.13.0-83.127] +file = linux-headers-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 5df332a60e776a0d0e79e54bdb291707 +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-83_3.13.0-83.127] +file = linux-headers-3.13.0-83_3.13.0-83.127_all.deb +md5 = 50bf914d576b43b2e28c1862c3638c82 +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-85-generic_3.13.0-85.129] +file = linux-headers-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = ea4e36e8e787115b19bddb3c74bac3cb +source = repo:trusty-updates/main/ + +[linux-headers-3.13.0-85_3.13.0-85.129] +file = linux-headers-3.13.0-85_3.13.0-85.129_all.deb +md5 = 8153507a22c943d64055df2a8490dc7d +source = repo:trusty-updates/main/ [linux-image-3.13.0-40-generic_3.13.0-40.69] file = linux-image-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = a6ba0601c1f8662cad6604dfd9d070b0 +source = repo:trusty-updates/main/ + +[linux-image-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 1488cbc687bebc497f2112f93131a727 +source = repo:trusty-updates/main/ + +[linux-image-3.13.0-85-generic_3.13.0-85.129] +file = linux-image-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = fc7234f99aff2a0f0dfb1c3b1a44dacf +source = repo:trusty-updates/main/ [linux-image-extra-3.13.0-40-generic_3.13.0-40.69] file = linux-image-extra-3.13.0-40-generic_3.13.0-40.69_amd64.deb md5 = 3b38dc787fcf8b8a1ccd89e60077df58 +source = repo:trusty-updates/main/ + +[linux-image-extra-3.13.0-83-generic_3.13.0-83.127] +file = linux-image-extra-3.13.0-83-generic_3.13.0-83.127_amd64.deb +md5 = 4832e8b6a6654b8d20ae53f279ff878d +source = repo:trusty-updates/main/ + +[linux-image-extra-3.13.0-85-generic_3.13.0-85.129] +file = linux-image-extra-3.13.0-85-generic_3.13.0-85.129_amd64.deb +md5 = 5e660aae162edc373ecdb8668ab3d0b8 +source = repo:trusty-updates/main/ [lksctp-tools_1.0.15+dfsg-1] file = lksctp-tools_1.0.15+dfsg-1_amd64.deb md5 = 39373482904f27eddebcef56b9bcf13f +source = repo:trusty/main/ -[lxc-docker-1.5.0_1.5.0] -file = lxc-docker-1.5.0_1.5.0_amd64.deb -md5 = e29b0a03e0d7eb54bdbbc322e26cad73 - -[lxc-docker_1.5.0] -file = lxc-docker_1.5.0_amd64.deb -md5 = 923cad1a2af2d6b0a3e8fa909ba26ca4 - -[makedumpfile_1.5.5-2ubuntu1.1] -file = makedumpfile_1.5.5-2ubuntu1.1_amd64.deb -md5 = 0df4b7f00b2c70bb74b0140ad1091c9f +[makedumpfile_1.5.5-2ubuntu1.5] +file = makedumpfile_1.5.5-2ubuntu1.5_amd64.deb +md5 = 1d85845e5c616fa9119db30276e1316c +source = repo:trusty-updates/main/ [memcached_1.4.14-0ubuntu9] file = memcached_1.4.14-0ubuntu9_amd64.deb md5 = 29893483844957ac4c33097d0c0108a6 +source = repo:trusty/main/ [mongodb-clients_1:2.4.9-1ubuntu2] file = mongodb-clients_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = dfabd631c87d7001cfefba7087a38458 +source = repo:trusty/universe/ [mongodb-dev_1:2.4.9-1ubuntu2] file = mongodb-dev_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = 583139498d262d85ba7822479a3d549b +source = repo:trusty/universe/ [mongodb-server_1:2.4.9-1ubuntu2] file = mongodb-server_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = ae7913b7d32766b9743d22a957f44c45 +source = repo:trusty/universe/ [mongodb_1:2.4.9-1ubuntu2] file = mongodb_1%%3a2.4.9-1ubuntu2_amd64.deb md5 = b8121909d295d51a26b53b082f71eb73 +source = repo:trusty/universe/ [msr-tools_1.3-2] file = msr-tools_1.3-2_amd64.deb md5 = 5ffb50c3889cfccc901b940923d89e29 - -[mysql-server-wsrep_5.5.37-25.10] -file = mysql-server-wsrep_5.5.37-25.10_amd64.deb -md5 = ac8664b3bd2ea15149e2d5af6abac90f - -[neutron-common_1:2014.1.4-0ubuntu2] -file = neutron-common_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 393686d1ab49fadf4dc543ecfbff3c25 - -[neutron-plugin-ml2_1:2014.1.4-0ubuntu2] -file = neutron-plugin-ml2_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = d7c00f1ded853f09cd3f3a8a0d91aefd - -[neutron-server_1:2014.1.4-0ubuntu2] -file = neutron-server_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 1bc47e426112ec8d20245632950bd281 - -[nfs-common_1:1.2.8-6ubuntu1.1] -file = nfs-common_1%%3a1.2.8-6ubuntu1.1_amd64.deb -md5 = 03e957982776076bf1f10be5e75ebdbc - -[nfs-kernel-server_1:1.2.8-6ubuntu1.1] -file = nfs-kernel-server_1%%3a1.2.8-6ubuntu1.1_amd64.deb -md5 = 6cb2eed8af1914752eaf4f3799c4c779 +source = repo:trusty/main/ + +[mysql-client-5.5_5.5.50-0ubuntu0.14.04.1] +file = mysql-client-5.5_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 5f96432b31424f80d0a43a493314c19f +source = repo:trusty-updates/main/ + +[mysql-client-core-5.5_5.5.50-0ubuntu0.14.04.1] +file = mysql-client-core-5.5_5.5.50-0ubuntu0.14.04.1_amd64.deb +md5 = 8f00681717e73d23a0d4d54bf13a09d5 +source = repo:trusty-updates/main/ + +[mysql-client_5.5.50-0ubuntu0.14.04.1] +file = mysql-client_5.5.50-0ubuntu0.14.04.1_all.deb +md5 = 2db4b6fd9ac00660ca5f1bc1e4ae9d85 +source = repo:trusty-updates/main/ + +[mysql-common_5.5.50-0ubuntu0.14.04.1] +file = mysql-common_5.5.50-0ubuntu0.14.04.1_all.deb +md5 = e2de1adae6567e6c40c7171cdc6b48e5 +source = repo:trusty-updates/main/ + +[neutron-common_1:2014.1.5-0ubuntu5] +file = neutron-common_1%%3a2014.1.5-0ubuntu5_all.deb +md5 = ec4c298e21450884854ac83f0890fcba +source = repo:trusty-updates/main/ + +[neutron-plugin-ml2_1:2014.1.5-0ubuntu5] +file = neutron-plugin-ml2_1%%3a2014.1.5-0ubuntu5_all.deb +md5 = da5845f3336fb64d3faa37e40a9ebae1 +source = repo:trusty-updates/main/ + +[neutron-server_1:2014.1.5-0ubuntu5] +file = neutron-server_1%%3a2014.1.5-0ubuntu5_all.deb +md5 = ce5324f6d560431ce2cc5d05c920baa8 +source = repo:trusty-updates/main/ + +[nfs-common_1:1.2.8-6ubuntu1.2] +file = nfs-common_1%%3a1.2.8-6ubuntu1.2_amd64.deb +md5 = 64d83aabb28de942a6e367181ed580ca +source = repo:trusty-updates/main/ + +[nfs-kernel-server_1:1.2.8-6ubuntu1.2] +file = nfs-kernel-server_1%%3a1.2.8-6ubuntu1.2_amd64.deb +md5 = 84e9549cb2263fe0433bbc862fb4efc7 +source = repo:trusty-updates/main/ [ntp_1:4.2.6.p5+dfsg-3ubuntu2.14.04.3] file = ntp_4.2.6.p5+dfsg-3ubuntu2.14.04.3_amd64.deb md5 = 7cb406808ea87b29e01bbc813275853e +source = repo:trusty-updates/main/ [open-iscsi_2.0.873-3ubuntu9] file = open-iscsi_2.0.873-3ubuntu9_amd64.deb md5 = baa821890ea97d60e291c87d2dc439ae +source = repo:trusty/main/ + +[openjdk-6-jre-headless_6b39-1.13.11-0ubuntu0.14.04.1] +file = openjdk-6-jre-headless_6b39-1.13.11-0ubuntu0.14.04.1_amd64.deb +md5 = f6fa782f7dbad7b17be2b32ce0b31107 +source = repo:trusty-updates/universe/ + +[openjdk-6-jre-lib_6b39-1.13.11-0ubuntu0.14.04.1] +file = openjdk-6-jre-lib_6b39-1.13.11-0ubuntu0.14.04.1_all.deb +md5 = 24d157cc33ec7d3ef355a5c54768377a +source = repo:trusty-updates/universe/ + +[openjdk-7-jre-headless_7u111-2.6.7-0ubuntu0.14.04.3] +file = openjdk-7-jre-headless_7u111-2.6.7-0ubuntu0.14.04.3_amd64.deb +md5 = e7434bc689222bf72d080c65a40ef6f2 +source = repo:trusty-updates/main/ [percona-xtrabackup_2.1.8-1] file = percona-xtrabackup_2.1.8-1_amd64.deb md5 = 01758f32efe8426a44695f25f4a4117a +source = repo:trusty/universe/ + +[perl-base_5.18.2-2ubuntu1.1] +file = perl-base_5.18.2-2ubuntu1.1_amd64.deb +md5 = d032a8ff7c2609d93af93e02aa7cf5ba +source = repo:trusty-updates/main/ + +[perl-modules_5.18.2-2ubuntu1.1] +file = perl-modules_5.18.2-2ubuntu1.1_all.deb +md5 = 75bfbc6a0725be5533d5920d031bb121 +source = repo:trusty-updates/main/ + +[perl_5.18.2-2ubuntu1.1] +file = perl_5.18.2-2ubuntu1.1_amd64.deb +md5 = c923b93fb9aa7f1ff97fcea2539bd8b9 +source = repo:trusty-updates/main/ + +[php5-cli_5.5.9+dfsg-1ubuntu4.19] +file = php5-cli_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = f7cfa14e9c0ea097d23d9638647a223d +source = repo:trusty-updates/main/ + +[php5-common_5.5.9+dfsg-1ubuntu4.19] +file = php5-common_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 3f18d7b759d9e2f7a7cb9d98b58caf2d +source = repo:trusty-updates/main/ + +[php5-gd_5.5.9+dfsg-1ubuntu4.19] +file = php5-gd_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 57b5a59d6aaefe19a7a286de230c58a1 +source = repo:trusty-updates/main/ + +[php5-json_1.3.2-2build1] +file = php5-json_1.3.2-2build1_amd64.deb +md5 = 9d2445c670f4148ce72a0edb73f4ede0 +source = repo:trusty/main/ + +[php5-mysql_5.5.9+dfsg-1ubuntu4.19] +file = php5-mysql_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = ca5a49303bf3f422159947aeaf4bcff9 +source = repo:trusty-updates/main/ + +[php5-readline_5.5.9+dfsg-1ubuntu4.19] +file = php5-readline_5.5.9+dfsg-1ubuntu4.19_amd64.deb +md5 = 9819ddabc784adcf6b1bc03c02bc3006 +source = repo:trusty-updates/main/ + +[pm-utils_1.4.1-13ubuntu0.2] +file = pm-utils_1.4.1-13ubuntu0.2_all.deb +md5 = 03a8612ffee21b5bf66e8251c0584414 +source = repo:trusty-updates/main/ + +[policykit-1_0.105-4ubuntu3.14.04.1] +file = policykit-1_0.105-4ubuntu3.14.04.1_amd64.deb +md5 = 5ab9c109043f9f50851441ab6b0babf3 +source = repo:trusty-updates/main/ -[pm-utils_1.4.1-13ubuntu0.1] -file = pm-utils_1.4.1-13ubuntu0.1_all.deb -md5 = f8948fc2d2a7016841047f689b311863 +[python2.7-minimal_2.7.6-8ubuntu0.2] +file = python2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb +md5 = cb8b7f9637e05f64482f6657ef4df02f +source = repo:trusty-updates/main/ -[policykit-1_0.105-4ubuntu2.14.04.1] -file = policykit-1_0.105-4ubuntu2.14.04.1_amd64.deb -md5 = 5f6da9330f707d5204f4cce6ca8bc3b6 +[python2.7_2.7.6-8ubuntu0.2] +file = python2.7_2.7.6-8ubuntu0.2_amd64.deb +md5 = fb63cafe276fd18b231ae3d1d695157e +source = repo:trusty-updates/main/ -[python-amqp_1.3.3-1ubuntu1] -file = python-amqp_1.3.3-1ubuntu1_all.deb -md5 = ed5b257f56c4c06b2cfb1681c46162fd +[python-amqp_1.3.3-1ubuntu1.1] +file = python-amqp_1.3.3-1ubuntu1.1_all.deb +md5 = 20c04a42ed830e74ffef1a05db412565 +source = repo:trusty-updates/main/ [python-amqplib_1.0.2-1] file = python-amqplib_1.0.2-1_all.deb md5 = c5fbd5a52f7b755bc35866748d34a327 +source = repo:trusty/main/ [python-anyjson_0.3.3-1build1] file = python-anyjson_0.3.3-1build1_all.deb md5 = 12fd230b8619d75b80d63b154b2b94d0 +source = repo:trusty/main/ [python-appconf_0.5-2build1] file = python-appconf_0.5-2build1_all.deb md5 = 8733edb63cd4c860b360735aa5677f2b +source = repo:trusty/main/ [python-babel-localedata_1.3+dfsg.1-2ubuntu2] file = python-babel-localedata_1.3+dfsg.1-2ubuntu2_all.deb md5 = 04b563190593c2cfbb03c684db356bcf +source = repo:trusty-updates/main/ [python-babel_1.3+dfsg.1-2ubuntu2] file = python-babel_1.3+dfsg.1-2ubuntu2_all.deb md5 = af3cd914d55062d4e165dc7b1e536507 +source = repo:trusty-updates/main/ [python-bitarray_0.8.0-2build4] file = python-bitarray_0.8.0-2build4_amd64.deb md5 = 2100ae3ef8c9fe06b40bab8a9c5cf1f5 +source = repo:trusty/universe/ [python-blinker_1.3.dfsg1-1ubuntu2] file = python-blinker_1.3.dfsg1-1ubuntu2_all.deb md5 = 1084d75f917fed1cd00fe11edd5695e6 +source = repo:trusty/main/ -[python-boto_1:2.12.0] -file = python-boto_2.12.0_amd64.deb -md5 = a2d26bd052eb9a37ad703adcf5b6d417 +[python-boto_2.20.1-2ubuntu2] +file = python-boto_2.20.1-2ubuntu2_all.deb +md5 = dea56cd0b6d15986d8d950c12a711cb7 +source = repo:trusty/main/ [python-bottle_0.12.0-1] file = python-bottle_0.12.0-1_all.deb md5 = 1a4e42bfa1b06f6ec20c39f5b493f3d6 +source = repo:trusty/universe/ [python-bs4_4.2.1-1ubuntu2] file = python-bs4_4.2.1-1ubuntu2_all.deb md5 = 88cdf603cfadcea1434107d4ffe454bd +source = repo:trusty/main/ [python-bson-ext_2.6.3-1build1] file = python-bson-ext_2.6.3-1build1_amd64.deb md5 = 9e482b83b8a324c98553a4b9ca4fd4f1 +source = repo:trusty/main/ [python-bson_2.6.3-1build1] file = python-bson_2.6.3-1build1_amd64.deb md5 = 8c6b1fd703e40aac4f4c08a12f0fc2c6 +source = repo:trusty/main/ [python-cliff-doc_1.4.5-1ubuntu2] file = python-cliff-doc_1.4.5-1ubuntu2_all.deb md5 = 2db34045cf9a8edf0eec7dc00197ebdd +source = repo:trusty/main/ [python-cliff_1.4.5-1ubuntu2] file = python-cliff_1.4.5-1ubuntu2_all.deb md5 = 77efcbc29f0887ee643ffff5aae1e7ca +source = repo:trusty/main/ [python-cloudfiles_1.7.11-2build1] file = python-cloudfiles_1.7.11-2build1_all.deb md5 = 28af17a762e395d355a37c31de614bc5 +source = repo:trusty/main/ [python-cmd2_0.6.7-2fakesync1build1] file = python-cmd2_0.6.7-2fakesync1build1_all.deb md5 = 9b2fea5232b418bee0ae8144aee42e6b +source = repo:trusty/main/ [python-compressor_1.3-1ubuntu3] file = python-compressor_1.3-1ubuntu3_all.deb md5 = 20f4b4477a68e5e6c78598a2338cf2c1 +source = repo:trusty/main/ [python-concurrent.futures_2.1.6-3] file = python-concurrent.futures_2.1.6-3_all.deb md5 = be8dfea9cff116aafc7c25491d304ead +source = repo:trusty/main/ [python-croniter_0.3.4-0ubuntu1] file = python-croniter_0.3.4-0ubuntu1_all.deb md5 = cad5235306fd0714cc630eef59836bba +source = repo:trusty/main/ [python-dateutil_1.5+dfsg-1ubuntu1] file = python-dateutil_1.5+dfsg-1ubuntu1_all.deb md5 = c2660e35f490a79c779f952cb2089339 +source = repo:trusty/main/ [python-decorator_3.4.0-2build1] file = python-decorator_3.4.0-2build1_all.deb md5 = 14b3d2529bbf2ba7ea46553586ce24ed +source = repo:trusty/main/ + +[python-django_1.6.1-2ubuntu0.14] +file = python-django_1.6.1-2ubuntu0.14_all.deb +md5 = 190ba06a033b7ddc582d154a178f8114 +source = repo:trusty-updates/main/ [python-dns_2.3.6-3] file = python-dns_2.3.6-3_all.deb md5 = 34c7f050754596bd1bf406934623f6ff - -[python-docker-py_0.6.1-dev] -file = python-docker-py_0.6.1-dev_all.deb -md5 = ff9daafe11d7f904032f5c830f67941a +source = repo:trusty/main/ [python-dogpile.cache_0.5.1-0ubuntu2] file = python-dogpile.cache_0.5.1-0ubuntu2_all.deb md5 = 785a7e6c8bf1ba2e36eb1eae179b4c61 +source = repo:trusty/main/ [python-dogpile.core_0.4.1-0ubuntu3] file = python-dogpile.core_0.4.1-0ubuntu3_all.deb md5 = a6f53b4683fc2963e3320ac6145d8892 +source = repo:trusty/main/ -[python-eventlet_0.13.0-1ubuntu2] -file = python-eventlet_0.13.0-1ubuntu2_all.deb -md5 = 953e55d17b12dbaf560b77811e255b82 +[python-eventlet_0.13.0-1ubuntu2.3] +file = python-eventlet_0.13.0-1ubuntu2.3_all.deb +md5 = c507c1468f877ddf9ce21452c9aa81c8 +source = repo:trusty-updates/main/ [python-extras_0.0.3-2ubuntu1] file = python-extras_0.0.3-2ubuntu1_all.deb md5 = a0f3242f6ef4e8143fa584e0aa887efe +source = repo:trusty/main/ [python-fixtures_0.3.14-1ubuntu2] file = python-fixtures_0.3.14-1ubuntu2_all.deb md5 = 929f7eb4b764dbc2f6657a4044c1b92c +source = repo:trusty/main/ [python-flask_0.10.1-2build1] file = python-flask_0.10.1-2build1_all.deb md5 = ddee0a62d486a6cc2f86028f08369505 +source = repo:trusty/main/ [python-formencode_1.2.6-1ubuntu1] file = python-formencode_1.2.6-1ubuntu1_all.deb md5 = d33916fa01b79f40d3f7956cb0b84875 +source = repo:trusty/main/ -[python-gevent_1.0-1ubuntu1] -file = python-gevent_1.0-1ubuntu1_amd64.deb -md5 = 7a0e277b556505bd5d663986ba8df167 +[python-gevent_1.0-1ubuntu1.1] +file = python-gevent_1.0-1ubuntu1.1_amd64.deb +md5 = 009938f1686163b0d2746e0649aa3366 +source = repo:trusty-updates/main/ -[python-greenlet_0.4.2-1build1] -file = python-greenlet_0.4.2-1build1_amd64.deb -md5 = 6bf204746bad67ae81d81229dfebe3b3 +[python-greenlet_0.4.2-1ubuntu0.1] +file = python-greenlet_0.4.2-1ubuntu0.1_amd64.deb +md5 = d60b17fe3c82ecdfc16fe2da075f3ee8 +source = repo:trusty-updates/main/ [python-gridfs_2.6.3-1build1] file = python-gridfs_2.6.3-1build1_all.deb md5 = 5bda8eff55d7a642fa348163ddc239fc +source = repo:trusty/main/ [python-happybase_0.8-0ubuntu1] file = python-happybase_0.8-0ubuntu1_all.deb md5 = 9a55b2ab63f80395a11d6b9854f710e5 +source = repo:trusty-updates/main/ [python-httplib2_0.8-2build1] file = python-httplib2_0.8-2build1_all.deb md5 = f89336424e43d4c425427218fe78ca7f +source = repo:trusty/main/ [python-iniparse_0.4-2.1build1] file = python-iniparse_0.4-2.1build1_all.deb md5 = 3d81a65e52f0d19ad3c19ce67c522dfd +source = repo:trusty/universe/ [python-ipaddr_2.1.10-1] file = python-ipaddr_2.1.10-1_all.deb md5 = dd68b2b72af833f9d6ae8c783bddec96 +source = repo:trusty/main/ [python-iso8601_0.1.10-0ubuntu1] file = python-iso8601_0.1.10-0ubuntu1_all.deb md5 = cf96e81ac68c98ba7dccab09b29e7a1b +source = repo:trusty/main/ [python-itsdangerous_0.22+dfsg1-1build1] file = python-itsdangerous_0.22+dfsg1-1build1_all.deb md5 = 41f85eb2b23f50761d2914f34e28fd52 +source = repo:trusty/main/ [python-jinja2_2.7.2-2] file = python-jinja2_2.7.2-2_all.deb md5 = 9cd2578120e51095678dce07fe22a7ad +source = repo:trusty/main/ [python-json-patch_1.3-4] file = python-json-patch_1.3-4_all.deb md5 = 5b8a855cfd49edad79d3432f227d42c0 +source = repo:trusty/main/ [python-json-pointer_1.0-2build1] file = python-json-pointer_1.0-2build1_all.deb md5 = b0762e2a2192458adcbf70e6be02172d +source = repo:trusty/main/ [python-jsonpatch_1.3-4] file = python-jsonpatch_1.3-4_all.deb md5 = d1521e9621c4c751d164a6d979705a12 +source = repo:trusty/main/ [python-jsonpath-rw_1.2.0-1build1] file = python-jsonpath-rw_1.2.0-1build1_all.deb md5 = 7e40b1562d3f18032e6236b1ada10cb6 +source = repo:trusty/main/ [python-jsonpickle_0.6.1-1] file = python-jsonpickle_0.6.1-1_all.deb md5 = db9b413b399c262c53a547fb3e6e7342 +source = repo:trusty/universe/ [python-jsonrpclib_0.1.3-1build1] file = python-jsonrpclib_0.1.3-1build1_all.deb md5 = 0277bea4326378576c341221acc648c2 +source = repo:trusty/main/ [python-jsonschema_2.3.0-1build1] file = python-jsonschema_2.3.0-1build1_all.deb md5 = f24f78b639a2aed323e456bd8df4b099 +source = repo:trusty/main/ -[python-keystone_1:2014.1.4-0ubuntu2] -file = python-keystone_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 990ddf23e69961a3068365243d51760c +[python-kazoo_2.2.1-1ubuntu1~cloud0] +file = python-kazoo_2.2.1-1ubuntu1~cloud0_all.deb +md5 = 7d06d4b92fd53797d9b6adf443bdbb6a +source = repo:trusty-updates-mitaka/main/ -[python-keystoneclient_1:0.7.1-ubuntu1] -file = python-keystoneclient_1%%3a0.7.1-ubuntu1_all.deb -md5 = 397c055bd4c8580c5e8940a27313779a +[python-keystone_1:2014.1.5-0ubuntu1] +file = python-keystone_1%%3a2014.1.5-0ubuntu1_all.deb +md5 = debd88296c4061a81db1895ab6b3d66c +source = repo:trusty-updates/main/ + +[python-keystoneclient_1:0.7.1-ubuntu1.3] +file = python-keystoneclient_1%%3a0.7.1-ubuntu1.3_all.deb +md5 = 97ad96677c6cfc13c0ecbae77b155226 +source = repo:trusty-updates/main/ [python-kombu_3.0.7-1ubuntu1] file = python-kombu_3.0.7-1ubuntu1_all.deb md5 = be47130b5d6eaa5e5e889e86d68dbbd7 +source = repo:trusty/main/ [python-ldap_2.4.10-1build1] file = python-ldap_2.4.10-1build1_amd64.deb md5 = 36ab6c8b74d3f2ac5959a605a20d0882 +source = repo:trusty/main/ [python-librabbitmq_1.0.3-0ubuntu1] file = python-librabbitmq_1.0.3-0ubuntu1_amd64.deb md5 = 04d44a37219a864fcc78060099b62b5e +source = repo:trusty/main/ [python-libvirt_1.2.2-0ubuntu2] file = python-libvirt_1.2.2-0ubuntu2_amd64.deb md5 = dddb4e142fa81e77e6414ed1794f01f9 +source = repo:trusty-updates/main/ [python-lockfile_1:0.8-2ubuntu2] file = python-lockfile_1%%3a0.8-2ubuntu2_all.deb md5 = 0b3a1c9d495cacbc645ee45ec84e2ff5 +source = repo:trusty/main/ [python-lxml_3.3.3-1ubuntu0.1] file = python-lxml_3.3.3-1ubuntu0.1_amd64.deb md5 = d1c5b5a5a64e196f73d9e2c9dc7b7ce5 +source = repo:trusty-updates/main/ [python-m2crypto_0.21.1-3ubuntu5] file = python-m2crypto_0.21.1-3ubuntu5_amd64.deb md5 = 4e14c4078c358c09b45462ca2270155a +source = repo:trusty/main/ [python-mako_0.9.1-1] file = python-mako_0.9.1-1_all.deb md5 = 78c42602a68f81f6e49034fbeea117a5 +source = repo:trusty/main/ [python-markupsafe_0.18-1build2] file = python-markupsafe_0.18-1build2_amd64.deb md5 = 710ec5c745dcd9994e049c3da8ecef7e +source = repo:trusty/main/ [python-meld3_0.6.10-1] file = python-meld3_0.6.10-1_amd64.deb md5 = e29f37ebfa28bb3ddebc91df3c339b47 +source = repo:trusty/universe/ [python-memcache_1.53-1build1] file = python-memcache_1.53-1build1_all.deb md5 = f571071e73b7d12586bba80a5fb77d9c +source = repo:trusty/main/ [python-migrate_0.8.2-3ubuntu1] file = python-migrate_0.8.2-3ubuntu1_all.deb md5 = f2ddc47fbfff721635f49fe20dd81359 +source = repo:trusty/main/ [python-mimeparse_0.1.4-1build1] file = python-mimeparse_0.1.4-1build1_all.deb md5 = 35001c4d6be265d6040285d96bb04fa5 +source = repo:trusty/main/ [python-mock_1.0.1-3] file = python-mock_1.0.1-3_all.deb md5 = 322bef0632cb2bfa8dc51844703a46a5 +source = repo:trusty/main/ [python-msgpack_0.3.0-1ubuntu3] file = python-msgpack_0.3.0-1ubuntu3_amd64.deb md5 = aa6179dd7104a9f6706c2aa4f7f813b7 +source = repo:trusty/main/ [python-mysqldb_1.2.3-2ubuntu1] file = python-mysqldb_1.2.3-2ubuntu1_amd64.deb md5 = f9afbad9900ea523db8e77a9b13e147b +source = repo:trusty/main/ [python-netifaces_0.8-3build1] file = python-netifaces_0.8-3build1_amd64.deb md5 = 40fb4a22bd2fe83f69c796a8d6979b78 +source = repo:trusty/main/ + +[python-netsnmp_5.7.2~dfsg-8.1ubuntu3.2] +file = python-netsnmp_5.7.2~dfsg-8.1ubuntu3.2_amd64.deb +md5 = 377f172050ff6236dc0c8624e241b246 +source = repo:trusty-updates/universe/ [python-networkx_1.8.1-0ubuntu3] file = python-networkx_1.8.1-0ubuntu3_all.deb md5 = e56789bcfefec7b730a35c983670346b +source = repo:trusty/main/ + +[python-neutron_1:2014.1.5-0ubuntu5] +file = python-neutron_1%%3a2014.1.5-0ubuntu5_all.deb +md5 = 097d10c3a7d79e061733ef046daaf107 +source = repo:trusty-updates/main/ -[python-neutron_1:2014.1.4-0ubuntu2] -file = python-neutron_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 6668229c7a8f407f1009cb0bf66dfda3 +[python-neutronclient_1:2.3.4-0ubuntu1] +file = python-neutronclient_1%%3a2.3.4-0ubuntu1_all.deb +md5 = 1f5c1f12611bcbee2f81752c3c04db4d +source = repo:trusty/main/ + +[python-novaclient_1:2.17.0-0ubuntu1.2] +file = python-novaclient_1%%3a2.17.0-0ubuntu1.2_all.deb +md5 = 1dd32e7c5abd4362ae22e990132f26e4 +source = repo:trusty-updates/main/ [python-numpy_1:1.8.2-0ubuntu0.1] file = python-numpy_1%%3a1.8.2-0ubuntu0.1_amd64.deb md5 = 00c0681a5a332a86999a5fbc02455844 +source = repo:trusty-updates/main/ [python-oauthlib_0.6.1-1] file = python-oauthlib_0.6.1-1_all.deb md5 = c9d6b2599b97bf3a4b95339b441da10d +source = repo:trusty/main/ [python-openid_2.2.5-3ubuntu1] file = python-openid_2.2.5-3ubuntu1_all.deb md5 = 18f10f480ec0e16fab9c27e361148ade +source = repo:trusty/main/ [python-openssl_0.13-2ubuntu6] file = python-openssl_0.13-2ubuntu6_amd64.deb md5 = c8f4a14fb0469dadcbe379db48a7061f +source = repo:trusty/main/ [python-oslo.config_1:1.2.1-0ubuntu2] file = python-oslo.config_1%%3a1.2.1-0ubuntu2_all.deb md5 = c095bf60547f412523e9548dbe9c5ac5 +source = repo:trusty/main/ -[python-oslo.messaging_1.3.0-0ubuntu1.1] -file = python-oslo.messaging_1.3.0-0ubuntu1.1_all.deb -md5 = c89cba704d02ac5d7437aa588c5d8a95 - -[python-oslo.messaging_1.3.0-0ubuntu1] -file = python-oslo.messaging_1.3.0-0ubuntu1_all.deb -md5 = dbdfbbdab74a16a3a49e876102318ab5 +[python-oslo.messaging_1.3.0-0ubuntu1.5] +file = python-oslo.messaging_1.3.0-0ubuntu1.5_all.deb +md5 = 9ee86d25a07f0f82c5f6e778c0be278f +source = repo:trusty-updates/main/ [python-oslo.rootwrap_1.2.0-0ubuntu1] file = python-oslo.rootwrap_1.2.0-0ubuntu1_all.deb md5 = d6f5d2b159c33e858538a84ff30c6181 +source = repo:trusty/main/ [python-oslo.vmware_0.2-0ubuntu1] file = python-oslo.vmware_0.2-0ubuntu1_all.deb md5 = 0e9d8156b4860f34759834c62a93583b +source = repo:trusty/main/ [python-pam_0.4.2-13.1ubuntu3] file = python-pam_0.4.2-13.1ubuntu3_amd64.deb md5 = e518dde3fdb06254f7d383fa289ff049 +source = repo:trusty/main/ [python-passlib_1.5.3-0ubuntu3] file = python-passlib_1.5.3-0ubuntu3_all.deb md5 = 148af17ab6f32a5dc65e7c1a5829ec92 +source = repo:trusty/main/ [python-paste_1.7.5.1-6ubuntu3] file = python-paste_1.7.5.1-6ubuntu3_all.deb md5 = 087a0e6d604920077dba2eb699fee451 +source = repo:trusty/main/ [python-pastedeploy-tpl_1.5.2-1] file = python-pastedeploy-tpl_1.5.2-1_all.deb md5 = 026875f9ea63f46eb1c7271f48563ce4 +source = repo:trusty/main/ [python-pastedeploy_1.5.2-1] file = python-pastedeploy_1.5.2-1_all.deb md5 = 3c0587c8218a420b1718ab9b5f01b42f +source = repo:trusty/main/ [python-pastescript_1.7.5-3build1] file = python-pastescript_1.7.5-3build1_all.deb md5 = efbe8811182fd40546ff68cd99ab0df7 +source = repo:trusty/main/ [python-pbr_0.7.0-0ubuntu2] file = python-pbr_0.7.0-0ubuntu2_all.deb md5 = a289b28e339bf153a43a6b06933e192d +source = repo:trusty/main/ [python-pecan_0.3.0-1ubuntu2] file = python-pecan_0.3.0-1ubuntu2_all.deb md5 = d3c5facd87da4ebe43d3521500e5e157 +source = repo:trusty/main/ [python-ply_3.4-3ubuntu2] file = python-ply_3.4-3ubuntu2_all.deb md5 = 780d4d20630869b23007bd41bd5dc98e +source = repo:trusty/main/ [python-prettytable_0.7.2-2ubuntu2] file = python-prettytable_0.7.2-2ubuntu2_all.deb md5 = 1532d286ecad16204509eca1e97b8c37 +source = repo:trusty/main/ [python-psutil_1.2.1-1ubuntu2] file = python-psutil_1.2.1-1ubuntu2_amd64.deb md5 = d2bcb47170d171e72068dad186d9f6cd +source = repo:trusty/main/ [python-pyasn1_0.1.7-1ubuntu2] file = python-pyasn1_0.1.7-1ubuntu2_all.deb md5 = 34840f47ca2ea766262d8759cfa54d79 +source = repo:trusty/main/ [python-pycadf_0.4.1-0ubuntu1.1] file = python-pycadf_0.4.1-0ubuntu1.1_all.deb md5 = 23fb5c825f6c92a3d9b1f233e1ebfb7c +source = repo:trusty-updates/main/ [python-pyinotify_0.9.4-1build1] file = python-pyinotify_0.9.4-1build1_all.deb md5 = e8769aea55a94fe0562f7c5fc160f883 +source = repo:trusty/main/ [python-pymongo-ext_2.6.3-1build1] file = python-pymongo-ext_2.6.3-1build1_amd64.deb md5 = 6c4a0a73e79d07b83bb9d909db2e46f0 +source = repo:trusty/main/ [python-pymongo_2.6.3-1build1] file = python-pymongo_2.6.3-1build1_amd64.deb md5 = 774d0f0d9dc52a42591d1efab4d1826a +source = repo:trusty/main/ [python-pyparsing_2.0.1+dfsg1-1build1] file = python-pyparsing_2.0.1+dfsg1-1build1_all.deb md5 = 33831b0b33cd23bd2266f6f19dac2817 - -[python-pyvmomi_5.5.0-2014.1.1-1] -file = python-pyvmomi_5.5.0-2014.1.1-1_all.deb -md5 = cdcdad00e07a88920b931215a2499a36 +source = repo:trusty/main/ [python-qpid_0.22+dfsg-1] file = python-qpid_0.22+dfsg-1_all.deb md5 = 647e9851d3fb2db8c92c4bcd98a11970 +source = repo:trusty/universe/ [python-repoze.lru_0.6-4] file = python-repoze.lru_0.6-4_all.deb md5 = ec42d32ed67499bf97f2843b4b667b7e +source = repo:trusty/main/ -[python-requestbuilder_0.2.3-1] -file = python-requestbuilder_0.2.3-1_all.deb -md5 = b44194d8ef92a657301ff72b68c05f72 - -[python-requests_2.2.1-1ubuntu0.2] -file = python-requests_2.2.1-1ubuntu0.2_all.deb -md5 = b92b5d48d282dad9b2665a454dd23d23 +[python-requestbuilder_0.1.0~beta2-1build1] +file = python-requestbuilder_0.1.0~beta2-1build1_all.deb +md5 = 4f995a3bea20ed1fc3d71ba56be31773 +source = repo:trusty/main/ [python-routes_2.0-1build1] file = python-routes_2.0-1build1_all.deb md5 = 93a7d9dd3af53796899a461c4cb2261e +source = repo:trusty/main/ [python-scgi_1.13-1.1build1] file = python-scgi_1.13-1.1build1_amd64.deb md5 = cf245a8f89a68cef75d45d943bcbe8e3 +source = repo:trusty/main/ [python-simplegeneric_0.8.1-1] file = python-simplegeneric_0.8.1-1_all.deb md5 = fc5b6db5f33a90082b89507dab83dd20 +source = repo:trusty/main/ [python-simplejson_3.3.1-1ubuntu6] file = python-simplejson_3.3.1-1ubuntu6_amd64.deb md5 = 9dfdf538974081a2e1c8ff0ac57f872b +source = repo:trusty/main/ [python-six_1.5.2-1] file = python-six_1.5.2-1_all.deb @@ -1378,126 +1915,222 @@ md5 = 6e35ef4b997fe89bd1f3870925cafb33 [python-sqlalchemy-ext_0.8.4-1build1] file = python-sqlalchemy-ext_0.8.4-1build1_amd64.deb md5 = 50a7a58a7b4a075897a411f01b9d5c3a +source = repo:trusty/main/ [python-sqlalchemy_0.8.4-1build1] file = python-sqlalchemy_0.8.4-1build1_all.deb md5 = 43e22de1ecdbcc2d4d40b4ab80c07cff +source = repo:trusty/main/ [python-stevedore_0.14.1-1] file = python-stevedore_0.14.1-1_all.deb md5 = 2ac09bf53686cf27beca74739d4bd143 +source = repo:trusty/main/ [python-suds_0.4.1-11ubuntu0.1] file = python-suds_0.4.1-11ubuntu0.1_all.deb md5 = 0f222270b439e25c2ae3e850d6dbc8b2 +source = repo:trusty-updates/main/ [python-support_1.0.15] file = python-support_1.0.15_all.deb md5 = 0d45e460d9fb2de50444bf59de240a6f +source = repo:trusty/universe/ [python-tempita_0.5.2-1build1] file = python-tempita_0.5.2-1build1_all.deb md5 = fa4fd67b02d761715923b71375fd6f08 +source = repo:trusty/main/ [python-testtools_0.9.35-0ubuntu1] file = python-testtools_0.9.35-0ubuntu1_all.deb md5 = 02712b24a895979d852fa23df1940d82 +source = repo:trusty/main/ [python-thrift_0.9.0-1build1] file = python-thrift_0.9.0-1build1_amd64.deb md5 = 8c575c6f55b81fb07c8b03c14c2be2fb +source = repo:trusty/main/ -[python-tz_2012c-1build1] -file = python-tz_2012c-1build1_all.deb -md5 = 9c2a526307d2e15cf23d8b72a87b6158 - -[python-urllib3_1.7.1-1ubuntu3] -file = python-urllib3_1.7.1-1ubuntu3_all.deb -md5 = 3ec3271f16269d814975fa2e90e31749 +[python-tz_2012c-1ubuntu0.1] +file = python-tz_2012c-1ubuntu0.1_all.deb +md5 = e46015b7b7daf5473e9afb5415bf2112 +source = repo:trusty-updates/main/ [python-waitress_0.8.8-1ubuntu3] file = python-waitress_0.8.8-1ubuntu3_all.deb md5 = 684a0b7c8d8fa234c4fc289afc8914f6 +source = repo:trusty/main/ [python-warlock_1.1.0-0ubuntu2] file = python-warlock_1.1.0-0ubuntu2_all.deb md5 = b21f1f41e9e0ff96112656890c98f314 +source = repo:trusty/main/ [python-webob_1.3.1-1] file = python-webob_1.3.1-1_all.deb md5 = 703bfe383914afa08877b2a861b15508 +source = repo:trusty/main/ [python-webtest_2.0.14-1ubuntu1] file = python-webtest_2.0.14-1ubuntu1_all.deb md5 = 4291bf89503e270abfed8a8850a8210f +source = repo:trusty/main/ [python-werkzeug_0.9.4+dfsg-1.1ubuntu2] file = python-werkzeug_0.9.4+dfsg-1.1ubuntu2_all.deb md5 = 0b840568dce7365757d1146c8570466c +source = repo:trusty-updates/main/ [python-wsme_0.6-0ubuntu1] file = python-wsme_0.6-0ubuntu1_all.deb md5 = 400b5bf513f6c7754e56fad1ec833b4b +source = repo:trusty/main/ [python-zope.interface_4.0.5-1ubuntu4] file = python-zope.interface_4.0.5-1ubuntu4_amd64.deb md5 = 74638361153d4f40914cdfb23a2d1523 - -[rabbitmq-server_3.5.0-1] -file = rabbitmq-server_3.5.0-1_all.deb -md5 = 69cab00b49bf49a2031762514d045735 +source = repo:trusty/main/ + +[python3-apport_2.14.1-0ubuntu3.21] +file = python3-apport_2.14.1-0ubuntu3.21_all.deb +md5 = c647ddd76cd9cb5a531ce175e81746a6 +source = repo:trusty-updates/main/ + +[python3-problem-report_2.14.1-0ubuntu3.21] +file = python3-problem-report_2.14.1-0ubuntu3.21_all.deb +md5 = be1c2b9746879df60c815d561d42d4c8 +source = repo:trusty-updates/main/ + +[qemu-keymaps_2.0.0+dfsg-2ubuntu1.27] +file = qemu-keymaps_2.0.0+dfsg-2ubuntu1.27_all.deb +md5 = 0d3118527144e377794d57240570b68d +source = repo:trusty-updates/main/ + +[qemu-system-arm_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-arm_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = e09bac8b84f29d956c05eb6616de05da +source = repo:trusty-updates/main/ + +[qemu-system-common_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-common_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = d343a07c98da6b94a54154e9a41c434e +source = repo:trusty-updates/main/ + +[qemu-system-mips_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-mips_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = afc42bb59455f142122d3ae4dc3471b7 +source = repo:trusty-updates/main/ + +[qemu-system-misc_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-misc_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = 5a1b3461d8fcbdba46b42622d3250370 +source = repo:trusty-updates/main/ + +[qemu-system-ppc_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-ppc_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = c949a65bfcdb4461ae7b0994ef991ff9 +source = repo:trusty-updates/main/ + +[qemu-system-sparc_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-sparc_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = 5e56aebcb3d012432c671ae1b43235f8 +source = repo:trusty-updates/main/ + +[qemu-system-x86_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system-x86_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = 3cbefef023ecdd0ef24d3c74e0df6ccf +source = repo:trusty-updates/main/ + +[qemu-system_2.0.0+dfsg-2ubuntu1.27] +file = qemu-system_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = c706f9444c66e27729170b99435e6202 +source = repo:trusty-updates/main/ + +[qemu-utils_2.0.0+dfsg-2ubuntu1.27] +file = qemu-utils_2.0.0+dfsg-2ubuntu1.27_amd64.deb +md5 = 1c26d8bfbf5e73755e59b1c5d09348bd +source = repo:trusty-updates/main/ + +[rabbitmq-server_3.2.4-1] +file = rabbitmq-server_3.2.4-1_all.deb +md5 = ac0bcd91061ed9c00435d6ffcc179a3e +source = repo:trusty/main/ [redis-server_2:2.8.4-2] file = redis-server_2%%3a2.8.4-2_amd64.deb md5 = 066f3ce93331b876b691df69d11b7e36 +source = repo:trusty/universe/ [redis-tools_2:2.8.4-2] file = redis-tools_2%%3a2.8.4-2_amd64.deb md5 = 14b24b44ae06d6a46022189296e0777c +source = repo:trusty/universe/ [rlwrap_0.37-5] file = rlwrap_0.37-5_amd64.deb md5 = f45b4d3b82f890b4c85f6223d4a1658c +source = repo:trusty/universe/ -[rpcbind_0.2.1-2ubuntu2.1] -file = rpcbind_0.2.1-2ubuntu2.1_amd64.deb -md5 = a5cd456ea1863aa36d2d41a27da3aaca +[rpcbind_0.2.1-2ubuntu2.2] +file = rpcbind_0.2.1-2ubuntu2.2_amd64.deb +md5 = 279a20e0acfea4036bce808ee12db789 +source = repo:trusty-updates/main/ -[seabios_1.7.4-4] -file = seabios_1.7.4-4_all.deb -md5 = 88206d3b36a49786b00b76031f91c922 +[seabios_1.7.4-4ubuntu1] +file = seabios_1.7.4-4ubuntu1_all.deb +md5 = c4beee0ed9baf674583742cccaf3640b +source = repo:trusty-updates/main/ [sharutils_1:4.14-1ubuntu1] file = sharutils_1%%3a4.14-1ubuntu1_amd64.deb md5 = 021cd2f95dd7fa1b4218d1caf50c882e +source = repo:trusty/main/ [ssl-cert_1.0.33] file = ssl-cert_1.0.33_all.deb md5 = bb2d2f616d7b4da9b76caa98002657eb +source = repo:trusty/main/ -[supervisor_3.0r1-1] -file = supervisor_3.0r1-1_all.deb -md5 = 368bfa94087bdc5eca01eae1ecc87335 +[supervisor_3.0b2-1] +file = supervisor_3.0b2-1_all.deb +md5 = 1e5ee03933451a0f4fc9ff391404f292 +source = repo:trusty/universe/ [ttf-dejavu-core_2.34-1ubuntu1] file = ttf-dejavu-core_2.34-1ubuntu1_all.deb md5 = 9a1638907f97e9374172634e274f71fb +source = repo:trusty/main/ + +[tzdata-java_2016f-0ubuntu0.14.04] +file = tzdata-java_2016f-0ubuntu0.14.04_all.deb +md5 = 5620efdbb515981213d76b01d5a1c6b0 +source = repo:trusty-updates/main/ + +[tzdata_2016f-0ubuntu0.14.04] +file = tzdata_2016f-0ubuntu0.14.04_all.deb +md5 = 8853ac8e274c495758674be2ca67aa0d +source = repo:trusty-updates/main/ [update-inetd_4.43] file = update-inetd_4.43_all.deb md5 = 6e166b2422a7dff8154cdd3fdf1e0af7 +source = repo:trusty/main/ [vbetool_1.1-3] file = vbetool_1.1-3_amd64.deb md5 = e5487da0e86050f4ce7804dc8f822256 +source = repo:trusty/main/ [vlan_1.9-3ubuntu10] file = vlan_1.9-3ubuntu10_amd64.deb md5 = c542a1bacbad438f028c8da3afa30295 +source = repo:trusty/main/ [websockify_0.5.1+dfsg1-3ubuntu0.14.04.1] file = websockify_0.5.1+dfsg1-3ubuntu0.14.04.1_amd64.deb md5 = 0b43ac90b7e2307d0a955133b85372f2 +source = repo:trusty-updates/universe/ [wireless-regdb_2013.02.13-1ubuntu1] file = wireless-regdb_2013.02.13-1ubuntu1_all.deb @@ -1506,229 +2139,10 @@ md5 = 46e0e91934caea23180f1c83b6d99a81 [xinetd_1:2.3.15-3ubuntu1] file = xinetd_1%%3a2.3.15-3ubuntu1_amd64.deb md5 = 1b7626e4edab8164b11f74b323a4413f +source = repo:trusty/main/ [zookeeper_3.4.5+dfsg-1] file = zookeeper_3.4.5+dfsg-1_all.deb md5 = 59083991e535cb097e9db55714b78589 +source = repo:trusty/universe/ -#Security updates - -[apache2-bin_2.4.7-1ubuntu4.5] -file = apache2-bin_2.4.7-1ubuntu4.5_amd64.deb -md5 = 3fa82bb4b34ed8aa00479a6d76a01a25 - -[apache2-data_2.4.7-1ubuntu4.5] -file = apache2-data_2.4.7-1ubuntu4.5_all.deb -md5 = eeb8a3b409a729e3ed876373cc6d1dd5 - -[apache2_2.4.7-1ubuntu4.5] -file = apache2_2.4.7-1ubuntu4.5_amd64.deb -md5 = 1a3c280fe77537bb1f516b04d69f380b - -[apport_2.14.1-0ubuntu3.11] -file = apport_2.14.1-0ubuntu3.11_all.deb -md5 = bafae0c1c859b032ab5f6863fbc7f512 - -[dnsmasq-base_2.68-1ubuntu0.1] -file = dnsmasq-base_2.68-1ubuntu0.1_amd64.deb -md5 = aaee558be8eddbbdc86bb0623152786d - -[icedtea-6-jre-cacao_6b36-1.13.8-0ubuntu1~14.04] -file = icedtea-6-jre-cacao_6b36-1.13.8-0ubuntu1~14.04_amd64.deb -md5 = 8e87a37234da608c4b964a11ed4c4165 - -[icedtea-6-jre-jamvm_6b36-1.13.8-0ubuntu1~14.04] -file = icedtea-6-jre-jamvm_6b36-1.13.8-0ubuntu1~14.04_amd64.deb -md5 = f292321a173c34e36bd6371d091dad72 - -[libcrypto++9_5.6.1-6+deb8u1build0.14.04.1] -file = libcrypto++9_5.6.1-6+deb8u1build0.14.04.1_amd64.deb -md5 = b5c65db1de0035c34ed1f140c40d79bf - -[libcups2_1.7.2-0ubuntu1.6] -file = libcups2_1.7.2-0ubuntu1.6_amd64.deb -md5 = 51d3fa9f75c28c34142717fa2dc3530c - -[libicu52_52.1-3ubuntu0.3] -file = libicu52_52.1-3ubuntu0.3_amd64.deb -md5 = 22e03e757440e388f99a32119e97c0a3 - -[libnss3-nssdb_2:3.19.2-0ubuntu0.14.04.1] -file = libnss3-nssdb_3.19.2-0ubuntu0.14.04.1_all.deb -md5 = 3cdd4bef3f8c1ccc4c01de6e2788fe5a - -[libnss3_2:3.19.2-0ubuntu0.14.04.1] -file = libnss3_3.19.2-0ubuntu0.14.04.1_amd64.deb -md5 = 6ca08cdb9e5714a96322505343e0fe6b - -[libpcrecpp0_1:8.31-2ubuntu2.1] -file = libpcrecpp0_8.31-2ubuntu2.1_amd64.deb -md5 = c84471d56a86d876578ed2698b13bb8f - -[libpython2.7_2.7.6-8ubuntu0.2] -file = libpython2.7_2.7.6-8ubuntu0.2_amd64.deb -md5 = e52bac5d993bf5c8c60ef92b9e392603 - -[libsnmp-base_5.7.2~dfsg-8.1ubuntu3.1] -file = libsnmp-base_5.7.2~dfsg-8.1ubuntu3.1_all.deb -md5 = f48eeb8004db645287ad858b4a4b8cce - -[libsnmp30_5.7.2~dfsg-8.1ubuntu3.1] -file = libsnmp30_5.7.2~dfsg-8.1ubuntu3.1_amd64.deb -md5 = 098a58e5e0bed8a5fa71f956e0fa3142 - -[libssl1.0.0_1.0.1f-1ubuntu2.15] -file = libssl1.0.0_1.0.1f-1ubuntu2.15_amd64.deb -md5 = 18a4de0045ddf7885928101b4fdd7599 - -[libxen-4.4_4.4.1-0ubuntu0.14.04.6] -file = libxen-4.4_4.4.1-0ubuntu0.14.04.6_amd64.deb -md5 = d5edb77665487baa9bb9c7451d7fc852 - -[libxenstore3.0_4.4.1-0ubuntu0.14.04.6] -file = libxenstore3.0_4.4.1-0ubuntu0.14.04.6_amd64.deb -md5 = 85075a82cd365abf156e318296d606f3 - -[linux-crashdump_3.13.0.62.69] -file = linux-crashdump_3.13.0.62.69_amd64.deb -md5 = d29761ac63384f685777474824779668 - -[mysql-client-5.5_5.5.44-0ubuntu0.14.04.1] -file = mysql-client-5.5_5.5.44-0ubuntu0.14.04.1_amd64.deb -md5 = 184d62b1af73fca07a1c062a502da341 - -[mysql-client-core-5.5_5.5.44-0ubuntu0.14.04.1] -file = mysql-client-core-5.5_5.5.44-0ubuntu0.14.04.1_amd64.deb -md5 = 700e3813f2afe04e76a67ca6b360ef6f - -[mysql-client_5.5.44-0ubuntu0.14.04.1] -file = mysql-client_5.5.44-0ubuntu0.14.04.1_all.deb -md5 = 0547e2707d5a6789f2317d4f63fc6516 - -[mysql-common_5.5.44-0ubuntu0.14.04.1] -file = mysql-common_5.5.44-0ubuntu0.14.04.1_all.deb -md5 = 52f9928d0eb64ff0c7e50d4fb7340c66 - -[openjdk-6-jre-headless_6b36-1.13.8-0ubuntu1~14.04] -file = openjdk-6-jre-headless_6b36-1.13.8-0ubuntu1~14.04_amd64.deb -md5 = 0284faa1aab91d4df68c965fe851a132 - -[openjdk-6-jre-lib_6b36-1.13.8-0ubuntu1~14.04] -file = openjdk-6-jre-lib_6b36-1.13.8-0ubuntu1~14.04_all.deb -md5 = 89f0baac7b2c862d976e6e7f0c342e1b - -[openjdk-7-jre-headless_7u79-2.5.6-0ubuntu1.14.04.1] -file = openjdk-7-jre-headless_7u79-2.5.6-0ubuntu1.14.04.1_amd64.deb -md5 = 1b4a310622de33879955ce7b8ffc722c - -[patch_2.7.1-4ubuntu2.3] -file = patch_2.7.1-4ubuntu2.3_amd64.deb -md5 = 4f07a01b36e3a60a34c3bcef647894ae - -[php5-cli_5.5.9+dfsg-1ubuntu4.11] -file = php5-cli_5.5.9+dfsg-1ubuntu4.11_amd64.deb -md5 = 880493ac136b4e8206f9ada034a4168e - -[php5-common_5.5.9+dfsg-1ubuntu4.11] -file = php5-common_5.5.9+dfsg-1ubuntu4.11_amd64.deb -md5 = 815d4e6e9f2599d228356120c9d0d789 - -[php5-gd_5.5.9+dfsg-1ubuntu4.11] -file = php5-gd_5.5.9+dfsg-1ubuntu4.11_amd64.deb -md5 = 02b6f1ad6369c615588d7a38435a5e4a - -[php5-mysql_5.5.9+dfsg-1ubuntu4.11] -file = php5-mysql_5.5.9+dfsg-1ubuntu4.11_amd64.deb -md5 = 0f67c4d7fa3edf90acbb6b92ac163146 - -[php5-readline_5.5.9+dfsg-1ubuntu4.11] -file = php5-readline_5.5.9+dfsg-1ubuntu4.11_amd64.deb -md5 = 8c72f60fc44051e0a52356ce607862ab - -[python-django_1.6.1-2ubuntu0.10] -file = python-django_1.6.1-2ubuntu0.10_all.deb -md5 = 696430e466e4006ed642a053270b018b - -[python-netsnmp_5.7.2~dfsg-8.1ubuntu3.1] -file = python-netsnmp_5.7.2~dfsg-8.1ubuntu3.1_amd64.deb -md5 = c76998643a6f038bdde475d21e9e6337 - -[python3-apport_2.14.1-0ubuntu3.11] -file = python3-apport_2.14.1-0ubuntu3.11_all.deb -md5 = 78b31c437d05884629de962b9f466dfb - -[python3-problem-report_2.14.1-0ubuntu3.11] -file = python3-problem-report_2.14.1-0ubuntu3.11_all.deb -md5 = 5a356f46b7234f34495479d4ba5c08bc - -[qemu-keymaps_2.0.0+dfsg-2ubuntu1.15] -file = qemu-keymaps_2.0.0+dfsg-2ubuntu1.15_all.deb -md5 = 2e95c36f1dc40a668cb8c713a8a88b01 - -[qemu-system-arm_2.0.0+dfsg-2ubuntu1.15] -file = qemu-system-arm_2.0.0+dfsg-2ubuntu1.15_amd64.deb -md5 = 23fe61a5725c4eaccab9f47efa43d266 - -[qemu-system-common_2.0.0+dfsg-2ubuntu1.15] -file = qemu-system-common_2.0.0+dfsg-2ubuntu1.15_amd64.deb -md5 = 2e2d74c0329c0dfb97b7daf468c57eca - -[qemu-system-mips_2.0.0+dfsg-2ubuntu1.15] -file = qemu-system-mips_2.0.0+dfsg-2ubuntu1.15_amd64.deb -md5 = 5075a93764a6463f16ad220b8b310fd9 - -[qemu-system-misc_2.0.0+dfsg-2ubuntu1.15] -file = qemu-system-misc_2.0.0+dfsg-2ubuntu1.15_amd64.deb -md5 = 469c8312c90d1a5a0398fb9085a9d642 - -[qemu-system-ppc_2.0.0+dfsg-2ubuntu1.15] -file = qemu-system-ppc_2.0.0+dfsg-2ubuntu1.15_amd64.deb -md5 = ccaf1ac69d39a451223eacd374fd4443 - -[qemu-system-sparc_2.0.0+dfsg-2ubuntu1.15] -file = qemu-system-sparc_2.0.0+dfsg-2ubuntu1.15_amd64.deb -md5 = 08627cbb070bfbd9d6e54d0b7d7c00f8 - -[qemu-system-x86_2.0.0+dfsg-2ubuntu1.15] -file = qemu-system-x86_2.0.0+dfsg-2ubuntu1.15_amd64.deb -md5 = b792dd5c8fc05ba2136327a34e8f3c8a - -[qemu-system_2.0.0+dfsg-2ubuntu1.15] -file = qemu-system_2.0.0+dfsg-2ubuntu1.15_amd64.deb -md5 = b68c88a517d0fde730b4a78a624411d8 - -[qemu-utils_2.0.0+dfsg-2ubuntu1.15] -file = qemu-utils_2.0.0+dfsg-2ubuntu1.15_amd64.deb -md5 = 32173b18cd736a651170ee36ce8c1e20 - -[tzdata-java_2015f-0ubuntu0.14.04] -file = tzdata-java_2015f-0ubuntu0.14.04_all.deb -md5 = e98e9553124f4e6b1ab4e4ce8c7f338e - -[tzdata_2015f-0ubuntu0.14.04] -file = tzdata_2015f-0ubuntu0.14.04_all.deb -md5 = c16be04d0fdee6ab88b6d891587774d5 - -[libpython2.7-minimal_2.7.6-8ubuntu0.2] -file = libpython2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb -md5 = 48d76dcd9239d2970d3866d6082a48c6 - -[libpython2.7-stdlib_2.7.6-8ubuntu0.2] -file = libpython2.7-stdlib_2.7.6-8ubuntu0.2_amd64.deb -md5 = accc8dfb0ff3e0440e66f4c4c9589854 - -[python2.7-minimal_2.7.6-8ubuntu0.2] -file = python2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb -md5 = cb8b7f9637e05f64482f6657ef4df02f - -[python2.7_2.7.6-8ubuntu0.2] -file = python2.7_2.7.6-8ubuntu0.2_amd64.deb -md5 = fb63cafe276fd18b231ae3d1d695157e - -[libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1] -file = libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1_amd64.deb -md5 = 67303b5e19bf90c0538564669685483e - -[libmysqlclient18_5.5.44-0ubuntu0.14.04.1] -file = libmysqlclient18_5.5.44-0ubuntu0.14.04.1_amd64.deb -md5 = 33f6722098058e0d1da4cfd9465825de diff --git a/build/package_configs/ubuntu1404/vcenter/depends_contrail_installer_packages.cfg b/build/package_configs/ubuntu1404/vcenter/depends_contrail_installer_packages.cfg index 122e606aa..e05e6fdc9 100644 --- a/build/package_configs/ubuntu1404/vcenter/depends_contrail_installer_packages.cfg +++ b/build/package_configs/ubuntu1404/vcenter/depends_contrail_installer_packages.cfg @@ -19,6 +19,12 @@ # # then that package file will be packaged in # # the wrapper package contrail-dependent-packages # +# source = # provide reference to the source of the package +# # +# # supported values - +# # repo: - package belongs to the repo specified in . +# # Use upstream repo name or contrail repo names +# # http:///path - Url from which the package is downloaded # **************************************************************************** [DEFAULT] @@ -27,196 +33,340 @@ md5 = location = package_type = contrail-install-packages, contrail-dependent-packages, contrail-installer-packages -[binutils_2.24-5ubuntu3.1] -file = binutils_2.24-5ubuntu3.1_amd64.deb -md5 = 91e15f447367d5d5544b3db5c26da391 +[binutils_2.24-5ubuntu14.1] +file = binutils_2.24-5ubuntu14.1_amd64.deb +md5 = 85dd95077b946a274f9814639eba4d06 +source = repo:trusty-updates/main/ [build-essential_11.6ubuntu6] file = build-essential_11.6ubuntu6_amd64.deb md5 = 6fa3d082885a7440d512236685cd24fd +source = repo:trusty/main/ -[cpp-4.8_4.8.2-19ubuntu1] -file = cpp-4.8_4.8.2-19ubuntu1_amd64.deb -md5 = d80f3ce21e0dd6f2661c573720707ad9 +[cpp-4.8_4.8.4-2ubuntu1~14.04.3] +file = cpp-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c87a404428865790862aeb6195811066 +source = repo:trusty-updates/main/ [cpp_4:4.8.2-1ubuntu6] file = cpp_4%%3a4.8.2-1ubuntu6_amd64.deb md5 = 2ced23b24cf068b16b5a69222506fd79 +source = repo:trusty/main/ -[dpkg-dev_1.17.5ubuntu5.4] -file = dpkg-dev_1.17.5ubuntu5.4_all.deb -md5 = 64bb3c20f3579a51dab71ec7e7114dd9 +[curl_7.35.0-1ubuntu2.9] +file = curl_7.35.0-1ubuntu2.9_amd64.deb +md5 = a2384903f4693ad7dc74b59360741c14 +source = repo:trusty-updates/main/ -[g++-4.8_4.8.2-19ubuntu1] -file = g++-4.8_4.8.2-19ubuntu1_amd64.deb -md5 = 25df6704792fa4c4b96ece237314e89d +[dpkg-dev_1.17.5ubuntu5.7] +file = dpkg-dev_1.17.5ubuntu5.7_all.deb +md5 = c1d73ee78c457f5f557c0cd4340fd5d3 +source = repo:trusty-updates/main/ + +[fakeroot_1.20-3ubuntu2] +file = fakeroot_1.20-3ubuntu2_amd64.deb +md5 = fad29881d632a463f5235f399fa65a14 +source = repo:trusty/main/ + +[g++-4.8_4.8.4-2ubuntu1~14.04.3] +file = g++-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ffc4c3bc3fe036fd18e79399caea1586 +source = repo:trusty-updates/main/ [g++_4:4.8.2-1ubuntu6] file = g++_4%%3a4.8.2-1ubuntu6_amd64.deb md5 = 7332a4e9116b821e167a3d0236ca413a +source = repo:trusty/main/ -[gcc-4.8_4.8.2-19ubuntu1] -file = gcc-4.8_4.8.2-19ubuntu1_amd64.deb -md5 = 8a94795493b6363680e6195406f6f0e2 +[gcc-4.8-base_4.8.4-2ubuntu1~14.04.3] +file = gcc-4.8-base_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 691b4cb367c62b79511541a3cee41fda +source = repo:trusty-updates/main/ + +[gcc-4.8_4.8.4-2ubuntu1~14.04.3] +file = gcc-4.8_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c53635e53f577687409b4c3c93f4da80 +source = repo:trusty-updates/main/ [gcc_4:4.8.2-1ubuntu6] file = gcc_4%%3a4.8.2-1ubuntu6_amd64.deb md5 = 83b25d71df6df1c47a4b983596896f0b +source = repo:trusty/main/ [ieee-data_20131224.1] file = ieee-data_20131224.1_all.deb md5 = 1bc31412dad4d90a6ea1ee42eaac5192 - -[libasan0_4.8.2-19ubuntu1] -file = libasan0_4.8.2-19ubuntu1_amd64.deb -md5 = 0de6c2ba4fe163df4413729cb0681eda - -[libatomic1_4.8.2-19ubuntu1] -file = libatomic1_4.8.2-19ubuntu1_amd64.deb -md5 = 837ddeb604164e6dae3bf516fce95654 - -[libc-dev-bin_2.19-0ubuntu6.6] -file = libc-dev-bin_2.19-0ubuntu6.6_amd64.deb -md5 = 9cdab0e5888b421dc89a7a94331b04fe - -[libc6-dev_2.19-0ubuntu6.6] -file = libc6-dev_2.19-0ubuntu6.6_amd64.deb -md5 = cc13115c3843d4e27b43796b94d1aa6e - -[libc6_2.19-0ubuntu6.6] -file = libc6_2.19-0ubuntu6.6_amd64.deb -md5 = f57ca4c76bdf2af3117e51d63eb81004 +source = repo:trusty/universe/ + +[libalgorithm-diff-perl_1.19.02-3] +file = libalgorithm-diff-perl_1.19.02-3_all.deb +md5 = 7462f70e9e9b691ca4a4657371d6ba8e +source = repo:trusty/main/ + +[libalgorithm-diff-xs-perl_0.04-2build4] +file = libalgorithm-diff-xs-perl_0.04-2build4_amd64.deb +md5 = a1bd654bf2b8f30d464a6f95225a0744 +source = repo:trusty/main/ + +[libalgorithm-merge-perl_0.08-2] +file = libalgorithm-merge-perl_0.08-2_all.deb +md5 = bf1355aea7ab249fcd344cf0c692bc6c +source = repo:trusty/main/ + +[libasan0_4.8.4-2ubuntu1~14.04.3] +file = libasan0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ff04bb046aeec86af2bb90c5d90a166c +source = repo:trusty-updates/main/ + +[libatomic1_4.8.4-2ubuntu1~14.04.3] +file = libatomic1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = ec6ce0fb6e66e8b8c95534ab9e77a67e +source = repo:trusty-updates/main/ + +[libc-dev-bin_2.19-0ubuntu6.9] +file = libc-dev-bin_2.19-0ubuntu6.9_amd64.deb +md5 = aa72bd06ea171705087d6f090a2cc8a6 +source = repo:trusty-updates/main/ + +[libc6-dev_2.19-0ubuntu6.9] +file = libc6-dev_2.19-0ubuntu6.9_amd64.deb +md5 = f4971e129e81195e8445a4a5f1bb1123 +source = repo:trusty-updates/main/ + +[libc6_2.19-0ubuntu6.9] +file = libc6_2.19-0ubuntu6.9_amd64.deb +md5 = 422dff6f1563aa40a0ab3ea2a9509025 +source = repo:trusty-updates/main/ [libcloog-isl4_0.18.2-1] file = libcloog-isl4_0.18.2-1_amd64.deb md5 = da71de63b0e24eb02afb817c0b285d6a +source = repo:trusty/main/ + +[libcurl3_7.35.0-1ubuntu2.9] +file = libcurl3_7.35.0-1ubuntu2.9_amd64.deb +md5 = ab4d32b4d76c2f2c8cd5069b66b08a91 +source = repo:trusty-updates/main/ + +[libdpkg-perl_1.17.5ubuntu5.7] +file = libdpkg-perl_1.17.5ubuntu5.7_all.deb +md5 = 7f0c96b6386a43c1caa731d15f1f5fe4 +source = repo:trusty-updates/main/ + +[libfakeroot_1.20-3ubuntu2] +file = libfakeroot_1.20-3ubuntu2_amd64.deb +md5 = 856c7401d7d5a63ea231f706c18d9261 +source = repo:trusty/main/ -[libdpkg-perl_1.17.5ubuntu5.4] -file = libdpkg-perl_1.17.5ubuntu5.4_all.deb -md5 = e18222ac6f6912521bdcf96fdade214d +[libfile-fcntllock-perl_0.14-2build1] +file = libfile-fcntllock-perl_0.14-2build1_amd64.deb +md5 = 18813758778ece61bcdf84018218fc1d +source = repo:trusty/main/ -[libgcc-4.8-dev_4.8.2-19ubuntu1] -file = libgcc-4.8-dev_4.8.2-19ubuntu1_amd64.deb -md5 = 9ae0e3e80286ac25c7b8d16a6d7aa0fd +[libgcc-4.8-dev_4.8.4-2ubuntu1~14.04.3] +file = libgcc-4.8-dev_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 69ff74311eecda1487d0f96b14af0b7c +source = repo:trusty-updates/main/ [libgmp10_2:5.1.3+dfsg-1ubuntu1] file = libgmp10_2%%3a5.1.3+dfsg-1ubuntu1_amd64.deb md5 = 5a25bb81aa2e0ca83e2d349d58b435d5 +source = repo:trusty/main/ -[libgomp1_4.8.2-19ubuntu1] -file = libgomp1_4.8.2-19ubuntu1_amd64.deb -md5 = 68263fca7caf6253269ab5d68f98b407 +[libgomp1_4.8.4-2ubuntu1~14.04.3] +file = libgomp1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 8f95195693e2cbb56825fd9b2b9ffca0 +source = repo:trusty-updates/main/ [libisl10_0.12.2-1] file = libisl10_0.12.2-1_amd64.deb md5 = b9756a5cce1ecd2d56652779d9e3b757 +source = repo:trusty/main/ -[libitm1_4.8.2-19ubuntu1] -file = libitm1_4.8.2-19ubuntu1_amd64.deb -md5 = acd2892a91ef8752d8b706a63d1c8751 +[libitm1_4.8.4-2ubuntu1~14.04.3] +file = libitm1_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 52e717ed8662a3986997412f42abc297 +source = repo:trusty-updates/main/ [libmpc3_1.0.1-1ubuntu1] file = libmpc3_1.0.1-1ubuntu1_amd64.deb md5 = c5749c5428040f492bc9d00b0101b8a8 +source = repo:trusty/main/ [libmpfr4_3.1.2-1] file = libmpfr4_3.1.2-1_amd64.deb md5 = 3ff03e231bf643436f087da42faaad6d +source = repo:trusty/main/ -[libquadmath0_4.8.2-19ubuntu1] -file = libquadmath0_4.8.2-19ubuntu1_amd64.deb -md5 = 855adbb91132334b33ef80e50bfa7510 +[libquadmath0_4.8.4-2ubuntu1~14.04.3] +file = libquadmath0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = f541cc61c3feaa74098bdb9970ed12b6 +source = repo:trusty-updates/main/ -[libstdc++-4.8-dev_4.8.2-19ubuntu1] -file = libstdc++-4.8-dev_4.8.2-19ubuntu1_amd64.deb -md5 = 2b9728ea063a1720a55393881aaa4a4b +[libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04.3] +file = libstdc++-4.8-dev_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 7657e54922455ae36c7b2f7228427aec +source = repo:trusty-updates/main/ -[libtsan0_4.8.2-19ubuntu1] -file = libtsan0_4.8.2-19ubuntu1_amd64.deb -md5 = 56dda44eb374e801bff0d684b060e4d0 +[libstdc++6_4.8.4-2ubuntu1~14.04.3] +file = libstdc++6_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = 3fe9099e0064fa8030f047ff38e075c2 +source = repo:trusty-updates/main/ + +[libtsan0_4.8.4-2ubuntu1~14.04.3] +file = libtsan0_4.8.4-2ubuntu1~14.04.3_amd64.deb +md5 = c4232ca2be66b95d74e8823a9868a9b4 +source = repo:trusty-updates/main/ [libyaml-0-2_0.1.4-3ubuntu3.1] file = libyaml-0-2_0.1.4-3ubuntu3.1_amd64.deb md5 = 4dcc359331403252136be3490c923fc9 +source = repo:trusty-updates/main/ + +[linux-libc-dev_3.13.0-95.142] +file = linux-libc-dev_3.13.0-95.142_amd64.deb +md5 = 4ba5f7a29d5f021c13bdffa248dbd521 +source = repo:trusty-updates/main/ [make_3.81-8.2ubuntu3] file = make_3.81-8.2ubuntu3_amd64.deb md5 = 6442fbef4450fc977fb1ab6297cf7797 +source = repo:trusty/main/ [manpages-dev_3.54-1ubuntu1] file = manpages-dev_3.54-1ubuntu1_all.deb md5 = 8b108211126e2798112fbd55292e5690 +source = repo:trusty/main/ + +[patch_2.7.1-4ubuntu2.3] +file = patch_2.7.1-4ubuntu2.3_amd64.deb +md5 = 4f07a01b36e3a60a34c3bcef647894ae +source = repo:trusty-updates/main/ -[patch_2.7.1-4ubuntu2] -file = patch_2.7.1-4ubuntu2_amd64.deb -md5 = 87f14056f2208fd5fd416a51f83dd21d +[python-chardet-whl_2.2.1-2~ubuntu1] +file = python-chardet-whl_2.2.1-2~ubuntu1_all.deb +md5 = d882e156f6af98454a96cae30ae58784 +source = repo:trusty-updates/universe/ + +[python-colorama-whl_0.2.5-0.1ubuntu2] +file = python-colorama-whl_0.2.5-0.1ubuntu2_all.deb +md5 = 2c4ecb5b3fc49ae20510d3aac886b66a +source = repo:trusty-updates/universe/ [python-colorama_0.2.5-0.1ubuntu2] file = python-colorama_0.2.5-0.1ubuntu2_all.deb md5 = b06bc963962c3f3c97f5d1da53a56f3f +source = repo:trusty-updates/universe/ [python-crypto_2.6.1-4build1] file = python-crypto_2.6.1-4build1_amd64.deb md5 = 14de358cc59ab40ee9c90f3582591f79 +source = repo:trusty/main/ + +[python-distlib-whl_0.1.8-1ubuntu1] +file = python-distlib-whl_0.1.8-1ubuntu1_all.deb +md5 = 93792a4c21365ded4316fdb5bc895dd5 +source = repo:trusty-updates/universe/ [python-distlib_0.1.8-1ubuntu1] file = python-distlib_0.1.8-1ubuntu1_all.deb md5 = b3288d6d230096c11d69ebe18c44ed83 +source = repo:trusty-updates/universe/ -[python-html5lib_0.999-3~ubuntu1] -file = python-html5lib_0.999-3~ubuntu1_all.deb -md5 = 93c4140d32e1addb8231a3e0be557c93 +[python-html5lib-whl_0.999-3~ubuntu1] +file = python-html5lib-whl_0.999-3~ubuntu1_all.deb +md5 = bc6bd5baa70ace380513925f749857fa +source = repo:trusty-updates/main/ [python-netaddr_0.7.12-1~cloud0] file = python-netaddr_0.7.12-1~cloud0_all.deb md5 = 8a4c4a0cebf3664d43212574f7783ed5 +[python-html5lib_0.999-3~ubuntu1] +file = python-html5lib_0.999-3~ubuntu1_all.deb +md5 = 93c4140d32e1addb8231a3e0be557c93 +source = repo:trusty-updates/main/ + [python-paramiko_1.10.1-1git1build1] file = python-paramiko_1.10.1-1git1build1_all.deb md5 = e728ed22af7bead915a5e509140971bb +source = repo:trusty/main/ -[python-pip_1.5.4-1ubuntu1] -file = python-pip_1.5.4-1ubuntu1_all.deb -md5 = bee834c024b253193dab55ae31f9791d +[python-pip-whl_1.5.4-1ubuntu4] +file = python-pip-whl_1.5.4-1ubuntu4_all.deb +md5 = 45dd75216ca01ef0758e98b89d88093f +source = repo:trusty-updates/universe/ -[python-pkg-resources_3.3-1ubuntu1] -file = python-pkg-resources_3.3-1ubuntu1_all.deb -md5 = 405401d8abf835f703bd6499a5f9788a +[python-pip_1.5.4-1ubuntu4] +file = python-pip_1.5.4-1ubuntu4_all.deb +md5 = 2f9893e68cba11320605bbc554000b2f +source = repo:trusty-updates/universe/ + +[python-pkg-resources_3.3-1ubuntu2] +file = python-pkg-resources_3.3-1ubuntu2_all.deb +md5 = d12cb222f33ac215006d472c63d3aeb8 +source = repo:trusty-updates/main/ [python-pycurl_7.19.3-0ubuntu3] file = python-pycurl_7.19.3-0ubuntu3_amd64.deb md5 = ec3c7bd4aca6d62d35177f9f940f3032 - -[python-setuptools_3.3-1ubuntu1] -file = python-setuptools_3.3-1ubuntu1_all.deb -md5 = 96cc818890d36f1eddc7be31009eaeb9 - -[python-software-properties_0.92.37.3] -file = python-software-properties_0.92.37.3_all.deb -md5 = f9950e02dde829c9579250e61d47b883 +source = repo:trusty/main/ + +[python-requests-whl_2.2.1-1ubuntu0.3] +file = python-requests-whl_2.2.1-1ubuntu0.3_all.deb +md5 = d4a08ea174bf075523d7c045a5ef4544 +source = repo:trusty-updates/main/ + +[python-requests_2.2.1-1ubuntu0.2] +file = python-requests_2.2.1-1ubuntu0.2_all.deb +md5 = b92b5d48d282dad9b2665a454dd23d23 + +[python-setuptools-whl_3.3-1ubuntu2] +file = python-setuptools-whl_3.3-1ubuntu2_all.deb +md5 = bed8daea8be2938af22a1bc7fdc0d9f1 +source = repo:trusty-updates/main/ + +[python-setuptools_3.3-1ubuntu2] +file = python-setuptools_3.3-1ubuntu2_all.deb +md5 = 095838ab2e8028796486463d62e5b88b +source = repo:trusty-updates/main/ + +[python-six-whl_1.5.2-1ubuntu1] +file = python-six-whl_1.5.2-1ubuntu1_all.deb +md5 = d8224e11a6bf8bc46d5649b4675fe057 +source = repo:trusty-updates/main/ + +[python-software-properties_0.92.37.7] +file = python-software-properties_0.92.37.7_all.deb +md5 = cc9326a3fe5391cabff304b21c6b2741 +source = repo:trusty-updates/universe/ + +[python-urllib3-whl_1.7.1-1ubuntu4] +file = python-urllib3-whl_1.7.1-1ubuntu4_all.deb +md5 = 5614ad88debd4c93441cc119f5a478a1 +source = repo:trusty-updates/main/ + +[python-urllib3_1.7.1-1ubuntu3] +file = python-urllib3_1.7.1-1ubuntu3_all.deb +md5 = 3ec3271f16269d814975fa2e90e31749 [python-wheel_0.24.0-1~ubuntu1] file = python-wheel_0.24.0-1~ubuntu1_all.deb md5 = a1f3817d6dc2aa707d1ac2a075fabf37 +source = repo:trusty-updates/main/ [python-yaml_3.10-4ubuntu0.1] file = python-yaml_3.10-4ubuntu0.1_amd64.deb md5 = 3bbc120de69a86a8f0b996d722437fd4 +source = repo:trusty-updates/main/ -# Security updates - -[curl_7.35.0-1ubuntu2.5] -file = curl_7.35.0-1ubuntu2.5_amd64.deb -md5 = 180863ae8fa9003164506da97f95a89e - -[libcurl3_7.35.0-1ubuntu2.5] -file = libcurl3_7.35.0-1ubuntu2.5_amd64.deb -md5 = b3396e79e61f04a1fef0785bb9f3b5f7 +[python3-pkg-resources_3.3-1ubuntu2] +file = python3-pkg-resources_3.3-1ubuntu2_all.deb +md5 = e44cbc2a92ab2c53d01c7d54a79020f0 +source = repo:trusty-updates/main/ -[linux-libc-dev_3.13.0-62.102] -file = linux-libc-dev_3.13.0-62.102_amd64.deb -md5 = 76db21994104084fdbd909c79411b730 +[unattended-upgrades_0.82.1ubuntu2.4] +file = unattended-upgrades_0.82.1ubuntu2.4_all.deb +md5 = c635e645c9d91eb2d4d182d97098150a +source = repo:trusty-updates/main/ -[unattended-upgrades_0.82.1ubuntu2.3] -file = unattended-upgrades_0.82.1ubuntu2.3_all.deb -md5 = bdea6c95a3247fa735d73307bcebd31e diff --git a/build/package_configs/ubuntu1404/vcenter/depends_contrail_openstack_packages.cfg b/build/package_configs/ubuntu1404/vcenter/depends_contrail_openstack_packages.cfg deleted file mode 100644 index 90a17dc97..000000000 --- a/build/package_configs/ubuntu1404/vcenter/depends_contrail_openstack_packages.cfg +++ /dev/null @@ -1,172 +0,0 @@ -# **************************************************************************** -# CAUTION: ANY CHANGES TO DEFAULT SECTION APPLIES TO ALL SECTIONS -# IF NOT OVERWRITTEN LOCALLY -# **************************************************************************** -# Usage: -# [package name] -# file = # file name of the package -# -# location = # location where the package file is available. -# # If location is empty, default value is applied -# # Default value = /// and -# # its sub directories -# -# md5 = # md5 check sum of the package file -# -# package_type = # wrapper package name in which this package will be -# # packaged -# # eg. If a section has package_type - contrail-dependent-packages -# # then that package file will be packaged in -# # the wrapper package contrail-dependent-packages -# -# **************************************************************************** - -[DEFAULT] -file = -md5 = -location = -package_type = contrail-install-packages - -[ceilometer-agent-central_2014.1.4-0ubuntu2] -file = ceilometer-agent-central_2014.1.4-0ubuntu2_all.deb -md5 = 5374c16b771d0d3c187741b853a28c56 - -[ceilometer-agent-compute_2014.1.4-0ubuntu2] -file = ceilometer-agent-compute_2014.1.4-0ubuntu2_all.deb -md5 = 9448ecc66bafd534828592907088db3e -package_type = contrail-install-packages - -[ceilometer-agent-notification_2014.1.4-0ubuntu2] -file = ceilometer-agent-notification_2014.1.4-0ubuntu2_all.deb -md5 = 9aa471629164e5eeaf4fd102925073d4 - -[ceilometer-alarm-evaluator_2014.1.4-0ubuntu2] -file = ceilometer-alarm-evaluator_2014.1.4-0ubuntu2_all.deb -md5 = 7fcadd2a70e55982d1edbbe600e4c045 - -[ceilometer-alarm-notifier_2014.1.4-0ubuntu2] -file = ceilometer-alarm-notifier_2014.1.4-0ubuntu2_all.deb -md5 = 8c70293861f4e12bdc2d859145c1f3f2 - -[ceilometer-api_2014.1.4-0ubuntu2] -file = ceilometer-api_2014.1.4-0ubuntu2_all.deb -md5 = 63512e813f4ce0857f0cc94a4ba813f6 - -[ceilometer-collector_2014.1.4-0ubuntu2] -file = ceilometer-collector_2014.1.4-0ubuntu2_all.deb -md5 = 08b2b0ab79cb7fc0724c117c31f7e63b - -[ceilometer-common_2014.1.4-0ubuntu2] -file = ceilometer-common_2014.1.4-0ubuntu2_all.deb -md5 = 6cd38b28f901d31f96325d16e11c14c0 -package_type = contrail-install-packages - -[cinder-api_1:2014.1.4-0ubuntu2] -file = cinder-api_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = eb8868771e48a78518a48287296d07a3 - -[cinder-common_1:2014.1.4-0ubuntu2] -file = cinder-common_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 5cf2a6c270f133a56a6963da76619191 - -[cinder-scheduler_1:2014.1.4-0ubuntu2] -file = cinder-scheduler_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = b323ed073d56e97a204cbbe7ee0436b0 - -[glance-api_1:2014.1.4-0ubuntu2] -file = glance-api_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = f8e93ff6ca05201630fd5f2bd8dbd362 - -[glance-common_1:2014.1.4-0ubuntu2] -file = glance-common_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 50fdd0fdd2d226e362108d8930ba3b42 - -[glance-registry_1:2014.1.4-0ubuntu2] -file = glance-registry_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 941b550d454ff51977ccdd0517de6c5d - -[glance_1:2014.1.4-0ubuntu2] -file = glance_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 60c03f61abcb45069f16266a3cc45189 - -[heat-api-cfn_2014.1.4-0ubuntu2] -file = heat-api-cfn_2014.1.4-0ubuntu2_all.deb -md5 = c4cf8eb0719fe30da7cfd13dbb0b9b63 - -[heat-api_2014.1.4-0ubuntu2] -file = heat-api_2014.1.4-0ubuntu2_all.deb -md5 = 92db97b932c70ed609167dd4f450b242 - -[heat-common_2014.1.4-0ubuntu2] -file = heat-common_2014.1.4-0ubuntu2_all.deb -md5 = 01d0a13ab310465ad3204d6f4935b4cf - -[heat-engine_2014.1.4-0ubuntu2] -file = heat-engine_2014.1.4-0ubuntu2_all.deb -md5 = ab2c020cf1443c1ddd72e700836030f9 - -[libjs-swfobject_2.2+dfsg-1] -file = libjs-swfobject_2.2+dfsg-1_all.deb -md5 = 754241570e03dd0c8d412d3b9e7590d1 - -[novnc_1:0.4+dfsg+1+20131010+gitf68af8af3d-2] -file = novnc_1%%3a0.4+dfsg+1+20131010+gitf68af8af3d-2_all.deb -md5 = fae80db8696627b14491879893901708 - -[python-ceilometer_2014.1.4-0ubuntu2] -file = python-ceilometer_2014.1.4-0ubuntu2_all.deb -md5 = 034d0dabfa779ed4b7924890bc234003 -package_type = contrail-install-packages - -[python-ceilometerclient_1.0.8-0ubuntu1] -file = python-ceilometerclient_1.0.8-0ubuntu1_all.deb -md5 = 3b2691f75c2dac864d2114f5207a9fac -package_type = contrail-install-packages - -[python-cinder_1:2014.1.4-0ubuntu2] -file = python-cinder_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = b1aa3f09e4aa325ac37d326862ace4fb - -[python-cinderclient_1:1.0.8-0ubuntu2] -file = python-cinderclient_1%%3a1.0.8-0ubuntu2_all.deb -md5 = 4ae610e70ed46670898e7e6cf6d13a9b -package_type = contrail-install-packages - -[python-django-horizon_1:2014.1.4-0ubuntu2] -file = python-django-horizon_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 887434e4aa5cfce5ee4d0f975e5b4746 - -[python-glance_1:2014.1.4-0ubuntu2] -file = python-glance_1%%3a2014.1.4-0ubuntu2_all.deb -md5 = 417feaca51927d74331fd096c57d1d09 - -[python-glanceclient_1:0.12.0-0ubuntu1] -file = python-glanceclient_1%%3a0.12.0-0ubuntu1_all.deb -md5 = d793546f19f0ac97c830baed42bc85cd -package_type = contrail-install-packages - -[python-heat_2014.1.4-0ubuntu2] -file = python-heat_2014.1.4-0ubuntu2_all.deb -md5 = 91c9be825b405ab953ab9d1d35e2c156 - -[python-heatclient_0.2.8-0ubuntu1] -file = python-heatclient_0.2.8-0ubuntu1_all.deb -md5 = 211400536d827693652dcad106c97ff4 - -[python-novnc_1:0.4+dfsg+1+20131010+gitf68af8af3d-2] -file = python-novnc_1%%3a0.4+dfsg+1+20131010+gitf68af8af3d-2_all.deb -md5 = 88b3c3af0d2fe9339c37dae213af0d4a - -[python-swiftclient_1:2.0.3-0ubuntu1] -file = python-swiftclient_1%%3a2.0.3-0ubuntu1_all.deb -md5 = 4cfe680aff292f69baac0c0b54952b3b -package_type = contrail-install-packages - -[python-taskflow_0.1.3-0ubuntu3] -file = python-taskflow_0.1.3-0ubuntu3_all.deb -md5 = cd42bfcb1b588b79dd34f9ea518cebd1 - -[python-troveclient_1:1.0.3-0ubuntu3] -file = python-troveclient_1%%3a1.0.3-0ubuntu3_all.deb -md5 = cf06c287a83da8c96df0c3929e16ba9b - diff --git a/build/package_configs/ubuntu1404/vcenter/depends_contrail_thirdparty_packages.cfg b/build/package_configs/ubuntu1404/vcenter/depends_contrail_thirdparty_packages.cfg index 56a314686..05fa3a1ca 100644 --- a/build/package_configs/ubuntu1404/vcenter/depends_contrail_thirdparty_packages.cfg +++ b/build/package_configs/ubuntu1404/vcenter/depends_contrail_thirdparty_packages.cfg @@ -27,6 +27,18 @@ md5 = location = package_type = contrail-install-packages, contrail-thirdparty-packages +[cassandra_2.0.17] +file = cassandra_2.0.17_all.deb +md5 = 0efe0697f9129037c6bfa0514d2b26d2 + +[cassandra_2.1.13] +file = cassandra_2.1.13_all.deb +md5 = 1853e9b48d656094fec8af8e88e1b901 + +[cassandra-cpp-driver_2.2.0-1] +file = cassandra-cpp-driver_2.2.0-1_amd64.deb +md5 = 3f19fb659f3233ff35d1c1168668b08d + [consistent-hash_1.0-0contrail0] file = consistent-hash_1.0-0contrail0_amd64.deb md5 = 933c16a083d329fcb449670fb2e931d7 @@ -35,9 +47,29 @@ md5 = 933c16a083d329fcb449670fb2e931d7 file = euca2ools_2.1.3-2_amd64.deb md5 = dbb31fc15f00847c3e9e46dc957795c5 -[kafka_2.10-0.9.0.0-SNAPSHOT-0contrail0] -file = kafka_2.10-0.9.0.0-SNAPSHOT-0contrail0_amd64.deb -md5 = 50691908d039dd33ef314c77316aeb28 +[galera_25.2.9] +file = galera-25.2.9-amd64.deb +md5 = 7602c095d5d42661019bd45221615d4a + +[haproxy_1.5.4-1ppa1~precise] +file = haproxy_1.5.4-1ppa1~precise_amd64.deb +md5 = 808572e56bb7d65f8e7e21a3762bc3f4 + +[kafka_2.11-0.9.0.1-0contrail0] +file = kafka_2.11-0.9.0.1-0contrail0_amd64.deb +md5 = 38a41e87cddd1a8b893b3c8c3c212b24 + +[keepalived_1.2.13-0~276~ubuntu14.04.1] +file = keepalived_1.2.13-0~276~ubuntu14.04.1_amd64.deb +md5 = 4ccce433d4a0a5b3e8170ec077c709f7 + +[libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2] +file = libgd2-xpm_2.0.36~rc1~dfsg-6ubuntu2_amd64.deb +md5 = 858b5302af85a3ae22ea73c142e5fd26 + +[librabbitmq0_0.0.1.hg216-1] +file = librabbitmq0_0.0.1.hg216-1_amd64.deb +md5 = 942635f76ab6cf1e27c6622201690bed [librdkafka-dev_0.8.5-2-0contrail0.14.04] file = librdkafka-dev_0.8.5-2-0contrail0.14.04_amd64.deb @@ -47,6 +79,22 @@ md5 = b2b7f430a3638eb9c3a3a3cddfa8a664 file = librdkafka1_0.8.5-2-0contrail0.14.04_amd64.deb md5 = 0f8a72ecdc35e176eae4429df102f903 +[libuv_1.7.5-1] +file = libuv_1.7.5-1_amd64.deb +md5 = 76474f34e94ce80dca66f39eb2ae638b + +[lxc-docker-1.5.0_1.5.0] +file = lxc-docker-1.5.0_1.5.0_amd64.deb +md5 = e29b0a03e0d7eb54bdbbc322e26cad73 + +[lxc-docker_1.5.0] +file = lxc-docker_1.5.0_amd64.deb +md5 = 923cad1a2af2d6b0a3e8fa909ba26ca4 + +[mysql-server-wsrep_5.5.37-25.10] +file = mysql-server-wsrep_5.5.37-25.10_amd64.deb +md5 = ac8664b3bd2ea15149e2d5af6abac90f + [nodejs_0.10.35-1contrail1] file = nodejs_0.10.35-1contrail1_amd64.deb md5 = fbbf1969783bc15291039263bc88bb39 @@ -63,29 +111,25 @@ md5 = 243c920a5c91d12801c525f3dcd2a6d1 file = python-cassandra-driver_3.0.0-0contrail3_amd64.deb md5 = dbedcd22c6dd20436b56e8fdb0b3983f -[python-certifi_1.0.1-1contrail1] -file = python-certifi_1.0.1-1contrail1_all.deb -md5 = 46ab19b4096c653c10854f5c5e735f1c +[python-certifi_2015.11.20.1-2] +file = python-certifi_2015.11.20.1-2_all.deb +md5 = 760985befd8570b30f5ae928862fa8ff [python-consistent-hash_1.0-0contrail1] file = python-consistent-hash_1.0-0contrail1_amd64.deb md5 = 6ba90f706ec78584adb3a15657f290e3 +[python-docker-py_0.6.1-dev] +file = python-docker-py_0.6.1-dev_all.deb +md5 = ff9daafe11d7f904032f5c830f67941a + [python-geventhttpclient_1.1.0-1contrail1] file = python-geventhttpclient_1.1.0-1contrail1_amd64.deb md5 = 1a00d30b23e355a014e90b75243f3227 -[python-kafka-python_0.9.2-0contrail0] -file = python-kafka-python_0.9.2-0contrail0_all.deb -md5 = ca72ef4061c3f6a6a1c4f3b3e1b3bc84 - -[python-kafka_0.9.3-2+syseleven1_all] -file = python-kafka_0.9.3-2+syseleven1_all.deb -md5 = d00fb946087ded001c2c89be6cfba320 - -[python-kazoo_1.3.1-1contrail2] -file = python-kazoo_1.3.1-1contrail2_all.deb -md5 = 1160ffdc6faa72bfb6f027f5e7b18bb1 +[python-kafka_1.0.1-0contrail0] +file = python-kafka_1.0.1-0contrail0_amd64.deb +md5 = e8e1d6233260caa5d4478c639b04afcd [python-ncclient_0.4.1-1contrail1] file = python-ncclient_0.4.1-1contrail1_all.deb @@ -99,10 +143,18 @@ md5 = e2aca3b31acc87d7511ba9e5ca8a40c5 file = python-pycassa_1.11.0-1contrail2_all.deb md5 = 251c53af490a46086da56c9286b403e2 +[python-pyvmomi_5.5.0-2014.1.1-1] +file = python-pyvmomi_5.5.0-2014.1.1-1_all.deb +md5 = cdcdad00e07a88920b931215a2499a36 + [python-redis_2.8.0-1contrail1] file = python-redis_2.8.0-1contrail1_all.deb md5 = a2c82a2b974ed10471570c09aef0673d +[python-sseclient_0.0.11-0contrail0] +file = python-sseclient_0.0.11-0contrail0_amd64.deb +md5 = f34ba0eb5ba204c33ce91ad0f3e86ada + [python-xmltodict_0.9.0-1contrail1] file = python-xmltodict_0.9.0-1contrail1_all.deb md5 = 49ad578daa539e8965bbcaaac9a8045e diff --git a/build/package_configs/ubuntu1404/vcenter/depends_server_manager_packages.cfg b/build/package_configs/ubuntu1404/vcenter/depends_server_manager_packages.cfg index c7b16ff57..b2187cc87 100644 --- a/build/package_configs/ubuntu1404/vcenter/depends_server_manager_packages.cfg +++ b/build/package_configs/ubuntu1404/vcenter/depends_server_manager_packages.cfg @@ -69,8 +69,8 @@ file = supervisor_3.0r1-1_all.deb md5 = 368bfa94087bdc5eca01eae1ecc87335 [server-mgr-python-kazoo] -file = python-kazoo_1.3.1-1contrail2_all.deb -md5 = 1160ffdc6faa72bfb6f027f5e7b18bb1 +file = python-kazoo_2.2.1-1ubuntu1~cloud0_all.deb +md5 = 7d06d4b92fd53797d9b6adf443bdbb6a [server-mgr-python-consistent-hash] file = python-consistent-hash_1.0-0contrail1_amd64.deb diff --git a/build/packager.py b/build/packager.py index 4f00f52e0..c2eea7401 100755 --- a/build/packager.py +++ b/build/packager.py @@ -123,14 +123,19 @@ def parse(self): parser.set_defaults(**cfg_file_defaults['config']) ns_cliargs = parser.parse_args(self.unparsed_args) - # Create log file - ns_cliargs.logfile = self.defaults['logfile'].format(storedir=ns_cliargs.store_dir, - id=ns_cliargs.build_id) + # Create log file - if logfile is specified via CLI or config file, + # the .format() will have no effect + ns_cliargs.logfile = ns_cliargs.logfile.format(storedir=ns_cliargs.store_dir, + id=ns_cliargs.build_id) if not os.path.isdir(os.path.dirname(ns_cliargs.logfile)): os.makedirs(os.path.dirname(ns_cliargs.logfile)) - logging.config.fileConfig(self.defaults['log_config'], - defaults={'loglevel': self.defaults['loglevel'], - 'logfile': ns_cliargs.logfile}) + logging.config.fileConfig(ns_cliargs.log_config, + defaults={'loglevel': ns_cliargs.loglevel, + 'logfile' : ns_cliargs.logfile}) + + # If the console log level is set to debug, we will also + # echo output of all commands run via Utils.exec_cmd() + ns_cliargs.debug = ns_cliargs.loglevel == "DEBUG" # set default branch if ns_cliargs.branch is None: @@ -199,6 +204,15 @@ def define_args(self): aparser = argparse.ArgumentParser(parents=[cparser, os_parser], formatter_class=argparse.RawTextHelpFormatter, description=self.desc) + aparser.add_argument('--loglevel', + action='store', + help='set the loglevel for console output (DEBUG, WARN, ERROR)') + aparser.add_argument('--logfile', + action='store', + help='logging file for more verbose output') + aparser.add_argument('--log_config', + action='store', + help='file for logger config') aparser.add_argument('--version', '-v', action='version', version=self.version, diff --git a/build/setup.sh b/build/setup.sh index 024c58010..09f9d77b1 100755 --- a/build/setup.sh +++ b/build/setup.sh @@ -26,6 +26,7 @@ mkdir -p /opt/contrail/contrail_install_repo mkdir -p /opt/contrail/bin cd /opt/contrail/contrail_install_repo; tar xvzf /opt/contrail/contrail_packages/contrail_rpms.tgz +yum clean expire-cache # create shell scripts and put to bin cp /opt/contrail/contrail_packages/helpers/* /opt/contrail/bin/ @@ -33,5 +34,8 @@ cp /opt/contrail/contrail_packages/helpers/* /opt/contrail/bin/ # Remove existing python-crypto-2.0.1 rpm. yum -y --disablerepo=* remove python-crypto-2.0.1 +# to provide preference to contrail packages +yum -y install yum-plugin-priorities + #Install basic packages yum -y install contrail-fabric-utils contrail-setup diff --git a/common/control_files/barbican-api.ini b/common/control_files/barbican-api.ini new file mode 100755 index 000000000..34ce6f3f4 --- /dev/null +++ b/common/control_files/barbican-api.ini @@ -0,0 +1,12 @@ + +[program:barbican-api] +command=/bin/bash -c "exec start-stop-daemon --start --chuid barbican --chdir /var/lib/barbican --name barbican-api --exec /usr/bin/uwsgi -- --emperor /etc/barbican/vassals --logto /var/log/barbican/barbican-api.log --stats localhost:9314" +redirect_stderr=true +stdout_logfile=/var/log/contrail/barbican-api-supervisor-stdout.log +stderr_logfile=/var/log/contrail/barbican-api-supervisor-stderr.log +priority=440 +autostart=true +killasgroup=true +stopasgroup=true +stopsignal=KILL +exitcodes=0 diff --git a/common/control_files/barbican-api.initd.supervisord b/common/control_files/barbican-api.initd.supervisord new file mode 100755 index 000000000..90f40aee3 --- /dev/null +++ b/common/control_files/barbican-api.initd.supervisord @@ -0,0 +1,10 @@ +#!/bin/sh + +# chkconfig: 2345 99 01 +# description: Juniper Network Virtualization API + +if [ -e /tmp/supervisord_openstack.sock ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/barbican-worker.ini b/common/control_files/barbican-worker.ini new file mode 100755 index 000000000..81283071d --- /dev/null +++ b/common/control_files/barbican-worker.ini @@ -0,0 +1,12 @@ + +[program:barbican-worker] +command=/bin/bash -c "exec start-stop-daemon --start --chuid barbican --chdir /var/lib/barbican --name barbican-worker --exec /usr/bin/barbican-worker -- --config-file=/etc/barbican/barbican.conf --logto /var/log/barbican/barbican-worker.log" +redirect_stderr=true +stdout_logfile=/var/log/contrail/barbican-worker-supervisor-stdout.log +stderr_logfile=/var/log/contrail/barbican-worker-supervisor-stderr.log +priority=440 +autostart=true +killasgroup=true +stopasgroup=true +stopsignal=KILL +exitcodes=0 diff --git a/common/control_files/barbican-worker.initd.supervisord b/common/control_files/barbican-worker.initd.supervisord new file mode 100755 index 000000000..90f40aee3 --- /dev/null +++ b/common/control_files/barbican-worker.initd.supervisord @@ -0,0 +1,10 @@ +#!/bin/sh + +# chkconfig: 2345 99 01 +# description: Juniper Network Virtualization API + +if [ -e /tmp/supervisord_openstack.sock ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/cinder-api.initd.supervisord b/common/control_files/cinder-api.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/cinder-api.initd.supervisord +++ b/common/control_files/cinder-api.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/cinder-scheduler.initd.supervisord b/common/control_files/cinder-scheduler.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/cinder-scheduler.initd.supervisord +++ b/common/control_files/cinder-scheduler.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/contrail-database.initd b/common/control_files/contrail-database.initd index 0657dd36a..c2d993082 100755 --- a/common/control_files/contrail-database.initd +++ b/common/control_files/contrail-database.initd @@ -17,7 +17,7 @@ # Author: Megh Bhatt NAME=cassandra -PIDFILE=/var/run/$NAME.pid +PIDFILE=/var/run/$NAME/$NAME.pid SERVICE="service $NAME" CLUSTER_STATUS_UP_FILE=/var/log/cassandra/status-up DEFAULT_GC_GRACE_SECONDS=864000 @@ -65,7 +65,7 @@ max_down_seconds_before_repair() # process is not running but the pidfile exists (to match the exit codes for # the "status" command; see LSB core spec 3.1, section 20.2) # -CMD_PATT="-user.cassandra.+CassandraDaemon" +CMD_PATT="Dcassandra-pidfile=.*cassandra\.pid" is_running() { if [ -f $PIDFILE ]; then @@ -87,6 +87,9 @@ do_start() # 2 if daemon could not be started is_running && return 1 + [ -e `dirname "$PIDFILE"` ] || \ + install -d -ocassandra -gcassandra -m755 `dirname $PIDFILE` + max_allowed_down_seconds max_down_seconds_before_repair seconds_since_last_stop diff --git a/common/control_files/contrail-vrouter.initd.supervisord b/common/control_files/contrail-vrouter.initd.supervisord index d7c1bf99a..b6a6bdd75 100644 --- a/common/control_files/contrail-vrouter.initd.supervisord +++ b/common/control_files/contrail-vrouter.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 11 01 # description: Juniper Network Virtualization service offering -supervisorctl -s unix:///tmp/supervisord_vrouter.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_vrouter.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_vrouter.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_vrouter.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/contrail-webui-middleware-sm.initd.supervisord b/common/control_files/contrail-webui-middleware-sm.initd.supervisord index af6dd56a4..4098e9c19 100755 --- a/common/control_files/contrail-webui-middleware-sm.initd.supervisord +++ b/common/control_files/contrail-webui-middleware-sm.initd.supervisord @@ -3,5 +3,10 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization WebUI Server Manager Middleware -supervisorctl -s unix:///tmp/supervisord_webui_sm.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_webui_sm.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_webui_sm.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_webui_sm.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/contrail-webui-middleware.initd.supervisord b/common/control_files/contrail-webui-middleware.initd.supervisord index 14e83e1bf..28b7f707b 100755 --- a/common/control_files/contrail-webui-middleware.initd.supervisord +++ b/common/control_files/contrail-webui-middleware.initd.supervisord @@ -3,5 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization WebUI Middleware -supervisorctl -s unix:///tmp/supervisord_webui.sock ${1} `basename ${0}` - +sock_file=/tmp/supervisord_webui.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_webui.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_webui.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/contrail-webui-sm.initd.supervisord b/common/control_files/contrail-webui-sm.initd.supervisord index 62a41fe39..f17a13fac 100755 --- a/common/control_files/contrail-webui-sm.initd.supervisord +++ b/common/control_files/contrail-webui-sm.initd.supervisord @@ -3,5 +3,10 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization Server Manager WebUI -supervisorctl -s unix:///tmp/supervisord_webui_sm.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_webui_sm.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_webui_sm.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_webui_sm..sock ${1} `basename ${0}` +fi diff --git a/common/control_files/contrail-webui.initd.supervisord b/common/control_files/contrail-webui.initd.supervisord index 71a84d585..4db780a0d 100755 --- a/common/control_files/contrail-webui.initd.supervisord +++ b/common/control_files/contrail-webui.initd.supervisord @@ -3,5 +3,10 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization WebUI -supervisorctl -s unix:///tmp/supervisord_webui.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_webui.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_webui.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_webui.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/glance-api.initd.supervisord b/common/control_files/glance-api.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/glance-api.initd.supervisord +++ b/common/control_files/glance-api.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/glance-registry.initd.supervisord b/common/control_files/glance-registry.initd.supervisord index 2e2799578..97f6bcd43 100755 --- a/common/control_files/glance-registry.initd.supervisord +++ b/common/control_files/glance-registry.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/heat-api-cfn.initd.supervisord b/common/control_files/heat-api-cfn.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/heat-api-cfn.initd.supervisord +++ b/common/control_files/heat-api-cfn.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/heat-api.initd.supervisord b/common/control_files/heat-api.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/heat-api.initd.supervisord +++ b/common/control_files/heat-api.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/heat-engine.initd.supervisord b/common/control_files/heat-engine.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/heat-engine.initd.supervisord +++ b/common/control_files/heat-engine.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/ifmap.initd.supervisord b/common/control_files/ifmap.initd.supervisord index d5202b089..aae0fd478 100644 --- a/common/control_files/ifmap.initd.supervisord +++ b/common/control_files/ifmap.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_config.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_config.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_config.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_config.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/kafka.initd b/common/control_files/kafka.initd index be97cd3c3..be42fa83e 100755 --- a/common/control_files/kafka.initd +++ b/common/control_files/kafka.initd @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization Collector -supervisorctl -s unix:///tmp/supervisord_database.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_database.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_database.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_database.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/keystone.initd.supervisord b/common/control_files/keystone.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/keystone.initd.supervisord +++ b/common/control_files/keystone.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/nova-api.ini b/common/control_files/nova-api.ini index 1f3ff0ee4..b2be93f7d 100644 --- a/common/control_files/nova-api.ini +++ b/common/control_files/nova-api.ini @@ -6,6 +6,8 @@ stdout_logfile=/var/log/contrail/nova-api-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-api-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-api.ini.centos b/common/control_files/nova-api.ini.centos index 6b5102e28..17810c15a 100755 --- a/common/control_files/nova-api.ini.centos +++ b/common/control_files/nova-api.ini.centos @@ -7,6 +7,8 @@ stdout_logfile=/var/log/contrail/nova-api-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-api-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-api.initd.supervisord b/common/control_files/nova-api.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/nova-api.initd.supervisord +++ b/common/control_files/nova-api.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/nova-cert.ini.centos b/common/control_files/nova-cert.ini.centos index b0f09d7d4..0f54cc3f2 100755 --- a/common/control_files/nova-cert.ini.centos +++ b/common/control_files/nova-cert.ini.centos @@ -7,6 +7,8 @@ stdout_logfile=/var/log/contrail/nova-cert-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-cert-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-cert.initd.supervisord b/common/control_files/nova-cert.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/nova-cert.initd.supervisord +++ b/common/control_files/nova-cert.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/nova-conductor.ini b/common/control_files/nova-conductor.ini index c7828e1c3..9839a201c 100644 --- a/common/control_files/nova-conductor.ini +++ b/common/control_files/nova-conductor.ini @@ -6,6 +6,8 @@ stdout_logfile=/var/log/contrail/nova-conductor-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-conductor-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-conductor.ini.centos b/common/control_files/nova-conductor.ini.centos index 4573a9ffd..0cbe581a2 100755 --- a/common/control_files/nova-conductor.ini.centos +++ b/common/control_files/nova-conductor.ini.centos @@ -7,6 +7,8 @@ stdout_logfile=/var/log/contrail/nova-conductor-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-conductor-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-conductor.initd.supervisord b/common/control_files/nova-conductor.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/nova-conductor.initd.supervisord +++ b/common/control_files/nova-conductor.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/nova-console.ini b/common/control_files/nova-console.ini index c283d09c3..8b4a5ea29 100644 --- a/common/control_files/nova-console.ini +++ b/common/control_files/nova-console.ini @@ -7,6 +7,8 @@ stderr_logfile=/var/log/contrail/nova-console-supervisor-stderr.log priority=440 autostart=true autorestart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-console.initd.supervisord b/common/control_files/nova-console.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/nova-console.initd.supervisord +++ b/common/control_files/nova-console.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/nova-consoleauth.ini b/common/control_files/nova-consoleauth.ini index 69d70be27..d662d6397 100644 --- a/common/control_files/nova-consoleauth.ini +++ b/common/control_files/nova-consoleauth.ini @@ -7,6 +7,8 @@ stderr_logfile=/var/log/contrail/nova-consoleauth-supervisor-stderr.log priority=440 autostart=true autorestart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-consoleauth.ini.centos b/common/control_files/nova-consoleauth.ini.centos index 59c0bf107..890c826a6 100755 --- a/common/control_files/nova-consoleauth.ini.centos +++ b/common/control_files/nova-consoleauth.ini.centos @@ -7,6 +7,8 @@ stdout_logfile=/var/log/contrail/nova-consoleauth-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-consoleauth-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-consoleauth.initd.supervisord b/common/control_files/nova-consoleauth.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/nova-consoleauth.initd.supervisord +++ b/common/control_files/nova-consoleauth.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/nova-novncproxy.ini b/common/control_files/nova-novncproxy.ini index 52fcd6275..231f908be 100644 --- a/common/control_files/nova-novncproxy.ini +++ b/common/control_files/nova-novncproxy.ini @@ -6,6 +6,8 @@ stdout_logfile=/var/log/contrail/nova-novncproxy-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-novncproxy-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-novncproxy.ini.centos b/common/control_files/nova-novncproxy.ini.centos index ffa6dc749..2513b8624 100755 --- a/common/control_files/nova-novncproxy.ini.centos +++ b/common/control_files/nova-novncproxy.ini.centos @@ -7,6 +7,8 @@ stdout_logfile=/var/log/contrail/nova-novncproxy-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-novncproxy-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-novncproxy.initd.supervisord b/common/control_files/nova-novncproxy.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/nova-novncproxy.initd.supervisord +++ b/common/control_files/nova-novncproxy.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/nova-objectstore.ini b/common/control_files/nova-objectstore.ini index c357991ac..6da948b8d 100644 --- a/common/control_files/nova-objectstore.ini +++ b/common/control_files/nova-objectstore.ini @@ -6,6 +6,8 @@ stdout_logfile=/var/log/contrail/nova-objectstore-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-objectstore-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-objectstore.initd.supervisord b/common/control_files/nova-objectstore.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/nova-objectstore.initd.supervisord +++ b/common/control_files/nova-objectstore.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/nova-scheduler.ini b/common/control_files/nova-scheduler.ini index 112d1597c..28fb59fe6 100644 --- a/common/control_files/nova-scheduler.ini +++ b/common/control_files/nova-scheduler.ini @@ -7,6 +7,7 @@ stderr_logfile=/var/log/contrail/nova-scheduler-supervisor-stderr.log priority=440 autostart=true autorestart=true +startsecs=5 startretries=10 killasgroup=true stopasgroup=true diff --git a/common/control_files/nova-scheduler.ini.centos b/common/control_files/nova-scheduler.ini.centos index 9f0413a0f..352328d22 100755 --- a/common/control_files/nova-scheduler.ini.centos +++ b/common/control_files/nova-scheduler.ini.centos @@ -7,6 +7,8 @@ stdout_logfile=/var/log/contrail/nova-scheduler-supervisor-stdout.log stderr_logfile=/var/log/contrail/nova-scheduler-supervisor-stderr.log priority=440 autostart=true +startsecs=5 +startretries=5 killasgroup=true stopasgroup=true stopsignal=KILL diff --git a/common/control_files/nova-scheduler.initd.supervisord b/common/control_files/nova-scheduler.initd.supervisord index 20c0099d5..97f6bcd43 100755 --- a/common/control_files/nova-scheduler.initd.supervisord +++ b/common/control_files/nova-scheduler.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_openstack.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_openstack.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/rabbitmq-server.initd.supervisord b/common/control_files/rabbitmq-server.initd.supervisord index 3dfbd047b..3d379a1e5 100755 --- a/common/control_files/rabbitmq-server.initd.supervisord +++ b/common/control_files/rabbitmq-server.initd.supervisord @@ -3,4 +3,9 @@ # chkconfig: 2345 99 01 # description: Juniper Network Virtualization API -supervisorctl -s unix:///tmp/supervisord_support_service.sock ${1} `basename ${0}` +sock_file=/tmp/supervisord_support_service.sock +if [ -e "$sock_file" ]; then + supervisorctl -s unix:///tmp/supervisord_support_service.sock ${1} `basename ${0}` +else + supervisorctl -s unix:///var/run/supervisord_support_service.sock ${1} `basename ${0}` +fi diff --git a/common/control_files/supervisor-analytics.service b/common/control_files/supervisor-analytics.service index 225f3bd28..ad424c4ae 100644 --- a/common/control_files/supervisor-analytics.service +++ b/common/control_files/supervisor-analytics.service @@ -5,7 +5,11 @@ After=syslog.target network.target [Service] Restart=always ExecStart=/usr/bin/supervisord -n -c /etc/contrail/supervisord_analytics.conf -ExecStopPre=/usr/bin/supervisorctl -s unix:///tmp/supervisord_analytics.sock stop all +ExecStopPre=if [ -e /tmp/supervisord_analytics.sock ]; then \ + /usr/bin/supervisorctl -s unix:///tmp/supervisord_analytics.sock stop all \ + else \ + /usr/bin/supervisorctl -s unix:///var/run/supervisord_analytics.sock stop all \ + fi ExecStopPost=/usr/bin/supervisor_killall /etc/contrail/supervisord_analytics_files LimitCORE=infinity LimitNOFILE=4096 diff --git a/common/control_files/supervisor-control.service b/common/control_files/supervisor-control.service index a3c5c9fc6..c734ca5cb 100644 --- a/common/control_files/supervisor-control.service +++ b/common/control_files/supervisor-control.service @@ -5,7 +5,11 @@ After=syslog.target network.target [Service] Restart=always ExecStart=/usr/bin/supervisord -n -c /etc/contrail/supervisord_control.conf -ExecStopPre=/usr/bin/supervisorctl -s unix:///tmp/supervisord_control.sock stop all +ExecStopPre=if [ -e /tmp/supervisord_control.sock ]; then \ + /usr/bin/supervisorctl -s unix:///tmp/supervisord_control.sock stop all \ + else \ + /usr/bin/supervisorctl -s unix:///var/run/supervisord_control.sock stop all \ + fi ExecStopPost=/usr/bin/supervisor_killall /etc/contrail/supervisord_control_files LimitCORE=infinity LimitNOFILE=4096 diff --git a/common/control_files/supervisor-openstack.initd b/common/control_files/supervisor-openstack.initd index 3da3c3892..576282984 100644 --- a/common/control_files/supervisor-openstack.initd +++ b/common/control_files/supervisor-openstack.initd @@ -40,8 +40,13 @@ function daemon_start() { } function daemon_stop() { - /usr/bin/supervisorctl -s unix:///tmp/supervisord_openstack.sock stop all - /usr/bin/supervisorctl -s unix:///tmp/supervisord_openstack.sock shutdown + if [ -e /tmp/supervisord_openstack.sock ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock stop all + supervisorctl -s unix:///tmp/supervisord_openstack.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_openstack.sock stop all + supervisorctl -s unix:///var/run/supervisord_openstack.sock shutdown + fi if [ -f $PID_FILE ]; then kill `cat $PID_FILE` rm -f $PID_FILE diff --git a/common/control_files/supervisor-openstack.upstart b/common/control_files/supervisor-openstack.upstart index e2ec480c3..f8928b81d 100644 --- a/common/control_files/supervisor-openstack.upstart +++ b/common/control_files/supervisor-openstack.upstart @@ -36,7 +36,12 @@ script end script pre-stop script - supervisorctl -s unix:///tmp/supervisord_openstack.sock stop all - supervisorctl -s unix:///tmp/supervisord_openstack.sock shutdown + if [ -e /tmp/supervisord_openstack.sock ]; then + supervisorctl -s unix:///tmp/supervisord_openstack.sock stop all + supervisorctl -s unix:///tmp/supervisord_openstack.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_openstack.sock stop all + supervisorctl -s unix:///var/run/supervisord_openstack.sock shutdown + fi /usr/bin/supervisor_killall /etc/contrail/supervisord_openstack_files end script diff --git a/common/control_files/supervisor-support-service.initd b/common/control_files/supervisor-support-service.initd index 4a869af4f..8b680dc7e 100644 --- a/common/control_files/supervisor-support-service.initd +++ b/common/control_files/supervisor-support-service.initd @@ -39,8 +39,13 @@ function daemon_start() { } function daemon_stop() { - /usr/bin/supervisorctl -s unix:///tmp/supervisord_support_service.sock stop all - /usr/bin/supervisorctl -s unix:///tmp/supervisord_support_service.sock shutdown + if [ -e /tmp/supervisord_support_service.sock ]; then + supervisorctl -s unix:///tmp/supervisord_support_service.sock stop all + supervisorctl -s unix:///tmp/supervisord_support_service.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_support_service.sock stop all + supervisorctl -s unix:///var/run/supervisord_support_service.sock shutdown + fi if [ -f $PID_FILE ]; then kill `cat $PID_FILE` rm -f $PID_FILE diff --git a/common/control_files/supervisor-support-service.upstart b/common/control_files/supervisor-support-service.upstart index 8d29908ec..1fa34a6e1 100644 --- a/common/control_files/supervisor-support-service.upstart +++ b/common/control_files/supervisor-support-service.upstart @@ -31,8 +31,13 @@ script end script pre-stop script - supervisorctl -s unix:///tmp/supervisord_support_service.sock stop all - supervisorctl -s unix:///tmp/supervisord_support_service.sock shutdown + if [ -e /tmp/supervisord_support_service.sock ]; then + supervisorctl -s unix:///tmp/supervisord_support_service.sock stop all + supervisorctl -s unix:///tmp/supervisord_support_service.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_support_service.sock stop all + supervisorctl -s unix:///var/run/supervisord_support_service.sock shutdown + fi /usr/bin/supervisor_killall /etc/contrail/supervisord_support_service_files end script diff --git a/common/control_files/supervisor-vrouter.service b/common/control_files/supervisor-vrouter.service index 59dad4ff6..ed4664b13 100644 --- a/common/control_files/supervisor-vrouter.service +++ b/common/control_files/supervisor-vrouter.service @@ -7,7 +7,11 @@ Restart=always ExecStartPre=/etc/contrail/vnagent_ExecStartPre.sh ExecStart=/usr/bin/supervisord -n -c /etc/contrail/supervisord_vrouter.conf ExecStartPost=/etc/contrail/vnagent_ExecStartPost.sh -ExecStopPre=/usr/bin/supervisorctl -s unix:///tmp/supervisord_vrouter.sock stop all +ExecStopPre=if [ -e /tmp/supervisord_vrouter.sock ]; then \ + /usr/bin/supervisorctl -s unix:///tmp/supervisord_vrouter.sock stop all \ + else \ + /usr/bin/supervisorctl -s unix:///var/run/supervisord_vrouter.sock stop all \ + fi ExecStopPost=/usr/bin/supervisor_killall /etc/contrail/supervisord_vrouter_files ExecStopPost=/etc/contrail/vnagent_ExecStopPost.sh LimitCORE=infinity diff --git a/common/control_files/supervisor-vrouter.upstart b/common/control_files/supervisor-vrouter.upstart index a009f6103..6e8ab9b3d 100644 --- a/common/control_files/supervisor-vrouter.upstart +++ b/common/control_files/supervisor-vrouter.upstart @@ -35,8 +35,13 @@ post-start script end script pre-stop script - supervisorctl -s unix:///tmp/supervisord_vrouter.sock stop all - supervisorctl -s unix:///tmp/supervisord_vrouter.sock shutdown + if [ -e /tmp/supervisord_vrouter.sock ]; then + supervisorctl -s unix:///tmp/supervisord_vrouter.sock stop all + supervisorctl -s unix:///tmp/supervisord_vrouter.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_vrouter.sock stop all + supervisorctl -s unix:///var/run/supervisord_vrouter.sock shutdown + fi /usr/bin/supervisor_killall /etc/contrail/supervisord_vrouter_files /opt/contrail/bin/vrouter-pre-stop.sh end script diff --git a/common/control_files/supervisor-webui-sm.initd b/common/control_files/supervisor-webui-sm.initd index ad77da1bb..8f582f4a0 100644 --- a/common/control_files/supervisor-webui-sm.initd +++ b/common/control_files/supervisor-webui-sm.initd @@ -39,8 +39,13 @@ function daemon_start() { } function daemon_stop() { - /usr/bin/supervisorctl -s unix:///tmp/supervisord_webui_sm.sock stop all - /usr/bin/supervisorctl -s unix:///tmp/supervisord_webui_sm.sock shutdown + if [ -e /tmp/supervisord_webui_sm.sock ]; then + supervisorctl -s unix:///tmp/supervisord_webui_sm.sock stop all + supervisorctl -s unix:///tmp/supervisord_webui_sm.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_webui_sm.sock stop all + supervisorctl -s unix:///var/run/supervisord_webui_sm.sock shutdown + fi if [ -f $PID_FILE ]; then kill `cat $PID_FILE` rm -f $PID_FILE diff --git a/common/control_files/supervisor-webui-sm.upstart b/common/control_files/supervisor-webui-sm.upstart index 05333401d..41e6f76a6 100644 --- a/common/control_files/supervisor-webui-sm.upstart +++ b/common/control_files/supervisor-webui-sm.upstart @@ -30,7 +30,12 @@ script end script pre-stop script - supervisorctl -s unix:///tmp/supervisord_webui_sm.sock stop all - supervisorctl -s unix:///tmp/supervisord_webui_sm.sock shutdown + if [ -e /tmp/supervisord_webui_sm.sock ]; then + supervisorctl -s unix:///tmp/supervisord_webui_sm.sock stop all + supervisorctl -s unix:///tmp/supervisord_webui_sm.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_webui_sm.sock stop all + supervisorctl -s unix:///var/run/supervisord_webui_sm.sock shutdown + fi /usr/bin/supervisor_killall /etc/contrail/supervisord_webui_sm_files end script diff --git a/common/control_files/supervisor-webui.initd b/common/control_files/supervisor-webui.initd index 77fd292d8..e1eb3c673 100644 --- a/common/control_files/supervisor-webui.initd +++ b/common/control_files/supervisor-webui.initd @@ -39,8 +39,13 @@ function daemon_start() { } function daemon_stop() { - /usr/bin/supervisorctl -s unix:///tmp/supervisord_webui.sock stop all - /usr/bin/supervisorctl -s unix:///tmp/supervisord_webui.sock shutdown + if [ -e /tmp/supervisord_webui.sock ]; then + supervisorctl -s unix:///tmp/supervisord_webui.sock stop all + supervisorctl -s unix:///tmp/supervisord_webui.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_webui.sock stop all + supervisorctl -s unix:///var/run/supervisord_webui.sock shutdown + fi if [ -f $PID_FILE ]; then kill `cat $PID_FILE` rm -f $PID_FILE diff --git a/common/control_files/supervisor-webui.service b/common/control_files/supervisor-webui.service index d865cff36..f5e59a374 100755 --- a/common/control_files/supervisor-webui.service +++ b/common/control_files/supervisor-webui.service @@ -5,7 +5,11 @@ After=redis.service [Service] Restart=always ExecStart=/usr/bin/supervisord -n -c /etc/contrail/supervisord_webui.conf -ExecStopPre=/usr/bin/supervisorctl -s unix:///tmp/supervisord_webui.sock stop all +ExecStopPre=if [ -e /tmp/supervisord_webui.sock ]; then \ + /usr/bin/supervisorctl -s unix:///tmp/supervisord_webui.sock stop all \ + else \ + /usr/bin/supervisorctl -s unix:///var/run/supervisord_webui.sock stop all \ + fi ExecStopPost=/usr/bin/supervisor_killall /etc/contrail/supervisord_webui_files LimitCORE=infinity LimitNOFILE=4096 diff --git a/common/control_files/supervisor-webui.upstart b/common/control_files/supervisor-webui.upstart index 37b8e254b..726afca9b 100644 --- a/common/control_files/supervisor-webui.upstart +++ b/common/control_files/supervisor-webui.upstart @@ -30,7 +30,12 @@ script end script pre-stop script - supervisorctl -s unix:///tmp/supervisord_webui.sock stop all - supervisorctl -s unix:///tmp/supervisord_webui.sock shutdown + if [ -e /tmp/supervisord_webui.sock ]; then + supervisorctl -s unix:///tmp/supervisord_webui.sock stop all + supervisorctl -s unix:///tmp/supervisord_webui.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_webui.sock stop all + supervisorctl -s unix:///var/run/supervisord_webui.sock shutdown + fi /usr/bin/supervisor_killall /etc/contrail/supervisord_webui_files end script diff --git a/common/control_files/supervisord-contrail-database.upstart b/common/control_files/supervisord-contrail-database.upstart index 1ef9d33b1..f80728b67 100644 --- a/common/control_files/supervisord-contrail-database.upstart +++ b/common/control_files/supervisord-contrail-database.upstart @@ -30,7 +30,12 @@ script end script pre-stop script - supervisorctl -s unix:///tmp/supervisord_database.sock stop all - supervisorctl -s unix:///tmp/supervisord_database.sock shutdown + if [ -e /tmp/supervisord_database.sock ]; then + supervisorctl -s unix:///tmp/supervisord_database.sock stop all + supervisorctl -s unix:///tmp/supervisord_database.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_database.sock stop all + supervisorctl -s unix:///var/run/supervisord_database.sock shutdown + fi end script diff --git a/common/control_files/supervisord_contrail_database.initd b/common/control_files/supervisord_contrail_database.initd index 404e6c853..cf2d57d4a 100755 --- a/common/control_files/supervisord_contrail_database.initd +++ b/common/control_files/supervisord_contrail_database.initd @@ -35,8 +35,13 @@ function daemon_start() { } function daemon_stop() { - /usr/bin/supervisorctl -s unix:///tmp/supervisord_database.sock stop all - /usr/bin/supervisorctl -s unix:///tmp/supervisord_database.sock shutdown + if [ -e /tmp/supervisord_database.sock ]; then + supervisorctl -s unix:///tmp/supervisord_database.sock stop all + supervisorctl -s unix:///tmp/supervisord_database.sock shutdown + else + supervisorctl -s unix:///var/run/supervisord_database.sock stop all + supervisorctl -s unix:///var/run/supervisord_database.sock shutdown + fi if [ -f $PID_FILE ]; then kill `cat $PID_FILE` rm -f $PID_FILE diff --git a/common/control_files/supervisord_database.conf b/common/control_files/supervisord_database.conf index 46abd7969..2e8f682f1 100644 --- a/common/control_files/supervisord_database.conf +++ b/common/control_files/supervisord_database.conf @@ -3,7 +3,7 @@ ; For more example, check supervisord_analytics.conf [unix_http_server] -file=/tmp/supervisord_database.sock ; (the path to the socket file) +file=/var/run/supervisord_database.sock ; (the path to the socket file) chmod=0700 ; socket file mode (default 0700) ;chown=nobody:nogroup ; socket file uid:gid owner ;username=user ; (default is no username (open server)) @@ -38,7 +38,7 @@ nocleanup=true ; (don't clean up tempfiles at start;default false) supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] -serverurl=unix:///tmp/supervisord_database.sock ; use a unix:// URL for a unix socket +serverurl=unix:///var/run/supervisord_database.sock ; use a unix:// URL for a unix socket ;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket ;username=chris ; should be same as http_username if set ;password=123 ; should be same as http_password if set diff --git a/common/control_files/supervisord_openstack.conf b/common/control_files/supervisord_openstack.conf index 0e0f3c8c8..b54d1ffdf 100755 --- a/common/control_files/supervisord_openstack.conf +++ b/common/control_files/supervisord_openstack.conf @@ -7,7 +7,7 @@ ; variables can be expanded using this syntax: "%(ENV_HOME)s". [unix_http_server] -file=/tmp/supervisord_openstack.sock ; (the path to the socket file) +file=/var/run/supervisord_openstack.sock ; (the path to the socket file) chmod=0700 ; socket file mode (default 0700) ;chown=nobody:nogroup ; socket file uid:gid owner ;username=user ; (default is no username (open server)) @@ -43,7 +43,7 @@ childlogdir=/var/log/contrail ; ('AUTO' child log dir, default $TEMP) supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] -serverurl=unix:///tmp/supervisor_openstack.sock ; use a unix:// URL for a unix socket +serverurl=unix:///var/run/supervisor_openstack.sock ; use a unix:// URL for a unix socket ;serverurl=http://127.0.0.1:9010 ; use an http:// url to specify an inet socket ;username=chris ; should be same as http_username if set ;password=123 ; should be same as http_password if set diff --git a/common/control_files/supervisord_support_service.conf b/common/control_files/supervisord_support_service.conf index 2c5e81b38..61e7986a0 100644 --- a/common/control_files/supervisord_support_service.conf +++ b/common/control_files/supervisord_support_service.conf @@ -7,7 +7,7 @@ ; variables can be expanded using this syntax: "%(ENV_HOME)s". [unix_http_server] -file=/tmp/supervisord_support_service.sock ; (the path to the socket file) +file=/var/run/supervisord_support_service.sock ; (the path to the socket file) chmod=0700 ; socket file mode (default 0700) ;chown=nobody:nogroup ; socket file uid:gid owner ;username=user ; (default is no username (open server)) @@ -25,7 +25,7 @@ logfile_backups=3 ; (num of main logfile rotation backups;default 10) loglevel=info ; (log level;default info; others: debug,warn,trace) pidfile=/var/run/supervisord-support-service.pid ; (supervisord pidfile;default supervisord.pid) nodaemon=false ; (start in foreground if true;default false) -minfds=1024 ; (min. avail startup file descriptors;default 1024) +minfds=10240 ; (min. avail startup file descriptors;default 1024) minprocs=200 ; (min. avail process descriptors;default 200) ;umask=022 ; (process file creation umask;default 022) ;user=chrism ; (default is current user, required if root) @@ -43,7 +43,7 @@ childlogdir=/var/log/contrail ; ('AUTO' child log dir, default $TEMP) supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] -serverurl=unix:///tmp/supervisord_support_service.sock ; use a unix:// URL for a unix socket +serverurl=unix:///var/run/supervisord_support_service.sock ; use a unix:// URL for a unix socket ;serverurl=http://127.0.0.1:9011 ; use an http:// url to specify an inet socket ;username=chris ; should be same as http_username if set ;password=123 ; should be same as http_password if set diff --git a/common/control_files/supervisord_vrouter.conf b/common/control_files/supervisord_vrouter.conf index 20fe13eb5..011578d5a 100644 --- a/common/control_files/supervisord_vrouter.conf +++ b/common/control_files/supervisord_vrouter.conf @@ -7,7 +7,7 @@ ; variables can be expanded using this syntax: "%(ENV_HOME)s". [unix_http_server] -file=/tmp/supervisord_vrouter.sock ; (the path to the socket file) +file=/var/run/supervisord_vrouter.sock ; (the path to the socket file) chmod=0700 ; socket file mode (default 0700) ;chown=nobody:nogroup ; socket file uid:gid owner ;username=user ; (default is no username (open server)) @@ -25,7 +25,7 @@ logfile_backups=3 ; (num of main logfile rotation backups;default 10) loglevel=info ; (log level;default info; others: debug,warn,trace) pidfile=/var/run/supervisord-vrouter.pid ; (supervisord pidfile;default supervisord.pid) nodaemon=false ; (start in foreground if true;default false) -minfds=1024 ; (min. avail startup file descriptors;default 1024) +minfds=10240 ; (min. avail startup file descriptors;default 1024) minprocs=200 ; (min. avail process descriptors;default 200) ;umask=022 ; (process file creation umask;default 022) ;user=chrism ; (default is current user, required if root) @@ -43,7 +43,7 @@ childlogdir=/var/log/contrail ; ('AUTO' child log dir, default $TEMP) supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] -serverurl=unix:///tmp/supervisord_vrouter.sock ; use a unix:// URL for a unix socket +serverurl=unix:///var/run/supervisord_vrouter.sock ; use a unix:// URL for a unix socket ;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket ;username=chris ; should be same as http_username if set ;password=123 ; should be same as http_password if set diff --git a/common/control_files/supervisord_webui.conf b/common/control_files/supervisord_webui.conf index f0eb90ab1..9186643c8 100644 --- a/common/control_files/supervisord_webui.conf +++ b/common/control_files/supervisord_webui.conf @@ -7,7 +7,7 @@ ; variables can be expanded using this syntax: "%(ENV_HOME)s". [unix_http_server] -file=/tmp/supervisord_webui.sock ; (the path to the socket file) +file=/var/run/supervisord_webui.sock ; (the path to the socket file) chmod=0700 ; socket file mode (default 0700) ;chown=nobody:nogroup ; socket file uid:gid owner ;username=user ; (default is no username (open server)) @@ -25,7 +25,7 @@ logfile_backups=3 ; (num of main logfile rotation backups;default 10) loglevel=info ; (log level;default info; others: debug,warn,trace) pidfile=/var/run/supervisord_webui.pid ; (supervisord pidfile;default supervisord.pid) nodaemon=false ; (start in foreground if true;default false) -minfds=1024 ; (min. avail startup file descriptors;default 1024) +minfds=10240 ; (min. avail startup file descriptors;default 1024) minprocs=200 ; (min. avail process descriptors;default 200) ;umask=022 ; (process file creation umask;default 022) ;user=chrism ; (default is current user, required if root) @@ -43,7 +43,7 @@ childlogdir=/var/log/contrail ; ('AUTO' child log dir, default $TEMP) supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] -serverurl=unix:///tmp/supervisord_webui.sock ; use a unix:// URL for a unix socket +serverurl=unix:///var/run/supervisord_webui.sock ; use a unix:// URL for a unix socket ;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket ;username=chris ; should be same as http_username if set ;password=123 ; should be same as http_password if set diff --git a/common/control_files/supervisord_webui_sm.conf b/common/control_files/supervisord_webui_sm.conf index 52878daae..cbf460791 100644 --- a/common/control_files/supervisord_webui_sm.conf +++ b/common/control_files/supervisord_webui_sm.conf @@ -7,7 +7,7 @@ ; variables can be expanded using this syntax: "%(ENV_HOME)s". [unix_http_server] -file=/tmp/supervisord_webui_sm.sock ; (the path to the socket file) +file=/var/run/supervisord_webui_sm.sock ; (the path to the socket file) chmod=0700 ; socket file mode (default 0700) ;chown=nobody:nogroup ; socket file uid:gid owner ;username=user ; (default is no username (open server)) @@ -43,7 +43,7 @@ childlogdir=/var/log/contrail ; ('AUTO' child log dir, default $TEMP) supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] -serverurl=unix:///tmp/supervisord_webui_sm.sock ; use a unix:// URL for a unix socket +serverurl=unix:///var/run/supervisord_webui_sm.sock ; use a unix:// URL for a unix socket ;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket ;username=chris ; should be same as http_username if set ;password=123 ; should be same as http_password if set diff --git a/common/control_files/vnagent_ExecStartPre.sh b/common/control_files/vnagent_ExecStartPre.sh index ebd27674c..3f35c3007 100755 --- a/common/control_files/vnagent_ExecStartPre.sh +++ b/common/control_files/vnagent_ExecStartPre.sh @@ -40,6 +40,7 @@ function pkt_setup () { fi echo $str > $f/rps_cpus done + ifconfig $1 up } [ -f /etc/contrail/agent_param ] || error_exit $LINENO "Did you run setup?" @@ -49,7 +50,8 @@ source /etc/contrail/agent_param source $VHOST_CFG function insert_vrouter() { - insmod $kmod + depmod -a + modprobe $kmod if [ $? != 0 ] then echo "$(date) : Error inserting vrouter module" diff --git a/common/control_files/vnagent_param_setup.sh b/common/control_files/vnagent_param_setup.sh index 27bbcf39a..c7c4e029e 100755 --- a/common/control_files/vnagent_param_setup.sh +++ b/common/control_files/vnagent_param_setup.sh @@ -17,7 +17,7 @@ echo CONFIG=$CONFIG >> $CFG_FILE prog=/usr/bin/contrail-vrouter-agent echo prog=$prog >> $CFG_FILE -kmod=/lib/modules/${OS_VER}/extra/net/vrouter/vrouter.ko +kmod=vrouter echo kmod=$kmod >> $CFG_FILE pname=$(basename $prog) diff --git a/common/control_files/vrouter-functions.sh b/common/control_files/vrouter-functions.sh index c7b9784a3..0542b4e77 100755 --- a/common/control_files/vrouter-functions.sh +++ b/common/control_files/vrouter-functions.sh @@ -332,26 +332,29 @@ _dpdk_system_bond_info_collect() { _dpdk_vrouter_ini_update() { _dpdk_system_bond_info_collect - ## update virtual device (bond) configuration - dpdk_vdev="" - if [ -n "${DPDK_BOND_MODE}" -a -n "${DPDK_BOND_NUMA}" ]; then - echo "${0##*/}: updating bonding configuration in ${VROUTER_DPDK_INI}..." - - dpdk_vdev=" --vdev \"eth_bond_${DPDK_PHY},mode=${DPDK_BOND_MODE}" - dpdk_vdev="${dpdk_vdev},xmit_policy=${DPDK_BOND_POLICY}" - dpdk_vdev="${dpdk_vdev},socket_id=${DPDK_BOND_NUMA}" - for SLAVE in ${DPDK_BOND_PCIS}; do - dpdk_vdev="${dpdk_vdev},slave=${SLAVE}" - done - dpdk_vdev="${dpdk_vdev}\"" - fi - ## always update the ini file, so we remove vdev argument - ## whenever Linux configuration has changed - sed -ri.bak \ - -e 's/(^ *command *=.*vrouter-dpdk.*) (--vdev +\"[^"]+\"|--vdev +[^ ]+)(.*) *$/\1\3/' \ - -e 's/(^ *command *=.*vrouter-dpdk.*) (--vdev +\"[^"]+\"|--vdev +[^ ]+)(.*) *$/\1\3/' \ - -e "s/(^ *command *=.*vrouter-dpdk.*)/\\1${dpdk_vdev}/" \ - ${VROUTER_DPDK_INI} + ## update virtual device (bond) configuration if needed + cat ${VROUTER_DPDK_INI} | grep "\-\-vdev" + if [ $? -ne 0 ]; + then + dpdk_vdev="" + if [ -n "${DPDK_BOND_MODE}" -a -n "${DPDK_BOND_NUMA}" ]; then + echo "${0##*/}: updating bonding configuration in ${VROUTER_DPDK_INI}..." + + dpdk_vdev=" --vdev \"eth_bond_${DPDK_PHY},mode=${DPDK_BOND_MODE}" + dpdk_vdev="${dpdk_vdev},xmit_policy=${DPDK_BOND_POLICY}" + dpdk_vdev="${dpdk_vdev},socket_id=${DPDK_BOND_NUMA},mac=${DPDK_PHY_MAC}" + for SLAVE in ${DPDK_BOND_PCIS}; do + dpdk_vdev="${dpdk_vdev},slave=${SLAVE}" + done + dpdk_vdev="${dpdk_vdev}\"" + fi + ## update the --vdev string if it does not exist + sed -ri.bak \ + -e 's/(^ *command *=.*vrouter-dpdk.*) (--vdev +\"[^"]+\"|--vdev +[^ ]+)(.*) *$/\1\3/' \ + -e 's/(^ *command *=.*vrouter-dpdk.*) (--vdev +\"[^"]+\"|--vdev +[^ ]+)(.*) *$/\1\3/' \ + -e "s/(^ *command *=.*vrouter-dpdk.*)/\\1${dpdk_vdev}/" \ + ${VROUTER_DPDK_INI} + fi ## update VLAN configuration @@ -395,6 +398,36 @@ _dpdk_vrouter_ini_update() { ${VROUTER_DPDK_INI} } +## +## Wait till bond interface is up and all slaves attached +## +_dpdk_wait_for_bond_ready() { + #if DPDK_PHY is a vlan, remove the '.' + bond_name=$(echo ${DPDK_PHY} | cut -d. -f1) + bond_dir="/sys/class/net/${bond_name}/bonding" + for iface in $(ifquery --list); do + ifquery $iface | grep "bond-master" | grep ${bond_name} + if [ $? -eq 0 ]; + then + timeout=0 + # Wait upto 60 sec till the interface is enslaved + while [ $timeout -lt 60 ]; + do + cat ${bond_dir}/slaves | grep $iface + if [ $? -ne 0 ]; + then + echo "Waiting for interface $iface to be ready" + sleep 1 + else + echo "Slave interface $iface ready" + break + fi + timeout=$(expr $timeout + 1) + done + fi + done +} + ## ## Bind vRouter/DPDK Interface(s) to DPDK Drivers ## The function is used in pre/post start scripts @@ -412,6 +445,9 @@ vrouter_dpdk_if_bind() { loops=0 while [ ! -e /sys/class/net/${DPDK_PHY} ]; do sleep 2 + #if DPDK_PHY is a vlan on a bond, might need to bring it up explicitly + # after the slaves are added to the bond (especially if slaves are VFs) + ifup ${DPDK_PHY} loops=$(($loops + 1)) if [ $loops -ge 60 ]; then echo "$(date): Error binding physical interface ${DPDK_PHY}: device not found" @@ -426,6 +462,7 @@ vrouter_dpdk_if_bind() { # multiple kthreads for port monitoring modprobe rte_kni kthread_mode=multiple + _dpdk_wait_for_bond_ready _dpdk_system_bond_info_collect _dpdk_vrouter_ini_update @@ -531,17 +568,29 @@ vrouter_dpdk_if_unbind() { rmmod igb_uio echo "$(date): Re-initialize networking." + bond_name=$(echo ${DPDK_PHY} | cut -d. -f1) for iface in $(ifquery --list); do - if ifquery $iface | grep -i "bond"; + if ifquery $iface | grep -i "$bond_name"; then ifdown $iface fi done - + + # Make the bond slaves up + # Bond slaves with automatically make the bond master up + for iface in $(ifquery --list); + do + if ifquery $iface | grep -i "bond-master:"; + then + ifup $iface + fi + done + + # Make other interfaces up (which are still down) for iface in $(ifquery --list); do - if ifquery $iface | grep -i "bond"; + if ! ifquery --state $iface; then ifup $iface fi diff --git a/common/debian/Makefile b/common/debian/Makefile index ea871db07..a299a14f8 100644 --- a/common/debian/Makefile +++ b/common/debian/Makefile @@ -14,23 +14,51 @@ else export CONTRAIL_SKU := havana endif +# If contrail-test repo is present, then it will be packaged (as tgz) +# Maybe be over-ridden based on CONTRAIL_SKU +ifeq ($(wildcard $(SB_TOP)/third_party/contrail-test),) + CONTRAIL_TEST := +else + CONTRAIL_TEST := contrail-test-deb +endif + +# Ditto for contrail-test-ci repo +ifeq ($(wildcard ${SB_TOP}/tools/contrail-test-ci),) + CONTRAIL_TEST_CI := +else + CONTRAIL_TEST_CI := contrail-test-ci-deb +endif + CEILOMETER_PLUGIN := ceilometer-plugin-contrail-deb +ifeq ($(CONTRAIL_SKU),liberty) + CONTRAIL_OPENSTACK := contrail-openstack-liberty-deb + CONTRAIL_HEAT := contrail-heat-deb + CONTRAIL_OPENSTACK_CONFIG := contrail-openstack-config-liberty-deb + CONTRAIL_OPENSTACK_VROUTER := contrail-openstack-vrouter-liberty-deb + ifeq ($(SERIES),trusty) + CONTRAIL_VRDPDK_INIT := contrail-vrouter-dpdk-init-deb + CONTRAIL_VRDPDK_BIN := contrail-vrouter-dpdk + endif +else + CONTRAIL_OPENSTACK_CONFIG := contrail-openstack-config-deb +endif + ifeq ($(CONTRAIL_SKU),kilo) CONTRAIL_OPENSTACK := contrail-openstack-kilo-deb CONTRAIL_HEAT := contrail-heat-deb CONTRAIL_OPENSTACK_CONFIG := contrail-openstack-config-kilo-deb + CONTRAIL_OPENSTACK_VROUTER := contrail-openstack-vrouter-deb ifeq ($(SERIES),trusty) CONTRAIL_VRDPDK_INIT := contrail-vrouter-dpdk-init-deb CONTRAIL_VRDPDK_BIN := contrail-vrouter-dpdk endif -else - CONTRAIL_OPENSTACK_CONFIG := contrail-openstack-config-deb endif ifeq ($(CONTRAIL_SKU),juno) CONTRAIL_OPENSTACK := contrail-openstack-juno-deb CONTRAIL_HEAT := contrail-heat-deb + CONTRAIL_OPENSTACK_VROUTER := contrail-openstack-vrouter-deb ifeq ($(SERIES),trusty) CONTRAIL_VRDPDK_INIT := contrail-vrouter-dpdk-init-deb CONTRAIL_VRDPDK_BIN := contrail-vrouter-dpdk @@ -40,6 +68,7 @@ endif ifeq ($(CONTRAIL_SKU),icehouse) CONTRAIL_OPENSTACK := contrail-openstack-icehouse-deb CONTRAIL_HEAT := contrail-heat-deb + CONTRAIL_OPENSTACK_VROUTER := contrail-openstack-vrouter-deb ifeq ($(SERIES),precise) CONTRAIL_VRDPDK_INIT := contrail-vrouter-dpdk-init-deb CONTRAIL_VRDPDK_BIN := contrail-vrouter-dpdk @@ -51,6 +80,8 @@ ifeq ($(CONTRAIL_SKU),icehouse) endif ifeq ($(CONTRAIL_SKU), vcenter) + # We do not build contrail-test-ci tarball for vcenter + CONTRAIL_TEST_CI := CEILOMETER_PLUGIN := ifeq ($(SERIES),precise) CONTRAIL_VRDPDK_INIT := contrail-vrouter-dpdk-init-deb @@ -65,6 +96,7 @@ endif ifeq ($(CONTRAIL_SKU),havana) CEILOMETER_PLUGIN := CONTRAIL_OPENSTACK := contrail-openstack-deb + CONTRAIL_OPENSTACK_VROUTER := contrail-openstack-vrouter-deb endif KVERS ?= $(shell uname -r) @@ -99,11 +131,13 @@ PACKAGES = \ contrail-openstack-analytics-deb \ $(CONTRAIL_OPENSTACK_CONFIG) \ contrail-openstack-control-deb \ + contrail-database-common-deb \ contrail-openstack-database-deb \ - contrail-openstack-vrouter-deb \ + $(CONTRAIL_OPENSTACK_VROUTER) \ contrail-openstack-webui-deb \ contrail-fabric-utils-deb \ - contrail-test-deb \ + $(CONTRAIL_TEST_CI) \ + $(CONTRAIL_TEST) \ libvirt-deb \ contrail-openstack-dashboard-deb \ contrail-ostack-dashboard-deb \ @@ -132,10 +166,12 @@ PACKAGES_VMWARE = \ contrail-openstack-ha-deb \ contrail-openstack-analytics-deb \ contrail-openstack-control-deb \ + contrail-database-common-deb \ contrail-openstack-database-deb \ contrail-openstack-webui-deb \ contrail-fabric-utils-deb \ - contrail-test-deb \ + $(CONTRAIL_TEST_CI) \ + $(CONTRAIL_TEST) \ libvirt-deb \ contrail-f5-deb \ contrail-vmware-config-deb \ @@ -183,7 +219,7 @@ clean-%: KERNEL_VERSIONS := 3.8.0-29-generic 3.2.0-58-generic 3.2.0-51-generic 3.11.0-22-generic \ 3.13.0-24-generic 3.8.0-31-generic 3.13.0-34-generic 3.13.0-35-generic \ - 3.13.0-40-generic + 3.13.0-40-generic 3.13.0-83-generic 3.13.0-85-generic AVAILABLE_KERNEL_VERSIONS := $(foreach kname, $(KERNEL_VERSIONS), $(shell [ -d /lib/modules/$(kname)/build ] && echo $(kname))) @@ -372,14 +408,24 @@ contrail-fabric-utils-clean: rm -rf ${BUILDDIR} rm -rf ${TGZ_FILE} +contrail-test-ci-deb: + @mkdir -p $(SB_TOP)/build/tools + (cd ${SB_TOP}/tools && tar -cvzf $(SB_TOP)/build/artifacts_extra/contrail-test-ci-$(VERSION)~$(CONTRAIL_SKU).tgz contrail-test-ci) + @echo "Wrote: $(SB_TOP)/build/artifacts_extra/contrail-test-ci-$(VERSION)~$(CONTRAIL_SKU).tgz" + contrail-test-deb: - (mkdir -p $(SB_TOP)/build/tools/; cd ${SB_TOP}/third_party/; tar -cvzf $(SB_TOP)/build/tools/contrail-test-$(VERSION)~$(CONTRAIL_SKU).tgz contrail-test) + @mkdir -p $(SB_TOP)/build/tools + (cd ${SB_TOP}/third_party && tar -cvzf $(SB_TOP)/build/tools/contrail-test-$(VERSION)~$(CONTRAIL_SKU).tgz contrail-test) @echo "Wrote: $(SB_TOP)/build/tools/contrail-test-$(VERSION)~$(CONTRAIL_SKU).tgz" contrail-test-clean: $(eval TGZ_FILE=$(SB_TOP)/build/tools/contrail-test-$(VERSION)~$(CONTRAIL_SKU).tgz) rm -rf ${TGZ_FILE} +contrail-test-ci-clean: + $(eval TGZ_FILE=$(SB_TOP)/build/artifacts_extra/contrail-test-ci-$(VERSION)~$(CONTRAIL_SKU).tgz) + rm -rf ${TGZ_FILE} + contrail-openstack-icehouse-deb: $(eval BUILDDIR=${SB_TOP}/build/debian/tmp) rm -rf ${BUILDDIR} @@ -431,6 +477,23 @@ contrail-openstack-kilo-clean: $(eval BUILDDIR=${SB_TOP}/build/debian/tmp) rm -rf ${BUILDDIR} +contrail-openstack-liberty-deb: + $(eval BUILDDIR=${SB_TOP}/build/debian/tmp) + rm -rf ${BUILDDIR} + mkdir -p ${BUILDDIR}/debian + cp -R contrail-openstack/debian ${BUILDDIR} + (cd ${BUILDDIR}; [ -f debian/control.liberty.in ] && python \ + $(SB_TOP)/tools/packaging/tools/scripts/add_dependency_version.py \ + --version $(VERSION) --file debian/control.liberty.in ) || echo no control.liberty.in + cp ${BUILDDIR}/debian/control.liberty ${BUILDDIR}/debian/control + cp ${BUILDDIR}/debian/rules.liberty ${BUILDDIR}/debian/rules + (cd ${BUILDDIR}; fakeroot debian/rules clean) + (cd ${BUILDDIR}; fakeroot debian/rules binary) + +contrail-openstack-liberty-clean: + $(eval BUILDDIR=${SB_TOP}/build/debian/tmp) + rm -rf ${BUILDDIR} + contrail-openstack-config-kilo-deb: $(eval BUILDDIR=${SB_TOP}/tools/packaging/common/debian/contrail-openstack-config) (cd ${BUILDDIR}; [ -f debian/control.kilo.in ] && python \ @@ -443,8 +506,20 @@ contrail-openstack-config-kilo-deb: contrail-openstack-config-kilo-clean: (cd ${SB_TOP}/tools/packaging/common/debian/contrail-openstack-config; fakeroot debian/rules clean) +contrail-openstack-config-liberty-deb: + $(eval BUILDDIR=${SB_TOP}/tools/packaging/common/debian/contrail-openstack-config) + (cd ${BUILDDIR}; [ -f debian/control.liberty.in ] && python \ + $(SB_TOP)/tools/packaging/tools/scripts/add_dependency_version.py \ + --version $(VERSION) --file debian/control.liberty.in ) || echo no control.liberty.in + cp ${BUILDDIR}/debian/control.liberty ${BUILDDIR}/debian/control + (cd ${BUILDDIR}; fakeroot debian/rules clean) + (cd ${BUILDDIR}; fakeroot debian/rules binary) + +contrail-openstack-config-liberty-clean: + (cd ${SB_TOP}/tools/packaging/common/debian/contrail-openstack-config; fakeroot debian/rules clean) + contrail-openstack-dashboard-deb: - if [ '${CONTRAIL_SKU}' != 'liberty' ]; then \ + if [ -d ${SB_TOP}/contrail-horizon ]; then \ $(eval BUILDDIR=${SB_TOP}/build/debian/contrail-openstack-dashboard) \ mkdir -p ${BUILDDIR}/debian; \ cp -R ${SB_TOP}/contrail-horizon/* ${BUILDDIR}; \ @@ -456,6 +531,18 @@ contrail-openstack-dashboard-clean: $(eval BUILDDIR=${SB_TOP}/build/debian/contrail-openstack-dashboard) rm -rf ${BUILDDIR} +contrail-openstack-vrouter-liberty-deb: + $(eval BUILDDIR=${SB_TOP}/tools/packaging/common/debian/contrail-openstack-vrouter) + (cd ${BUILDDIR}; [ -f debian/control.liberty.in ] && python \ + $(SB_TOP)/tools/packaging/tools/scripts/add_dependency_version.py \ + --version $(VERSION) --file debian/control.liberty.in ) || echo no control.liberty.in + cp ${BUILDDIR}/debian/control.liberty ${BUILDDIR}/debian/control + (cd ${BUILDDIR}; fakeroot debian/rules clean) + (cd ${BUILDDIR}; fakeroot debian/rules binary) + +contrail-openstack-vrouter-liberty-clean: + (cd ${SB_TOP}/tools/packaging/common/debian/contrail-openstack-vrouter; fakeroot debian/rules clean) + contrail-ostack-dashboard-deb: if [ '${CONTRAIL_SKU}' = 'havana' ]; then \ $(eval BUILDDIR=${SB_TOP}/build/debian/contrail-ostack-dashboard) \ diff --git a/common/debian/contrail-database-common/debian/changelog.in b/common/debian/contrail-database-common/debian/changelog.in new file mode 100644 index 000000000..d3d4dc111 --- /dev/null +++ b/common/debian/contrail-database-common/debian/changelog.in @@ -0,0 +1,5 @@ +contrail-database-common (BUILDTAG) ijohnson; urgency=low + + * Initial commit of contrail-database-common package + + -- ijohnson Wed, 29 Jun 2016 04:52:47 +0000 diff --git a/common/debian/contrail-database-common/debian/compat b/common/debian/contrail-database-common/debian/compat new file mode 100644 index 000000000..45a4fb75d --- /dev/null +++ b/common/debian/contrail-database-common/debian/compat @@ -0,0 +1 @@ +8 diff --git a/common/debian/contrail-database-common/debian/contrail-database-common.postinst b/common/debian/contrail-database-common/debian/contrail-database-common.postinst new file mode 100644 index 000000000..cc05e8396 --- /dev/null +++ b/common/debian/contrail-database-common/debian/contrail-database-common.postinst @@ -0,0 +1,6 @@ +#!/bin/sh + +echo "Running Postinst for contrail-database-common install.." + sudo update-rc.d cassandra disable + sudo update-rc.d contrail-database defaults +echo "Postinst for contrail-openstack-database-common done" diff --git a/common/debian/contrail-database-common/debian/control.in b/common/debian/contrail-database-common/debian/control.in new file mode 100644 index 000000000..709317215 --- /dev/null +++ b/common/debian/contrail-database-common/debian/control.in @@ -0,0 +1,14 @@ +Source: contrail-database-common +Maintainer: ijohnson +Section: misc +Priority: optional +Standards-Version: 1.0 +Build-Depends: + +Package: contrail-database-common +Architecture: all +Maintainer: ijohnson +Depends: zookeeper, cassandra (>= 2.1.9) +Replaces: contrail-openstack-database (<< 3.0.3) +Breaks: contrail-openstack-database (<< 3.0.3) +Description: Contrail database composite debian package diff --git a/common/debian/contrail-database-common/debian/copyright b/common/debian/contrail-database-common/debian/copyright new file mode 100644 index 000000000..8e93fdf6f --- /dev/null +++ b/common/debian/contrail-database-common/debian/copyright @@ -0,0 +1,5 @@ +Name: contrail-database-common +Maintainer: ijohnson +License: Commercial +Files: * + Copyright (c) 2016 Juniper Networks, Inc. All rights reserved. diff --git a/common/debian/contrail-database-common/debian/rules b/common/debian/contrail-database-common/debian/rules new file mode 100755 index 000000000..d821b7cbf --- /dev/null +++ b/common/debian/contrail-database-common/debian/rules @@ -0,0 +1,48 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +SPEC_DIR := $(shell pwd) +export SB_TOP := $(shell pwd | sed -re "s/(.*)\/tools\/packaging\/(.*)/\1/") + +export BUILDTIME := $(shell date -u +%y%m%d%H%M) +export buildroot := $(SB_TOP)/build/debian/contrail-database-common +export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH):$(SB_TOP)/build/debian/contrail-libs/usr/lib64/contrail + +export _src_config := $(SB_TOP)/tools/packaging/common/control_files +export _datadir := /usr/share +export _sysconfdir := /etc + +SRC_VER := $(shell cat $(SB_TOP)/controller/src/base/version.info) + +BUILDTAG = +ifdef TAG +BUILDTAG = $(SRC_VER)-$(TAG) +else +BUILDTAG = $(SRC_VER)-$(BUILDTIME) +endif + +%: + dh $@ --tmpdir=${buildroot} --destdir=${SB_TOP}/build/debian + +override_dh_auto_build: + cat debian/changelog.in | sed 's,BUILDTAG,$(BUILDTAG),g' > debian/changelog + +override_dh_auto_install: + # Setup directories + install -d -m 777 $(buildroot)$(_datadir) + install -d -m 777 $(buildroot)$(_sysconfdir) + install -d -m 755 $(buildroot)$(_datadir)/cassandra/conf + install -D -m 755 $(_src_config)/zookeeper.conf $(buildroot)$(_sysconfdir)/init/zookeeper.conf + install -D -m 755 $(_src_config)/contrail-database.initd $(buildroot)$(_sysconfdir)/init.d/contrail-database + +override_dh_shlibdeps: + +override_dh_usrlocal: + diff --git a/common/debian/contrail-fabric-utils/debian/control.trusty_liberty b/common/debian/contrail-fabric-utils/debian/control.trusty_liberty new file mode 100755 index 000000000..1c8e6f3cc --- /dev/null +++ b/common/debian/contrail-fabric-utils/debian/control.trusty_liberty @@ -0,0 +1,19 @@ +Source: contrail-fabric-utils +Maintainer: amoghe +Section: misc +Priority: optional +Standards-Version: 1.0 +Build-Depends: debhelper (>= 8) + +Package: contrail-fabric-utils +Architecture: all +Maintainer: amoghe +Depends: python-yaml, + python-pip, + python-netaddr, + python-paramiko (>=1.14.0), + python-ecdsa (>=0.11), +Section: contrail-fabric-utils +Priority: extra +Description: Contrail Fabric Utilities for cluster management + diff --git a/common/debian/contrail-openstack-config/debian/control.in b/common/debian/contrail-openstack-config/debian/control.in index 81b4dad39..2af89c965 100644 --- a/common/debian/contrail-openstack-config/debian/control.in +++ b/common/debian/contrail-openstack-config/debian/control.in @@ -28,5 +28,7 @@ Depends: python-bottle, ifmap-python-client, contrail-config-openstack, - keepalived (=1:1.2.13-1~bpo70+1) | keepalived (=1.2.13-0~276~ubuntu14.04.1) + keepalived (=1:1.2.13-1~bpo70+1) | keepalived (=1.2.13-0~276~ubuntu14.04.1), + memcached, + python-memcache Description: Contrail Openstack Config composite debian package diff --git a/common/debian/contrail-openstack-config/debian/control.kilo.in b/common/debian/contrail-openstack-config/debian/control.kilo.in index a11eab5ae..8c20cef56 100644 --- a/common/debian/contrail-openstack-config/debian/control.kilo.in +++ b/common/debian/contrail-openstack-config/debian/control.kilo.in @@ -30,5 +30,7 @@ Depends: ifmap-server, ifmap-python-client, contrail-config-openstack, - keepalived (>=1.2.13-1) | keepalived (>=1.2.13-0~276~ubuntu14.04.1) + keepalived (>=1.2.13-1) | keepalived (>=1.2.13-0~276~ubuntu14.04.1), + memcached, + python-memcache Description: Contrail Openstack Config composite debian package diff --git a/common/debian/contrail-openstack-config/debian/control.liberty.in b/common/debian/contrail-openstack-config/debian/control.liberty.in new file mode 100644 index 000000000..8c20cef56 --- /dev/null +++ b/common/debian/contrail-openstack-config/debian/control.liberty.in @@ -0,0 +1,36 @@ +Source: contrail-openstack-config +Maintainer: rrugge +Section: misc +Priority: optional +Standards-Version: 1.0 +Build-Depends: + +Package: contrail-openstack-config +Architecture: all +Maintainer: rrugge +Depends: + supervisor, + contrail-nodemgr, + contrail-lib, + contrail-config, + contrail-f5, + neutron-plugin-contrail, + neutron-server, + python-neutron-lbaas, + python-novaclient, + python-keystoneclient, + contrail-setup, + contrail-utils, + haproxy (>=1.5.4-1ppa1~precise), + euca2ools, + rabbitmq-server, + python-qpid, + python-iniparse, + python-bottle, + ifmap-server, + ifmap-python-client, + contrail-config-openstack, + keepalived (>=1.2.13-1) | keepalived (>=1.2.13-0~276~ubuntu14.04.1), + memcached, + python-memcache +Description: Contrail Openstack Config composite debian package diff --git a/common/debian/contrail-openstack-dashboard/debian/liberty/changelog.in b/common/debian/contrail-openstack-dashboard/debian/liberty/changelog.in new file mode 100644 index 000000000..58f569efd --- /dev/null +++ b/common/debian/contrail-openstack-dashboard/debian/liberty/changelog.in @@ -0,0 +1,7 @@ +contrail-openstack-dashboard (BUILDTAG) quantal; urgency=low + + * Initial release. + + -- Rahul Sharma Mon, 10 Feb 2014 21:55:40 +5:30 + + diff --git a/common/debian/contrail-openstack-dashboard/debian/liberty/compat b/common/debian/contrail-openstack-dashboard/debian/liberty/compat new file mode 100644 index 000000000..45a4fb75d --- /dev/null +++ b/common/debian/contrail-openstack-dashboard/debian/liberty/compat @@ -0,0 +1 @@ +8 diff --git a/common/debian/contrail-openstack-dashboard/debian/liberty/contrail-openstack-dashboard.postinst b/common/debian/contrail-openstack-dashboard/debian/liberty/contrail-openstack-dashboard.postinst new file mode 100644 index 000000000..472ef9fa0 --- /dev/null +++ b/common/debian/contrail-openstack-dashboard/debian/liberty/contrail-openstack-dashboard.postinst @@ -0,0 +1,11 @@ +#!/bin/sh +# vim: set ts=2 et: + +set -e + +if [ "$1" = "configure" ] ; then + if [ -e /usr/share/openstack-dashboard/openstack_dashboard/static ] ; then + cp -L -prf --remove-destination /usr/lib/python2.7/dist-packages/contrail_openstack_dashboard/openstack_dashboard/static/* /usr/share/openstack-dashboard/openstack_dashboard/static + fi +fi +#DEBHELPER# diff --git a/common/debian/contrail-openstack-dashboard/debian/liberty/contrail-openstack-dashboard.postrm b/common/debian/contrail-openstack-dashboard/debian/liberty/contrail-openstack-dashboard.postrm new file mode 100644 index 000000000..fc6413b6b --- /dev/null +++ b/common/debian/contrail-openstack-dashboard/debian/liberty/contrail-openstack-dashboard.postrm @@ -0,0 +1,11 @@ +#!/bin/sh +# vim: set ts=2 et: + +set -e + +if [ "$1" = "remove" ] || [ "$1" = "purge" ] ; then + if [ -e /usr/share/openstack-dashboard/openstack_dashboard/static/dashboard/js/contrail.networktopology.js ] ; then + rm -f /usr/share/openstack-dashboard/openstack_dashboard/static/dashboard/js/contrail.networktopology.js + fi +fi +#DEBHELPER# diff --git a/common/debian/contrail-openstack-dashboard/debian/liberty/control b/common/debian/contrail-openstack-dashboard/debian/liberty/control new file mode 100644 index 000000000..da726c978 --- /dev/null +++ b/common/debian/contrail-openstack-dashboard/debian/liberty/control @@ -0,0 +1,11 @@ +Source: contrail-openstack-dashboard +Section: python +Priority: optional +Maintainer: Rahul Sharma +Standards-Version: 1.1 +Homepage: https://github.com/Juniper/contrail-horizon + +Package: contrail-openstack-dashboard +Architecture: all +Depends: ${python:Depends}, ${misc:Depends}, openstack-dashboard +Description: Openstack Dashboard implementation for Contrail Neutron Plugin. diff --git a/common/debian/contrail-openstack-dashboard/debian/liberty/copyright b/common/debian/contrail-openstack-dashboard/debian/liberty/copyright new file mode 100644 index 000000000..cdb0d8df0 --- /dev/null +++ b/common/debian/contrail-openstack-dashboard/debian/liberty/copyright @@ -0,0 +1,5 @@ +Name: contrail-openstack-dashboard +Maintainer: Rahul Sharma +License: Apache 2.0 +Files: * + Copyright (c) 2014 Juniper Networks, Inc. All rights reserved. diff --git a/common/debian/contrail-openstack-dashboard/debian/liberty/rules b/common/debian/contrail-openstack-dashboard/debian/liberty/rules new file mode 100755 index 000000000..3c7967d8d --- /dev/null +++ b/common/debian/contrail-openstack-dashboard/debian/liberty/rules @@ -0,0 +1,41 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +SPEC_DIR := $(shell pwd) +export SB_TOP := $(shell pwd | sed -re "s/(.*)\/build\/debian\/(.*)/\1/") +export BUILDTIME := $(shell date -u +%y%m%d%H%M) +export buildroot := $(SB_TOP)/build/debian/contrail-openstack-dashboard +export PY_DIST_PATH := /usr/lib/python2.7/dist-packages + +SRC_VER := $(shell cat $(SB_TOP)/controller/src/base/version.info) + +BUILDTAG = +ifdef TAG +BUILDTAG = $(SRC_VER)-$(TAG) +else +BUILDTAG = $(SRC_VER)-$(BUILDTIME) +endif + +%: + dh $@ --destdir=${SB_TOP}/build/debian --with python2 + +override_dh_auto_build: + cat debian/changelog.in | sed 's,BUILDTAG,$(BUILDTAG),g' > debian/changelog + +override_dh_auto_install: + # Setup directories + install -d -m 755 $(buildroot)/debian/contrail-openstack-dashboard/$(PY_DIST_PATH)/contrail_openstack_dashboard + install -d -m 755 $(buildroot)/debian/contrail-openstack-dashboard/$(PY_DIST_PATH)/contrail_openstack_dashboard/openstack_dashboard + cp -a $(buildroot)/*.py $(buildroot)/debian/contrail-openstack-dashboard/$(PY_DIST_PATH)/contrail_openstack_dashboard + cp -a $(buildroot)/openstack_dashboard/ $(buildroot)/debian/contrail-openstack-dashboard/$(PY_DIST_PATH)/contrail_openstack_dashboard/ + +override_dh_shlibdeps: + +override_dh_usrlocal: diff --git a/common/debian/contrail-openstack-database/debian/changelog.in b/common/debian/contrail-openstack-database/debian/changelog.in index a2243565c..1dee8423a 100644 --- a/common/debian/contrail-openstack-database/debian/changelog.in +++ b/common/debian/contrail-openstack-database/debian/changelog.in @@ -1,5 +1,10 @@ contrail-openstack-database (BUILDTAG) rrugge; urgency=low + * Spliting contrail-openstack-database in to contrail-openstack-database and + contrail-database + + -- ijohnson Tue, 28 Jun 2016 22:04:02 -0700 + [rrugge ] * debian/changelog: changelog diff --git a/common/debian/contrail-openstack-database/debian/control.in b/common/debian/contrail-openstack-database/debian/control.in index 8c15833bd..c94b6181b 100644 --- a/common/debian/contrail-openstack-database/debian/control.in +++ b/common/debian/contrail-openstack-database/debian/control.in @@ -8,5 +8,5 @@ Build-Depends: Package: contrail-openstack-database Architecture: all Maintainer: rrugge -Depends: zookeeper, contrail-nodemgr, supervisor, contrail-setup, contrail-utils, cassandra (>= 1.2.11), kafka (>= 2.9.2) +Depends: contrail-database-common, contrail-nodemgr, supervisor, contrail-setup, contrail-utils, kafka (>= 2.11) Description: Contrail Openstack database composite debian package diff --git a/common/debian/contrail-openstack-database/debian/rules b/common/debian/contrail-openstack-database/debian/rules index fc3c65a6b..b1932158b 100755 --- a/common/debian/contrail-openstack-database/debian/rules +++ b/common/debian/contrail-openstack-database/debian/rules @@ -16,8 +16,6 @@ export buildroot := $(SB_TOP)/build/debian/contrail-openstack-database export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH):$(SB_TOP)/build/debian/contrail-libs/usr/lib64/contrail export _src_config := $(SB_TOP)/tools/packaging/common/control_files -export _bindir := /usr/bin -export _datadir := /usr/share export _sysconfdir := /etc export _nodemgr_config := $(SB_TOP)/controller/src/nodemgr/database_nodemgr @@ -38,14 +36,9 @@ override_dh_auto_build: override_dh_auto_install: # Setup directories - install -d -m 777 $(buildroot)$(_bindir) - install -d -m 777 $(buildroot)$(_datadir) install -d -m 777 $(buildroot)$(_sysconfdir) - install -d -m 755 $(buildroot)$(_datadir)/cassandra/conf - install -D -m 755 $(_src_config)/zookeeper.conf $(buildroot)$(_sysconfdir)/init/zookeeper.conf install -D -m 755 $(_src_config)/supervisord-contrail-database.upstart $(buildroot)$(_sysconfdir)/init/supervisor-database.conf install -D -m 755 $(_src_config)/supervisord_database.conf $(buildroot)$(_sysconfdir)/contrail/supervisord_database.conf - install -D -m 755 $(_src_config)/contrail-database.initd $(buildroot)$(_sysconfdir)/init.d/contrail-database install -D -m 755 $(_nodemgr_config)/contrail-database-nodemgr.initd.supervisord $(buildroot)$(_sysconfdir)/init.d/contrail-database-nodemgr install -D -m 755 $(_src_config)/kafka.initd $(buildroot)$(_sysconfdir)/init.d/kafka install -D -m 755 $(_src_config)/contrail-database.rules $(buildroot)$(_sysconfdir)/contrail/supervisord_database_files/contrail-database.rules diff --git a/common/debian/contrail-openstack-vrouter/debian/control.in b/common/debian/contrail-openstack-vrouter/debian/control.in index fb1e26817..271c6f70b 100644 --- a/common/debian/contrail-openstack-vrouter/debian/control.in +++ b/common/debian/contrail-openstack-vrouter/debian/control.in @@ -8,5 +8,5 @@ Build-Depends: Package: contrail-openstack-vrouter Architecture: all Maintainer: amoghe -Depends: contrail-vrouter-common, contrail-nova-vif, nova-compute, python-novaclient, librabbitmq0, nfs-kernel-server +Depends: contrail-vrouter-common, contrail-nova-vif, nova-compute, python-novaclient, nfs-kernel-server Description: Contrail Openstack vRouter composite debian package diff --git a/common/debian/contrail-openstack-vrouter/debian/control.liberty.in b/common/debian/contrail-openstack-vrouter/debian/control.liberty.in new file mode 100644 index 000000000..a8fbeba85 --- /dev/null +++ b/common/debian/contrail-openstack-vrouter/debian/control.liberty.in @@ -0,0 +1,12 @@ +Source: contrail-openstack-vrouter +Maintainer: amoghe +Section: misc +Priority: optional +Standards-Version: 1.0 +Build-Depends: + +Package: contrail-openstack-vrouter +Architecture: all +Maintainer: amoghe +Depends: contrail-vrouter-common, contrail-nova-vif, nova-compute, python-novaclient, nfs-kernel-server, python-barbicanclient +Description: Contrail Openstack vRouter composite debian package diff --git a/common/debian/contrail-openstack/debian/contrail-openstack.postinst b/common/debian/contrail-openstack/debian/contrail-openstack.postinst index 5616271e6..262cc104a 100644 --- a/common/debian/contrail-openstack/debian/contrail-openstack.postinst +++ b/common/debian/contrail-openstack/debian/contrail-openstack.postinst @@ -1,17 +1,31 @@ echo "Running Postinst for contrail-openstack" for svc in keystone nova-api nova-scheduler nova-conductor nova-console\ nova-consoleauth nova-objectstore nova-novncproxy glance-api\ - glance-registry cinder-api cinder-scheduler heat-engine heat-api heat-api-cfn ; do + glance-registry cinder-api cinder-scheduler heat-engine heat-api heat-api-cfn\ + barbican-api barbican-worker ; do if [ -f /etc/init/$svc.conf ]; then + # Service stop is required for SM provisioing; because SM does + # installation of contrail-openstack after provisioning + # with native openstack packages service $svc stop || true mv /etc/init/$svc.conf /etc/init/$svc.conf.backup - mv /etc/init.d/$svc /etc/init.d/$svc.backup + # Move only in case of fresh install, if /etc/init/$svc.conf exists + # it is a fresh install case + if [ -f /etc/init.d/$svc ]; then + mv /etc/init.d/$svc /etc/init.d/$svc.backup + fi fi if [ -f /etc/init.d/$svc.initd.supervisord ]; then mv /etc/init.d/$svc.initd.supervisord /etc/init.d/$svc fi + if [ -f /etc/init/$svc.override ]; then + rm /etc/init/$svc.override + fi done +# Needed for barbican-api to work +chown -R barbican:barbican /etc/barbican/ + # Start mysql at boot time sudo update-rc.d -f mysql remove sudo update-rc.d mysql defaults diff --git a/common/debian/contrail-openstack/debian/contrail-openstack.preinst b/common/debian/contrail-openstack/debian/contrail-openstack.preinst new file mode 100644 index 000000000..b2ca5355f --- /dev/null +++ b/common/debian/contrail-openstack/debian/contrail-openstack.preinst @@ -0,0 +1,9 @@ +echo "Running Preinst for contrail-openstack" +for svc in keystone nova-api nova-scheduler nova-conductor nova-console\ + nova-consoleauth nova-objectstore nova-novncproxy glance-api\ + glance-registry cinder-api cinder-scheduler heat-engine heat-api heat-api-cfn\ + barbican-api barbican-worker ; do + echo "manual" > /etc/init/$svc.override +done + +echo "Preinst for contrail-openstack done" diff --git a/common/debian/contrail-openstack/debian/control.liberty.in b/common/debian/contrail-openstack/debian/control.liberty.in new file mode 100644 index 000000000..35d8ce216 --- /dev/null +++ b/common/debian/contrail-openstack/debian/control.liberty.in @@ -0,0 +1,14 @@ +Source: contrail-openstack +Maintainer: rrugge +Section: misc +Priority: optional +Standards-Version: 1.0 +Build-Depends: + +Package: contrail-openstack +Architecture: all +Maintainer: rrugge +Depends: python-contrail, openstack-dashboard, contrail-openstack-dashboard, glance, keystone, nova-api, nova-common, nova-conductor, nova-console, nova-objectstore, nova-scheduler, cinder-api, cinder-common, cinder-scheduler, mysql-server-wsrep, libssl0.9.8, contrail-setup, contrail-utils, memcached, nova-novncproxy, nova-consoleauth, python-m2crypto, haproxy, rabbitmq-server (>= 3.5.0-1), apache2, libapache2-mod-wsgi, python-memcache, python-iniparse, python-qpid, euca2ools, nfs-common, supervisor, rabbitmq-server, heat-api, heat-api-cfn, heat-engine, heat-common, python-extras, python-heat, python-mimeparse, python-testtools, contrail-heat, contrail-nova-networkapi, barbican-api, barbican-worker +Section: contrail-openstack +Priority: extra +Description: Contrail Openstack composite debian package diff --git a/common/debian/contrail-openstack/debian/rules.liberty b/common/debian/contrail-openstack/debian/rules.liberty new file mode 100755 index 000000000..84a9be8f7 --- /dev/null +++ b/common/debian/contrail-openstack/debian/rules.liberty @@ -0,0 +1,90 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +SPEC_DIR := $(shell pwd) +export SB_TOP := $(shell pwd | sed -re "s/(.*)\/build\/debian\/(.*)/\1/") + +export BUILDTIME := $(shell date -u +%y%m%d%H%M) +export buildroot := $(SB_TOP)/build/debian/contrail-openstack +export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH):$(SB_TOP)/build/debian/contrail-libs/usr/lib64/contrail +export _bindir := /usr/bin +export _initddir := /etc/init.d +export _initdir := /etc/init +export _sysconfdir := /etc +export _mysqllogdir := /var/log/mysql +export _src_config := $(SB_TOP)/tools/packaging/common/control_files + +SRC_VER := $(shell cat $(SB_TOP)/controller/src/base/version.info) + +BUILDTAG = +ifdef TAG +BUILDTAG = $(SRC_VER)-$(TAG) +else +BUILDTAG = $(SRC_VER)-$(BUILDTIME) +endif + +%: + dh $@ --tmpdir=${buildroot} --destdir=${SB_TOP}/build/debian + +override_dh_auto_build: + cat debian/changelog.in | sed 's,BUILDTAG,$(BUILDTAG),g' > debian/changelog + +override_dh_auto_install: + # Install all the directories + install -d -m 755 $(buildroot)$(_bindir) + install -d -m 755 $(buildroot)$(_initdir) + install -d -m 755 $(buildroot)$(_initddir) + install -d -m 755 $(buildroot)$(_sysconfdir) + install -d -m 755 $(buildroot)$(_mysqllogdir) + install -d -m 755 $(buildroot)$(_sysconfdir)/contrail + # Install supervisord config config files and directories + install -d -m 755 $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files + install -D -m 755 $(_src_config)/supervisor-openstack.upstart $(buildroot)$(_initdir)/supervisor-openstack.conf + install -p -m 755 $(_src_config)/supervisord_openstack.conf $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack.conf + # Install supervisor init.d files + install -p -m 755 $(_src_config)/keystone.initd.supervisord $(buildroot)$(_initddir)/keystone.initd.supervisord + install -p -m 755 $(_src_config)/nova-api.initd.supervisord $(buildroot)$(_initddir)/nova-api.initd.supervisord + install -p -m 755 $(_src_config)/nova-scheduler.initd.supervisord $(buildroot)$(_initddir)/nova-scheduler.initd.supervisord + install -p -m 755 $(_src_config)/nova-conductor.initd.supervisord $(buildroot)$(_initddir)/nova-conductor.initd.supervisord + install -p -m 755 $(_src_config)/nova-console.initd.supervisord $(buildroot)$(_initddir)/nova-console.initd.supervisord + install -p -m 755 $(_src_config)/nova-consoleauth.initd.supervisord $(buildroot)$(_initddir)/nova-consoleauth.initd.supervisord + install -p -m 755 $(_src_config)/nova-objectstore.initd.supervisord $(buildroot)$(_initddir)/nova-objectstore.initd.supervisord + install -p -m 755 $(_src_config)/nova-novncproxy.initd.supervisord $(buildroot)$(_initddir)/nova-novncproxy.initd.supervisord + install -p -m 755 $(_src_config)/glance-api.initd.supervisord $(buildroot)$(_initddir)/glance-api.initd.supervisord + install -p -m 755 $(_src_config)/glance-registry.initd.supervisord $(buildroot)$(_initddir)/glance-registry.initd.supervisord + install -p -m 755 $(_src_config)/cinder-api.initd.supervisord $(buildroot)$(_initddir)/cinder-api.initd.supervisord + install -p -m 755 $(_src_config)/cinder-scheduler.initd.supervisord $(buildroot)$(_initddir)/cinder-scheduler.initd.supervisord + install -p -m 755 $(_src_config)/heat-api.initd.supervisord $(buildroot)$(_initddir)/heat-api.initd.supervisord + install -p -m 755 $(_src_config)/heat-api-cfn.initd.supervisord $(buildroot)$(_initddir)/heat-api-cfn.initd.supervisord + install -p -m 755 $(_src_config)/heat-engine.initd.supervisord $(buildroot)$(_initddir)/heat-engine.initd.supervisord + install -p -m 755 $(_src_config)/barbican-api.initd.supervisord $(buildroot)$(_initddir)/barbican-api.initd.supervisord + install -p -m 755 $(_src_config)/barbican-worker.initd.supervisord $(buildroot)$(_initddir)/barbican-worker.initd.supervisord + # Install supervisord config files + install -p -m 755 $(_src_config)/keystone.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/keystone.ini + install -p -m 755 $(_src_config)/glance-api.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/glance-api.ini + install -p -m 755 $(_src_config)/glance-registry.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/glance-registry.ini + install -p -m 755 $(_src_config)/cinder-api.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/cinder-api.ini + install -p -m 755 $(_src_config)/cinder-scheduler.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/cinder-scheduler.ini + install -p -m 755 $(_src_config)/nova-api.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/nova-api.ini + install -p -m 755 $(_src_config)/nova-scheduler.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/nova-scheduler.ini + install -p -m 755 $(_src_config)/nova-conductor.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/nova-conductor.ini + install -p -m 755 $(_src_config)/nova-console.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/nova-console.ini + install -p -m 755 $(_src_config)/nova-consoleauth.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/nova-consoleauth.ini + install -p -m 755 $(_src_config)/nova-objectstore.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/nova-objectstore.ini + install -p -m 755 $(_src_config)/nova-novncproxy.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/nova-novncproxy.ini + install -p -m 755 $(_src_config)/heat-api.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/heat-api.ini + install -p -m 755 $(_src_config)/heat-api-cfn.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/heat-api-cfn.ini + install -p -m 755 $(_src_config)/heat-engine.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/heat-engine.ini + install -p -m 755 $(_src_config)/barbican-api.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/barbican-api.ini + install -p -m 755 $(_src_config)/barbican-worker.ini $(buildroot)$(_sysconfdir)/contrail/supervisord_openstack_files/barbican-worker.ini + +override_dh_usrlocal: + +override_dh_shlibdeps: diff --git a/common/debian/contrail-server-manager/debian/postinst b/common/debian/contrail-server-manager/debian/postinst index 9ce1be6f9..1f5f4cffc 100644 --- a/common/debian/contrail-server-manager/debian/postinst +++ b/common/debian/contrail-server-manager/debian/postinst @@ -15,7 +15,7 @@ rel=`lsb_release -r` # Stage I - Install required packages easy_install argparse -easy_install paramiko +easy_install paramiko==1.17.0 easy_install pycrypto easy_install ordereddict easy_install pycurl diff --git a/common/debian/contrail-setup/debian/control b/common/debian/contrail-setup/debian/control index 278cd0b37..366d3f364 100644 --- a/common/debian/contrail-setup/debian/control +++ b/common/debian/contrail-setup/debian/control @@ -17,7 +17,8 @@ Depends: tar, ifenslave-2.6, vlan, python-iniparse, - python-support + python-support, + crudini # Replaces some files in /opt/contrail/contrail_packages/ created by contrail-install-packages. # Replaces some files in /opt/contrail/bin/ created by contrail-openstack-ha Replaces: contrail-install-packages, contrail-openstack-ha diff --git a/common/debian/contrail-vmware-vrouter/debian/control.in b/common/debian/contrail-vmware-vrouter/debian/control.in index ddb41cce8..256ae54ec 100644 --- a/common/debian/contrail-vmware-vrouter/debian/control.in +++ b/common/debian/contrail-vmware-vrouter/debian/control.in @@ -8,5 +8,5 @@ Build-Depends: Package: contrail-vmware-vrouter Architecture: all Maintainer: amudha -Depends: contrail-vrouter-common, librabbitmq0, nfs-kernel-server +Depends: contrail-vrouter-common, nfs-kernel-server Description: Contrail Vmware vRouter composite debian package diff --git a/common/debian/contrail-web-server-manager/debian/postinst b/common/debian/contrail-web-server-manager/debian/postinst index f8b91b5ca..799d0446d 100644 --- a/common/debian/contrail-web-server-manager/debian/postinst +++ b/common/debian/contrail-web-server-manager/debian/postinst @@ -119,8 +119,8 @@ sed -i "s|module.exports =.*|module.exports = config;|g" $WEBUI_CONF_FILE sed -i "s/config.featurePkg.webController.enable = .*/config.featurePkg.webController.enable = false;/g" $WEBUI_CONF_FILE sed -i "s/config.featurePkg.webStorage.enable = .*/config.featurePkg.webStorage.enable = false;/g" $WEBUI_CONF_FILE -sed -i "s/config.http_port = .*/config.http_port = '8145';/g" $WEBUI_CONF_FILE -sed -i "s/config.https_port = .*/config.https_port = '8143';/g" $WEBUI_CONF_FILE +sed -i "s/config.http_port = .*/config.http_port = '9080';/g" $WEBUI_CONF_FILE +sed -i "s/config.https_port = .*/config.https_port = '9143';/g" $WEBUI_CONF_FILE sed -i "s/config.jobServer.server_port = .*/config.jobServer.server_port = '3004';/g" $WEBUI_CONF_FILE sed -i "s/config.kue.ui_port = .*/config.kue.ui_port = '3006'/g" $WEBUI_CONF_FILE diff --git a/common/debian/contrail-web-server-manager/debian/rules b/common/debian/contrail-web-server-manager/debian/rules index 4a9d66007..8c6a9f3f1 100755 --- a/common/debian/contrail-web-server-manager/debian/rules +++ b/common/debian/contrail-web-server-manager/debian/rules @@ -55,6 +55,8 @@ override_dh_auto_install: install -d -m 755 $(buildroot)$(_initddir) # Server Manager config file install -p -m 755 $(SB_TOP)/contrail-web-core/config/config.global.js $(buildroot)/$(_contrailetc)/config.global.sm.js + perl -pi -e '{ s/opencontrail-logo/juniper-networks-logo/g; }' $(buildroot)/$(_contrailetc)/config.global.sm.js + perl -pi -e '{ s/opencontrail-favicon/juniper-networks-favicon/g; }' $(buildroot)/$(_contrailetc)/config.global.sm.js # supervisord conf file install -p -m 755 $(_distropkgdir)/supervisord_webui_sm.conf $(buildroot)/$(_contrailetc)/supervisord_webui_sm.conf # supervisord upstart file diff --git a/common/rpm/Makefile b/common/rpm/Makefile index c5675e385..7ed857e1a 100644 --- a/common/rpm/Makefile +++ b/common/rpm/Makefile @@ -43,6 +43,12 @@ else endif G_TAG += --define "_skuTag $(CONTRAIL_SKU)" +# If contrail-test repo is present, then it will be packaged (as tgz) +ifeq ($(wildcard $(SB_TOP)/third_party/contrail-test),) + CONTRAIL_TEST := +else + CONTRAIL_TEST := contrail-test +endif $(PPREP): @echo some $(PPREP) work ... @@ -123,8 +129,10 @@ contrail-openstack: $(PREP) rpmbuild $(RPMBLDOPTS) contrail-openstack.spec $(G_TAG) ;\ elif [ "$(CONTRAIL_SKU)" == "icehouse" ]; then \ rpmbuild $(RPMBLDOPTS) contrail-openstack-icehouse.spec $(G_TAG) ;\ - else \ + elif [ "$(CONTRAIL_SKU)" == "juno" ] || [ "$(CONTRAIL_SKU)" == "kilo" ]; then \ rpmbuild $(RPMBLDOPTS) contrail-openstack-juno.spec $(G_TAG) ;\ + else \ + rpmbuild $(RPMBLDOPTS) contrail-openstack-liberty.spec $(G_TAG) ;\ fi contrail-openstack-ha: $(PREP) @@ -236,6 +244,10 @@ contrail-database: $(PREP) cp ../control_files/supervisord_contrail_database.initd $(BUILD_SRC)/ rpmbuild $(RPMBLDOPTS) $(BUILD_BASE)/SPECS/contrail-database.spec $(G_TAG) +contrail-database-common: $(PREP) + @echo making rpm for contrail-database-common + rpmbuild $(RPMBLDOPTS) contrail-database-common.spec $(G_TAG) + contrail-server-manager: $(PREP) @echo making rpm for contrail-server-manager cp contrail-server-manager.spec $(BUILD_BASE)/SPECS/ @@ -286,15 +298,16 @@ CEILOMETER_PLUGIN = endif # Execute contrail-nova-networkapi only from juno release -CONTRAIL_NOVA_NETWORKAPI = $(shell [[ "juno kilo" =~ ${CONTRAIL_SKU} ]] && echo "contrail-nova-networkapi" || echo ) +CONTRAIL_NOVA_NETWORKAPI = $(shell [[ "juno kilo liberty" =~ ${CONTRAIL_SKU} ]] && echo "contrail-nova-networkapi" || echo ) all: $(PREP) contrail \ contrail-interface-name ifmap-python-client \ contrail-nodemgr contrail-setup contrail-openstack-all \ contrail-web-core contrail-web-controller contrail-database \ + contrail-database-common \ ${NEUTRON_PLUGIN} ${CONTRAIL_HEAT} ${CEILOMETER_PLUGIN} \ contrail-vrouter-init contrail-vrouter-common ${CONTRAIL_NOVA_NETWORKAPI} \ - contrail-fabric-utils contrail-test + contrail-fabric-utils ${CONTRAIL_TEST} server-manager-all: contrail-server-manager contrail-server-manager-monitoring contrail-server-manager-client contrail-web-server-manager clean: diff --git a/common/rpm/contrail-database-common.spec b/common/rpm/contrail-database-common.spec new file mode 100644 index 000000000..e1f39c2db --- /dev/null +++ b/common/rpm/contrail-database-common.spec @@ -0,0 +1,42 @@ +%define _distropkgdir tools/packaging/common/control_files + +%if 0%{?_buildTag:1} +%define _relstr %{_buildTag} +%else +%define _relstr %(date -u +%y%m%d%H%M) +%endif +%{echo: "Building release %{_relstr}\n"} +Release: %{_relstr}%{?dist} +%if 0%{?_srcVer:1} +%define _verstr %{_srcVer} +%else +%define _verstr 1 +%endif +Summary: Contrail Database Common %{?_gitVer} +Name: contrail-database-common +Version: %{_verstr} +Group: Applications/System +License: Commercial +URL: http://www.juniper.net/ +Vendor: Juniper Networks Inc + +BuildArch: noarch + +Requires: contrail-database >= %{_verstr}-%{_relstr} +Requires: zookeeper + +%description +Contrail Package Requirements for Contrail Database Common + +%install +pushd %{_builddir}/.. +install -D -m 755 %{_distropkgdir}/zookeeper.initd %{buildroot}%{_initddir}/zookeeper +popd + +%files +%{_initddir} + +%changelog +* Fri Jul 15 2016 +* Initial build. + diff --git a/common/rpm/contrail-database.spec b/common/rpm/contrail-database.spec index 53e217e19..ba9ace753 100644 --- a/common/rpm/contrail-database.spec +++ b/common/rpm/contrail-database.spec @@ -36,7 +36,7 @@ Requires: cassandra21 %endif Requires: supervisor Requires: java-1.7.0-openjdk -Requires: kafka +Requires: kafka >= 2.11 Source1: supervisord_contrail_database.initd Source2: supervisord_database.conf @@ -140,60 +140,35 @@ popd %post if [ "$1" = "1" ]; then service cassandra stop + sleep 3 + ps auxw | grep -Eq "Dcassandra-pidfile=.*cassandra\.pid" 2>/dev/null + if [ $? -eq 0 ] ; then + kill `ps auxw | grep -E "Dcassandra-pidfile=.*cassandra\.pid" | grep -v grep | awk '{print $2}'` > /dev/null 2>&1 + fi rm -rf /var/lib/cassandra fi +if [ "$1" = "2" ]; then + PIDFILE=/var/run/cassandra/cassandra.pid + # Create the /var/run/cassandra if it does not exist + [ -e `dirname "$PIDFILE"` ] || \ + install -d -ocassandra -gcassandra -m755 `dirname $PIDFILE` + # Write pid info to it + ps auxw | grep -Eq "Dcassandra-pidfile=.*cassandra\.pid" 2>/dev/null + if [ $? -eq 0 ] ; then + echo `ps auxw | grep -E "Dcassandra-pidfile=.*cassandra\.pid" | grep -v grep | awk '{print $2}'` > /var/run/cassandra/cassandra.pid + chown cassandra:cassandra /var/run/cassandra/cassandra.pid + fi +fi + chkconfig cassandra off chkconfig contrail-database on -# this is upgrade from 1.02 release to newer i.e cassandra 1.1.7 to 1.2.11 -if [ -f /usr/share/cassandra/conf/cassandra.yaml.rpmsave ]; then - CASSANDRA_CONF_OLD=/usr/share/cassandra/conf/cassandra.yaml.rpmsave - CASSANDRA_CONF=/etc/cassandra/conf/cassandra.yaml - - CLUSTER_NAME=$(grep "^cluster_name:" ${CASSANDRA_CONF_OLD}) - sed -e "s/^cluster_name:.*/${CLUSTER_NAME}/g" ${CASSANDRA_CONF} > ${CASSANDRA_CONF}.save - mv ${CASSANDRA_CONF}.save ${CASSANDRA_CONF} - - PARTITIONER=$(grep "^partitioner:" ${CASSANDRA_CONF_OLD}) - sed -e "s/^partitioner:.*/${PARTITIONER}/g" ${CASSANDRA_CONF} > ${CASSANDRA_CONF}.save - mv ${CASSANDRA_CONF}.save ${CASSANDRA_CONF} - - DATA_DIR_OLD=$(grep -A1 "^data_file_directories:" ${CASSANDRA_CONF_OLD} | grep -v data_file_directories) - DATA_DIR_NEW=$(grep -A1 "^data_file_directories:" ${CASSANDRA_CONF} | grep -v data_file_directories) - sed -e "s@${DATA_DIR_NEW}@${DATA_DIR_OLD}@g" ${CASSANDRA_CONF} > ${CASSANDRA_CONF}.save - mv ${CASSANDRA_CONF}.save ${CASSANDRA_CONF} - - COMMITLOG_DIR=$(grep "^commitlog_directory:" ${CASSANDRA_CONF_OLD}) - sed -e "s@^commitlog_directory:.*@${COMMITLOG_DIR}@g" ${CASSANDRA_CONF} > ${CASSANDRA_CONF}.save - mv ${CASSANDRA_CONF}.save ${CASSANDRA_CONF} - - SAVEDCACHES_DIR=$(grep "^saved_caches_directory:" ${CASSANDRA_CONF_OLD}) - sed -e "s@^saved_caches_directory:.*@${SAVEDCACHES_DIR}@g" ${CASSANDRA_CONF} > ${CASSANDRA_CONF}.save - mv ${CASSANDRA_CONF}.save ${CASSANDRA_CONF} - - SEEDS=$(grep " - seeds:" ${CASSANDRA_CONF_OLD}) - sed -e "s/^ - seeds:.*/${SEEDS}/g" ${CASSANDRA_CONF} > ${CASSANDRA_CONF}.save - mv ${CASSANDRA_CONF}.save ${CASSANDRA_CONF} - - LISTEN_ADDRESS=$(grep "^listen_address:" ${CASSANDRA_CONF_OLD}) - sed -e "s/^listen_address:.*/${LISTEN_ADDRESS}/g" ${CASSANDRA_CONF} > ${CASSANDRA_CONF}.save - mv ${CASSANDRA_CONF}.save ${CASSANDRA_CONF} - - RPC_ADDRESS=$(grep "^rpc_address:" ${CASSANDRA_CONF_OLD}) - sed -e "s/^rpc_address:.*/${RPC_ADDRESS}/g" ${CASSANDRA_CONF} > ${CASSANDRA_CONF}.save - mv ${CASSANDRA_CONF}.save ${CASSANDRA_CONF} - - rm -rf ${CASSANDRA_CONF_OLD} - - mv -f /usr/share/cassandra/conf/cassandra-env.sh.rpmsave /etc/cassandra/conf/cassandra-env.sh -fi - %files %defattr(-,root,root,-) %{_venv_root} %{_supervisordir}/contrail-database.rules -%{_supervisordir}/contrail-database-nodemgr.ini -/etc/contrail/contrail-database-nodemgr.conf +%config(noreplace) %{_supervisordir}/contrail-database-nodemgr.ini +%config(noreplace) /etc/contrail/contrail-database-nodemgr.conf %if 0%{?rhel} %{_initddir}/supervisor-database %endif diff --git a/common/rpm/contrail-nodemgr.spec b/common/rpm/contrail-nodemgr.spec index 4c19f7ba3..7022a8af1 100644 --- a/common/rpm/contrail-nodemgr.spec +++ b/common/rpm/contrail-nodemgr.spec @@ -35,6 +35,7 @@ Requires: xmltodict >= 0.7.0 Requires: python-bottle >= 0.11.6 Requires: python-contrail >= %{_verstr}-%{_relstr} Requires: ntp +Requires: python-psutil %if 0%{?rhel} && 0%{?rhel} <= 6 Requires: python-importlib %endif diff --git a/common/rpm/contrail-openstack-analytics.spec b/common/rpm/contrail-openstack-analytics.spec index d98347e4f..5e25bf51f 100644 --- a/common/rpm/contrail-openstack-analytics.spec +++ b/common/rpm/contrail-openstack-analytics.spec @@ -64,7 +64,7 @@ done %files %defattr(-, root, root) %config(noreplace) %{_supervisordir}/contrail-analytics-nodemgr.ini -/etc/contrail/contrail-analytics-nodemgr.conf +%config(noreplace) /etc/contrail/contrail-analytics-nodemgr.conf /etc/init.d/contrail-analytics-nodemgr %changelog diff --git a/common/rpm/contrail-openstack-config-common.spec b/common/rpm/contrail-openstack-config-common.spec index e528847ca..d501d7f68 100644 --- a/common/rpm/contrail-openstack-config-common.spec +++ b/common/rpm/contrail-openstack-config-common.spec @@ -47,7 +47,7 @@ Requires: python-contrail >= %{_verstr}-%{_relstr} Requires: contrail-config-openstack >= %{_verstr}-%{_relstr} Requires: python-bottle Requires: contrail-nodemgr >= %{_verstr}-%{_relstr} -Requires: ifmap-server >= 0.3.2-2contrail +Requires: ifmap-server >= 0.3.2-4contrail Requires: python-neutron-lbaas %if 0%{?rhel} && 0%{?rhel} <= 6 Requires: python-importlib diff --git a/common/rpm/contrail-openstack-config.spec b/common/rpm/contrail-openstack-config.spec index 49332e621..7a7f24547 100644 --- a/common/rpm/contrail-openstack-config.spec +++ b/common/rpm/contrail-openstack-config.spec @@ -1,5 +1,4 @@ %define _distropkgdir tools/packaging/common/control_files -%define _distrothirdpartydir distro/third_party %define _nodemgr_config controller/src/nodemgr/config_nodemgr %if 0%{?_buildTag:1} %define _relstr %{_buildTag} @@ -45,7 +44,7 @@ Requires: keepalived Requires: rabbitmq-server >= 3.3.5 Requires: python-bottle >= 0.11.6 Requires: contrail-nodemgr >= %{_verstr}-%{_relstr} -Requires: ifmap-server >= 0.3.2-2contrail +Requires: ifmap-server >= 0.3.2-4contrail Requires: contrail-config-openstack >= %{_verstr}-%{_relstr} Requires: python-contrail >= %{_verstr}-%{_relstr} %if 0%{?rhel} && 0%{?rhel} <= 6 @@ -62,7 +61,6 @@ pushd %{_builddir}/.. install -D -m 755 %{_distropkgdir}/ifmap.initd.supervisord %{buildroot}%{_initddir}/ifmap install -p -m 755 %{_distropkgdir}/ifmap.ini %{buildroot}%{_sysconfdir}/contrail/supervisord_config_files/ifmap.ini install -p -m 755 %{_nodemgr_config}/contrail-config-nodemgr.ini %{buildroot}%{_sysconfdir}/contrail/supervisord_config_files/contrail-config-nodemgr.ini -install -D -m 755 %{_distropkgdir}/zookeeper.initd %{buildroot}%{_initddir}/zookeeper install -d -m 755 %{buildroot}%{_sysconfdir}/contrail/supervisord_support_service_files install -D -m 755 %{_distropkgdir}/supervisor-support-service.initd %{buildroot}%{_initddir}/supervisor-support-service install -D -m 755 %{_distropkgdir}/supervisord_support_service.conf %{buildroot}%{_sysconfdir}/contrail/supervisord_support_service.conf @@ -95,10 +93,10 @@ popd %{_bindir}/ifmap_view.py #%{_bindir}/encap.py %{_initddir} -%{_sysconfdir}/contrail/supervisord_support_service.conf +%config(noreplace) %{_sysconfdir}/contrail/supervisord_support_service.conf %config(noreplace) %{_sysconfdir}/contrail/supervisord_config_files/contrail-config-nodemgr.ini %config(noreplace) %{_sysconfdir}/contrail/supervisord_support_service_files/rabbitmq-server.ini -/etc/contrail/contrail-config-nodemgr.conf +%config(noreplace) /etc/contrail/contrail-config-nodemgr.conf /etc/init.d/contrail-config-nodemgr %post diff --git a/common/rpm/contrail-openstack-control.spec b/common/rpm/contrail-openstack-control.spec index 20893b759..7fd8805de 100644 --- a/common/rpm/contrail-openstack-control.spec +++ b/common/rpm/contrail-openstack-control.spec @@ -55,7 +55,7 @@ install -D -m 755 %{_nodemgr_config}/contrail-control-nodemgr.initd.supervisord %{_supervisordir} %defattr(-,contrail,contrail,-) %config(noreplace) %{_supervisordir}/contrail-control-nodemgr.ini -/etc/contrail/contrail-control-nodemgr.conf +%config(noreplace) /etc/contrail/contrail-control-nodemgr.conf /etc/init.d/contrail-control-nodemgr %post diff --git a/common/rpm/contrail-openstack-database.spec b/common/rpm/contrail-openstack-database.spec index 1838b7619..2384f9ab6 100644 --- a/common/rpm/contrail-openstack-database.spec +++ b/common/rpm/contrail-openstack-database.spec @@ -1,4 +1,3 @@ -%define _distropkgdir tools/packaging/common/control_files %define _nodemgr_config controller/src/nodemgr/database_nodemgr %if 0%{?_buildTag:1} @@ -23,11 +22,10 @@ Vendor: Juniper Networks Inc BuildArch: noarch -Requires: contrail-database >= %{_verstr}-%{_relstr} +Requires: contrail-database-common >= %{_verstr}-%{_relstr} Requires: contrail-setup >= %{_verstr}-%{_relstr} Requires: contrail-utils >= %{_verstr}-%{_relstr} Requires: contrail-nodemgr >= %{_verstr}-%{_relstr} -Requires: zookeeper Requires: supervisor %description @@ -35,17 +33,17 @@ Contrail Package Requirements for Contrail Database %install pushd %{_builddir}/.. -install -D -m 755 %{_distropkgdir}/zookeeper.initd %{buildroot}%{_initddir}/zookeeper install -D -m 755 %{_nodemgr_config}/contrail-database-nodemgr.conf %{buildroot}/etc/contrail/contrail-database-nodemgr.conf install -D -m 755 %{_nodemgr_config}/contrail-database-nodemgr.initd.supervisord %{buildroot}/etc/init.d/contrail-database-nodemgr popd %files -%{_initddir} -/etc/contrail/contrail-database-nodemgr.conf +%config(noreplace) /etc/contrail/contrail-database-nodemgr.conf /etc/init.d/contrail-database-nodemgr %changelog +* Fri Jul 15 2016 +* Moving cassandra/zookeper to contrail database common package + * Tue Aug 6 2013 * Initial build. - diff --git a/common/rpm/contrail-openstack-havana-config.spec b/common/rpm/contrail-openstack-havana-config.spec index 728a84d31..f14ffdd13 100644 --- a/common/rpm/contrail-openstack-havana-config.spec +++ b/common/rpm/contrail-openstack-havana-config.spec @@ -44,7 +44,7 @@ Requires: python-contrail >= %{_verstr}-%{_relstr} Requires: contrail-config-openstack >= %{_verstr}-%{_relstr} Requires: python-bottle Requires: contrail-nodemgr >= %{_verstr}-%{_relstr} -Requires: ifmap-server >= 0.3.2-2contrail +Requires: ifmap-server >= 0.3.2-4contrail %if 0%{?rhel} && 0%{?rhel} <= 6 Requires: python-importlib %endif diff --git a/common/rpm/contrail-openstack-icehouse-config.spec b/common/rpm/contrail-openstack-icehouse-config.spec index 72487c5a1..3c343ba8c 100644 --- a/common/rpm/contrail-openstack-icehouse-config.spec +++ b/common/rpm/contrail-openstack-icehouse-config.spec @@ -47,7 +47,7 @@ Requires: python-contrail >= %{_verstr}-%{_relstr} Requires: contrail-config-openstack >= %{_verstr}-%{_relstr} Requires: python-bottle Requires: contrail-nodemgr >= %{_verstr}-%{_relstr} -Requires: ifmap-server >= 0.3.2-2contrail +Requires: ifmap-server >= 0.3.2-4contrail %if 0%{?rhel} && 0%{?rhel} <= 6 Requires: python-importlib %endif @@ -93,7 +93,7 @@ popd %{_bindir}/ifmap_view.py #%{_bindir}/encap.py %{_initddir} -%{_sysconfdir}/contrail/supervisord_support_service.conf +%config(noreplace) %{_sysconfdir}/contrail/supervisord_support_service.conf %config(noreplace) %{_sysconfdir}/contrail/supervisord_support_service_files/rabbitmq-server.ini %config(noreplace) %{_sysconfdir}/contrail/supervisord_config_files/contrail-config-nodemgr.ini diff --git a/common/rpm/contrail-openstack-juno.spec b/common/rpm/contrail-openstack-juno.spec index 242e6cfaa..0e66c4e1d 100644 --- a/common/rpm/contrail-openstack-juno.spec +++ b/common/rpm/contrail-openstack-juno.spec @@ -52,6 +52,7 @@ Requires: openstack-heat-engine Requires: crudini Requires: openstack-utils >= 2014.1-1 Requires: contrail-nova-networkapi >= %{_verstr}-%{_relstr} +Requires: openstack-heat-api-cfn %endif %description diff --git a/common/rpm/contrail-openstack-liberty.spec b/common/rpm/contrail-openstack-liberty.spec new file mode 100644 index 000000000..a0591cafe --- /dev/null +++ b/common/rpm/contrail-openstack-liberty.spec @@ -0,0 +1,145 @@ +%define _distropkgdir tools/packaging/common/control_files +%if 0%{?_buildTag:1} +%define _relstr %{_buildTag} +%else +%define _relstr %(date -u +%y%m%d%H%M) +%endif +%{echo: "Building release %{_relstr}\n"} +%if 0%{?_srcVer:1} +%define _verstr %{_srcVer} +%else +%define _verstr 1 +%endif +Release: %{_relstr}%{?dist} +Summary: Contrail Openstack %{?_gitVer} +Name: contrail-openstack +Version: %{_verstr} +Group: Applications/System +License: Commercial +URL: http://www.juniper.net/ +Vendor: Juniper Networks Inc + +BuildArch: noarch + +Requires: python-contrail >= %{_verstr}-%{_relstr} +Requires: openstack-dashboard +Requires: openstack-glance +Requires: openstack-keystone +Requires: openstack-nova +Requires: openstack-cinder +Requires: mysql-server >= 5.1.73 +Requires: openssl098e +Requires: contrail-setup >= %{_verstr}-%{_relstr} +Requires: contrail-utils >= %{_verstr}-%{_relstr} +Requires: memcached +Requires: openstack-nova-novncproxy +Requires: python-glance +Requires: python-glanceclient +Requires: euca2ools +Requires: m2crypto +Requires: qpid-cpp-server +Requires: haproxy +Requires: rabbitmq-server +Requires: supervisor +%if 0%{?rhel} && 0%{?rhel} <= 6 +Requires: python-importlib +%endif +%if 0%{?centos} >= 6 +Requires: contrail-heat >= %{_verstr}-%{_relstr} +Requires: openstack-heat-api +Requires: openstack-heat-common +Requires: openstack-heat-engine +Requires: crudini +Requires: openstack-utils >= 2014.1-1 +Requires: contrail-nova-networkapi >= %{_verstr}-%{_relstr} +Requires: openstack-heat-api-cfn +Requires: python-openstackclient +%endif + +%description +Contrail Package Requirements for Contrail Openstack + +%install +# Setup directories +rm -rf %{buildroot} +install -d -m 755 %{buildroot}/%{_bindir} + +pushd %{_builddir}/.. +# Install supervisord config config files and directories +install -d -m 755 %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files +install -D -m 755 %{_distropkgdir}/supervisor-openstack.initd %{buildroot}%{_initddir}/supervisor-openstack +install -D -m 755 %{_distropkgdir}/supervisord_openstack.conf %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack.conf +# Install supervisor init.d files +install -D -m 755 %{_distropkgdir}/keystone.initd.supervisord %{buildroot}%{_initddir}/keystone +install -D -m 755 %{_distropkgdir}/nova-api.initd.supervisord %{buildroot}%{_initddir}/nova-api +install -D -m 755 %{_distropkgdir}/nova-scheduler.initd.supervisord %{buildroot}%{_initddir}/nova-scheduler +install -D -m 755 %{_distropkgdir}/nova-conductor.initd.supervisord %{buildroot}%{_initddir}/nova-conductor +install -D -m 755 %{_distropkgdir}/nova-cert.initd.supervisord %{buildroot}%{_initddir}/nova-cert +install -D -m 755 %{_distropkgdir}/nova-consoleauth.initd.supervisord %{buildroot}%{_initddir}/nova-consoleauth +install -D -m 755 %{_distropkgdir}/nova-novncproxy.initd.supervisord %{buildroot}%{_initddir}/nova-novncproxy +install -D -m 755 %{_distropkgdir}/glance-api.initd.supervisord %{buildroot}%{_initddir}/glance-api +install -D -m 755 %{_distropkgdir}/glance-registry.initd.supervisord %{buildroot}%{_initddir}/glance-registry +install -D -m 755 %{_distropkgdir}/cinder-api.initd.supervisord %{buildroot}%{_initddir}/cinder-api +install -D -m 755 %{_distropkgdir}/cinder-scheduler.initd.supervisord %{buildroot}%{_initddir}/cinder-scheduler +install -D -m 755 %{_distropkgdir}/heat-api.initd.supervisord %{buildroot}%{_initddir}/heat-api +install -D -m 755 %{_distropkgdir}/heat-engine.initd.supervisord %{buildroot}%{_initddir}/heat-engine +# Install supervisord config files +install -D -m 755 %{_distropkgdir}/keystone.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/keystone.ini +install -D -m 755 %{_distropkgdir}/glance-api.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/glance-api.ini +install -D -m 755 %{_distropkgdir}/glance-registry.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/glance-registry.ini +install -D -m 755 %{_distropkgdir}/cinder-api.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/cinder-api.ini +install -D -m 755 %{_distropkgdir}/cinder-scheduler.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/cinder-scheduler.ini +install -D -m 755 %{_distropkgdir}/nova-api.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/nova-api.ini +install -D -m 755 %{_distropkgdir}/nova-scheduler.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/nova-scheduler.ini +install -D -m 755 %{_distropkgdir}/nova-conductor.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/nova-conductor.ini +install -D -m 755 %{_distropkgdir}/nova-consoleauth.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/nova-consoleauth.ini +install -D -m 755 %{_distropkgdir}/nova-novncproxy.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/nova-novncproxy.ini +install -D -m 755 %{_distropkgdir}/heat-api.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/heat-api.ini +install -D -m 755 %{_distropkgdir}/heat-engine.ini.centos %{buildroot}%{_sysconfdir}/contrail/supervisord_openstack_files/heat-engine.ini +# Install contrail openstack-status +install -p -m 755 tools/provisioning/tools/openstack-status %{buildroot}/%{_bindir}/openstack-status.contrail +popd + +%files +%defattr(-,root,root,-) +%{_sysconfdir}/contrail +%{_initddir} +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/keystone.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/glance-api.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/glance-registry.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/cinder-api.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/cinder-scheduler.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/nova-api.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/nova-scheduler.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/nova-conductor.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/nova-consoleauth.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/nova-novncproxy.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/heat-api.ini +%config(noreplace) %{_sysconfdir}/contrail/supervisord_openstack_files/heat-engine.ini +%{_bindir}/openstack-status.contrail + +%post +# Replace stock openstack-status with contrail openstack-status +if [ -f %{_bindir}/openstack-status ]; then + mv %{_bindir}/openstack-status %{_bindir}/openstack-status.rpmsave +fi +mv %{_bindir}/openstack-status.contrail %{_bindir}/openstack-status + +# Replace stock openstack initd scripts with contrail initd scripts +for svc in openstack-keystone openstack-nova-api openstack-nova-scheduler\ + openstack-nova-consoleauth openstack-nova-conductor\ + openstack-nova-novncproxy openstack-glance-api\ + openstack-glance-registry openstack-cinder-api\ + openstack-heat-api openstack-heat-engine\ + openstack-cinder-scheduler; do + if [ -f %{_initddir}/$svc ]; then + service $svc stop || true + mv %{_initddir}/$svc %{_initddir}/$svc.backup + fi +done + +%changelog +* Thu Jun 2 2016 Nagendra Maynattamai +- Added python-openstackclient as one of the dependency +* Tue Sep 26 2013 +* Initial build. diff --git a/common/rpm/contrail-openstack-vrouter.spec b/common/rpm/contrail-openstack-vrouter.spec index 9fe8982d1..f119e2798 100644 --- a/common/rpm/contrail-openstack-vrouter.spec +++ b/common/rpm/contrail-openstack-vrouter.spec @@ -33,7 +33,6 @@ Requires: contrail-nova-vif >= %{_verstr}-%{_relstr} Requires: openstack-nova-compute Requires: openstack-utils -Requires: librabbitmq %description Contrail Package Requirements for Contrail Openstack vRouter @@ -52,7 +51,7 @@ install -D -m 755 %{_nodemgr_config}/contrail-vrouter-nodemgr.initd.supervisord %postun %files -/etc/contrail/contrail-vrouter-nodemgr.conf +%config(noreplace) /etc/contrail/contrail-vrouter-nodemgr.conf /etc/init.d/contrail-vrouter-nodemgr %changelog diff --git a/common/rpm/contrail-setup.spec b/common/rpm/contrail-setup.spec index 20d9fc2be..f8a81dac1 100644 --- a/common/rpm/contrail-setup.spec +++ b/common/rpm/contrail-setup.spec @@ -44,6 +44,7 @@ Requires: gcc Requires: python-devel Requires: python-netaddr Requires: openstack-utils +Requires: crudini %if 0%{?fedora} >= 17 #Requires: python-Fabric Requires: python-crypto diff --git a/common/rpm/contrail-vrouter-init.spec b/common/rpm/contrail-vrouter-init.spec index 4dd169a36..95612b9bb 100644 --- a/common/rpm/contrail-vrouter-init.spec +++ b/common/rpm/contrail-vrouter-init.spec @@ -55,6 +55,8 @@ install -p -m 755 %{_distropkgdir}/agent.conf %{buildroot}/etc/contrail/rpm_age %files /opt/* +%config(noreplace) %{_supervisordir}/contrail-vrouter-nodemgr.ini +%config(noreplace) /etc/contrail/rpm_agent.conf /etc/* /var/* %dir %attr(0777, contrail, contrail) /var/log/contrail diff --git a/common/rpm/contrail-web-server-manager.spec b/common/rpm/contrail-web-server-manager.spec index 5ed5f2a6e..476b51285 100644 --- a/common/rpm/contrail-web-server-manager.spec +++ b/common/rpm/contrail-web-server-manager.spec @@ -74,9 +74,9 @@ rm -rf %{_specdir}/contrail-web-server-manager.spec %files %defattr(-,root,root) %{_contrailwebsrc}/* -%{_contrailetc}/* +%config(noreplace) %{_contrailetc}/* %{_initddir}/* -%{_supervisordir}/* +%config(noreplace) %{_supervisordir}/* %post mkdir -p /var/log/contrail/ diff --git a/openstack/debian/openstack-nova/kilo/debian/changelog b/openstack/debian/openstack-nova/kilo/debian/changelog index 7d007c5bb..bf4e39a30 100644 --- a/openstack/debian/openstack-nova/kilo/debian/changelog +++ b/openstack/debian/openstack-nova/kilo/debian/changelog @@ -1,3 +1,9 @@ +nova (1:2015.1.2-0ubuntu2~cloud0.1contrail1) trusty-kilo; urgency=medium + + * Fixed storage_scope changes for live-migration/block-migraition to work + + -- Jeya ganesh babu J Tue, 24 Jan 2017 17:34:11 +0000 + nova (1:2015.1.2-0ubuntu2~cloud0.1contrail) trusty-kilo; urgency=medium * Added 1contrail in contrail package diff --git a/openstack/debian/openstack-nova/liberty/debian/README.Source b/openstack/debian/openstack-nova/liberty/debian/README.Source new file mode 100644 index 000000000..8f506aa48 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/README.Source @@ -0,0 +1,6 @@ +To do a release to the ubuntu archive: + +1. dch --release && debcommit --release +2. bzr bd -S +3. dput +4. Once it has been accepted: bzr push diff --git a/openstack/debian/openstack-nova/liberty/debian/changelog b/openstack/debian/openstack-nova/liberty/debian/changelog new file mode 100644 index 000000000..530ae6a70 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/changelog @@ -0,0 +1,2204 @@ +nova (2:12.0.1-0ubuntu1~cloud0.1contrail) trusty-liberty; urgency=medium + + * Initial packaging for the OpenContrail. + + -- Michal Dubiel Tue, 22 Mar 2016 12:48:10 +0100 + +nova (2:12.0.1-0ubuntu1~cloud0) trusty-liberty; urgency=medium + + * New upstream release for the Ubuntu Cloud Archive. + + -- Openstack Ubuntu Testing Bot Fri, 22 Jan 2016 16:27:55 +0000 + +nova (2:12.0.1-0ubuntu1) wily; urgency=medium + + * New upstream point release for OpenStack Liberty (LP: #1530913): + - d/p/lp1508230.patch: Dropped. Fixed upstream. + + -- Corey Bryant Thu, 21 Jan 2016 11:02:52 -0500 + +nova (2:12.0.0-0ubuntu2.15.10.1) wily; urgency=high + + * Fix attribute error when cloning raw images in Ceph (LP: #1508230): + - d/p/lp1508230.patch: Cherry pick fix from upstream stable branch + in advance of pending point release. + + -- James Page Thu, 07 Jan 2016 09:56:57 +0000 + +nova (2:12.0.0-0ubuntu2) wily; urgency=medium + + * debian/tests/nova-compute-daemons: Give daemon 5 seconds to start. This is + racy as the postinst start job is done as soon as Python starts, but that + still needs some time to run nova-compute. Also, don't hide the apt-get + output as it's important for diagnostics. + + -- Martin Pitt Mon, 19 Oct 2015 14:47:17 +0200 + +nova (2:12.0.0-0ubuntu1) wily; urgency=medium + + * New upstream release for OpenStack Liberty. + + -- Corey Bryant Thu, 15 Oct 2015 17:19:13 -0400 + +nova (2:12.0.0~rc3-0ubuntu1) wily; urgency=medium + + * New upstream release candidate for OpenStack Liberty. + * d/control: Align dependencies with upstream. + + -- Corey Bryant Wed, 14 Oct 2015 11:28:11 -0400 + +nova (2:12.0.0~rc2-0ubuntu1) wily; urgency=medium + + * New upstream release candidate for OpenStack Liberty. + + -- Corey Bryant Thu, 08 Oct 2015 15:51:26 -0400 + +nova (2:12.0.0~rc1-0ubuntu1) wily; urgency=medium + + * d/watch: Update to cope with upstream rc versioning. + * New upstream release candidate for OpenStack Liberty. + * d/control: Bump minimum pbr version to 1.8. + * d/control: Align dependencies with upstream. + * d/p/arm-console-patch.patch: Rebased. + * d/p/ignore-proxies.patch: Rebased. + * d/p/disable-sphinxcontrib.seqdiag.patch: Rebased. + + -- Corey Bryant Mon, 28 Sep 2015 15:18:09 -0400 + +nova (2:12.0.0~b3-0ubuntu3) wily; urgency=medium + + * Fix a typo in package description. (LP: #1266432) + + -- Hans Joachim Desserud Fri, 18 Sep 2015 13:38:49 +0200 + +nova (2:12.0.0~b3-0ubuntu2) wily; urgency=medium + + * d/nova-common.install: Install nova-rootwrap-daemon. + + -- Corey Bryant Thu, 10 Sep 2015 10:08:05 -0400 + +nova (2:12.0.0~b3-0ubuntu1) wily; urgency=medium + + * New upstream milestone for OpenStack Liberty. + * d/control: Align (build-)depends with upstream. + * d/p/disable-websockify-tests.patch: Rebased. + * d/p/neutron-floating-ip-list.patch: Rebased. + + -- Corey Bryant Tue, 08 Sep 2015 16:02:01 -0400 + +nova (2:12.0.0~b2-0ubuntu2) wily; urgency=medium + + * d/control: Align (build-)depends with upstream. + * d/control: Add python-pymysql to depends. + + -- Corey Bryant Wed, 19 Aug 2015 14:37:58 -0400 + +nova (2:12.0.0~b2-0ubuntu1) wily; urgency=medium + + * New milestone for OpenStack Liberty. + * Update (build-)depends inline with upstream. + * Refresh patches. + * Disable use of sphinxcontrib.seqdiag. + + -- James Page Wed, 12 Aug 2015 09:19:17 +0100 + +nova (2:12.0.0~b1-0ubuntu3) wily; urgency=medium + + * No change rebuild with SQLAlchemy 1.0.6. + + -- James Page Fri, 24 Jul 2015 09:30:12 +0100 + +nova (2:12.0.0~b1-0ubuntu2) wily; urgency=medium + + * d/nova-compute.upstart.in: Fix (another) race between nova-compute and + neutron-ovs-cleanup (LP: #1471022). + + -- Edward Hope-Morley Mon, 06 Jul 2015 11:53:51 +0100 + +nova (2:12.0.0~b1-0ubuntu1) wily; urgency=medium + + * New milestone for OpenStack Liberty. + * Update (build-)depends inline with upstream. + * Refresh patches. + + -- James Page Thu, 25 Jun 2015 10:19:08 +0100 + +nova (1:2015.1.0-0ubuntu1) vivid; urgency=medium + + * New upstream release for OpenStack Kilo. (LP: #1449744) + + -- Chuck Short Sun, 03 May 2015 13:56:17 -0400 + +nova (1:2015.1~rc1-0ubuntu1) vivid; urgency=medium + + * New uptream milestone release: + - d/control: Align with upstream version requirements. + + -- Chuck Short Wed, 15 Apr 2015 14:00:05 -0400 + +nova (1:2015.1~b3-0ubuntu1) vivid; urgency=medium + + * New upstream milestone release: + - d/p/*: Refresh. + - d/p/compute-blkid-filter.patch,fix-oslo-transition.patch: Dropped, + no longer required. + - d/p/rate-limit-power-syncs.patch: Disable pending full rebase. + - d/control: Align with upstream version requirements. + - d/control: Add new dependencies on oslo-log, psutil. + - d/control: Move oslo-vmware dependency to nova-compute-vmware package + as no longer core. + - d/p/skip-proxy-test.patch: Skip test which fails in launchpad buildds + due to proxy confusion. + * d/control: Add python-testresources to BD's. + * d/pydist-overrides: Add overrides for oslo packages. + + -- James Page Mon, 30 Mar 2015 11:20:49 +0100 + +nova (1:2015.1~b2-0ubuntu6) vivid; urgency=medium + + * d/p/fixup-blkid.patch: Cherry pick inflight fix for return code + handling of blkid calls in libvirt kvm compute driver (LP: #1426324). + + -- James Page Tue, 03 Mar 2015 14:42:44 +0000 + +nova (1:2015.1~b2-0ubuntu5) vivid; urgency=medium + + * d/nova-compute.init.in: Start after neutron-ovs-cleanup if + installed. + * d/p/compute-blkid-filter.patch: Cherry pick fix for missing blkid + rootwrap filter from upstream gerrit (LP: #1424054). + + -- James Page Tue, 24 Feb 2015 14:13:16 +0000 + +nova (1:2015.1~b2-0ubuntu4) vivid; urgency=medium + + * Fixed race between nova-compute and neutron-ovs-cleanup (LP: #1420572). + + -- Edward Hope-Morley Mon, 23 Feb 2015 13:41:47 +0000 + +nova (1:2015.1~b2-0ubuntu3) vivid; urgency=medium + + * debian/control: Remove python-wsgiref and add it the blacklist. + + -- Chuck Short Fri, 13 Feb 2015 13:12:53 -0500 + +nova (1:2015.1~b2-0ubuntu2) vivid; urgency=medium + + [ Corey Byrant ] + * d/control: Align with upstream dependencies. + + [ Chuck Short] + * debian/patches/fix-oslo-transition.patch: Fixes oslo transtion. + + -- Chuck Short Thu, 12 Feb 2015 14:02:31 -0500 + +nova (1:2015.1~b2-0ubuntu1) vivid; urgency=medium + + [ Corey Byrant ] + * New upstream release. + - d/control: Align with upstream dependencies. + - d/p/arm-console-patch.patch: Rebased. + - d/p/update-run-tests.patch: Rebased. + - d/p/rate-limit-power-syncs.patch: Rebased. + - d/p/skip-ubuntu-tests.patch: Dropped. Patched code removed upstream. + + [ Chuck Short ] + * debian/control: Transition to new oslo namespace. + * debian/control: Dropped python-posix-ipc, python-anyjson, python-pycadf, + python-lockfile, python-simplejson, python-mox, python-feedparser, and, + python-wsgiref + * debian/patches/skip-ubuntu-tests.patch: Skipped failing tests. + + -- Chuck Short Thu, 12 Feb 2015 09:05:09 -0500 + +nova (1:2015.1~b1-0ubuntu5) vivid; urgency=medium + + * Rebuild to pick up pkgos upstart generation fix. + - d/control: Bump openstack-pkg-tools to ensure upstart fix inclusion. + + -- Corey Bryant Wed, 14 Jan 2015 16:27:46 +0000 + +nova (1:2015.1~b1-0ubuntu4) vivid; urgency=medium + + * d/nova-objectstore.init.in: Add missing init.in configuration for + object storage daemon, resolving DEP-8 test failure. + + -- James Page Mon, 12 Jan 2015 08:31:49 +0000 + +nova (1:2015.1~b1-0ubuntu3) vivid; urgency=medium + + * Systemd enablement: + - d/control,rules: Add BD on openstack-pkg-tools, include in rules file. + - d/*.init.in: Cherry pick and adapt init script template configurations + from Debian packaging (thanks Thomas). + - d/*.upstart: Drop all upstart configuration files in preference to + templates apart from nova-compute. + - d/nova-compute.upstart.in: Rename to make part of openstack-pkg-tools + templating. + * d/control,d/nova-serialproxy.*: Add nova-serialproxy binary package, + moved from nova-compute package. + * d/*.logrotate,nova-common.logrotate: Move to single logrotate + configuration file. + * d/compat,control: Bump debhelper compat level to 9. + * Patchworks: + - d/p/scalable-scheduler.patch: Cherry pick scalable scheduler feature + from upstream gerrit. + - d/p/rate-limit-power-syncs.patch: Cherry pick feature to rate limit + power sync tasks from compute nodes from upstream gerrit. + * d/changelog: Fixup formatting error for 1:2013.2~b3-0ubuntu2. + * d/*.manpages: Add any missing manpages. + * d/rules: General tidy. + * d/control: Drop obsolete ostack-lsb-base usage for dependency generation. + * d/control: Switch unversioned Breaks: nova-api to Conflicts. + + -- James Page Thu, 08 Jan 2015 10:09:44 +0000 + +nova (1:2015.1~b1-0ubuntu2) vivid; urgency=medium + + * d/tests/*: Drop nova-baremetal tests. + + -- James Page Sat, 20 Dec 2014 09:27:30 +0000 + +nova (1:2015.1~b1-0ubuntu1) vivid; urgency=medium + + [ Chuck Short ] + * Open for Kilo + * debian/control: Update bzr branch. + * debian/patches/arm-console-patch.patch: Refreshed. + * debian/patches/disable-websockify-tests.patch: Refreshed. + * debian/patches/skip-ubuntu-tests.patch: Refreshed. + * debian/control: Add python-oslo.middleware as a build dependency. + * debian/control: Add python-oslo.concurrency as a build dependency. + * debian/control: Add python-oslo.serializatoin as a build dependency. + * debian/control: Add python-oslo.utils as a build dependency. + * debian/control: Add python-requests-mock as a build dependency. + * debian/control: Add python-mox3 as a build depenency. + * debian/nova-baremetal.install: Remove baremetal helpers. + * debian/patches/skip-cinder-tests.patch: Skip cinder tests that + are not setup. + * debian/control: Remove nova-baremetal. + * debian/control: + - Bump python-sqlachemy-ext to 0.8.4. + - Bump python-eventlet to 0.15.2. + + [ James Page ] + * New upstream release: + - d/p/*: Refreshed. + - d/control: Align version requirements with upstream. + * d/control: Bumped Standards-Version to 3.9.6, no changes. + * d/rules: Limit package build tests to unit tests only. + + -- James Page Fri, 19 Dec 2014 17:16:33 +0000 + +nova (1:2014.2-0ubuntu1) utopic; urgency=medium + + [ Chuck Short ] + * New upstream release. + + [ James Page ] + * d/p/neutron-floating-ip-list.patch: Cherry pick proposed fix for + missing server uuids in floating-ip-list when using neutron networking + (LP: #1380965). + + -- Chuck Short Thu, 16 Oct 2014 13:44:25 -0400 + +nova (1:2014.2~rc2-0ubuntu1) utopic; urgency=medium + + [ Corey Bryant ] + * New upstream release candidate. + + -- Chuck Short Fri, 10 Oct 2014 13:42:33 -0400 + +nova (1:2014.2~rc1-0ubuntu2) utopic; urgency=medium + + * d/control: Drop websockify from BD's as its not ready for Ubuntu + main inclusion. + * d/p/disable-websockify-tests.patch: Skip websocketproxy tests + if import of websockify fails. + * d/watch: Limit matches to versions starting with numbers. + + -- James Page Wed, 08 Oct 2014 17:29:34 +0100 + +nova (1:2014.2~rc1-0ubuntu1) utopic; urgency=medium + + [ Chuck Short ] + * d/fix-requirements.patch: Dropped + * d/control: Add python-oslo.db as a dependency. + + [ James Page ] + * d/watch: Use tarballs.openstack.org for releases. + * New upstream release candidate: + - d/p/*: Refreshed. + - d/control: Aligned versioned dependencies with upstream. + - d/control: Add python-ironicclient, python-libvirt and + websockify to BD's. + * d/p/update-run-tests.sh: Let testr decide what test concurrency is + appropriate. + * d/control,rules: Drop python-nose BD, switch back to run_tests.sh wrapper + for unit test execution. + + -- James Page Wed, 01 Oct 2014 13:46:17 +0100 + +nova (1:2014.2~b3-0ubuntu1) utopic; urgency=medium + + * New upstream release. + * debian/nova-compute.install: Add nova-idmapshift and nova-serialproxy. + * debian/control: Add python-rfc3986 as a build dependency. + * debian/control: Add python-lockfile as a build dependency. + * debian/control: Add python-oslo.vmware as a build dependency + * debian/rules: Enable tests. + * debian/patches/debian/patches/arm-console-patch.patch: Refreshed + + -- Chuck Short Tue, 09 Sep 2014 09:32:37 -0400 + +nova (1:2014.2~b2-0ubuntu2) utopic; urgency=medium + + * debian/patches/fix-requirements.patch: Refreshed. + + -- Chuck Short Mon, 18 Aug 2014 11:13:13 -0400 + +nova (1:2014.2~b2-0ubuntu1) utopic; urgency=medium + + * New upstream version. + * debian/rules: Re-enabled tests. + * debian/patches/fix-requirements.patch: Refreshed. + * debian/control: Add python-hacking as a build dependency. + * debian/patches/skip-ipv6-tests.patch: Renamed to skip-ubunut-tests.patch + * debian/nova.conf: Cleaned up configuration file. + * debian/control: Add python-posix-ipc as a build dependency. + * debian/control: Add python-oslo.i18n as a build dependency. + + -- Chuck Short Fri, 25 Jul 2014 12:01:03 -0400 + +nova (1:2014.2~b1-0ubuntu3) utopic; urgency=medium + + * debian/tests/nova-daemon: Do not run nova-novncproxy. + + -- Chuck Short Fri, 27 Jun 2014 09:10:24 -0400 + +nova (1:2014.2~b1-0ubuntu2) utopic; urgency=medium + + * SECURITY UPDATE: specify /etc/nova/rootwrap.conf for use with + nova-rootwrap + - CVE-2013-1068 (LP: #1185019) + + -- Chuck Short Wed, 18 Jun 2014 11:17:52 -0400 + +nova (1:2014.2~b1-0ubuntu1) utopic; urgency=medium + + * New upstream release. + * debian/control: Open up juno. + * debian/patches/fix-requirements.patch: Refreshed. + * debian/nova-scheduler.install: Drop nova-clear-rabbit-queues. + * debian/control: Add python-oslotest as a build dependency. + * debian/rules: Temporarily disable tests since it doesnt build properly. + + -- Chuck Short Thu, 12 Jun 2014 12:56:12 -0400 + +nova (1:2014.1-0ubuntu1) trusty; urgency=medium + + [ Chuck Short ] + * debian/control: Add genisoimage as a dependency for nova-comute-vmware. + (LP: #1306484) + + [ Corey Bryant ] + * New upstream release (LP: #1299055). + + -- Chuck Short Fri, 02 May 2014 14:08:31 -0400 + +nova (1:2014.1~rc2-0ubuntu1) trusty; urgency=medium + + * New upstream release candidate (LP: #1299055) including fixes for: + - Require admin context for interfaces on external networks to prevent + non-admin users directly creating ports on external networks + (LP: #1284718). + + -- James Page Thu, 10 Apr 2014 10:59:37 +0100 + +nova (1:2014.1~rc1-0ubuntu1) trusty; urgency=medium + + [ Chuck Short ] + * debian/control: Use python-oslosphinx instead of python-oslo.sphinx. + * debian/patches/use-oslo.sphinx-namespace.patch: Dropped no longer needed + because of the python-oslo.sphinx rename. + * debian/patches/arm-console-patch.patch: Fix typo in patch to allow + booting ARM vm. + * debian/nova-common.install: Remove nova-rpc-zmq-receiver, it has been + removed upstream. + + [ Corey Bryant ] + * New upstream release. (LP: #1299055) + + -- Corey Bryant Mon, 31 Mar 2014 16:21:50 -0400 + +nova (1:2014.1~b3-0ubuntu2) trusty; urgency=medium + + * d/nova-common.postinst: Tidy detection of default sqlite to ensure + that db sync is only run against local databases (LP: #1290423). + + -- James Page Thu, 13 Mar 2014 11:00:23 +0000 + +nova (1:2014.1~b3-0ubuntu1) trusty; urgency=medium + + * New upstream release. + * debian/patches/fix-requirements.patch: Refreshed. + * debian/patches/fix-novnc-regression.patch: Dropped no longer needed. + * debian/patches/fix-docs-build-without-network.patch: Dropped no longer needed. + * debian/control: Add python-oslo.messaging as a build dependcy. + * debian/patches/sqlachemy-0.8.3-compat.patch: Dropped no longer needed. + * debian/patches/use-oslo.sphinx-namespace.patch: Use the oslo.sphinx name + space for documentation. + * debian/patches/arm-console-patch.patch: Add additonal tty for arm64. + * debian/patches/update-run-tests.patch: Display tests results while building + and set the concurrency to 1. + * debian/control: Add subunit as a build-dependency. + + -- Chuck Short Thu, 06 Mar 2014 12:02:41 -0500 + +nova (1:2014.1~b2-0ubuntu3) trusty; urgency=medium + + * debian/tests/nova-compute-daemons: Drop nova-compute-uml. + + -- Chuck Short Fri, 31 Jan 2014 14:40:23 -0500 + +nova (1:2014.1~b2-0ubuntu2) trusty; urgency=medium + + * debian/patches/fix-nova-api-fake-network.patch: Fixed nova-api-metadata + not starting. (LP: #1270845) + + -- Chuck Short Thu, 30 Jan 2014 14:06:29 -0500 + +nova (1:2014.1~b2-0ubuntu1) trusty; urgency=low + + [ Chuck Short ] + * New upstream release. + * debian/patches/fix-libvirt-regression.patch: Dropped. + * debian/patches/sqlachemy-0.8.3-compat.patch: Refreshed. + * debian/control: Add python-pycadf dependency. + * debian/patches/fix-requirements.patch: Refreshed. + + [ James Page ] + * d/nova-compute-*.conf: Update default hypervisor configurations + to use new libvirt section configuration. + * d/control: Bump version for stevedore to >= 0.12. + * d/p/*: Refreshed. + * d/control: Add new nova-compute-libvirt package to support libvirt + based hypervisors, rework dependencies for nova-compute{-*} to + align to this approach (LP: #928834). + * d/nova-compute.postinst: Renamed to nova-compute-libvirt.postinst + as its only appropriate for libvirt based hypervisors. + * d/control,nova-compute-vmware.*,rules: Add new nova-compute-vmware + hypervisor package. + * d/control: Add missing ebtables dependency for nova-network + (LP: #1161338). + * d/nova-compute.upstart: If libvirt-bin is installed, then wait + for it to reach running state before starting nova-compute + (LP: #907152, #1190280). + * d/nova-spiceproxy.logrotate: Manage the correct log file (LP: #1259332). + * d/control: Drop dependency on curl, no longer required. + * d/control,rules,nova-compute-uml.*: Drop nova-compute-uml package. + * d/nova-compute.postinst,nova-compute-libvirt.postinst: Move permissions + changes to compute rootwrap filters to nova-compute postinst. + * d/control: Add python-oslo.rootwrap to BD's. + + -- Chuck Short Thu, 23 Jan 2014 13:26:34 -0500 + +nova (1:2014.1~b1-0ubuntu2) trusty; urgency=low + + * d/nova-compute.postinst.in: rename to nova-compute.postinst + as libvirtd detection is no longer done in d/rules. + + -- James Page Wed, 11 Dec 2013 09:38:18 +0000 + +nova (1:2014.1~b1-0ubuntu1) trusty; urgency=low + + * New upstream release. + * debian/control: + - Open icehouse release. + - Bump the versioned dependencies of python-pbr, python-migrate, + and python-six. + - Add "X-Python-Version:" + * Dropped xcp support (LP: #1197386) (LP: #1199791): + - debian/patches/path-to-the-xenhost.conf-fixup.patch: Removed + - debian/control: Removed nova-compute-xcp, nova-xcp-plugins, + and nova-xcp-network. + * debian/patches/fix-boto-versioning.patch: Dropped no longer needed. + * debian/patches/native-lxc-hypervisor.patch: Dropped. + * Simplified debian/rules: + - Remove git vcs, its not being used by anyone, complain if you are. + - Removed libvirtd detection, no need for it so drop it. + - Simplify building required docs including mangpages. + - Add OSLO_VERSION to set correct distro version for package build. + * debian/patches/sqlachemy-0.8.3-compat.patch: Add support for + sqlachemy 0.8.3. + * debian/patches/avoid-failing-test.patch: Dropped. + * debian/patches/skip_ipv6_test.patch: Skip ipv6 test. + * debian/patches/fix-libvirt-regression.patch: Fix libvirt regression + while running the tests. + + -- Chuck Short Thu, 05 Dec 2013 11:25:41 -0500 + +nova (1:2013.2-0ubuntu1) saucy; urgency=low + + * New upstream release (LP: #1236462). + + -- Chuck Short Thu, 17 Oct 2013 11:27:05 -0400 + +nova (1:2013.2~rc2-0ubuntu1) saucy; urgency=low + + * New upstream release candidate (LP: #1239156): + - d/p/fix-boto-versioning.patch: Cherry picked fix from upstream gerrit for + test failures with boto < 2.13. + * d/control: Add epoch to versioned dependencies for python-oslo.config. + + -- James Page Sun, 13 Oct 2013 11:05:46 +0100 + +nova (1:2013.2~rc1-0ubuntu3) saucy; urgency=low + + * debian/patches/native-lxc-hypervisor.patch: Update + rootwrap.d/compute.filters to allow nova-network to start. + (LP: #1235373) + + -- Chuck Short Fri, 04 Oct 2013 13:18:17 -0400 + +nova (1:2013.2~rc1-0ubuntu2) saucy; urgency=low + + [ Chuck Short ] + * debian/patches/fix-novnc-regression.patch: Fix regression caused + by use of more recent version of websockify upstream (LP: #1235044). + + -- James Page Fri, 04 Oct 2013 11:13:34 +0100 + +nova (1:2013.2~rc1-0ubuntu1) saucy; urgency=low + + * New upstream release candidate. + * debian/control: + - Dropped python-setuptools-git, python-carrot, python-unittest2, + python-daemon, python-gflags, python-cheetah, python-glance, + python-lockfile, python-routes, python-xattr, python-novaclient, + python-pycurl, python-keystone, python-libxml2, python-pyparsing, + and python-d2to1. + - Suggest python-ldap for python-nova. + - Added python-mock, python-greenlet, python-keystoneclient, + python-anyjson, python-jsonschema, and python-six + - Bumped versioned dependencies for python-fixtures, python-testtools, and + testrepository, + python-stevedore, + - Added versioned depends for python-cinderclient, python-neutronclient, + python-boto, python-paramiko, python-amplib, python-eventlet, + python-glanceclient, python-oslo.config, python-paramiko, python-six + * debian/patches/fix-requirements.patch: Rediffed + * debian/patches/native-lxc-hypervisor.patch: Add native lxc support. + (LP: #1220701) + + -- Chuck Short Thu, 03 Oct 2013 09:42:52 -0400 + +nova (1:2013.2~b3-0ubuntu2) saucy; urgency=low + + * debian/tests: Removed tests for nova-compute-xen and nova-compute-xcp. + + -- Chuck Short Fri, 13 Sep 2013 10:12:52 -0400 + +nova (1:2013.2~b3-0ubuntu1) saucy; urgency=low + + * New usptream release. + * debian/patches/avoid_requirements_cheetah.patch: Dropped + * debian/patches/fix-sqlalchemy-0.7.9-usage.patch: Dropped + * debian/patches/fix-requirements.patch: Refreshed. + * debian/patches/path-to-the-xenhost.conf-fixup.patch: Refreshed + * debian/control: Add python-jinja2 + * debian/control: Dropped python-cheetah + + -- Chuck Short Mon, 09 Sep 2013 13:11:11 -0400 + +nova (1:2013.2~b2-0ubuntu2) saucy; urgency=low + + * debian/control: Fix python-sqlalchemy dependency. + + -- Chuck Short Fri, 19 Jul 2013 15:03:16 -0400 + +nova (1:2013.2~b2-0ubuntu1) saucy; urgency=low + + [ Adam Gandelman ] + * d/patches/requirements_drop_requests_vers_cap.patch: Remove + upper version limit on requests dependency, which was capped upstream + to fix centos-related gating issues. + * debian/control: + - Set version requirement python-kombu (>= 2.5.12). + - Set version requirement python-pyparsing (>= 1.5.6). + - Add websockify to nova-spiceproxy Depends. + - Add spice-html5 to nova-spiceproxy Depends (LP: #1197119) + * Add nova-xvpvncproxy upstart (LP: #1197163) + + [ James Page ] + * d/control: Update VCS fields for new branch locations. + + [ Chuck Short ] + * New upstream release. + * debian/patches/fix-requirements.patch: Combined several + patches into one. + * debian/control: Replace python-quantumclient with python-neutronclient. + * debian/patches/fix-sqlalchemy-0.7.9-usage.patch: Temporary patch to address a FTBFS + with sqlalchemy 0.7.9. + * debian/patches/avoid-failing-test.patch: Skip failing test on buildds. + + -- Chuck Short Fri, 19 Jul 2013 09:15:03 -0400 + +nova (1:2013.2~b1-0ubuntu3) saucy; urgency=low + + * Depend on python-oslo.config instead of python-oslo-config. + + -- Adam Conrad Sat, 06 Jul 2013 15:36:40 -0600 + +nova (1:2013.2~b1-0ubuntu2) saucy; urgency=low + + [Yolanda Robla] + * debian/tests: added autopkgtests + + [ Adam Gandelman ] + * debian/control: Set version requirements python-pbr (>= 0.5.11), + python-d2to1 (>= 0.2.10). + + -- Chuck Short Wed, 19 Jun 2013 13:00:11 -0500 + +nova (1:2013.2~b1-0ubuntu1) saucy; urgency=low + + [ Chuck Short ] + * New upstream version. + * debian/patches/avoid_setuptools_git_dependency.patch: Dropped + no longer needed. + * debian/control: Add python-pbr and python-d2to1 as build dependencies. + * debian/control: Drop pep8 dependency. + * debian/patches/fix-ubuntu-tests.patch: Dropped no longer needed. + + [ Adam Gandelman ] + * debian/patches/avoid_requirements_websockify.patch: Remove websockify + to avoid making it a dependency of every nova package. + * debian/patches/avoid_requirements_cheetah.patch: Temporarily remove + Cheetah until cheetah's dependencies have been MIR'd. + * debian/control: Add python-babel. + * debian/control: Set min. version 0.7.6 on python-netaddr dependency. + + -- Chuck Short Fri, 31 May 2013 07:44:38 -0500 + +nova (1:2013.1-0ubuntu2) raring; urgency=low + + * debian/nova-cells.upstart: Fix typo in upstart job. (LP: #1163218) + * debian/control: Add iptables dependency. (LP: #1172393) + + -- Chuck Short Wed, 24 Apr 2013 07:39:25 -0500 + +nova (1:2013.1-0ubuntu1) raring; urgency=low + + * New upstream release. + + -- Chuck Short Thu, 04 Apr 2013 10:42:21 -0500 + +nova (1:2013.1~rc2-0ubuntu1) raring; urgency=low + + [ James Page ] + * d/control: Promote novnc and websockify to Depends for + nova-novncproxy (LP: #1066845). + + [ Chuck Short ] + * New upstream release. + + -- Chuck Short Tue, 02 Apr 2013 08:44:39 -0500 + +nova (1:2013.1~rc1-0ubuntu1) raring; urgency=low + + [ Chuck Short ] + * New upstream release. + * debian/patches/avoid_setuptools_git_dependency.patch: Refreshed. + * debian/control: Clean up dependencies: + - Dropped python-gflags no longer needed. + - Dropped python-daemon no longer needed. + - Dropped python-glance no longer needed. + - Dropped python-lockfile no longer needed. + - Dropped python-simplejson no longer needed. + - Dropped python-tempita no longer needed. + - Dropped python-xattr no longer needed. + - Add sqlite3 required for the testsuite. + + [ James Page ] + * d/watch: Update uversionmangle to deal with upstream versioning + changes, remove tarballs.openstack.org. + + -- Chuck Short Wed, 20 Mar 2013 12:59:22 -0500 + +nova (2013.1.g3-0ubuntu1) raring; urgency=low + + [ Chuck Short ] + * New usptream release. + * debian/patches/debian/patches/fix-ubuntu-tests.patch: Refreshed. + * debian/nova-baremetal.logrotate: Fix logfile path. + * debian/control, debian/nova-spiceproxy.{install, logrotate, upstart}: + Add spice html5 proxy support. + * debian/nova-novncproxy.upstart: Start on runlevel [2345] + * debian/rules: Call testr directly since run_tests.sh -N gives weird return + value when tests pass. + * debian/pyddist-overrides: Add websockify. + * debian/nova-common.postinst: Removed config file conversion, since + the option is no longer available. (LP: #1110567) + * debian/control: Add python-pyasn1 as a dependency. + * debian/control: Add python-oslo-config as a dependency. + * debian/control: Suggest sysfsutils, sg3-utils, multipath-tools for fibre + channel support. + + [ Adam Gandelman ] + * debian/control: Fix typo (websocikfy -> websockify). + + -- Chuck Short Fri, 22 Feb 2013 09:27:29 -0600 + +nova (2013.1~g2-0ubuntu3) raring; urgency=low + + * SECURITY UPDATE: fix lack of authentication on block device used for + os-volume_boot + - debian/patches/CVE-2013-0208.patch: adjust nova/compute/api.py to + validate we can access the volumes + - CVE-2013-0208 + + -- Jamie Strandboge Thu, 24 Jan 2013 08:23:44 -0600 + +nova (2013.1~g2-0ubuntu2) raring; urgency=low + + * Make nova-compute-kvm prefer qemu-system over kvm for the new qemu. + + -- Adam Conrad Sat, 19 Jan 2013 07:00:56 -0700 + +nova (2013.1~g2-0ubuntu1) raring; urgency=low + + [ Chuck Short ] + * New upstream release. + * debian/patches/ubuntu-show-tests.patch: Dropped no longer needed. + * debian/nova-xcp-plugins.install: Fix xcp-plugins empty packages + * debian/control: Drop python-nose in favor or testrepository + * debian/control: Add python-coverage as a build dep. + * debian/rules, debian/control: Run pep8 tests. + * debian/*.init: Remove they are not needed and take up space + * debian/control, debian/nova-cells.{install, logrotate, upstart}: Add + cells support. + * debian/patches/fix-ubuntu-tests.patch: temporarily disable failing tests. + * debian/control, debian/nova-baremetal.{install, logrotate, upstart}: Add + nova baremetal support. + * debian/control: Remove python-support. + + [ Adam Gandelman ] + * debian/*.manpages: Install Sphinx-generated manpages instead of + our own. + * debian/nova-compute-*.conf: Specify the newly required compute_driver + flag in addition to libvirt_type. + * debian/control: Specify required python-webob and python-stevedore + versions. + + [ Yolanda Robla ] + * debian/*.upstart: Use start-stop-daemon instead of su for chuid + (LP: #1086833). + * debian/rules: Remove override of dh_installinit for discriminating + between Debian and Ubuntu. + * debian/nova-common.docs: Installing changelogs from rules + * debian/rules: Replacing perms in /etc/nova/logging.conf for 0644 + * debian/control: adduser dependency on nova-compute. + * debian/control: added section oldlibs and priority extra on + nova-ajax-console-proxy. + * debian/nova-xvpvncproxy.postrm: removing because of duplicates. + + [ James Page ] + * d/control: Add ~ to python-sqlalchemy-ext versioned dependencies to + make backporting easier. + * d/control: Updated nova-volume description and depdendencies to + mark it as a transitional package, moved to oldlibs/extra. + * d/p/fix-libvirt-tests.patch: Dropped; accepted upstream. + * d/control: Added python-stevedore to BD's. + * d/*.postrm: Dropped postrm's that just run update-rc.d; this is not + required when deploying upstart configurations only. + * d/nova-scheduler.manpages: Add man page for nova-rpc-zmq-receiver. + * d/rules: Install upstream changelog with a policy compliant name. + * d/control: Mark nova-compute-xcp as virtual package. + * d/control: nova-api-os-volume; Depend on cinder-api and mark as + transitional package. + * d/nova-api-os-volume.lintian-overrides: Dropped - no longer required. + + -- Chuck Short Fri, 11 Jan 2013 13:06:56 -0600 + +nova (2013.1~g1-0ubuntu1) raring; urgency=low + + [ Adam Gandelman ] + * debian/control: Ensure novaclient is upgraded with nova, + require python-keystoneclient >= 1:2.9.0. (LP: #1073289) + * debian/patches/{ubuntu/*, rbd-security.patch}: Dropped, applied + upstream. + * debian/control: Add python-testtools to Build-Depends. + + [ Chuck Short ] + * New upstream version. + * Refreshed debian/patches/avoid_setuptools_git_dependency.patch. + * debian/rules: FTBFS if missing binaries. + * debian/nova-scheudler.install: Add missing rabbit-queues and + nova-rpc-zmq-receiver. + * Remove nova-volume since it doesnt exist anymore, transition to cinder-*. + * debian/rules: install apport hook in the right place. + * debian/patches/ubuntu-show-tests.patch: Display test failures. + * debian/control: Add depends on genisoimage + * debian/control: Suggest guestmount. + * debian/control: Suggest websockify. (LP: #1076442) + * debian/nova.conf: Disable nova-volume service. + * debian/control: Depend on xen-system-* rather than the hypervisor. + * debian/control, debian/mans/nova-conductor.8, debian/nova-conductor.init, + debian/nova-conductor.install, debian/nova-conductor.logrotate + debian/nova-conductor.manpages, debian/nova-conductor.postrm + debian/nova-conductor.upstart.in: Add nova-conductor service. + * debian/control: Add python-fixtures as a build deps. + + -- Chuck Short Fri, 23 Nov 2012 09:32:05 -0600 + +nova (2012.2-0ubuntu5) quantal; urgency=low + + [ Adam Gandelman ] + * Move management of /var/lib/nova/volumes from nova-common to + nova-volume. Ensure it has proper permissions. (LP: #1065320) + * debian/patches/avoid_setuptools_git_dependency.patch: Remove + setuptools_git from tools/pip-requires to avoid it being automatically + added to python-nova's runtime dependencies. (LP: #1059907) + + [ Chuck Short ] + * debian/patches/rbd-security.patch: Support override of ceph rbd + user and secret in nova-compute. (LP: #1065883) + * debian/patches/ubuntu/fix-libvirt-firewall-slowdown.patch: Fix + refreshing of security groups in libvirt not to block on RPC calls. + (LP: #1062314) + * debian/patches/ubuntu/fix-ec2-volume-id-mappings.patch: Read deleted + snapshot and volume id mappings. (LP: #1065785) + + -- Chuck Short Fri, 12 Oct 2012 12:35:01 -0500 + +nova (2012.2-0ubuntu4) quantal; urgency=low + + * debian/patches/ubuntu/ubuntu-fix-ec2-instance-id-mappings.patch: + Backport from trunk, Set read_deleted='yes' for instance_id_mappings. + (LP: #1061166) + + -- Chuck Short Tue, 09 Oct 2012 11:51:15 -0500 + +nova (2012.2-0ubuntu3) quantal; urgency=low + + * nova-xvpvncproxy, nova-novncproxy: Add missing .install, .logrotate, + .postrm, manpages and upstart jobs (LP: #1060336) + * debian/{rules, nova-volume.install}: Rename nova_tgt to nova_tgt.conf so + that it is actually loaded by tgt. (LP: #1060422) + + -- Adam Gandelman Tue, 02 Oct 2012 13:44:35 -0700 + +nova (2012.2-0ubuntu2) quantal; urgency=low + + * debian/patches/ubuntu-fix-32-64-bit-iss.patch: Backport + ba8cca2b59bb2904635520ad12f6d9a73f10242c, python's builtin + builtin hash returns different values on 32-bit and 64-bit architectures, + so it's safer to use a well-defined hash like MD5. This fixes a FTBFS + in Ubuntu's buildds. + + -- Chuck Short Fri, 28 Sep 2012 07:49:45 -0500 + +nova (2012.2-0ubuntu1) quantal; urgency=low + + [ Adam Gandelman ] + * debian/control: Depend on python-sqlalchemy >= 0.7.8-1. + + [ Chuck Short ] + * New upstream release. + * debian/control: Dont conflict with novnc. (LP: #1055505) + * debian/nova-volume.postinst, nova-common.dirs: Configure nova-volumes + to use tgtd properly. + + -- Chuck Short Thu, 27 Sep 2012 12:36:04 -0500 + +nova (2012.2~rc3-0ubuntu1) quantal; urgency=low + + * New upstream relase. + + -- Chuck Short Wed, 26 Sep 2012 12:56:25 -0500 + +nova (2012.2~rc2-0ubuntu1) quantal; urgency=low + + [ Adam Gandelman ] + * debian/control: Add python-cinderclient to python-nova Depends. + * wrap-and-sort. + + [ Chuck Short ] + * debian/nova-common.postinst: Change root_helper to rootwrap_config + when upgrading from precise + * debian/pydist-overrides: dont try to install babel. + * New upstream version. + * debian/rules: FTBFS if testsuite fails. + + -- Chuck Short Tue, 25 Sep 2012 10:54:59 -0500 + +nova (2012.2~rc1-0ubuntu1) quantal; urgency=low + + [ Adam Gandelman ] + * Ensure /etc/nova/rootwrap.d/ is only writable by root, ensure + those permissions on /etc/nova/rootwrap.conf as well as + all individual filter configurations. + + [ Chuck Short ] + * Fix lintian warnings + * debian/*.lograote: compress logfiles when they are rotated. (LP: + #1049915) + * debian/control: + - Suggest ceph-common for nova-volume. + - Add python-cinderclient as a build depends. + + [Vishvananda Ishaya] + * Split up vncproxy and xvpvncproxy. + + -- Chuck Short Thu, 20 Sep 2012 07:45:50 -0500 + +nova (2012.2~rc1~20120907.15996-0ubuntu1) quantal; urgency=low + + [ Chuck Short ] + * New upstream release. + * debian/nova-common.postinst: Drop nova_sudoers permission changing + since we do it in the debian/rules. (LP: #995285) + + [ Soren Hansen ] + * Update debian/watch to account for symbolically named tarballs and + use newer URL. + * Fix Launchpad URLs in debian/watch. + + -- Chuck Short Fri, 07 Sep 2012 17:49:53 -0500 + +nova (2012.2~rc1~20120827.15815-0ubuntu1) quantal; urgency=low + + [ Adam Gandelman ] + * New upstream release. + + [ Chuck Short ] + * debian/patches/0001-Update-tools-hacking-for-pep8-1.2-and- + beyond.patch: Dropped we dont run pep8 tests anymore. + * debian/control: Drop pep8 build depends + * debian/*.upstart.in: Make sure we transition correctly from runlevel + 1 to 2. (LP: #820694) + + -- Adam Gandelman Mon, 27 Aug 2012 15:37:18 -0700 + +nova (2012.2~f3-0ubuntu1) quantal; urgency=low + + [ Chuck Short ] + * New upstream version. + * debian/rules: Re-enable testsuite. + * debian/control: + - Add python-quantumclient as a build depends. + - Bump standards to 3.9.3 + - Fix lintian warnings. + - Recommend python-glanceclient and python-keystoneclient. + - Add dependency of iptables for nova-network. + * debian/watch: Update + * debian/rules: Do not run pep8 tests since upstream is still using an + older pep8. + * debian/patches/0001-Update-tools-hacking-for-pep8-1.2-and- + beyond.patch: Get the testsuite running again. + * debian/nova-volume.install, debian/nova_tgt: Add support for + persistent volumes. + + [ Adam Gandelman ] + * debian/{nova-api.install, nova-api-metadata.install}: Install + api-metadata.filters. (LP: #1002111) + * debian/control: Added python-glanceclient. + + -- Chuck Short Thu, 16 Aug 2012 14:04:11 -0500 + +nova (2012.2~f2-0ubuntu1) quantal; urgency=low + + [ Adam Gandelman ] + * Use new rootwrap configuration structure: + - debian/nova-{compute, network, volume}.{pyinstall, pyremove}: Dropped. + - debian/nova-common.dirs: Add /etc/nova/rootwrap.d/. + - debian/nova-common.install: Install /etc/nova/rootwrap.conf. + - debian/debian/nova.conf: Reference rootwrap.conf in calls to + nova-rootwrap. + - debian/nova-{compute, network, volume}.install: Install corresponding + filter in /etc/nova/rootwrap.d/ + * debian/rules: Install logging_sample.conf to /etc/nova/logging.conf + as part of nova-common. + * debian/pydist-overrides: Add setuptools-git. + * debian/control: Add python-setuptools-git as a Build-Depends. + * debian/rules: Do not remove nova.egg-info during auto_clean. Now that + upstream has moved to setuptools-git, doing so results in missing files + from built package. + + [ Chuck Short ] + * New upstream release. + + -- Chuck Short Fri, 06 Jul 2012 10:18:33 -0400 + +nova (2012.2~f2~20120531.14249-0ubuntu4) quantal; urgency=low + + * debian/rules: Temporarily disable test suite while blocking + tests are investigated. + * debian/patches/kombu_tests_timeout.patch: Dropped. + + -- Adam Gandelman Tue, 19 Jun 2012 17:10:26 -0700 + +nova (2012.2~f2~20120531.14249-0ubuntu3) quantal; urgency=low + + [ Adam Gandelman ] + * debian/patches/nova-manage_flagfile_location.patch: Dropped. + * debian/nova-common.postinst: Old format config will break nova-manage + if left in place. Move it away instead of copying before conversion. + * debian/nova.conf: Set booleans explicitly '=true', specify path to paste + config. + * debian/*.init, debian/*.upstart.in, debian/mans/*: Update to use + --config-file + flag instead of obsolete --flagfile. + * debian/nova-common.postinst: Also handle conversion of nova-compute.conf + to new .ini format. + + [ Paul Belanger ] + * Give nova group read permissions nova files / directories (LP: #989241) + * Add adm group to /var/log/nova (LP: #989242) + + -- Adam Gandelman Tue, 05 Jun 2012 10:39:42 -0700 + +nova (2012.2~f2~20120531.14249-0ubuntu2) quantal; urgency=low + + * Really fix quantal postinst. + + -- Chuck Short Fri, 01 Jun 2012 11:31:33 -0400 + +nova (2012.2~f2~20120531.14249-0ubuntu1) quantal; urgency=low + + * New upstream release. + * debian/nova-common.postinst: Fix typo when upgrading. (LP: #1005479) + * debian/nova-common.docs: Add ChangeLog + * debian/patches/nova-manage_flagfile_location.patch: Refreshed + * debian/patches/upstream: Removed + + -- Chuck Short Fri, 01 Jun 2012 11:07:00 -0400 + +nova (2012.2~f1-0ubuntu1) quantal; urgency=low + + * New upstream release. + * Prepare for quantal: + - Dropped debian/patches/upstream/0006-Use-project_id-in-ec2.cloud._format_image.patch + - Dropped debian/patches/upstream/0005-Populate-image-properties-with-project_id-again.patch + - Dropped debian/patches/upstream/0004-Fixed-bug-962840-added-a-test-case.patch + - Dropped debian/patches/upstream/0003-Allow-unprivileged-RADOS-users-to-access-rbd-volumes.patch + - Dropped debian/patches/upstream/0002-Stop-libvirt-test-from-deleting-instances-dir.patch + - Dropped debian/patches/upstream/0001-fix-bug-where-nova-ignores-glance-host-in-imageref.patch + - Dropped debian/patches/0001-fix-useexisting-deprecation-warnings.patch + * debian/control: Add python-keystone as a dependency. (LP: #907197) + * debian/patches/kombu_tests_timeout.patch: Refreshed. + * debian/nova.conf, debian/nova-common.postinst: Convert to new ini + file configuration + * debian/patches/nova-manage_flagfile_location.patch: Refreshed + + -- Chuck Short Thu, 24 May 2012 13:12:53 -0400 + +nova (2012.1-0ubuntu2) precise; urgency=low + + [ Adam Gandelman ] + * debian/rules: Properly create empty doc/build/man dir for builds that + skip doc building + * debian/control: Set 'Conflicts: nova-compute-hypervisor' for the various + nova-compute-$type packages. (LP: #975616) + * debian/control: Set 'Breaks: nova-api' for the various nova-api-$service + sub-packages. (LP: #966115) + + [ Chuck Short ] + * Resynchronize with stable/essex: + - b1d11b8 Use project_id in ec2.cloud._format_image() + - 6e988ed Fixes image publication using deprecated auth. (LP: #977765) + - 6e988ed Populate image properties with project_id again + - 3b14c74 Fixed bug 962840, added a test case. + - d4e96fe Allow unprivileged RADOS users to access rbd volumes. + - 4acfab6 Stop libvirt test from deleting instances dir + - 155c7b2 fix bug where nova ignores glance host in imageref + * debian/nova.conf: Enabled ec2_private_dns_show_ip so that juju can + connect to openstack instances. + * debian/patches/fix-docs-build-without-network.patch: Fix docs build + when there is no network access. + + -- Chuck Short Thu, 12 Apr 2012 14:14:29 -0400 + +nova (2012.1-0ubuntu1) precise; urgency=low + + * New upstream release. + + -- Chuck Short Thu, 05 Apr 2012 11:00:38 -0400 + +nova (2012.1~rc4-0ubuntu1) precise; urgency=low + + * New upstream release. + * debian/patches/nova-console-monitor.patch: Disabled. + * debian/nova.conf: Removed console-monitor option. + + -- Chuck Short Wed, 04 Apr 2012 16:55:52 -0400 + +nova (2012.1~rc3-0ubuntu1) precise; urgency=low + + * New Upstream release. + * debian/control: Conflict nova-vncproxy with novnc. + + -- Chuck Short Wed, 04 Apr 2012 09:25:14 -0400 + +nova (2012.1~rc2-0ubuntu1) precise; urgency=low + + [ Adam Gandelman ] + * debian/control: Remove unncessary nova-cert dependency from nova-api. + (LP: #965356) + * debian/nova-common.postinst: Clean up spacing, remove redundant chown, + set blanket 0700 nova.nova permissions on /etc/nova/ + * debian/nova-compute-{kvm, lxc, uml, xen}.postinst: Set proper permissions + on /etc/nova/nova-compute.conf (LP: #861459) + * debian/nova-common.postinst: Ensure default nova.sqlite database is not + world-readable. + * debian/{rules, nova-common.{install, postinst}}: Install api-paste.ini 0600 + with nova-common (in prepartion for proper nova-api-* package separation) + * debian/{nova-common.nova-manage.logrotate, + nova-network.nova-dhcpbridge.logrotate, rules}: Add lograte files, + override_dh_installlogrotate. (LP: #942646) + * Add manpage stubs for nova-api-ec2, nova-api-metadata, + nova-api-os-{volume, compute}, nova-rootwrap. Use sphinx built manpage + for nova-manage (nova-common.manpages) + * debian/nova-compute-{kvm, xen, uml, qemu}.postinst: Remove calls to + adduser since this is already handled from nova-compute.postsinst in a + vendor neutral way. Silences lintian errors regarding adduser dependency + + [ Chuck Short ] + * New upstream version. + * debian/patches/libvirt-use-console-pipe.patch: Dropped. + * debian/patches/nova-console-monitor.patch: Add console-monitor + option. + * debian/nova.conf: Enable use_console_monitor + * debian/patches/fix-ubuntu-tests.patch: Fix nova testsuite. + * debian/rules: fail package build if testsuite fails. + * debian/patches/validate_server_name_length.patch: Dropped no longer + needed. + * debian/patches/fix-docs-build-without-network.patch: Some docs need + a network connection in order to build. Disable fetching docs from + the internet. + * debian/patches/0001-fix-useexisting-deprecation-warnings.patch: + Remove deprecated warnings with sqlalchemy. + + [ Tyler Hicks ] + * SECURITY UPDATE: Denial of service via resource exhaustion in nova-api + (LP: #968411) + - debian/patches/validate_server_name_length.patch: Limit server names + to a maximum of 255 characters to prevent nova-api log files from + exhausting storage space. Based on upstream patch. + - CVE-2012-1585 + + -- Chuck Short Mon, 02 Apr 2012 11:17:33 -0400 + +nova (2012.1~rc1-0ubuntu2) precise; urgency=low + + * debian/control: Add Breaks/Replaces to nova-consoleauth, update + description, nova-console Recommends nova-consoleauth + * debian/nova-console.install: Remove nova-consoleauth + + -- Adam Gandelman Thu, 22 Mar 2012 11:31:35 -0700 + +nova (2012.1~rc1-0ubuntu1) precise; urgency=low + + [ Adam Gandelman ] + [Chuck Short] + * New upstream release. + * debian/patches/libvirt-use-console-pipe.patch: Refreshed + + [Adam Gandelman] + * debian/patches/libvirt-console.patch: Refresh + * debian/control: Split nova-consoleauth from nova-console into its own pkg + (LP: #959289) + * debian/nova-console.upstart.in: Specify shell + + -- Chuck Short Tue, 20 Mar 2012 11:06:11 -0400 + +nova (2012.1~rc1~20120316.13416-0ubuntu1) precise; urgency=low + + [Adam Gandelman] + * New upstream release. + * debian/patches/libvirt-conosle-patch: Refresh + * debian/control: Fix descriptions of nova-{doc, cert} (LP: #942541) + + [Paul Belanger] + * debian/control: python-nova depends on openssh-client (LP: #956177) + + -- Adam Gandelman Mon, 12 Mar 2012 12:09:45 -0700 + +nova (2012.1~rc1~20120309.13261-0ubuntu1) precise; urgency=low + + [ Chuck Short ] + * New upstream release. + * Refreshed libvirt-console-patch again. + + [ Adam Gandleman ] + * debian/patches/{ec2-fixes.patch, libvirt-console-pipe.patch}: Fix and + refresh. Add dep3 headers from original git commits. + * debian/patches/ec2-fixes.patch: Dropped. Merge upstream at 121537c3 + * debain/{rules, nova-docs.doc}: Docs now built in doc/build/. + * debian/patches/libvirt-use-console-pipe.patch: Update use of + instance['name'] instead of instance_name + + -- Chuck Short Fri, 09 Mar 2012 13:07:19 -0500 + +nova (2012.1~e4-0ubuntu1) precise; urgency=low + + [ Adam Gandleman ] + * debian/patches/libvirt-use-console-pipe.patch: Refreshed. + * debain/nova-volume.upstart.in: Ensure lock directory is created + (LP: #940780) + * debain/control: Fix nova-compute-$flavor Depends + * debian/control: Add python-iso8601 to python-nova Depends + + [ Chuck Short ] + * debian/rules: Fix FTBFS. + * Merge Ubuntu/Debian packaging: + - Thanks to Julien Danjou, Ghe Rivero, and Thomas Goirand + - debian/copyright: Update copyright file. + - debian/nova-api.init, debian/nova-compute.init, + debian/nova-network.init, debian/nova-objectstore, + debian/nova-scheduler, debian/nova-volume.init: + Synchronize init scripts. + - nova-common.install, debian/rules: Install policy.json + - debian/rules, debian/nova-xcp-network.install, + debian/nova-xcp-plugins.install, nova-xcp-plugins.postrm, + debian/nova-xcp-plugins.doc, debian/nova-xcp-plugins.postinst, + debian/README.xcp_and_openstack, debian/control, + debian/ubuntu_xen-openvswitch-nova.rules, + debian/patches/path-to-the-xenhost.conf-fixup.patch: + Add Xen XCP support. + - debian/control, + debian/nova-compute-{kvm,lxc,qemu,xen,uml}.postinst: Make + nova-compute a virtual package. + - Dropped ubuntu_ubuntu_control_vars: We dont use it + * New upstream release. + * Dropped python-babel, it will be handled by langpacks. + * debian/patches/ec2-fixes.patch: Backport turnk fix for ec2 + permissions. + * debian/patches/path-to-the-xenhost.conf-fixup.patch: Refreshed. + + -- Chuck Short Fri, 02 Mar 2012 11:18:35 -0500 + +nova (2012.1~e4~20120224.12913-0ubuntu1) precise; urgency=low + + [ Monty Taylor ] + * Move files from nova/locale to /usr/share/locale + + [ Chuck Short ] + * debian/rules: Fix FTBFS. + * debian/control: Add depends on python-babel. + * debian/control: Add depends on python-iso8601. + * debian/nova-api-os-volume.install: Fix FTBS. + * debian/patches/libvirt-use-console-pipe.patch: Refreshed and + Re-enabled. (LP: #879666) + * debian/control: Make sure we install nova-cert + + [ Joseph Heck ] + * debian/nova-console.install: Add nova-consoleauth. + * Add nova-api-ec2, nova-api-os-compute, and nova-api-os-volume. + + -- Chuck Short Fri, 24 Feb 2012 10:08:10 -0500 + +nova (2012.1~e4~20120217.12709-0ubuntu1) precise; urgency=low + + [ Dave Walker (Daviey) ] + * New upstream snapshot + * debian/patches/temp_fix_linux_net.patch: + - Dropped, applied upstream. LP: #929127 + * debian/patches/libvirt-use-console-pipe.patch: + - Rebased against latest trunk + + [ Chuck Short ] + * debian/nova.conf: Re-enable default iscsi_helper. + * debian/nova.conf: More fixups. + * debian/control: Dont depend and conflicts on nova-compute- + hypervisor. (LP: #923681) + * debian/patches/libvirt-us-console-pipe.patch: Refreshed. + * Temporarily disable console patch. (LP: #932787) + * New usptream version. + + -- Chuck Short Fri, 17 Feb 2012 11:02:12 -0500 + +nova (2012.1~e4~20120210.12574-0ubuntu1) precise; urgency=low + + [Chuck Short] + * New upstream release. + * debian/patches/nova-manage_flagfile_location.patch: + Refreshed patch. + * debian/patches/libvirt-use-console-pipe.patch: + Re-add from oneiric. + * Dropped debian/patches/packaged-ajaxterm-calls.patch. + * debian/control: + - Dropped recommends on ajaxterm for nova-compute + - Dropped nova-ajaxterm package. + + [Adam Gandleman] + * debian/patches/temp_fix_linux_net.patch: Temporary patch until LP: + 929127 is resolved. + + -- Chuck Short Fri, 10 Feb 2012 11:25:38 -0500 + +nova (2012.1~e4~20120208.12523-0ubuntu1) UNRELEASED; urgency=low + + [ Chuck Short ] + * debian/patches/fix-nova-rootwraper-env.patch: Dropped + no longer needed. + * debian/nova-compute-{kvm,xen,uml,lxc}.conf: Add the connection + type "--connection=libvirt" since libvirt is no longer the default. + + [ Adam Gandelman ] + * debian/nova.conf: Define connection_type=libvirt in common nova.conf + instead of nova-compute-*.conf until Bug #921294 is addressed. + + [ Vish Ishaya ] + * debian/mans/nova-cert.8, debian/nova-cert.init, debian/nova-cert.install, + debian/nova-cert.logrotate, debian/nova-cert.manpages, + debian/nova-cert.upstart.in, debian/control, debian/source_nova.py: + Add nova-cert. + + [ Soren Hansen ] + * Refresh flagfile location patch. + * Enable builds on versions of Ubuntu that do not have dh_python2. + * Remove ajaxterm patch (upstream performed a ajaxtermectomy) + * Replace ajax console proxy package with an empty, transitional + package. + * Add a nova-compute-qemu package. + + -- Soren Hansen Fri, 10 Feb 2012 17:41:50 +0100 + +nova (2012.1~e4~20120203.12454-0ubuntu1) precise; urgency=low + + [Chuck Short] + * New upstream version. + * debian/control: Replace m2crpto with python-crypto. + (LP: #917851) + * debian/*.upstart.in, debian/nova-common.postinst, + debian/nova_sudoers: Change default shell to /bin/false. + (LP: #890362) + + [Adam Gandleman] + * debian/nova-common.{install, postinst}: Install policy.json on all + Nova nodes (LP: #923817) + * debian/rules: Remove installation of policy.json (moved to nova-common), + point to the correct upstream git repository. + + -- Chuck Short Fri, 03 Feb 2012 09:03:12 -0500 + +nova (2012.1~e3-0ubuntu1) precise; urgency=low + + [Chuck short] + * New upstream release. + * debian/patches/fix-nova-rootwraper-env.patch: Dropped + no longer needed. + * debian/nova-compute-{kvm,xen,uml,lxc}.conf: Add the connection + type "--connection=libvirt" since libvirt is no longer the default. + + [Adam Gandelman] + * debian/nova.conf: Define connection_type=libvirt in common nova.conf + instead of nova-compute-*.conf until Bug #921294 is addressed. + + [Vish Ishaya] + * debian/mans/nova-cert.8, debian/nova-cert.init, debian/nova-cert.install, + debian/nova-cert.logrotate, debian/nova-cert.manpages, + debian/nova-cert.upstart.in, debian/control, debian/source_nova.py: + Add nova-cert. + + -- Chuck Short Thu, 26 Jan 2012 10:29:13 -0500 + +nova (2012.1~e3~20120120.12170-0ubuntu1) precise; urgency=low + + [Chuck Short] + * New upstream version. + * debian/nova-vncproxy.install, debian/nova-vncproxy.upstart.in: + nova-vncproxy becomes nova-xvpvncproxy. + * debian/nova.conf: Really use the nova rootwrapper. (LP: #918179) + * debian/nova_sudoers: Fix typo in rootwrap usage. + * debian/patches/kombu_tests_timeout.patch: Skip + "test_iterconsume_errors_will_reconnect" test. + + [Dan Prince] + * Add policy.json to packages. + + [Thierry Carrez] + * debian/*.pyinstall: Ship filter files in each node... (LP: #919105) + * debian/python-nova.pyremove: ...and no longer in python-nova (LP: #919105) + * debian/patches/fix-nova-rootwraper-env.patch: Fix temporary issue with + nova-rootwrap and nova-compute. + + -- Chuck Short Fri, 20 Jan 2012 11:54:15 -0500 + +nova (2012.1~e3~20120113.12049-0ubuntu1) precise; urgency=low + + [ Chuck Short ] + * New upstream version. + * debian/nova_sudoers, debian/nova-common.install, + Switch out to nova-rootwrap. (LP: #681774) + * Add "get-origsource-git" which allows developers to + generate a tarball from github, by doing: + fakeroot debian/rules get-orig-source-git + * debian/debian/nova-objectstore.logrotate: Dont determine + if we are running Debian or Ubuntu. (LP: #91379) + + [ Adam Gandleman ] + * Removed python-nova.postinst, let dh_python2 generate instead since + python-support is not a dependency. (LP: #907543) + + -- Chuck Short Fri, 13 Jan 2012 09:51:10 +0100 + +nova (2012.1~e2-0ubuntu4) precise; urgency=low + + * SECURITY UPDATE: fix tenant bypass by authenticated users via OpenStack + API (LP: #904072) + - CVE-2012-XXXX + + -- Jamie Strandboge Thu, 05 Jan 2012 08:58:46 -0600 + +nova (2012.1~e2-0ubuntu2) precise; urgency=low + + [ Chuck Short ] + * debian/nova.conf: Fix misconfiguration. + + [ Dan Prince ] + * debian/nova_sudoers: Fix typo + * Add policy.json to packages. + + -- Thierry Carrez (ttx) Thu, 22 Dec 2011 16:15:22 +0100 + +nova (2012.1~e2-0ubuntu1) precise; urgency=low + + * New usptream release. Fixes the following bugs: + (LP: #871278, #848643, #859679, #83199) + * debian/nova-console.install: Fix empty package. + * debian/patches, debian/pydist-overrides: Cleaner way + of disabling unwanted python-dependencies. + * debian/control: + - Suggest python-keystone. (LP: #901881) + - Update build dependencies. + * debian/nova.conf: Use virtio networking by default. + (LP: #904480) + * debian/fix-traversal-via-image-register.patch: Dropped + fixed upstream. + + -- Chuck Short Fri, 16 Dec 2011 13:03:55 -0500 + +nova (2012.1~e2~20111208.11721-0ubuntu3) precise; urgency=low + + * SECURITY UPDATE: fix directory traversal during image registration via + EC2 API and S3/RegisterImage + - fix-traversal-via-image-register.patch: adjust nova/image/s3.py to + use basename instead of absolute path + - CVE-2011-4596 + + -- Jamie Strandboge Tue, 13 Dec 2011 08:39:13 -0600 + +nova (2012.1~e2~20111208.11721-0ubuntu2) precise; urgency=low + + * Disable python-coverage as well. + + -- Chuck Short Mon, 12 Dec 2011 10:13:04 -0500 + +nova (2012.1~e2~20111208.11721-0ubuntu1) precise; urgency=low + + * New upstream release. + * debian/control: + + Add python-suds as a dependency. + * debian/patches: Temporarily disable python-nosexcover. + + -- Chuck Short Fri, 09 Dec 2011 14:24:07 -0500 + +nova (2012.1~e2~20111202.11641-0ubuntu2) precise; urgency=low + + * debian/nova.conf: Remove parameter to --force_dhcp_release + (LP: #891227) + + -- Adam Gandelman Fri, 02 Dec 2011 11:31:34 -0800 + +nova (2012.1~e2~20111202.11641-0ubuntu1) precise; urgency=low + + * New upstream release. + * debian/nova_sudoers: Clean up to remove unused programs + needed by root. (LP: #989583) + + -- Chuck Short Fri, 02 Dec 2011 10:56:30 -0500 + +nova (2012.1~e2~20111125.11566-0ubuntu1) precise; urgency=low + + * New upstream release. + * Refreshed debian/patches/packaged-ajaxterm-calls.patch. + + -- Chuck Short Fri, 25 Nov 2011 14:02:18 -0500 + +nova (2012.1~e2~20111116.11495-0ubuntu1) precise; urgency=low + + * New upstream version. + * Refreshed debian/patches/packaged-ajaxterm-calls.patch. + + -- Chuck Short Fri, 18 Nov 2011 09:40:58 -0500 + +nova (2012.1~e1-0ubuntu3) precise; urgency=low + + * debian/rules: Take the api-paste.ini from nova/etc. + + -- Chuck Short Thu, 17 Nov 2011 14:10:03 -0500 + +nova (2012.1~e1-0ubuntu2) precise; urgency=low + + * Revert debian/nova-manage_flagfile_location.patch: It + was causing more problems then it should have. (LP: #891229) + + -- Chuck Short Wed, 16 Nov 2011 21:12:34 -0500 + +nova (2012.1~e1-0ubuntu1) precise; urgency=low + + * New upstream release. + * debian/control: Dropped python-feedparser until MIR comes through. + * Synced with upstream bzr packaging. + + -- Chuck Short Fri, 11 Nov 2011 09:25:25 -0500 + +nova (2012.1~e1~20111020.11229-0ubuntu1) precise; urgency=low + + * New upstream release. + * Dropped patches, already applied upstream: + - debian/patches/backport-iscsitarget-choice.patch + - debian/patches/backport-libvirt-console-pipe.patch + - debian/patches/backport-lxc-container-console-fix.patch + - debian/patches/backport-recreate-gateway-using-dhcp.patch + - debian/patches/backport-snapshot-cleanup.patch + - debian/patches/block-migration-needs-copy-backingfile.patch + - debian/patches/fix-iscsi-target-path.patch + - debian/patches/fix-lp838581-removed-db_pool-complexities.patch + - debian/patches/fix-lp863305-images-permission.patch + - debian/patches/fqdn-in-local-hostname-of-ec2-metadata.patch + - debian/patches/use-netcat-instead-of-socat.patc + * debian/control: + - Add python-feedparser as a build dependency. + - Bump standards version to 3.9.2 + - Point to the essex branch. + * debian/patches/nova-manage_flagfile_location.patch: + Update patch to take in account of devstack (LP: #870405) + + -- Chuck Short Fri, 21 Oct 2011 14:37:26 -0400 + +nova (2012.1~e1~20110909.1546-0ubuntu0) UNRELEASED; urgency=low + + [ Dan Prince ] + * Fix dnsmasq line in nova_sudoers. + * Update ajaxterm patch to work with latest nova code. + + [ Monty Taylor ] + * Added python-feedparser to build-deps. + * Added branching logic to allow for building on lucid. + * Indicate depend on pastedeploy 1.5.0, since it's required. + + [ Tushar Patil ] + * Added iputils-arping to Depends and arping to sudoers + + [Chuck Short] + * Merged ubuntu packaging changes: + - debian/control: Drop socat in favor of netcat. + - debian/nova-compute.upstart.in, debian/nova.conf: + Move reference of nova-compute.conf from nova.conf to + nova-compute's argv. + - debian/nova-common.postinst: Create 'nova' group, add user to it. + - debian/nova-common.postinst: Restrict permissions of /var/log/nova + * Updated debian/patches/packaged-ajaxterm-calls.patch to fix FTBFS. + * Updated debian/patches/nova-manage_flagfile_location.patch + * debian/nova-api.install, debian/rules: Use etc/nova/api-paste.ini. + * debian/nova_sudoers: Clean up sudoers. + * debian/control: Add dependencies. + + [ Mark Washenberger ] + * Add support for nova-console package. + + -- Monty Taylor Fri, 30 Sep 2011 09:33:16 -0700 + +nova (2011.3-0ubuntu6.1) oneiric-proposed; urgency=low + + [Scott Moser] + * Removed db_pool complexities from nova.db.sqlalchemy.session (LP: #838581) + + [Chuck Short] + * debian/patches/fix-iscsi-target-path.patch: Fix ISCSI target path patch. + (LP: #871278) + * debian/control: Either install xen-hypervisor-4.1-amd64 or + xen-hypervisor-4.1-i386 for nova-compute-xen. (LP: #873243) + + -- Chuck Short Wed, 12 Oct 2011 14:33:25 -0400 + +nova (2011.3-0ubuntu6) oneiric; urgency=low + + * debian/patches/backport-libvirt-console-pipe.patch: + - Patch updated to fix race on instance termination (LP: #868349) + + -- Robie Basak Wed, 05 Oct 2011 17:37:49 +0100 + +nova (2011.3-0ubuntu5) oneiric; urgency=low + + * debian/nova-common.postinst: + - Set permissions recursively on /var/lib/nova to nova:nova for new + installations (LP: #865169). + * debian/patches/backport-libvirt-console-pipe.patch: + - Patch updated to use correct patchset from upstream - incorrect version + was uploaded in -0ubuntu4 (LP: #832507). + + -- James Page Tue, 04 Oct 2011 09:43:55 +0100 + +nova (2011.3-0ubuntu4) oneiric; urgency=low + + [James Page] + * debian/nova-common.postinst: + - Exclude mounted LXC rootfs filesystems within /var/lib/nova from + user/group ownership changes (LP: #861260). + - Ensure that primary group for 'nova' user is 'nova' so that files + created by this user have the correct group ownership. + + [Adam Gandelman] + * debian/nova-common.postinst: Restrict permissions of /var/log/nova + (LP: #862816) + + [Ante Karamatic] + * Add /usr/sbin/ietadm to sudoers (LP: #861547) + * debian/control: Fix typo in Vcs-Bzr + + [Chuck Short] + * debian/patches/backport-libvirt-console-pipe.patch: + Move console.log to a ringbuffer so that the console.log + keeps filling up. (LP: #832507) + * debian/patches/backport-lxc-container-console-fix.patch: + Make euca-get-console-output usable for LXC containers. + (LP: #832159) + * debian/patches/backport-snapshot-cleanup.patch: + Enforce snapshot cleanup. (LP: #861582). + * debian/patches/fix-lp863305-images-permission.patch: + Fix image access control. (LP: #863305) + + -- Chuck Short Fri, 30 Sep 2011 15:21:56 -0400 + +nova (2011.3-0ubuntu3) oneiric; urgency=low + + [Adam Gandelman] + * debian/nova-common.postinst: Create 'nova' group, add user to it + (LP: #856530) + * debian/nova.conf, debian/nova-compute.upstart.in: Move reference of + nova-compute.conf from nova.conf to nova-compute's argv. (LP: #839796) + + [Chuck Short] + * debian/patches/backport-recreate-gateway-using-dhcp.patch: + Makes sure to recreate gateway for moved ip. (LP: #859587) + * debian/control: Update Vcs info. + + [ Scott Moser ] + * debian/patches/fqdn-in-local-hostname-of-ec2-metadata.patch + Make the 'local-hostname' in the EC2 Metadata service contain + the domainname also. (LP: #854614) + + -- Chuck Short Tue, 27 Sep 2011 14:56:59 -0400 + +nova (2011.3-0ubuntu2) oneiric; urgency=low + + [Chuck Short] + * debian/rules, debian/control: Use dh_python2 + * debian/control, debian/series, + debian/patches/backport-iscsitarget-choice.patch, + debian/nova_sudoers: + + Change the default from iscsitarget to tgt. + * debian/control, debian/series, + debian/patches/use-netcat-instead-of-socat.patch, + debian/nova_sudoers: + + Change from socat to netcat. + * debian/patches/block-migration-needs-copy-backingfile.patch: + Fix block migration by needing to copy backing_file. + + [Monty Taylor] + * Install a new paste config to enable deprecated auth., + + -- Chuck Short Fri, 23 Sep 2011 13:34:51 -0400 + +nova (2011.3-0ubuntu1) oneiric; urgency=low + + [Chuck Short] + * New upstream release. + * debian/control, debian/nova_sudoers: + + Add iputils-arping and add /usr/bin/apring. + * debian/nova_sudoers: Clean up missing binaries. + + [Monty Taylor] + * debian/control: + + Add vlan to nova-compute + + -- Chuck Short Thu, 22 Sep 2011 09:33:49 -0400 + +nova (2011.3~rc~20110920.r1192-0ubuntu2) oneiric; urgency=low + + * debian/nova_sudoers: + + Fix typo in nova_sudoers. + + Tabs vs Spaces. + * debian/nova.conf: + + Use force_dhcp_release. + + -- Chuck Short Tue, 20 Sep 2011 15:44:39 -0400 + +nova (2011.3~rc~20110920.r1192-0ubuntu1) oneiric; urgency=low + + [Chuck Short] + * New Upstream release. + + [ Monty Taylor ] + * Add branching logic for building on lucid. + + [Vish Ishaya] + * Add dnsmas-utils to nova-network dependencies + * Add dhcp_release to sudoers. + + -- Chuck Short Tue, 20 Sep 2011 10:02:04 -0400 + +nova (2011.3~rc~20110916.r1173-0ubuntu1) oneiric; urgency=low + + [ Chuck Short ] + * New uptream version. + * debian/rules: Dont fail tests. + + [ Monty Taylor ] + * Add branching logic for building on lucid. + * Add vlan as a depend for nova-compute. + + -- Monty Taylor Wed, 21 Sep 2011 17:49:43 -0400 + +nova (2011.3~rc~20110909.r1155-0ubuntu1) oneiric; urgency=low + + * New upstream version. + + -- Chuck Short Fri, 09 Sep 2011 15:09:02 -0400 + +nova (2011.3~rc~20110901.1523-0ubuntu1) oneiric; urgency=low + + [ Chuck Short ] + * Really remove python-ipy. + * New upstream release. + * Use "--use_deprecated_auth" by default because we dont support + kestone yet. (LP: #838768) + + [ James E. Blair ] + * Add python-unittest2 as a build dep. + + [ Dave Walker (Daviey) ] + * debian/control: Added python-kombu as a build and run depends. + - LP: #798876 + + [ Scott Moser ] + * add dependency on qemu-kvm to nova-compute (LP: #833530) + + -- Chuck Short Fri, 02 Sep 2011 13:21:22 -0400 + +nova (2011.3~d4-0ubuntu1) oneiric; urgency=low + + [Chuck Short] + * New upstream release. + + [Thierry Carrez] + * No longer run nova-objectstore as root (LP: #820968) + + -- Chuck Short Fri, 26 Aug 2011 13:31:14 -0400 + +nova (2011.3~d4~20110812.1417-0ubuntu1) oneiric; urgency=low + + [Chuck Short] + * New upstream version + * Dont respawn the upstart jobs if nova is failing. + * Remove python-ipy. + + [ Dan Prince ] + * Updated the ajaxterm patch to work with latest nova code (privsep) + * Added python-lxml to python-nova build-deps. + + [ Thomas Goirand ] + * Add copyright info for ipv6 class for boto. + + [ Soren Hansen ] + * Add parted to sudoers file. + * Add Depends: python-simplejson and Conflicts: python-cjson due to + bug #800465 which caused the test suite to fail. + * Remove nova-instancemonitor package (dropped upstream). + * Remove twisted dependency (dropped upstream). + * Create nova-compute-{kvm,lxc,uml,xen} packages that pull in the + right packages and configures nova to use the hypervisor in + question. + + [ Thierry Carrez (ttx) ] + * Added python-xattr to build deps, apprently this is now needed + * Removed python-xattr from build deps, now that python-glance properly + depends on it + * Added radvd to nova_sudoers file (LP: #758072) + * Make nova.conf non-world-readable, as it may contain DB passwords + (LP: #798878) + + [ Brian Waldon ] + * Remove nova-instancemonitor man page stub. + * Remove nova-instancemonitor from apport hook. + + [ Monty Taylor ] + * Added python-lxml to build-deps. + + [ Scott Moser ] + * use trailing '/' on all usages of chown to support the case where + the directory is a symlink + + -- Chuck Short Fri, 12 Aug 2011 03:12:38 -0400 + +nova (2011.3~d1-0ubuntu1) oneiric; urgency=low + + [Chuck Short] + * New upstream version. + + [Soren Hansen] + * libvirt plugin was refactored. Adjust ajaxterm patch accordingly. + * Add /sbin/brctl to sudoers (it moved from /usr/sbin to /sbin in + Oneiric). + * Add dependencies on dnsmasq-base and bridge-utils to nova-network. + (LP: #790661) + + -- Chuck Short Thu, 02 Jun 2011 09:30:39 -0400 + +nova (2011.3~bzr1108-0ubuntu1) oneiric; urgency=low + + [ Thomas Goirand ] + * Removes embedded jquery.js from nova-doc package. + * Added some manpages stubs to make package lintian clean. + * Adds a nova-volume.default where the admin can decide what VG to use. + * debian/nova-objectstore.logrotate working in Debian. + * Do not have debian/*.upstart files in Debian. Using debian/*.upstart.in + and copying them as .upstart only if building in Ubuntu. + * Nova init files reviewed so that they are working in Debian. + * Initscripts of nova-compute now has a Should-Start: libvirt-bin + * nova-compute.postinst working with libvirt group in Debian. + * Reviewed the package descriptions. + * Reviewed some dependencies in debian/control (added some adduser and + lsb-base depends). + * Added missing binary Depends: (nova-manage must depends on + python-amqplib unless failing puiparts tests, nova-compute is pretty + usless without qemu-utils) + * Removes .gitignore files from binaries. + * Don't package nova-manage.1 man page if we aren't building docs. + * Packages correctly: nova-manage.1 and not novamanage.1 !!! + + [ Soren Hansen ] + * Bump required version of libvirt-bin on Ubuntu to 0.8.8. + * Drop the last of the AOE dependencies. iSCSI is the default + nowadays. + * Make the decision about the name of the libvirt group at build time + rather than runtime. (LP: #781716) + + [ Vishvananda Ishaya ] + * Add dd to the sudo cmd list. + * Add a nova-vncproxy package. + + -- Soren Hansen Wed, 25 May 2011 15:57:03 +0200 + +nova (2011.2-0ubuntu1) natty; urgency=low + + * New upstream release. + + -- Chuck Short Fri, 15 Apr 2011 07:14:43 -0400 + +nova (2011.2~gamma1-0ubuntu1) natty; urgency=low + + [Chuck Short] + * New upstream release. + * debian/nova-doc.docs: Adjust directory to the right docs path. + + [Soren Hansen] + * Refresh nova-manage-flags patch. + * Adjust call to ajaxterm to work with the packaged ajaxterm instead + of the one we ship in the tarball. + * Remove all traces of the adminclient package. It moved to its own + tarball. There are no known consumers, so this should not be a + problem. + * Remove build-dependency on python-suds again. + * setup.py now takes care of installing the CA code, so yank those + bits from debian/nova-common.install. + * setup.py now places api-paste.ini correctly, so stop working around + it. + + -- Chuck Short Fri, 08 Apr 2011 10:49:10 -0400 + +nova (2011.2~bzr925-0ubuntu1) natty; urgency=low + + [Chuck Short] + * New upstream release. + + [Soren Hansen] + * Make the build fail if the test suite does. The test that used to + fail on the buildd's has been complete rewritten. (LP: #712481) + * Specify that we need Sphinx > 1.0 to build. + * Remove refresh_bzr_branches target from debian/rules. It is not used + anymore. + * Clean up after doc builds on debian/rules clean. + * Add a nova-ajax-console-proxy package. + * Add Recommends: ajaxterm to nova-compute, so that nova-ajax-console- + proxy will have something to connect to. + * Stop depending on aoetools. iscsi is the default nowadays (and has + been for a while). + * Move dependency on open-iscsi from nova-volume to nova-compute. + They're client tools, so that's where they belong. + * Add a build-depends on python-suds. + * Add logrote config for nova-ajax-console-proxy. + * Add upstart job for nova-ajax-console-proxy. + + -- Chuck Short Thu, 31 Mar 2011 11:25:10 -0400 + +nova (2011.2~bzr828-0ubuntu1) natty; urgency=low + + * New upstream version. + * debian/control: Add python-lockfile as a build dependency. + + -- Chuck Short Fri, 18 Mar 2011 09:28:17 -0400 + +nova (2011.2~bzr786-0ubuntu1) natty; urgency=low + + [Chuck Short] + * New upstream version. + + [ Thierry Carrez (ttx) ] + * nova-api.conf was renamed api-paste.ini (LP: #705453) + + [ Soren Hansen ] + * Start on filesystem event rather than local-filesystems. + * Weed out a *lot* of out-dated information from debian/control. + * Create /var/lock/nova in upstart jobs and set lock_path in the + flagfile. + * Add dependency on python-novaclient. + + -- Chuck Short Fri, 11 Mar 2011 09:41:45 -0500 + +nova (2011.2~bzr760-0ubuntu1) natty; urgency=low + + [Chuck Short] + * New upstream version. + * Fix up typos in debian/control. (LP: #721414) + + [ Thierry Carrez (ttx) ] + * Add python-distutils-extra as build-dep (for i18n) + * Ship .mo files in /usr/share/locale + * Add lvdisplay to nova_sudoers, clean up dupe entries + + [ Soren Hansen ] + * Always run "nova-manage db sync" from postinst, unless an explicit + sql_connection has been set in nova.conf. (LP: #705758) + + -- Chuck Short Fri, 04 Mar 2011 10:19:52 -0500 + +nova (2011.2~bzr700-0ubuntu1) natty; urgency=low + + [ Chuck Short ] + * New upstream version. + + [ Soren Hansen ] + * Rely on --logdir to find and use the correct logfile. + * Remove the postrotate magic for all but nova-objectstore. It is not + needed anymore due to using RotatingFileHandler for logging. + + [ Thierry Carrez ] + * Ship adminclient in a separate package. + + -- Chuck Short Fri, 18 Feb 2011 09:36:22 -0500 + +nova (2011.2~bzr663-0ubuntu1) natty; urgency=low + + [ Chuck Short ] + * New upstream verison. + * Add python-paramiko to debian/control. + + [Soren Hansen] + * Honour nocheck and nodocs in DEB_BUILD_OPTIONS. + * Add /sbin/route to sudoers file. + + -- Chuck Short Fri, 11 Feb 2011 10:27:54 -0500 + +nova (2011.1-0ubuntu2) natty; urgency=low + + * Dont fail unittest because of buildd problems. + + -- Chuck Short Thu, 03 Feb 2011 07:26:54 -0500 + +nova (2011.1-0ubuntu1) natty; urgency=low + + * New upstream release. + * Add recommends to python-mysqldb (LP: #708511) + * Add dependency of iscsitarget to nova-volume and a sugestion to use + sheepdog (LP: #708141) + * Suggest radvd for those who want to try ipv6. + + -- Chuck Short Thu, 03 Feb 2011 07:00:52 -0500 + +nova (2011.1~bzr638-0ubuntu1) natty; urgency=low + + * New upstream snapshot. + + -- Chuck Short Fri, 28 Jan 2011 13:41:00 -0500 + +nova (2011.1~bzr597-0ubuntu1) natty; urgency=low + + [ Chuck Short ] + * New upstream snapshot. + * Add socat, iscsiadm, and vgs to nova_sudoers. + * Add aoetools, open-iscsi to dependencies for nova-volume. + * Add socat to dependencies for nova-network. + * Add python-paste and python-pastedeploy as build dependency. + * Add python-tempita and python-migrate as build dependency. + + [ Soren Hansen ] + * Add dependency on sudo. + * Add upstart jobs for everything. + * Adjust test run for nosetests newness. + * Quiet nova-compute's postinst script. + * Change the dependency on sqlalchemy to ensure the C extension gets + installed for versions of the package where that was split out. + * Don't chgrp anything to the 'nogroup' group. The whole idea of the + nogroup group is that it doesn't own anything, so only being a + member of that shouldn't grant you access to anything. Making dirs + and files owned by nogroup messes this up. + * Update nova-manage patch. + * Add iptables-{restore,save} to sudoers file. + * Create a logrotate config for each daemon. Make them restart the + service after rotation. + * Drop python-redis dependency. + * Change python compatibility from "2.6" to "2.6-" + * Add launchpad page to watch file. + * Set Python-Version control fields for python-nova. + * Add ip6tables-{save,restore} to sudoers file. (LP: #704458) + * Add python-glance dependency. + * Include paste config for nova-api. + * Initialise database on initial install. + + [ Rick Clark ] + * Add dependency on python-cheetah + * Added iscsi target admin tool to sudoers file. + * Specified log for nova-objectstore. + * Set verbose logging in nova.conf. + + [ Monty Taylor ] + * Add dependency on python-netaddr + + [ Thierry Carrez (ttx) ] + * Added qemu-nbd to nova_sudoers + * Added modprobe nbd to nova-compute upstart script + + -- Thierry Carrez (ttx) Mon, 24 Jan 2011 14:32:19 +0100 + +nova (2011.1~bzr456-0ubuntu1) natty; urgency=low + + [ Chuck Short ] + * New upstream snapshot. + * debian/source_nova.py: + Add apport hook. + + [ Soren Hansen ] + * Removed logdir.patch. Merged upstream. + * Drop flagfile_location.patch: Merged upstream. + * Use new --state_path flag and weed out the many direct references to + /var/lib/nova. + * Leave it to upstream's 'setup.py install' to install templates. + Remove explicit paths from nova.conf. + + -- Chuck Short Mon, 13 Dec 2010 10:17:01 -0500 + +nova (2011.1~bzr412-0ubuntu1) natty; urgency=low + + [ Soren Hansen ] + * New upstream snapshot. + * Added the new tarballs page to debian/watch. + * Clean out patch-branches (everything is upstream now). + * Remove redis-server as a build-depends and don't start it for tests + anymore. + * Add missing dependency on python-webob. + * Force a python-support run (so avoid deferring it until dpkg + triggers run). (LP: #660428) + * Remove build and runtime dependencies on python-tornado. It's not + needed anymore. + * logdir.patch: Add a --logdir option to workers so that they can all + use the same flagfile. (lp:~soren/nova/logdir-flag) + * Consolidate all the flagfiles into one. + * flagfile_location.patch: Patch from upstream to ensure all workers + have a consistent way of finding their flagfile. + (lp:~soren/nova/unify-default-flagfile-location) + * nova-manage_flagfile_location.patch: Make sure nova-manage uses + /etc/nova/nova.conf by default. + * Add build and runtime dependency on openssl. It used to be pulled in + by python-tornado, but is actually used directly by nova. + + [ Chuck Short ] + * debian/control: + - Add dependency to python-rrdtool so that nova-instancemonitor + doesnt complain about missing python modules when starting. + * debian/nova-common.install: Add missing templates. + * debian/nova-*.conf: Update flagfiles to handle upstream changes. + * Dropped start-redis since we dont do redis anymore. + + -- Soren Hansen Tue, 23 Nov 2010 11:17:09 +0100 + +nova (0.9.1~bzr331-0ubuntu2) maverick; urgency=low + + * Add a minimal patch to ensure a string gets returned as an + instance's internal ID. (LP: #657053) + + -- Soren Hansen Fri, 08 Oct 2010 23:16:58 +0200 + +nova (0.9.1~bzr331-0ubuntu1) maverick; urgency=low + + [ Soren Hansen ] + * New upstream snapshot (FFe ref: LP #645936) + * Add SQLAlchemy dependency. + * Specify that we want sqlite and we want it in + /var/lib/nova/nova.sqlite. + * Move "adduser nova libvirtd" to nova-compute.postinst. + * Add python-eventlet and python-routes dependencies. + * Make /bin/true our error handler for init scripts. + * Install nova-api-new as nova-api. + * Add nova-scheduler package. + * Add /bin/kill to sudoers. + * Make sure nova_sudoers has the correct mode, otherwise sudo gets + very upset. + * Add ebtables and gawk dependencies for nwfilter stuff to work. + + [ Chuck Short ] + * Add dependency on lvm2 for nova-volume. + * Add lvm commands to sudoers list. + + -- Soren Hansen Tue, 21 Sep 2010 16:36:37 +0200 + +nova (0.9.1~bzr265-0ubuntu1) maverick; urgency=low + + * New upstream snapshot (FFe: LP: #628027) + * Install uml libvirt xml file. + * Add adduser as a dependency of nova-common so that we can create a + nova user. + * Create a nova user on install. + * Create a separate tmpdir for nova, so that we can limit calls to + chmod/chown to dirs and files in that directory. + * Add nova-network package. + * Add a sudoers file for nova, so that we don't have to run as root + anymore. + * Fix all init scripts to run their respective daemons as nova. + * Update nova-compute flag file to account for moved libvirt + templates. + * Make all init scripts create /var/run/nova. + * Move all pidfiles into /var/run/nova. + * Make all daemons create a log file in /var/log/nova. + * Respect DEB_BUILD_OPTIONS=nocheck. + * Add a logrotate config file. + + -- Soren Hansen Tue, 07 Sep 2010 13:12:10 +0200 + +nova (0.9.1~bzr204-0ubuntu2) maverick; urgency=low + + * Make sure debian/start-redis is executable. + + -- Soren Hansen Sat, 07 Aug 2010 11:38:30 +0200 + +nova (0.9.1~bzr204-0ubuntu1) maverick; urgency=low + + * First OpenStack release. + + -- Soren Hansen Wed, 04 Aug 2010 13:27:50 +0200 + diff --git a/openstack/debian/openstack-nova/liberty/debian/compat b/openstack/debian/openstack-nova/liberty/debian/compat new file mode 100644 index 000000000..ec635144f --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/compat @@ -0,0 +1 @@ +9 diff --git a/openstack/debian/openstack-nova/liberty/debian/control b/openstack/debian/openstack-nova/liberty/debian/control new file mode 100644 index 000000000..9a774dcf3 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/control @@ -0,0 +1,836 @@ +Source: nova +Section: net +Priority: extra +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Openstack Maintainers +Uploaders: Soren Hansen , + Thomas Goirand , +Build-Depends: debhelper (>= 9), + dh-python, + dh-systemd, + openstack-pkg-tools (>= 23~), + python-all, + python-pbr (>= 1.8), + python-setuptools (>= 16.0), + python-sphinx, +Build-Depends-Indep: alembic (>= 0.8.0), + bandit, + openssh-client, + python-babel (>= 1.3), + python-barbicanclient (>= 3.3.0), + python-boto (>= 2.32.1), + python-cinderclient (>= 1:1.3.1), + python-coverage (>= 3.6), + python-cryptography (>= 1.0), + python-decorator (>= 3.4.0), + python-eventlet (>= 0.17.4), + python-fixtures (>= 1.3.1), + python-glanceclient (>= 1:0.18.0), + python-greenlet (>= 0.3.2), + python-hacking, + python-ironicclient (>= 0.8.0), + python-iso8601 (>= 0.1.9), + python-jinja2 (>= 2.6), + python-jsonschema (>= 2.0.0), + python-keystoneclient (>= 1:1.6.0), + python-keystonemiddleware (>= 2.0.0), + python-lxml (>= 2.3), + python-migrate (>= 0.9.6), + python-mock (>= 1.2), + python-mox3 (>= 0.7.0), + python-netaddr (>= 0.7.12), + python-netifaces (>= 0.10.4), + python-neutronclient (>= 2.6.0), + python-os-brick (>= 0.4.0), + python-oslo.concurrency (>= 2.3.0), + python-oslo.config (>= 1:2.3.0), + python-oslo.context (>= 0.2.0), + python-oslo.db (>= 2.4.1), + python-oslo.i18n (>= 1.5.0), + python-oslo.log (>= 1.8.0), + python-oslo.messaging (>= 1.16.0), + python-oslo.middleware (>= 2.8.0), + python-oslo.reports (>= 0.1.0), + python-oslo.rootwrap (>= 2.0.0), + python-oslo.serialization (>= 1.4.0), + python-oslo.service (>= 0.7.0), + python-oslo.utils (>= 2.0.0), + python-oslo.versionedobjects (>= 0.9.0), + python-oslo.vmware (>= 1.16.0), + python-oslosphinx (>= 2.5.0), + python-oslotest (>= 1.10.0), + python-paramiko (>= 1.13.0), + python-paste, + python-pastedeploy (>= 1.5.0), + python-prettytable (>= 0.7), + python-psutil (>= 1.1.1), + python-psycopg2 (>= 2.5), + python-pymysql, + python-requests (>= 2.5.2), + python-requests-mock (>= 0.6.0), + python-rfc3986 (>= 0.2.0), + python-routes (>= 1.12.3), + python-six (>= 1.9.0), + python-sqlalchemy (>= 0.9.9), + python-stevedore (>= 1.5.0), + python-tempest-lib (>= 0.8.0), + python-testresources (>= 0.2.4), + python-testtools (>= 1.4.0), + python-webob (>= 1.2.3), + subunit (>= 0.0.18), + testrepository (>= 0.0.18), +Build-Conflicts: python-cjson, +Standards-Version: 3.9.6 +Homepage: http://launchpad.net/nova +Vcs-Browser: https://git.launchpad.net/~ubuntu-server-dev/ubuntu/+source/nova +Vcs-Git: git://git.launchpad.net/~ubuntu-server-dev/ubuntu/+source/nova +XS-Testsuite: autopkgtest +X-Python-Version: >= 2.7 + +Package: python-nova +Architecture: all +Section: python +Depends: alembic (>= 0.8.0), + openssh-client, + openssl, + python-babel (>= 1.3), + python-boto (>= 2.32.1), + python-cinderclient (>= 1:1.3.1), + python-cryptography (>= 1.0), + python-decorator (>= 3.4.0), + python-eventlet (>= 0.17.4), + python-glanceclient (>= 1:0.18.0), + python-greenlet (>= 0.3.2), + python-iso8601 (>= 0.1.9), + python-jinja2 (>= 2.6), + python-jsonschema (>= 2.0.0), + python-keystoneclient (>= 1:1.6.0), + python-keystonemiddleware (>= 2.0.0), + python-lxml (>= 2.3), + python-migrate (>= 0.9.6), + python-netaddr (>= 0.7.12), + python-netifaces (>= 0.10.4), + python-neutronclient (>= 2.6.0), + python-os-brick (>= 0.4.0), + python-oslo.concurrency (>= 2.3.0), + python-oslo.config (>= 1:2.3.0), + python-oslo.context (>= 0.2.0), + python-oslo.db (>= 2.4.1), + python-oslo.i18n (>= 1.5.0), + python-oslo.log (>= 1.8.0), + python-oslo.messaging (>= 1.16.0), + python-oslo.middleware (>= 2.8.0), + python-oslo.reports (>= 0.1.0), + python-oslo.rootwrap (>= 2.0.0), + python-oslo.serialization (>= 1.4.0), + python-oslo.service (>= 0.7.0), + python-oslo.utils (>= 2.0.0), + python-oslo.versionedobjects (>= 0.9.0), + python-paramiko (>= 1.13.0), + python-paste, + python-pastedeploy (>= 1.5.0), + python-prettytable (>= 0.7), + python-psutil (>= 1.1.1), + python-pymysql, + python-requests (>= 2.5.2), + python-rfc3986 (>= 0.2.0), + python-routes (>= 1.12.3), + python-setuptools (>= 16.0), + python-six (>= 1.9.0), + python-sqlalchemy (>= 0.9.9), + python-stevedore (>= 1.5.0), + python-webob (>= 1.2.3), + ${misc:Depends}, + ${python:Depends}, +Suggests: python-ldap, +Conflicts: python-cjson, +XB-Python-Version: ${python:Versions} +Provides: ${python:Provides}, +Description: OpenStack Compute Python libraries + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package contains the core Python parts of Nova. + +Package: nova-common +Architecture: all +Depends: adduser, + python-nova (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Provides: ${python:Provides}, +Recommends: python-glanceclient, + python-keystone, +Description: OpenStack Compute - common files + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package contains things that are needed by all parts of Nova. + +Package: nova-compute +Architecture: all +Depends: nova-common (= ${binary:Version}), + nova-compute-kvm | nova-compute-hypervisor, + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - compute node base + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This is the package you will install on the nodes that will run your + virtual machines. + +Package: nova-compute-libvirt +Architecture: all +Depends: adduser, + ebtables, + genisoimage, + iptables, + kpartx, + libvirt-bin, + nova-compute (= ${binary:Version}), + open-iscsi, + parted, + python-libvirt, + qemu-utils, + vlan, + ${misc:Depends}, + ${python:Depends}, +Suggests: guestmount, + multipath-tools, + sg3-utils, + sysfsutils, +Description: OpenStack Compute - compute node libvirt support + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This dependency package provides common dependencies and setup for all libvirt + based hypervisor options. + +Package: nova-compute-lxc +Architecture: all +Depends: nova-compute-libvirt (= ${binary:Version}), + ${misc:Depends}, +Provides: nova-compute-hypervisor, +Conflicts: nova-compute-hypervisor, +Description: OpenStack Compute - compute node (LXC) + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + Install this package on your compute nodes if you're using LXC. + +Package: nova-compute-xen +Architecture: all +Depends: nova-compute-libvirt (= ${binary:Version}), + xen-system-amd64 | xen-system-i386, + ${misc:Depends}, +Provides: nova-compute-hypervisor, +Conflicts: nova-compute-hypervisor, +Description: OpenStack Compute - compute node (Xen) + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + Install this package on your compute nodes if you're using Xen. + +Package: nova-compute-qemu +Architecture: all +Depends: nova-compute-libvirt (= ${binary:Version}), + qemu, + ${misc:Depends}, +Provides: nova-compute-hypervisor, +Conflicts: nova-compute-hypervisor, +Description: OpenStack Compute - compute node (QEmu) + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + Install this package on your compute nodes if you're using QEmu. + +Package: nova-compute-kvm +Architecture: all +Depends: nova-compute-libvirt (= ${binary:Version}), + qemu-system (>= 1.3.0) | kvm, + ${misc:Depends}, +Provides: nova-compute-hypervisor, +Conflicts: nova-compute-hypervisor, +Description: OpenStack Compute - compute node (KVM) + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + Install this package on your compute nodes if you're using kvm. + +Package: nova-compute-vmware +Architecture: all +Depends: genisoimage, + nova-compute (= ${binary:Version}), + python-oslo.vmware (>= 0.11.0), + ${misc:Depends}, +Provides: nova-compute-hypervisor, +Conflicts: nova-compute-hypervisor, +Description: OpenStack Compute - compute node (VMware) + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + Install this package on your compute nodes if you're using VMware vCenter. + +Package: nova-conductor +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - conductor service + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This is the Nova conductor service component + +Package: nova-cert +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - certificate management + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This is the Nova certificate management component. + +Package: nova-scheduler +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - virtual machine scheduler + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This is the Nova scheduler. + +Package: nova-volume +Section: oldlibs +Priority: extra +Architecture: all +Depends: cinder-api, + cinder-scheduler, + cinder-volume, + ${misc:Depends}, +Description: OpenStack Compute - storage + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This is a dummy transitional package that can be removed after upgrade. + +Package: nova-ajax-console-proxy +Architecture: all +Section: oldlibs +Priority: extra +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - AJAX console proxy - transitional package + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package used to provide the AJAX proxy, which is now gone. + +Package: nova-novncproxy +Architecture: all +Depends: nova-common (= ${binary:Version}), + novnc, + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - NoVNC proxy + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package provides the VNC proxy. It is a publically reachable + component which proxies access to VNCs running on compute nodes. + +Package: nova-xvpvncproxy +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - XVP VNC proxy + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package provides the VNC proxy. It is a publically reachable + component which proxies access to VNCs running on compute nodes. + +Package: nova-spiceproxy +Architecture: all +Depends: nova-common (= ${binary:Version}), + spice-html5, + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - spice html5 proxy + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package provides the spice proxy. It is a publically reachable + component which proxies access to qemu-space running on compute nodes + +Package: nova-serialproxy +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Breaks: nova-compute (<< 1:2015.1-0ubuntu3~), +Replaces: nova-compute (<< 1:2015.1-0ubuntu3~), +Description: OpenStack Compute - serial proxy + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package provides the serial proxy. It is a publically reachable + component which proxies access to qemu-space running on compute nodes + +Package: nova-api +Architecture: all +Depends: iptables, + nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - API frontend + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package provides the API frontend. + +Package: nova-network +Architecture: all +Depends: bridge-utils, + dnsmasq-base, + dnsmasq-utils, + ebtables, + iptables, + iputils-arping, + netcat, + nova-common (= ${binary:Version}), + vlan, + ${misc:Depends}, + ${python:Depends}, +Suggests: radvd, +Description: OpenStack Compute - Network manager + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This is the package you will install on the network nodes. This service is + responsible for managing floating and fixed IPs, DHCP, bridging and VLANs, and + in some cases acts as a gateway. Different networking strategies are available + to the service by changing the network_manager flag to FlatManager, + FlatDHCPManager, or VlanManager (default is VLAN). + +Package: nova-objectstore +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack Compute - object store + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package contains a very simple S3-like object store. + For production use, you should use OpenStack Storage, aka. Swift. + +Package: nova-console +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Recommends: nova-consoleauth (>= 2012.1~rc1-0ubuntu2), +Description: OpenStack Compute - Console + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package provides the console server. This enables the use of consoles + to be used along with XVP and XenServer. It is a publically reachable + component which proxies access to VNCs running on compute nodes. + +Package: nova-consoleauth +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Breaks: nova-console (<< 2012.1~rc1-0ubuntu2), +Replaces: nova-console (<< 2012.1~rc1-0ubuntu2), +Description: OpenStack Compute - Console Authenticator + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package provides the authentication service for nova-console. It grants + user requests for console access based on tokens in the identity service and + allows access to virtual consoles via a browser. + +Package: nova-doc +Architecture: all +Section: doc +Depends: ${misc:Depends}, +Recommends: libjs-jquery, +Description: OpenStack Compute - documentation + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package contains the documentation for Nova. + +Package: nova-api-metadata +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Conflicts: nova-api, +Description: OpenStack Compute - metadata API frontend + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + This package provides the metadata API backend for guest VMs. + +Package: nova-api-os-compute +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Conflicts: nova-api, +Description: OpenStack Compute - OpenStack Compute API frontend + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + This package provides the OpenStack Compute API frontend. + +Package: nova-api-os-volume +Section: oldlibs +Priority: extra +Architecture: all +Depends: cinder-api, + ${misc:Depends}, +Description: OpenStack Compute - OpenStack Volume API frontend + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + This is a dummy transitional package that can be removed after upgrade. + +Package: nova-api-ec2 +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Conflicts: nova-api, +Description: OpenStack Compute - EC2 API frontend + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This package provides the EC2 API. + +Package: nova-cells +Architecture: all +Depends: nova-common (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Description: Openstack Compute - cells + OpenStack is a reliable cloud infrastructure. Its mission is to produce + the ubiquitous cloud computing platform that will meet the needs of public + and private cloud providers regardless of size, by being simple to implement + and massively scalable. + . + OpenStack Compute, codenamed Nova, is a cloud computing fabric controller. In + addition to its "native" API (the OpenStack API), it also supports the Amazon + EC2 API. + . + Nova is intended to be modular and easy to extend and adapt. It supports many + different hypervisors (KVM and Xen to name a few), different database backends + (SQLite, MySQL, and PostgreSQL, for instance), different types of user + databases (LDAP or SQL), etc. + . + This is the Nova cells component. diff --git a/openstack/debian/openstack-nova/liberty/debian/copyright b/openstack/debian/openstack-nova/liberty/debian/copyright new file mode 100644 index 000000000..e8a718e4a --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/copyright @@ -0,0 +1,49 @@ +Format: http://dep.debian.net/deps/dep5- +Upstream-Name: nova +Source: https://code.launchpad.net/nova + +Files: * +Copyright: 2010 United States Government as represented + by the Administrator of the National Aeronautics + and Space Administration. +Copyright: 2010 OpenStack LLC +Copyright: Others (See individual files for more details) +License: Apache-2 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + http://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. + +Files: contrib/boto_v6/* +Copyright: 2006-2010, Mitch Garnaat http://garnaat.org/ + 2010, Eucalyptus Systems, Inc. +License: BSD-Style + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + . + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. diff --git a/openstack/debian/openstack-nova/liberty/debian/gbp.conf b/openstack/debian/openstack-nova/liberty/debian/gbp.conf new file mode 100644 index 000000000..f69e09e74 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/gbp.conf @@ -0,0 +1,7 @@ +[DEFAULT] +debian-branch = stable/liberty +upstream-tag = %(version)s +pristine-tar = True + +[buildpackage] +export-dir = ../build-area diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-ec2.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-api-ec2.init.in new file mode 100644 index 000000000..7adb82394 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-ec2.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-api-ec2 +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone rabbitmq-server ntp +# Should-Stop: postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova API server +# Description: Frontend Nova API server +### END INIT INFO + +# Author: Julien Danjou + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute ec2 API" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-api-ec2 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-ec2.install b/openstack/debian/openstack-nova/liberty/debian/nova-api-ec2.install new file mode 100644 index 000000000..2dd1f7012 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-ec2.install @@ -0,0 +1 @@ +usr/bin/nova-api-ec2 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-ec2.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-api-ec2.manpages new file mode 100644 index 000000000..fef8183f0 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-ec2.manpages @@ -0,0 +1 @@ +doc/build/man/nova-api-ec2.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.init.in new file mode 100644 index 000000000..bff705a7c --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-api-metadata +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone rabbitmq-server ntp +# Should-Stop: postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova API metadata server +# Description: Frontend Nova API metadata server +### END INIT INFO + +# Author: Julien Danjou + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute metadata API" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-api-metadata diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.install b/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.install new file mode 100644 index 000000000..3ca6585b5 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.install @@ -0,0 +1,2 @@ +etc/nova/rootwrap.d/api-metadata.filters +usr/bin/nova-api-metadata diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.manpages new file mode 100644 index 000000000..2ce208dd4 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.manpages @@ -0,0 +1 @@ +doc/build/man/nova-api-metadata.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.postinst new file mode 100644 index 000000000..b1c7d2e5e --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-metadata.postinst @@ -0,0 +1,7 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + chown root:root /etc/nova/rootwrap.d/api-metadata.filters +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-os-compute.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-api-os-compute.init.in new file mode 100644 index 000000000..3e626db9b --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-os-compute.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-api-os-compute +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone rabbitmq-server ntp +# Should-Stop: postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova API server +# Description: Frontend Nova API server +### END INIT INFO + +# Author: Julien Danjou + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute OS API" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-api-os-compute diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-os-compute.install b/openstack/debian/openstack-nova/liberty/debian/nova-api-os-compute.install new file mode 100644 index 000000000..b2bdd3c1d --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-os-compute.install @@ -0,0 +1 @@ +usr/bin/nova-api-os-compute diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api-os-compute.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-api-os-compute.manpages new file mode 100644 index 000000000..9f5f82f65 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api-os-compute.manpages @@ -0,0 +1 @@ +doc/build/man/nova-api-os-compute.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-api.init.in new file mode 100644 index 000000000..203adcaa7 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-api +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone rabbitmq-server ntp +# Should-Stop: postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova API server +# Description: Frontend Nova API server +### END INIT INFO + +# Author: Julien Danjou + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute API" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-api diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api.install b/openstack/debian/openstack-nova/liberty/debian/nova-api.install new file mode 100644 index 000000000..475c85c1b --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api.install @@ -0,0 +1,2 @@ +etc/nova/rootwrap.d/api-metadata.filters +usr/bin/nova-api diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-api.manpages new file mode 100644 index 000000000..a4c5c96af --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api.manpages @@ -0,0 +1 @@ +doc/build/man/nova-api.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-api.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-api.postinst new file mode 100644 index 000000000..b1c7d2e5e --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-api.postinst @@ -0,0 +1,7 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + chown root:root /etc/nova/rootwrap.d/api-metadata.filters +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-baremetal.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-baremetal.init.in new file mode 100644 index 000000000..3e5e7361f --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-baremetal.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-baremetal +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone +# Should-Stop: postgresql mysql keystone +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova API server +# Description: Frontend Nova API server +### END INIT INFO + +# Author: Julien Danjou + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute Baremetal" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-baremetal-deploy-helper diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-cells.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-cells.init.in new file mode 100644 index 000000000..59b32b152 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-cells.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-cells +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone +# Should-Stop: postgresql mysql keystone +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Cells server +# Description: Frontend Nova Cells server +### END INIT INFO + +# Author: Julien Danjou + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute Cells" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-cells diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-cells.install b/openstack/debian/openstack-nova/liberty/debian/nova-cells.install new file mode 100644 index 000000000..6ebc28f83 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-cells.install @@ -0,0 +1 @@ +usr/bin/nova-cells diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-cert.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-cert.init.in new file mode 100644 index 000000000..5ab2f9c72 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-cert.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-cert +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone rabbitmq-server ntp +# Should-Stop: postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Cert server +# Description: Nova Cert server +### END INIT INFO + +# Author: Julien Danjou + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute Cert" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-cert diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-cert.install b/openstack/debian/openstack-nova/liberty/debian/nova-cert.install new file mode 100644 index 000000000..ff4af36df --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-cert.install @@ -0,0 +1 @@ +usr/bin/nova-cert diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-cert.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-cert.manpages new file mode 100644 index 000000000..daddb099e --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-cert.manpages @@ -0,0 +1 @@ +doc/build/man/nova-cert.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-common.dirs b/openstack/debian/openstack-nova/liberty/debian/nova-common.dirs new file mode 100644 index 000000000..40b2696d9 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-common.dirs @@ -0,0 +1,14 @@ +etc/nova +etc/nova/rootwrap.d +var/lib/nova/CA +var/lib/nova/CA/INTER +var/lib/nova/CA/newcerts +var/lib/nova/CA/private +var/lib/nova/CA/reqs +var/lib/nova/buckets +var/lib/nova/images +var/lib/nova/instances +var/lib/nova/keys +var/lib/nova/networks +var/lib/nova/tmp +var/log/nova diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-common.install b/openstack/debian/openstack-nova/liberty/debian/nova-common.install new file mode 100644 index 000000000..52a808cde --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-common.install @@ -0,0 +1,9 @@ +debian/nova.conf etc/nova +debian/nova_sudoers etc/sudoers.d +etc/nova/api-paste.ini etc/nova +etc/nova/policy.json etc/nova +etc/nova/policy.json etc/nova +etc/nova/rootwrap.conf etc/nova +usr/bin/nova-manage +usr/bin/nova-rootwrap +usr/bin/nova-rootwrap-daemon diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-common.logrotate b/openstack/debian/openstack-nova/liberty/debian/nova-common.logrotate new file mode 100644 index 000000000..51c7caf73 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-common.logrotate @@ -0,0 +1,7 @@ +/var/log/nova/*.log { + daily + missingok + compress + delaycompress + copytruncate +} diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-common.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-common.manpages new file mode 100644 index 000000000..ccd4972af --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-common.manpages @@ -0,0 +1,2 @@ +doc/build/man/nova-manage.1 +doc/build/man/nova-rootwrap.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-common.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-common.postinst new file mode 100644 index 000000000..998772f63 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-common.postinst @@ -0,0 +1,77 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + if ! getent group nova > /dev/null 2>&1; then + addgroup --system nova >/dev/null + fi + + if ! getent passwd nova > /dev/null 2>&1; then + adduser --system --home /var/lib/nova --ingroup nova --no-create-home --shell /bin/false nova + fi + + if [ "$(id -gn nova)" = "nogroup" ]; then + usermod -g nova nova + fi + + if [ -z "$2" ]; then + # New install - blanket permissions + chown -R nova:nova /var/lib/nova/ + elif dpkg --compare-versions "$2" lt "2011.3-0ubuntu4"; then + # make sure that LXC rootfs mount points are excleuded + # during upgrades from previous versions + find /var/lib/nova/ -name 'rootfs' -prune -o \ + -group root -a -user nova -exec chown nova:nova {} \; + find /var/lib/nova/ -name 'rootfs' -prune -o \ + -group nogroup -a -user nova -exec chown nova:nova {} \; + elif dpkg --compare-versions "$2" lt "2012.2~f1~20120503.13935-0ubuntu1"; then + # convert the root_helper to rootwrap_config + sed -e "s,^root_helper=.\+,rootwrap_config=/etc/nova/rootwrap.conf," -i /etc/nova/nova.conf + fi + + if [ "$(id -gn nova)" = "nogroup" ]; then + usermod -g nova nova + fi + + if dpkg --compare-versions "$2" lt "2012.1~e3-0ubuntu2"; then + usermod -s "/bin/false" nova + fi + + chown -R nova:nova /etc/nova + chown -R nova:adm /var/log/nova + + if [ -z "$2" ]; then + # New install - blanket permissions + chown -R nova:nova /var/lib/nova/ + elif dpkg --compare-versions "$2" lt "2011.3-0ubuntu4"; then + # Make sure the LXC rootfs mount points are excluded + # during upgrades from previous versions + find /var/lib/nova/ -name 'rootfs' -prune -o \ + -group root -a -user nova -exec chown nova:nova {} \; + find /var/lib/nova/ -name 'rootfs' -prune -o \ + -group nogroup -a -user nova -exec chown nova:nova {} \; + fi + + chmod 0640 /etc/nova/nova.conf + chmod 0640 /etc/nova/policy.json + chmod 0640 /etc/nova/api-paste.ini + chmod 0750 /etc/nova + chmod 0750 /var/log/nova + chown root:root /etc/nova/rootwrap.conf + chown root:root /etc/nova/rootwrap.d + chmod 0755 /etc/nova/rootwrap.d + + if ! grep -qE "^(sql_)?connection( )?=.*" /etc/nova/nova.conf || \ + grep -qE "^(sql_)?connection.*sqlite.*" /etc/nova/nova.conf + then + su -s /bin/sh -c 'nova-manage db sync' nova + fi + + if [ -e /var/lib/nova/nova.sqlite ] + then + chown nova:nova /var/lib/nova/nova.sqlite + chmod 0640 /var/lib/nova/nova.sqlite + fi + +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-kvm.conf b/openstack/debian/openstack-nova/liberty/debian/nova-compute-kvm.conf new file mode 100644 index 000000000..48ad48903 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-kvm.conf @@ -0,0 +1,4 @@ +[DEFAULT] +compute_driver=libvirt.LibvirtDriver +[libvirt] +virt_type=kvm diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-kvm.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-compute-kvm.postinst new file mode 100644 index 000000000..914d3d9e1 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-kvm.postinst @@ -0,0 +1,8 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + chown nova:nova /etc/nova/nova-compute.conf + chmod 0600 /etc/nova/nova-compute.conf +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-libvirt.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-compute-libvirt.postinst new file mode 100644 index 000000000..44bd7be24 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-libvirt.postinst @@ -0,0 +1,10 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + if ! getent group libvirtd | grep -qE '\' + then + adduser nova libvirtd + fi +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-lxc.conf b/openstack/debian/openstack-nova/liberty/debian/nova-compute-lxc.conf new file mode 100644 index 000000000..725f9f657 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-lxc.conf @@ -0,0 +1,4 @@ +[DEFAULT] +compute_driver=libvirt.LibvirtDriver +[libvirt] +virt_type=lxc diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-lxc.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-compute-lxc.postinst new file mode 100644 index 000000000..914d3d9e1 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-lxc.postinst @@ -0,0 +1,8 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + chown nova:nova /etc/nova/nova-compute.conf + chmod 0600 /etc/nova/nova-compute.conf +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-qemu.conf b/openstack/debian/openstack-nova/liberty/debian/nova-compute-qemu.conf new file mode 100644 index 000000000..1ef5590c3 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-qemu.conf @@ -0,0 +1,4 @@ +[DEFAULT] +compute_driver=libvirt.LibvirtDriver +[libvirt] +virt_type=qemu diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-qemu.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-compute-qemu.postinst new file mode 100644 index 000000000..914d3d9e1 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-qemu.postinst @@ -0,0 +1,8 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + chown nova:nova /etc/nova/nova-compute.conf + chmod 0600 /etc/nova/nova-compute.conf +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-vmware.conf b/openstack/debian/openstack-nova/liberty/debian/nova-compute-vmware.conf new file mode 100644 index 000000000..751b12393 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-vmware.conf @@ -0,0 +1,2 @@ +[DEFAULT] +compute_driver=vmwareapi.VMwareVCDriver diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-vmware.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-compute-vmware.postinst new file mode 100644 index 000000000..914d3d9e1 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-vmware.postinst @@ -0,0 +1,8 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + chown nova:nova /etc/nova/nova-compute.conf + chmod 0600 /etc/nova/nova-compute.conf +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-xen.conf b/openstack/debian/openstack-nova/liberty/debian/nova-compute-xen.conf new file mode 100644 index 000000000..c76daad00 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-xen.conf @@ -0,0 +1,4 @@ +[DEFAULT] +compute_driver=libvirt.LibvirtDriver +[libvirt] +virt_type=xen diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute-xen.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-compute-xen.postinst new file mode 100644 index 000000000..914d3d9e1 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute-xen.postinst @@ -0,0 +1,8 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + chown nova:nova /etc/nova/nova-compute.conf + chmod 0600 /etc/nova/nova-compute.conf +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-compute.init.in new file mode 100644 index 000000000..1dba36a39 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute.init.in @@ -0,0 +1,26 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-compute +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: libvirtd postgresql mysql keystone rabbitmq-server ntp neutron-ovs-cleanup +# Should-Stop: libvirtd postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Compute server +# Description: Provides compute server resources for the +# OpenStack cloud computing system +### END INIT INFO + +# Author: Julien Danjou + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-compute +DAEMON_ARGS="" +if [ -f '/etc/nova/nova-compute.conf' ] ; then + DAEMON_ARGS="--config-file=/etc/nova/nova-compute.conf" +fi + diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute.install b/openstack/debian/openstack-nova/liberty/debian/nova-compute.install new file mode 100644 index 000000000..b62a25359 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute.install @@ -0,0 +1,3 @@ +etc/nova/rootwrap.d/compute.filters +usr/bin/nova-compute +usr/bin/nova-idmapshift diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-compute.manpages new file mode 100644 index 000000000..6f33ce19e --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute.manpages @@ -0,0 +1 @@ +doc/build/man/nova-compute.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-compute.postinst new file mode 100644 index 000000000..d36002aa1 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute.postinst @@ -0,0 +1,7 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + chown root:root /etc/nova/rootwrap.d/compute.filters +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-compute.upstart b/openstack/debian/openstack-nova/liberty/debian/nova-compute.upstart new file mode 100644 index 000000000..d675de348 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-compute.upstart @@ -0,0 +1,56 @@ +# vim: set ft=upstart et ts=2: +description "Nova compute worker" +author "Soren Hansen " + +start on runlevel [2345] +stop on runlevel [!2345] + +chdir /var/run + +env MAX_STATUS_CHECK_RETRIES=20 + +pre-start script + mkdir -p /var/run/nova + chown nova:root /var/run/nova/ + + mkdir -p /var/lock/nova + chown nova:root /var/lock/nova/ + + modprobe nbd + + # If libvirt-bin is installed, always wait for it to start first + if status libvirt-bin; then + start wait-for-state WAIT_FOR=libvirt-bin WAIT_STATE=running WAITER=nova-compute + fi + + # If installed, wait for neutron-ovs-cleanup to complete prior to starting + # nova-compute. + if status neutron-ovs-cleanup; then + # See LP #1471022 for explanation of why we do like this + retries=$MAX_STATUS_CHECK_RETRIES + delay=1 + while true; do + # Already running? + s=`status neutron-ovs-cleanup` + echo $s + `echo $s| grep -qE "\sstart/running"` && break + if retries=`expr $retries - 1`; then + # Give it a push + echo "Attempting to start neutron-ovs-cleanup" + start neutron-ovs-cleanup || : + # Wait a bit to avoid hammering ovs-cleanup (which itself may be waiting + # on dependencies) + echo "Recheck neutron-ovs-cleanup status in ${delay}s" + sleep $delay + if _=`expr $retries % 2`; then + delay=`expr $delay + 2` + fi + else + echo "Max retries ($MAX_STATUS_CHECK_RETRIES) reached - no longer waiting for neutron-ovs-cleanup to start" + break + fi + done + fi +end script + +exec start-stop-daemon --start --chuid nova --exec /usr/bin/nova-compute -- --config-file=/etc/nova/nova.conf --config-file=/etc/nova/nova-compute.conf diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-conductor.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-conductor.init.in new file mode 100644 index 000000000..d0170b7f0 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-conductor.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-conductor +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone rabbitmq-server ntp +# Should-Stop: postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Conductor server +# Description: Frontend Nova Conductor server +### END INIT INFO + +# Author: Julien Danjou + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute Conductor" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-conductor diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-conductor.install b/openstack/debian/openstack-nova/liberty/debian/nova-conductor.install new file mode 100644 index 000000000..873ae74df --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-conductor.install @@ -0,0 +1 @@ +usr/bin/nova-conductor diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-conductor.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-conductor.manpages new file mode 100644 index 000000000..c28bc8af6 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-conductor.manpages @@ -0,0 +1 @@ +doc/build/man/nova-conductor.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-console.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-console.init.in new file mode 100644 index 000000000..809d627eb --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-console.init.in @@ -0,0 +1,18 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-console +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone rabbitmq-server ntp +# Should-Stop: postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Console for XenServer and XVP +# Description: Nova Console for XenServer and XVP +### END INIT INFO + +# Author: Julien Danjou + +DESC="OpenStack Compute Console" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-console diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-console.install b/openstack/debian/openstack-nova/liberty/debian/nova-console.install new file mode 100644 index 000000000..b16c6968c --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-console.install @@ -0,0 +1 @@ +usr/bin/nova-console diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-console.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-console.manpages new file mode 100644 index 000000000..814f2b99a --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-console.manpages @@ -0,0 +1 @@ +doc/build/man/nova-console.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-consoleauth.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-consoleauth.init.in new file mode 100644 index 000000000..39bc82322 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-consoleauth.init.in @@ -0,0 +1,18 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-consoleauth +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone rabbitmq-server ntp +# Should-Stop: postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Console Auth +# Description: Nova Console Auth +### END INIT INFO + +# AUthor: Thomas Goirand + +DESC="OpenStack Compute Console" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-consoleauth diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-consoleauth.install b/openstack/debian/openstack-nova/liberty/debian/nova-consoleauth.install new file mode 100644 index 000000000..1f8bba5af --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-consoleauth.install @@ -0,0 +1 @@ +usr/bin/nova-consoleauth diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-consoleauth.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-consoleauth.manpages new file mode 100644 index 000000000..8e28693f6 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-consoleauth.manpages @@ -0,0 +1 @@ +doc/build/man/nova-consoleauth.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-doc.doc-base b/openstack/debian/openstack-nova/liberty/debian/nova-doc.doc-base new file mode 100644 index 000000000..8ae125edf --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-doc.doc-base @@ -0,0 +1,9 @@ +Document: nova-doc +Title: Nova Documentation +Author: OpenStack +Abstract: Sphinx documentation for Nova +Section: Network/File Transfer + +Format: HTML +Index: /usr/share/doc/nova-doc/html/index.html +Files: /usr/share/doc/nova-doc/html/* diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-doc.docs b/openstack/debian/openstack-nova/liberty/debian/nova-doc.docs new file mode 100644 index 000000000..8137b041c --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-doc.docs @@ -0,0 +1 @@ +doc/build/html diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-doc.links b/openstack/debian/openstack-nova/liberty/debian/nova-doc.links new file mode 100644 index 000000000..f27d3f14a --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-doc.links @@ -0,0 +1,6 @@ +# Overwrite jquery.js from upstream tarball with a link to jquery.js +# Overwrite underscore.js from upstream tarball with a link to underscore.min.js +# provided by Underscore Debian package +# provided by jQuery Debian package +/usr/share/javascript/jquery/jquery.js usr/share/doc/nova-doc/html/_static/jquery.js +/usr/share/javascript/underscore/underscore.min.js usr/share/doc/nova-doc/html/_static/underscore.js diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-network.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-network.init.in new file mode 100644 index 000000000..c53d6a608 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-network.init.in @@ -0,0 +1,18 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-network +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone +# Should-Stop: postgresql mysql keystone +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Network +# Description: Provides network resources +### END INIT INFO + +# Author: Thomas Goirand + +DESC="OpenStack Compute Network" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-network diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-network.install b/openstack/debian/openstack-nova/liberty/debian/nova-network.install new file mode 100644 index 000000000..b68424652 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-network.install @@ -0,0 +1,3 @@ +etc/nova/rootwrap.d/network.filters +usr/bin/nova-dhcpbridge +usr/bin/nova-network diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-network.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-network.manpages new file mode 100644 index 000000000..a30f7d668 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-network.manpages @@ -0,0 +1,2 @@ +doc/build/man/nova-dhcpbridge.1 +doc/build/man/nova-network.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-network.postinst b/openstack/debian/openstack-nova/liberty/debian/nova-network.postinst new file mode 100644 index 000000000..5fccd753f --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-network.postinst @@ -0,0 +1,7 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + chown root:root /etc/nova/rootwrap.d/network.filters +fi + +#DEBHELPER# diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-novncproxy.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-novncproxy.init.in new file mode 100644 index 000000000..3b484d4b6 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-novncproxy.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-novncproxy +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: nova-consoleauth +# Should-Stop: nova-consoleauth +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova novncproxy server +# Description: Frontend Nova novncproxy server +### END INIT INFO + +# Authors: Julien Danjou & Thomas Goirand + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute novncproxy" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-novncproxy diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-novncproxy.install b/openstack/debian/openstack-nova/liberty/debian/nova-novncproxy.install new file mode 100644 index 000000000..20eec0ebc --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-novncproxy.install @@ -0,0 +1 @@ +usr/bin/nova-novncproxy diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-novncproxy.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-novncproxy.manpages new file mode 100644 index 000000000..50418bc04 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-novncproxy.manpages @@ -0,0 +1 @@ +doc/build/man/nova-novncproxy.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-objectstore.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-objectstore.init.in new file mode 100644 index 000000000..056d393ad --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-objectstore.init.in @@ -0,0 +1,18 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-objectstore +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone +# Should-Stop: postgresql mysql keystone +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Objectstore +# Description: S3 Object Storage for Nova +### END INIT INFO + +# Author: James Page + +DESC="OpenStack Objectstore" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-objectstore diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-objectstore.install b/openstack/debian/openstack-nova/liberty/debian/nova-objectstore.install new file mode 100644 index 000000000..a82d10f01 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-objectstore.install @@ -0,0 +1 @@ +usr/bin/nova-objectstore diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-objectstore.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-objectstore.manpages new file mode 100644 index 000000000..ce0b54107 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-objectstore.manpages @@ -0,0 +1 @@ +doc/build/man/nova-objectstore.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-scheduler.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-scheduler.init.in new file mode 100644 index 000000000..5bb7a4071 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-scheduler.init.in @@ -0,0 +1,18 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-scheduler +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: postgresql mysql keystone +# Should-Stop: postgresql mysql keystone +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Scheduler +# Description: Schedules instances, volumes, etc. for Nova +### END INIT INFO + +# Author: Julien Danjou + +DESC="OpenStack Compute Scheduler" +PROJECT_NAME=nova +NAME=nova-scheduler diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-scheduler.install b/openstack/debian/openstack-nova/liberty/debian/nova-scheduler.install new file mode 100644 index 000000000..f74e12aac --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-scheduler.install @@ -0,0 +1 @@ +usr/bin/nova-scheduler diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-scheduler.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-scheduler.manpages new file mode 100644 index 000000000..779f10b33 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-scheduler.manpages @@ -0,0 +1 @@ +doc/build/man/nova-scheduler.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-serialproxy.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-serialproxy.init.in new file mode 100644 index 000000000..0c4b86fad --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-serialproxy.init.in @@ -0,0 +1,20 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-serialproxy +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: nova-consoleauth +# Should-Stop: nova-consoleauth +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova serialproxy server +# Description: Frontend Nova serialproxy server +### END INIT INFO + +# Authors: Thomas Goirand + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute serialproxy" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-serialproxy diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-serialproxy.install b/openstack/debian/openstack-nova/liberty/debian/nova-serialproxy.install new file mode 100644 index 000000000..bacfd916f --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-serialproxy.install @@ -0,0 +1 @@ +usr/bin/nova-serialproxy diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-serialproxy.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-serialproxy.manpages new file mode 100644 index 000000000..9f3f954a4 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-serialproxy.manpages @@ -0,0 +1 @@ +doc/build/man/nova-serialproxy.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-spiceproxy.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-spiceproxy.init.in new file mode 100644 index 000000000..0d778a6c6 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-spiceproxy.init.in @@ -0,0 +1,21 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-spiceproxy +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: nova-consoleauth +# Should-Stop: nova-consoleauth +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova Spice HTML5 Proxy +# Description: Nova Spice HTML5 Proxy +### END INIT INFO + +# Author: Thomas Goirand + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="OpenStack Compute Spice HTML5 Proxy" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-spiceproxy +DAEMON=/usr/bin/${PROJECT_NAME}-spicehtml5proxy diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-spiceproxy.install b/openstack/debian/openstack-nova/liberty/debian/nova-spiceproxy.install new file mode 100644 index 000000000..c781b8386 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-spiceproxy.install @@ -0,0 +1 @@ +usr/bin/nova-spicehtml5proxy diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-spiceproxy.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-spiceproxy.manpages new file mode 100644 index 000000000..5fab058a9 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-spiceproxy.manpages @@ -0,0 +1 @@ +doc/build/man/nova-spicehtml5proxy.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-xvpvncproxy.init.in b/openstack/debian/openstack-nova/liberty/debian/nova-xvpvncproxy.init.in new file mode 100644 index 000000000..06cf65cda --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-xvpvncproxy.init.in @@ -0,0 +1,16 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nova-xvpvncproxy nova-xenvncproxy +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Nova XVP VNC proxy +# Description: Nova XVP VNC proxy +### END INIT INFO + +# Authors: Thomas Goirand + +DESC="OpenStack XVP VNC proxy" +PROJECT_NAME=nova +NAME=${PROJECT_NAME}-xvpvncproxy diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-xvpvncproxy.install b/openstack/debian/openstack-nova/liberty/debian/nova-xvpvncproxy.install new file mode 100644 index 000000000..4b07b9cb5 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-xvpvncproxy.install @@ -0,0 +1 @@ +usr/bin/nova-xvpvncproxy diff --git a/openstack/debian/openstack-nova/liberty/debian/nova-xvpvncproxy.manpages b/openstack/debian/openstack-nova/liberty/debian/nova-xvpvncproxy.manpages new file mode 100644 index 000000000..640efd9d5 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova-xvpvncproxy.manpages @@ -0,0 +1 @@ +doc/build/man/nova-xvpvncproxy.1 diff --git a/openstack/debian/openstack-nova/liberty/debian/nova.conf b/openstack/debian/openstack-nova/liberty/debian/nova.conf new file mode 100644 index 000000000..a2a354d2d --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova.conf @@ -0,0 +1,12 @@ +[DEFAULT] +dhcpbridge_flagfile=/etc/nova/nova.conf +dhcpbridge=/usr/bin/nova-dhcpbridge +logdir=/var/log/nova +state_path=/var/lib/nova +lock_path=/var/lock/nova +force_dhcp_release=True +libvirt_use_virtio_for_bridges=True +verbose=True +ec2_private_dns_show_ip=True +api_paste_config=/etc/nova/api-paste.ini +enabled_apis=ec2,osapi_compute,metadata diff --git a/openstack/debian/openstack-nova/liberty/debian/nova_sudoers b/openstack/debian/openstack-nova/liberty/debian/nova_sudoers new file mode 100644 index 000000000..8f9c40ede --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova_sudoers @@ -0,0 +1,3 @@ +Defaults:nova !requiretty + +nova ALL = (root) NOPASSWD: /usr/bin/nova-rootwrap /etc/nova/rootwrap.conf * diff --git a/openstack/debian/openstack-nova/liberty/debian/nova_tgt.conf b/openstack/debian/openstack-nova/liberty/debian/nova_tgt.conf new file mode 100644 index 000000000..d417feea6 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/nova_tgt.conf @@ -0,0 +1 @@ +include /var/lib/nova/volumes/* diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/arm-console-patch.patch b/openstack/debian/openstack-nova/liberty/debian/patches/arm-console-patch.patch new file mode 100644 index 000000000..653d91dad --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/arm-console-patch.patch @@ -0,0 +1,31 @@ +--- a/nova/tests/unit/virt/libvirt/test_driver.py ++++ b/nova/tests/unit/virt/libvirt/test_driver.py +@@ -1243,7 +1243,7 @@ + self.assertEqual(1, cfg.vcpus) + self.assertEqual(vm_mode.EXE, cfg.os_type) + self.assertEqual("/sbin/init", cfg.os_init_path) +- self.assertEqual("console=tty0 console=ttyS0", cfg.os_cmdline) ++ self.assertEqual("console=tty0 console=ttyS0 console=ttyAMA0", cfg.os_cmdline) + self.assertIsNone(cfg.os_root) + self.assertEqual(3, len(cfg.devices)) + self.assertIsInstance(cfg.devices[0], +@@ -1268,7 +1268,7 @@ + self.assertEqual(1, cfg.vcpus) + self.assertEqual(vm_mode.EXE, cfg.os_type) + self.assertEqual("/sbin/init", cfg.os_init_path) +- self.assertEqual("console=tty0 console=ttyS0", cfg.os_cmdline) ++ self.assertEqual("console=tty0 console=ttyS0 console=ttyAMA0", cfg.os_cmdline) + self.assertIsNone(cfg.os_root) + self.assertEqual(3, len(cfg.devices)) + self.assertIsInstance(cfg.devices[0], +--- a/nova/virt/libvirt/driver.py ++++ b/nova/virt/libvirt/driver.py +@@ -311,7 +311,7 @@ + DISABLE_REASON_UNDEFINED = None + + # Guest config console string +-CONSOLE = "console=tty0 console=ttyS0" ++CONSOLE = "console=tty0 console=ttyS0 console=ttyAMA0" + + GuestNumaConfig = collections.namedtuple( + 'GuestNumaConfig', ['cpuset', 'cputune', 'numaconfig', 'numatune']) diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/disable-sphinxcontrib.seqdiag.patch b/openstack/debian/openstack-nova/liberty/debian/patches/disable-sphinxcontrib.seqdiag.patch new file mode 100644 index 000000000..0b72d79d2 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/disable-sphinxcontrib.seqdiag.patch @@ -0,0 +1,10 @@ +--- a/doc/source/conf.py ++++ b/doc/source/conf.py +@@ -33,7 +33,6 @@ + 'sphinx.ext.graphviz', + 'oslosphinx', + "ext.support_matrix", +- 'sphinxcontrib.seqdiag', + ] + + todo_include_todos = True diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/disable-websockify-tests.patch b/openstack/debian/openstack-nova/liberty/debian/patches/disable-websockify-tests.patch new file mode 100644 index 000000000..dfdc729d6 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/disable-websockify-tests.patch @@ -0,0 +1,100 @@ +Description: Disable websockify usage + Its not in Ubuntu main, so disable testing that requires it. +Author: James Page +Forwared: not-needed + +--- a/nova/tests/unit/console/test_websocketproxy.py ++++ b/nova/tests/unit/console/test_websocketproxy.py +@@ -16,8 +16,13 @@ + + + import mock ++import testtools ++ ++try: ++ from nova.console import websocketproxy ++except: ++ websocketproxy = None + +-from nova.console import websocketproxy + from nova import exception + from nova import test + from oslo_config import cfg +@@ -27,6 +32,7 @@ + + class NovaProxyRequestHandlerBaseTestCase(test.NoDBTestCase): + ++ @testtools.skipIf(websocketproxy is None, "websockify not available") + def setUp(self): + super(NovaProxyRequestHandlerBaseTestCase, self).setUp() + +--- a/nova/tests/unit/cmd/test_baseproxy.py ++++ /dev/null +@@ -1,67 +0,0 @@ +-# Copyright 2015 IBM Corp. +-# +-# Licensed under the Apache License, Version 2.0 (the "License"); +-# you may not use this file except in compliance with the License. +-# You may obtain a copy of the License at +-# +-# http://www.apache.org/licenses/LICENSE-2.0 +-# +-# Unless required by applicable law or agreed to in writing, software +-# distributed under the License is distributed on an "AS IS" BASIS, +-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-# See the License for the specific language governing permissions and +-# limitations under the License. +- +-import mock +-from oslo_log import log as logging +-from oslo_reports import guru_meditation_report as gmr +- +-from nova.cmd import baseproxy +-from nova import config +-from nova.console import websocketproxy +-from nova import test +-from nova import version +- +- +-@mock.patch.object(config, 'parse_args', new=lambda *args, **kwargs: None) +-class BaseProxyTestCase(test.NoDBTestCase): +- +- @mock.patch('os.path.exists', return_value=False) +- # NOTE(mriedem): sys.exit raises TestingException so we can actually exit +- # the test normally. +- @mock.patch('sys.exit', side_effect=test.TestingException) +- def test_proxy_ssl_without_cert(self, mock_exit, mock_exists): +- self.flags(ssl_only=True) +- self.assertRaises(test.TestingException, baseproxy.proxy, +- '0.0.0.0', '6080') +- mock_exit.assert_called_once_with(-1) +- +- @mock.patch('os.path.exists', return_value=False) +- @mock.patch('sys.exit', side_effect=test.TestingException) +- def test_proxy_web_dir_does_not_exist(self, mock_exit, mock_exists): +- self.flags(web='/my/fake/webserver/') +- self.assertRaises(test.TestingException, baseproxy.proxy, +- '0.0.0.0', '6080') +- mock_exit.assert_called_once_with(-1) +- +- @mock.patch('os.path.exists', return_value=True) +- @mock.patch.object(logging, 'setup') +- @mock.patch.object(gmr.TextGuruMeditation, 'setup_autorun') +- @mock.patch('nova.console.websocketproxy.NovaWebSocketProxy.__init__', +- return_value=None) +- @mock.patch('nova.console.websocketproxy.NovaWebSocketProxy.start_server') +- def test_proxy(self, mock_start, mock_init, mock_gmr, mock_log, +- mock_exists): +- # Force verbose=False so something else testing nova.cmd.baseproxy +- # doesn't impact the call to mocked NovaWebSocketProxy.__init__. +- self.flags(verbose=False) +- baseproxy.proxy('0.0.0.0', '6080') +- mock_log.assert_called_once_with(baseproxy.CONF, 'nova') +- mock_gmr.mock_assert_called_once_with(version) +- mock_init.assert_called_once_with( +- listen_host='0.0.0.0', listen_port='6080', source_is_ipv6=False, +- verbose=False, cert='self.pem', key=None, ssl_only=False, +- daemon=False, record=False, traffic=False, +- web='/usr/share/spice-html5', file_only=True, +- RequestHandlerClass=websocketproxy.NovaProxyRequestHandler) +- mock_start.assert_called_once_with() diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/fixup-blkid.patch b/openstack/debian/openstack-nova/liberty/debian/patches/fixup-blkid.patch new file mode 100644 index 000000000..1a7dcfab7 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/fixup-blkid.patch @@ -0,0 +1,41 @@ +From 27bbef87c4f0830c04844b1e4b0b2619a9e37530 Mon Sep 17 00:00:00 2001 +From: James Page +Date: Fri, 27 Feb 2015 11:27:30 +0000 +Subject: [PATCH] Handle return code 2 from blkid calls + +blkid returns code 2 if the requested TYPE key is not found +for the specified device. + +Ensure that this situation is handled correctly; blkid will +not return any data, so the return value will be empty. + +Change-Id: I38cd7b53cdfd694c0eba1b6054d8e4c33759b0b8 +Closes-Bug: #1426324 +--- + nova/tests/unit/virt/disk/vfs/test_localfs.py | 3 ++- + nova/virt/disk/vfs/localfs.py | 3 ++- + 2 files changed, 4 insertions(+), 2 deletions(-) + +--- a/nova/tests/unit/virt/disk/vfs/test_localfs.py ++++ b/nova/tests/unit/virt/disk/vfs/test_localfs.py +@@ -416,7 +416,8 @@ class VirtDiskVFSLocalFSTest(test.NoDBTe + execute.assert_called_once_with('blkid', '-o', + 'value', '-s', + 'TYPE', '/dev/xyz', +- run_as_root=True) ++ run_as_root=True, ++ check_exit_code=[0, 2]) + + @mock.patch.object(tempfile, 'mkdtemp') + @mock.patch.object(nova.virt.disk.mount.nbd, 'NbdMount') +--- a/nova/virt/disk/vfs/localfs.py ++++ b/nova/virt/disk/vfs/localfs.py +@@ -164,6 +164,7 @@ class VFSLocalFS(vfs.VFS): + out, err = utils.execute('blkid', '-o', + 'value', '-s', + 'TYPE', self.mount.device, +- run_as_root=True) ++ run_as_root=True, ++ check_exit_code=[0, 2]) + return out.strip() + return "" diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/ignore-proxies.patch b/openstack/debian/openstack-nova/liberty/debian/patches/ignore-proxies.patch new file mode 100644 index 000000000..203ee0f36 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/ignore-proxies.patch @@ -0,0 +1,24 @@ +Description: Ensure any proxies are ignored +Author: James Page +Forwarded: no + +--- a/nova/tests/unit/test_wsgi.py ++++ b/nova/tests/unit/test_wsgi.py +@@ -315,6 +315,7 @@ + + @testtools.skipIf(not utils.is_ipv6_supported(), "no ipv6 support") + def test_app_using_ipv6_and_ssl(self): ++ self.skipTest("Fails due to ProxyError in sbuild/builds") + greetings = 'Hello, World!!!' + + @webob.dec.wsgify +--- a/nova/tests/unit/test_fixtures.py ++++ b/nova/tests/unit/test_fixtures.py +@@ -157,6 +157,7 @@ + class TestOSAPIFixture(testtools.TestCase): + def test_responds_to_version(self): + """Ensure the OSAPI server responds to calls sensibly.""" ++ self.skipTest("Fails due to ProxyError in sbuild/builds") + self.useFixture(fixtures.OutputStreamCapture()) + self.useFixture(fixtures.StandardLogging()) + self.useFixture(conf_fixture.ConfFixture()) diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/neutron-floating-ip-list.patch b/openstack/debian/openstack-nova/liberty/debian/patches/neutron-floating-ip-list.patch new file mode 100644 index 000000000..75c9c4426 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/neutron-floating-ip-list.patch @@ -0,0 +1,35 @@ +From 6b40fc8b18d0294ca68cc53aaea158bf622371cf Mon Sep 17 00:00:00 2001 +From: James Page +Date: Thu, 16 Oct 2014 09:57:16 +0100 +Subject: [PATCH] Deal with neutron and nova-network data formats + +The Floating IP model returned via the Neutron v2 API is different to +that provided by the Nova Network API; check to see if instance uuid +is present in the top level of the Floating IP data and use that if +found. + +Resolves missing server uuids in 'nova floating-ip-list' when used +with Neutron networking. + +Change-Id: I82671546e40dbb06a2854d6ff6448beab7bbd763 +Closes-Bug: #1380965 +--- + nova/api/openstack/compute/contrib/floating_ips.py | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +--- a/nova/api/openstack/compute/floating_ips.py ++++ b/nova/api/openstack/compute/floating_ips.py +@@ -49,7 +49,12 @@ + except (TypeError, KeyError, AttributeError): + result['fixed_ip'] = None + try: +- result['instance_id'] = floating_ip['fixed_ip']['instance_uuid'] ++ # NOTE(jamespage) neutron based data uses a slight different ++ # underlying data format - use that if present ++ if 'instance' in floating_ip: ++ result['instance_id'] = floating_ip['instance']['uuid'] ++ else: ++ result['instance_id'] = floating_ip['fixed_ip']['instance_uuid'] + except (TypeError, KeyError, AttributeError): + result['instance_id'] = None + return {'floating_ip': result} diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/rate-limit-power-syncs.patch b/openstack/debian/openstack-nova/liberty/debian/patches/rate-limit-power-syncs.patch new file mode 100644 index 000000000..4cfe6bbff --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/rate-limit-power-syncs.patch @@ -0,0 +1,179 @@ +From ed8e35acea29bd67d83a16fbe6b3ece50b76c2ac Mon Sep 17 00:00:00 2001 +From: James Page +Date: Fri, 31 Oct 2014 14:18:54 +0000 +Subject: [PATCH] Rate limit power sync tasks to avoid overloading + +Performing all database <-> hypervisor period power state syncs in +parallel is a bad idea as this increases the loading on the +message broker and the conductors inline with the number of instances +running in the cloud. + +Provide a configuration option and spawn a sync manager thread to +rate limit the number of parallel sync activities happening during +the _sync_power_states period task using an eventlet queue. + +DocImpact + +Change-Id: I3d518249e6513d60b61d3877e7f647e82df60ed0 +Closes-bug: #1388077 +--- + nova/compute/manager.py | 60 +++++++++++++++++++-------- + nova/tests/unit/compute/eventlet_utils.py | 5 +++ + nova/tests/unit/compute/test_compute_mgr.py | 5 ++- + nova/tests/unit/compute/test_compute_xen.py | 5 ++- + 4 files changed, 55 insertions(+), 20 deletions(-) + +--- a/nova/compute/manager.py ++++ b/nova/compute/manager.py +@@ -143,6 +143,11 @@ + help='Interval to sync power states between the database and ' + 'the hypervisor. Set to -1 to disable. ' + 'Setting this to 0 will run at the default rate.'), ++ cfg.IntOpt('sync_power_state_concurrency', ++ default=20, ++ help='The level of concurrency that will be used during sync ' ++ 'of power states between the database and the ' ++ 'hypervisor.'), + cfg.IntOpt("heal_instance_info_cache_interval", + default=60, + help="Number of seconds between instance info_cache self " +@@ -621,8 +626,11 @@ + self.scheduler_rpcapi = scheduler_rpcapi.SchedulerAPI() + self._resource_tracker_dict = {} + self.instance_events = InstanceEvents() +- self._sync_power_pool = eventlet.GreenPool() ++ self._sync_power_pool = ( ++ eventlet.GreenPool(CONF.sync_power_state_concurrency)) ++ self._sync_power_queue = eventlet.Queue() + self._syncs_in_progress = {} ++ self._sync_manager = None + if CONF.max_concurrent_builds != 0: + self._build_semaphore = eventlet.semaphore.Semaphore( + CONF.max_concurrent_builds) +@@ -5816,33 +5824,49 @@ + {'num_db_instances': num_db_instances, + 'num_vm_instances': num_vm_instances}) + +- def _sync(db_instance): +- # NOTE(melwitt): This must be synchronized as we query state from +- # two separate sources, the driver and the database. +- # They are set (in stop_instance) and read, in sync. +- @utils.synchronized(db_instance.uuid) +- def query_driver_power_state_and_sync(): +- self._query_driver_power_state_and_sync(context, db_instance) ++ def _sync_manager(): ++ def _sync(db_instance): ++ # NOTE(melwitt): ++ # This must be synchronized as we query state from ++ # two separate sources, the driver and the database. ++ # They are set (in stop_instance) and read, in sync. ++ @utils.synchronized(db_instance.uuid) ++ def query_driver_power_state_and_sync(): ++ self._query_driver_power_state_and_sync(context, ++ db_instance) + +- try: +- query_driver_power_state_and_sync() +- except Exception: +- LOG.exception(_LE("Periodic sync_power_state task had an " +- "error while processing an instance."), +- instance=db_instance) +- +- self._syncs_in_progress.pop(db_instance.uuid) ++ try: ++ query_driver_power_state_and_sync() ++ except Exception: ++ LOG.exception(_LE("Periodic sync_power_state task had an " ++ "error while processing an instance."), ++ instance=db_instance) ++ ++ self._syncs_in_progress.pop(db_instance.uuid) ++ ++ while True: ++ while not self._sync_power_queue.empty(): ++ db_instance = self._sync_power_queue.get() ++ self._sync_power_pool.spawn_n(_sync, db_instance) ++ self._sync_power_pool.waitall() ++ if self._sync_power_queue.empty(): ++ self._sync_manager = None ++ break + + for db_instance in db_instances: +- # process syncs asynchronously - don't want instance locking to +- # block entire periodic task thread + uuid = db_instance.uuid + if uuid in self._syncs_in_progress: + LOG.debug('Sync already in progress for %s' % uuid) + else: + LOG.debug('Triggering sync for uuid %s' % uuid) + self._syncs_in_progress[uuid] = True +- self._sync_power_pool.spawn_n(_sync, db_instance) ++ self._sync_power_queue.put(db_instance) ++ ++ if not self._sync_manager: ++ # process syncs asynchronously via the sync manager as we ++ # don't want instance locking to block the entire periodic ++ # task thread ++ self._sync_manager = eventlet.spawn_n(_sync_manager) + + def _query_driver_power_state_and_sync(self, context, db_instance): + if db_instance.task_state is not None: +--- a/nova/tests/unit/compute/eventlet_utils.py ++++ b/nova/tests/unit/compute/eventlet_utils.py +@@ -15,6 +15,11 @@ + import eventlet + + ++def sync_spawn_n(func, *args, **kwargs): ++ """Synchronous spawn_n for testing threaded code.""" ++ func(*args, **kwargs) ++ ++ + class SyncPool(eventlet.GreenPool): + """Synchronous pool for testing threaded code without adding sleep + waits. +--- a/nova/tests/unit/compute/test_compute_mgr.py ++++ b/nova/tests/unit/compute/test_compute_mgr.py +@@ -42,6 +42,7 @@ + from nova.objects import block_device as block_device_obj + from nova.openstack.common import uuidutils + from nova import test ++from nova.tests.unit.compute import eventlet_utils + from nova.tests.unit.compute import fake_resource_tracker + from nova.tests.unit import fake_block_device + from nova.tests.unit import fake_instance +@@ -1081,10 +1082,12 @@ + self.mox.ReplayAll() + self.compute._instance_usage_audit(self.context) + ++ @mock.patch('eventlet.spawn_n') + @mock.patch.object(objects.InstanceList, 'get_by_host') +- def test_sync_power_states(self, mock_get): ++ def test_sync_power_states(self, mock_get, mock_spawn_n): + instance = mock.Mock() + mock_get.return_value = [instance] ++ mock_spawn_n.side_effect = eventlet_utils.sync_spawn_n + with mock.patch.object(self.compute._sync_power_pool, + 'spawn_n') as mock_spawn: + self.compute._sync_power_states(mock.sentinel.context) +--- a/nova/tests/unit/compute/test_compute_xen.py ++++ b/nova/tests/unit/compute/test_compute_xen.py +@@ -12,6 +12,7 @@ + + """Tests for expectations of behaviour from the Xen driver.""" + ++import mock + from oslo.config import cfg + from oslo.utils import importutils + +@@ -42,7 +43,9 @@ + # execute power syncing synchronously for testing: + self.compute._sync_power_pool = eventlet_utils.SyncPool() + +- def test_sync_power_states_instance_not_found(self): ++ @mock.patch('eventlet.spawn_n') ++ def test_sync_power_states_instance_not_found(self, _spawn_n): ++ _spawn_n.side_effect = eventlet_utils.sync_spawn_n + db_instance = fake_instance.fake_db_instance() + ctxt = context.get_admin_context() + instance_list = instance_obj._make_instance_list(ctxt, diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/series b/openstack/debian/openstack-nova/liberty/debian/patches/series new file mode 100644 index 000000000..efa5195ae --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/series @@ -0,0 +1,8 @@ +# Ubuntu specific patches below here. Note these can be dropped eventually. +arm-console-patch.patch +update-run-tests.patch +disable-websockify-tests.patch +neutron-floating-ip-list.patch +skip-cinder-tests.patch +ignore-proxies.patch +disable-sphinxcontrib.seqdiag.patch diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/skip-cinder-tests.patch b/openstack/debian/openstack-nova/liberty/debian/patches/skip-cinder-tests.patch new file mode 100644 index 000000000..2d9ed95a5 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/skip-cinder-tests.patch @@ -0,0 +1,61 @@ +--- a/nova/tests/unit/test_cinder.py ++++ b/nova/tests/unit/test_cinder.py +@@ -115,15 +115,21 @@ class CinderTestCase(BaseCinderTestCase, + self.create_client().client.endpoint_override) + + def test_get_non_existing_volume(self): +- self.requests.get(self.URL + '/volumes/nonexisting', +- status_code=404) ++ try: ++ self.requests.get(self.URL + '/volumes/nonexisting', ++ status_code=404) ++ except: ++ self.skipTest('Failed to connect') + + self.assertRaises(exception.VolumeNotFound, self.api.get, self.context, + 'nonexisting') + + def test_volume_with_image_metadata(self): + v = self.stub_volume(id='1234', volume_image_metadata=_image_metadata) +- m = self.requests.get(self.URL + '/volumes/5678', json={'volume': v}) ++ try: ++ m = self.requests.get(self.URL + '/volumes/5678', json={'volume': v}) ++ except: ++ self.skipTest('Skipped by Ubuntu') + + volume = self.api.get(self.context, '5678') + self.assertThat(m.last_request.path, +@@ -175,19 +181,28 @@ class CinderV2TestCase(BaseCinderTestCas + def test_cinder_endpoint_template(self): + endpoint = 'http://other_host:8776/v2/%(project_id)s' + self.flags(endpoint_template=endpoint, group='cinder') +- self.assertEqual('http://other_host:8776/v2/project_id', +- self.create_client().client.endpoint_override) ++ try: ++ self.assertEqual('http://other_host:8776/v2/project_id', ++ self.create_client().client.endpoint_override) ++ except: ++ self.skipTest('Skipped by Ubuntu') + + def test_get_non_existing_volume(self): +- self.requests.get(self.URL + '/volumes/nonexisting', +- status_code=404) ++ try: ++ self.requests.get(self.URL + '/volumes/nonexisting', ++ status_code=404) ++ except: ++ self.skipTest('Skipped by Ubuntu') + + self.assertRaises(exception.VolumeNotFound, self.api.get, self.context, + 'nonexisting') + + def test_volume_with_image_metadata(self): + v = self.stub_volume(id='1234', volume_image_metadata=_image_metadata) +- self.requests.get(self.URL + '/volumes/5678', json={'volume': v}) ++ try: ++ self.requests.get(self.URL + '/volumes/5678', json={'volume': v}) ++ except: ++ self.skipTest('Environment not setup') + volume = self.api.get(self.context, '5678') + self.assertIn('volume_image_metadata', volume) + self.assertEqual(_image_metadata, volume['volume_image_metadata']) diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/skip-ubuntu-tests.patch b/openstack/debian/openstack-nova/liberty/debian/patches/skip-ubuntu-tests.patch new file mode 100644 index 000000000..b9dde8098 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/skip-ubuntu-tests.patch @@ -0,0 +1,68 @@ +--- a/nova/tests/unit/compute/test_claims.py ++++ b/nova/tests/unit/compute/test_claims.py +@@ -177,18 +177,24 @@ class ClaimTestCase(test.NoDBTestCase): + + def test_disk_insufficient(self, mock_get): + limits = {'disk_gb': 45} +- self.assertRaisesRegex( +- exception.ComputeResourcesUnavailable, +- "disk", +- self._claim, limits=limits, root_gb=10, ephemeral_gb=40) ++ try: ++ self.assertRaisesRegex( ++ exception.ComputeResourcesUnavailable, ++ "disk", ++ self._claim, limits=limits, root_gb=10, ephemeral_gb=40) ++ except: ++ self.skipTest('Skipped by Ubuntu') + + def test_disk_and_memory_insufficient(self, mock_get): + limits = {'disk_gb': 45, 'memory_mb': 8192} +- self.assertRaisesRegex( +- exception.ComputeResourcesUnavailable, +- "memory.*disk", +- self._claim, limits=limits, root_gb=10, ephemeral_gb=40, +- memory_mb=16384) ++ try: ++ self.assertRaisesRegex( ++ exception.ComputeResourcesUnavailable, ++ "memory.*disk", ++ self._claim, limits=limits, root_gb=10, ephemeral_gb=40, ++ memory_mb=16384) ++ except: ++ self.skipTest('Skipped by Ubuntu') + + @pci_fakes.patch_pci_whitelist + def test_pci_pass(self, mock_get): +--- a/nova/tests/unit/objects/test_objects.py ++++ b/nova/tests/unit/objects/test_objects.py +@@ -457,8 +457,11 @@ class _TestObject(object): + class Foo(base.NovaObject): + fields = {'foobar': fields.IntegerField()} + obj = Foo() +- with self.assertRaisesRegex(NotImplementedError, ".*foobar.*"): +- obj.foobar ++ try: ++ with self.assertRaisesRegex(NotImplementedError, ".*foobar.*"): ++ obj.foobar ++ except: ++ self.skipTest('Skipped by Ubuntu') + + def test_loaded_in_primitive(self): + obj = MyObj(foo=1) +--- a/nova/tests/unit/test_wsgi.py ++++ b/nova/tests/unit/test_wsgi.py +@@ -327,8 +327,11 @@ class TestWSGIServerWithSSL(test.NoDBTes + + server.start() + +- response = requests.get('https://[::1]:%d/' % server.port, +- verify=os.path.join(SSL_CERT_DIR, 'ca.crt')) ++ try: ++ response = requests.get('https://[::1]:%d/' % server.port, ++ verify=os.path.join(SSL_CERT_DIR, 'ca.crt')) ++ except: ++ self.skipTest('Skipped by Ubuntu') + self.assertEqual(greetings, response.text) + + server.stop() diff --git a/openstack/debian/openstack-nova/liberty/debian/patches/update-run-tests.patch b/openstack/debian/openstack-nova/liberty/debian/patches/update-run-tests.patch new file mode 100644 index 000000000..ce6a31c57 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/patches/update-run-tests.patch @@ -0,0 +1,22 @@ +Description: Update run_tests.sh to show results. +Author: Chuck Short +Forwarded: not-needed + +--- a/run_tests.sh ++++ b/run_tests.sh +@@ -140,14 +140,7 @@ function run_tests { + ${wrapper} python setup.py egg_info + fi + echo "Running \`${wrapper} $TESTRTESTS\`" +- if ${wrapper} which subunit-2to1 >/dev/null 2>&1 +- then +- # subunit-2to1 is present, testr subunit stream should be in version 2 +- # format. Convert to version one before colorizing. +- bash -c "${wrapper} $TESTRTESTS | ${wrapper} subunit-2to1 | ${wrapper} tools/colorizer.py" +- else +- bash -c "${wrapper} $TESTRTESTS | ${wrapper} tools/colorizer.py" +- fi ++ bash -c "${wrapper} $TESTRTESTS | ${wrapper} subunit2pyunit" + RESULT=$? + set -e + diff --git a/openstack/debian/openstack-nova/liberty/debian/pycompat b/openstack/debian/openstack-nova/liberty/debian/pycompat new file mode 100644 index 000000000..0cfbf0888 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/pycompat @@ -0,0 +1 @@ +2 diff --git a/openstack/debian/openstack-nova/liberty/debian/pydist-overrides b/openstack/debian/openstack-nova/liberty/debian/pydist-overrides new file mode 100644 index 000000000..50f4f95bf --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/pydist-overrides @@ -0,0 +1,5 @@ +coverage +setuptools-git +babel +websockify +wsgiref diff --git a/openstack/debian/openstack-nova/liberty/debian/python-nova.install b/openstack/debian/openstack-nova/liberty/debian/python-nova.install new file mode 100644 index 000000000..f451f8864 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/python-nova.install @@ -0,0 +1,2 @@ +debian/source_nova.py /usr/share/apport/package-hooks/ +usr/lib/python*/dist-packages/* diff --git a/openstack/debian/openstack-nova/liberty/debian/rules b/openstack/debian/openstack-nova/liberty/debian/rules new file mode 100755 index 000000000..58604cf4d --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/rules @@ -0,0 +1,85 @@ +#!/usr/bin/make -f + +# Verbose mode +#export DH_VERBOSE=1 + +export SB_TOP := $(shell pwd | sed -re "s/(.*)\/build\/openstack\/(.*)/\1/") +export BUILDDIR:= ${SB_TOP}/build/openstack/nova + +DEBVERS ?= $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p') +VERSION := $(shell dpkg-parsechangelog | sed -rne 's,^Version: ([0-9]:)*([^-]+).*,\2,p') +export OSLO_PACKAGE_VERSION=$(VERSION) +DEB_BUILD_OPTIONS += nodocs nocheck + +BUILDTAG = +ifdef TAG +BUILDTAG = $(TAG) +else +BUILDTAG = $(BUILDTIME) +endif + +%: + dh $@ --with python2 + +override_dh_auto_clean: + dh_auto_clean + rm -rf doc/build/* doc/source/api doc/.autogenerated + rm -rf tests.sqlite clean.sqlite run_tests.log + rm -rf CA + rm -f po/nova.pot + rm -rf .autogenerated + +override_dh_auto_build: + sed -i 's,BUILDTAG,$(BUILDTAG),g' debian/changelog + cd $(BUILDDIR); python setup.py build; python setup.py install -O2 --root $(BUILDDIR)/nova/debian/tmp + dh_auto_build +ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS))) + mkdir -p doc/build/html + mkdir -p doc/build/man + touch $(CURDIR)/doc/build/man/nova-rootwrap.1 + touch $(CURDIR)/doc/build/man/nova-manage.1 + sphinx-build -b man doc/source doc/build/man + sphinx-build -b html doc/source doc/build/html +endif + +get-orig-source: + uscan --verbose --rename --destdir=../build-area + +override_dh_install: + # Fix any api sample template files with broken permissions + find $(CURDIR)/debian/tmp -name *.tpl -exec chmod a-x {} \; + dh_install --fail-missing -Xbin/nova-all + chmod 440 $(CURDIR)/debian/nova-common/etc/sudoers.d/nova_sudoers + install -D -m 644 debian/source_nova.py debian/php5-common/usr/share/apport/package-hooks/source_nova.py + install -D -m 0644 $(CURDIR)/etc/nova/logging_sample.conf $(CURDIR)/debian/nova-common/etc/nova/logging.conf + for hypervisor in qemu kvm xen lxc vmware; do \ + install -D -m 0600 $(CURDIR)/debian/nova-compute-$${hypervisor}.conf $(CURDIR)/debian/nova-compute-$${hypervisor}/etc/nova/nova-compute.conf; \ + done + +override_dh_installdocs: + +override_dh_installman: + +override_dh_fixperms: + dh_fixperms -Xnova_sudoers -Xnova_tgt.conf + rm -f $(CURDIR)/debian/python-nova/usr/share/pyshared/nova/CA/.gitignore + rm -f $(CURDIR)/debian/python-nova/usr/share/pyshared/nova/CA/projects/.gitignore + rm -f $(CURDIR)/debian/python-nova/usr/share/pyshared/nova/CA/reqs/.gitignore + echo $(DEB_BUILD_OPTIONS) + echo $(CURDIR) + +ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) +override_dh_auto_test: + ./run_tests.sh -N -P nova.tests.unit + #testr init && testr run +endif + +override_dh_python2: + dh_python2 --no-guessing-deps + +override_dh_installlogrotate: + dh_installlogrotate + dh_installlogrotate --name=nova-manage + dh_installlogrotate --name=nova-dhcpbridge + +override_dh_installchangelogs: diff --git a/openstack/debian/openstack-nova/liberty/debian/source/format b/openstack/debian/openstack-nova/liberty/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/openstack/debian/openstack-nova/liberty/debian/source_nova.py b/openstack/debian/openstack-nova/liberty/debian/source_nova.py new file mode 100644 index 000000000..cea030f34 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/source_nova.py @@ -0,0 +1,34 @@ +#!/usr/bin/python + +'''openstack Apport interface + +Copyright (C) 2010 Canonical Ltd. +Author: Chuck Short + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2 of the License, or (at your +option) any later version. See http://www.gnu.org/copyleft/gpl.html for +the full text of the license. +''' + +import os +import subprocess +from apport.hookutils import * + +def add_info(report,ui): + response = ui.yesno("The contents of your /etc/nova/nova.conf file " + "may help developers diagnose your bug more " + "quickly. However, it may contain sensitive " + "information. Do you want to include it in your " + "bug report?") + if response == None: # user cancelled + raise StopIteration + + elif response == True: + attach_file(report, '/etc/nova/nova.conf', 'NovaConf') + + attach_related_packages(report, + ['python-nova', 'nova-common', 'nova-compute', 'nova-scheduler', + 'nova-volume', 'nova-api', 'nova-network', 'nova-objectstore', + 'nova-doc', 'nova-cert']) diff --git a/openstack/debian/openstack-nova/liberty/debian/tests/control b/openstack/debian/openstack-nova/liberty/debian/tests/control new file mode 100644 index 000000000..4aa3c250d --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/tests/control @@ -0,0 +1,5 @@ +Tests: nova-compute-daemons nova-daemons nova-clients nova-api python-nova +Depends: nova-compute, nova-conductor, nova-cert, nova-scheduler, nova-novncproxy, + nova-xvpvncproxy, nova-api, nova-network, nova-objectstore, nova-console, + nova-consoleauth, python-nova +Restrictions: needs-root diff --git a/openstack/debian/openstack-nova/liberty/debian/tests/nova-api b/openstack/debian/openstack-nova/liberty/debian/tests/nova-api new file mode 100755 index 000000000..1ec552f58 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/tests/nova-api @@ -0,0 +1,19 @@ +#!/bin/bash +#----------------- +# Testing nova-api +#----------------- +set -e +DAEMONS=('nova-api-metadata' 'nova-api-os-compute' 'nova-api-ec2') + +for daemon in "${DAEMONS[@]}"; do + apt-get install -y $daemon 2>&1 > /dev/null + + if pidof -x $daemon > /dev/null; then + echo "OK" + else + echo "ERROR: ${daemon} IS NOT RUNNING" + exit 1 + fi + + apt-get remove -y $daemon 2>&1 > /dev/null +done diff --git a/openstack/debian/openstack-nova/liberty/debian/tests/nova-clients b/openstack/debian/openstack-nova/liberty/debian/tests/nova-clients new file mode 100755 index 000000000..5d4a60301 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/tests/nova-clients @@ -0,0 +1,14 @@ +#!/bin/bash +#------------------------- +# Testing client utilities +#------------------------- +set -e + +HELP_CLIENTS=('nova-xvpvncproxy' 'nova-api') +for client in "${HELP_CLIENTS[@]}"; do + RET=$($client -h 2>&1 > /dev/null) + + if [[ $RET ]]; then + echo "ERROR, ${client} is not running" + fi +done diff --git a/openstack/debian/openstack-nova/liberty/debian/tests/nova-compute-daemons b/openstack/debian/openstack-nova/liberty/debian/tests/nova-compute-daemons new file mode 100755 index 000000000..38aeb7932 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/tests/nova-compute-daemons @@ -0,0 +1,27 @@ +#!/bin/bash +#--------------------- +# Testing nova-compute +#--------------------- +set -e +DAEMONS=('nova-compute-kvm' 'nova-compute-lxc' 'nova-compute-qemu') + +for daemon in "${DAEMONS[@]}"; do + apt-get install -y nova-compute $daemon 2>&1 + + TIMEOUT=50 + while [ "$TIMEOUT" -gt 0 ]; do + if pidof -x nova-compute > /dev/null; then + echo "OK" + break + fi + TIMEOUT=$((TIMEOUT - 1)) + sleep 0.1 + done + + if [ "$TIMEOUT" -le 0 ]; then + echo "ERROR: NOVA-COMPUTE FOR $daemon IS NOT RUNNING" + exit 1 + fi + + apt-get remove -y $daemon nova-compute 2>&1 +done diff --git a/openstack/debian/openstack-nova/liberty/debian/tests/nova-daemons b/openstack/debian/openstack-nova/liberty/debian/tests/nova-daemons new file mode 100755 index 000000000..248d7a84e --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/tests/nova-daemons @@ -0,0 +1,16 @@ +#!/bin/bash +#--------------------- +# Testing nova-daemons +#--------------------- +set -e +DAEMONS=('nova-conductor' 'nova-cert' 'nova-scheduler' 'nova-network' 'nova-objectstore' \ + 'nova-console' 'nova-consoleauth') + +for daemon in "${DAEMONS[@]}"; do + if pidof -x $daemon > /dev/null; then + echo "OK" + else + echo "ERROR: ${daemon} IS NOT RUNNING" + exit 1 + fi +done diff --git a/openstack/debian/openstack-nova/liberty/debian/tests/python-nova b/openstack/debian/openstack-nova/liberty/debian/tests/python-nova new file mode 100755 index 000000000..878b8e284 --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/tests/python-nova @@ -0,0 +1,14 @@ +#!/bin/bash +#------------------------- +# Testing client utilities +#------------------------- +set -e + +result=$(python `dirname $0`/test_import_nova.py 2>&1) +if [ "$result" ]; then + echo "ERROR: PYTHON-NOVA MODULE CANNOT BE IMPORTED" + exit 1 +else + echo "OK" + exit 0 +fi diff --git a/openstack/debian/openstack-nova/liberty/debian/tests/test_import_nova.py b/openstack/debian/openstack-nova/liberty/debian/tests/test_import_nova.py new file mode 100644 index 000000000..297bd5bab --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/tests/test_import_nova.py @@ -0,0 +1,4 @@ +try: + import nova +except ImportError, e: + print "ERROR IMPORTING MODULE" diff --git a/openstack/debian/openstack-nova/liberty/debian/watch b/openstack/debian/openstack-nova/liberty/debian/watch new file mode 100644 index 000000000..21473ad5a --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts="uversionmangle=s/\.([a-zA-Z])/~$1/;s/%7E/~/;s/\.0b/~b/;s/\.0rc/~rc/" \ + http://tarballs.openstack.org/nova/ nova-(\d.*)\.tar\.gz diff --git a/openstack/debian/openstack-nova/liberty/debian/xen-openvswitch-nova.rules b/openstack/debian/openstack-nova/liberty/debian/xen-openvswitch-nova.rules new file mode 100644 index 000000000..75682fb5a --- /dev/null +++ b/openstack/debian/openstack-nova/liberty/debian/xen-openvswitch-nova.rules @@ -0,0 +1 @@ +SUBSYSTEM=="xen-backend", KERNEL=="vif*", RUN+="/usr/lib/xcp/scripts/ovs_configure_vif_flows.py $env{ACTION} %k all" diff --git a/openstack/debian/openstack-python-neutronclient/liberty/debian/changelog.in b/openstack/debian/openstack-python-neutronclient/liberty/debian/changelog.in new file mode 100644 index 000000000..06afde76b --- /dev/null +++ b/openstack/debian/openstack-python-neutronclient/liberty/debian/changelog.in @@ -0,0 +1,117 @@ +python-neutronclient (1:3.1.0-0ubuntu1~cloud0.2contrail) trusty-liberty; urgency=medium + + * Added 2contrail for contrail openstack python-neutronclient + + -- Atul Moghe Thu, 28 Jan 2016 18:26:34 +0000 + +python-neutronclient (1:3.1.0-0ubuntu1~cloud0) trusty-liberty; urgency=medium + + * New upstream release for the Ubuntu Cloud Archive. + + -- Openstack Ubuntu Testing Bot Fri, 25 Sep 2015 18:26:34 +0000 + +python-neutronclient (1:3.1.0-0ubuntu1) wily; urgency=medium + + * New upstream release. + * d/control: Align dependencies with upstream. + * d/control: Bump minimum version of python-pbr to 1.8. + + -- Corey Bryant Thu, 24 Sep 2015 11:54:09 -0400 + +python-neutronclient (1:2.6.0-1) experimental; urgency=medium + + * Team upload. + * New upstream release: + - d/control: Align dependencies and versions with upstream. + * Bump epoch inline with Ubuntu to support resync. + * Introduce DEP-8 tests from Ubuntu. + + -- James Page Tue, 23 Jun 2015 12:08:44 +0100 + +python-neutronclient (2.4.0-1) unstable; urgency=medium + + * New upstream release. + * Uploading to unstable. + * Fixed (build-)depends for this release. + + -- Thomas Goirand Mon, 16 Mar 2015 18:16:10 +0100 + +python-neutronclient (2.3.6-2) unstable; urgency=medium + + * Increased version of (build-)depends for cliff and six. + + -- Thomas Goirand Tue, 23 Sep 2014 15:19:10 +0800 + +python-neutronclient (2.3.6-1) unstable; urgency=medium + + * New upstream release. + * New (build-)depends for this release (python-mox3, python-oslotest) + + -- Mehdi Abaakouk Fri, 22 Aug 2014 15:43:56 +0200 + +python-neutronclient (2.3.5-1) unstable; urgency=medium + + * New upstream release. + * New (build-)depends for this release. + + -- Thomas Goirand Mon, 28 Jul 2014 18:52:08 +0800 + +python-neutronclient (2.3.4-2) unstable; urgency=low + + * This version of neutronclient needs python-httplib2 >= 0.7.5. Fixed the + (build-)depends accordingly. Also fixed more (build-)depends versions. + (Closes: #744129) + * Runs testr/subunit correctly. + + -- Thomas Goirand Fri, 11 Apr 2014 13:24:11 +0800 + +python-neutronclient (2.3.4-1) unstable; urgency=medium + + * New upstream release. + * Removed fixed-get_auth_info-for-pre-authenticated-clients.patch applied + upstream. + + -- Thomas Goirand Fri, 07 Mar 2014 15:57:07 +0800 + +python-neutronclient (2.3.3-3) unstable; urgency=medium + + * Added fixed-get_auth_info-for-pre-authenticated-clients.patch. + + -- Thomas Goirand Wed, 19 Feb 2014 22:37:12 +0800 + +python-neutronclient (2.3.3-2) unstable; urgency=medium + + * Removes the man page thing which doesn't build in Wheezy. + + -- Thomas Goirand Tue, 28 Jan 2014 09:34:45 +0000 + +python-neutronclient (2.3.3-1) unstable; urgency=medium + + * New upstream release. + * Added --slowest --testr-args='--subunit ' when calling testr. + * Standard-Version: is now 3.9.5. + * Adds the generation of the python-neutronclient man page. + + -- Thomas Goirand Tue, 28 Jan 2014 17:04:05 +0800 + +python-neutronclient (2.3.0-1) unstable; urgency=low + + * New upstream release. + + -- Thomas Goirand Thu, 12 Sep 2013 11:20:06 +0800 + +python-neutronclient (2.2.4-2) unstable; urgency=low + + * Added missing python-pbr build-depends. + * Cleans python_neutronclient.egg-info (package can build twice). + * Fixed debian/copyright (added missing holders). + + -- Thomas Goirand Thu, 25 Jul 2013 17:46:57 +0800 + +python-neutronclient (2.2.4-1) unstable; urgency=low + + * Initial release. + * Note that this is a rename of Quantum into Neutron because of a trademark + problem. + + -- Thomas Goirand Sat, 20 Jul 2013 20:21:03 +0800 diff --git a/openstack/debian/openstack-python-neutronclient/liberty/debian/compat b/openstack/debian/openstack-python-neutronclient/liberty/debian/compat new file mode 100644 index 000000000..ec635144f --- /dev/null +++ b/openstack/debian/openstack-python-neutronclient/liberty/debian/compat @@ -0,0 +1 @@ +9 diff --git a/openstack/debian/openstack-python-neutronclient/liberty/debian/control b/openstack/debian/openstack-python-neutronclient/liberty/debian/control new file mode 100644 index 000000000..b1015e874 --- /dev/null +++ b/openstack/debian/openstack-python-neutronclient/liberty/debian/control @@ -0,0 +1,65 @@ +Source: python-neutronclient +Section: python +Priority: optional +Maintainer: PKG OpenStack +Uploaders: Thomas Goirand +Build-Depends: debhelper (>= 9), + dh-python, + openstack-pkg-tools, + python-all, + python-pbr (>= 1.8), + python-setuptools, + python-sphinx, +Build-Depends-Indep: cliff-tablib (>= 1.0), + python-babel (>= 1.3), + python-cliff (>= 1.14.0), + python-coverage (>= 3.6), + python-fixtures (>= 1.3.1), + python-hacking, + python-iso8601 (>= 0.1.9), + python-keystoneclient (>= 1:1.6.0), + python-mock (>= 1.2), + python-mox3 (>= 0.7.0), + python-oslo.i18n (>= 1.5.0), + python-oslo.serialization (>= 1.4.0), + python-oslo.utils (>= 2.0.0), + python-oslosphinx (>= 2.5.0), + python-oslotest (>= 1.10.0), + python-requests (>= 2.5.2), + python-requests-mock (>= 0.6.0), + python-simplejson (>= 2.2.0), + python-six (>= 1.9.0), + python-tempest-lib (>= 0.8.0), + python-testtools (>= 1.4.0), + subunit (>= 0.0.18), + testrepository (>= 0.0.18), +Standards-Version: 3.9.6 +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-neutronclient.git;a=summary +Vcs-Git: git://anonscm.debian.org/openstack/python-neutronclient.git +Homepage: http://launchpad.net/python-neutronclient +XS-Testsuite: autopkgtest + +Package: python-neutronclient +Architecture: all +Replaces: python-quantumclient, quantum-client +Provides: python-quantumclient +Breaks: python-quantumclient +Depends: python-babel (>= 1.3), + python-cliff (>= 1.14.0), + python-iso8601 (>= 0.1.9), + python-keystoneclient (>= 1:1.6.0), + python-oslo.i18n (>= 1.5.0), + python-oslo.serialization (>= 1.4.0), + python-oslo.utils (>= 2.0.0), + python-requests (>= 2.5.2), + python-simplejson (>= 2.2.0), + python-six (>= 1.9.0), + ${misc:Depends}, + ${python:Depends}, +Description: client API library for Neutron + Neutron provides an API to dynamically request and configure virtual networks. + These networks connect "interfaces" from other OpenStack services (e.g., vNICs + from Nova VMs). The Neutron API supports extensions to provide advanced network + capabilities (e.g., QoS, ACLs, network monitoring, etc). + . + This package provides the client agent. diff --git a/openstack/debian/openstack-python-neutronclient/liberty/debian/copyright b/openstack/debian/openstack-python-neutronclient/liberty/debian/copyright new file mode 100644 index 000000000..3ca1dbc5d --- /dev/null +++ b/openstack/debian/openstack-python-neutronclient/liberty/debian/copyright @@ -0,0 +1,40 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: python-neutronclient +Source: http://github.com/openstack/python-neutronclient + +Files: * +Copyright: 2011 Citrix Systems + 2011, Nicira Networks, Inc. + 2010 OpenStack, LLC + 2001-2010 Twisted Matrix Laboratories. + 2012-2013, OpenStack Foundation + 2011-2013, United States Government + 2011-2013, Administrator of the NASA + 2011-2013, Justin Santa Barbara + 2011-2013, Red Hat, Inc. + 2011-2013, Mirantis Inc. + 2011-2013, Hewlett-Packard Development Company, L.P. + 2011-2013, NEC Corporation + 2011-2013, Yahoo! Inc. +License: Apache-2.0 + +Files: debian/* +Copyright: 2012 Ghe Rivero + 2012-2013, Thomas Goirand +License: Apache-2.0 + +License: Apache-2.0 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + http://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian systems, the complete text of the Apache version 2.0 license + can be found in "/usr/share/common-licenses/Apache-2.0". diff --git a/openstack/debian/openstack-python-neutronclient/liberty/debian/install b/openstack/debian/openstack-python-neutronclient/liberty/debian/install new file mode 100644 index 000000000..1df8958c1 --- /dev/null +++ b/openstack/debian/openstack-python-neutronclient/liberty/debian/install @@ -0,0 +1 @@ +tools/neutron.bash_completion /etc/bash_completion.d diff --git a/openstack/debian/openstack-python-neutronclient/liberty/debian/pydist-overrides b/openstack/debian/openstack-python-neutronclient/liberty/debian/pydist-overrides new file mode 100644 index 000000000..be3176b15 --- /dev/null +++ b/openstack/debian/openstack-python-neutronclient/liberty/debian/pydist-overrides @@ -0,0 +1,2 @@ +netaddr_ python-netaddr + diff --git a/openstack/debian/openstack-python-neutronclient/liberty/debian/rules b/openstack/debian/openstack-python-neutronclient/liberty/debian/rules new file mode 100755 index 000000000..07af0b447 --- /dev/null +++ b/openstack/debian/openstack-python-neutronclient/liberty/debian/rules @@ -0,0 +1,49 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +SPEC_DIR := $(shell pwd) +export SB_TOP := $(shell pwd | sed -re "s/(.*)\/build\/openstack\/(.*)/\1/") +export BUILDDIR:= ${SB_TOP}/build/openstack/python-neutronclient +export _pyver := 2.7 +export python_sitelib := /usr/lib/python$(_pyver)/dist-packages +export _sysconfdir := /etc + +BUILDTAG = +ifdef TAG +BUILDTAG = $(TAG) +else +BUILDTAG = $(BUILDTIME) +endif + + +%: + dh $@ --destdir=${SB_TOP}/build/openstack + +override_dh_auto_build: + cat debian/changelog.in | sed 's,BUILDTAG,$(BUILDTAG),g' > debian/changelog + python setup.py build + +override_dh_auto_install: + install -d -m 777 $(BUILDDIR)$(python_sitelib) + #install -d -m 777 $(BUILDDIR)/usr/bin/ + python setup.py sdist + cd dist; tar xvfz python-neutronclient*.tar.gz; cd python-neutronclient-*; python setup.py install --root=$(BUILDDIR)/debian/python-neutronclient --install-layout=deb + +get-orig-source: + uscan --verbose --force-download --rename --destdir=../build-area +%: + dh $@ --destdir=${SB_TOP}/build/openstack + +%: + dh $@ --with python2 + +get-orig-source: + uscan --verbose --force-download --rename --destdir=../build-area diff --git a/openstack/debian/openstack-python-neutronclient/liberty/debian/source/format b/openstack/debian/openstack-python-neutronclient/liberty/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/openstack/debian/openstack-python-neutronclient/liberty/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/openstack/debian/openstack-python-neutronclient/liberty/debian/watch b/openstack/debian/openstack-python-neutronclient/liberty/debian/watch new file mode 100644 index 000000000..79b9d7b61 --- /dev/null +++ b/openstack/debian/openstack-python-neutronclient/liberty/debian/watch @@ -0,0 +1,5 @@ +version=3 +# Since we use EPOC, and we want to move away 2012.x, we use +# uversionmangle... +opts="uversionmangle=s/^2012/0.0./" \ +https://github.com/openstack/python-neutronclient/tags .*/(\d[\d\.]+)\.tar\.gz diff --git a/tools/ansible/auto/contrail-tools/config-ansible b/tools/ansible/auto/contrail-tools/config-ansible deleted file mode 120000 index 91f54dfa8..000000000 --- a/tools/ansible/auto/contrail-tools/config-ansible +++ /dev/null @@ -1 +0,0 @@ -/mnt/ssd-tools/bin/config-ansible \ No newline at end of file diff --git a/tools/ansible/auto/contrail-tools/contrail-build b/tools/ansible/auto/contrail-tools/contrail-build deleted file mode 120000 index 31a0c39dd..000000000 --- a/tools/ansible/auto/contrail-tools/contrail-build +++ /dev/null @@ -1 +0,0 @@ -/mnt/ssd-tools/bin/contrail-build \ No newline at end of file diff --git a/tools/ansible/auto/contrail-tools/contrail-create-buildarchive b/tools/ansible/auto/contrail-tools/contrail-create-buildarchive deleted file mode 120000 index 6c0eeb9c9..000000000 --- a/tools/ansible/auto/contrail-tools/contrail-create-buildarchive +++ /dev/null @@ -1 +0,0 @@ -/mnt/ssd-tools/bin/contrail-create-buildarchive \ No newline at end of file diff --git a/tools/ansible/auto/contrail-tools/contrail-manipulate-manifest b/tools/ansible/auto/contrail-tools/contrail-manipulate-manifest deleted file mode 120000 index 7e63d64e8..000000000 --- a/tools/ansible/auto/contrail-tools/contrail-manipulate-manifest +++ /dev/null @@ -1 +0,0 @@ -/mnt/ssd-tools/bin/contrail-manipulate-manifest \ No newline at end of file diff --git a/tools/ansible/auto/contrail-tools/create-base-manifest b/tools/ansible/auto/contrail-tools/create-base-manifest deleted file mode 120000 index fd95b06e8..000000000 --- a/tools/ansible/auto/contrail-tools/create-base-manifest +++ /dev/null @@ -1 +0,0 @@ -/mnt/ssd-tools/bin/create-base-manifest \ No newline at end of file diff --git a/tools/ansible/auto/contrail-tools/create-config b/tools/ansible/auto/contrail-tools/create-config deleted file mode 120000 index 03fab8923..000000000 --- a/tools/ansible/auto/contrail-tools/create-config +++ /dev/null @@ -1 +0,0 @@ -/mnt/ssd-tools/bin/create-config \ No newline at end of file diff --git a/tools/ansible/auto/contrail-tools/fix-manifest.py b/tools/ansible/auto/contrail-tools/fix-manifest.py deleted file mode 120000 index 486b4fd4c..000000000 --- a/tools/ansible/auto/contrail-tools/fix-manifest.py +++ /dev/null @@ -1 +0,0 @@ -/mnt/ssd-tools/bin/fix-manifest.py \ No newline at end of file diff --git a/tools/ansible/auto/contrail-tools/merge-manifest b/tools/ansible/auto/contrail-tools/merge-manifest deleted file mode 120000 index 613af9528..000000000 --- a/tools/ansible/auto/contrail-tools/merge-manifest +++ /dev/null @@ -1 +0,0 @@ -/mnt/ssd-tools/bin/merge-manifest \ No newline at end of file diff --git a/tools/scripts/contrail-archive b/tools/scripts/contrail-archive deleted file mode 100755 index 53cfe8b16..000000000 --- a/tools/scripts/contrail-archive +++ /dev/null @@ -1,272 +0,0 @@ -#!/usr/bin/python - -import argparse -import os -import sys -import glob -import shlex -import subprocess - -archiveBaseDir = "/volume/contrail/" - -class ContrailArchive(object): - """ contrailBuild class to parse and execute the build commands """ - - def __init__(self, options): - global manifestRealPath - self.opt = options - if not self.opt.build_num: - print 'Error: Need a build number to archive' - sys.exit(1) - if not self.opt.branch_name: - print 'Error: Need a branch to archive' - sys.exit(1) - - require_arch = ''' - centos64_os - centos65 - ubuntu-12-04 - ubuntu-14-04 - redhat70 - '''.split() - if not self.opt.arch_type in require_arch: - print 'Error: Only ' + ', '.join(require_arch) + ' are currently supported' - sys.exit(1) - - if not os.path.exists(".repo"): - path = str(self.opt.sandbox_name) - path += '/.repo' - if not os.path.exists(path): - print 'Error cannot find sandbox' - sys.exit(1) - os.chdir (self.opt.sandbox_name) - - - """ - Add Checking for Path to the archive directory - """ - archivePath = archiveBaseDir + self.opt.branch_name + "/" + self.opt.build_num + "/" - archivePath += self.opt.arch_type + "/" + self.opt.sku_name - - if not os.path.exists(archivePath): - print "Error: Can't find build archive path: %s" % archivePath - sys.exit(1) - self.opt.archive_path = archivePath - - def archive(self): - """ - Now finish up with the repo sync command - """ - if DEBUG: - print 'Archive got called' - - - """ - Copy the sandbox to the archive. - """ - print "Archiving build to: %s" % self.opt.archive_path - - pkg_repo = "store/" + self.opt.build_num + "/pkg_repo" - if os.path.isdir(pkg_repo): - command = "rm -rf " + pkg_repo - execute(command, ignore_errors=True) - - sandbox_path = os.getcwd() - - if not os.path.isdir ("build-info"): - os.mkdir ("build-info") - - command = "cp third_party/packages.xml build-info/third_party_packages.xml" - execute (command, ignore_errors=False) - command = "cp distro/third_party/packages.xml build-info/distro_packages.xml" - execute(command, ignore_errors=False) - csshared = "/volume/junosv-storage01/contrail/build/" + self.opt.arch_type + "/" + self.opt.sku_name + "/ivy.xml" - if os.path.isfile(csshared): - command = "cp " + csshared + " build-info" - execute(command, ignore_errors=False) - - command = "tar czf catalog.tgz build-info" - execute (command, ignore_errors=False) - - # command = "rm -rf build-info" - # execute(command, ignore_errors=False) - - path = self.opt.archive_path + "/build-info" - # os.mkdir (path) - - command = "cp catalog.tgz " + path - execute(command, ignore_errors=False) - - - # No longer have to make this diretory - # os.mkdir (self.opt.archive_path + "/artifacts") - store_path = sandbox_path + "/build" - os.chdir(store_path) - for files in glob.iglob("artifacts*"): - command = "cp -r " + files + " " + self.opt.archive_path - execute(command, ignore_errors=False) - os.chdir (sandbox_path) - - """ - Copy the sandbox - """ - - print "Copying the Sandbox" - path = self.opt.archive_path + "/store" - os.mkdir (path) - path = self.opt.archive_path + "/store/sandbox" - os.mkdir (path) - os.chdir (sandbox_path) - command = "cp -r . " + path - execute(command, ignore_errors=False) - - """ - Fix up the archive - """ - print "Fixing up the archive" - os.chdir (self.opt.archive_path + "/artifacts") - - # add link to storage package with os name - for files in glob.iglob("contrail-storage-packages*"): - newfilename = self.opt.arch_type + files.split('~')[-1] - newfilename = "~".join([files.split('~')[0], newfilename]) - command = "ln -s %s %s" % (files, newfilename) - execute(command, ignore_errors=False) - - # add link to server manager package with os name - for files in glob.iglob("contrail-server-manager-installer*"): - newfilename = self.opt.arch_type + files.split('~')[-1] - newfilename = "~".join([files.split('~')[0], newfilename]) - command = "ln -s %s %s" % (files, newfilename) - execute(command, ignore_errors=False) - - for files in glob.iglob("contrail-install*"): - newfilename = self.opt.arch_type + files.split('~')[-1] - newfilename = "~".join([files.split('~')[0], newfilename]) - command = "cp " + files + " .." - execute(command, ignore_errors=False) - command = "rm " + files - execute(command, ignore_errors=False) - command = "ln -s %s %s" % (os.path.join('..', files), newfilename) - execute(command, ignore_errors=False) - - for files in glob.iglob("*.iso"): - command = "cp " + files + " .." - execute(command, ignore_errors=False) - command = "rm " + files - execute(command, ignore_errors=False) - - - - """ - Creating links to binaries - """ - - path = self.opt.archive_path + "/store" - os.chdir (path) - os.mkdir ("binaries") - os.chdir ("binaries") - lnk_binaries = [ - ["../sandbox/build/debug/control-node/contrail-control", "contrail-control"], - ["../sandbox/build/debug/dns/contrail-dns", "contrail-dns"], - ["../sandbox/build/debug/dns/dnsd", "dnsd"], - ["../sandbox/build/debug/query_engine/qed", "qed"], - ["../sandbox/build/debug/analytics/vizd", "vizd"], - ["../sandbox/vrouter/vrouter.ko", "vrouter.ko"], - ["../sandbox/build/production/vnsw/agent/ovs_tor_agent/contrail-tor-agent", "contrail-tor-agent"] - ] - for (path, link) in lnk_binaries: - if os.path.isfile(path): - os.symlink (path, link) - - # On Ubuntu, we find the packaged c-v-a in the build//packages dir, but on CentOS - # and RedHat, the packages dir is different, and it's been removed by the time - # we get here. So we use the original c-v-a exe that went into CentOS/RedHat pkg - vrouter_agent = [ - "../sandbox/build/packages/contrail/usr/bin/contrail-vrouter-agent", # Ubuntu - "../sandbox/build/debug/vnsw/agent/contrail/contrail-vrouter-agent" # CentOS/RedHat - ] - - if os.path.isfile(vrouter_agent[0]): - os.symlink (vrouter_agent[0], "contrail-vrouter-agent") - elif os.path.isfile(vrouter_agent[1]): - os.symlink (vrouter_agent[1], "contrail-vrouter-agent") - else: - print 'Warning : Could not symlink contrail-vrouter-agent executable, skipping' - - -def execute(command, ignore_errors=False): - """ Function to execute shell command and return the output """ - - if DEBUG: - print 'DEBUG: %s' % (command) - pipe = subprocess.Popen(shlex.split(command), - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - close_fds=True) - - data = pipe.stdout.read() - rc = pipe.wait() - cwd = os.getcwd() - if rc and not ignore_errors: - print 'Error : Working directory : %s' % (cwd) - print 'Error : Failed to execute command: %s\n%s' % (command, data) - sys.exit(1) - return data.strip() - -def cmd_exists(cmd): - return subprocess.call("type " + cmd, shell=True, - stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0 - - -def parse_options(args): - """ Parse command line arguments """ - parser = argparse.ArgumentParser(description='Contrail build wrapper script ') - - parser.add_argument('-v', '--verbose', dest='debug', action='store_true', - help='Enable verbose mode') - - parser.add_argument('-s', '--sandbox', nargs='?', dest='sandbox_name', - default='sandbox', - help='New directory name for the sandbox, default : %(default)s') - - parser.add_argument('-n', '--number', dest='build_num', - help='Build number to get manifest from') - - parser.add_argument('-b', '--branch', nargs='?', dest='branch_name', - default='mainline', - help='Branch to use to fetch manifest file') - - parser.add_argument('-k', '--sku', nargs='?', dest='sku_name', - default='grizzly', - help='Tag to use when creating packages') - - parser.add_argument('-a', '--arch', nargs='?', dest='arch_type', - default='centos64_os', - help='Branch to use to fetch manifest file') - - subparsers = parser.add_subparsers(title='ContrailBuild Commands', - description='Select one command', - dest='command') - - parser_archive = subparsers.add_parser('archive', - description='Archives sandbox') - opt = parser.parse_args(args) - return opt - - -if __name__ == '__main__': - options = parse_options(sys.argv[1:]) - DEBUG = options.debug - build = ContrailArchive(options) - - """ Test to make sure all our commands exist """ - - - - if build.opt.command == 'archive': - build.archive() - sys.exit(0) - - print "Unknown architecture: ", build.opt.arch_type - sys.exit(1) diff --git a/tools/scripts/contrail-build b/tools/scripts/contrail-build index 21b2a0fdc..e868d2a14 100755 --- a/tools/scripts/contrail-build +++ b/tools/scripts/contrail-build @@ -31,9 +31,19 @@ class ContrailBuild(object): if self.opt.manifest_file: manifest_real_path = os.path.realpath(self.opt.manifest_file) - require_arch = ["centos64_os", "ubuntu-12-04", "xen6.2SP1_os", "centos65", "redhat70", "ubuntu-14-04" ] + require_arch = ''' + centos64_os + centos65 + centos71 + redhat70 + ubuntu-12-04 + ubuntu-14-04 + vcenter-plugin + xen6.2SP1_os + '''.split() + if not self.opt.arch_type in require_arch: - print 'Error: Only centos64_os, ubuntu-12-04, centos65, redhat70, ubuntu-14-04, and xen6.2.SP1 are currently supported' + print 'Error: Only ' + ', '.join(require_arch) + ' are currently supported' sys.exit(1) """ Make sure we are in sandbox """ @@ -110,9 +120,6 @@ class ContrailBuild(object): execute("repo sync", f, ignore_errors=False) f.close() - - - def build(self): if DEBUG: print 'build got called' @@ -122,28 +129,72 @@ class ContrailBuild(object): f = open("fetch.log", mode='w') + # If we are building for vcenter, 3rd party dirs do not exist, + # so the below is safe. But let everyone know. + if os.path.isdir ("third_party"): command = self.opt.python + " third_party/fetch_packages.py" execute (command, f, ignore_errors=False) - + else: + f.write("Info: No third_party/ dir, not running fetch_patches") if os.path.isdir ("distro"): command = self.opt.python + " distro/third_party/fetch_packages.py" execute (command, f, ignore_errors=False) + else: + f.write("Info: No distro/ dir, not running fetch_patches") if os.path.isdir ("contrail-webui-third-party"): command = self.opt.python + " contrail-webui-third-party/fetch_packages.py" execute (command, f, ignore_errors=False) + else: + f.write("Info: No contrail-webui-third-party/ dir, not running fetch_patches") f.close() print "Running top level build" print "Log is build.log" - f = open("build.log", mode='w') - execute("scons", f, ignore_errors=False) - f.close() - + # Preference given to scons build + if os.path.isfile("SConstruct"): + print "Found SConstruct for scons-based build" + # The first scons does production build, the second one is needed + # so that we have debug symbols. + # cmd = "scons --opt=production" + # f = open("build.log", mode='w') + # execute(cmd, f, ignore_errors=False) + # f.close() + + cmd = "scons" + # f = open("build-debug.log", mode='w') + f = open("build.log", mode='w') + execute(cmd, f, ignore_errors=False) + f.close() + + # Build and bgp_stress_test on ubuntu14 + platform = os.getenv('BUILD_PLATFORM') + if platform and platform == "ubuntu-14-04": + print "Info: building bgp_stress_test... " + os.putenv('NO_HEAPCHECK','TRUE') + cmd = "scons -iu src/bgp:bgp_stress_test" + f = open("bgp_stress_test-debug.log", mode='w') + execute(cmd, f, ignore_errors=True) + f.close() + cmd = "scons --opt=production -iu src/bgp:bgp_stress_test" + f = open("bgp_stress_test-production.log", mode='w') + execute(cmd, f, ignore_errors=True) + f.close() + os.unsetenv('NO_HEAPCHECK') + + elif os.path.isfile("Makefile"): + print "Found Makefile for make-based build" + if not self.opt.build_num: + self.opt.build_num = execute("date +%F-%R", ignore_errors=False) + cmd = "make BUILDNUM=%s all" % self.opt.build_num + + f = open("build.log", mode='w') + execute(cmd, f, ignore_errors=False) + f.close() def package(self): if DEBUG: @@ -203,6 +254,14 @@ class ContrailBuild(object): execute(command, f, ignore_errors=False) f.close() + # The packager will create copies of .tgz's in $SB/store, which + # is not an efficient use of disk space. To save disk space + # on archive storage, let's make these hard links + artifacts_dir = os.path.join(current_dir, "build", "artifacts") + os.chdir(os.path.join(current_dir, "store")) + for f in glob.glob('*.tgz'): + os.remove(f) + os.link(os.path.join(artifacts_dir,f), f) def execute(command, output, ignore_errors=False): """ Function to execute shell command and return the output """ @@ -279,7 +338,7 @@ def parse_options(args): help='Branch to use to fetch manifest file') parser.add_argument('-d', '--dir', nargs='?', dest='dir_name', - default='/volume/junosv-storage01/contrail/', + default='/volume/contrail/', help='Base directory to search for archived daily builds') parser.add_argument('-k', '--sku', nargs='?', dest='sku_name', diff --git a/tools/scripts/contrail-create-buildarchive b/tools/scripts/contrail-create-buildarchive deleted file mode 100755 index 2433982d9..000000000 --- a/tools/scripts/contrail-create-buildarchive +++ /dev/null @@ -1,186 +0,0 @@ -#!/usr/bin/python - -""" -Copyright (c) 2013, Juniper Networks, Inc. -All rights reserved. -Author : Michael Ganley - -Figure out what to build. -""" -import argparse -from operator import index -import os -import re -import sys -import shlex -import subprocess -import shutil - -version = 1.3 - -class buildDir (object): - def __init__(self, options): - self.opt = options - - def parse(self): - # Walk through directories looking for manifest files - - if DEBUG: - print self.opt.path_name - os.chdir (self.opt.path_name) - f = open ('Build-Branch', 'r') - - - branch = f.readline() - if branch: - self.opt.builds = [] - - while branch: - branch = chomp(branch) - - if DEBUG: - print branch - files = [os.path.join(dirpath, filename) - for (dirpath, dirs, files) in os.walk(branch) - for filename in (dirs + files)] - test = re.compile("\.xml", re.IGNORECASE) - newfiles = filter(test.search, files) - searchfiles = list (newfiles) - for m in searchfiles: - command = "grep NO-BUILD " + m - result = execute(command, ignore_errors=True) - if result: - newfiles.remove(m) - - if newfiles: - self.opt.builds.append([branch, newfiles]) - if DEBUG: - print "XML files" - print self.opt.builds - - branch = f.readline() - - - def makeArchive(self): - - if DEBUG: - print "Going to make the archive" - for i in self.opt.builds: - branch = i[0] - - command = "ectool incrementProperty /projects/Contrail-CI-CD/BUILD-" + branch + " 1" - buildId = execute(command, ignore_errors=True) - if not buildId.isdigit(): - if buildId.find("NoSuchProperty") > 0: - buildId = 100 - command = "ectool setProperty /projects/Contrail-CI-CD/Build-" + branch + " --value 100" - execute(command, ignore_errors=True) - else: - print "Got bad response when looking for Build ID: ", buildId - sys.exit(1) - - if DEBUG: - print "Found branch" , branch - print "Build number", buildId - # Create base manifest so we can do the compare - # First create the build directory - command = "mkdir -p " + self.opt.archive_name + '/' + str(branch) + '/' + str(buildId) - execute(command, ignore_errors=False) - - base = self.opt.archive_name + '/' + str(branch) + '/' + buildId + "/manifest-base-info-only.xml" - command = "create-base-manifest -m " + base + " -s " + i[1][0] + " create" - execute(command, ignore_errors=False) - - # Now step through all the manifest files, create the directories - # and do the merge - for j in i[1]: - if DEBUG: - print "manifest file working on: ", j - foo = os.path.split(j) - sku = foo[1][9:-4] - foo = os.path.split(foo[0]) - platform = foo[1] - targetDir = self.opt.archive_name + '/' + str(branch) + '/' + buildId + '/' + platform + '/' + sku - command = "mkdir -p " + targetDir - execute(command, ignore_errors=False) - - # Create the manifest in that directory - - command = "create-base-manifest -m " + base + " -s " + j + " -o " + targetDir + "/manifest.xml merge" - execute (command, ignore_errors=False) - print "Going to kick off builds for this branch:", branch - command = "ectool runProcedure Contrail-CI-CD --procedureName FindBuilds " \ - "--actualParameter branch=" + branch - execute(command, ignore_errors=False) - -def chomp(s): - return s[:-1] if s.endswith('\n') else s - - -def execute(command, ignore_errors=False): - """ Function to execute shell command and return the output """ - - if DEBUG: - print 'DEBUG: %s' % (command) - pipe = subprocess.Popen(shlex.split(command), - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - close_fds=True) - - data = pipe.stdout.read() - rc = pipe.wait() - cwd = os.getcwd() - if rc and not ignore_errors: - print 'Error : Working directory : %s' % (cwd) - print 'Error : Failed to execute command: %s\n%s' % (command, data) - sys.exit(1) - return data.strip() - -def cmd_exists(cmd): - return subprocess.call("type " + cmd, shell=True, - stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0 - - -def parse_options(args): - """ Parse command line arguments """ - parser = argparse.ArgumentParser(description='Contrail Create Build Archive script ') - - parser.add_argument('-v', '--verbose', dest='debug', action='store_true', - help='Enable verbose mode') - - parser.add_argument('-p', '--path', dest='path_name', - help="Full path to the manifest directory") - - parser.add_argument('-a', '--archive', nargs= '?', dest='archive_name', - default='/volume/junosv-storage01/contrail', - help="Full path to the manifest directory") - - subparsers = parser.add_subparsers(title='Fire off EC jobs based on the path to manifest file', - description='Select one command', - dest='command') - - parser_parse = subparsers.add_parser('parse', - description='parse and execute build for manifest') - opt = parser.parse_args(args) - return opt - - -if __name__ == '__main__': - print "Version: %s" % version - options = parse_options(sys.argv[1:]) - DEBUG = options.debug - - build = buildDir(options) - - # Test to make sure all our commands exist - - if build.opt.command == 'parse': - build.parse() - build.makeArchive() - sys.exit(0) - - print "Unknown command: ", build.opt.command - sys.exit(1) - - - diff --git a/tools/scripts/contrail-manipulate-manifest b/tools/scripts/contrail-manipulate-manifest deleted file mode 100755 index 838d263b1..000000000 --- a/tools/scripts/contrail-manipulate-manifest +++ /dev/null @@ -1,139 +0,0 @@ -#!/usr/bin/python - -""" -Copyright (c) 2013, Juniper Networks, Inc. -All rights reserved. -Author : Michael Ganley - -manipulate paths to xml files. -""" -import argparse -from operator import index -import os -import sys -import shlex -import subprocess -import shutil - - - -class manifestDir (object): - def __init__(self, options): - self.opt = options - - def parse (self): - foo = os.path.split(self.opt.path_name) - - if DEBUG: - print "manifest filename: ", foo[1] - foo = os.path.split(foo[0]) - self.opt.sku = foo[1] - if DEBUG: - print "sku: ", self.opt.sku - - foo = os.path.split(foo[0]) - self.opt.product = foo[1] - if DEBUG: - print "product: ", self.opt.product - - """ - Because when the find runs it pass the '.' - we have to skip over it. - """ - foo = os.path.split(foo[0]) - foo = os.path.split(foo[0]) - self.opt.buildid=foo[1] - if DEBUG: - print "Build ID: ", self.opt.buildid - - foo = os.path.split(foo[0]) - self.opt.branch = foo[1] - if DEBUG: - print "Branch: ", self.opt.branch - - def fireProcedure (self): - - if DEBUG: - print "Going to execute procedure" - command = "ectool runProcedure Contrail-CI-CD --procedureName Foo " \ - "--actualParameter branch=" + self.opt.branch + \ - " Platform=" + self.opt.product + \ - " sku=" + self.opt.sku + \ - " BuildId=" + self.opt.buildid - - else: - command = "ectool runProcedure Contrail-CI-CD --procedureName PipeLine " \ - "--actualParameter branch=" + self.opt.branch + \ - " Platform=" + self.opt.product + \ - " sku=" + self.opt.sku + \ - " BuildId=" + self.opt.buildid - - if DEBUG: - print "executing following command:\n", command - - execute(command, ignore_errors=False) - - -def execute(command, ignore_errors=False): - """ Function to execute shell command and return the output """ - - if DEBUG: - print 'DEBUG: %s' % (command) - pipe = subprocess.Popen(shlex.split(command), - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - close_fds=True) - - data = pipe.stdout.read() - rc = pipe.wait() - cwd = os.getcwd() - if rc and not ignore_errors: - print 'Error : Working directory : %s' % (cwd) - print 'Error : Failed to execute command: %s\n%s' % (command, data) - sys.exit(1) - return data.strip() - -def cmd_exists(cmd): - return subprocess.call("type " + cmd, shell=True, - stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0 - - -def parse_options(args): - """ Parse command line arguments """ - parser = argparse.ArgumentParser(description='Contrail/EC procedure wrapper script ') - - parser.add_argument('-v', '--verbose', dest='debug', action='store_true', - help='Enable verbose mode') - - parser.add_argument('-p', '--path', dest='path_name', - help="Full path to the manifest file") - - subparsers = parser.add_subparsers(title='Fire off EC jobs based on the path to manifest file', - description='Select one command', - dest='command') - - parser_parse = subparsers.add_parser('parse', - description='parse and execute build for manifest') - opt = parser.parse_args(args) - return opt - - -if __name__ == '__main__': - options = parse_options(sys.argv[1:]) - DEBUG = options.debug - manifest = manifestDir(options) - - """ Test to make sure all our commands exist """ - - - - if manifest.opt.command == 'parse': - manifest.parse() - manifest.fireProcedure() - sys.exit(0) - - print "Unknown command: ", manifest.opt.command - sys.exit(1) - - - diff --git a/tools/scripts/create-base-manifest b/tools/scripts/create-base-manifest deleted file mode 100755 index 475127a06..000000000 --- a/tools/scripts/create-base-manifest +++ /dev/null @@ -1,237 +0,0 @@ -#!/usr/bin/python - - - -import argparse -import os -import sys -import socket -import shlex -import subprocess -import shutil -import github -from lxml import etree as ET -from copy import deepcopy -import re -import base64 - - -class ManifestBase(object): - def __init__(self, options): - self.opt = options - - if DEBUG: - print "init called" - - if self.opt.command == 'merge': - if not os.path.isfile(self.opt.merge_file): - print "Error: Can't find manifest file %s" % self.opt.merge_file - sys.exit(1) - - # REPLACE WITH YOUR USER ID AND KEY - self.opt.github = github.Github('mganley', '83236c3a4678abeda0cf2235552cac8a6b75ab9f') - - def create(self): - - - source = ET.parse(self.opt.source_file).getroot() - - for demo in source.iter('project'): - reponame = demo.get('name') - remote = demo.get('remote') - dbranch = demo.get('revision') - if DEBUG: - print reponame, remote - - if not (dbranch and len(dbranch) == 40 and re.match("^[a-f0-9]+$", str(dbranch))): - if remote == 'github': - if dbranch: - demo.set('branch', dbranch) - else: - demo.set('branch', self.opt.branch) - if DEBUG: - print "repo not in build repo going to get hash " - print reponame - repo = self.opt.github.get_user(login='Juniper').get_repo(name=reponame) - if (dbranch): - githubBranch = repo.get_branch(branch=dbranch) - commits = githubBranch.commit - else: - commits = repo.get_commits()[0] - demo.set('revision', commits.sha) - else: - source.remove(demo) - else: - if DEBUG: - print reponame - print "found git commit hash as revision " - return source - - def merge(self): - source = ET.parse(self.opt.merge_file).getroot() - target = ET.parse(self.opt.source_file).getroot() - - changed_merge_file = '0' - for demo in target.iter('project'): - reponame = demo.get('name') - remote = demo.get('remote') - target_branch = demo.get('revision') - if DEBUG: - print reponame, target_branch, remote - - if not (target_branch and len(target_branch) == 40 and re.match("^[a-f0-9]+$", str(target_branch))): - found = 0 - for item in source.iter('project'): - if reponame == item.get('name'): - revhash = item.get('revision') - branch = item.get('branch') - if target_branch: - if target_branch == branch: - found = 1 - if DEBUG: - print "Target branch matches previous merged manifest", revhash - demo.set('revision', revhash) - else: - if branch == 'master': - found = 1 - if DEBUG: - print "No Branch specified and base was using master so set hash" - demo.set('revision', revhash) - break - - if not found: - if remote == 'github': - if DEBUG: - print "repo not in build repo going to get hash " - print reponame, target_branch - repo = self.opt.github.get_user(login='Juniper').get_repo(name=reponame) - if (target_branch): - githubBranch = repo.get_branch(branch=target_branch) - commits = githubBranch.commit - else: - commits = repo.get_commits()[0] - if DEBUG: - print "going to set sha", commits.sha - - demo.set('revision', commits.sha) - - """ Also have to add this entry to the base manifest""" - temp = deepcopy(demo) - if DEBUG: - print "Current record we are on:", source - if not target_branch: - temp.set('branch', 'master') - else: - temp.set('branch', target_branch) - - changed_merge_file = '1' - where = 10 - source.insert(where, temp) - - if DEBUG: - print "Should be writing out new base manifest." - else: - if DEBUG: - print reponame - print "found git commit hash as revision " - - if changed_merge_file: - if DEBUG: - print "Write out new version of base file" - print ET.tostring(source, pretty_print=True) - tree = ET.ElementTree(source) - tree.write(manifest.opt.merge_file) - - return target - - -def execute(command, ignore_errors=False): - """ Function to execute shell command and return the output """ - - if DEBUG: - print 'DEBUG: %s' % (command) - pipe = subprocess.Popen(shlex.split(command), - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - close_fds=True) - - data = pipe.stdout.read() - rc = pipe.wait() - cwd = os.getcwd() - if rc and not ignore_errors: - print 'Error : Working directory : %s' % (cwd) - print 'Error : Failed to execute command: %s\n%s' % (command, data) - sys.exit(1) - return data.strip() - - -def cmd_exists(cmd): - return subprocess.call("type " + cmd, shell=True, - stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0 - - -def parse_options(args): - """ Parse command line arguments """ - parser = argparse.ArgumentParser(description='Create base manifest to fix the versions for all OS and SKUs') - - parser.add_argument('-v', '--verbose', dest='debug', action='store_true', - help='Enable verbose mode') - - parser.add_argument('-g', '--master_branch_git', nargs='?', dest='branch', - default='master', - help='Existing master branch in git, default: %(default)s') - - parser.add_argument('-o', '--output_manifest', nargs='?', dest='output_file', - default='manifest.xml', - help='Output file to print the results to, default: %(default)s') - - parser.add_argument('-m', '--merge_manifest', nargs='?', dest='merge_file', - default='manifest-base-info-only.xml', - help='Manifest file to use as the base merge file. default: %(default)s') - - parser.add_argument('-s', '--source_manifest', nargs='?', dest='source_file', - default='manifest.xml', - help='Manifest file to merge into base. default: %(default)s') - - subparsers = parser.add_subparsers(title='Create Base Manifest Commands', - description='Select one command', - dest='command') - - parser_merge = subparsers.add_parser('merge', - description='Merge the manifest file with the base revisions' - 'the same and fixing the new projects revisions') - parser_create = subparsers.add_parser('create', - description='Create the base manifest.xml file') - - opt = parser.parse_args(args) - return opt - - -if __name__ == '__main__': - options = parse_options(sys.argv[1:]) - DEBUG = options.debug - manifest = ManifestBase(options) - - if manifest.opt.command == 'create': - result = manifest.create() - if DEBUG: - print ET.tostring(result, pretty_print=True) - tree = ET.ElementTree(result) - tree.write(manifest.opt.merge_file) - print "Done" - sys.exit(0) - - if manifest.opt.command == 'merge': - result = manifest.merge() - if DEBUG: - print ET.tostring(result, pretty_print=True) - tree = ET.ElementTree(result) - tree.write(manifest.opt.output_file) - print "Done" - - sys.exit(0) - - print "Unknown command" - sys.exit(1) - - diff --git a/tools/scripts/create-config b/tools/scripts/create-config deleted file mode 100755 index 9c09ec87b..000000000 --- a/tools/scripts/create-config +++ /dev/null @@ -1,93 +0,0 @@ -#!/usr/bin/python - -import argparse -import os -import sys -import subprocess -import shutil -from lxml import etree as ET -import base64 - - -class ConfigCreate(object): - def __init__(self, options): - self.opt = options - - if not os.path.isfile (self.opt.manifest_file): - print "Error: Can't find file %s" % self.opt.manifest_file - sys.exit(1) - - if not self.opt.build_id: - print "No build id specified. Using 1001" - self.opt.build_id = '1001' - - - def create(self): - if DEBUG: - print "Create called" - - source = ET.parse(self.opt.manifest_file).getroot() - f = open (self.opt.output_file, 'w') - f.write ("[config]\n") - f.write ("store_dir = ../../../store/\n") - out = "build_id = " + self.opt.build_id + "\n" - f.write (out) - - for item in source.iter('label'): - if DEBUG: - print "Found a label" - t = item.get ('name') - v = item.get ('value') - out = t + " = " + v + "\n" - if DEBUG: - print "what is getting printed to file: %s" % out - f.write(out) - - f.close() - - - - -def parse_options(args): - """ Parse command line arguments """ - parser = argparse.ArgumentParser(description='merge-manifest to create manifest based on build manifest') - - parser.add_argument('-v', '--verbose', dest='debug', action='store_true', - help='Enable verbose mode') - - parser.add_argument('-b', '--build_id', nargs='?', dest='build_id', - help='Build ID to write into the config file.') - - parser.add_argument('-m', '--manifest', nargs='?', dest='manifest_file', - default='manifest.xml', - help='Manifest to read config parameters from, default: %(default)s') - - parser.add_argument('-o', '--output', nargs='?', dest='output_file', - default='config.cfg', - help='Output file to write configuration to, default: %(default)s') - - - subparsers = parser.add_subparsers(title='Create config Commands', - description='Select one command', - dest='command') - - parser_merge = subparsers.add_parser('config', - description='Merge the target into source keeping the source revisions' - 'the same and fixing the new projects revisions') - - - opt = parser.parse_args(args) - return opt - -if __name__ == '__main__': - options = parse_options(sys.argv[1:]) - DEBUG = options.debug - config = ConfigCreate(options) - - - result = config.create() - print "Done" - sys.exit(0) - - -