X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fpackage-list.mk;h=b27cd5756e771c1a5a79f7203a9a36af4aea0a21;hb=HEAD;hp=b58e092a978a67e9bbd6a4ca31b1796fc3fe8876;hpb=b52c942a4fbfc5023780d23954de953b817c6dc0;p=barometer.git diff --git a/src/package-list.mk b/src/package-list.mk index b58e092a..b27cd575 100644 --- a/src/package-list.mk +++ b/src/package-list.mk @@ -6,7 +6,7 @@ # dpdk section # DPDK_URL ?= git://dpdk.org/dpdk DPDK_URL ?= http://dpdk.org/git/dpdk -DPDK_TAG ?= v16.11 +DPDK_TAG ?= v19.11 LIBPQOS_URL ?= https://github.com/01org/intel-cmt-cat.git LIBPQOS_TAG ?= master @@ -15,18 +15,40 @@ PMUTOOLS_URL ?= https://github.com/andikleen/pmu-tools PMUTOOLS_TAG ?= master KAFKA_URL ?= https://github.com/edenhill/librdkafka.git -KAFKA_TAG ?= v0.9.5 +KAFKA_TAG ?= v1.5.2 # collectd section COLLECTD_URL ?= https://github.com/collectd/collectd -# there are 2 collectd flavors: -# -"collectd" - based on stable collect release -# -"collectd-master" - development version, based on master branch -ifdef COLLECTD_USE_MASTER - COLLECTD_TAG ?= master -else - COLLECTD_TAG ?= collectd-5.8 + +# there are 4 collectd flavors: +# -"stable" - based on stable collectd release +# -"latest" - development version, based on main branch +# -"experimental" - it is based on main branch as above and includes +# set pull requests with experimental features +# -"collectd-6" - based on the collectd 6.0 branch +ifeq ($(COLLECTD_FLAVOR), stable) +# using the most recent stable release + COLLECTD_TAG ?= collectd-5.12 + SAMPLE_CONF_VARIANT_NAME = collectd_sample_configs +endif +ifeq ($(COLLECTD_FLAVOR), latest) +# collectd code from main branch + COLLECTD_TAG ?= main + SAMPLE_CONF_VARIANT_NAME = collectd_sample_configs-latest endif +ifeq ($(COLLECTD_FLAVOR), experimental) +# 'experimental' flavor is using additional Pull Requests that +# are put on top of main release + COLLECTD_TAG ?= main + SAMPLE_CONF_VARIANT_NAME = collectd_sample_configs-latest + COLLECTD_USE_EXPERIMENTAL_PR ?= y +endif #end of experimental-branch handling +ifeq ($(COLLECTD_FLAVOR), collectd-6) +# 'collectd-6' flavor is using collectd-6.0 branch + COLLECTD_TAG ?= collectd-6.0 + SAMPLE_CONF_VARIANT_NAME = collectd_sample_configs-latest + COLLECTD_USE_EXPERIMENTAL_PR ?= y +endif #end of collectd-6.0-branch handling -COLLECTD_OPENSTACK_URL ?= https://github.com/openstack/collectd-openstack-plugins -COLLECTD_OPENSTACK_TAG ?= stable/pike +@echo "Using COLLECTD_TAG: $(COLLECTD_TAG)" +@echo "Using SAMPLE_CONF_VARIANT_NAME: $(SAMPLE_CONF_VARIANT_NAME)"