@cryptotaxi247 / netdata-1 / commits / cd6d83d6e

Fix broken dependencies for Ubuntu 19.10 (eoan) (#8397)

* Fix broken dependencies for Ubuntu 19.10 (eoan) * Update Python-based configure LXC env to also handle Ubuntu 19.10 (eoan)

James Mills committed Mar 20, 2020 at 08:04 UTC cd6d83d6ed35d6598dbb732734ca0324ce0d74a8
2 files changed +76
.travis/package_management/configure_deb_lxc_environment.py
+3
@@ -90,6 +90,9 @@ if str(os.environ["BUILD_STRING"]).count("ubuntu/xenial") == 1:
90 if str(os.environ["BUILD_STRING"]).count("debian/buster") == 1:
91 common.run_command_in_host(['sudo', 'rm', 'contrib/debian/control'])
92 common.run_command_in_host(['sudo', 'cp', 'contrib/debian/control.buster', 'contrib/debian/control'])
93 +if str(os.environ["BUILD_STRING"]).count("debian/eoan") == 1:
94 + common.run_command_in_host(['sudo', 'rm', 'contrib/debian/control'])
95 + common.run_command_in_host(['sudo', 'cp', 'contrib/debian/control.eoan', 'contrib/debian/control'])
96
97 common.prepare_version_source(dest_archive, friendly_version, tag=tag)
98
contrib/debian/control.eoan new
+73
@@ -0,0 +1,73 @@
1 +Source: netdata
2 +Build-Depends: debhelper (>= 9),
3 + dh-autoreconf,
4 + dh-systemd (>= 1.5),
5 + dpkg-dev (>= 1.13.19),
6 + zlib1g-dev,
7 + uuid-dev,
8 + libuv1-dev,
9 + liblz4-dev,
10 + libjudy-dev,
11 + libssl-dev,
12 + libmnl-dev,
13 + libjson-c-dev,
14 + libcups2-dev,
15 + libipmimonitoring-dev,
16 + libnetfilter-acct-dev,
17 + libsnappy-dev,
18 + libprotobuf-dev,
19 + libprotoc-dev,
20 + cmake,
21 + autogen,
22 + autoconf,
23 + automake,
24 + pkg-config,
25 + curl,
26 + gcc,
27 + g++
28 +Section: net
29 +Priority: optional
30 +Maintainer: Netdata Builder <bot@netdata.cloud>
31 +Standards-Version: 3.9.6
32 +Homepage: https://netdata.cloud
33 +
34 +Package: netdata
35 +Architecture: any
36 +Depends: adduser,
37 + libcap2-bin (>= 1:2.0),
38 + lsb-base (>= 3.1-23.2),
39 + zlib1g,
40 + libuuid1,
41 + libuv1,
42 + liblz4-1,
43 + libjudydebian1,
44 + openssl,
45 + libmnl0,
46 + libjson-c4,
47 + libnetfilter-acct1,
48 + libprotobuf-c1,
49 + libsnappy1v5,
50 + libprotoc17,
51 + ${misc:Depends},
52 + ${shlibs:Depends}
53 +Pre-Depends: dpkg (>= 1.17.14)
54 +Description: real-time charts for system monitoring
55 + Netdata is a daemon that collects data in realtime (per second)
56 + and presents a web site to view and analyze them. The presentation
57 + is also real-time and full of interactive charts that precisely
58 + render all collected values.
59 +
60 +Package: netdata-plugin-cups
61 +Architecture: any
62 +Depends: cups,
63 + netdata (>= ${source:Version})
64 +Description: The Common Unix Printing System plugin for metrics collection from cupsd
65 +
66 +Package: netdata-plugin-freeipmi
67 +Architecture: any
68 +Depends: freeipmi,
69 + netdata (= ${source:Version})
70 +Description: FreeIPMI - The Intelligent Platform Management System.
71 + The IPMI specification defines a set of interfaces for platform management.
72 + It is implemented by a number vendors for system management. The features of IPMI that most users will be interested in
73 + are sensor monitoring, system event monitoring, power control, and serial-over-LAN (SOL).