[ansible][fedora] Update package name
[barometer.git] / src / package-list.mk
1 # Upstream Package List
2 #
3 # Everything here is defined as its suggested default
4 # value, it can always be overriden when invoking Make
5
6 # dpdk section
7 # DPDK_URL ?= git://dpdk.org/dpdk
8 DPDK_URL ?= http://dpdk.org/git/dpdk
9 DPDK_TAG ?= v19.11
10
11 LIBPQOS_URL ?= https://github.com/01org/intel-cmt-cat.git
12 LIBPQOS_TAG ?= master
13
14 PMUTOOLS_URL ?= https://github.com/andikleen/pmu-tools
15 PMUTOOLS_TAG ?= master
16
17 KAFKA_URL ?= https://github.com/edenhill/librdkafka.git
18 KAFKA_TAG ?= v1.5.2
19
20 # collectd section
21 COLLECTD_URL ?= https://github.com/collectd/collectd
22
23 # there are 4 collectd flavors:
24 # -"stable" - based on stable collectd release
25 # -"latest" - development version, based on main branch
26 # -"experimental" - it is based on main branch as above and includes
27 #                   set pull requests with experimental features
28 # -"collectd-6" - based on the collectd 6.0 branch
29 ifeq ($(COLLECTD_FLAVOR), stable)
30 # using the most recent stable release
31         COLLECTD_TAG ?= collectd-5.12
32         SAMPLE_CONF_VARIANT_NAME = collectd_sample_configs
33 endif
34 ifeq ($(COLLECTD_FLAVOR), latest)
35 # collectd code from main branch
36         COLLECTD_TAG ?= main
37         SAMPLE_CONF_VARIANT_NAME = collectd_sample_configs-latest
38 endif
39 ifeq ($(COLLECTD_FLAVOR), experimental)
40 # 'experimental' flavor is using additional Pull Requests that
41 # are put on top of main release
42         COLLECTD_TAG ?= main
43         SAMPLE_CONF_VARIANT_NAME = collectd_sample_configs-latest
44         COLLECTD_USE_EXPERIMENTAL_PR ?= y
45 endif #end of experimental-branch handling
46 ifeq ($(COLLECTD_FLAVOR), collectd-6)
47 # 'collectd-6' flavor is using collectd-6.0 branch
48         COLLECTD_TAG ?= collectd-6.0
49         SAMPLE_CONF_VARIANT_NAME = collectd_sample_configs-latest
50         COLLECTD_USE_EXPERIMENTAL_PR ?= y
51 endif #end of collectd-6.0-branch handling
52
53 @echo "Using COLLECTD_TAG: $(COLLECTD_TAG)"
54 @echo "Using SAMPLE_CONF_VARIANT_NAME: $(SAMPLE_CONF_VARIANT_NAME)"