From 2835a8cf91d5967c69acd6e10601d38ab3c4060c Mon Sep 17 00:00:00 2001 From: Ken Giusti Date: Fri, 28 Aug 2020 11:31:11 -0400 Subject: [PATCH] Retire devstack-plugin-pika project This plugin was used by the oslo.messaging project to test the development of an alternative RabbitMQ message driver based on the Pika library (instead of the default Kombu driver). Development of this driver was dropped in Queens and is not supported. Depends-On: https://review.opendev.org/745342 Change-Id: I74b80797edc3b6c93f19498100ab5a0c2a0e18ac --- .zuul.yaml | 7 ------- README.rst | 6 ++++++ devstack/plugin.sh | 38 -------------------------------------- devstack/settings | 0 tox.ini | 26 -------------------------- 5 files changed, 6 insertions(+), 71 deletions(-) delete mode 100644 .zuul.yaml create mode 100644 README.rst delete mode 100644 devstack/plugin.sh delete mode 100644 devstack/settings delete mode 100644 tox.ini diff --git a/.zuul.yaml b/.zuul.yaml deleted file mode 100644 index b60b680..0000000 --- a/.zuul.yaml +++ /dev/null @@ -1,7 +0,0 @@ -- project: - check: - jobs: - - openstack-tox-bashate - gate: - jobs: - - openstack-tox-bashate diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..b72ee4f --- /dev/null +++ b/README.rst @@ -0,0 +1,6 @@ +This project is no longer maintained. + +The contents of this repository are still available in the Git +source code management system. To see the contents of this +repository before it reached its end of life, please check out the +previous commit with "git checkout HEAD^1". diff --git a/devstack/plugin.sh b/devstack/plugin.sh deleted file mode 100644 index 7fafd06..0000000 --- a/devstack/plugin.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# -# Copyright 2015 Hewlett-Packard Development Company, L.P. -# -# 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. - -function get_transport_url { - local virtual_host=$1 - echo "pika://$RABBIT_USERID:$RABBIT_PASSWORD@$RABBIT_HOST:5672/$virtual_host" -} - -function get_notification_url { - local virtual_host=$1 - echo "pika://$RABBIT_USERID:$RABBIT_PASSWORD@$RABBIT_HOST:5672/$virtual_host" -} - -# Note: no need to override default 'rpc_backend_add_vhost' since the -# backend is also rabbitmq - -function iniset_rpc_backend { - local package=$1 - local file=$2 - local section=${3:-DEFAULT} - local virtual_host=$4 - - iniset $file $section transport_url $(get_transport_url "$virtual_host") - iniset $file oslo_messaging_notifications transport_url $(get_notification_url "$virtual_host") -} diff --git a/devstack/settings b/devstack/settings deleted file mode 100644 index e69de29..0000000 diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 4623d64..0000000 --- a/tox.ini +++ /dev/null @@ -1,26 +0,0 @@ -[tox] -minversion = 3.1.1 -skipsdist = True -envlist = bashate -ignore_basepython_conflict = true - -[testenv] -basepython = python3 -usedevelop = False - -[testenv:bashate] -deps = bashate -whitelist_externals = bash -commands = bash -c "find {toxinidir} \ - -not \( -type d -name .?\* -prune \) \ - -not \( -type d -name doc -prune \) \ - -type f \ - -not -name \*~ \ - -not -name \*.md \ - \( \ - -name \*.sh -or \ - -name \*rc -or \ - -name functions\* -or \ - -wholename \*/lib/\* \ - \) \ - -print0 | xargs -0 bashate -v"